Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Unify options screen names #57113

Merged
merged 1 commit into from
Apr 24, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions src/options.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1361,7 +1361,7 @@ void options_manager::add_options_general()

add_empty_line();

add( "SOUND_ENABLED", "general", to_translation( "Sound Enabled" ),
add( "SOUND_ENABLED", "general", to_translation( "Sound enabled" ),
to_translation( "If true, music and sound are enabled." ),
true, COPT_NO_SOUND_HIDE
);
Expand Down Expand Up @@ -1453,7 +1453,7 @@ void options_manager::add_options_interface()
to_translation( "If true, the default ammo is added to weapon and magazine names. For example \"Mosin-Nagant M44 (4/5)\" becomes \"Mosin-Nagant M44 (4/5 7.62x54mm)\"." ),
true
);
add( "DETAILED_CONTAINERS", "interface", to_translation( "Detailed Containers" ),
add( "DETAILED_CONTAINERS", "interface", to_translation( "Detailed containers" ),
to_translation( "All: every container has detailed remaining volume info - Worn: only worn containers have detailed remaining volume info - None: no additional info is provided" ),
{
{ "ALL", to_translation( "All" ) },
Expand Down Expand Up @@ -1505,7 +1505,7 @@ void options_manager::add_options_interface()
false
);

add( "INV_USE_ACTION_NAMES", "interface", to_translation( "Display actions in Use Item menu" ),
add( "INV_USE_ACTION_NAMES", "interface", to_translation( "Display actions in \"Use item\" menu" ),
to_translation(
R"(If true, actions ( like "Read", "Smoke", "Wrap tighter" ) will be displayed next to the corresponding items.)" ),
true
Expand Down Expand Up @@ -1644,7 +1644,7 @@ void options_manager::add_options_interface()
);

add( "NO_UNKNOWN_COMMAND_MSG", "interface",
to_translation( "Suppress \"unknown command\" messages" ),
to_translation( "Suppress \"Unknown command\" messages" ),
to_translation( "If true, pressing a key with no set function will not display a notice in the chat log." ),
false
);
Expand Down Expand Up @@ -1934,7 +1934,7 @@ void options_manager::add_options_graphics()

add_empty_line();

add( "NV_GREEN_TOGGLE", "graphics", to_translation( "Night Vision color overlay" ),
add( "NV_GREEN_TOGGLE", "graphics", to_translation( "Night vision color overlay" ),
to_translation( "Toggle the color overlay from night vision goggles and other similar tools." ),
true, COPT_CURSES_HIDE
);
Expand Down Expand Up @@ -2251,7 +2251,7 @@ void options_manager::add_options_world_default()
false
);

add( "ETERNAL_TIME_OF_DAY", "world_default", to_translation( "Day / night cycle" ),
add( "ETERNAL_TIME_OF_DAY", "world_default", to_translation( "Day/night cycle" ),
to_translation( "Day/night cycle settings. 'Normal' sets a normal cycle. 'Eternal Day' sets eternal day. 'Eternal Night' sets eternal night." ), {
{ "normal", to_translation( "Normal" ) },
{ "day", to_translation( "Eternal Day" ) },
Expand Down