Bug 129163 - kreversi: untransalable string and wrong colournames
Summary: kreversi: untransalable string and wrong colournames
Status: RESOLVED FIXED
Alias: None
Product: docs.kde.org
Classification: Websites
Component: general (show other bugs)
Version: unspecified
Platform: Debian testing Linux
: NOR normal
Target Milestone: ---
Assignee: Documentation Editorial Team
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2006-06-14 22:31 UTC by Frederik Schwarzer
Modified: 2006-06-20 15:26 UTC (History)
0 users

See Also:
Latest Commit:
Version Fixed In:


Attachments
german gui with untranslatable(?) string (184.80 KB, image/png)
2006-06-14 22:34 UTC, Frederik Schwarzer
Details

Note You need to log in before you can comment on or make changes to this bug.
Description Frederik Schwarzer 2006-06-14 22:31:02 UTC
Version:            (using KDE KDE 3.5.3)
Installed from:    Debian testing/unstable Packages
OS:                Linux

I found the untranslated string "Moves" in german doc to kreversi and it seems not to be available in related .po file anyway. (see attached screenshot if unclear)

Furthermore the playernames "Black" and "White" should be reconsidered due to coloured stones. :)
Comment 1 Frederik Schwarzer 2006-06-14 22:34:48 UTC
Created attachment 16616 [details]
german gui with untranslatable(?) string
Comment 2 Burkhard Lück 2006-06-20 15:26:23 UTC
SVN commit 553221 by lueck:

fixed untranslatable string -> missing i18n() call
close bug #129163 with wrong product (docs)
opened new bug #129488 kreversi: wrong player (=color) names in moves window
BUG:129163
CCMAIL:inge@lysator.liu.se

 M  +1 -1      qreversigameview.cpp  


--- trunk/KDE/kdegames/kreversi/qreversigameview.cpp #553220:553221
@@ -180,7 +180,7 @@
   layout->addWidget(m_whiteStatus, 1, 1);
 
   // The "Moves" label
-  QLabel  *movesLabel = new QLabel( "Moves", this);
+  QLabel  *movesLabel = new QLabel( i18n("Moves"), this);
   movesLabel->setAlignment(Qt::AlignCenter);
   layout->addWidget(movesLabel, 2, 1);