diff options
| author | infirit <[email protected]> | 2014-11-19 18:45:45 +0100 | 
|---|---|---|
| committer | infirit <[email protected]> | 2014-11-19 21:02:23 +0100 | 
| commit | 0c780968d744753c56f389b33a601a52755dda39 (patch) | |
| tree | 2b689a2d5e0c7c99e88d9e28f74e0b2d013badbb /src | |
| parent | a8f51fed46262a7c1724734aa5d9418b67c2c899 (diff) | |
| download | engrampa-0c780968d744753c56f389b33a601a52755dda39.tar.bz2 engrampa-0c780968d744753c56f389b33a601a52755dda39.tar.xz | |
Change strings to use ellipsis
Based on FR commit: 281b4b5d773a058820ca46ed9ff56c308d3672c0
From: Ekaterina Gerasimova <[email protected]>
Gnome bug: https://bugzilla.gnome.org/show_bug.cgi?id=666447
Diffstat (limited to 'src')
| -rw-r--r-- | src/fr-window.c | 2 | ||||
| -rw-r--r-- | 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) { @@ -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..."), "<control>E", +	  N_("_Extract…"), "<control>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, | 
