commit 871fd835f635a4d3ec14cb9c6130eb75db046118 Author: Daniele Forsi <dani...@forsi.it> Date: Tue Jan 4 23:52:18 2011 +0100
String fixes * libgtkpod/context_menus.c * plugins/exporter/plugin.c * plugins/playlist_display/plugin.c * plugins/repository_editor/plugin.c * plugins/sorttab_display/sorttab_display_context_menu.c * Add "..." to menu items that open a dialog. * plugins/track_display/track_display_context_menu.c * Remove "..." from menu item with children. libgtkpod/context_menus.c | 4 ++-- plugins/exporter/plugin.c | 4 ++-- plugins/playlist_display/plugin.c | 10 +++++----- plugins/repository_editor/plugin.c | 2 +- .../sorttab_display/sorttab_display_context_menu.c | 2 +- plugins/track_display/track_display_context_menu.c | 2 +- 6 files changed, 12 insertions(+), 12 deletions(-) --- diff --git a/libgtkpod/context_menus.c b/libgtkpod/context_menus.c index a131a64..c781d44 100644 --- a/libgtkpod/context_menus.c +++ b/libgtkpod/context_menus.c @@ -275,7 +275,7 @@ GtkWidget *add_create_playlist_file (GtkWidget *menu) if (!gtkpod_has_exporter()) return NULL; - return hookup_menu_item (menu, _("Create Playlist File"), + return hookup_menu_item (menu, _("Create Playlist File..."), GTK_STOCK_SAVE_AS, G_CALLBACK (create_playlist_file), NULL); } @@ -313,7 +313,7 @@ GtkWidget *add_copy_track_to_filesystem (GtkWidget *menu) if (! gtkpod_has_exporter()) return NULL; - return hookup_menu_item (menu, _("Copy Tracks to Filesystem"), + return hookup_menu_item (menu, _("Copy Tracks to Filesystem..."), GTK_STOCK_SAVE_AS, G_CALLBACK (export_entries), NULL); } diff --git a/plugins/exporter/plugin.c b/plugins/exporter/plugin.c index 52b1bac..2f276f1 100644 --- a/plugins/exporter/plugin.c +++ b/plugins/exporter/plugin.c @@ -54,7 +54,7 @@ static GtkActionEntry exporter_actions[] = { "ActionExportToPlaylistFile", /* Action name */ NULL, /* Stock icon */ - N_("Export Tracks To Playlist File"), /* Display label */ + N_("Export Tracks To Playlist File..."), /* Display label */ NULL, /* short-cut */ NULL, /* Tooltip */ G_CALLBACK (on_export_tracks_to_playlist_file) /* callback */ @@ -62,7 +62,7 @@ static GtkActionEntry exporter_actions[] = { "ActionExportToFilesystem", /* Action name */ NULL, /* Stock icon */ - N_("Export Tracks To Filesystem"), /* Display label */ + N_("Export Tracks To Filesystem..."), /* Display label */ NULL, /* short-cut */ NULL, /* Tooltip */ G_CALLBACK (on_export_tracks_to_filesystem) /* callback */ diff --git a/plugins/playlist_display/plugin.c b/plugins/playlist_display/plugin.c index 27ecb86..1edb02f 100644 --- a/plugins/playlist_display/plugin.c +++ b/plugins/playlist_display/plugin.c @@ -73,7 +73,7 @@ static GtkActionEntry playlist_actions[] = { ACTION_ADD_FILES, /* Action name */ PLAYLIST_DISPLAY_ADD_FILES_ICON_STOCK_ID, /* Stock icon */ - N_("Add _Files"), /* Display label */ + N_("Add _Files..."), /* Display label */ NULL, /* short-cut */ N_("Add files to selected iPod"), /* Tooltip */ G_CALLBACK (on_create_add_files) /* callback */ @@ -81,7 +81,7 @@ static GtkActionEntry playlist_actions[] = { ACTION_ADD_DIRECTORY, /* Action name */ PLAYLIST_DISPLAY_ADD_DIRS_ICON_STOCK_ID, /* Stock icon */ - N_("Add Fol_der"), /* Display label */ + N_("Add Fol_der..."), /* Display label */ NULL, /* short-cut */ N_("Add folder contents to selected iPod"), /* Tooltip */ G_CALLBACK (on_create_add_directory) /* callback */ @@ -89,7 +89,7 @@ static GtkActionEntry playlist_actions[] = { ACTION_ADD_PLAYLIST, /* Action name */ PLAYLIST_DISPLAY_ADD_PLAYLISTS_ICON_STOCK_ID, /* Stock icon */ - N_("Add _Playlist"), /* Display label */ + N_("Add _Playlist..."), /* Display label */ NULL, /* short-cut */ N_("Add playlist to selected iPod"), /* Tooltip */ G_CALLBACK (on_create_add_playlists) /* callback */ @@ -113,7 +113,7 @@ static GtkActionEntry playlist_actions[] = { "ActionNewEmptyPlaylist", GTK_STOCK_NEW, - N_("Empty Playlist"), + N_("Empty Playlist..."), NULL, N_("Create an empty playlist"), G_CALLBACK (on_new_playlist_activate) @@ -121,7 +121,7 @@ static GtkActionEntry playlist_actions[] = { "ActionNewSmartPlaylist", NULL, - N_("Smart Playlist"), + N_("Smart Playlist..."), NULL, N_("Create a new smart playlist"), G_CALLBACK (on_smart_playlist_activate) diff --git a/plugins/repository_editor/plugin.c b/plugins/repository_editor/plugin.c index b4dbf9e..5f65521 100644 --- a/plugins/repository_editor/plugin.c +++ b/plugins/repository_editor/plugin.c @@ -45,7 +45,7 @@ static GtkActionEntry repository_editor_actions[] = { "ActionInitRepository", GTK_STOCK_EXECUTE, - N_("Create iPod's _Directories"), + N_("Create iPod's _Directories..."), NULL, NULL, G_CALLBACK (on_create_ipod_directories) diff --git a/plugins/sorttab_display/sorttab_display_context_menu.c b/plugins/sorttab_display/sorttab_display_context_menu.c index f9b297a..937f3a2 100644 --- a/plugins/sorttab_display/sorttab_display_context_menu.c +++ b/plugins/sorttab_display/sorttab_display_context_menu.c @@ -277,7 +277,7 @@ void st_context_menu_init(gint inst) { GtkWidget *copy_menu = add_sub_menu(menu, _("Copy"), GTK_STOCK_COPY); add_copy_track_to_filesystem(copy_menu); - add_copy_selected_entry_to_target_itdb(copy_menu, _("Copy selected track(s) to...")); + add_copy_selected_entry_to_target_itdb(copy_menu, _("Copy selected track(s) to")); add_separator(menu); if (itdb->usertype & GP_ITDB_TYPE_IPOD) { diff --git a/plugins/track_display/track_display_context_menu.c b/plugins/track_display/track_display_context_menu.c index e67472c..c2c33fb 100644 --- a/plugins/track_display/track_display_context_menu.c +++ b/plugins/track_display/track_display_context_menu.c @@ -174,7 +174,7 @@ void tm_context_menu_init(void) { GtkWidget *copy_menu = add_sub_menu(menu, _("Copy"), GTK_STOCK_COPY); add_copy_track_to_filesystem(copy_menu); - add_copy_selected_tracks_to_target_itdb(copy_menu, _("Copy selected track(s) to...")); + add_copy_selected_tracks_to_target_itdb(copy_menu, _("Copy selected track(s) to")); add_separator(menu); if (itdb->usertype & GP_ITDB_TYPE_IPOD) { ------------------------------------------------------------------------------ Gaining the trust of online customers is vital for the success of any company that requires sensitive data to be transmitted over the Web. Learn how to best implement a security strategy that keeps consumers' information secure and instills the confidence they need to proceed with transactions. http://p.sf.net/sfu/oracle-sfdevnl _______________________________________________ gtkpod-cvs2 mailing list gtkpod-cvs2@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/gtkpod-cvs2