mirror of
https://gitlab.gnome.org/GNOME/nautilus
synced 2024-10-29 03:34:16 +00:00
general: Fix title case in drop down menus
This commit is contained in:
parent
63fe3500bc
commit
b7e833e0bc
2 changed files with 13 additions and 13 deletions
|
@ -340,13 +340,13 @@ static void
|
|||
nautilus_preferences_window_setup (GtkBuilder *builder)
|
||||
{
|
||||
setup_combo (builder, NAUTILUS_PREFERENCES_DIALOG_OPEN_ACTION_COMBO,
|
||||
(const char *[]) { _("Single click"), _("Double click"), NULL });
|
||||
(const char *[]) { _("Single-Click"), _("Double-Click"), NULL });
|
||||
setup_combo (builder, NAUTILUS_PREFERENCES_DIALOG_SEARCH_RECURSIVE_ROW,
|
||||
(const char *[]) { _("On this computer only"), _("All locations"), _("Never"), NULL });
|
||||
(const char *[]) { _("On This Computer Only"), _("All Locations"), _("Never"), NULL });
|
||||
setup_combo (builder, NAUTILUS_PREFERENCES_DIALOG_THUMBNAILS_ROW,
|
||||
(const char *[]) { _("On this computer only"), _("All files"), _("Never"), NULL });
|
||||
(const char *[]) { _("On This Computer Only"), _("All Files"), _("Never"), NULL });
|
||||
setup_combo (builder, NAUTILUS_PREFERENCES_DIALOG_COUNT_ROW,
|
||||
(const char *[]) { _("On this computer only"), _("All folders"), _("Never"), NULL });
|
||||
(const char *[]) { _("On This Computer Only"), _("All Folders"), _("Never"), NULL });
|
||||
|
||||
/* setup preferences */
|
||||
bind_builder_bool (builder, gtk_filechooser_preferences,
|
||||
|
|
|
@ -347,30 +347,30 @@ permission_value_to_string (PermissionValue permission_value,
|
|||
{
|
||||
if (!describes_folder)
|
||||
{
|
||||
return _("Read and write");
|
||||
return _("Read and Write");
|
||||
}
|
||||
else if (permission_value & PERMISSION_EXEC)
|
||||
{
|
||||
return _("Create and delete files");
|
||||
return _("Create and Delete Files");
|
||||
}
|
||||
else
|
||||
{
|
||||
return _("Read/write, no access");
|
||||
return _("Read and Write, No Access");
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
if (!describes_folder)
|
||||
{
|
||||
return _("Read-only");
|
||||
return _("Read-Only");
|
||||
}
|
||||
else if (permission_value & PERMISSION_EXEC)
|
||||
{
|
||||
return _("Access files");
|
||||
return _("Access Files");
|
||||
}
|
||||
else
|
||||
{
|
||||
return _("List files only");
|
||||
return _("List Files Only");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -380,18 +380,18 @@ permission_value_to_string (PermissionValue permission_value,
|
|||
{
|
||||
if (!describes_folder || permission_value & PERMISSION_EXEC)
|
||||
{
|
||||
return _("Write-only");
|
||||
return _("Write-Only");
|
||||
}
|
||||
else
|
||||
{
|
||||
return _("Write-only, no access");
|
||||
return _("Write-Only, No Access");
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
if (describes_folder && permission_value & PERMISSION_EXEC)
|
||||
{
|
||||
return _("Access-only");
|
||||
return _("Access-Only");
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue