Summary: | typo for german: training menu entry wrong | ||
---|---|---|---|
Product: | [Translations] i18n | Reporter: | Christian Herzberg <mailchrisch> |
Component: | de | Assignee: | Thomas Reitelbach <tr> |
Status: | RESOLVED FIXED | ||
Severity: | normal | ||
Priority: | NOR | ||
Version: | 1.4 | ||
Target Milestone: | --- | ||
Platform: | unspecified | ||
OS: | Linux | ||
Latest Commit: | Version Fixed In: | ||
Sentry Crash Report: |
Description
Christian Herzberg
2005-12-03 11:46:02 UTC
Another hint for the german translation: A submenu in Preferences is still in english, but in the dialog-window to customize KTouch it's allright. In german the submenu is called "Tastaturfarbschemata", it should be something like "keyboard-color-scheme" in english. Danke für den Fehlerbericht. Den ersten Teil des Bugs habe ich grade behoben (Standardlektionen). Der zweite Teil muss im Programm selbst behoben werden, deshalb lasse ich den Bug offen. SVN commit 485303 by reitelbach: Fix bug 117577 (missing i18n calls). This will introduce one new String. BUG:117577 CCMAIL:kde-i18n-doc@kde.org M +4 -4 ktouch.cpp --- branches/KDE/3.5/kdeedu/ktouch/src/ktouch.cpp #485302:485303 @@ -676,7 +676,7 @@ void KTouch::createDefaultColorSchemes() { KTouchColorScheme color; - color.m_name = "Black'n White"; + color.m_name = i18n("Black'n White"); color.m_frame = Qt::black; for (int i=0; i<8; ++i) color.m_background[i] = Qt::white; @@ -689,7 +689,7 @@ color.m_cTextH = Qt::black; m_colorSchemes.push_back(color); - color.m_name = "Classic"; + color.m_name = i18n("Classic"); color.m_frame = Qt::black; color.m_background[0] = QColor(255,238, 7); color.m_background[4] = QColor(247,138,247); color.m_background[1] = QColor( 14,164,239); color.m_background[5] = QColor(158,255,155); @@ -704,7 +704,7 @@ color.m_cTextH = Qt::black; m_colorSchemes.push_back(color); - color.m_name = "Deep Blue"; + color.m_name = i18n("Deep Blue"); color.m_frame = QColor(220,220,220); color.m_background[0] = QColor( 0, 39, 80); color.m_background[4] = QColor( 24, 19, 72); color.m_background[1] = QColor( 39, 59,127); color.m_background[5] = QColor( 8, 44,124); @@ -719,7 +719,7 @@ color.m_cTextH = Qt::white; m_colorSchemes.push_back(color); - color.m_name = "Stripy"; + color.m_name = i18n("Stripy"); color.m_frame = Qt::black; for (int i=0; i<8; i=i+2) color.m_background[i] = QColor( 39, 70, 127); |