Patch from Chyla Zbigniew <chyla@alice.ci.pwr.wroc.pl> to gettextize
1999-08-16 Jonathan Blandford <jrb@redhat.com> * Patch from Chyla Zbigniew <chyla@alice.ci.pwr.wroc.pl> to gettextize everything. Sorry translators...
This commit is contained in:
parent
611f3fa6bf
commit
fb5d8c4562
7 changed files with 799 additions and 1911 deletions
|
@ -298,12 +298,11 @@ update_gui (void)
|
|||
wm = tmp_list->data;
|
||||
|
||||
if (wm == current_wm) {
|
||||
row_text = g_strconcat (wm->dentry->name,
|
||||
_(" (Current)"), NULL);
|
||||
row_text = g_strdup_printf (_("%s (Current)"),
|
||||
wm->dentry->name);
|
||||
|
||||
tmpstr = g_strconcat (_("Run Configuration Tool for "),
|
||||
wm->dentry->name,
|
||||
NULL);
|
||||
tmpstr = g_strdup_printf (_("Run Configuration Tool for %s"),
|
||||
wm->dentry->name);
|
||||
|
||||
gtk_label_set_text (GTK_LABEL (GTK_BIN (config_button)->child),
|
||||
tmpstr);
|
||||
|
@ -352,12 +351,12 @@ init_callback (WMResult result, gpointer data)
|
|||
case WM_SUCCESS:
|
||||
break;
|
||||
case WM_ALREADY_RUNNING:
|
||||
g_warning ("wm-properties-capplet: Unable to initialize window manager.\n"
|
||||
"\tAnother window manager is already running and could not be killed\n");
|
||||
g_warning (_("wm-properties-capplet: Unable to initialize window manager.\n"
|
||||
"\tAnother window manager is already running and could not be killed\n"));
|
||||
break;
|
||||
case WM_CANT_START:
|
||||
g_warning ("wm-properties-capplet: Unable to initialize window manager.\n"
|
||||
"\t'%s' didn't start\n", (gchar *)data);
|
||||
g_warning (_("wm-properties-capplet: Unable to initialize window manager.\n"
|
||||
"\t'%s' didn't start\n"), (gchar *)data);
|
||||
break;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue