summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorAlex Parker <rockbox@aeparker.com>2009-10-24 19:40:45 +0000
committerAlex Parker <rockbox@aeparker.com>2009-10-24 19:40:45 +0000
commit791f9c2a1913550041c2998d7c87e053f58ec5ad (patch)
treece1fd465bbd4cf7371b2e8255a7f4fd13e4723b4 /apps
parent1e634f902000a36c92974c91a23b21092e1de417 (diff)
downloadrockbox-791f9c2a1913550041c2998d7c87e053f58ec5ad.tar.gz
rockbox-791f9c2a1913550041c2998d7c87e053f58ec5ad.zip
Correct spelling and punctuation in Codebuster menus.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@23334 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
-rw-r--r--apps/plugins/codebuster.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/apps/plugins/codebuster.c b/apps/plugins/codebuster.c
index edcb7e7904..5c3be911e5 100644
--- a/apps/plugins/codebuster.c
+++ b/apps/plugins/codebuster.c
@@ -327,8 +327,8 @@ static void randomize_solution(void) {
327 327
328static void settings_menu(void) { 328static void settings_menu(void) {
329 MENUITEM_STRINGLIST(settings_menu, "Settings", NULL, 329 MENUITEM_STRINGLIST(settings_menu, "Settings", NULL,
330 "Number of colors", "Number of pieces", 330 "Number of colours", "Number of pegs",
331 "Number of guesses", "Labels ?", "Frames ?"); 331 "Number of guesses", "Labels", "Frames");
332 332
333 int cur_item =0; 333 int cur_item =0;
334 334
@@ -337,11 +337,11 @@ static void settings_menu(void) {
337 337
338 switch(rb->do_menu(&settings_menu, &cur_item, NULL, false)) { 338 switch(rb->do_menu(&settings_menu, &cur_item, NULL, false)) {
339 case 0: 339 case 0:
340 rb->set_int("Number of colors", "", UNIT_INT, &colors_tmp, 340 rb->set_int("Number of colours", "", UNIT_INT, &colors_tmp,
341 NULL, -1, MAX_COLORS_COUNT, 1, NULL); 341 NULL, -1, MAX_COLORS_COUNT, 1, NULL);
342 break; 342 break;
343 case 1: 343 case 1:
344 rb->set_int("Number of pieces", "", UNIT_INT, &pieces_tmp, 344 rb->set_int("Number of pegs", "", UNIT_INT, &pieces_tmp,
345 NULL, -1, MAX_PIECES_COUNT, 1, NULL); 345 NULL, -1, MAX_PIECES_COUNT, 1, NULL);
346 break; 346 break;
347 case 2: 347 case 2:
@@ -349,10 +349,10 @@ static void settings_menu(void) {
349 NULL, -1, MAX_GUESSES_COUNT, 1, NULL); 349 NULL, -1, MAX_GUESSES_COUNT, 1, NULL);
350 break; 350 break;
351 case 3: 351 case 3:
352 rb->set_bool("Display labels ?", &labeling); 352 rb->set_bool("Display labels", &labeling);
353 break; 353 break;
354 case 4: 354 case 4:
355 rb->set_bool("Display frames ?", &framing); 355 rb->set_bool("Display frames", &framing);
356 break; 356 break;
357 case GO_TO_PREVIOUS: 357 case GO_TO_PREVIOUS:
358 menu_quit = true; 358 menu_quit = true;