summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README2
-rw-r--r--i18n.cpp8
-rw-r--r--setup.cpp4
3 files changed, 7 insertions, 7 deletions
diff --git a/README b/README
index 86d4f2e..83baf69 100644
--- a/README
+++ b/README
@@ -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.
diff --git a/i18n.cpp b/i18n.cpp
index 5f93dd4..e56d12c 100644
--- a/i18n.cpp
+++ b/i18n.cpp
@@ -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
diff --git a/setup.cpp b/setup.cpp
index b38d24a..d708e82 100644
--- a/setup.cpp
+++ b/setup.cpp
@@ -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));
}