[totem] Fix capitalisation of the “Skip To” dialogue's title



commit a3d03ff0c605873f825f360ad27967e2ab81cc9d
Author: Philip Withnall <philip tecnocode co uk>
Date:   Thu Jan 13 16:55:08 2011 +0000

    Fix capitalisation of the â??Skip Toâ?? dialogue's title

 src/plugins/skipto/totem-skipto-plugin.c |    2 +-
 src/plugins/skipto/totem-skipto.c        |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/src/plugins/skipto/totem-skipto-plugin.c b/src/plugins/skipto/totem-skipto-plugin.c
index de4e183..9d2f181 100644
--- a/src/plugins/skipto/totem-skipto-plugin.c
+++ b/src/plugins/skipto/totem-skipto-plugin.c
@@ -179,7 +179,7 @@ impl_activate (PeasActivatable *plugin)
 	TotemSkiptoPluginPrivate *priv = pi->priv;
 
 	const GtkActionEntry menu_entries[] = {
-		{ "skip-to", GTK_STOCK_JUMP_TO, N_("_Skip to..."), "<Control>K", N_("Skip to a specific time"), G_CALLBACK (skip_to_action_callback) }
+		{ "skip-to", GTK_STOCK_JUMP_TO, N_("_Skip To..."), "<Control>K", N_("Skip to a specific time"), G_CALLBACK (skip_to_action_callback) }
 	};
 
 	priv->totem = g_object_get_data (G_OBJECT (plugin), "object");
diff --git a/src/plugins/skipto/totem-skipto.c b/src/plugins/skipto/totem-skipto.c
index 4fe5421..c2d2a47 100644
--- a/src/plugins/skipto/totem-skipto.c
+++ b/src/plugins/skipto/totem-skipto.c
@@ -194,7 +194,7 @@ totem_skipto_new (TotemObject *totem)
 	tstw_adjustment_value_changed_cb (GTK_ADJUSTMENT (gtk_builder_get_object
 		(skipto->priv->xml, "tstw_skip_adjustment")), skipto);
 
-	gtk_window_set_title (GTK_WINDOW (skipto), _("Skip to"));
+	gtk_window_set_title (GTK_WINDOW (skipto), _("Skip To"));
 	gtk_dialog_add_buttons (GTK_DIALOG (skipto),
 				GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL,
 				GTK_STOCK_OK, GTK_RESPONSE_OK,



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