summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--apps/settings.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/settings.c b/apps/settings.c
index e488be30da..31d4f1a82b 100644
--- a/apps/settings.c
+++ b/apps/settings.c
@@ -638,7 +638,7 @@ void settings_display(void)
638 638
639bool set_bool(char* string, bool* variable ) 639bool set_bool(char* string, bool* variable )
640{ 640{
641 return set_bool_options(string, variable, "yes", "no "); 641 return set_bool_options(string, variable, str(LANG_SET_BOOL_YES), str(LANG_SET_BOOL_NO));
642} 642}
643 643
644bool set_bool_options(char* string, bool* variable, 644bool set_bool_options(char* string, bool* variable,