aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTorbjörn Andersson2007-02-27 21:26:21 +0000
committerTorbjörn Andersson2007-02-27 21:26:21 +0000
commit75d79f639b7e707e755b23bcbcf6841dfaa15943 (patch)
tree257c904614625a88597b4b02354e44807f5933b3
parentb2927b69c653fa0c66dbf8e3de6f0c4ac06e237a (diff)
downloadscummvm-rg350-75d79f639b7e707e755b23bcbcf6841dfaa15943.tar.gz
scummvm-rg350-75d79f639b7e707e755b23bcbcf6841dfaa15943.tar.bz2
scummvm-rg350-75d79f639b7e707e755b23bcbcf6841dfaa15943.zip
Changed "each X mins" to "every X mins".
svn-id: r25901
-rw-r--r--gui/options.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/gui/options.cpp b/gui/options.cpp
index b05994c1ce..e9c0df71ab 100644
--- a/gui/options.cpp
+++ b/gui/options.cpp
@@ -81,7 +81,7 @@ enum {
};
#endif
-static const char *savePeriodLabels[] = { "Never", "each 5 mins", "each 10 mins", "each 15 mins", "each 30 mins", 0 };
+static const char *savePeriodLabels[] = { "Never", "every 5 mins", "every 10 mins", "every 15 mins", "every 30 mins", 0 };
static const int savePeriodValues[] = { 0, 5 * 60, 10 * 60, 15 * 60, 30 * 60, -1 };