diff options
-rw-r--r-- | README | 2 | ||||
-rw-r--r-- | i18n.cpp | 8 | ||||
-rw-r--r-- | setup.cpp | 4 |
3 files changed, 7 insertions, 7 deletions
@@ -52,7 +52,7 @@ Setup: - Mark ambiguous numbers Cells with ambiguous numbers are marked with magenta color (yes/no). Default is yes. -- Clear marks Unmark all cells when reset the puzzle (yes/no). +- Clear marks on reset Unmark all cells when the puzzle is reset (yes/no). Default is no. - Transparency (%) Set the transparency of the menu (0-100). Default is 50. @@ -3,7 +3,7 @@ * * See the README file for copyright information and how to reach the author. * - * $Id: i18n.cpp 16 2005-10-31 21:12:41Z tom $ + * $Id: i18n.cpp 17 2005-11-03 21:42:11Z tom $ * * * Translations provided by: @@ -191,15 +191,15 @@ const tI18nPhrase SudokuPlugin::Phrases[] = { #endif #endif }, - { "Clear marks", // English - "Markierungen löschen", // Deutsch / German + { "Clear marks on reset", // English + "Markierungen löschen beim Reset", // Deutsch / German "", // Slovenski / Slovenian "", // Italiano / Italian "", // Nederlands / Dutch "", // Português / Portuguese "", // Français / French "", // Norsk / Norwegian - "", // suomi / Finnish + "Poista merkinnät aloitettaessa", // suomi / Finnish "", // Polski / Polish "", // Español / Spanish "", // ÅëëçíéêÜ / Greek @@ -3,7 +3,7 @@ * * See the README file for copyright information and how to reach the author. * - * $Id: setup.cpp 16 2005-10-31 21:12:41Z tom $ + * $Id: setup.cpp 17 2005-11-03 21:42:11Z tom $ */ #include "setup.h" @@ -65,7 +65,7 @@ SetupPage::SetupPage(SetupData& setup) : Add(new cMenuEditBoolItem(tr("Mark errors"), &data.mark_errors)); Add(new cMenuEditBoolItem(tr("Mark ambiguous numbers"), &data.mark_ambiguous)); - Add(new cMenuEditBoolItem(tr("Clear marks"), &data.clear_marks)); + Add(new cMenuEditBoolItem(tr("Clear marks on reset"), &data.clear_marks)); Add(new cMenuEditIntItem(tr("Transparency (%)"), &data.transparency, 0, 100)); } |