[Xfce4-commits] [panel-plugins/xfce4-quicklauncher-plugin] 02/02: Use english strings in identifiers for translations (#4092)

noreply at xfce.org noreply at xfce.org
Tue Jul 29 21:59:49 CEST 2014


This is an automated email from the git hooks/post-receive script.

landry pushed a commit to branch master
in repository panel-plugins/xfce4-quicklauncher-plugin.

commit b4fdc236af82ae690a8638f968924baadff58efc
Author: Landry Breuil <landry at xfce.org>
Date:   Tue Jul 29 21:57:00 2014 +0200

    Use english strings in identifiers for translations (#4092)
---
 panel-plugin/callbacks.c |   12 ++++++------
 po/ar.po                 |   12 ++++++------
 po/ast.po                |   12 ++++++------
 po/bg.po                 |   12 ++++++------
 po/ca.po                 |   12 ++++++------
 po/cs.po                 |   12 ++++++------
 po/da.po                 |   12 ++++++------
 po/de.po                 |   12 ++++++------
 po/el.po                 |   12 ++++++------
 po/en_AU.po              |   12 ++++++------
 po/en_GB.po              |   12 ++++++------
 po/es.po                 |   12 ++++++------
 po/eu.po                 |   12 ++++++------
 po/fi.po                 |   12 ++++++------
 po/fr.po                 |   12 ++++++------
 po/gl.po                 |   12 ++++++------
 po/hr.po                 |   12 ++++++------
 po/hu.po                 |   12 ++++++------
 po/id.po                 |   12 ++++++------
 po/is.po                 |   12 ++++++------
 po/it.po                 |   12 ++++++------
 po/ja.po                 |   12 ++++++------
 po/ko.po                 |   12 ++++++------
 po/lv.po                 |   12 ++++++------
 po/ms.po                 |   12 ++++++------
 po/nb.po                 |   12 ++++++------
 po/nl.po                 |   12 ++++++------
 po/oc.po                 |   12 ++++++------
 po/pa.po                 |   12 ++++++------
 po/pl.po                 |   12 ++++++------
 po/pt.po                 |   12 ++++++------
 po/pt_BR.po              |   12 ++++++------
 po/ru.po                 |   12 ++++++------
 po/sk.po                 |   12 ++++++------
 po/sq.po                 |   12 ++++++------
 po/sr.po                 |   12 ++++++------
 po/sv.po                 |   12 ++++++------
 po/th.po                 |   12 ++++++------
 po/tr.po                 |   12 ++++++------
 po/ug.po                 |   12 ++++++------
 po/uk.po                 |   12 ++++++------
 po/ur.po                 |   12 ++++++------
 po/ur_PK.po              |   12 ++++++------
 po/vi.po                 |   12 ++++++------
 po/zh_CN.po              |   12 ++++++------
 po/zh_TW.po              |   12 ++++++------
 46 files changed, 276 insertions(+), 276 deletions(-)

diff --git a/panel-plugin/callbacks.c b/panel-plugin/callbacks.c
index 5118bb8..e59eed5 100644
--- a/panel-plugin/callbacks.c
+++ b/panel-plugin/callbacks.c
@@ -121,7 +121,7 @@ t_qck_launcher_opt_dlg* create_qck_launcher_dlg()
   gtk_box_pack_start(GTK_BOX (_dlg->vbox), _dlg->spacing_hbox, TRUE, TRUE, 0);
   gtk_container_set_border_width(GTK_CONTAINER(_dlg->spacing_hbox), 5);
   
-  _dlg->spacing_label = gtk_label_new(_("Espace entre les lanceurs :"));
+  _dlg->spacing_label = gtk_label_new(_("Space between launchers:"));
   gtk_widget_show (_dlg->spacing_label);
   gtk_box_pack_start(GTK_BOX (_dlg->spacing_hbox), _dlg->spacing_label, FALSE, FALSE, 0);
   
@@ -129,11 +129,11 @@ t_qck_launcher_opt_dlg* create_qck_launcher_dlg()
   gtk_widget_show (_dlg->spacing );
   gtk_box_pack_end(GTK_BOX (_dlg->spacing_hbox), _dlg->spacing, TRUE, TRUE, 0);
   
-  _dlg->chk_tooltip = gtk_check_button_new_with_label(_("afficher les tooltips"));
+  _dlg->chk_tooltip = gtk_check_button_new_with_label(_("Show tooltips"));
   gtk_widget_show (_dlg->chk_tooltip);
   gtk_box_pack_start(GTK_BOX (_dlg->vbox), _dlg->chk_tooltip, TRUE, TRUE, 0);
   
-  _dlg->chk_labels = gtk_check_button_new_with_label(_("afficher les labels"));
+  _dlg->chk_labels = gtk_check_button_new_with_label(_("Show labels"));
   gtk_widget_show (_dlg->chk_labels);
   gtk_box_pack_start(GTK_BOX (_dlg->vbox), _dlg->chk_labels, TRUE, TRUE, 0);
   
@@ -217,19 +217,19 @@ qck_launcher_opt_dlg_set_quicklauncher(t_quicklauncher *quicklauncher)//must be
 	//render = gtk_cell_renderer_combo_new();
 	//configure_combo(render); if I one day can use combo with pixbuf...
 	g_object_set (G_OBJECT(render), "mode", GTK_CELL_RENDERER_MODE_ACTIVATABLE,"sensitive", TRUE, NULL);
-	column = gtk_tree_view_column_new_with_attributes(_("icone"), render, "pixbuf", 0, NULL);
+	column = gtk_tree_view_column_new_with_attributes(_("icon"), render, "pixbuf", 0, NULL);
 	gtk_tree_view_append_column(GTK_TREE_VIEW(_dlg->treeview1), column);
 
 	render = gtk_cell_renderer_text_new();
 	g_object_set (G_OBJECT(render),"editable", TRUE, NULL);
 	g_signal_connect(render, "edited", G_CALLBACK (cmd_changed), NULL);
-	column = gtk_tree_view_column_new_with_attributes(_("commande"), render, "text", 1,  NULL);
+	column = gtk_tree_view_column_new_with_attributes(_("command"), render, "text", 1,  NULL);
 	gtk_tree_view_append_column(GTK_TREE_VIEW(_dlg->treeview1), column);
 
 	render = gtk_cell_renderer_text_new();
 	g_object_set (G_OBJECT(render),"editable", TRUE, NULL);
 	g_signal_connect(render, "edited", G_CALLBACK (name_changed), NULL);
-	column = gtk_tree_view_column_new_with_attributes(_("nom"), render, "text", 2,  NULL);
+	column = gtk_tree_view_column_new_with_attributes(_("name"), render, "text", 2,  NULL);
 	gtk_tree_view_append_column(GTK_TREE_VIEW(_dlg->treeview1), column);
 	//load current config
 	for( i = g_list_last(quicklauncher->launchers); i != NULL; i = g_list_previous(i) )
diff --git a/po/ar.po b/po/ar.po
index 8be8b84..c8fc37a 100644
--- a/po/ar.po
+++ b/po/ar.po
@@ -21,27 +21,27 @@ msgid "Lines: "
 msgstr "سطور:"
 
 #: ../panel-plugin/callbacks.c:123
-msgid "Espace entre les lanceurs :"
+msgid "Space between launchers:"
 msgstr "مسافة بين المطلقات:"
 
 #: ../panel-plugin/callbacks.c:131
-msgid "afficher les tooltips"
+msgid "Show tooltips"
 msgstr "اظهر تلميحات"
 
 #: ../panel-plugin/callbacks.c:135
-msgid "afficher les labels"
+msgid "Show labels"
 msgstr "أظهر الأوسمة"
 
 #: ../panel-plugin/callbacks.c:216
-msgid "icone"
+msgid "icon"
 msgstr "أيقونة"
 
 #: ../panel-plugin/callbacks.c:222
-msgid "commande"
+msgid "command"
 msgstr "امر"
 
 #: ../panel-plugin/callbacks.c:228
-msgid "nom"
+msgid "name"
 msgstr "إسم"
 
 #: ../panel-plugin/callbacks.c:327
diff --git a/po/ast.po b/po/ast.po
index ed5e472..0cfc3ac 100644
--- a/po/ast.po
+++ b/po/ast.po
@@ -28,27 +28,27 @@ msgid "Lines: "
 msgstr "Llinies:"
 
 #: ../panel-plugin/callbacks.c:123
-msgid "Espace entre les lanceurs :"
+msgid "Space between launchers:"
 msgstr "Espaciu ente los llanzadores:"
 
 #: ../panel-plugin/callbacks.c:131
-msgid "afficher les tooltips"
+msgid "Show tooltips"
 msgstr "Amosar conseyos"
 
 #: ../panel-plugin/callbacks.c:135
-msgid "afficher les labels"
+msgid "Show labels"
 msgstr "Amosar etiquetes"
 
 #: ../panel-plugin/callbacks.c:216
-msgid "icone"
+msgid "icon"
 msgstr "iconu"
 
 #: ../panel-plugin/callbacks.c:222
-msgid "commande"
+msgid "command"
 msgstr "comandu"
 
 #: ../panel-plugin/callbacks.c:228
-msgid "nom"
+msgid "name"
 msgstr "nome"
 
 #: ../panel-plugin/callbacks.c:327
diff --git a/po/bg.po b/po/bg.po
index 0fe9aa2..6d0c1ec 100644
--- a/po/bg.po
+++ b/po/bg.po
@@ -26,27 +26,27 @@ msgid "Lines: "
 msgstr "Редове:"
 
 #: ../panel-plugin/callbacks.c:123
-msgid "Espace entre les lanceurs :"
+msgid "Space between launchers:"
 msgstr "Разстояние между стартерите :"
 
 #: ../panel-plugin/callbacks.c:131
-msgid "afficher les tooltips"
+msgid "Show tooltips"
 msgstr "показване на подсказки"
 
 #: ../panel-plugin/callbacks.c:135
-msgid "afficher les labels"
+msgid "Show labels"
 msgstr "показване на заглавия"
 
 #: ../panel-plugin/callbacks.c:216
-msgid "icone"
+msgid "icon"
 msgstr "икона"
 
 #: ../panel-plugin/callbacks.c:222
-msgid "commande"
+msgid "command"
 msgstr "команда"
 
 #: ../panel-plugin/callbacks.c:228
-msgid "nom"
+msgid "name"
 msgstr "име"
 
 #: ../panel-plugin/callbacks.c:327
diff --git a/po/ca.po b/po/ca.po
index 12b90a6..fcbda34 100644
--- a/po/ca.po
+++ b/po/ca.po
@@ -26,27 +26,27 @@ msgid "Lines: "
 msgstr "Línies: "
 
 #: ../panel-plugin/callbacks.c:123
-msgid "Espace entre les lanceurs :"
+msgid "Space between launchers:"
 msgstr "Espai entre els llançadors:"
 
 #: ../panel-plugin/callbacks.c:131
-msgid "afficher les tooltips"
+msgid "Show tooltips"
 msgstr "mostra els indicadors de funcions"
 
 #: ../panel-plugin/callbacks.c:135
-msgid "afficher les labels"
+msgid "Show labels"
 msgstr "mostra les etiquetes"
 
 #: ../panel-plugin/callbacks.c:216
-msgid "icone"
+msgid "icon"
 msgstr "icona"
 
 #: ../panel-plugin/callbacks.c:222
-msgid "commande"
+msgid "command"
 msgstr "ordre"
 
 #: ../panel-plugin/callbacks.c:228
-msgid "nom"
+msgid "name"
 msgstr "nom"
 
 #: ../panel-plugin/callbacks.c:327
diff --git a/po/cs.po b/po/cs.po
index 6a12485..8e069aa 100644
--- a/po/cs.po
+++ b/po/cs.po
@@ -25,27 +25,27 @@ msgid "Lines: "
 msgstr "Řádky:"
 
 #: ../panel-plugin/callbacks.c:123
-msgid "Espace entre les lanceurs :"
+msgid "Space between launchers:"
 msgstr "Vzdálenosti mezi tlačítky:"
 
 #: ../panel-plugin/callbacks.c:131
-msgid "afficher les tooltips"
+msgid "Show tooltips"
 msgstr "Zobrazovat tipy"
 
 #: ../panel-plugin/callbacks.c:135
-msgid "afficher les labels"
+msgid "Show labels"
 msgstr "Zobrazovat popisky"
 
 #: ../panel-plugin/callbacks.c:216
-msgid "icone"
+msgid "icon"
 msgstr "Ikona"
 
 #: ../panel-plugin/callbacks.c:222
-msgid "commande"
+msgid "command"
 msgstr "Příkaz"
 
 #: ../panel-plugin/callbacks.c:228
-msgid "nom"
+msgid "name"
 msgstr "Název"
 
 #: ../panel-plugin/callbacks.c:327
diff --git a/po/da.po b/po/da.po
index 40e4b49..27ca66a 100644
--- a/po/da.po
+++ b/po/da.po
@@ -27,27 +27,27 @@ msgid "Lines: "
 msgstr "Linjer: "
 
 #: ../panel-plugin/callbacks.c:123
-msgid "Espace entre les lanceurs :"
+msgid "Space between launchers:"
 msgstr "Mellemrum mellem startere :"
 
 #: ../panel-plugin/callbacks.c:131
-msgid "afficher les tooltips"
+msgid "Show tooltips"
 msgstr "vis værktøjstips"
 
 #: ../panel-plugin/callbacks.c:135
-msgid "afficher les labels"
+msgid "Show labels"
 msgstr "vis mærkater"
 
 #: ../panel-plugin/callbacks.c:216
-msgid "icone"
+msgid "icon"
 msgstr "ikon"
 
 #: ../panel-plugin/callbacks.c:222
-msgid "commande"
+msgid "command"
 msgstr "kommando"
 
 #: ../panel-plugin/callbacks.c:228
-msgid "nom"
+msgid "name"
 msgstr "navn"
 
 #: ../panel-plugin/callbacks.c:327
diff --git a/po/de.po b/po/de.po
index b0785ed..0288581 100644
--- a/po/de.po
+++ b/po/de.po
@@ -26,27 +26,27 @@ msgid "Lines: "
 msgstr "Zeilen:"
 
 #: ../panel-plugin/callbacks.c:123
-msgid "Espace entre les lanceurs :"
+msgid "Space between launchers:"
 msgstr "Platz zwischen den Startern:"
 
 #: ../panel-plugin/callbacks.c:131
-msgid "afficher les tooltips"
+msgid "Show tooltips"
 msgstr "Kurzhilfen anzeigen"
 
 #: ../panel-plugin/callbacks.c:135
-msgid "afficher les labels"
+msgid "Show labels"
 msgstr "Beschriftungen anzeigen"
 
 #: ../panel-plugin/callbacks.c:216
-msgid "icone"
+msgid "icon"
 msgstr "Symbol"
 
 #: ../panel-plugin/callbacks.c:222
-msgid "commande"
+msgid "command"
 msgstr "Befehl"
 
 #: ../panel-plugin/callbacks.c:228
-msgid "nom"
+msgid "name"
 msgstr "Name"
 
 #: ../panel-plugin/callbacks.c:327
diff --git a/po/el.po b/po/el.po
index 32f81a3..fdae57f 100644
--- a/po/el.po
+++ b/po/el.po
@@ -28,27 +28,27 @@ msgid "Lines: "
 msgstr "Γραμμές:"
 
 #: ../panel-plugin/callbacks.c:123
-msgid "Espace entre les lanceurs :"
+msgid "Space between launchers:"
 msgstr "Διάστημα μεταξύ εκκινητών:"
 
 #: ../panel-plugin/callbacks.c:131
-msgid "afficher les tooltips"
+msgid "Show tooltips"
 msgstr "Εμφάνιση γρήγορης βοήθειας"
 
 #: ../panel-plugin/callbacks.c:135
-msgid "afficher les labels"
+msgid "Show labels"
 msgstr "Εμφάνιση ετικέτας"
 
 #: ../panel-plugin/callbacks.c:216
-msgid "icone"
+msgid "icon"
 msgstr "εικονίδια"
 
 #: ../panel-plugin/callbacks.c:222
-msgid "commande"
+msgid "command"
 msgstr "εντολές"
 
 #: ../panel-plugin/callbacks.c:228
-msgid "nom"
+msgid "name"
 msgstr "Όνομα"
 
 #: ../panel-plugin/callbacks.c:327
diff --git a/po/en_AU.po b/po/en_AU.po
index 02dcb0b..fcb98d8 100644
--- a/po/en_AU.po
+++ b/po/en_AU.po
@@ -27,27 +27,27 @@ msgid "Lines: "
 msgstr "Lines: "
 
 #: ../panel-plugin/callbacks.c:123
-msgid "Espace entre les lanceurs :"
+msgid "Space between launchers:"
 msgstr "Space between launchers :"
 
 #: ../panel-plugin/callbacks.c:131
-msgid "afficher les tooltips"
+msgid "Show tooltips"
 msgstr "display tooltips"
 
 #: ../panel-plugin/callbacks.c:135
-msgid "afficher les labels"
+msgid "Show labels"
 msgstr "display labels"
 
 #: ../panel-plugin/callbacks.c:216
-msgid "icone"
+msgid "icon"
 msgstr "Icon:"
 
 #: ../panel-plugin/callbacks.c:222
-msgid "commande"
+msgid "command"
 msgstr "Command"
 
 #: ../panel-plugin/callbacks.c:228
-msgid "nom"
+msgid "name"
 msgstr "name"
 
 #: ../panel-plugin/callbacks.c:327
diff --git a/po/en_GB.po b/po/en_GB.po
index a142491..5a12202 100644
--- a/po/en_GB.po
+++ b/po/en_GB.po
@@ -26,27 +26,27 @@ msgid "Lines: "
 msgstr "Lines: "
 
 #: ../panel-plugin/callbacks.c:123
-msgid "Espace entre les lanceurs :"
+msgid "Space between launchers:"
 msgstr "Space between launchers"
 
 #: ../panel-plugin/callbacks.c:131
-msgid "afficher les tooltips"
+msgid "Show tooltips"
 msgstr "Show tooltips"
 
 #: ../panel-plugin/callbacks.c:135
-msgid "afficher les labels"
+msgid "Show labels"
 msgstr "Show labels"
 
 #: ../panel-plugin/callbacks.c:216
-msgid "icone"
+msgid "icon"
 msgstr "icon"
 
 #: ../panel-plugin/callbacks.c:222
-msgid "commande"
+msgid "command"
 msgstr "command"
 
 #: ../panel-plugin/callbacks.c:228
-msgid "nom"
+msgid "name"
 msgstr "name"
 
 #: ../panel-plugin/callbacks.c:327
diff --git a/po/es.po b/po/es.po
index 41debc0..770b028 100644
--- a/po/es.po
+++ b/po/es.po
@@ -25,27 +25,27 @@ msgid "Lines: "
 msgstr "Líneas:"
 
 #: ../panel-plugin/callbacks.c:123
-msgid "Espace entre les lanceurs :"
+msgid "Space between launchers:"
 msgstr "Espacio entre los lanzadores:"
 
 #: ../panel-plugin/callbacks.c:131
-msgid "afficher les tooltips"
+msgid "Show tooltips"
 msgstr "Mostrar consejos"
 
 #: ../panel-plugin/callbacks.c:135
-msgid "afficher les labels"
+msgid "Show labels"
 msgstr "Mostrar etiquetas"
 
 #: ../panel-plugin/callbacks.c:216
-msgid "icone"
+msgid "icon"
 msgstr "icono"
 
 #: ../panel-plugin/callbacks.c:222
-msgid "commande"
+msgid "command"
 msgstr "comando"
 
 #: ../panel-plugin/callbacks.c:228
-msgid "nom"
+msgid "name"
 msgstr "nombre"
 
 #: ../panel-plugin/callbacks.c:327
diff --git a/po/eu.po b/po/eu.po
index 8d86456..5ddf4db 100644
--- a/po/eu.po
+++ b/po/eu.po
@@ -25,27 +25,27 @@ msgid "Lines: "
 msgstr "Lerro: "
 
 #: ../panel-plugin/callbacks.c:123
-msgid "Espace entre les lanceurs :"
+msgid "Space between launchers:"
 msgstr "Abiarazleen arteko tartea :"
 
 #: ../panel-plugin/callbacks.c:131
-msgid "afficher les tooltips"
+msgid "Show tooltips"
 msgstr "Ikusi argibideak"
 
 #: ../panel-plugin/callbacks.c:135
-msgid "afficher les labels"
+msgid "Show labels"
 msgstr "ikusi etiketak"
 
 #: ../panel-plugin/callbacks.c:216
-msgid "icone"
+msgid "icon"
 msgstr "ikonoa"
 
 #: ../panel-plugin/callbacks.c:222
-msgid "commande"
+msgid "command"
 msgstr "komandoa"
 
 #: ../panel-plugin/callbacks.c:228
-msgid "nom"
+msgid "name"
 msgstr "izena"
 
 #: ../panel-plugin/callbacks.c:327
diff --git a/po/fi.po b/po/fi.po
index 215139b..e21d96f 100644
--- a/po/fi.po
+++ b/po/fi.po
@@ -27,27 +27,27 @@ msgid "Lines: "
 msgstr "Rivejä:"
 
 #: ../panel-plugin/callbacks.c:123
-msgid "Espace entre les lanceurs :"
+msgid "Space between launchers:"
 msgstr ""
 
 #: ../panel-plugin/callbacks.c:131
-msgid "afficher les tooltips"
+msgid "Show tooltips"
 msgstr ""
 
 #: ../panel-plugin/callbacks.c:135
-msgid "afficher les labels"
+msgid "Show labels"
 msgstr ""
 
 #: ../panel-plugin/callbacks.c:216
-msgid "icone"
+msgid "icon"
 msgstr ""
 
 #: ../panel-plugin/callbacks.c:222
-msgid "commande"
+msgid "command"
 msgstr ""
 
 #: ../panel-plugin/callbacks.c:228
-msgid "nom"
+msgid "name"
 msgstr ""
 
 #: ../panel-plugin/callbacks.c:327
diff --git a/po/fr.po b/po/fr.po
index ee1a44e..c3e38f7 100644
--- a/po/fr.po
+++ b/po/fr.po
@@ -29,27 +29,27 @@ msgid "Lines: "
 msgstr "Lignes : "
 
 #: ../panel-plugin/callbacks.c:123
-msgid "Espace entre les lanceurs :"
+msgid "Space between launchers:"
 msgstr "Espace entre les lanceurs :"
 
 #: ../panel-plugin/callbacks.c:131
-msgid "afficher les tooltips"
+msgid "Show tooltips"
 msgstr "afficher les infobulles"
 
 #: ../panel-plugin/callbacks.c:135
-msgid "afficher les labels"
+msgid "Show labels"
 msgstr "afficher les étiquettes"
 
 #: ../panel-plugin/callbacks.c:216
-msgid "icone"
+msgid "icon"
 msgstr "icône"
 
 #: ../panel-plugin/callbacks.c:222
-msgid "commande"
+msgid "command"
 msgstr "commande"
 
 #: ../panel-plugin/callbacks.c:228
-msgid "nom"
+msgid "name"
 msgstr "nom"
 
 #: ../panel-plugin/callbacks.c:327
diff --git a/po/gl.po b/po/gl.po
index 252264f..8070d36 100644
--- a/po/gl.po
+++ b/po/gl.po
@@ -30,32 +30,32 @@ msgstr "Liñas: "
 
 # FRANCÉS
 #: ../panel-plugin/callbacks.c:123
-msgid "Espace entre les lanceurs :"
+msgid "Space between launchers:"
 msgstr "Espazo entra os lanzadores:"
 
 # FRANCÉS
 #: ../panel-plugin/callbacks.c:131
-msgid "afficher les tooltips"
+msgid "Show tooltips"
 msgstr "mostrar as notificacións"
 
 # FRANCÉS
 #: ../panel-plugin/callbacks.c:135
-msgid "afficher les labels"
+msgid "Show labels"
 msgstr "mostrar as etiquetas"
 
 # FRANCÉS
 #: ../panel-plugin/callbacks.c:216
-msgid "icone"
+msgid "icon"
 msgstr "icona"
 
 # FRANCÉS
 #: ../panel-plugin/callbacks.c:222
-msgid "commande"
+msgid "command"
 msgstr "comando"
 
 # FRANCÉS
 #: ../panel-plugin/callbacks.c:228
-msgid "nom"
+msgid "name"
 msgstr "nome"
 
 #: ../panel-plugin/callbacks.c:327
diff --git a/po/hr.po b/po/hr.po
index d577b86..f978e84 100644
--- a/po/hr.po
+++ b/po/hr.po
@@ -28,27 +28,27 @@ msgid "Lines: "
 msgstr "Linije:"
 
 #: ../panel-plugin/callbacks.c:123
-msgid "Espace entre les lanceurs :"
+msgid "Space between launchers:"
 msgstr "Razmak između pokretača:"
 
 #: ../panel-plugin/callbacks.c:131
-msgid "afficher les tooltips"
+msgid "Show tooltips"
 msgstr "Prikazuj oblačiće"
 
 #: ../panel-plugin/callbacks.c:135
-msgid "afficher les labels"
+msgid "Show labels"
 msgstr "Pokazuj oznake"
 
 #: ../panel-plugin/callbacks.c:216
-msgid "icone"
+msgid "icon"
 msgstr "ikona"
 
 #: ../panel-plugin/callbacks.c:222
-msgid "commande"
+msgid "command"
 msgstr "naredba"
 
 #: ../panel-plugin/callbacks.c:228
-msgid "nom"
+msgid "name"
 msgstr "Ime"
 
 #: ../panel-plugin/callbacks.c:327
diff --git a/po/hu.po b/po/hu.po
index 1b69f82..669ca7e 100644
--- a/po/hu.po
+++ b/po/hu.po
@@ -27,27 +27,27 @@ msgid "Lines: "
 msgstr "Sorok: "
 
 #: ../panel-plugin/callbacks.c:124
-msgid "Espace entre les lanceurs :"
+msgid "Space between launchers:"
 msgstr "Hely az indítóikonok között:"
 
 #: ../panel-plugin/callbacks.c:132
-msgid "afficher les tooltips"
+msgid "Show tooltips"
 msgstr "Buboréksúgók megjelenítése"
 
 #: ../panel-plugin/callbacks.c:136
-msgid "afficher les labels"
+msgid "Show labels"
 msgstr "Címkék megjelenítése"
 
 #: ../panel-plugin/callbacks.c:220
-msgid "icone"
+msgid "icon"
 msgstr "ikonok"
 
 #: ../panel-plugin/callbacks.c:226
-msgid "commande"
+msgid "command"
 msgstr "parancs"
 
 #: ../panel-plugin/callbacks.c:232
-msgid "nom"
+msgid "name"
 msgstr "név"
 
 #: ../panel-plugin/callbacks.c:331
diff --git a/po/id.po b/po/id.po
index 7eade6f..39136c3 100644
--- a/po/id.po
+++ b/po/id.po
@@ -24,27 +24,27 @@ msgid "Lines: "
 msgstr "Baris: "
 
 #: ../panel-plugin/callbacks.c:123
-msgid "Espace entre les lanceurs :"
+msgid "Space between launchers:"
 msgstr "Spasi di antara peluncur :"
 
 #: ../panel-plugin/callbacks.c:131
-msgid "afficher les tooltips"
+msgid "Show tooltips"
 msgstr "tampilkan tip alat"
 
 #: ../panel-plugin/callbacks.c:135
-msgid "afficher les labels"
+msgid "Show labels"
 msgstr "tampilkan label"
 
 #: ../panel-plugin/callbacks.c:216
-msgid "icone"
+msgid "icon"
 msgstr "ikon"
 
 #: ../panel-plugin/callbacks.c:222
-msgid "commande"
+msgid "command"
 msgstr "perintah"
 
 #: ../panel-plugin/callbacks.c:228
-msgid "nom"
+msgid "name"
 msgstr "nama"
 
 #: ../panel-plugin/callbacks.c:327
diff --git a/po/is.po b/po/is.po
index 28e2565..a59a5de 100644
--- a/po/is.po
+++ b/po/is.po
@@ -26,27 +26,27 @@ msgid "Lines: "
 msgstr "Línur: "
 
 #: ../panel-plugin/callbacks.c:123
-msgid "Espace entre les lanceurs :"
+msgid "Space between launchers:"
 msgstr "Bil milli ræsa:"
 
 #: ../panel-plugin/callbacks.c:131
-msgid "afficher les tooltips"
+msgid "Show tooltips"
 msgstr "Birta vísbendingar"
 
 #: ../panel-plugin/callbacks.c:135
-msgid "afficher les labels"
+msgid "Show labels"
 msgstr "Birta skýringar"
 
 #: ../panel-plugin/callbacks.c:216
-msgid "icone"
+msgid "icon"
 msgstr "táknmynd"
 
 #: ../panel-plugin/callbacks.c:222
-msgid "commande"
+msgid "command"
 msgstr "skipun"
 
 #: ../panel-plugin/callbacks.c:228
-msgid "nom"
+msgid "name"
 msgstr "heiti"
 
 #: ../panel-plugin/callbacks.c:327
diff --git a/po/it.po b/po/it.po
index cb33f64..6c91982 100644
--- a/po/it.po
+++ b/po/it.po
@@ -23,27 +23,27 @@ msgid "Lines: "
 msgstr "Righe:"
 
 #: ../panel-plugin/callbacks.c:123
-msgid "Espace entre les lanceurs :"
+msgid "Space between launchers:"
 msgstr "Spazio tra gli avviatori:"
 
 #: ../panel-plugin/callbacks.c:131
-msgid "afficher les tooltips"
+msgid "Show tooltips"
 msgstr "Mostra le descrizioni"
 
 #: ../panel-plugin/callbacks.c:135
-msgid "afficher les labels"
+msgid "Show labels"
 msgstr "Mostra le etichette"
 
 #: ../panel-plugin/callbacks.c:216
-msgid "icone"
+msgid "icon"
 msgstr "icona"
 
 #: ../panel-plugin/callbacks.c:222
-msgid "commande"
+msgid "command"
 msgstr "comando"
 
 #: ../panel-plugin/callbacks.c:228
-msgid "nom"
+msgid "name"
 msgstr "nome"
 
 #: ../panel-plugin/callbacks.c:327
diff --git a/po/ja.po b/po/ja.po
index 370436c..3995b64 100644
--- a/po/ja.po
+++ b/po/ja.po
@@ -25,27 +25,27 @@ msgid "Lines: "
 msgstr "行数: "
 
 #: ../panel-plugin/callbacks.c:123
-msgid "Espace entre les lanceurs :"
+msgid "Space between launchers:"
 msgstr "ランチャー間の間隔:"
 
 #: ../panel-plugin/callbacks.c:131
-msgid "afficher les tooltips"
+msgid "Show tooltips"
 msgstr "ツールチップを表示する"
 
 #: ../panel-plugin/callbacks.c:135
-msgid "afficher les labels"
+msgid "Show labels"
 msgstr "ラベルを表示する"
 
 #: ../panel-plugin/callbacks.c:216
-msgid "icone"
+msgid "icon"
 msgstr "アイコン"
 
 #: ../panel-plugin/callbacks.c:222
-msgid "commande"
+msgid "command"
 msgstr "コマンド"
 
 #: ../panel-plugin/callbacks.c:228
-msgid "nom"
+msgid "name"
 msgstr "名前"
 
 #: ../panel-plugin/callbacks.c:327
diff --git a/po/ko.po b/po/ko.po
index a6a551b..a1db8ac 100644
--- a/po/ko.po
+++ b/po/ko.po
@@ -28,27 +28,27 @@ msgid "Lines: "
 msgstr "줄:"
 
 #: ../panel-plugin/callbacks.c:123
-msgid "Espace entre les lanceurs :"
+msgid "Space between launchers:"
 msgstr "실행 아이콘 위치 공간 :"
 
 #: ../panel-plugin/callbacks.c:131
-msgid "afficher les tooltips"
+msgid "Show tooltips"
 msgstr "풍선 도움말 표시"
 
 #: ../panel-plugin/callbacks.c:135
-msgid "afficher les labels"
+msgid "Show labels"
 msgstr "레이블 표시"
 
 #: ../panel-plugin/callbacks.c:216
-msgid "icone"
+msgid "icon"
 msgstr "야이콘"
 
 #: ../panel-plugin/callbacks.c:222
-msgid "commande"
+msgid "command"
 msgstr "명령"
 
 #: ../panel-plugin/callbacks.c:228
-msgid "nom"
+msgid "name"
 msgstr "이름"
 
 #: ../panel-plugin/callbacks.c:327
diff --git a/po/lv.po b/po/lv.po
index ce3b9ed..020653a 100644
--- a/po/lv.po
+++ b/po/lv.po
@@ -27,27 +27,27 @@ msgid "Lines: "
 msgstr "Rindas: "
 
 #: ../panel-plugin/callbacks.c:123
-msgid "Espace entre les lanceurs :"
+msgid "Space between launchers:"
 msgstr "Atstarpe starp palaidējiem:"
 
 #: ../panel-plugin/callbacks.c:131
-msgid "afficher les tooltips"
+msgid "Show tooltips"
 msgstr "Rādīt paskaidres"
 
 #: ../panel-plugin/callbacks.c:135
-msgid "afficher les labels"
+msgid "Show labels"
 msgstr "Rādīt etiķetes"
 
 #: ../panel-plugin/callbacks.c:216
-msgid "icone"
+msgid "icon"
 msgstr "ikona"
 
 #: ../panel-plugin/callbacks.c:222
-msgid "commande"
+msgid "command"
 msgstr "komanda"
 
 #: ../panel-plugin/callbacks.c:228
-msgid "nom"
+msgid "name"
 msgstr "nosaukums"
 
 #: ../panel-plugin/callbacks.c:327
diff --git a/po/ms.po b/po/ms.po
index 607b9f7..33ae682 100644
--- a/po/ms.po
+++ b/po/ms.po
@@ -27,27 +27,27 @@ msgid "Lines: "
 msgstr "Baris:"
 
 #: ../panel-plugin/callbacks.c:123
-msgid "Espace entre les lanceurs :"
+msgid "Space between launchers:"
 msgstr "Jarak diantara pelancar:"
 
 #: ../panel-plugin/callbacks.c:131
-msgid "afficher les tooltips"
+msgid "Show tooltips"
 msgstr "papar tip alat"
 
 #: ../panel-plugin/callbacks.c:135
-msgid "afficher les labels"
+msgid "Show labels"
 msgstr "Papar label"
 
 #: ../panel-plugin/callbacks.c:216
-msgid "icone"
+msgid "icon"
 msgstr "Ikon"
 
 #: ../panel-plugin/callbacks.c:222
-msgid "commande"
+msgid "command"
 msgstr "perintah"
 
 #: ../panel-plugin/callbacks.c:228
-msgid "nom"
+msgid "name"
 msgstr "nama"
 
 #: ../panel-plugin/callbacks.c:327
diff --git a/po/nb.po b/po/nb.po
index 86866ee..6b884a6 100644
--- a/po/nb.po
+++ b/po/nb.po
@@ -28,27 +28,27 @@ msgid "Lines: "
 msgstr "Linjer:"
 
 #: ../panel-plugin/callbacks.c:123
-msgid "Espace entre les lanceurs :"
+msgid "Space between launchers:"
 msgstr "Mellomrom mellom tastene:"
 
 #: ../panel-plugin/callbacks.c:131
-msgid "afficher les tooltips"
+msgid "Show tooltips"
 msgstr "Vis verktøystips"
 
 #: ../panel-plugin/callbacks.c:135
-msgid "afficher les labels"
+msgid "Show labels"
 msgstr "Vis etiketter"
 
 #: ../panel-plugin/callbacks.c:216
-msgid "icone"
+msgid "icon"
 msgstr "ikon"
 
 #: ../panel-plugin/callbacks.c:222
-msgid "commande"
+msgid "command"
 msgstr "kommando"
 
 #: ../panel-plugin/callbacks.c:228
-msgid "nom"
+msgid "name"
 msgstr "navn"
 
 #: ../panel-plugin/callbacks.c:327
diff --git a/po/nl.po b/po/nl.po
index a783b87..6f23463 100644
--- a/po/nl.po
+++ b/po/nl.po
@@ -27,27 +27,27 @@ msgid "Lines: "
 msgstr "Regels: "
 
 #: ../panel-plugin/callbacks.c:123
-msgid "Espace entre les lanceurs :"
+msgid "Space between launchers:"
 msgstr "Ruimte tussen de starters :"
 
 #: ../panel-plugin/callbacks.c:131
-msgid "afficher les tooltips"
+msgid "Show tooltips"
 msgstr "de gereedschaptips tonen"
 
 #: ../panel-plugin/callbacks.c:135
-msgid "afficher les labels"
+msgid "Show labels"
 msgstr "de etiketten tonen"
 
 #: ../panel-plugin/callbacks.c:216
-msgid "icone"
+msgid "icon"
 msgstr "pictogram"
 
 #: ../panel-plugin/callbacks.c:222
-msgid "commande"
+msgid "command"
 msgstr "opdracht"
 
 #: ../panel-plugin/callbacks.c:228
-msgid "nom"
+msgid "name"
 msgstr "naam"
 
 #: ../panel-plugin/callbacks.c:327
diff --git a/po/oc.po b/po/oc.po
index f56a514..05b4e01 100644
--- a/po/oc.po
+++ b/po/oc.po
@@ -27,27 +27,27 @@ msgid "Lines: "
 msgstr "Linhas : "
 
 #: ../panel-plugin/callbacks.c:123
-msgid "Espace entre les lanceurs :"
+msgid "Space between launchers:"
 msgstr "Espaci entre los aviadors :"
 
 #: ../panel-plugin/callbacks.c:131
-msgid "afficher les tooltips"
+msgid "Show tooltips"
 msgstr "afichar las Infobullas"
 
 #: ../panel-plugin/callbacks.c:135
-msgid "afficher les labels"
+msgid "Show labels"
 msgstr "afichar las etiquetas"
 
 #: ../panel-plugin/callbacks.c:216
-msgid "icone"
+msgid "icon"
 msgstr "icòna"
 
 #: ../panel-plugin/callbacks.c:222
-msgid "commande"
+msgid "command"
 msgstr "comanda"
 
 #: ../panel-plugin/callbacks.c:228
-msgid "nom"
+msgid "name"
 msgstr "nom"
 
 #: ../panel-plugin/callbacks.c:327
diff --git a/po/pa.po b/po/pa.po
index 756f1c0..4565e51 100644
--- a/po/pa.po
+++ b/po/pa.po
@@ -25,27 +25,27 @@ msgid "Lines: "
 msgstr "ਲਾਈਨਾਂ: "
 
 #: ../panel-plugin/callbacks.c:123
-msgid "Espace entre les lanceurs :"
+msgid "Space between launchers:"
 msgstr ""
 
 #: ../panel-plugin/callbacks.c:131
-msgid "afficher les tooltips"
+msgid "Show tooltips"
 msgstr ""
 
 #: ../panel-plugin/callbacks.c:135
-msgid "afficher les labels"
+msgid "Show labels"
 msgstr ""
 
 #: ../panel-plugin/callbacks.c:216
-msgid "icone"
+msgid "icon"
 msgstr "ਆਈਕਾਨ"
 
 #: ../panel-plugin/callbacks.c:222
-msgid "commande"
+msgid "command"
 msgstr "ਕਮਾਂਡ"
 
 #: ../panel-plugin/callbacks.c:228
-msgid "nom"
+msgid "name"
 msgstr ""
 
 #: ../panel-plugin/callbacks.c:327
diff --git a/po/pl.po b/po/pl.po
index 7d489c4..0be10d7 100644
--- a/po/pl.po
+++ b/po/pl.po
@@ -29,27 +29,27 @@ msgid "Lines: "
 msgstr "Ilość wierszy: "
 
 #: ../panel-plugin/callbacks.c:123
-msgid "Espace entre les lanceurs :"
+msgid "Space between launchers:"
 msgstr "Odstęp pomiędzy aktywatorami:"
 
 #: ../panel-plugin/callbacks.c:131
-msgid "afficher les tooltips"
+msgid "Show tooltips"
 msgstr "Wyświetlanie podpowiedzi"
 
 #: ../panel-plugin/callbacks.c:135
-msgid "afficher les labels"
+msgid "Show labels"
 msgstr "Wyświetlanie etykiet"
 
 #: ../panel-plugin/callbacks.c:216
-msgid "icone"
+msgid "icon"
 msgstr "Ikona"
 
 #: ../panel-plugin/callbacks.c:222
-msgid "commande"
+msgid "command"
 msgstr "Polecenie"
 
 #: ../panel-plugin/callbacks.c:228
-msgid "nom"
+msgid "name"
 msgstr "Nazwa"
 
 #: ../panel-plugin/callbacks.c:327
diff --git a/po/pt.po b/po/pt.po
index 5b65d72..ac8452e 100644
--- a/po/pt.po
+++ b/po/pt.po
@@ -24,27 +24,27 @@ msgid "Lines: "
 msgstr "Linhas:"
 
 #: ../panel-plugin/callbacks.c:123
-msgid "Espace entre les lanceurs :"
+msgid "Space between launchers:"
 msgstr "Espaço entre os lançadores:"
 
 #: ../panel-plugin/callbacks.c:131
-msgid "afficher les tooltips"
+msgid "Show tooltips"
 msgstr "afixar as dicas"
 
 #: ../panel-plugin/callbacks.c:135
-msgid "afficher les labels"
+msgid "Show labels"
 msgstr "afixar as etiquetas"
 
 #: ../panel-plugin/callbacks.c:216
-msgid "icone"
+msgid "icon"
 msgstr "ícone"
 
 #: ../panel-plugin/callbacks.c:222
-msgid "commande"
+msgid "command"
 msgstr "comando"
 
 #: ../panel-plugin/callbacks.c:228
-msgid "nom"
+msgid "name"
 msgstr "nome"
 
 #: ../panel-plugin/callbacks.c:327
diff --git a/po/pt_BR.po b/po/pt_BR.po
index bb80fa9..b88ed82 100644
--- a/po/pt_BR.po
+++ b/po/pt_BR.po
@@ -24,27 +24,27 @@ msgid "Lines: "
 msgstr "Linhas: "
 
 #: ../panel-plugin/callbacks.c:123
-msgid "Espace entre les lanceurs :"
+msgid "Space between launchers:"
 msgstr "Espaço entre os lançadores :"
 
 #: ../panel-plugin/callbacks.c:131
-msgid "afficher les tooltips"
+msgid "Show tooltips"
 msgstr "fixar as dicas de ferramentas"
 
 #: ../panel-plugin/callbacks.c:135
-msgid "afficher les labels"
+msgid "Show labels"
 msgstr "Fixar os rótulos"
 
 #: ../panel-plugin/callbacks.c:216
-msgid "icone"
+msgid "icon"
 msgstr "ícone"
 
 #: ../panel-plugin/callbacks.c:222
-msgid "commande"
+msgid "command"
 msgstr "comando"
 
 #: ../panel-plugin/callbacks.c:228
-msgid "nom"
+msgid "name"
 msgstr "nome"
 
 #: ../panel-plugin/callbacks.c:327
diff --git a/po/ru.po b/po/ru.po
index d255c54..3842b83 100644
--- a/po/ru.po
+++ b/po/ru.po
@@ -25,27 +25,27 @@ msgid "Lines: "
 msgstr "Строки:"
 
 #: ../panel-plugin/callbacks.c:123
-msgid "Espace entre les lanceurs :"
+msgid "Space between launchers:"
 msgstr "Расстояние между lanceurs :"
 
 #: ../panel-plugin/callbacks.c:131
-msgid "afficher les tooltips"
+msgid "Show tooltips"
 msgstr "Показывать подсказки"
 
 #: ../panel-plugin/callbacks.c:135
-msgid "afficher les labels"
+msgid "Show labels"
 msgstr "Показывать лейблы"
 
 #: ../panel-plugin/callbacks.c:216
-msgid "icone"
+msgid "icon"
 msgstr "значок"
 
 #: ../panel-plugin/callbacks.c:222
-msgid "commande"
+msgid "command"
 msgstr "команда"
 
 #: ../panel-plugin/callbacks.c:228
-msgid "nom"
+msgid "name"
 msgstr "nom"
 
 #: ../panel-plugin/callbacks.c:327
diff --git a/po/sk.po b/po/sk.po
index 9beeb6b..f3f826f 100644
--- a/po/sk.po
+++ b/po/sk.po
@@ -27,27 +27,27 @@ msgid "Lines: "
 msgstr "Riadky:"
 
 #: ../panel-plugin/callbacks.c:123
-msgid "Espace entre les lanceurs :"
+msgid "Space between launchers:"
 msgstr "Vzdialenosť medzi spúšťačmi:"
 
 #: ../panel-plugin/callbacks.c:131
-msgid "afficher les tooltips"
+msgid "Show tooltips"
 msgstr "Zobrazovať nástrojové tipy"
 
 #: ../panel-plugin/callbacks.c:135
-msgid "afficher les labels"
+msgid "Show labels"
 msgstr "Zobrazovať štítky"
 
 #: ../panel-plugin/callbacks.c:216
-msgid "icone"
+msgid "icon"
 msgstr "Ikona"
 
 #: ../panel-plugin/callbacks.c:222
-msgid "commande"
+msgid "command"
 msgstr "Príkaz"
 
 #: ../panel-plugin/callbacks.c:228
-msgid "nom"
+msgid "name"
 msgstr "Názov"
 
 #: ../panel-plugin/callbacks.c:327
diff --git a/po/sq.po b/po/sq.po
index 1915903..f9d7247 100644
--- a/po/sq.po
+++ b/po/sq.po
@@ -24,27 +24,27 @@ msgid "Lines: "
 msgstr "Rreshta: "
 
 #: ../panel-plugin/callbacks.c:123
-msgid "Espace entre les lanceurs :"
+msgid "Space between launchers:"
 msgstr "Hapësirë ndërmjet nisësash :"
 
 #: ../panel-plugin/callbacks.c:131
-msgid "afficher les tooltips"
+msgid "Show tooltips"
 msgstr "shfaq ndihmëzat"
 
 #: ../panel-plugin/callbacks.c:135
-msgid "afficher les labels"
+msgid "Show labels"
 msgstr "shfaq etiketat"
 
 #: ../panel-plugin/callbacks.c:216
-msgid "icone"
+msgid "icon"
 msgstr "ikonë"
 
 #: ../panel-plugin/callbacks.c:222
-msgid "commande"
+msgid "command"
 msgstr "Formësoni Nisësin e Shpejtë"
 
 #: ../panel-plugin/callbacks.c:228
-msgid "nom"
+msgid "name"
 msgstr "emër"
 
 #: ../panel-plugin/callbacks.c:327
diff --git a/po/sr.po b/po/sr.po
index a3c10ee..c78f6e3 100644
--- a/po/sr.po
+++ b/po/sr.po
@@ -28,27 +28,27 @@ msgid "Lines: "
 msgstr "Линије:"
 
 #: ../panel-plugin/callbacks.c:123
-msgid "Espace entre les lanceurs :"
+msgid "Space between launchers:"
 msgstr "Простор између покретача :"
 
 #: ../panel-plugin/callbacks.c:131
-msgid "afficher les tooltips"
+msgid "Show tooltips"
 msgstr "прикажи напомене"
 
 #: ../panel-plugin/callbacks.c:135
-msgid "afficher les labels"
+msgid "Show labels"
 msgstr "прикажи ознаке"
 
 #: ../panel-plugin/callbacks.c:216
-msgid "icone"
+msgid "icon"
 msgstr "икона"
 
 #: ../panel-plugin/callbacks.c:222
-msgid "commande"
+msgid "command"
 msgstr "наредба"
 
 #: ../panel-plugin/callbacks.c:228
-msgid "nom"
+msgid "name"
 msgstr "име"
 
 #: ../panel-plugin/callbacks.c:327
diff --git a/po/sv.po b/po/sv.po
index c6d4f7d..a51c81d 100644
--- a/po/sv.po
+++ b/po/sv.po
@@ -28,27 +28,27 @@ msgid "Lines: "
 msgstr "Rader: "
 
 #: ../panel-plugin/callbacks.c:123
-msgid "Espace entre les lanceurs :"
+msgid "Space between launchers:"
 msgstr "Avstånd mellan programstartare:"
 
 #: ../panel-plugin/callbacks.c:131
-msgid "afficher les tooltips"
+msgid "Show tooltips"
 msgstr "visa verktygstips"
 
 #: ../panel-plugin/callbacks.c:135
-msgid "afficher les labels"
+msgid "Show labels"
 msgstr "visa etiketter"
 
 #: ../panel-plugin/callbacks.c:216
-msgid "icone"
+msgid "icon"
 msgstr "ikon"
 
 #: ../panel-plugin/callbacks.c:222
-msgid "commande"
+msgid "command"
 msgstr "kommando"
 
 #: ../panel-plugin/callbacks.c:228
-msgid "nom"
+msgid "name"
 msgstr "namn"
 
 #: ../panel-plugin/callbacks.c:327
diff --git a/po/th.po b/po/th.po
index 271d3c3..09a436b 100644
--- a/po/th.po
+++ b/po/th.po
@@ -27,27 +27,27 @@ msgid "Lines: "
 msgstr "จำนวนแถว: "
 
 #: ../panel-plugin/callbacks.c:123
-msgid "Espace entre les lanceurs :"
+msgid "Space between launchers:"
 msgstr "ช่องว่างระหว่างปุ่มเรียก: "
 
 #: ../panel-plugin/callbacks.c:131
-msgid "afficher les tooltips"
+msgid "Show tooltips"
 msgstr "แสดงคำแนะนำเครื่องมือ"
 
 #: ../panel-plugin/callbacks.c:135
-msgid "afficher les labels"
+msgid "Show labels"
 msgstr "แสดงฉลาก"
 
 #: ../panel-plugin/callbacks.c:216
-msgid "icone"
+msgid "icon"
 msgstr "ไอคอน"
 
 #: ../panel-plugin/callbacks.c:222
-msgid "commande"
+msgid "command"
 msgstr "คำสั่ง"
 
 #: ../panel-plugin/callbacks.c:228
-msgid "nom"
+msgid "name"
 msgstr "ชื่อ"
 
 #: ../panel-plugin/callbacks.c:327
diff --git a/po/tr.po b/po/tr.po
index 4f6e4cc..e6ca8cc 100644
--- a/po/tr.po
+++ b/po/tr.po
@@ -26,27 +26,27 @@ msgid "Lines: "
 msgstr "Sıra: "
 
 #: ../panel-plugin/callbacks.c:123
-msgid "Espace entre les lanceurs :"
+msgid "Space between launchers:"
 msgstr "Space between launchers"
 
 #: ../panel-plugin/callbacks.c:131
-msgid "afficher les tooltips"
+msgid "Show tooltips"
 msgstr "Araç bilgisini göster"
 
 #: ../panel-plugin/callbacks.c:135
-msgid "afficher les labels"
+msgid "Show labels"
 msgstr "İsimleri göster"
 
 #: ../panel-plugin/callbacks.c:216
-msgid "icone"
+msgid "icon"
 msgstr "simge"
 
 #: ../panel-plugin/callbacks.c:222
-msgid "commande"
+msgid "command"
 msgstr "komut"
 
 #: ../panel-plugin/callbacks.c:228
-msgid "nom"
+msgid "name"
 msgstr "isim"
 
 #: ../panel-plugin/callbacks.c:327
diff --git a/po/ug.po b/po/ug.po
index c4068f4..fbf0fc8 100644
--- a/po/ug.po
+++ b/po/ug.po
@@ -24,27 +24,27 @@ msgid "Lines: "
 msgstr "قۇر سانى: "
 
 #: ../panel-plugin/callbacks.c:123
-msgid "Espace entre les lanceurs :"
+msgid "Space between launchers:"
 msgstr "ئىجراچى ئارىسىدىكى ئارىلىق:"
 
 #: ../panel-plugin/callbacks.c:131
-msgid "afficher les tooltips"
+msgid "Show tooltips"
 msgstr "كۆرسەتمىلەرنى كۆرسىتىش"
 
 #: ../panel-plugin/callbacks.c:135
-msgid "afficher les labels"
+msgid "Show labels"
 msgstr "ئەنلەرنى كۆرسىتىش"
 
 #: ../panel-plugin/callbacks.c:216
-msgid "icone"
+msgid "icon"
 msgstr "سىنبەلگە"
 
 #: ../panel-plugin/callbacks.c:222
-msgid "commande"
+msgid "command"
 msgstr "بۇيرۇق"
 
 #: ../panel-plugin/callbacks.c:228
-msgid "nom"
+msgid "name"
 msgstr "ئاتى"
 
 #: ../panel-plugin/callbacks.c:327
diff --git a/po/uk.po b/po/uk.po
index ec2bd43..f6f58cc 100644
--- a/po/uk.po
+++ b/po/uk.po
@@ -25,27 +25,27 @@ msgid "Lines: "
 msgstr "Рядки: "
 
 #: ../panel-plugin/callbacks.c:124
-msgid "Espace entre les lanceurs :"
+msgid "Space between launchers:"
 msgstr "Проміжок між рядками :"
 
 #: ../panel-plugin/callbacks.c:132
-msgid "afficher les tooltips"
+msgid "Show tooltips"
 msgstr "відображати спливаючі"
 
 #: ../panel-plugin/callbacks.c:136
-msgid "afficher les labels"
+msgid "Show labels"
 msgstr "відображати мітки"
 
 #: ../panel-plugin/callbacks.c:220
-msgid "icone"
+msgid "icon"
 msgstr "значок"
 
 #: ../panel-plugin/callbacks.c:226
-msgid "commande"
+msgid "command"
 msgstr "команда"
 
 #: ../panel-plugin/callbacks.c:232
-msgid "nom"
+msgid "name"
 msgstr "нічого"
 
 #: ../panel-plugin/callbacks.c:331
diff --git a/po/ur.po b/po/ur.po
index 8b5d766..3c73ec2 100644
--- a/po/ur.po
+++ b/po/ur.po
@@ -28,27 +28,27 @@ msgid "Lines: "
 msgstr "لائنیں:"
 
 #: ../panel-plugin/callbacks.c:123
-msgid "Espace entre les lanceurs :"
+msgid "Space between launchers:"
 msgstr "Espace entre les lanceurs :"
 
 #: ../panel-plugin/callbacks.c:131
-msgid "afficher les tooltips"
+msgid "Show tooltips"
 msgstr "afficher les tooltips"
 
 #: ../panel-plugin/callbacks.c:135
-msgid "afficher les labels"
+msgid "Show labels"
 msgstr "afficher les labels"
 
 #: ../panel-plugin/callbacks.c:216
-msgid "icone"
+msgid "icon"
 msgstr "آئکن"
 
 #: ../panel-plugin/callbacks.c:222
-msgid "commande"
+msgid "command"
 msgstr "کمانڈ"
 
 #: ../panel-plugin/callbacks.c:228
-msgid "nom"
+msgid "name"
 msgstr "nom"
 
 #: ../panel-plugin/callbacks.c:327
diff --git a/po/ur_PK.po b/po/ur_PK.po
index 8b5d766..3c73ec2 100644
--- a/po/ur_PK.po
+++ b/po/ur_PK.po
@@ -28,27 +28,27 @@ msgid "Lines: "
 msgstr "لائنیں:"
 
 #: ../panel-plugin/callbacks.c:123
-msgid "Espace entre les lanceurs :"
+msgid "Space between launchers:"
 msgstr "Espace entre les lanceurs :"
 
 #: ../panel-plugin/callbacks.c:131
-msgid "afficher les tooltips"
+msgid "Show tooltips"
 msgstr "afficher les tooltips"
 
 #: ../panel-plugin/callbacks.c:135
-msgid "afficher les labels"
+msgid "Show labels"
 msgstr "afficher les labels"
 
 #: ../panel-plugin/callbacks.c:216
-msgid "icone"
+msgid "icon"
 msgstr "آئکن"
 
 #: ../panel-plugin/callbacks.c:222
-msgid "commande"
+msgid "command"
 msgstr "کمانڈ"
 
 #: ../panel-plugin/callbacks.c:228
-msgid "nom"
+msgid "name"
 msgstr "nom"
 
 #: ../panel-plugin/callbacks.c:327
diff --git a/po/vi.po b/po/vi.po
index f0a2970..0f05bb7 100644
--- a/po/vi.po
+++ b/po/vi.po
@@ -24,27 +24,27 @@ msgid "Lines: "
 msgstr "Đường: "
 
 #: ../panel-plugin/callbacks.c:123
-msgid "Espace entre les lanceurs :"
+msgid "Space between launchers:"
 msgstr ""
 
 #: ../panel-plugin/callbacks.c:131
-msgid "afficher les tooltips"
+msgid "Show tooltips"
 msgstr ""
 
 #: ../panel-plugin/callbacks.c:135
-msgid "afficher les labels"
+msgid "Show labels"
 msgstr ""
 
 #: ../panel-plugin/callbacks.c:216
-msgid "icone"
+msgid "icon"
 msgstr "biểu tượng"
 
 #: ../panel-plugin/callbacks.c:222
-msgid "commande"
+msgid "command"
 msgstr "câu lệnh"
 
 #: ../panel-plugin/callbacks.c:228
-msgid "nom"
+msgid "name"
 msgstr ""
 
 #: ../panel-plugin/callbacks.c:327
diff --git a/po/zh_CN.po b/po/zh_CN.po
index c93cc8d..4fd1b37 100644
--- a/po/zh_CN.po
+++ b/po/zh_CN.po
@@ -28,27 +28,27 @@ msgid "Lines: "
 msgstr "行:"
 
 #: ../panel-plugin/callbacks.c:123
-msgid "Espace entre les lanceurs :"
+msgid "Space between launchers:"
 msgstr "启动器之间的间隔:"
 
 #: ../panel-plugin/callbacks.c:131
-msgid "afficher les tooltips"
+msgid "Show tooltips"
 msgstr "显示工具提示"
 
 #: ../panel-plugin/callbacks.c:135
-msgid "afficher les labels"
+msgid "Show labels"
 msgstr "显示标签"
 
 #: ../panel-plugin/callbacks.c:216
-msgid "icone"
+msgid "icon"
 msgstr "图标"
 
 #: ../panel-plugin/callbacks.c:222
-msgid "commande"
+msgid "command"
 msgstr "命令"
 
 #: ../panel-plugin/callbacks.c:228
-msgid "nom"
+msgid "name"
 msgstr "名称"
 
 #: ../panel-plugin/callbacks.c:327
diff --git a/po/zh_TW.po b/po/zh_TW.po
index 279aaeb..1b218fd 100644
--- a/po/zh_TW.po
+++ b/po/zh_TW.po
@@ -25,27 +25,27 @@ msgid "Lines: "
 msgstr "列:"
 
 #: ../panel-plugin/callbacks.c:123
-msgid "Espace entre les lanceurs :"
+msgid "Space between launchers:"
 msgstr "啟動器之間的間隔:"
 
 #: ../panel-plugin/callbacks.c:131
-msgid "afficher les tooltips"
+msgid "Show tooltips"
 msgstr "顯示提示框"
 
 #: ../panel-plugin/callbacks.c:135
-msgid "afficher les labels"
+msgid "Show labels"
 msgstr "顯示標籤"
 
 #: ../panel-plugin/callbacks.c:216
-msgid "icone"
+msgid "icon"
 msgstr "圖示"
 
 #: ../panel-plugin/callbacks.c:222
-msgid "commande"
+msgid "command"
 msgstr "指令"
 
 #: ../panel-plugin/callbacks.c:228
-msgid "nom"
+msgid "name"
 msgstr "名稱"
 
 #: ../panel-plugin/callbacks.c:327

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Xfce4-commits mailing list