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

Use sentence case in options descriptions consistently #76977

Merged
merged 1 commit into from
Oct 12, 2024
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
4 changes: 2 additions & 2 deletions src/options.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1687,7 +1687,7 @@ void options_manager::add_options_general()
add_empty_line();

add_option_group( "general", Group( "misc_general_opts", to_translation( "Misc Options" ),
to_translation( "Miscellaneous Options." ) ),
to_translation( "Miscellaneous options." ) ),
[&]( const std::string & page_id ) {
add( "CIRCLEDIST", page_id, to_translation( "Circular distances" ),
to_translation( "If true, the game will calculate range in a realistic way: light sources will be circles, diagonal movement will cover more ground and take longer. If false, everything is square: moving to the northwest corner of a building takes as long as moving to the north wall." ),
Expand Down Expand Up @@ -1715,7 +1715,7 @@ void options_manager::add_options_general()
add_empty_line();

add_option_group( "general", Group( "soundpacks_opts", to_translation( "Soundpack Options" ),
to_translation( "Options regarding Soundpack." ) ),
to_translation( "Options regarding soundpack." ) ),
[&]( const std::string & page_id ) {
add( "SOUND_ENABLED", page_id, to_translation( "Sound enabled" ),
to_translation( "If true, music and sound are enabled." ),
Expand Down
Loading