summaryrefslogtreecommitdiff
path: root/apps/onplay.c
diff options
context:
space:
mode:
authorAlexander Levin <al.le@rockbox.org>2010-04-03 20:59:35 +0000
committerAlexander Levin <al.le@rockbox.org>2010-04-03 20:59:35 +0000
commit8802482e3e3e7a05e2d2a12afb6f91fa56478828 (patch)
treeadda19164fe807f0c60d306005b637b0ed095554 /apps/onplay.c
parente1a1df69fc5c77bf57c5bb51ca5a084070886872 (diff)
downloadrockbox-8802482e3e3e7a05e2d2a12afb6f91fa56478828.tar.gz
rockbox-8802482e3e3e7a05e2d2a12afb6f91fa56478828.zip
Make hotkey strings (question and confirmation) better localizable (FS#11171)
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@25457 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/onplay.c')
-rw-r--r--apps/onplay.c11
1 files changed, 5 insertions, 6 deletions
diff --git a/apps/onplay.c b/apps/onplay.c
index 5a28c53cd4..246b8af6b1 100644
--- a/apps/onplay.c
+++ b/apps/onplay.c
@@ -1319,16 +1319,16 @@ static void set_hotkey(bool is_wps)
1319 if (!match_found || (this_hk == *hk_func)) return; 1319 if (!match_found || (this_hk == *hk_func)) return;
1320 1320
1321 char line1_buf[100]; 1321 char line1_buf[100];
1322 char line2_buf[101]; 1322 char line2_buf[100];
1323 char *line1 = line1_buf; 1323 char *line1 = line1_buf;
1324 char *line2 = line2_buf; 1324 char *line2 = line2_buf;
1325 char **line1_ptr = &line1; 1325 char **line1_ptr = &line1;
1326 char **line2_ptr = &line2; 1326 char **line2_ptr = &line2;
1327 const struct text_message message={(const char **)line2_ptr, 1}; 1327 const struct text_message message={(const char **)line1_ptr, 1};
1328 const struct text_message yes_message={(const char **)line1_ptr, 1}; 1328 const struct text_message yes_message={(const char **)line2_ptr, 1};
1329 1329
1330 snprintf(line1, 100, str(LANG_SET_HOTKEY), str(this_id)); 1330 snprintf(line1, sizeof(line1_buf), str(LANG_SET_HOTKEY_QUESTION), str(this_id));
1331 strcat(strcpy(line2, line1), "?"); 1331 snprintf(line2, sizeof(line2_buf), str(LANG_HOTKEY_ASSIGNED), str(this_id));
1332 1332
1333 /* confirm the hotkey setting change */ 1333 /* confirm the hotkey setting change */
1334 if(gui_syncyesno_run(&message, &yes_message, NULL)==YESNO_YES) 1334 if(gui_syncyesno_run(&message, &yes_message, NULL)==YESNO_YES)
@@ -1338,7 +1338,6 @@ static void set_hotkey(bool is_wps)
1338 *hk_desc = this_id; 1338 *hk_desc = this_id;
1339 1339
1340 settings_save(); 1340 settings_save();
1341 splash(HZ*2, line1);
1342 } 1341 }
1343} 1342}
1344#endif /* HOTKEY */ 1343#endif /* HOTKEY */