summaryrefslogtreecommitdiff
path: root/src/file-manager/fm-icon-view.c
diff options
context:
space:
mode:
authorWu Xiaotian <[email protected]>2019-07-20 14:58:18 +0800
committerraveit65 <[email protected]>2022-07-20 21:40:42 +0200
commit958b4fa7f6f460121dc1a5eff5ce0a353188333b (patch)
tree32546bd679ee02961bcc21cc4bd38171119c7e34 /src/file-manager/fm-icon-view.c
parent989f2dc1964f011d7f6ebd037afe4fd3d48e8eba (diff)
downloadcaja-958b4fa7f6f460121dc1a5eff5ce0a353188333b.tar.bz2
caja-958b4fa7f6f460121dc1a5eff5ce0a353188333b.tar.xz
Set FmWidgetView is single view.
Diffstat (limited to 'src/file-manager/fm-icon-view.c')
-rw-r--r--src/file-manager/fm-icon-view.c32
1 files changed, 16 insertions, 16 deletions
diff --git a/src/file-manager/fm-icon-view.c b/src/file-manager/fm-icon-view.c
index 40efb632..83084483 100644
--- a/src/file-manager/fm-icon-view.c
+++ b/src/file-manager/fm-icon-view.c
@@ -3430,32 +3430,32 @@ fm_icon_view_supports_uri (const char *uri,
static CajaViewInfo fm_icon_view =
{
- FM_ICON_VIEW_ID,
+ .id = FM_ICON_VIEW_ID,
/* Translators: this is used in the view selection dropdown
* of navigation windows and in the preferences dialog */
- N_("Icon View"),
+ .view_combo_label = N_("Icon View"),
/* Translators: this is used in the view menu */
- N_("_Icons"),
- N_("The icon view encountered an error."),
- N_("The icon view encountered an error while starting up."),
- N_("Display this location with the icon view."),
- fm_icon_view_create,
- fm_icon_view_supports_uri
+ .view_menu_label_with_mnemonic = N_("_Icons"),
+ .error_label = N_("The icon view encountered an error."),
+ .startup_error_label = N_("The icon view encountered an error while starting up."),
+ .display_location_label = N_("Display this location with the icon view."),
+ .create = fm_icon_view_create,
+ .supports_uri = fm_icon_view_supports_uri
};
static CajaViewInfo fm_compact_view =
{
- FM_COMPACT_VIEW_ID,
+ .id = FM_COMPACT_VIEW_ID,
/* Translators: this is used in the view selection dropdown
* of navigation windows and in the preferences dialog */
- N_("Compact View"),
+ .view_combo_label = N_("Compact View"),
/* Translators: this is used in the view menu */
- N_("_Compact"),
- N_("The compact view encountered an error."),
- N_("The compact view encountered an error while starting up."),
- N_("Display this location with the compact view."),
- fm_compact_view_create,
- fm_icon_view_supports_uri
+ .view_menu_label_with_mnemonic = N_("_Compact"),
+ .error_label = N_("The compact view encountered an error."),
+ .startup_error_label = N_("The compact view encountered an error while starting up."),
+ .display_location_label = N_("Display this location with the compact view."),
+ .create = fm_compact_view_create,
+ .supports_uri = fm_icon_view_supports_uri
};
gboolean