(settings.c) Rename some settings

This commit is contained in:
Higor Eurípedes 2015-05-29 18:02:21 -03:00
parent 7ea749cfdf
commit c7bc8129f4

View File

@ -2114,7 +2114,7 @@ int setting_get_description(const char *label, char *msg,
"for the first time.\n" "for the first time.\n"
" \n" " \n"
"This is only updated in config if\n" "This is only updated in config if\n"
"'Config Save On Exit' is set to true.\n"); "'Save Configuration on Exit' is enabled.\n");
} }
else if (!strcmp(label, "config_save_on_exit")) else if (!strcmp(label, "config_save_on_exit"))
{ {
@ -2523,8 +2523,8 @@ int setting_get_description(const char *label, char *msg,
"end of RetroArch's lifetime.\n" "end of RetroArch's lifetime.\n"
" \n" " \n"
"RetroArch will automatically load any savestate\n" "RetroArch will automatically load any savestate\n"
"with this path on startup if 'Savestate Auto\n" "with this path on startup if 'Auto Load State\n"
"Load' is set."); "is enabled.");
} }
else if (!strcmp(label, "shader_apply_changes")) else if (!strcmp(label, "shader_apply_changes"))
{ {
@ -3496,7 +3496,7 @@ static bool setting_append_list_driver_options(
CONFIG_STRING_OPTIONS( CONFIG_STRING_OPTIONS(
settings->input.joypad_driver, settings->input.joypad_driver,
"input_joypad_driver", "input_joypad_driver",
"Input Device Driver", "Joypad Driver",
config_get_default_joypad(), config_get_default_joypad(),
config_get_joypad_driver_options(), config_get_joypad_driver_options(),
group_info.name, group_info.name,
@ -3762,7 +3762,7 @@ static bool setting_append_list_general_options(
CONFIG_BOOL(settings->config_save_on_exit, CONFIG_BOOL(settings->config_save_on_exit,
"config_save_on_exit", "config_save_on_exit",
"Configuration Save On Exit", "Save Configuration on Exit",
config_save_on_exit, config_save_on_exit,
"OFF", "OFF",
"ON", "ON",
@ -4201,7 +4201,7 @@ static bool setting_append_list_video_options(
CONFIG_BOOL( CONFIG_BOOL(
settings->video.aspect_ratio_auto, settings->video.aspect_ratio_auto,
"video_aspect_ratio_auto", "video_aspect_ratio_auto",
"Use Auto Aspect Ratio", "Auto Aspect Ratio",
aspect_ratio_auto, aspect_ratio_auto,
"OFF", "OFF",
"ON", "ON",
@ -4337,10 +4337,10 @@ static bool setting_append_list_video_options(
CONFIG_BOOL( CONFIG_BOOL(
settings->video.smooth, settings->video.smooth,
"video_smooth", "video_smooth",
"Use Bilinear Filtering", "Bilinear Filtering",
video_smooth, video_smooth,
"Point filtering", "OFF",
"Bilinear filtering", "ON",
group_info.name, group_info.name,
subgroup_info.name, subgroup_info.name,
general_write_handler, general_write_handler,
@ -5370,7 +5370,7 @@ static bool setting_append_list_menu_options(
CONFIG_BOOL( CONFIG_BOOL(
settings->menu.mouse.enable, settings->menu.mouse.enable,
"menu_mouse_enable", "menu_mouse_enable",
"Mouse Enable", "Mouse Support",
false, false,
"OFF", "OFF",
"ON", "ON",
@ -5382,7 +5382,7 @@ static bool setting_append_list_menu_options(
CONFIG_BOOL( CONFIG_BOOL(
settings->menu.pointer.enable, settings->menu.pointer.enable,
"menu_pointer_enable", "menu_pointer_enable",
"Touch Enable", "Touch Support",
pointer_enable, pointer_enable,
"OFF", "OFF",
"ON", "ON",
@ -5600,7 +5600,7 @@ static bool setting_append_list_ui_options(
CONFIG_BOOL( CONFIG_BOOL(
settings->video.disable_composition, settings->video.disable_composition,
"video_disable_composition", "video_disable_composition",
"Window Compositing Disable Hint", "Disable Desktop Composition",
disable_composition, disable_composition,
"OFF", "OFF",
"ON", "ON",
@ -5614,7 +5614,7 @@ static bool setting_append_list_ui_options(
CONFIG_BOOL( CONFIG_BOOL(
settings->pause_nonactive, settings->pause_nonactive,
"pause_nonactive", "pause_nonactive",
"Window Unfocus Pause Hint", "Pause on Focus Loss",
pause_nonactive, pause_nonactive,
"OFF", "OFF",
"ON", "ON",
@ -5634,11 +5634,12 @@ static bool setting_append_list_ui_options(
subgroup_info.name, subgroup_info.name,
general_write_handler, general_write_handler,
general_read_handler); general_read_handler);
settings_data_list_current_add_flags(list, list_info, SD_FLAG_ADVANCED);
CONFIG_BOOL( CONFIG_BOOL(
settings->ui.menubar_enable, settings->ui.menubar_enable,
"ui_menubar_enable", "ui_menubar_enable",
"Menubar Enable Hint", "Menubar (Windows)",
true, true,
"OFF", "OFF",
"ON", "ON",
@ -5650,7 +5651,7 @@ static bool setting_append_list_ui_options(
CONFIG_BOOL( CONFIG_BOOL(
settings->ui.suspend_screensaver_enable, settings->ui.suspend_screensaver_enable,
"suspend_screensaver_enable", "suspend_screensaver_enable",
"Suspend Screensaver Enable Hint", "Suspend Screensaver",
true, true,
"OFF", "OFF",
"ON", "ON",