summaryrefslogtreecommitdiff
path: root/data
AgeCommit message (Collapse)AuthorFilesLines
2009-10-02JS: Rewrote release list dropdownYorhel1-8/+10
Abstacted a simple set of reusable functions for generating dropdown lists, as I'm likely going to need that more often.
2009-09-30Added Hungarian to the list of languagesYorhel3-1/+6
Mainly because someone offered to translate the interface into Hungarian, and interface languages are directly linked with database languages.
2009-09-27Converted anime.type to ENUM and made them translatableYorhel2-11/+32
Again, two separate but related things.
2009-09-26Use more readable font for the relation titles in the VN relgraphYorhel1-0/+1
I would also change the font of the VN titles + info, but those boxes are fixed width and changing the font isn't guaranteed to keep the text within the boxes. This problem doesn't exist with the relation titles.
2009-09-26Converted VN relations to ENUM data type and made them translatableYorhel2-13/+56
OK, these are actually two separate things: to make the relations translatable they didn't necessarily have to be stored as enum, and I could've also converted them to enum but not have it translatable. Nevertheless, it was easier to just do both at the same time. Also note how I used the string "$____vnrel_<rel>____$" as identifier in the relation graphs while I could have used something a lot shorter ("$<rel>$" would have been fine, for example). This is done so that graphviz can make some space for those relations - the long identifier gives a slightly more realistic representation of the actual length of the relation titles.
2009-09-25Handler::VNPage: Added simple browser detection for XHTMLYorhel1-0/+8
If a browser does support the application/xhtml+xml mime, let's assume it also supports SVG (to my knowledge, this is the case in any recent browser). OTOH, browsers not supporting that mime type are sure to not support SVG, either.
2009-09-25Use inline SVG for relation graphsYorhel1-0/+7
The graphs are now stored in the DB in SVG format, the static/rg/ directory can be removed (not used anymore). SVG data is stored using the xml data type, so now I can say for sure you'd need at least PostgreSQL 8.3. This feature still needs some tweaking, though. Current state isn't perfect.
2009-09-24Fixed display bug in VN vote averageYorhel1-2/+2
2009-09-24Merge branch 'beta'2.7Yorhel6-358/+3387
+ updated changelog
2009-09-24d2: Updated VN inclusion guidelineYorhel1-5/+18
2009-09-24L10N: Translated the 'ALL' char and fixed footer TL bugYorhel1-0/+6
2009-09-20L10N: Improvements for Russian lang.txtDmitri Poguliayev1-10/+10
2009-09-13L10N: Synchronised Russian translation of lang.txtDmitri Poguliayev1-26/+25
2009-09-12Handler::Discussions: Full reply button + larger textareaYorhel2-1/+5
2009-09-12homepage: Removed 'and eroge' from the introduction textYorhel1-2/+2
2009-09-12Added reminders to write English to several form fieldsYorhel2-1/+8
2009-09-10L10N: Extracted VN lenghtsYorhel2-8/+28
2009-09-10L10N: Converted Util::CommonHTML::htmlVoteStatsYorhel1-0/+22
2009-09-08Added random VN link in menuYorhel1-0/+4
2009-09-07Handler::Misc: Made box titles on the homepage click-ableYorhel2-4/+3
2009-09-07Added three new platforms (DOS, PC-98, Sega Saturn)Yorhel3-3/+17
Had to increase the size of icons.png a bit...
2009-09-07L10N: More Russian TL and improvements of lang.txtDmitri Poguliayev1-260/+297
2009-09-06L10N: Updated some things in the header description in lang.txtYorhel1-19/+13
2009-09-06L10N: Converted wishlist_status in global.plYorhel2-6/+20
This is one of the last easy-to-extract unextracted texts... the rest is slightly harder to extract. Either because it's in JS, used in Multi, or used in some creative way that doesn't work well together with extraction... :/
2009-09-06L10N: Converted Util::FormHTMLYorhel1-0/+107
Removed the idea mapping field names to readable strings, it was never really a clean solution. The messages did become less readable now, but oh well...
2009-09-06L10N: Converted 'voiced', 'animated' and 'votes' in global.plYorhel2-27/+92
2009-09-06L10N: Converted Handler::VNPageYorhel1-0/+269
This is the last Handler module. There are still some other things left in Util:: and global.pl, though. But at least we're nearing the end!
2009-09-05L10N: Converted Handler::VNBrowse and Handler::VNEditYorhel1-0/+219
2009-09-04L10N: Converted Handler::UsersYorhel1-0/+322
2009-09-04L10N: Russian lang.txt improvements and additionsDmitri Poguliayev1-106/+114
2009-09-04L10N: Converted Handler::UListsYorhel1-0/+106
2009-09-03L10N: Russian translation for current lang.txtDmitri Poguliayev1-334/+348
2009-09-03L10N: Converted Handler::TagsYorhel1-0/+378
2009-08-19L10N: Converted Handler::Releases::browseYorhel1-0/+125
This finishes Handler::Releases
2009-08-18L10N: Converted Handler::Releases::editYorhel1-0/+144
2009-08-18L10N: Converted Handler::Releases::pageYorhel1-0/+210
2009-08-18htmlForm(): Don't generate subform id from the titleYorhel1-22/+22
The subform id is now passed to htmlForm() as first formpart item. This way the id won't change even if the title does, which will be the case with the interface translation.
2009-08-17L10N: Converted Handler::ProducersYorhel1-0/+129
Hmmm, I think I'll need to update some of the utility functions to take more functionality from the Handler pages in regard to getting text strings. Using mt() on everything that is essentially already passed to other functions with a unique string for identification is a bit double. So far I've updated htmlRevision to do this. (The name argument is still present but currently ignored, to preserve backwards compatility, the rest of the code will be updated soon.) Other utility functions like htmlForm should probably do something like that as well.
2009-08-17L10N: Converted Handler::Discussions and the discussion_boards listYorhel2-7/+180
2009-08-17L10N: Converted Handler::Misc::nospamYorhel1-0/+17
This finishes Handler::Misc.
2009-08-17L10N: Converted two homepage items and use key for site titleYorhel1-1/+10
2009-08-17L10N: Replaced HTML with maketext markup and documented the functionsYorhel1-19/+73
2009-08-17L10N: Converted htmlEditMessage, htmlItemMessage and htmlSearchBoxYorhel1-2/+87
This finishes Util::CommonHTML, with the exception of htmlVoteStats
2009-08-17L10N: Converted htmlBrowseNavigate() and htmlRevision()Yorhel1-1/+46
2009-08-17L10N: Converted htmlDenied and htmlHiddenMessageYorhel1-0/+46
2009-08-17L10N: Converted Util::CommonHTML::htmlMainTabsYorhel1-1/+71
2009-08-17L10N: Converted producer and release typesYorhel3-14/+36
And replaced the ugly release type cssicon class hack. The class is now 'tr'.$type_numer, instead of the first three characters of their English representation in lowercase. No idea why I haven't done it this way in the first place...
2009-08-17L10N: Converted platform namesYorhel2-19/+74
2009-08-17L10N: Converted user ranks and language namesYorhel2-28/+122
User ranks are easy... but the language names are used everywhere!
2009-08-17L10N: Converted homepage and history pagesYorhel1-1/+145
There are a few things left hardcoded, though: The 'expand' link is also in Javascript, that will probably need some mechanism for TL as well. The format of the items on the homepage might need to change depending on the language, I can imagine that not every language uses the 'title by name' construct. Especially the age() function needs a localized version.