summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Louden <paulthenerd@gmail.com>2007-06-19 04:21:06 +0000
committerPaul Louden <paulthenerd@gmail.com>2007-06-19 04:21:06 +0000
commitf8b5913ae7e9020674f8260fa861fd3424eb0bff (patch)
tree57580c53a033ec3b38302908b8d9bc6770710d33
parentf01b661116f7fb469197deb5de6fbdbd5d3daee2 (diff)
downloadrockbox-f8b5913ae7e9020674f8260fa861fd3424eb0bff.tar.gz
rockbox-f8b5913ae7e9020674f8260fa861fd3424eb0bff.zip
Make user-visible spelling "colours" rather than "colors".
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13671 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--apps/filetypes.c4
-rw-r--r--apps/plugins/text_editor.c2
-rw-r--r--apps/settings_list.c4
-rw-r--r--docs/FILES2
-rw-r--r--docs/sample.colours (renamed from docs/sample.colors)0
-rwxr-xr-xtools/buildzip.pl2
6 files changed, 7 insertions, 7 deletions
diff --git a/apps/filetypes.c b/apps/filetypes.c
index 75c58cc752..b9c0e69321 100644
--- a/apps/filetypes.c
+++ b/apps/filetypes.c
@@ -143,7 +143,7 @@ static void read_config(char* config_file);
143/* Colors file format is similar to icons: 143/* Colors file format is similar to icons:
144 * ext:hex_color 144 * ext:hex_color
145 * load a colors file from a theme with: 145 * load a colors file from a theme with:
146 * filetype colors: filename.colors */ 146 * filetype colours: filename.colours */
147void read_color_theme_file(void) { 147void read_color_theme_file(void) {
148 char buffer[MAX_PATH]; 148 char buffer[MAX_PATH];
149 int fd; 149 int fd;
@@ -152,7 +152,7 @@ void read_color_theme_file(void) {
152 for (i = 0; i < filetype_count; i++) { 152 for (i = 0; i < filetype_count; i++) {
153 custom_colors[i] = -1; 153 custom_colors[i] = -1;
154 } 154 }
155 snprintf(buffer, MAX_PATH, "%s/%s.colors", THEME_DIR, 155 snprintf(buffer, MAX_PATH, "%s/%s.colours", THEME_DIR,
156 global_settings.colors_file); 156 global_settings.colors_file);
157 fd = open(buffer, O_RDONLY); 157 fd = open(buffer, O_RDONLY);
158 if (fd < 0) 158 if (fd < 0)
diff --git a/apps/plugins/text_editor.c b/apps/plugins/text_editor.c
index 97ceae5746..bb6fdbf755 100644
--- a/apps/plugins/text_editor.c
+++ b/apps/plugins/text_editor.c
@@ -360,7 +360,7 @@ enum plugin_status plugin_start(struct plugin_api* api, void* parameter)
360 } 360 }
361#ifdef HAVE_LCD_COLOR 361#ifdef HAVE_LCD_COLOR
362 c = rb->strrchr(filename, '.'); 362 c = rb->strrchr(filename, '.');
363 if (c && !rb->strcmp(c, ".colors")) 363 if (c && !rb->strcmp(c, ".colours"))
364 edit_colors_file = true; 364 edit_colors_file = true;
365#endif 365#endif
366 /* read in the file */ 366 /* read in the file */
diff --git a/apps/settings_list.c b/apps/settings_list.c
index fb9ac17539..6c388f7e6b 100644
--- a/apps/settings_list.c
+++ b/apps/settings_list.c
@@ -1215,8 +1215,8 @@ const struct settings_list settings[] = {
1215 ICON_DIR "/", ".bmp", MAX_FILENAME+1), 1215 ICON_DIR "/", ".bmp", MAX_FILENAME+1),
1216#endif /* HAVE_REMOTE_LCD */ 1216#endif /* HAVE_REMOTE_LCD */
1217#ifdef HAVE_LCD_COLOR 1217#ifdef HAVE_LCD_COLOR
1218 FILENAME_SETTING(F_THEMESETTING, colors_file, "filetype colors", "", 1218 FILENAME_SETTING(F_THEMESETTING, colors_file, "filetype colours", "",
1219 THEME_DIR "/", ".colors", MAX_FILENAME+1), 1219 THEME_DIR "/", ".colours", MAX_FILENAME+1),
1220#endif 1220#endif
1221#ifdef HAVE_BUTTON_LIGHT 1221#ifdef HAVE_BUTTON_LIGHT
1222 INT_SETTING_W_CFGVALS(F_FLIPLIST, button_light_timeout, 1222 INT_SETTING_W_CFGVALS(F_FLIPLIST, button_light_timeout,
diff --git a/docs/FILES b/docs/FILES
index 80e27a2e51..da6f6e12d3 100644
--- a/docs/FILES
+++ b/docs/FILES
@@ -14,4 +14,4 @@ README
14TECH 14TECH
15UISIMULATOR 15UISIMULATOR
16KNOWN_ISSUES 16KNOWN_ISSUES
17sample.colors 17sample.colours
diff --git a/docs/sample.colors b/docs/sample.colours
index 930a34e8dd..930a34e8dd 100644
--- a/docs/sample.colors
+++ b/docs/sample.colours
diff --git a/tools/buildzip.pl b/tools/buildzip.pl
index 79cf59c7eb..8c78b82170 100755
--- a/tools/buildzip.pl
+++ b/tools/buildzip.pl
@@ -363,7 +363,7 @@ STOP
363 if ($fonts) { 363 if ($fonts) {
364 `cp $ROOT/docs/profontdoc.txt .rockbox/docs/`; 364 `cp $ROOT/docs/profontdoc.txt .rockbox/docs/`;
365 } 365 }
366 for(("sample.colors", 366 for(("sample.colours",
367 "sample.icons" 367 "sample.icons"
368 )) { 368 )) {
369 `cp $ROOT/docs/$_ .rockbox/docs/`; 369 `cp $ROOT/docs/$_ .rockbox/docs/`;