summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVincent Untz <vuntz@gnome.org>2007-04-30 22:46:24 +0000
committerVincent Untz <vuntz@src.gnome.org>2007-04-30 22:46:24 +0000
commit87bb9fe733ee3c49c352a03ed299f7d727d5f0b3 (patch)
treefb801aaea638ef6f28e9c46df18d398a58ab3bd4
parent6bc6aad5fd92d7c424f067ebe06235d6fefb50f2 (diff)
downloadlibwnck-87bb9fe733ee3c49c352a03ed299f7d727d5f0b3.tar.gz
mark strings as translatable
2007-05-01 Vincent Untz <vuntz@gnome.org> * libwnck/test-tasklist.c: mark strings as translatable svn path=/trunk/; revision=1216
-rw-r--r--ChangeLog4
-rw-r--r--libwnck/test-tasklist.c5
2 files changed, 6 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 0cae713..e29593b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2007-05-01 Vincent Untz <vuntz@gnome.org>
+
+ * libwnck/test-tasklist.c: mark strings as translatable
+
2007-04-29 Vincent Untz <vuntz@gnome.org>
Kill warnings and usage of deprecated functions
diff --git a/libwnck/test-tasklist.c b/libwnck/test-tasklist.c
index ae46a26..ee2de6a 100644
--- a/libwnck/test-tasklist.c
+++ b/libwnck/test-tasklist.c
@@ -6,10 +6,9 @@
static gboolean display_all = FALSE;
static gboolean always_group = FALSE;
-//FIXME 2.18: mark strings as translatable
static GOptionEntry entries[] = {
- {"always-group", 'a', 0, G_OPTION_ARG_NONE, &always_group, "Always group windows", NULL},
- {"display-all", 'a', 0, G_OPTION_ARG_NONE, &display_all, "Display windows from all workspaces", NULL},
+ {"always-group", 'a', 0, G_OPTION_ARG_NONE, &always_group, N_("Always group windows"), NULL},
+ {"display-all", 'a', 0, G_OPTION_ARG_NONE, &display_all, N_("Display windows from all workspaces"), NULL},
{NULL }
};