summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTheo Linkspfeifer <lastonestanding@tutanota.com>2020-05-13 16:09:01 +0200
committerAlexander Schwinn <alexxcons@xfce.org>2020-05-13 21:59:43 +0200
commit44208aaa3719091cca314312dea0497d358f664e (patch)
tree9ed70baccbed6e6fc45d1c45e30be2b3cd0152c6
parentf6b8f538a511e727c7f8f8c784821510d54184de (diff)
downloadthunar-44208aaa3719091cca314312dea0497d358f664e.tar.gz
Remove upper case from group names in shortcuts view
-rw-r--r--thunar/thunar-shortcuts-model.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/thunar/thunar-shortcuts-model.c b/thunar/thunar-shortcuts-model.c
index a3e4d35b..16435fb2 100644
--- a/thunar/thunar-shortcuts-model.c
+++ b/thunar/thunar-shortcuts-model.c
@@ -957,7 +957,7 @@ thunar_shortcuts_model_shortcut_devices (ThunarShortcutsModel *model)
/* add the devices heading */
shortcut = g_slice_new0 (ThunarShortcut);
shortcut->group = THUNAR_SHORTCUT_GROUP_DEVICES_HEADER;
- shortcut->name = g_strdup (_("DEVICES"));
+ shortcut->name = g_strdup (_("Devices"));
thunar_shortcuts_model_add_shortcut (model, shortcut);
/* the filesystem entry */
@@ -1000,7 +1000,7 @@ thunar_shortcuts_model_shortcut_network (ThunarShortcutsModel *model)
/* add the network heading */
shortcut = g_slice_new0 (ThunarShortcut);
shortcut->group = THUNAR_SHORTCUT_GROUP_NETWORK_HEADER;
- shortcut->name = g_strdup (_("NETWORK"));
+ shortcut->name = g_strdup (_("Network"));
thunar_shortcuts_model_add_shortcut (model, shortcut);
/* append the browse network entry if it is supported */
@@ -1031,7 +1031,7 @@ thunar_shortcuts_model_shortcut_places (ThunarShortcutsModel *model)
/* add the places heading */
shortcut = g_slice_new0 (ThunarShortcut);
shortcut->group = THUNAR_SHORTCUT_GROUP_PLACES_HEADER;
- shortcut->name = g_strdup (_("PLACES"));
+ shortcut->name = g_strdup (_("Places"));
thunar_shortcuts_model_add_shortcut (model, shortcut);
/* get home path */