From 791f9c2a1913550041c2998d7c87e053f58ec5ad Mon Sep 17 00:00:00 2001 From: Alex Parker Date: Sat, 24 Oct 2009 19:40:45 +0000 Subject: Correct spelling and punctuation in Codebuster menus. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@23334 a1c6a512-1295-4272-9138-f99709370657 --- apps/plugins/codebuster.c | 12 ++++++------ 1 file 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) { static void settings_menu(void) { MENUITEM_STRINGLIST(settings_menu, "Settings", NULL, - "Number of colors", "Number of pieces", - "Number of guesses", "Labels ?", "Frames ?"); + "Number of colours", "Number of pegs", + "Number of guesses", "Labels", "Frames"); int cur_item =0; @@ -337,11 +337,11 @@ static void settings_menu(void) { switch(rb->do_menu(&settings_menu, &cur_item, NULL, false)) { case 0: - rb->set_int("Number of colors", "", UNIT_INT, &colors_tmp, + rb->set_int("Number of colours", "", UNIT_INT, &colors_tmp, NULL, -1, MAX_COLORS_COUNT, 1, NULL); break; case 1: - rb->set_int("Number of pieces", "", UNIT_INT, &pieces_tmp, + rb->set_int("Number of pegs", "", UNIT_INT, &pieces_tmp, NULL, -1, MAX_PIECES_COUNT, 1, NULL); break; case 2: @@ -349,10 +349,10 @@ static void settings_menu(void) { NULL, -1, MAX_GUESSES_COUNT, 1, NULL); break; case 3: - rb->set_bool("Display labels ?", &labeling); + rb->set_bool("Display labels", &labeling); break; case 4: - rb->set_bool("Display frames ?", &framing); + rb->set_bool("Display frames", &framing); break; case GO_TO_PREVIOUS: menu_quit = true; -- cgit v1.2.3