Update translation.

This commit is contained in:
Daiki Ueno
2011-02-24 17:39:15 +09:00
parent f1a44ddebb
commit 110b25a64b
5 changed files with 69 additions and 75 deletions

View File

@ -24,6 +24,7 @@
#include <string.h>
#include <stdlib.h>
#include <gdk/gdkx.h>
#include <glib/gi18n.h>
#include "eek/eek-xml.h"
#include "eek/eek-xkl.h"
@ -42,17 +43,17 @@ static gchar *opt_list = NULL;
static const GOptionEntry options[] = {
{"load", 'l', 0, G_OPTION_ARG_STRING, &opt_load,
"Show the keyboard loaded from an XML file"},
N_("Show the keyboard loaded from an XML file")},
{"dump", 'd', 0, G_OPTION_ARG_NONE, &opt_dump,
"Dump the current layout as XML"},
N_("Output the current layout into an XML file")},
{"list", 'L', 0, G_OPTION_ARG_STRING, &opt_list,
"List configuration items for given spec"},
N_("List configuration items for given spec")},
{"model", '\0', 0, G_OPTION_ARG_STRING, &opt_model,
"Specify model"},
N_("Specify model")},
{"layouts", '\0', 0, G_OPTION_ARG_STRING, &opt_layouts,
"Specify layouts"},
N_("Specify layouts")},
{"options", '\0', 0, G_OPTION_ARG_STRING, &opt_options,
"Specify options"},
N_("Specify options")},
{NULL}
};