Psyringe - updated German translation. Also sent "Days left" and "Reward" from task board screen to translation function. I did check the results, but not as thorough as I'd like to, so there may still be rough edges.

Note: If you design the layout of a screen, please keep in mind that translators usually need more space than the English terms do, English is a very space-efficient language. I found that I sometimes have to resort to suboptimal translations because the better ones don't fit into the space reserved for them.

Note 2: I've heard about problems with characters taking up a different amount of screen space on Windows and the PSP, so could someone check whether the German texts are inside their boundaries on the PSP? I can only test on Windows.
This commit is contained in:
Psyyringe
2009-12-16 23:08:36 +00:00
parent e1a1281088
commit af10c4d0e9
2 changed files with 126 additions and 15 deletions

View File

@@ -400,9 +400,9 @@ void TaskList::Render() {
for (vector<Task*>::iterator it = tasks.begin(); it!=tasks.end(); it++) {
sprintf(buffer, "%s", (*it)->getShortDesc().c_str());
f2->DrawString(buffer, posX, posY);
sprintf(buffer, "Days left: %i", (*it)->getExpiration());
sprintf(buffer, _("Days left: %i").c_str(), (*it)->getExpiration());
f->DrawString(buffer, SCREEN_WIDTH - 180, posY);
sprintf(buffer, "Reward: %i", (*it)->getReward());
sprintf(buffer, _("Reward: %i").c_str(), (*it)->getReward());
f->DrawString(buffer, SCREEN_WIDTH - 90, posY);
posY += 15;