summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorElijah Newren <newren gmail com>2006-09-28 00:32:23 +0000
committerElijah Newren <newren@src.gnome.org>2006-09-28 00:32:23 +0000
commitb01408f358620445b99ef750eef09115c3a31980 (patch)
tree4591e68f91ebac7191084f495dfe0e2a1393e5fe
parent4fc6a7ce658882f5dc098b1d80f0961425219ae8 (diff)
downloadmetacity-b01408f358620445b99ef750eef09115c3a31980.tar.gz
Patch from Bruno Boaventura to add notes to remind translators to keep
2006-09-27 Elijah Newren <newren gmail com> * src/menu.c (var menuitems): Patch from Bruno Boaventura to add notes to remind translators to keep translations in sync with libwnck. #355620.
-rw-r--r--ChangeLog6
-rw-r--r--src/menu.c17
2 files changed, 23 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index fd8fb84f..66a58476 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2006-09-27 Elijah Newren <newren gmail com>
+
+ * src/menu.c (var menuitems): Patch from Bruno Boaventura to add
+ notes to remind translators to keep translations in sync with
+ libwnck. #355620.
+
2006-09-18 Elijah Newren <newren gmail com>
* src/window.c (meta_window_show): Patch from Jens Granseuer to
diff --git a/src/menu.c b/src/menu.c
index 2f78152d..3f6a0ad1 100644
--- a/src/menu.c
+++ b/src/menu.c
@@ -52,24 +52,41 @@ struct _MenuData
static void activate_cb (GtkWidget *menuitem, gpointer data);
static MenuItem menuitems[] = {
+ /* Translators: Translate this string the same way as you do in libwnck! */
{ META_MENU_OP_MINIMIZE, METACITY_STOCK_MINIMIZE, FALSE, N_("Mi_nimize") },
+ /* Translators: Translate this string the same way as you do in libwnck! */
{ META_MENU_OP_MAXIMIZE, METACITY_STOCK_MAXIMIZE, FALSE, N_("Ma_ximize") },
+ /* Translators: Translate this string the same way as you do in libwnck! */
{ META_MENU_OP_UNMAXIMIZE, NULL, FALSE, N_("Unma_ximize") },
+ /* Translators: Translate this string the same way as you do in libwnck! */
{ META_MENU_OP_SHADE, NULL, FALSE, N_("Roll _Up") },
+ /* Translators: Translate this string the same way as you do in libwnck! */
{ META_MENU_OP_UNSHADE, NULL, FALSE, N_("_Unroll") },
+ /* Translators: Translate this string the same way as you do in libwnck! */
{ META_MENU_OP_ABOVE, NULL, FALSE, N_("On _Top") },
+ /* Translators: Translate this string the same way as you do in libwnck! */
{ META_MENU_OP_UNABOVE, NULL, TRUE, N_("On _Top") },
+ /* Translators: Translate this string the same way as you do in libwnck! */
{ META_MENU_OP_MOVE, NULL, FALSE, N_("_Move") },
+ /* Translators: Translate this string the same way as you do in libwnck! */
{ META_MENU_OP_RESIZE, NULL, FALSE, N_("_Resize") },
+ /* Translators: Translate this string the same way as you do in libwnck! */
{ META_MENU_OP_RECOVER, NULL, FALSE, N_("Move Titlebar On_screen") },
{ 0, NULL, FALSE, NULL }, /* separator */
+ /* Translators: Translate this string the same way as you do in libwnck! */
{ META_MENU_OP_DELETE, METACITY_STOCK_DELETE, FALSE, N_("_Close") },
{ META_MENU_OP_WORKSPACES, NULL, FALSE, NULL }, /* separator */
+ /* Translators: Translate this string the same way as you do in libwnck! */
{ META_MENU_OP_STICK, NULL, FALSE, N_("_Always on Visible Workspace") },
+ /* Translators: Translate this string the same way as you do in libwnck! */
{ META_MENU_OP_UNSTICK, NULL, FALSE, N_("_Only on This Workspace") },
+ /* Translators: Translate this string the same way as you do in libwnck! */
{ META_MENU_OP_MOVE_LEFT, NULL, FALSE, N_("Move to Workspace _Left") },
+ /* Translators: Translate this string the same way as you do in libwnck! */
{ META_MENU_OP_MOVE_RIGHT, NULL, FALSE, N_("Move to Workspace R_ight") },
+ /* Translators: Translate this string the same way as you do in libwnck! */
{ META_MENU_OP_MOVE_UP, NULL, FALSE, N_("Move to Workspace _Up") },
+ /* Translators: Translate this string the same way as you do in libwnck! */
{ META_MENU_OP_MOVE_DOWN, NULL, FALSE, N_("Move to Workspace _Down") }
};