From 0c780968d744753c56f389b33a601a52755dda39 Mon Sep 17 00:00:00 2001 From: infirit Date: Wed, 19 Nov 2014 18:45:45 +0100 Subject: Change strings to use ellipsis Based on FR commit: 281b4b5d773a058820ca46ed9ff56c308d3672c0 From: Ekaterina Gerasimova Gnome bug: https://bugzilla.gnome.org/show_bug.cgi?id=666447 --- src/fr-window.c | 2 +- src/ui.h | 24 ++++++++++++------------ 2 files changed, 13 insertions(+), 13 deletions(-) diff --git a/src/fr-window.c b/src/fr-window.c index 0a5876f..3087a80 100644 --- a/src/fr-window.c +++ b/src/fr-window.c @@ -2754,7 +2754,7 @@ action_started (FrArchive *archive, #endif message = get_message_from_action (action); - full_msg = g_strdup_printf ("%s, %s", message, _("please wait...")); + full_msg = g_strdup_printf ("%s, %s", message, _("please wait…")); fr_window_push_message (window, full_msg); switch (action) { diff --git a/src/ui.h b/src/ui.h index d34d70c..1b972d8 100644 --- a/src/ui.h +++ b/src/ui.h @@ -40,7 +40,7 @@ static GtkActionEntry action_entries[] = { N_("Information about the program"), G_CALLBACK (activate_action_about) }, { "AddFiles", FR_STOCK_ADD_FILES, - N_("_Add Files..."), NULL, + N_("_Add Files…"), NULL, N_("Add files to the archive"), G_CALLBACK (activate_action_add_files) }, { "AddFiles_Toolbar", FR_STOCK_ADD_FILES, @@ -48,7 +48,7 @@ static GtkActionEntry action_entries[] = { N_("Add files to the archive"), G_CALLBACK (activate_action_add_files) }, { "AddFolder", FR_STOCK_ADD_FOLDER, - N_("Add a _Folder..."), NULL, + N_("Add a _Folder…"), NULL, N_("Add a folder to the archive"), G_CALLBACK (activate_action_add_folder) }, { "AddFolder_Toolbar", FR_STOCK_ADD_FOLDER, @@ -77,7 +77,7 @@ static GtkActionEntry action_entries[] = { N_("Paste the clipboard"), G_CALLBACK (activate_action_paste) }, { "Rename", NULL, - N_("_Rename..."), "F2", + N_("_Rename…"), "F2", N_("Rename the selection"), G_CALLBACK (activate_action_rename) }, { "Delete", GTK_STOCK_DELETE, @@ -98,7 +98,7 @@ static GtkActionEntry action_entries[] = { N_("Paste the clipboard"), G_CALLBACK (activate_action_paste_folder_from_sidebar) }, { "RenameFolderFromSidebar", NULL, - N_("_Rename..."), "F2", + N_("_Rename…"), "F2", N_("Rename the selection"), G_CALLBACK (activate_action_rename_folder_from_sidebar) }, { "DeleteFolderFromSidebar", GTK_STOCK_DELETE, @@ -111,11 +111,11 @@ static GtkActionEntry action_entries[] = { N_("Deselect all files"), G_CALLBACK (activate_action_deselect_all) }, { "Extract", FR_STOCK_EXTRACT, - N_("_Extract..."), "E", + N_("_Extract…"), "E", N_("Extract files from the archive"), G_CALLBACK (activate_action_extract) }, { "ExtractFolderFromSidebar", FR_STOCK_EXTRACT, - N_("_Extract..."), NULL, + N_("_Extract…"), NULL, N_("Extract files from the archive"), G_CALLBACK (activate_action_extract_folder_from_sidebar) }, { "Extract_Toolbar", FR_STOCK_EXTRACT, @@ -123,7 +123,7 @@ static GtkActionEntry action_entries[] = { N_("Extract files from the archive"), G_CALLBACK (activate_action_extract) }, { "Find", GTK_STOCK_FIND, - N_("Find..."), NULL, + N_("Find…"), NULL, NULL, G_CALLBACK (activate_action_find) }, @@ -132,11 +132,11 @@ static GtkActionEntry action_entries[] = { N_("View the output produced by the last executed command"), G_CALLBACK (activate_action_last_output) }, { "New", GTK_STOCK_NEW, - N_("New..."), NULL, + N_("New…"), NULL, N_("Create a new archive"), G_CALLBACK (activate_action_new) }, { "Open", GTK_STOCK_OPEN, - N_("Open..."), NULL, + N_("Open…"), NULL, N_("Open archive"), G_CALLBACK (activate_action_open) }, { "Open_Toolbar", GTK_STOCK_OPEN, @@ -144,11 +144,11 @@ static GtkActionEntry action_entries[] = { N_("Open archive"), G_CALLBACK (activate_action_open) }, { "OpenSelection", NULL, - N_("_Open With..."), NULL, + N_("_Open With…"), NULL, N_("Open selected files with an application"), G_CALLBACK (activate_action_open_with) }, { "Password", NULL, - N_("Pass_word..."), NULL, + N_("Pass_word…"), NULL, N_("Specify a password for this archive"), G_CALLBACK (activate_action_password) }, { "Properties", GTK_STOCK_PROPERTIES, @@ -160,7 +160,7 @@ static GtkActionEntry action_entries[] = { N_("Reload current archive"), G_CALLBACK (activate_action_reload) }, { "SaveAs", GTK_STOCK_SAVE_AS, - N_("Save As..."), NULL, + N_("Save As…"), NULL, N_("Save the current archive with a different name"), G_CALLBACK (activate_action_save_as) }, { "SelectAll", GTK_STOCK_SELECT_ALL, -- cgit v1.2.1