[rhythmbox/v0.13.x] Use the app name, rather than the generic name "music player" everywhere



commit 80bd7799e143b163ded80968ee6dec56fbca2d81
Author: Jonathan Matthew <jonathan d14n org>
Date:   Sat Feb 26 10:47:06 2011 +1000

    Use the app name, rather than the generic name "music player" everywhere
    
    Let's stop pretending we're a core part of the desktop.

 plugins/status-icon/rb-status-icon-plugin.c |   10 +++++-----
 shell/rb-shell-preferences.c                |    2 +-
 shell/rb-shell.c                            |   12 ++++++------
 3 files changed, 12 insertions(+), 12 deletions(-)
---
diff --git a/plugins/status-icon/rb-status-icon-plugin.c b/plugins/status-icon/rb-status-icon-plugin.c
index 4e9ca49..883c059 100644
--- a/plugins/status-icon/rb-status-icon-plugin.c
+++ b/plugins/status-icon/rb-status-icon-plugin.c
@@ -56,7 +56,7 @@
 
 #include "rb-tray-icon-gtk.h"
 
-#define TRAY_ICON_DEFAULT_TOOLTIP _("Music Player")
+#define TRAY_ICON_DEFAULT_TOOLTIP _("Rhythmbox")
 
 #define TOOLTIP_IMAGE_BORDER_WIDTH	1
 #define PLAYING_ENTRY_NOTIFY_TIME	4
@@ -143,13 +143,13 @@ RB_PLUGIN_REGISTER(RBStatusIconPlugin, rb_status_icon_plugin)
 static GtkActionEntry rb_status_icon_plugin_actions [] =
 {
 	{ "MusicClose", GTK_STOCK_CLOSE, N_("_Close"), "<control>W",
-	  N_("Hide the music player window"),
+	  N_("Hide the Rhythmbox window"),
 	  G_CALLBACK (toggle_window_cmd) }
 };
 
 static GtkToggleActionEntry rb_status_icon_plugin_toggle_entries [] =
 {
-	{ "TrayShowWindow", NULL, N_("_Show Music Player"), NULL,
+	{ "TrayShowWindow", NULL, N_("_Show Rhythmbox"), NULL,
 	  N_("Choose music to play"),
 	  G_CALLBACK (show_window_cmd) },
 	{ "TrayShowNotifications", NULL, N_("Show N_otifications"), NULL,
@@ -1555,10 +1555,10 @@ impl_activate (RBPlugin *bplugin,
 		update_current_playing_data (plugin, entry);
 		rhythmdb_entry_unref (entry);
 	} else {
-		/* display the (generic) app name rather than "Not Playing" for
+		/* display the app name rather than "Not Playing" for
 		 * the initial notification
 		 */
-		plugin->priv->current_title = g_strdup (_("Music Player"));
+		plugin->priv->current_title = g_strdup (_("Rhythmbox"));
 		plugin->priv->current_album_and_artist = g_strdup ("");
 	}
 	update_tooltip (plugin);
diff --git a/shell/rb-shell-preferences.c b/shell/rb-shell-preferences.c
index 4918670..1daf812 100644
--- a/shell/rb-shell-preferences.c
+++ b/shell/rb-shell-preferences.c
@@ -195,7 +195,7 @@ rb_shell_preferences_init (RBShellPreferences *shell_preferences)
 	gtk_dialog_set_default_response (GTK_DIALOG (shell_preferences),
 					 GTK_RESPONSE_CLOSE);
 
-	gtk_window_set_title (GTK_WINDOW (shell_preferences), _("Music Player Preferences"));
+	gtk_window_set_title (GTK_WINDOW (shell_preferences), _("Rhythmbox Preferences"));
 	gtk_window_set_resizable (GTK_WINDOW (shell_preferences), FALSE);
 
 	shell_preferences->priv->notebook = GTK_WIDGET (gtk_notebook_new ());
diff --git a/shell/rb-shell.c b/shell/rb-shell.c
index 323efa9..49bfb0c 100644
--- a/shell/rb-shell.c
+++ b/shell/rb-shell.c
@@ -397,16 +397,16 @@ static GtkActionEntry rb_shell_actions [] =
 	  N_("Choose file to be added to the Library"),
 	  G_CALLBACK (rb_shell_cmd_add_file_to_library) },
 	{ "HelpAbout", GTK_STOCK_ABOUT, N_("_About"), NULL,
-	  N_("Show information about the music player"),
+	  N_("Show information about Rhythmbox"),
 	  G_CALLBACK (rb_shell_cmd_about) },
 	{ "HelpContents", GTK_STOCK_HELP, N_("_Contents"), "F1",
-	  N_("Display music player help"),
+	  N_("Display Rhythmbox help"),
 	  G_CALLBACK (rb_shell_cmd_contents) },
 	{ "MusicQuit", GTK_STOCK_QUIT, N_("_Quit"), "<control>Q",
-	  N_("Quit the music player"),
+	  N_("Quit Rhythmbox"),
 	  G_CALLBACK (rb_shell_cmd_quit) },
 	{ "EditPreferences", GTK_STOCK_PREFERENCES, N_("Prefere_nces"), NULL,
-	  N_("Edit music player preferences"),
+	  N_("Edit Rhythmbox preferences"),
 	  G_CALLBACK (rb_shell_cmd_preferences) },
 	{ "EditPlugins", NULL, N_("Plu_gins"), NULL,
 	  N_("Change and configure plugins"),
@@ -1241,7 +1241,7 @@ construct_widgets (RBShell *shell)
 
 	/* initialize UI */
 	win = GTK_WINDOW (gtk_window_new (GTK_WINDOW_TOPLEVEL));
-	gtk_window_set_title (win, _("Music Player"));
+	gtk_window_set_title (win, _("Rhythmbox"));
 
 	shell->priv->window = GTK_WIDGET (win);
 	shell->priv->iconified = FALSE;
@@ -2225,7 +2225,7 @@ rb_shell_set_window_title (RBShell *shell,
 		shell->priv->cached_title = NULL;
 
 		gtk_window_set_title (GTK_WINDOW (shell->priv->window),
-				      _("Music Player"));
+				      _("Rhythmbox"));
 	}
 	else {
 		gboolean playing;



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]