[Xfce4-commits] r22612 - in xfce4-panel/trunk: . config plugins/pager po
Jasper Huijsmans
jasper at xfce.org
Tue Aug 1 18:20:28 UTC 2006
Author: jasper
Date: 2006-08-01 18:20:27 +0000 (Tue, 01 Aug 2006)
New Revision: 22612
Modified:
xfce4-panel/trunk/autogen.sh
xfce4-panel/trunk/config/Makefile.am
xfce4-panel/trunk/config/launcher-7.rc.in
xfce4-panel/trunk/configure.ac.in
xfce4-panel/trunk/plugins/pager/pager.c
xfce4-panel/trunk/po/ar.po
xfce4-panel/trunk/po/az.po
xfce4-panel/trunk/po/be.po
xfce4-panel/trunk/po/bg.po
xfce4-panel/trunk/po/bn_IN.po
xfce4-panel/trunk/po/ca.po
xfce4-panel/trunk/po/cs.po
xfce4-panel/trunk/po/de.po
xfce4-panel/trunk/po/el.po
xfce4-panel/trunk/po/en_GB.po
xfce4-panel/trunk/po/eo.po
xfce4-panel/trunk/po/es.po
xfce4-panel/trunk/po/es_MX.po
xfce4-panel/trunk/po/et.po
xfce4-panel/trunk/po/eu.po
xfce4-panel/trunk/po/fa.po
xfce4-panel/trunk/po/fi.po
xfce4-panel/trunk/po/fr.po
xfce4-panel/trunk/po/gu.po
xfce4-panel/trunk/po/he.po
xfce4-panel/trunk/po/hi.po
xfce4-panel/trunk/po/hu.po
xfce4-panel/trunk/po/hy.po
xfce4-panel/trunk/po/it.po
xfce4-panel/trunk/po/ja.po
xfce4-panel/trunk/po/ko.po
xfce4-panel/trunk/po/lt.po
xfce4-panel/trunk/po/mr.po
xfce4-panel/trunk/po/ms.po
xfce4-panel/trunk/po/nb_NO.po
xfce4-panel/trunk/po/nl.po
xfce4-panel/trunk/po/pa.po
xfce4-panel/trunk/po/pl.po
xfce4-panel/trunk/po/pt_BR.po
xfce4-panel/trunk/po/pt_PT.po
xfce4-panel/trunk/po/ro.po
xfce4-panel/trunk/po/ru.po
xfce4-panel/trunk/po/sk.po
xfce4-panel/trunk/po/sv.po
xfce4-panel/trunk/po/ta.po
xfce4-panel/trunk/po/tr.po
xfce4-panel/trunk/po/uk.po
xfce4-panel/trunk/po/vi.po
xfce4-panel/trunk/po/xfce4-panel.pot
xfce4-panel/trunk/po/zh_CN.po
xfce4-panel/trunk/po/zh_TW.po
Log:
* Fix terminal icon in default config (bug #2098).
* Hack configure.ac.in to fixup intltool-update to support *.rc.in files (reported on xfce-i18n).
* Make mousewheel scrolling on pager optional. Patch by Nick (bug #1951).
* Update po files. Final string update, hopefully.
Modified: xfce4-panel/trunk/autogen.sh
===================================================================
--- xfce4-panel/trunk/autogen.sh 2006-08-01 17:45:21 UTC (rev 22611)
+++ xfce4-panel/trunk/autogen.sh 2006-08-01 18:20:27 UTC (rev 22612)
@@ -34,6 +34,9 @@
-e "s/@REVISION@/${revision}/g" \
< "configure.ac.in" > "configure.ac"
-exec xdt-autogen $@
+xdt-autogen $@
+(test "clean" == "$1") && {
+ rm configure.ac
+} || true
# vi:set ts=2 sw=2 et ai:
Modified: xfce4-panel/trunk/config/Makefile.am
===================================================================
--- xfce4-panel/trunk/config/Makefile.am 2006-08-01 17:45:21 UTC (rev 22611)
+++ xfce4-panel/trunk/config/Makefile.am 2006-08-01 18:20:27 UTC (rev 22612)
@@ -10,5 +10,5 @@
EXTRA_DIST = panels.xml $(conf_in_files)
-DISTCLEANFILES = $(conf_files)
-
+distclean-local:
+ rm -f *.rc
Modified: xfce4-panel/trunk/config/launcher-7.rc.in
===================================================================
--- xfce4-panel/trunk/config/launcher-7.rc.in 2006-08-01 17:45:21 UTC (rev 22611)
+++ xfce4-panel/trunk/config/launcher-7.rc.in 2006-08-01 18:20:27 UTC (rev 22612)
@@ -4,5 +4,5 @@
Terminal=false
StartupNotify=true
_Comment=X terminal emulator
-X-XFCE-IconCategory=12
+X-XFCE-IconCategory=13
Modified: xfce4-panel/trunk/configure.ac.in
===================================================================
--- xfce4-panel/trunk/configure.ac.in 2006-08-01 17:45:21 UTC (rev 22611)
+++ xfce4-panel/trunk/configure.ac.in 2006-08-01 18:20:27 UTC (rev 22612)
@@ -36,8 +36,14 @@
AC_PROG_INSTALL()
AC_PROG_LN_S()
AC_PROG_LIBTOOL()
+
AC_PROG_INTLTOOL([0.31], [no-xml])
+dnl patch intltool-update to support *.rc.in config files
+AC_CONFIG_COMMANDS([intltool-update],
+ [(sed -e 's/^\("desktop.*".*\)/\1\n"rc(?:\\\\.in)+|"\./' intltool-update > intltool-update-tmp &&
+ mv intltool-update-tmp intltool-update && chmod 755 intltool-update)])
+
LIBXFCE4PANEL_VERINFO=libxfce4panel_verinfo()
AC_SUBST([LIBXFCE4PANEL_VERINFO])
Modified: xfce4-panel/trunk/plugins/pager/pager.c
===================================================================
--- xfce4-panel/trunk/plugins/pager/pager.c 2006-08-01 17:45:21 UTC (rev 22611)
+++ xfce4-panel/trunk/plugins/pager/pager.c 2006-08-01 18:20:27 UTC (rev 22612)
@@ -39,7 +39,8 @@
int ws_destroyed_id;
int screen_changed_id;
- int rows;
+ int rows:16; /* limited size should be ok */
+ guint scrolling:1;
GtkWidget *pager;
}
@@ -119,6 +120,7 @@
char *file;
XfceRc *rc;
int rows = 1;
+ gboolean scrolling = TRUE;
if ((file = xfce_panel_plugin_lookup_rc_file (plugin)) != NULL)
{
@@ -128,10 +130,12 @@
if (rc != NULL)
{
rows = xfce_rc_read_int_entry (rc, "rows", 1);
+ scrolling = xfce_rc_read_bool_entry (rc, "scrolling", TRUE);
}
}
pager->rows = rows;
+ pager->scrolling = scrolling;
}
static void
@@ -150,6 +154,8 @@
return;
xfce_rc_write_int_entry (rc, "rows", pager->rows);
+
+ xfce_rc_write_bool_entry (rc, "scrolling", pager->scrolling);
xfce_rc_close (rc);
}
@@ -229,6 +235,7 @@
netk_pager_set_orientation (NETK_PAGER (pager->pager),
xfce_panel_plugin_get_orientation (plugin));
netk_pager_set_n_rows (NETK_PAGER (pager->pager), pager->rows);
+ netk_pager_set_workspace_scrolling (NETK_PAGER (pager->pager), pager->scrolling);
gtk_widget_show (pager->pager);
gtk_container_add (GTK_CONTAINER (plugin), pager->pager);
@@ -265,6 +272,19 @@
}
static void
+workspace_scrolling_toggled (GtkWidget *button, Pager *pager)
+{
+ gboolean scrolling = gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (button));
+
+ if (pager->scrolling != scrolling)
+ {
+ pager->scrolling = scrolling;
+
+ netk_pager_set_workspace_scrolling (NETK_PAGER (pager->pager), scrolling);
+ }
+}
+
+static void
pager_dialog_response (GtkWidget *dlg, int reponse, Pager *pager)
{
g_object_set_data (G_OBJECT (pager->plugin), "dialog", NULL);
@@ -277,7 +297,7 @@
static void
pager_properties_dialog (XfcePanelPlugin *plugin, Pager *pager)
{
- GtkWidget *dlg, *vbox, *hbox, *label, *spin;
+ GtkWidget *dlg, *vbox, *hbox, *label, *spin, *scrolling;
int max;
xfce_panel_plugin_block_menu (plugin);
@@ -340,6 +360,14 @@
gtk_widget_show (label);
gtk_box_pack_start (GTK_BOX (hbox), label, FALSE, FALSE, 0);
}
+
+ scrolling = gtk_check_button_new_with_mnemonic (_("Switch workspaces using the mouse wheel"));
+ gtk_widget_show (scrolling);
+ gtk_box_pack_start (GTK_BOX (vbox), scrolling, FALSE, FALSE, 0);
+ gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (scrolling), pager->scrolling);
+
+ g_signal_connect (scrolling, "toggled",
+ G_CALLBACK (workspace_scrolling_toggled), pager);
gtk_widget_show (dlg);
}
Modified: xfce4-panel/trunk/po/ar.po
===================================================================
--- xfce4-panel/trunk/po/ar.po 2006-08-01 17:45:21 UTC (rev 22611)
+++ xfce4-panel/trunk/po/ar.po 2006-08-01 18:20:27 UTC (rev 22612)
@@ -7,7 +7,7 @@
msgstr ""
"Project-Id-Version: xfce4-panel 4.3.90.2\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-07-30 23:08+0200\n"
+"POT-Creation-Date: 2006-08-01 20:04+0200\n"
"PO-Revision-Date: 2005-09-29 20:15+0900\n"
"Last-Translator: Saleh Alhathal <hathalsal at hotmail.com>\n"
"Language-Team: Arabic <lumina at silverpen.de>\n"
@@ -15,6 +15,41 @@
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+#: ../config/launcher-7.rc.in.h:1
+#, fuzzy
+msgid "Command Prompt"
+msgstr "أمر :"
+
+#: ../config/launcher-7.rc.in.h:2
+msgid "X terminal emulator"
+msgstr ""
+
+#: ../config/launcher-8.rc.in.h:1
+msgid "Edit text files"
+msgstr ""
+
+#: ../config/launcher-8.rc.in.h:2 ../plugins/launcher/launcher-dialog.c:102
+msgid "Editor"
+msgstr "محرر"
+
+#: ../config/launcher-9.rc.in.h:1
+#, fuzzy
+msgid "File Manager"
+msgstr "متصفح الملفات"
+
+#: ../config/launcher-9.rc.in.h:2
+msgid "Manage files and folders"
+msgstr ""
+
+#: ../config/launcher-10.rc.in.h:1
+msgid "Surf the internet"
+msgstr ""
+
+#: ../config/launcher-10.rc.in.h:2
+#, fuzzy
+msgid "Web Browser"
+msgstr "متصفح المساعدة"
+
#. dialogs are annoying, just spit out a warning
#: ../libxfce4panel/xfce-panel-external-item.c:175
#, c-format
@@ -400,10 +435,6 @@
msgid "Default"
msgstr "تلقائي"
-#: ../plugins/launcher/launcher-dialog.c:102
-msgid "Editor"
-msgstr "محرر"
-
#: ../plugins/launcher/launcher-dialog.c:103
msgid "File management"
msgstr "متصفح الملفات"
@@ -525,18 +556,22 @@
msgid "Select file"
msgstr "إختر ملف"
-#: ../plugins/pager/pager.c:285 ../plugins/pager/pager.desktop.in.in.h:2
+#: ../plugins/pager/pager.c:305 ../plugins/pager/pager.desktop.in.in.h:2
msgid "Pager"
msgstr "مراقب المهام"
-#: ../plugins/pager/pager.c:314
+#: ../plugins/pager/pager.c:334
msgid "Number of rows:"
msgstr ""
-#: ../plugins/pager/pager.c:318
+#: ../plugins/pager/pager.c:338
msgid "Number of columns:"
msgstr ""
+#: ../plugins/pager/pager.c:364
+msgid "Switch workspaces using the mouse wheel"
+msgstr ""
+
#: ../plugins/separator/separator.c:255
#: ../plugins/separator/separator.desktop.in.in.h:2
#, fuzzy
Modified: xfce4-panel/trunk/po/az.po
===================================================================
--- xfce4-panel/trunk/po/az.po 2006-08-01 17:45:21 UTC (rev 22611)
+++ xfce4-panel/trunk/po/az.po 2006-08-01 18:20:27 UTC (rev 22612)
@@ -7,7 +7,7 @@
msgstr ""
"Project-Id-Version: xfce4-panel 4.3.90.2\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-07-30 23:08+0200\n"
+"POT-Creation-Date: 2006-08-01 20:04+0200\n"
"PO-Revision-Date: 2005-09-29 20:16+0900\n"
"Last-Translator: Mətin Əmirov <metin at karegen.com>\n"
"Language-Team: Azerbaijani <translation-team-az at lists.sourceforge.net>\n"
@@ -16,6 +16,41 @@
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: KBabel 1.3.1\n"
+#: ../config/launcher-7.rc.in.h:1
+#, fuzzy
+msgid "Command Prompt"
+msgstr "Əmr:"
+
+#: ../config/launcher-7.rc.in.h:2
+msgid "X terminal emulator"
+msgstr ""
+
+#: ../config/launcher-8.rc.in.h:1
+msgid "Edit text files"
+msgstr ""
+
+#: ../config/launcher-8.rc.in.h:2 ../plugins/launcher/launcher-dialog.c:102
+msgid "Editor"
+msgstr "Editor"
+
+#: ../config/launcher-9.rc.in.h:1
+#, fuzzy
+msgid "File Manager"
+msgstr "Fayl idarəsi"
+
+#: ../config/launcher-9.rc.in.h:2
+msgid "Manage files and folders"
+msgstr ""
+
+#: ../config/launcher-10.rc.in.h:1
+msgid "Surf the internet"
+msgstr ""
+
+#: ../config/launcher-10.rc.in.h:2
+#, fuzzy
+msgid "Web Browser"
+msgstr "Yardım səyyahı"
+
#. dialogs are annoying, just spit out a warning
#: ../libxfce4panel/xfce-panel-external-item.c:175
#, c-format
@@ -401,10 +436,6 @@
msgid "Default"
msgstr "Ön qurğulu"
-#: ../plugins/launcher/launcher-dialog.c:102
-msgid "Editor"
-msgstr "Editor"
-
#: ../plugins/launcher/launcher-dialog.c:103
msgid "File management"
msgstr "Fayl idarəsi"
@@ -526,18 +557,22 @@
msgid "Select file"
msgstr "Faylı seç"
-#: ../plugins/pager/pager.c:285 ../plugins/pager/pager.desktop.in.in.h:2
+#: ../plugins/pager/pager.c:305 ../plugins/pager/pager.desktop.in.in.h:2
msgid "Pager"
msgstr "Peycer"
-#: ../plugins/pager/pager.c:314
+#: ../plugins/pager/pager.c:334
msgid "Number of rows:"
msgstr "Sətir ədədi:"
-#: ../plugins/pager/pager.c:318
+#: ../plugins/pager/pager.c:338
msgid "Number of columns:"
msgstr "Sütun ədədi:"
+#: ../plugins/pager/pager.c:364
+msgid "Switch workspaces using the mouse wheel"
+msgstr ""
+
#: ../plugins/separator/separator.c:255
#: ../plugins/separator/separator.desktop.in.in.h:2
#, fuzzy
Modified: xfce4-panel/trunk/po/be.po
===================================================================
--- xfce4-panel/trunk/po/be.po 2006-08-01 17:45:21 UTC (rev 22611)
+++ xfce4-panel/trunk/po/be.po 2006-08-01 18:20:27 UTC (rev 22612)
@@ -7,7 +7,7 @@
msgstr ""
"Project-Id-Version: xfce4-panel 4.3.90.2\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-07-30 23:08+0200\n"
+"POT-Creation-Date: 2006-08-01 20:04+0200\n"
"PO-Revision-Date: 2005-09-29 20:16+0900\n"
"Last-Translator: Ales Nyakhaychyk <nab at mail.by>\n"
"Language-Team: Belarusian <i18n at mova.org>\n"
@@ -15,6 +15,41 @@
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+#: ../config/launcher-7.rc.in.h:1
+#, fuzzy
+msgid "Command Prompt"
+msgstr "Загад:"
+
+#: ../config/launcher-7.rc.in.h:2
+msgid "X terminal emulator"
+msgstr ""
+
+#: ../config/launcher-8.rc.in.h:1
+msgid "Edit text files"
+msgstr ""
+
+#: ../config/launcher-8.rc.in.h:2 ../plugins/launcher/launcher-dialog.c:102
+msgid "Editor"
+msgstr "Рэдактар"
+
+#: ../config/launcher-9.rc.in.h:1
+#, fuzzy
+msgid "File Manager"
+msgstr "Кіраваньне файламі"
+
+#: ../config/launcher-9.rc.in.h:2
+msgid "Manage files and folders"
+msgstr ""
+
+#: ../config/launcher-10.rc.in.h:1
+msgid "Surf the internet"
+msgstr ""
+
+#: ../config/launcher-10.rc.in.h:2
+#, fuzzy
+msgid "Web Browser"
+msgstr "Вандроўнік па даведке"
+
#. dialogs are annoying, just spit out a warning
#: ../libxfce4panel/xfce-panel-external-item.c:175
#, c-format
@@ -401,10 +436,6 @@
msgid "Default"
msgstr "Дапомная"
-#: ../plugins/launcher/launcher-dialog.c:102
-msgid "Editor"
-msgstr "Рэдактар"
-
#: ../plugins/launcher/launcher-dialog.c:103
msgid "File management"
msgstr "Кіраваньне файламі"
@@ -526,18 +557,22 @@
msgid "Select file"
msgstr "Вылучыць файл"
-#: ../plugins/pager/pager.c:285 ../plugins/pager/pager.desktop.in.in.h:2
+#: ../plugins/pager/pager.c:305 ../plugins/pager/pager.desktop.in.in.h:2
msgid "Pager"
msgstr "Пераключальнік прастораў"
-#: ../plugins/pager/pager.c:314
+#: ../plugins/pager/pager.c:334
msgid "Number of rows:"
msgstr "Колькасьць радкоў:"
-#: ../plugins/pager/pager.c:318
+#: ../plugins/pager/pager.c:338
msgid "Number of columns:"
msgstr "Колькасьць слупкоў:"
+#: ../plugins/pager/pager.c:364
+msgid "Switch workspaces using the mouse wheel"
+msgstr ""
+
#: ../plugins/separator/separator.c:255
#: ../plugins/separator/separator.desktop.in.in.h:2
#, fuzzy
Modified: xfce4-panel/trunk/po/bg.po
===================================================================
--- xfce4-panel/trunk/po/bg.po 2006-08-01 17:45:21 UTC (rev 22611)
+++ xfce4-panel/trunk/po/bg.po 2006-08-01 18:20:27 UTC (rev 22612)
@@ -7,7 +7,7 @@
msgstr ""
"Project-Id-Version: xfce4-panel 4.3.90.2\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-07-30 23:08+0200\n"
+"POT-Creation-Date: 2006-08-01 20:04+0200\n"
"PO-Revision-Date: 2005-08-21 17:27+0900\n"
"Last-Translator: Miroslav Yordanov <miordanov at i-space.org>\n"
"Language-Team: Bulgarian <bg at li.org>\n"
@@ -15,6 +15,41 @@
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+#: ../config/launcher-7.rc.in.h:1
+#, fuzzy
+msgid "Command Prompt"
+msgstr "Команда:"
+
+#: ../config/launcher-7.rc.in.h:2
+msgid "X terminal emulator"
+msgstr ""
+
+#: ../config/launcher-8.rc.in.h:1
+msgid "Edit text files"
+msgstr ""
+
+#: ../config/launcher-8.rc.in.h:2 ../plugins/launcher/launcher-dialog.c:102
+msgid "Editor"
+msgstr "Редактор"
+
+#: ../config/launcher-9.rc.in.h:1
+#, fuzzy
+msgid "File Manager"
+msgstr "Управление на файловете"
+
+#: ../config/launcher-9.rc.in.h:2
+msgid "Manage files and folders"
+msgstr ""
+
+#: ../config/launcher-10.rc.in.h:1
+msgid "Surf the internet"
+msgstr ""
+
+#: ../config/launcher-10.rc.in.h:2
+#, fuzzy
+msgid "Web Browser"
+msgstr "Помощен браузър"
+
#. dialogs are annoying, just spit out a warning
#: ../libxfce4panel/xfce-panel-external-item.c:175
#, c-format
@@ -398,10 +433,6 @@
msgid "Default"
msgstr "По Подразбиране"
-#: ../plugins/launcher/launcher-dialog.c:102
-msgid "Editor"
-msgstr "Редактор"
-
#: ../plugins/launcher/launcher-dialog.c:103
msgid "File management"
msgstr "Управление на файловете"
@@ -523,18 +554,22 @@
msgid "Select file"
msgstr "Избира файл"
-#: ../plugins/pager/pager.c:285 ../plugins/pager/pager.desktop.in.in.h:2
+#: ../plugins/pager/pager.c:305 ../plugins/pager/pager.desktop.in.in.h:2
msgid "Pager"
msgstr "Пейджър"
-#: ../plugins/pager/pager.c:314
+#: ../plugins/pager/pager.c:334
msgid "Number of rows:"
msgstr ""
-#: ../plugins/pager/pager.c:318
+#: ../plugins/pager/pager.c:338
msgid "Number of columns:"
msgstr ""
+#: ../plugins/pager/pager.c:364
+msgid "Switch workspaces using the mouse wheel"
+msgstr ""
+
#: ../plugins/separator/separator.c:255
#: ../plugins/separator/separator.desktop.in.in.h:2
#, fuzzy
Modified: xfce4-panel/trunk/po/bn_IN.po
===================================================================
--- xfce4-panel/trunk/po/bn_IN.po 2006-08-01 17:45:21 UTC (rev 22611)
+++ xfce4-panel/trunk/po/bn_IN.po 2006-08-01 18:20:27 UTC (rev 22612)
@@ -7,7 +7,7 @@
msgstr ""
"Project-Id-Version: xfce4-panel 4.3.90.2\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-07-30 23:08+0200\n"
+"POT-Creation-Date: 2006-08-01 20:04+0200\n"
"PO-Revision-Date: 2005-09-29 20:17+0900\n"
"Last-Translator: Runa Bhattacharjee <runab at redhat.com>\n"
"Language-Team: Bangla INDIA <LL at li.org>\n"
@@ -16,6 +16,41 @@
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: KBabel 1.9.1\n"
+#: ../config/launcher-7.rc.in.h:1
+#, fuzzy
+msgid "Command Prompt"
+msgstr "কমান্ড:"
+
+#: ../config/launcher-7.rc.in.h:2
+msgid "X terminal emulator"
+msgstr ""
+
+#: ../config/launcher-8.rc.in.h:1
+msgid "Edit text files"
+msgstr ""
+
+#: ../config/launcher-8.rc.in.h:2 ../plugins/launcher/launcher-dialog.c:102
+msgid "Editor"
+msgstr "এডিটর"
+
+#: ../config/launcher-9.rc.in.h:1
+#, fuzzy
+msgid "File Manager"
+msgstr "ফাইল পরিচালনা"
+
+#: ../config/launcher-9.rc.in.h:2
+msgid "Manage files and folders"
+msgstr ""
+
+#: ../config/launcher-10.rc.in.h:1
+msgid "Surf the internet"
+msgstr ""
+
+#: ../config/launcher-10.rc.in.h:2
+#, fuzzy
+msgid "Web Browser"
+msgstr "সহায়িকা ব্রাউজার"
+
#. dialogs are annoying, just spit out a warning
#: ../libxfce4panel/xfce-panel-external-item.c:175
#, c-format
@@ -403,10 +438,6 @@
msgid "Default"
msgstr "ডিফল্ট"
-#: ../plugins/launcher/launcher-dialog.c:102
-msgid "Editor"
-msgstr "এডিটর"
-
#: ../plugins/launcher/launcher-dialog.c:103
msgid "File management"
msgstr "ফাইল পরিচালনা"
@@ -529,18 +560,22 @@
msgid "Select file"
msgstr "ফাইল নির্বাচন করুন"
-#: ../plugins/pager/pager.c:285 ../plugins/pager/pager.desktop.in.in.h:2
+#: ../plugins/pager/pager.c:305 ../plugins/pager/pager.desktop.in.in.h:2
msgid "Pager"
msgstr "পেজার"
-#: ../plugins/pager/pager.c:314
+#: ../plugins/pager/pager.c:334
msgid "Number of rows:"
msgstr "সারির সংখ্যা:"
-#: ../plugins/pager/pager.c:318
+#: ../plugins/pager/pager.c:338
msgid "Number of columns:"
msgstr "কলামের সংখ্যা:"
+#: ../plugins/pager/pager.c:364
+msgid "Switch workspaces using the mouse wheel"
+msgstr ""
+
#: ../plugins/separator/separator.c:255
#: ../plugins/separator/separator.desktop.in.in.h:2
#, fuzzy
Modified: xfce4-panel/trunk/po/ca.po
===================================================================
--- xfce4-panel/trunk/po/ca.po 2006-08-01 17:45:21 UTC (rev 22611)
+++ xfce4-panel/trunk/po/ca.po 2006-08-01 18:20:27 UTC (rev 22612)
@@ -8,7 +8,7 @@
msgstr ""
"Project-Id-Version: xfce4-panel 4.3.90.2\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-07-30 23:08+0200\n"
+"POT-Creation-Date: 2006-08-01 20:04+0200\n"
"PO-Revision-Date: 2006-05-13 22:16+0200\n"
"Last-Translator: Pau Rul.lan Ferragut <paurullan at bulma.net>\n"
"Language-Team: catalan\n"
@@ -16,6 +16,41 @@
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+#: ../config/launcher-7.rc.in.h:1
+#, fuzzy
+msgid "Command Prompt"
+msgstr "Ordre"
+
+#: ../config/launcher-7.rc.in.h:2
+msgid "X terminal emulator"
+msgstr ""
+
+#: ../config/launcher-8.rc.in.h:1
+msgid "Edit text files"
+msgstr ""
+
+#: ../config/launcher-8.rc.in.h:2 ../plugins/launcher/launcher-dialog.c:102
+msgid "Editor"
+msgstr "Editor"
+
+#: ../config/launcher-9.rc.in.h:1
+#, fuzzy
+msgid "File Manager"
+msgstr "Gestió de fitxers"
+
+#: ../config/launcher-9.rc.in.h:2
+msgid "Manage files and folders"
+msgstr ""
+
+#: ../config/launcher-10.rc.in.h:1
+msgid "Surf the internet"
+msgstr ""
+
+#: ../config/launcher-10.rc.in.h:2
+#, fuzzy
+msgid "Web Browser"
+msgstr "Navegador d'ajuda"
+
#. dialogs are annoying, just spit out a warning
#: ../libxfce4panel/xfce-panel-external-item.c:175
#, c-format
@@ -388,10 +423,6 @@
msgid "Default"
msgstr "Per defecte"
-#: ../plugins/launcher/launcher-dialog.c:102
-msgid "Editor"
-msgstr "Editor"
-
#: ../plugins/launcher/launcher-dialog.c:103
msgid "File management"
msgstr "Gestió de fitxers"
@@ -517,18 +548,22 @@
msgid "Select file"
msgstr "Seleccioneu el fitxer"
-#: ../plugins/pager/pager.c:285 ../plugins/pager/pager.desktop.in.in.h:2
+#: ../plugins/pager/pager.c:305 ../plugins/pager/pager.desktop.in.in.h:2
msgid "Pager"
msgstr "Paginador"
-#: ../plugins/pager/pager.c:314
+#: ../plugins/pager/pager.c:334
msgid "Number of rows:"
msgstr "Nombre de files:"
-#: ../plugins/pager/pager.c:318
+#: ../plugins/pager/pager.c:338
msgid "Number of columns:"
msgstr "Nombre de columnes:"
+#: ../plugins/pager/pager.c:364
+msgid "Switch workspaces using the mouse wheel"
+msgstr ""
+
#: ../plugins/separator/separator.c:255
#: ../plugins/separator/separator.desktop.in.in.h:2
msgid "Separator or Spacing"
Modified: xfce4-panel/trunk/po/cs.po
===================================================================
--- xfce4-panel/trunk/po/cs.po 2006-08-01 17:45:21 UTC (rev 22611)
+++ xfce4-panel/trunk/po/cs.po 2006-08-01 18:20:27 UTC (rev 22612)
@@ -9,7 +9,7 @@
msgstr ""
"Project-Id-Version: xfce4-panel 4.3.90.2\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-07-30 23:08+0200\n"
+"POT-Creation-Date: 2006-08-01 20:04+0200\n"
"PO-Revision-Date: 2006-07-12 20:57+0100\n"
"Last-Translator: Michal Várady <miko.vaji at gmail.com>\n"
"Language-Team: Czech <translation-team-cs at lists.sourceforge.net>\n"
@@ -17,6 +17,41 @@
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+#: ../config/launcher-7.rc.in.h:1
+#, fuzzy
+msgid "Command Prompt"
+msgstr "Příkaz"
+
+#: ../config/launcher-7.rc.in.h:2
+msgid "X terminal emulator"
+msgstr ""
+
+#: ../config/launcher-8.rc.in.h:1
+msgid "Edit text files"
+msgstr ""
+
+#: ../config/launcher-8.rc.in.h:2 ../plugins/launcher/launcher-dialog.c:102
+msgid "Editor"
+msgstr "Editor"
+
+#: ../config/launcher-9.rc.in.h:1
+#, fuzzy
+msgid "File Manager"
+msgstr "Správa souborů"
+
+#: ../config/launcher-9.rc.in.h:2
+msgid "Manage files and folders"
+msgstr ""
+
+#: ../config/launcher-10.rc.in.h:1
+msgid "Surf the internet"
+msgstr ""
+
+#: ../config/launcher-10.rc.in.h:2
+#, fuzzy
+msgid "Web Browser"
+msgstr "Prohlížeč nápovědy"
+
#. dialogs are annoying, just spit out a warning
#: ../libxfce4panel/xfce-panel-external-item.c:175
#, c-format
@@ -389,10 +424,6 @@
msgid "Default"
msgstr "Výchozí"
-#: ../plugins/launcher/launcher-dialog.c:102
-msgid "Editor"
-msgstr "Editor"
-
#: ../plugins/launcher/launcher-dialog.c:103
msgid "File management"
msgstr "Správa souborů"
@@ -517,18 +548,22 @@
msgid "Select file"
msgstr "Vyber soubor"
-#: ../plugins/pager/pager.c:285 ../plugins/pager/pager.desktop.in.in.h:2
+#: ../plugins/pager/pager.c:305 ../plugins/pager/pager.desktop.in.in.h:2
msgid "Pager"
msgstr "Přepínač ploch"
-#: ../plugins/pager/pager.c:314
+#: ../plugins/pager/pager.c:334
msgid "Number of rows:"
msgstr "Počet řádků:"
-#: ../plugins/pager/pager.c:318
+#: ../plugins/pager/pager.c:338
msgid "Number of columns:"
msgstr "Počet sloupců:"
+#: ../plugins/pager/pager.c:364
+msgid "Switch workspaces using the mouse wheel"
+msgstr ""
+
#: ../plugins/separator/separator.c:255
#: ../plugins/separator/separator.desktop.in.in.h:2
msgid "Separator or Spacing"
Modified: xfce4-panel/trunk/po/de.po
===================================================================
--- xfce4-panel/trunk/po/de.po 2006-08-01 17:45:21 UTC (rev 22611)
+++ xfce4-panel/trunk/po/de.po 2006-08-01 18:20:27 UTC (rev 22612)
@@ -8,7 +8,7 @@
msgstr ""
"Project-Id-Version: xfce4-panel 4.3.90.2\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-07-30 23:08+0200\n"
+"POT-Creation-Date: 2006-08-01 20:04+0200\n"
"PO-Revision-Date: 2006-02-19 12:14+0100\n"
"Last-Translator: Fabian Nowak <timystery at arcor.de>\n"
"Language-Team: German <de at li.org>\n"
@@ -16,6 +16,41 @@
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+#: ../config/launcher-7.rc.in.h:1
+#, fuzzy
+msgid "Command Prompt"
+msgstr "Befehl"
+
+#: ../config/launcher-7.rc.in.h:2
+msgid "X terminal emulator"
+msgstr ""
+
+#: ../config/launcher-8.rc.in.h:1
+msgid "Edit text files"
+msgstr ""
+
+#: ../config/launcher-8.rc.in.h:2 ../plugins/launcher/launcher-dialog.c:102
+msgid "Editor"
+msgstr "Editor"
+
+#: ../config/launcher-9.rc.in.h:1
+#, fuzzy
+msgid "File Manager"
+msgstr "Dateimanagement"
+
+#: ../config/launcher-9.rc.in.h:2
+msgid "Manage files and folders"
+msgstr ""
+
+#: ../config/launcher-10.rc.in.h:1
+msgid "Surf the internet"
+msgstr ""
+
+#: ../config/launcher-10.rc.in.h:2
+#, fuzzy
+msgid "Web Browser"
+msgstr "Hilfe"
+
#. dialogs are annoying, just spit out a warning
#: ../libxfce4panel/xfce-panel-external-item.c:175
#, c-format
@@ -393,10 +428,6 @@
msgid "Default"
msgstr "Standard"
-#: ../plugins/launcher/launcher-dialog.c:102
-msgid "Editor"
-msgstr "Editor"
-
#: ../plugins/launcher/launcher-dialog.c:103
msgid "File management"
msgstr "Dateimanagement"
@@ -515,18 +546,22 @@
msgid "Select file"
msgstr "Datei auswählen"
-#: ../plugins/pager/pager.c:285 ../plugins/pager/pager.desktop.in.in.h:2
+#: ../plugins/pager/pager.c:305 ../plugins/pager/pager.desktop.in.in.h:2
msgid "Pager"
msgstr "Pager"
-#: ../plugins/pager/pager.c:314
+#: ../plugins/pager/pager.c:334
msgid "Number of rows:"
msgstr "Anzahl der Zeilen:"
-#: ../plugins/pager/pager.c:318
+#: ../plugins/pager/pager.c:338
msgid "Number of columns:"
msgstr "Anzahl der Spalten:"
+#: ../plugins/pager/pager.c:364
+msgid "Switch workspaces using the mouse wheel"
+msgstr ""
+
#: ../plugins/separator/separator.c:255
#: ../plugins/separator/separator.desktop.in.in.h:2
#, fuzzy
Modified: xfce4-panel/trunk/po/el.po
===================================================================
--- xfce4-panel/trunk/po/el.po 2006-08-01 17:45:21 UTC (rev 22611)
+++ xfce4-panel/trunk/po/el.po 2006-08-01 18:20:27 UTC (rev 22612)
@@ -8,7 +8,7 @@
msgstr ""
"Project-Id-Version: xfce4-panel 4.3.90.1\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-07-30 23:08+0200\n"
+"POT-Creation-Date: 2006-08-01 20:04+0200\n"
"PO-Revision-Date: 2006-05-30 21:14+0200\n"
"Last-Translator: Stavros Giannouris <stavrosg2002 at freemail.gr>\n"
"Language-Team: Greek <nls at tux.hellug.gr>\n"
@@ -16,6 +16,41 @@
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+#: ../config/launcher-7.rc.in.h:1
+#, fuzzy
+msgid "Command Prompt"
+msgstr "Εντολή"
+
+#: ../config/launcher-7.rc.in.h:2
+msgid "X terminal emulator"
+msgstr ""
+
+#: ../config/launcher-8.rc.in.h:1
+msgid "Edit text files"
+msgstr ""
+
+#: ../config/launcher-8.rc.in.h:2 ../plugins/launcher/launcher-dialog.c:102
+msgid "Editor"
+msgstr "Επεξεργαστής κειμένου"
+
+#: ../config/launcher-9.rc.in.h:1
+#, fuzzy
+msgid "File Manager"
+msgstr "Διαχείριση αρχείων"
+
+#: ../config/launcher-9.rc.in.h:2
+msgid "Manage files and folders"
+msgstr ""
+
+#: ../config/launcher-10.rc.in.h:1
+msgid "Surf the internet"
+msgstr ""
+
+#: ../config/launcher-10.rc.in.h:2
+#, fuzzy
+msgid "Web Browser"
+msgstr "Περιηγητής βοήθειας"
+
#. dialogs are annoying, just spit out a warning
#: ../libxfce4panel/xfce-panel-external-item.c:175
#, c-format
@@ -392,10 +427,6 @@
msgid "Default"
msgstr "Προκαθορισμένο"
-#: ../plugins/launcher/launcher-dialog.c:102
-msgid "Editor"
-msgstr "Επεξεργαστής κειμένου"
-
#: ../plugins/launcher/launcher-dialog.c:103
msgid "File management"
msgstr "Διαχείριση αρχείων"
@@ -520,18 +551,22 @@
msgid "Select file"
msgstr "Επιλογή αρχείου"
-#: ../plugins/pager/pager.c:285 ../plugins/pager/pager.desktop.in.in.h:2
+#: ../plugins/pager/pager.c:305 ../plugins/pager/pager.desktop.in.in.h:2
msgid "Pager"
msgstr "Ειδοποιητής"
-#: ../plugins/pager/pager.c:314
+#: ../plugins/pager/pager.c:334
msgid "Number of rows:"
msgstr "Αριθμός γραμμών:"
-#: ../plugins/pager/pager.c:318
+#: ../plugins/pager/pager.c:338
msgid "Number of columns:"
msgstr "Αριθμός στηλών:"
+#: ../plugins/pager/pager.c:364
+msgid "Switch workspaces using the mouse wheel"
+msgstr ""
+
#: ../plugins/separator/separator.c:255
#: ../plugins/separator/separator.desktop.in.in.h:2
msgid "Separator or Spacing"
Modified: xfce4-panel/trunk/po/en_GB.po
===================================================================
--- xfce4-panel/trunk/po/en_GB.po 2006-08-01 17:45:21 UTC (rev 22611)
+++ xfce4-panel/trunk/po/en_GB.po 2006-08-01 18:20:27 UTC (rev 22612)
@@ -7,7 +7,7 @@
msgstr ""
"Project-Id-Version: xfce4-panel 4.3.90.2\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-07-30 23:08+0200\n"
+"POT-Creation-Date: 2006-08-01 20:04+0200\n"
"PO-Revision-Date: 2005-09-29 20:21+0900\n"
"Last-Translator: Translate.org.za <info at translate.org.za>\n"
"Language-Team: British English <en_gb at li.org>\n"
@@ -16,6 +16,41 @@
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+#: ../config/launcher-7.rc.in.h:1
+#, fuzzy
+msgid "Command Prompt"
+msgstr "Command:"
+
+#: ../config/launcher-7.rc.in.h:2
+msgid "X terminal emulator"
+msgstr ""
+
+#: ../config/launcher-8.rc.in.h:1
+msgid "Edit text files"
+msgstr ""
+
+#: ../config/launcher-8.rc.in.h:2 ../plugins/launcher/launcher-dialog.c:102
+msgid "Editor"
+msgstr "Editor"
+
+#: ../config/launcher-9.rc.in.h:1
+#, fuzzy
+msgid "File Manager"
+msgstr "File management"
+
+#: ../config/launcher-9.rc.in.h:2
+msgid "Manage files and folders"
+msgstr ""
+
+#: ../config/launcher-10.rc.in.h:1
+msgid "Surf the internet"
+msgstr ""
+
+#: ../config/launcher-10.rc.in.h:2
+#, fuzzy
+msgid "Web Browser"
+msgstr "Help browser"
+
#. dialogs are annoying, just spit out a warning
#: ../libxfce4panel/xfce-panel-external-item.c:175
#, c-format
@@ -400,10 +435,6 @@
msgid "Default"
msgstr "Default"
-#: ../plugins/launcher/launcher-dialog.c:102
-msgid "Editor"
-msgstr "Editor"
-
#: ../plugins/launcher/launcher-dialog.c:103
msgid "File management"
msgstr "File management"
@@ -525,18 +556,22 @@
msgid "Select file"
msgstr "Select file"
-#: ../plugins/pager/pager.c:285 ../plugins/pager/pager.desktop.in.in.h:2
+#: ../plugins/pager/pager.c:305 ../plugins/pager/pager.desktop.in.in.h:2
msgid "Pager"
msgstr ""
-#: ../plugins/pager/pager.c:314
+#: ../plugins/pager/pager.c:334
msgid "Number of rows:"
msgstr "Number of rows:"
-#: ../plugins/pager/pager.c:318
+#: ../plugins/pager/pager.c:338
msgid "Number of columns:"
msgstr "Number of columns:"
+#: ../plugins/pager/pager.c:364
+msgid "Switch workspaces using the mouse wheel"
+msgstr ""
+
#: ../plugins/separator/separator.c:255
#: ../plugins/separator/separator.desktop.in.in.h:2
#, fuzzy
Modified: xfce4-panel/trunk/po/eo.po
===================================================================
--- xfce4-panel/trunk/po/eo.po 2006-08-01 17:45:21 UTC (rev 22611)
+++ xfce4-panel/trunk/po/eo.po 2006-08-01 18:20:27 UTC (rev 22612)
@@ -7,7 +7,7 @@
msgstr ""
"Project-Id-Version: xfce4-panel 4.3.90.2\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-07-30 23:08+0200\n"
+"POT-Creation-Date: 2006-08-01 20:04+0200\n"
"PO-Revision-Date: 2006-03-12 20:49+0100\n"
"Last-Translator: Sylvain Vedrenne <gnu_sylvain at xfce.org>\n"
"Language-Team: Esperanto <translation-team-eo at lists.sourceforge.net>\n"
@@ -16,6 +16,41 @@
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+#: ../config/launcher-7.rc.in.h:1
+#, fuzzy
+msgid "Command Prompt"
+msgstr "Komando"
+
+#: ../config/launcher-7.rc.in.h:2
+msgid "X terminal emulator"
+msgstr ""
+
+#: ../config/launcher-8.rc.in.h:1
+msgid "Edit text files"
+msgstr ""
+
+#: ../config/launcher-8.rc.in.h:2 ../plugins/launcher/launcher-dialog.c:102
+msgid "Editor"
+msgstr "Redaktilo"
+
+#: ../config/launcher-9.rc.in.h:1
+#, fuzzy
+msgid "File Manager"
+msgstr "Dosieradministrado"
+
+#: ../config/launcher-9.rc.in.h:2
+msgid "Manage files and folders"
+msgstr ""
+
+#: ../config/launcher-10.rc.in.h:1
+msgid "Surf the internet"
+msgstr ""
+
+#: ../config/launcher-10.rc.in.h:2
+#, fuzzy
+msgid "Web Browser"
+msgstr "Helplegilo"
+
#. dialogs are annoying, just spit out a warning
#: ../libxfce4panel/xfce-panel-external-item.c:175
#, c-format
@@ -388,10 +423,6 @@
msgid "Default"
msgstr "Antaŭsupoza"
-#: ../plugins/launcher/launcher-dialog.c:102
-msgid "Editor"
-msgstr "Redaktilo"
-
#: ../plugins/launcher/launcher-dialog.c:103
msgid "File management"
msgstr "Dosieradministrado"
@@ -510,18 +541,22 @@
msgid "Select file"
msgstr "Elektu dosieron"
-#: ../plugins/pager/pager.c:285 ../plugins/pager/pager.desktop.in.in.h:2
+#: ../plugins/pager/pager.c:305 ../plugins/pager/pager.desktop.in.in.h:2
msgid "Pager"
msgstr "Paĝilo"
-#: ../plugins/pager/pager.c:314
+#: ../plugins/pager/pager.c:334
msgid "Number of rows:"
msgstr "Nombro da horizontaloj:"
-#: ../plugins/pager/pager.c:318
+#: ../plugins/pager/pager.c:338
msgid "Number of columns:"
msgstr "Nombro da vertikaloj:"
+#: ../plugins/pager/pager.c:364
+msgid "Switch workspaces using the mouse wheel"
+msgstr ""
+
#: ../plugins/separator/separator.c:255
#: ../plugins/separator/separator.desktop.in.in.h:2
msgid "Separator or Spacing"
Modified: xfce4-panel/trunk/po/es.po
===================================================================
--- xfce4-panel/trunk/po/es.po 2006-08-01 17:45:21 UTC (rev 22611)
+++ xfce4-panel/trunk/po/es.po 2006-08-01 18:20:27 UTC (rev 22612)
@@ -8,7 +8,7 @@
msgstr ""
"Project-Id-Version: xfce4-panel 4.3.90.2\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-07-30 23:08+0200\n"
+"POT-Creation-Date: 2006-08-01 20:04+0200\n"
"PO-Revision-Date: 2005-11-07 22:12+0900\n"
"Last-Translator: Rudy Godoy <rudy at kernel-panik.org>\n"
"Language-Team: Spanish <es at li.org>\n"
@@ -16,6 +16,41 @@
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+#: ../config/launcher-7.rc.in.h:1
+#, fuzzy
+msgid "Command Prompt"
+msgstr "Orden"
+
+#: ../config/launcher-7.rc.in.h:2
+msgid "X terminal emulator"
+msgstr ""
+
+#: ../config/launcher-8.rc.in.h:1
+msgid "Edit text files"
+msgstr ""
+
+#: ../config/launcher-8.rc.in.h:2 ../plugins/launcher/launcher-dialog.c:102
+msgid "Editor"
+msgstr "Editor"
+
+#: ../config/launcher-9.rc.in.h:1
+#, fuzzy
+msgid "File Manager"
+msgstr "Gestión de archivos"
+
+#: ../config/launcher-9.rc.in.h:2
+msgid "Manage files and folders"
+msgstr ""
+
+#: ../config/launcher-10.rc.in.h:1
+msgid "Surf the internet"
+msgstr ""
+
+#: ../config/launcher-10.rc.in.h:2
+#, fuzzy
+msgid "Web Browser"
+msgstr "Navegador de ayuda"
+
#. dialogs are annoying, just spit out a warning
#: ../libxfce4panel/xfce-panel-external-item.c:175
#, c-format
@@ -398,10 +433,6 @@
msgid "Default"
msgstr "Predeterminado"
-#: ../plugins/launcher/launcher-dialog.c:102
-msgid "Editor"
-msgstr "Editor"
-
#: ../plugins/launcher/launcher-dialog.c:103
msgid "File management"
msgstr "Gestión de archivos"
@@ -520,18 +551,22 @@
msgid "Select file"
msgstr "Elegir archivo"
-#: ../plugins/pager/pager.c:285 ../plugins/pager/pager.desktop.in.in.h:2
+#: ../plugins/pager/pager.c:305 ../plugins/pager/pager.desktop.in.in.h:2
msgid "Pager"
msgstr "Paginador"
-#: ../plugins/pager/pager.c:314
+#: ../plugins/pager/pager.c:334
msgid "Number of rows:"
msgstr "Número de filas:"
-#: ../plugins/pager/pager.c:318
+#: ../plugins/pager/pager.c:338
msgid "Number of columns:"
msgstr "Número de columnas"
+#: ../plugins/pager/pager.c:364
+msgid "Switch workspaces using the mouse wheel"
+msgstr ""
+
#: ../plugins/separator/separator.c:255
#: ../plugins/separator/separator.desktop.in.in.h:2
#, fuzzy
Modified: xfce4-panel/trunk/po/es_MX.po
===================================================================
--- xfce4-panel/trunk/po/es_MX.po 2006-08-01 17:45:21 UTC (rev 22611)
+++ xfce4-panel/trunk/po/es_MX.po 2006-08-01 18:20:27 UTC (rev 22612)
@@ -7,7 +7,7 @@
msgstr ""
"Project-Id-Version: xfce4-panel 4.3.90.2\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-07-30 23:08+0200\n"
+"POT-Creation-Date: 2006-08-01 20:04+0200\n"
"PO-Revision-Date: 2005-08-18 01:08+0900\n"
"Last-Translator: Edscott Wilson García <edscott at xfce.org>\n"
"Language-Team: Spanish <es at li.org>\n"
@@ -15,6 +15,41 @@
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+#: ../config/launcher-7.rc.in.h:1
+#, fuzzy
+msgid "Command Prompt"
+msgstr "Comando:"
+
+#: ../config/launcher-7.rc.in.h:2
+msgid "X terminal emulator"
+msgstr ""
+
+#: ../config/launcher-8.rc.in.h:1
+msgid "Edit text files"
+msgstr ""
+
+#: ../config/launcher-8.rc.in.h:2 ../plugins/launcher/launcher-dialog.c:102
+msgid "Editor"
+msgstr "Editor"
+
+#: ../config/launcher-9.rc.in.h:1
+#, fuzzy
+msgid "File Manager"
+msgstr "Administración de archivos"
+
+#: ../config/launcher-9.rc.in.h:2
+msgid "Manage files and folders"
+msgstr ""
+
+#: ../config/launcher-10.rc.in.h:1
+msgid "Surf the internet"
+msgstr ""
+
+#: ../config/launcher-10.rc.in.h:2
+#, fuzzy
+msgid "Web Browser"
+msgstr "Navegador de ayuda"
+
#. dialogs are annoying, just spit out a warning
#: ../libxfce4panel/xfce-panel-external-item.c:175
#, c-format
@@ -401,10 +436,6 @@
msgid "Default"
msgstr "Por defecto"
-#: ../plugins/launcher/launcher-dialog.c:102
-msgid "Editor"
-msgstr "Editor"
-
#: ../plugins/launcher/launcher-dialog.c:103
msgid "File management"
msgstr "Administración de archivos"
@@ -527,18 +558,22 @@
msgid "Select file"
msgstr "Seleccionar archivo"
-#: ../plugins/pager/pager.c:285 ../plugins/pager/pager.desktop.in.in.h:2
+#: ../plugins/pager/pager.c:305 ../plugins/pager/pager.desktop.in.in.h:2
msgid "Pager"
msgstr "Paginador"
-#: ../plugins/pager/pager.c:314
+#: ../plugins/pager/pager.c:334
msgid "Number of rows:"
msgstr "Número de filas:"
-#: ../plugins/pager/pager.c:318
+#: ../plugins/pager/pager.c:338
msgid "Number of columns:"
msgstr "Número de columnas"
+#: ../plugins/pager/pager.c:364
+msgid "Switch workspaces using the mouse wheel"
+msgstr ""
+
#: ../plugins/separator/separator.c:255
#: ../plugins/separator/separator.desktop.in.in.h:2
#, fuzzy
Modified: xfce4-panel/trunk/po/et.po
===================================================================
--- xfce4-panel/trunk/po/et.po 2006-08-01 17:45:21 UTC (rev 22611)
+++ xfce4-panel/trunk/po/et.po 2006-08-01 18:20:27 UTC (rev 22612)
@@ -8,7 +8,7 @@
msgstr ""
"Project-Id-Version: xfce4-panel 4.3.90.2\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-07-30 23:08+0200\n"
+"POT-Creation-Date: 2006-08-01 20:04+0200\n"
"PO-Revision-Date: 2006-04-13 14:16+0300\n"
"Last-Translator: Mart Tõnso <mart.tonso at ttu.ee>\n"
"Language-Team: Estonian <et at li.org>\n"
@@ -16,6 +16,41 @@
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+#: ../config/launcher-7.rc.in.h:1
+#, fuzzy
+msgid "Command Prompt"
+msgstr "Käsklus"
+
+#: ../config/launcher-7.rc.in.h:2
+msgid "X terminal emulator"
+msgstr ""
+
+#: ../config/launcher-8.rc.in.h:1
+msgid "Edit text files"
+msgstr ""
+
+#: ../config/launcher-8.rc.in.h:2 ../plugins/launcher/launcher-dialog.c:102
+msgid "Editor"
+msgstr "Redaktor"
+
+#: ../config/launcher-9.rc.in.h:1
+#, fuzzy
+msgid "File Manager"
+msgstr "Failide haldamine"
+
+#: ../config/launcher-9.rc.in.h:2
+msgid "Manage files and folders"
+msgstr ""
+
+#: ../config/launcher-10.rc.in.h:1
+msgid "Surf the internet"
+msgstr ""
+
+#: ../config/launcher-10.rc.in.h:2
+#, fuzzy
+msgid "Web Browser"
+msgstr "Abi sirvija"
+
#. dialogs are annoying, just spit out a warning
#: ../libxfce4panel/xfce-panel-external-item.c:175
#, c-format
@@ -388,10 +423,6 @@
msgid "Default"
msgstr "Vaikimisi"
-#: ../plugins/launcher/launcher-dialog.c:102
-msgid "Editor"
-msgstr "Redaktor"
-
#: ../plugins/launcher/launcher-dialog.c:103
msgid "File management"
msgstr "Failide haldamine"
@@ -515,18 +546,22 @@
msgid "Select file"
msgstr "Vali fail"
-#: ../plugins/pager/pager.c:285 ../plugins/pager/pager.desktop.in.in.h:2
+#: ../plugins/pager/pager.c:305 ../plugins/pager/pager.desktop.in.in.h:2
msgid "Pager"
msgstr "Lehitseja"
-#: ../plugins/pager/pager.c:314
+#: ../plugins/pager/pager.c:334
msgid "Number of rows:"
msgstr "Ridade arv:"
-#: ../plugins/pager/pager.c:318
+#: ../plugins/pager/pager.c:338
msgid "Number of columns:"
msgstr "Veergude arv:"
+#: ../plugins/pager/pager.c:364
+msgid "Switch workspaces using the mouse wheel"
+msgstr ""
+
#: ../plugins/separator/separator.c:255
#: ../plugins/separator/separator.desktop.in.in.h:2
msgid "Separator or Spacing"
Modified: xfce4-panel/trunk/po/eu.po
===================================================================
--- xfce4-panel/trunk/po/eu.po 2006-08-01 17:45:21 UTC (rev 22611)
+++ xfce4-panel/trunk/po/eu.po 2006-08-01 18:20:27 UTC (rev 22612)
@@ -9,7 +9,7 @@
msgstr ""
"Project-Id-Version: eu\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-07-30 23:08+0200\n"
+"POT-Creation-Date: 2006-08-01 20:04+0200\n"
"PO-Revision-Date: 2006-05-28 22:20+0200\n"
"Last-Translator: Piarres Beobide <pi at beobide.net>\n"
"Language-Team: librezale <librezale at librezale.org>\n"
@@ -19,6 +19,41 @@
"X-Generator: KBabel 1.11.2\n"
"Plural-Forms: Plural-Forms: nplurals=2; plural=n != 1;\n"
+#: ../config/launcher-7.rc.in.h:1
+#, fuzzy
+msgid "Command Prompt"
+msgstr "Komandoa"
+
+#: ../config/launcher-7.rc.in.h:2
+msgid "X terminal emulator"
+msgstr ""
+
+#: ../config/launcher-8.rc.in.h:1
+msgid "Edit text files"
+msgstr ""
+
+#: ../config/launcher-8.rc.in.h:2 ../plugins/launcher/launcher-dialog.c:102
+msgid "Editor"
+msgstr "Editorea"
+
+#: ../config/launcher-9.rc.in.h:1
+#, fuzzy
+msgid "File Manager"
+msgstr "Fitxategi kudeatzailea"
+
+#: ../config/launcher-9.rc.in.h:2
+msgid "Manage files and folders"
+msgstr ""
+
+#: ../config/launcher-10.rc.in.h:1
+msgid "Surf the internet"
+msgstr ""
+
+#: ../config/launcher-10.rc.in.h:2
+#, fuzzy
+msgid "Web Browser"
+msgstr "Laguntza"
+
#. dialogs are annoying, just spit out a warning
#: ../libxfce4panel/xfce-panel-external-item.c:175
#, c-format
@@ -392,10 +427,6 @@
msgid "Default"
msgstr "Lehenetsia"
-#: ../plugins/launcher/launcher-dialog.c:102
-msgid "Editor"
-msgstr "Editorea"
-
#: ../plugins/launcher/launcher-dialog.c:103
msgid "File management"
msgstr "Fitxategi kudeatzailea"
@@ -520,18 +551,22 @@
msgid "Select file"
msgstr "Fitxategia aukeratu"
-#: ../plugins/pager/pager.c:285 ../plugins/pager/pager.desktop.in.in.h:2
+#: ../plugins/pager/pager.c:305 ../plugins/pager/pager.desktop.in.in.h:2
msgid "Pager"
msgstr "Orrialdekatzailea"
-#: ../plugins/pager/pager.c:314
+#: ../plugins/pager/pager.c:334
msgid "Number of rows:"
msgstr "Lerro kopurua:"
-#: ../plugins/pager/pager.c:318
+#: ../plugins/pager/pager.c:338
msgid "Number of columns:"
msgstr "Zutabe kopurua:"
+#: ../plugins/pager/pager.c:364
+msgid "Switch workspaces using the mouse wheel"
+msgstr ""
+
#: ../plugins/separator/separator.c:255
#: ../plugins/separator/separator.desktop.in.in.h:2
msgid "Separator or Spacing"
Modified: xfce4-panel/trunk/po/fa.po
===================================================================
--- xfce4-panel/trunk/po/fa.po 2006-08-01 17:45:21 UTC (rev 22611)
+++ xfce4-panel/trunk/po/fa.po 2006-08-01 18:20:27 UTC (rev 22612)
@@ -7,7 +7,7 @@
msgstr ""
"Project-Id-Version: xfce4-panel 4.3.90.2\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-07-30 23:08+0200\n"
+"POT-Creation-Date: 2006-08-01 20:04+0200\n"
"PO-Revision-Date: 2005-09-29 20:25+0900\n"
"Last-Translator: Abbas Izad <abbasizad at hotmail.com>\n"
"Language-Team: Persian <translation-team-fa at lists.sourceforge.net>\n"
@@ -16,6 +16,41 @@
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: KBabel 1.3\n"
+#: ../config/launcher-7.rc.in.h:1
+#, fuzzy
+msgid "Command Prompt"
+msgstr "فرمان:"
+
+#: ../config/launcher-7.rc.in.h:2
+msgid "X terminal emulator"
+msgstr ""
+
+#: ../config/launcher-8.rc.in.h:1
+msgid "Edit text files"
+msgstr ""
+
+#: ../config/launcher-8.rc.in.h:2 ../plugins/launcher/launcher-dialog.c:102
+msgid "Editor"
+msgstr "ویرایشگر"
+
+#: ../config/launcher-9.rc.in.h:1
+#, fuzzy
+msgid "File Manager"
+msgstr "مدیریت پرونده"
+
+#: ../config/launcher-9.rc.in.h:2
+msgid "Manage files and folders"
+msgstr ""
+
+#: ../config/launcher-10.rc.in.h:1
+msgid "Surf the internet"
+msgstr ""
+
+#: ../config/launcher-10.rc.in.h:2
+#, fuzzy
+msgid "Web Browser"
+msgstr "مرورگر راهنما"
+
#. dialogs are annoying, just spit out a warning
#: ../libxfce4panel/xfce-panel-external-item.c:175
#, c-format
@@ -401,10 +436,6 @@
msgid "Default"
msgstr "پیشفرض"
-#: ../plugins/launcher/launcher-dialog.c:102
-msgid "Editor"
-msgstr "ویرایشگر"
-
#: ../plugins/launcher/launcher-dialog.c:103
msgid "File management"
msgstr "مدیریت پرونده"
@@ -526,18 +557,22 @@
msgid "Select file"
msgstr "انتخاب کردن پرونده"
-#: ../plugins/pager/pager.c:285 ../plugins/pager/pager.desktop.in.in.h:2
+#: ../plugins/pager/pager.c:305 ../plugins/pager/pager.desktop.in.in.h:2
msgid "Pager"
msgstr "صفحهنما"
-#: ../plugins/pager/pager.c:314
+#: ../plugins/pager/pager.c:334
msgid "Number of rows:"
msgstr "تعداد ردیفها:"
-#: ../plugins/pager/pager.c:318
+#: ../plugins/pager/pager.c:338
msgid "Number of columns:"
msgstr "تعداد ستونها:"
+#: ../plugins/pager/pager.c:364
+msgid "Switch workspaces using the mouse wheel"
+msgstr ""
+
#: ../plugins/separator/separator.c:255
#: ../plugins/separator/separator.desktop.in.in.h:2
#, fuzzy
Modified: xfce4-panel/trunk/po/fi.po
===================================================================
--- xfce4-panel/trunk/po/fi.po 2006-08-01 17:45:21 UTC (rev 22611)
+++ xfce4-panel/trunk/po/fi.po 2006-08-01 18:20:27 UTC (rev 22612)
@@ -8,7 +8,7 @@
msgstr ""
"Project-Id-Version: xfce4-panel 4.3.90.2\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-07-30 23:08+0200\n"
+"POT-Creation-Date: 2006-08-01 20:04+0200\n"
"PO-Revision-Date: 2006-05-28 19:53+0300\n"
"Last-Translator: Jari Rahkonen <jari.rahkonen at pp2.inet.fi>\n"
"Language-Team: Finnish <translation-team-fi at lists.sourceforge.net>\n"
@@ -16,6 +16,41 @@
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
+#: ../config/launcher-7.rc.in.h:1
+#, fuzzy
+msgid "Command Prompt"
+msgstr "Komento"
+
+#: ../config/launcher-7.rc.in.h:2
+msgid "X terminal emulator"
+msgstr ""
+
+#: ../config/launcher-8.rc.in.h:1
+msgid "Edit text files"
+msgstr ""
+
+#: ../config/launcher-8.rc.in.h:2 ../plugins/launcher/launcher-dialog.c:102
+msgid "Editor"
+msgstr "Editori"
+
+#: ../config/launcher-9.rc.in.h:1
+#, fuzzy
+msgid "File Manager"
+msgstr "Tiedostonhallinta"
+
+#: ../config/launcher-9.rc.in.h:2
+msgid "Manage files and folders"
+msgstr ""
+
+#: ../config/launcher-10.rc.in.h:1
+msgid "Surf the internet"
+msgstr ""
+
+#: ../config/launcher-10.rc.in.h:2
+#, fuzzy
+msgid "Web Browser"
+msgstr "Ohjeselain"
+
#. dialogs are annoying, just spit out a warning
#: ../libxfce4panel/xfce-panel-external-item.c:175
#, c-format
@@ -388,10 +423,6 @@
msgid "Default"
msgstr "Oletus"
-#: ../plugins/launcher/launcher-dialog.c:102
-msgid "Editor"
-msgstr "Editori"
-
#: ../plugins/launcher/launcher-dialog.c:103
msgid "File management"
msgstr "Tiedostonhallinta"
@@ -516,18 +547,22 @@
msgid "Select file"
msgstr "Valitse tiedosto"
-#: ../plugins/pager/pager.c:285 ../plugins/pager/pager.desktop.in.in.h:2
+#: ../plugins/pager/pager.c:305 ../plugins/pager/pager.desktop.in.in.h:2
msgid "Pager"
msgstr "Työtilan vaihtaja"
-#: ../plugins/pager/pager.c:314
+#: ../plugins/pager/pager.c:334
msgid "Number of rows:"
msgstr "Rivien lukumäärä:"
-#: ../plugins/pager/pager.c:318
+#: ../plugins/pager/pager.c:338
msgid "Number of columns:"
msgstr "Sarakkeiden lukumäärä:"
+#: ../plugins/pager/pager.c:364
+msgid "Switch workspaces using the mouse wheel"
+msgstr ""
+
#: ../plugins/separator/separator.c:255
#: ../plugins/separator/separator.desktop.in.in.h:2
msgid "Separator or Spacing"
Modified: xfce4-panel/trunk/po/fr.po
===================================================================
--- xfce4-panel/trunk/po/fr.po 2006-08-01 17:45:21 UTC (rev 22611)
+++ xfce4-panel/trunk/po/fr.po 2006-08-01 18:20:27 UTC (rev 22612)
@@ -8,7 +8,7 @@
msgstr ""
"Project-Id-Version: xfce4-panel 4.3.90.2\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-07-30 23:08+0200\n"
+"POT-Creation-Date: 2006-08-01 20:04+0200\n"
"PO-Revision-Date: 2006-06-04 17:35+0100\n"
"Last-Translator: Maximilian Schleiss <maxschleiss at bluewin.ch>\n"
"Language-Team: French <xfce-i18n at xfce.org>\n"
@@ -16,6 +16,41 @@
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+#: ../config/launcher-7.rc.in.h:1
+#, fuzzy
+msgid "Command Prompt"
+msgstr "Commande"
+
+#: ../config/launcher-7.rc.in.h:2
+msgid "X terminal emulator"
+msgstr ""
+
+#: ../config/launcher-8.rc.in.h:1
+msgid "Edit text files"
+msgstr ""
+
+#: ../config/launcher-8.rc.in.h:2 ../plugins/launcher/launcher-dialog.c:102
+msgid "Editor"
+msgstr "Éditeur"
+
+#: ../config/launcher-9.rc.in.h:1
+#, fuzzy
+msgid "File Manager"
+msgstr "Gestionnaire de fichiers"
+
+#: ../config/launcher-9.rc.in.h:2
+msgid "Manage files and folders"
+msgstr ""
+
+#: ../config/launcher-10.rc.in.h:1
+msgid "Surf the internet"
+msgstr ""
+
+#: ../config/launcher-10.rc.in.h:2
+#, fuzzy
+msgid "Web Browser"
+msgstr "Navigateur d'aide"
+
#. dialogs are annoying, just spit out a warning
#: ../libxfce4panel/xfce-panel-external-item.c:175
#, c-format
@@ -391,10 +426,6 @@
msgid "Default"
msgstr "Défaut"
-#: ../plugins/launcher/launcher-dialog.c:102
-msgid "Editor"
-msgstr "Éditeur"
-
#: ../plugins/launcher/launcher-dialog.c:103
msgid "File management"
msgstr "Gestionnaire de fichiers"
@@ -519,18 +550,22 @@
msgid "Select file"
msgstr "Sélection de fichier"
-#: ../plugins/pager/pager.c:285 ../plugins/pager/pager.desktop.in.in.h:2
+#: ../plugins/pager/pager.c:305 ../plugins/pager/pager.desktop.in.in.h:2
msgid "Pager"
msgstr "Bureaux"
-#: ../plugins/pager/pager.c:314
+#: ../plugins/pager/pager.c:334
msgid "Number of rows:"
msgstr "Nombre de lignes :"
-#: ../plugins/pager/pager.c:318
+#: ../plugins/pager/pager.c:338
msgid "Number of columns:"
msgstr "Nombre de colonnes :"
+#: ../plugins/pager/pager.c:364
+msgid "Switch workspaces using the mouse wheel"
+msgstr ""
+
#: ../plugins/separator/separator.c:255
#: ../plugins/separator/separator.desktop.in.in.h:2
msgid "Separator or Spacing"
Modified: xfce4-panel/trunk/po/gu.po
===================================================================
--- xfce4-panel/trunk/po/gu.po 2006-08-01 17:45:21 UTC (rev 22611)
+++ xfce4-panel/trunk/po/gu.po 2006-08-01 18:20:27 UTC (rev 22612)
@@ -7,7 +7,7 @@
msgstr ""
"Project-Id-Version: xfce4-panel 4.3.90.2\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-07-30 23:08+0200\n"
+"POT-Creation-Date: 2006-08-01 20:04+0200\n"
"PO-Revision-Date: 2005-09-29 20:29+0900\n"
"Last-Translator: Ankit Patel <ankit644 at yahoo.com>\n"
"Language-Team: Gujarati <indianoss-gujarati at lists.sourceforge.net>\n"
@@ -17,6 +17,41 @@
"X-Generator: KBabel 1.9.1\n"
"Plural-Forms: nplurals=2; plural=(n!=1);\n"
+#: ../config/launcher-7.rc.in.h:1
+#, fuzzy
+msgid "Command Prompt"
+msgstr "આદેશ"
+
+#: ../config/launcher-7.rc.in.h:2
+msgid "X terminal emulator"
+msgstr ""
+
+#: ../config/launcher-8.rc.in.h:1
+msgid "Edit text files"
+msgstr ""
+
+#: ../config/launcher-8.rc.in.h:2 ../plugins/launcher/launcher-dialog.c:102
+msgid "Editor"
+msgstr "સંપાદક"
+
+#: ../config/launcher-9.rc.in.h:1
+#, fuzzy
+msgid "File Manager"
+msgstr "ફાઈલ વ્યવસ્થા"
+
+#: ../config/launcher-9.rc.in.h:2
+msgid "Manage files and folders"
+msgstr ""
+
+#: ../config/launcher-10.rc.in.h:1
+msgid "Surf the internet"
+msgstr ""
+
+#: ../config/launcher-10.rc.in.h:2
+#, fuzzy
+msgid "Web Browser"
+msgstr "મદદ શોધક"
+
#. dialogs are annoying, just spit out a warning
#: ../libxfce4panel/xfce-panel-external-item.c:175
#, c-format
@@ -409,10 +444,6 @@
msgid "Default"
msgstr "મૂળભુત"
-#: ../plugins/launcher/launcher-dialog.c:102
-msgid "Editor"
-msgstr "સંપાદક"
-
#: ../plugins/launcher/launcher-dialog.c:103
msgid "File management"
msgstr "ફાઈલ વ્યવસ્થા"
@@ -530,18 +561,22 @@
msgid "Select file"
msgstr "ફાઈલ પસંદ કરો"
-#: ../plugins/pager/pager.c:285 ../plugins/pager/pager.desktop.in.in.h:2
+#: ../plugins/pager/pager.c:305 ../plugins/pager/pager.desktop.in.in.h:2
msgid "Pager"
msgstr "પેજર"
-#: ../plugins/pager/pager.c:314
+#: ../plugins/pager/pager.c:334
msgid "Number of rows:"
msgstr "હરોળોની સંખ્યા:"
-#: ../plugins/pager/pager.c:318
+#: ../plugins/pager/pager.c:338
msgid "Number of columns:"
msgstr "સ્તંભોની સંખ્યા:"
+#: ../plugins/pager/pager.c:364
+msgid "Switch workspaces using the mouse wheel"
+msgstr ""
+
#: ../plugins/separator/separator.c:255
#: ../plugins/separator/separator.desktop.in.in.h:2
#, fuzzy
Modified: xfce4-panel/trunk/po/he.po
===================================================================
--- xfce4-panel/trunk/po/he.po 2006-08-01 17:45:21 UTC (rev 22611)
+++ xfce4-panel/trunk/po/he.po 2006-08-01 18:20:27 UTC (rev 22612)
@@ -10,7 +10,7 @@
msgstr ""
"Project-Id-Version: he\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-07-30 23:08+0200\n"
+"POT-Creation-Date: 2006-08-01 20:04+0200\n"
"PO-Revision-Date: 2006-05-31 02:02+0300\n"
"Last-Translator: Yuval Tanny <tanai at int.gov.il>\n"
"Language-Team: Hebrew\n"
@@ -19,6 +19,41 @@
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: KBabel 1.11.2\n"
+#: ../config/launcher-7.rc.in.h:1
+#, fuzzy
+msgid "Command Prompt"
+msgstr "פקודה"
+
+#: ../config/launcher-7.rc.in.h:2
+msgid "X terminal emulator"
+msgstr ""
+
+#: ../config/launcher-8.rc.in.h:1
+msgid "Edit text files"
+msgstr ""
+
+#: ../config/launcher-8.rc.in.h:2 ../plugins/launcher/launcher-dialog.c:102
+msgid "Editor"
+msgstr "עורך"
+
+#: ../config/launcher-9.rc.in.h:1
+#, fuzzy
+msgid "File Manager"
+msgstr "מנהל הקבצים"
+
+#: ../config/launcher-9.rc.in.h:2
+msgid "Manage files and folders"
+msgstr ""
+
+#: ../config/launcher-10.rc.in.h:1
+msgid "Surf the internet"
+msgstr ""
+
+#: ../config/launcher-10.rc.in.h:2
+#, fuzzy
+msgid "Web Browser"
+msgstr "דפדפן העזרה"
+
#. dialogs are annoying, just spit out a warning
#: ../libxfce4panel/xfce-panel-external-item.c:175
#, c-format
@@ -389,10 +424,6 @@
msgid "Default"
msgstr "ברירת מחדל"
-#: ../plugins/launcher/launcher-dialog.c:102
-msgid "Editor"
-msgstr "עורך"
-
#: ../plugins/launcher/launcher-dialog.c:103
msgid "File management"
msgstr "מנהל הקבצים"
@@ -514,18 +545,22 @@
msgid "Select file"
msgstr "בחר קובץ:"
-#: ../plugins/pager/pager.c:285 ../plugins/pager/pager.desktop.in.in.h:2
+#: ../plugins/pager/pager.c:305 ../plugins/pager/pager.desktop.in.in.h:2
msgid "Pager"
msgstr "מחליף סביבות עבודה"
-#: ../plugins/pager/pager.c:314
+#: ../plugins/pager/pager.c:334
msgid "Number of rows:"
msgstr "מספר שורות:"
-#: ../plugins/pager/pager.c:318
+#: ../plugins/pager/pager.c:338
msgid "Number of columns:"
msgstr "מספר טורים:"
+#: ../plugins/pager/pager.c:364
+msgid "Switch workspaces using the mouse wheel"
+msgstr ""
+
#: ../plugins/separator/separator.c:255
#: ../plugins/separator/separator.desktop.in.in.h:2
msgid "Separator or Spacing"
Modified: xfce4-panel/trunk/po/hi.po
===================================================================
--- xfce4-panel/trunk/po/hi.po 2006-08-01 17:45:21 UTC (rev 22611)
+++ xfce4-panel/trunk/po/hi.po 2006-08-01 18:20:27 UTC (rev 22612)
@@ -7,7 +7,7 @@
msgstr ""
"Project-Id-Version: xfce4-panel 4.3.90.2\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-07-30 23:08+0200\n"
+"POT-Creation-Date: 2006-08-01 20:04+0200\n"
"PO-Revision-Date: 2005-08-21 17:43+0900\n"
"Last-Translator: G Karunakar <karunakar at freedomink.org>\n"
"Language-Team: Hindi <indlinux-hindi-gnome at lists.sourceforge.net>\n"
@@ -15,6 +15,41 @@
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+#: ../config/launcher-7.rc.in.h:1
+#, fuzzy
+msgid "Command Prompt"
+msgstr "आदेश :"
+
+#: ../config/launcher-7.rc.in.h:2
+msgid "X terminal emulator"
+msgstr ""
+
+#: ../config/launcher-8.rc.in.h:1
+msgid "Edit text files"
+msgstr ""
+
+#: ../config/launcher-8.rc.in.h:2 ../plugins/launcher/launcher-dialog.c:102
+msgid "Editor"
+msgstr "एडीटर"
+
+#: ../config/launcher-9.rc.in.h:1
+#, fuzzy
+msgid "File Manager"
+msgstr "फाइल प्रभंधन"
+
+#: ../config/launcher-9.rc.in.h:2
+msgid "Manage files and folders"
+msgstr ""
+
+#: ../config/launcher-10.rc.in.h:1
+msgid "Surf the internet"
+msgstr ""
+
+#: ../config/launcher-10.rc.in.h:2
+#, fuzzy
+msgid "Web Browser"
+msgstr "सहायता ब्राउसर"
+
#. dialogs are annoying, just spit out a warning
#: ../libxfce4panel/xfce-panel-external-item.c:175
#, c-format
@@ -401,10 +436,6 @@
msgid "Default"
msgstr "डिफाल्ट"
-#: ../plugins/launcher/launcher-dialog.c:102
-msgid "Editor"
-msgstr "एडीटर"
-
#: ../plugins/launcher/launcher-dialog.c:103
msgid "File management"
msgstr "फाइल प्रभंधन"
@@ -529,18 +560,22 @@
msgid "Select file"
msgstr "फाइल चयन करें"
-#: ../plugins/pager/pager.c:285 ../plugins/pager/pager.desktop.in.in.h:2
+#: ../plugins/pager/pager.c:305 ../plugins/pager/pager.desktop.in.in.h:2
msgid "Pager"
msgstr "पेजर"
-#: ../plugins/pager/pager.c:314
+#: ../plugins/pager/pager.c:334
msgid "Number of rows:"
msgstr ""
-#: ../plugins/pager/pager.c:318
+#: ../plugins/pager/pager.c:338
msgid "Number of columns:"
msgstr ""
+#: ../plugins/pager/pager.c:364
+msgid "Switch workspaces using the mouse wheel"
+msgstr ""
+
#: ../plugins/separator/separator.c:255
#: ../plugins/separator/separator.desktop.in.in.h:2
msgid "Separator or Spacing"
Modified: xfce4-panel/trunk/po/hu.po
===================================================================
--- xfce4-panel/trunk/po/hu.po 2006-08-01 17:45:21 UTC (rev 22611)
+++ xfce4-panel/trunk/po/hu.po 2006-08-01 18:20:27 UTC (rev 22612)
@@ -9,7 +9,7 @@
msgstr ""
"Project-Id-Version: xfce4-panel 4.3.90.2\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-07-30 23:08+0200\n"
+"POT-Creation-Date: 2006-08-01 20:04+0200\n"
"PO-Revision-Date: 2006-07-31 00:21+0100\n"
"Last-Translator: SZERVÑC Attila <sas at 321.hu>\n"
"Language-Team: Hungarian <translation-team-hu at lists.sourceforge.net>\n"
@@ -18,6 +18,41 @@
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
+#: ../config/launcher-7.rc.in.h:1
+#, fuzzy
+msgid "Command Prompt"
+msgstr "Parancs"
+
+#: ../config/launcher-7.rc.in.h:2
+msgid "X terminal emulator"
+msgstr ""
+
+#: ../config/launcher-8.rc.in.h:1
+msgid "Edit text files"
+msgstr ""
+
+#: ../config/launcher-8.rc.in.h:2 ../plugins/launcher/launcher-dialog.c:102
+msgid "Editor"
+msgstr "Szerkesztő"
+
+#: ../config/launcher-9.rc.in.h:1
+#, fuzzy
+msgid "File Manager"
+msgstr "Fájlkezelő"
+
+#: ../config/launcher-9.rc.in.h:2
+msgid "Manage files and folders"
+msgstr ""
+
+#: ../config/launcher-10.rc.in.h:1
+msgid "Surf the internet"
+msgstr ""
+
+#: ../config/launcher-10.rc.in.h:2
+#, fuzzy
+msgid "Web Browser"
+msgstr "Súgó"
+
#. dialogs are annoying, just spit out a warning
#: ../libxfce4panel/xfce-panel-external-item.c:175
#, c-format
@@ -29,18 +64,16 @@
msgid "Remove \"%s\"?"
msgstr "Törlöd ezt: \"%s\"?"
-#: ../libxfce4panel/xfce-panel-plugin-iface.c:576
-#: ../panel/panel-app.c:744
-#: ../panel/panel-app.c:776
-#: ../panel/panel-app.c:809
-#: ../plugins/launcher/launcher.c:375
-#: ../plugins/launcher/launcher.c:401
+#: ../libxfce4panel/xfce-panel-plugin-iface.c:576 ../panel/panel-app.c:744
+#: ../panel/panel-app.c:776 ../panel/panel-app.c:809
+#: ../plugins/launcher/launcher.c:375 ../plugins/launcher/launcher.c:401
#: ../plugins/launcher/launcher.c:437
msgid "Xfce Panel"
msgstr "Xfce panel"
#: ../libxfce4panel/xfce-panel-plugin-iface.c:578
-msgid "The item will be removed from the panel and its configuration will be lost."
+msgid ""
+"The item will be removed from the panel and its configuration will be lost."
msgstr "Az elem lekerül a panelről, és beállítása elvész."
#. configure, hide by default
@@ -65,8 +98,7 @@
msgid "Add New Item"
msgstr "Új elem hozzáadása"
-#: ../libxfce4panel/xfce-panel-plugin-iface.c:832
-#: ../panel/panel.c:659
+#: ../libxfce4panel/xfce-panel-plugin-iface.c:832 ../panel/panel.c:659
#: ../mcs-plugin/xfce4-panel-manager.desktop.in.h:1
msgid "Customize Panel"
msgstr "Panel testreszabása"
@@ -75,8 +107,7 @@
msgid "Add Items"
msgstr "Elemek hozzáadása"
-#: ../panel/panel.c:686
-#: ../plugins/actions/actions.c:417
+#: ../panel/panel.c:686 ../plugins/actions/actions.c:417
msgid "Quit"
msgstr "Kilépés"
@@ -88,8 +119,7 @@
msgid "About the Xfce Panel"
msgstr "Xfce panel névjegy"
-#: ../panel/panel-app.c:242
-#: ../panel/panel-app.c:746
+#: ../panel/panel-app.c:242 ../panel/panel-app.c:746
msgid "Exit Xfce Panel?"
msgstr "Bezárod ezt az Xfce panelt?"
@@ -175,45 +205,41 @@
msgstr "Elemek hozzáadása a panelhoz"
#: ../panel/panel-dialogs.c:559
-msgid "Drag items from the list to a panel or remove them by dragging them back to the list."
-msgstr "Húzz elemeket a listából egy panelra vagy előbbibe visszahúzva töröld őket."
+msgid ""
+"Drag items from the list to a panel or remove them by dragging them back to "
+"the list."
+msgstr ""
+"Húzz elemeket a listából egy panelra vagy előbbibe visszahúzva töröld őket."
#: ../panel/panel-dialogs.c:572
msgid "Available Items"
msgstr "Elérhető elemek"
-#: ../panel/panel-dialogs.c:789
-#: ../panel/panel-dialogs.c:1013
+#: ../panel/panel-dialogs.c:789 ../panel/panel-dialogs.c:1013
msgid "Normal Width"
msgstr "Sima szélesség"
-#: ../panel/panel-dialogs.c:791
-#: ../panel/panel-dialogs.c:1015
+#: ../panel/panel-dialogs.c:791 ../panel/panel-dialogs.c:1015
msgid "Full Width"
msgstr "Teljes szélesség"
-#: ../panel/panel-dialogs.c:797
-#: ../panel/panel-dialogs.c:1021
+#: ../panel/panel-dialogs.c:797 ../panel/panel-dialogs.c:1021
msgid "Span Monitors"
msgstr "Monitorokon át"
-#: ../panel/panel-dialogs.c:857
-#: ../panel/panel-dialogs.c:1086
+#: ../panel/panel-dialogs.c:857 ../panel/panel-dialogs.c:1086
msgid "Left"
msgstr "Balra"
-#: ../panel/panel-dialogs.c:859
-#: ../panel/panel-dialogs.c:1088
+#: ../panel/panel-dialogs.c:859 ../panel/panel-dialogs.c:1088
msgid "Right"
msgstr "Jobbra"
-#: ../panel/panel-dialogs.c:864
-#: ../panel/panel-dialogs.c:1093
+#: ../panel/panel-dialogs.c:864 ../panel/panel-dialogs.c:1093
msgid "Top"
msgstr "Fent"
-#: ../panel/panel-dialogs.c:866
-#: ../panel/panel-dialogs.c:1095
+#: ../panel/panel-dialogs.c:866 ../panel/panel-dialogs.c:1095
msgid "Bottom"
msgstr "Lent"
@@ -259,8 +285,7 @@
msgstr "Válassz monitort"
#. Button Layout
-#: ../panel/panel-dialogs.c:1281
-#: ../plugins/clock/clock.c:426
+#: ../panel/panel-dialogs.c:1281 ../plugins/clock/clock.c:426
#: ../plugins/windowlist/windowlist-dialog.c:188
msgid "Appearance"
msgstr "Megjelenés"
@@ -278,8 +303,7 @@
msgid "Make active panel opaque"
msgstr "Az aktív panel átlátszatlan"
-#: ../panel/panel-dialogs.c:1378
-#: ../panel/panel-dialogs.c:1414
+#: ../panel/panel-dialogs.c:1378 ../panel/panel-dialogs.c:1414
#: ../panel/panel-dialogs.c:1439
#, c-format
msgid "Panel %d"
@@ -326,8 +350,7 @@
msgid "%A %d %B %Y"
msgstr "%Y. %B %d., %A"
-#: ../plugins/clock/clock.c:410
-#: ../plugins/clock/clock.desktop.in.in.h:1
+#: ../plugins/clock/clock.c:410 ../plugins/clock/clock.desktop.in.in.h:1
msgid "Clock"
msgstr "Óra"
@@ -344,8 +367,7 @@
msgid "LED"
msgstr "LED"
-#: ../plugins/clock/clock.c:448
-#: ../plugins/systray/systray.c:400
+#: ../plugins/clock/clock.c:448 ../plugins/systray/systray.c:400
msgid "Show _frame"
msgstr "_Keret mutatása"
@@ -378,8 +400,7 @@
msgid "Show applications of all workspaces"
msgstr "Alkalmazások mutatása minden munkaterületről"
-#: ../plugins/launcher/launcher.c:373
-#: ../plugins/launcher/launcher.c:435
+#: ../plugins/launcher/launcher.c:373 ../plugins/launcher/launcher.c:435
#, c-format
msgid "Could not run \"%s\""
msgstr "\"%s\" nem futtatható"
@@ -389,14 +410,12 @@
msgid "Error in command \"%s\""
msgstr "Hiba a parancsban: \"%s\""
-#: ../plugins/launcher/launcher.c:689
-#: ../plugins/launcher/launcher.c:1309
+#: ../plugins/launcher/launcher.c:689 ../plugins/launcher/launcher.c:1309
#: ../plugins/launcher/launcher-dialog.c:1146
msgid "New Item"
msgstr "Új elem"
-#: ../plugins/launcher/launcher.c:747
-#: ../plugins/launcher/launcher.c:1310
+#: ../plugins/launcher/launcher.c:747 ../plugins/launcher/launcher.c:1310
msgid "This item has not yet been configured"
msgstr "Beállítatlan elem"
@@ -404,10 +423,6 @@
msgid "Default"
msgstr "Alapértelmezett"
-#: ../plugins/launcher/launcher-dialog.c:102
-msgid "Editor"
-msgstr "Szerkesztő"
-
#: ../plugins/launcher/launcher-dialog.c:103
msgid "File management"
msgstr "Fájlkezelő"
@@ -493,7 +508,9 @@
msgstr "_Indításjelentés használata"
#: ../plugins/launcher/launcher-dialog.c:1268
-msgid "The first item in the list is shown on the panel. Additional items will appear in a menu."
+msgid ""
+"The first item in the list is shown on the panel. Additional items will "
+"appear in a menu."
msgstr "Az 1. listaelem a panelon. A többi a menüben."
#: ../plugins/launcher/launcher-dialog.c:1311
@@ -515,26 +532,34 @@
"Súgó a Zero Install használatához: http://0install.net"
#: ../plugins/launcher/launcher-dialog.c:1466
-msgid "The Zero Install GUI has finished, but the launcher dialog has disappeared in the meantime. Not adding launcher (but any files downloaded have not been lost)."
-msgstr "A Zero Install GUI kész, de az indító párbeszéd közben eltűnt. Nem adtam hozzá az indítót (de a letöltött fájlok megvannak)."
+msgid ""
+"The Zero Install GUI has finished, but the launcher dialog has disappeared "
+"in the meantime. Not adding launcher (but any files downloaded have not been "
+"lost)."
+msgstr ""
+"A Zero Install GUI kész, de az indító párbeszéd közben eltűnt. Nem adtam "
+"hozzá az indítót (de a letöltött fájlok megvannak)."
#: ../plugins/launcher/launcher-dialog.c:1824
msgid "Select file"
msgstr "Válassz fájlt"
-#: ../plugins/pager/pager.c:285
-#: ../plugins/pager/pager.desktop.in.in.h:2
+#: ../plugins/pager/pager.c:305 ../plugins/pager/pager.desktop.in.in.h:2
msgid "Pager"
msgstr "Lapozó"
-#: ../plugins/pager/pager.c:314
+#: ../plugins/pager/pager.c:334
msgid "Number of rows:"
msgstr "Sorok száma:"
-#: ../plugins/pager/pager.c:318
+#: ../plugins/pager/pager.c:338
msgid "Number of columns:"
msgstr "Oszlopok száma:"
+#: ../plugins/pager/pager.c:364
+msgid "Switch workspaces using the mouse wheel"
+msgstr ""
+
#: ../plugins/separator/separator.c:255
#: ../plugins/separator/separator.desktop.in.in.h:2
msgid "Separator or Spacing"
@@ -556,8 +581,7 @@
msgid "Hide windows and show desktop"
msgstr "Ablakok rejtése és a munkaasztal mutatása"
-#: ../plugins/systray/systray.c:69
-#: ../plugins/systray/systray.c:84
+#: ../plugins/systray/systray.c:69 ../plugins/systray/systray.c:84
msgid "There is already a system tray running on this screen"
msgstr "Már fut egy rendszertálca e képernyőn"
@@ -571,8 +595,7 @@
msgid "System Tray"
msgstr "Rendszertálca"
-#: ../plugins/tasklist/tasklist.c:385
-#: ../plugins/tasklist/tasklist.c:447
+#: ../plugins/tasklist/tasklist.c:385 ../plugins/tasklist/tasklist.c:447
#: ../plugins/tasklist/tasklist.desktop.in.in.h:2
msgid "Task List"
msgstr "Feladatlista"
@@ -647,8 +670,12 @@
msgstr "Ablak lista"
#: ../plugins/windowlist/windowlist-dialog.c:148
-msgid "<i>Urgency notification</i> will blink the button when an application needs attention."
-msgstr "A <i>Sürgősségi jelentés</i> villantja a gombot, ha egy alkalmazás figyelmet kér."
+msgid ""
+"<i>Urgency notification</i> will blink the button when an application needs "
+"attention."
+msgstr ""
+"A <i>Sürgősségi jelentés</i> villantja a gombot, ha egy alkalmazás figyelmet "
+"kér."
#. Button Urgency Notification
#: ../plugins/windowlist/windowlist-dialog.c:155
@@ -754,4 +781,3 @@
#: ../mcs-plugin/xfce4-panel-manager.desktop.in.h:3
msgid "Xfce 4 Panel Manager"
msgstr "Xfce 4 panel kezelő"
-
Modified: xfce4-panel/trunk/po/hy.po
===================================================================
--- xfce4-panel/trunk/po/hy.po 2006-08-01 17:45:21 UTC (rev 22611)
+++ xfce4-panel/trunk/po/hy.po 2006-08-01 18:20:27 UTC (rev 22612)
@@ -7,7 +7,7 @@
msgstr ""
"Project-Id-Version: xfce4-panel 4.3.90.2\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-07-30 23:08+0200\n"
+"POT-Creation-Date: 2006-08-01 20:04+0200\n"
"PO-Revision-Date: 2005-09-29 20:31+0900\n"
"Last-Translator: Norayr Chilingaryan <norik at freenet.am>\n"
"Language-Team: Armenian <en at li.org>\n"
@@ -16,6 +16,41 @@
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: KBabel 1.9.1\n"
+#: ../config/launcher-7.rc.in.h:1
+#, fuzzy
+msgid "Command Prompt"
+msgstr "Հրաման՝"
+
+#: ../config/launcher-7.rc.in.h:2
+msgid "X terminal emulator"
+msgstr ""
+
+#: ../config/launcher-8.rc.in.h:1
+msgid "Edit text files"
+msgstr ""
+
+#: ../config/launcher-8.rc.in.h:2 ../plugins/launcher/launcher-dialog.c:102
+msgid "Editor"
+msgstr "Խմբագրիչ"
+
+#: ../config/launcher-9.rc.in.h:1
+#, fuzzy
+msgid "File Manager"
+msgstr "Ֆայլերի կառավորում"
+
+#: ../config/launcher-9.rc.in.h:2
+msgid "Manage files and folders"
+msgstr ""
+
+#: ../config/launcher-10.rc.in.h:1
+msgid "Surf the internet"
+msgstr ""
+
+#: ../config/launcher-10.rc.in.h:2
+#, fuzzy
+msgid "Web Browser"
+msgstr "Ձեռնարկի զննիչ"
+
#. dialogs are annoying, just spit out a warning
#: ../libxfce4panel/xfce-panel-external-item.c:175
#, c-format
@@ -400,10 +435,6 @@
msgid "Default"
msgstr "Սկզբնական"
-#: ../plugins/launcher/launcher-dialog.c:102
-msgid "Editor"
-msgstr "Խմբագրիչ"
-
#: ../plugins/launcher/launcher-dialog.c:103
msgid "File management"
msgstr "Ֆայլերի կառավորում"
@@ -525,19 +556,23 @@
msgid "Select file"
msgstr "Ընտրել ֆայլ"
-#: ../plugins/pager/pager.c:285 ../plugins/pager/pager.desktop.in.in.h:2
+#: ../plugins/pager/pager.c:305 ../plugins/pager/pager.desktop.in.in.h:2
#, fuzzy
msgid "Pager"
msgstr "Մեծ"
-#: ../plugins/pager/pager.c:314
+#: ../plugins/pager/pager.c:334
msgid "Number of rows:"
msgstr "Շարքերի քանակը՝"
-#: ../plugins/pager/pager.c:318
+#: ../plugins/pager/pager.c:338
msgid "Number of columns:"
msgstr "Սյուներիի քանակը՝"
+#: ../plugins/pager/pager.c:364
+msgid "Switch workspaces using the mouse wheel"
+msgstr ""
+
#: ../plugins/separator/separator.c:255
#: ../plugins/separator/separator.desktop.in.in.h:2
#, fuzzy
Modified: xfce4-panel/trunk/po/it.po
===================================================================
--- xfce4-panel/trunk/po/it.po 2006-08-01 17:45:21 UTC (rev 22611)
+++ xfce4-panel/trunk/po/it.po 2006-08-01 18:20:27 UTC (rev 22612)
@@ -8,7 +8,7 @@
msgstr ""
"Project-Id-Version: xfce4-panel 4.3.90.2\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-07-30 23:08+0200\n"
+"POT-Creation-Date: 2006-08-01 20:04+0200\n"
"PO-Revision-Date: 2005-10-20 12:50+0100\n"
"Last-Translator: Alex Dupre <ale at FreeBSD.org>\n"
"Language-Team: GUFI <traduzioni at gufi.org>\n"
@@ -16,6 +16,41 @@
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+#: ../config/launcher-7.rc.in.h:1
+#, fuzzy
+msgid "Command Prompt"
+msgstr "Comando"
+
+#: ../config/launcher-7.rc.in.h:2
+msgid "X terminal emulator"
+msgstr ""
+
+#: ../config/launcher-8.rc.in.h:1
+msgid "Edit text files"
+msgstr ""
+
+#: ../config/launcher-8.rc.in.h:2 ../plugins/launcher/launcher-dialog.c:102
+msgid "Editor"
+msgstr "Editor"
+
+#: ../config/launcher-9.rc.in.h:1
+#, fuzzy
+msgid "File Manager"
+msgstr "Gestione file"
+
+#: ../config/launcher-9.rc.in.h:2
+msgid "Manage files and folders"
+msgstr ""
+
+#: ../config/launcher-10.rc.in.h:1
+msgid "Surf the internet"
+msgstr ""
+
+#: ../config/launcher-10.rc.in.h:2
+#, fuzzy
+msgid "Web Browser"
+msgstr "Guida di aiuto"
+
#. dialogs are annoying, just spit out a warning
#: ../libxfce4panel/xfce-panel-external-item.c:175
#, c-format
@@ -388,10 +423,6 @@
msgid "Default"
msgstr "Default"
-#: ../plugins/launcher/launcher-dialog.c:102
-msgid "Editor"
-msgstr "Editor"
-
#: ../plugins/launcher/launcher-dialog.c:103
msgid "File management"
msgstr "Gestione file"
@@ -508,18 +539,22 @@
msgid "Select file"
msgstr "Seleziona il file"
-#: ../plugins/pager/pager.c:285 ../plugins/pager/pager.desktop.in.in.h:2
+#: ../plugins/pager/pager.c:305 ../plugins/pager/pager.desktop.in.in.h:2
msgid "Pager"
msgstr "Pager"
-#: ../plugins/pager/pager.c:314
+#: ../plugins/pager/pager.c:334
msgid "Number of rows:"
msgstr "Numero di righe:"
-#: ../plugins/pager/pager.c:318
+#: ../plugins/pager/pager.c:338
msgid "Number of columns:"
msgstr "Numero di colonne:"
+#: ../plugins/pager/pager.c:364
+msgid "Switch workspaces using the mouse wheel"
+msgstr ""
+
#: ../plugins/separator/separator.c:255
#: ../plugins/separator/separator.desktop.in.in.h:2
#, fuzzy
Modified: xfce4-panel/trunk/po/ja.po
===================================================================
--- xfce4-panel/trunk/po/ja.po 2006-08-01 17:45:21 UTC (rev 22611)
+++ xfce4-panel/trunk/po/ja.po 2006-08-01 18:20:27 UTC (rev 22612)
@@ -9,7 +9,7 @@
msgstr ""
"Project-Id-Version: xfce4-panel 4.3.90.2\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-07-30 23:08+0200\n"
+"POT-Creation-Date: 2006-08-01 20:04+0200\n"
"PO-Revision-Date: 2006-05-31 21:43+0900\n"
"Last-Translator: Daichi Kawahata <daichi at xfce.org>\n"
"Language-Team: Japanese <xfce-users-jp at ml.fdiary.net>\n"
@@ -17,6 +17,41 @@
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+#: ../config/launcher-7.rc.in.h:1
+#, fuzzy
+msgid "Command Prompt"
+msgstr "コマンド"
+
+#: ../config/launcher-7.rc.in.h:2
+msgid "X terminal emulator"
+msgstr ""
+
+#: ../config/launcher-8.rc.in.h:1
+msgid "Edit text files"
+msgstr ""
+
+#: ../config/launcher-8.rc.in.h:2 ../plugins/launcher/launcher-dialog.c:102
+msgid "Editor"
+msgstr "エディター"
+
+#: ../config/launcher-9.rc.in.h:1
+#, fuzzy
+msgid "File Manager"
+msgstr "ファイル管理"
+
+#: ../config/launcher-9.rc.in.h:2
+msgid "Manage files and folders"
+msgstr ""
+
+#: ../config/launcher-10.rc.in.h:1
+msgid "Surf the internet"
+msgstr ""
+
+#: ../config/launcher-10.rc.in.h:2
+#, fuzzy
+msgid "Web Browser"
+msgstr "ヘルプブラウザー"
+
#. dialogs are annoying, just spit out a warning
#: ../libxfce4panel/xfce-panel-external-item.c:175
#, c-format
@@ -392,10 +427,6 @@
msgid "Default"
msgstr "標準"
-#: ../plugins/launcher/launcher-dialog.c:102
-msgid "Editor"
-msgstr "エディター"
-
#: ../plugins/launcher/launcher-dialog.c:103
msgid "File management"
msgstr "ファイル管理"
@@ -523,18 +554,22 @@
msgid "Select file"
msgstr "ファイルを選択してください"
-#: ../plugins/pager/pager.c:285 ../plugins/pager/pager.desktop.in.in.h:2
+#: ../plugins/pager/pager.c:305 ../plugins/pager/pager.desktop.in.in.h:2
msgid "Pager"
msgstr "ページャー"
-#: ../plugins/pager/pager.c:314
+#: ../plugins/pager/pager.c:334
msgid "Number of rows:"
msgstr "行数:"
-#: ../plugins/pager/pager.c:318
+#: ../plugins/pager/pager.c:338
msgid "Number of columns:"
msgstr "列数:"
+#: ../plugins/pager/pager.c:364
+msgid "Switch workspaces using the mouse wheel"
+msgstr ""
+
#: ../plugins/separator/separator.c:255
#: ../plugins/separator/separator.desktop.in.in.h:2
msgid "Separator or Spacing"
Modified: xfce4-panel/trunk/po/ko.po
===================================================================
--- xfce4-panel/trunk/po/ko.po 2006-08-01 17:45:21 UTC (rev 22611)
+++ xfce4-panel/trunk/po/ko.po 2006-08-01 18:20:27 UTC (rev 22612)
@@ -7,7 +7,7 @@
msgstr ""
"Project-Id-Version: xfce4-panel 4.3.90.2\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-07-30 23:08+0200\n"
+"POT-Creation-Date: 2006-08-01 20:04+0200\n"
"PO-Revision-Date: 2005-11-02 02:03+0900\n"
"Last-Translator: ByungHyun Choi <byunghyun.choi at gmail.com>\n"
"Language-Team: xfce4-users-kr-i18n <xfce4-users-kr-i18n at lists.sourceforge."
@@ -16,6 +16,41 @@
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+#: ../config/launcher-7.rc.in.h:1
+#, fuzzy
+msgid "Command Prompt"
+msgstr "명령"
+
+#: ../config/launcher-7.rc.in.h:2
+msgid "X terminal emulator"
+msgstr ""
+
+#: ../config/launcher-8.rc.in.h:1
+msgid "Edit text files"
+msgstr ""
+
+#: ../config/launcher-8.rc.in.h:2 ../plugins/launcher/launcher-dialog.c:102
+msgid "Editor"
+msgstr "편집기"
+
+#: ../config/launcher-9.rc.in.h:1
+#, fuzzy
+msgid "File Manager"
+msgstr "화일 관리"
+
+#: ../config/launcher-9.rc.in.h:2
+msgid "Manage files and folders"
+msgstr ""
+
+#: ../config/launcher-10.rc.in.h:1
+msgid "Surf the internet"
+msgstr ""
+
+#: ../config/launcher-10.rc.in.h:2
+#, fuzzy
+msgid "Web Browser"
+msgstr "도움말 브라우져"
+
#. dialogs are annoying, just spit out a warning
#: ../libxfce4panel/xfce-panel-external-item.c:175
#, c-format
@@ -385,10 +420,6 @@
msgid "Default"
msgstr "기본"
-#: ../plugins/launcher/launcher-dialog.c:102
-msgid "Editor"
-msgstr "편집기"
-
#: ../plugins/launcher/launcher-dialog.c:103
msgid "File management"
msgstr "화일 관리"
@@ -511,18 +542,22 @@
msgid "Select file"
msgstr "화일선택"
-#: ../plugins/pager/pager.c:285 ../plugins/pager/pager.desktop.in.in.h:2
+#: ../plugins/pager/pager.c:305 ../plugins/pager/pager.desktop.in.in.h:2
msgid "Pager"
msgstr "페이저"
-#: ../plugins/pager/pager.c:314
+#: ../plugins/pager/pager.c:334
msgid "Number of rows:"
msgstr "몇 줄:"
-#: ../plugins/pager/pager.c:318
+#: ../plugins/pager/pager.c:338
msgid "Number of columns:"
msgstr "몇 열:"
+#: ../plugins/pager/pager.c:364
+msgid "Switch workspaces using the mouse wheel"
+msgstr ""
+
#: ../plugins/separator/separator.c:255
#: ../plugins/separator/separator.desktop.in.in.h:2
msgid "Separator or Spacing"
Modified: xfce4-panel/trunk/po/lt.po
===================================================================
--- xfce4-panel/trunk/po/lt.po 2006-08-01 17:45:21 UTC (rev 22611)
+++ xfce4-panel/trunk/po/lt.po 2006-08-01 18:20:27 UTC (rev 22612)
@@ -7,7 +7,7 @@
msgstr ""
"Project-Id-Version: xfce4-panel 4.3.90.2\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-07-30 23:08+0200\n"
+"POT-Creation-Date: 2006-08-01 20:04+0200\n"
"PO-Revision-Date: 2005-09-29 20:34+0900\n"
"Last-Translator: Mantas Zapolskas <mantaz at users.sf.net>\n"
"Language-Team: Lithuanian <komp_lt at konferencijos.lt>\n"
@@ -15,6 +15,41 @@
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+#: ../config/launcher-7.rc.in.h:1
+#, fuzzy
+msgid "Command Prompt"
+msgstr "Komanda:"
+
+#: ../config/launcher-7.rc.in.h:2
+msgid "X terminal emulator"
+msgstr ""
+
+#: ../config/launcher-8.rc.in.h:1
+msgid "Edit text files"
+msgstr ""
+
+#: ../config/launcher-8.rc.in.h:2 ../plugins/launcher/launcher-dialog.c:102
+msgid "Editor"
+msgstr "Redaktorius"
+
+#: ../config/launcher-9.rc.in.h:1
+#, fuzzy
+msgid "File Manager"
+msgstr "Failų valdymas"
+
+#: ../config/launcher-9.rc.in.h:2
+msgid "Manage files and folders"
+msgstr ""
+
+#: ../config/launcher-10.rc.in.h:1
+msgid "Surf the internet"
+msgstr ""
+
+#: ../config/launcher-10.rc.in.h:2
+#, fuzzy
+msgid "Web Browser"
+msgstr "Pagalbos naršyklė"
+
#. dialogs are annoying, just spit out a warning
#: ../libxfce4panel/xfce-panel-external-item.c:175
#, c-format
@@ -401,10 +436,6 @@
msgid "Default"
msgstr "Įprastas"
-#: ../plugins/launcher/launcher-dialog.c:102
-msgid "Editor"
-msgstr "Redaktorius"
-
#: ../plugins/launcher/launcher-dialog.c:103
msgid "File management"
msgstr "Failų valdymas"
@@ -526,18 +557,22 @@
msgid "Select file"
msgstr "Pasirinkite failą"
-#: ../plugins/pager/pager.c:285 ../plugins/pager/pager.desktop.in.in.h:2
+#: ../plugins/pager/pager.c:305 ../plugins/pager/pager.desktop.in.in.h:2
msgid "Pager"
msgstr "Pageris"
-#: ../plugins/pager/pager.c:314
+#: ../plugins/pager/pager.c:334
msgid "Number of rows:"
msgstr "Eilučių skaičius:"
-#: ../plugins/pager/pager.c:318
+#: ../plugins/pager/pager.c:338
msgid "Number of columns:"
msgstr "Stulpelių skaičius:"
+#: ../plugins/pager/pager.c:364
+msgid "Switch workspaces using the mouse wheel"
+msgstr ""
+
#: ../plugins/separator/separator.c:255
#: ../plugins/separator/separator.desktop.in.in.h:2
#, fuzzy
Modified: xfce4-panel/trunk/po/mr.po
===================================================================
--- xfce4-panel/trunk/po/mr.po 2006-08-01 17:45:21 UTC (rev 22611)
+++ xfce4-panel/trunk/po/mr.po 2006-08-01 18:20:27 UTC (rev 22612)
@@ -7,7 +7,7 @@
msgstr ""
"Project-Id-Version: xfce4-panel 4.3.90.2\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-07-30 23:08+0200\n"
+"POT-Creation-Date: 2006-08-01 20:04+0200\n"
"PO-Revision-Date: 2005-09-29 20:35+0900\n"
"Last-Translator: Pallavi Nikam <pallavi_edu at rediffmail.com>\n"
"Language-Team: Marathi <en at li.org>\n"
@@ -16,6 +16,41 @@
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: KBabel 1.9\n"
+#: ../config/launcher-7.rc.in.h:1
+#, fuzzy
+msgid "Command Prompt"
+msgstr "आज्ञा"
+
+#: ../config/launcher-7.rc.in.h:2
+msgid "X terminal emulator"
+msgstr ""
+
+#: ../config/launcher-8.rc.in.h:1
+msgid "Edit text files"
+msgstr ""
+
+#: ../config/launcher-8.rc.in.h:2 ../plugins/launcher/launcher-dialog.c:102
+msgid "Editor"
+msgstr "संपादक"
+
+#: ../config/launcher-9.rc.in.h:1
+#, fuzzy
+msgid "File Manager"
+msgstr "फाईल व्य़वस्थापन"
+
+#: ../config/launcher-9.rc.in.h:2
+msgid "Manage files and folders"
+msgstr ""
+
+#: ../config/launcher-10.rc.in.h:1
+msgid "Surf the internet"
+msgstr ""
+
+#: ../config/launcher-10.rc.in.h:2
+#, fuzzy
+msgid "Web Browser"
+msgstr "ब्राउझर मदत"
+
#. dialogs are annoying, just spit out a warning
#: ../libxfce4panel/xfce-panel-external-item.c:175
#, c-format
@@ -404,10 +439,6 @@
msgid "Default"
msgstr "गृहित"
-#: ../plugins/launcher/launcher-dialog.c:102
-msgid "Editor"
-msgstr "संपादक"
-
#: ../plugins/launcher/launcher-dialog.c:103
msgid "File management"
msgstr "फाईल व्य़वस्थापन"
@@ -525,18 +556,22 @@
msgid "Select file"
msgstr "फाईल निवडा"
-#: ../plugins/pager/pager.c:285 ../plugins/pager/pager.desktop.in.in.h:2
+#: ../plugins/pager/pager.c:305 ../plugins/pager/pager.desktop.in.in.h:2
msgid "Pager"
msgstr "पेजर"
-#: ../plugins/pager/pager.c:314
+#: ../plugins/pager/pager.c:334
msgid "Number of rows:"
msgstr "ओळींची संख्या:"
-#: ../plugins/pager/pager.c:318
+#: ../plugins/pager/pager.c:338
msgid "Number of columns:"
msgstr "स्तंभाची संख्या:"
+#: ../plugins/pager/pager.c:364
+msgid "Switch workspaces using the mouse wheel"
+msgstr ""
+
#: ../plugins/separator/separator.c:255
#: ../plugins/separator/separator.desktop.in.in.h:2
#, fuzzy
Modified: xfce4-panel/trunk/po/ms.po
===================================================================
--- xfce4-panel/trunk/po/ms.po 2006-08-01 17:45:21 UTC (rev 22611)
+++ xfce4-panel/trunk/po/ms.po 2006-08-01 18:20:27 UTC (rev 22612)
@@ -7,7 +7,7 @@
msgstr ""
"Project-Id-Version: xfce4-panel 4.3.90.2\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-07-30 23:08+0200\n"
+"POT-Creation-Date: 2006-08-01 20:04+0200\n"
"PO-Revision-Date: 2005-08-21 17:47+0900\n"
"Last-Translator: Harun Musa <mharun at gmx.net>\n"
"Language-Team: Malay <translation-team-ms at list.sourceforge.net>\n"
@@ -15,6 +15,41 @@
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+#: ../config/launcher-7.rc.in.h:1
+#, fuzzy
+msgid "Command Prompt"
+msgstr "Arahan:"
+
+#: ../config/launcher-7.rc.in.h:2
+msgid "X terminal emulator"
+msgstr ""
+
+#: ../config/launcher-8.rc.in.h:1
+msgid "Edit text files"
+msgstr ""
+
+#: ../config/launcher-8.rc.in.h:2 ../plugins/launcher/launcher-dialog.c:102
+msgid "Editor"
+msgstr "Editor"
+
+#: ../config/launcher-9.rc.in.h:1
+#, fuzzy
+msgid "File Manager"
+msgstr "Pengurusan fail"
+
+#: ../config/launcher-9.rc.in.h:2
+msgid "Manage files and folders"
+msgstr ""
+
+#: ../config/launcher-10.rc.in.h:1
+msgid "Surf the internet"
+msgstr ""
+
+#: ../config/launcher-10.rc.in.h:2
+#, fuzzy
+msgid "Web Browser"
+msgstr "Lungsur Bantuan"
+
#. dialogs are annoying, just spit out a warning
#: ../libxfce4panel/xfce-panel-external-item.c:175
#, c-format
@@ -400,10 +435,6 @@
msgid "Default"
msgstr "Default"
-#: ../plugins/launcher/launcher-dialog.c:102
-msgid "Editor"
-msgstr "Editor"
-
#: ../plugins/launcher/launcher-dialog.c:103
msgid "File management"
msgstr "Pengurusan fail"
@@ -525,18 +556,22 @@
msgid "Select file"
msgstr "Pilih fail"
-#: ../plugins/pager/pager.c:285 ../plugins/pager/pager.desktop.in.in.h:2
+#: ../plugins/pager/pager.c:305 ../plugins/pager/pager.desktop.in.in.h:2
msgid "Pager"
msgstr "Pager"
-#: ../plugins/pager/pager.c:314
+#: ../plugins/pager/pager.c:334
msgid "Number of rows:"
msgstr ""
-#: ../plugins/pager/pager.c:318
+#: ../plugins/pager/pager.c:338
msgid "Number of columns:"
msgstr ""
+#: ../plugins/pager/pager.c:364
+msgid "Switch workspaces using the mouse wheel"
+msgstr ""
+
#: ../plugins/separator/separator.c:255
#: ../plugins/separator/separator.desktop.in.in.h:2
#, fuzzy
Modified: xfce4-panel/trunk/po/nb_NO.po
===================================================================
--- xfce4-panel/trunk/po/nb_NO.po 2006-08-01 17:45:21 UTC (rev 22611)
+++ xfce4-panel/trunk/po/nb_NO.po 2006-08-01 18:20:27 UTC (rev 22612)
@@ -7,7 +7,7 @@
msgstr ""
"Project-Id-Version: xfce4-panel 4.3.90.2\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-07-30 23:08+0200\n"
+"POT-Creation-Date: 2006-08-01 20:04+0200\n"
"PO-Revision-Date: 2005-08-18 01:10+0900\n"
"Last-Translator: Eskild Hustvedt <eskild at goldenfiles.com>\n"
"Language-Team: Norwegian Bokmal <i18n-nb at lister.ping.uio.no>\n"
@@ -15,6 +15,41 @@
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+#: ../config/launcher-7.rc.in.h:1
+#, fuzzy
+msgid "Command Prompt"
+msgstr "Kommando:"
+
+#: ../config/launcher-7.rc.in.h:2
+msgid "X terminal emulator"
+msgstr ""
+
+#: ../config/launcher-8.rc.in.h:1
+msgid "Edit text files"
+msgstr ""
+
+#: ../config/launcher-8.rc.in.h:2 ../plugins/launcher/launcher-dialog.c:102
+msgid "Editor"
+msgstr "Redigerer"
+
+#: ../config/launcher-9.rc.in.h:1
+#, fuzzy
+msgid "File Manager"
+msgstr "Fil administrasjon"
+
+#: ../config/launcher-9.rc.in.h:2
+msgid "Manage files and folders"
+msgstr ""
+
+#: ../config/launcher-10.rc.in.h:1
+msgid "Surf the internet"
+msgstr ""
+
+#: ../config/launcher-10.rc.in.h:2
+#, fuzzy
+msgid "Web Browser"
+msgstr "Hjelpeveileder"
+
#. dialogs are annoying, just spit out a warning
#: ../libxfce4panel/xfce-panel-external-item.c:175
#, c-format
@@ -399,10 +434,6 @@
msgid "Default"
msgstr "Standard"
-#: ../plugins/launcher/launcher-dialog.c:102
-msgid "Editor"
-msgstr "Redigerer"
-
#: ../plugins/launcher/launcher-dialog.c:103
msgid "File management"
msgstr "Fil administrasjon"
@@ -524,18 +555,22 @@
msgid "Select file"
msgstr "Velg fil"
-#: ../plugins/pager/pager.c:285 ../plugins/pager/pager.desktop.in.in.h:2
+#: ../plugins/pager/pager.c:305 ../plugins/pager/pager.desktop.in.in.h:2
msgid "Pager"
msgstr ""
-#: ../plugins/pager/pager.c:314
+#: ../plugins/pager/pager.c:334
msgid "Number of rows:"
msgstr "Antall rader:"
-#: ../plugins/pager/pager.c:318
+#: ../plugins/pager/pager.c:338
msgid "Number of columns:"
msgstr "Antall kolonner:"
+#: ../plugins/pager/pager.c:364
+msgid "Switch workspaces using the mouse wheel"
+msgstr ""
+
#: ../plugins/separator/separator.c:255
#: ../plugins/separator/separator.desktop.in.in.h:2
#, fuzzy
Modified: xfce4-panel/trunk/po/nl.po
===================================================================
--- xfce4-panel/trunk/po/nl.po 2006-08-01 17:45:21 UTC (rev 22611)
+++ xfce4-panel/trunk/po/nl.po 2006-08-01 18:20:27 UTC (rev 22612)
@@ -7,14 +7,46 @@
msgstr ""
"Project-Id-Version: xfce4-panel 4.3.90.2\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-07-30 23:08+0200\n"
-"PO-Revision-Date: 2006-07-30 23:15+0200\n"
+"POT-Creation-Date: 2006-08-01 20:04+0200\n"
+"PO-Revision-Date: 2006-08-01 19:29+0200\n"
"Last-Translator: Jasper Huijsmans <jasper at xfce.or>\n"
"Language-Team: Dutch <vertaling at vrijschrift.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit"
+"Content-Transfer-Encoding: 8bit\n"
+#: ../config/launcher-7.rc.in.h:1
+msgid "Command Prompt"
+msgstr "Commando-regel"
+
+#: ../config/launcher-7.rc.in.h:2
+msgid "X terminal emulator"
+msgstr "X terminal emulator"
+
+#: ../config/launcher-8.rc.in.h:1
+msgid "Edit text files"
+msgstr "Tekstbestanden bewerken"
+
+#: ../config/launcher-8.rc.in.h:2 ../plugins/launcher/launcher-dialog.c:102
+msgid "Editor"
+msgstr "Editor"
+
+#: ../config/launcher-9.rc.in.h:1
+msgid "File Manager"
+msgstr "Bestandsbeheer"
+
+#: ../config/launcher-9.rc.in.h:2
+msgid "Manage files and folders"
+msgstr "Bestanden en mappen beheren"
+
+#: ../config/launcher-10.rc.in.h:1
+msgid "Surf the internet"
+msgstr "Surfen op internet"
+
+#: ../config/launcher-10.rc.in.h:2
+msgid "Web Browser"
+msgstr "Web browser"
+
#. dialogs are annoying, just spit out a warning
#: ../libxfce4panel/xfce-panel-external-item.c:175
#, c-format
@@ -389,10 +421,6 @@
msgid "Default"
msgstr "Standaard"
-#: ../plugins/launcher/launcher-dialog.c:102
-msgid "Editor"
-msgstr "Editor"
-
#: ../plugins/launcher/launcher-dialog.c:103
msgid "File management"
msgstr "Bestandsbeheer"
@@ -517,18 +545,22 @@
msgid "Select file"
msgstr "Bestand selecteren"
-#: ../plugins/pager/pager.c:285 ../plugins/pager/pager.desktop.in.in.h:2
+#: ../plugins/pager/pager.c:305 ../plugins/pager/pager.desktop.in.in.h:2
msgid "Pager"
msgstr "Pager"
-#: ../plugins/pager/pager.c:314
+#: ../plugins/pager/pager.c:334
msgid "Number of rows:"
msgstr "Aantal rijen:"
-#: ../plugins/pager/pager.c:318
+#: ../plugins/pager/pager.c:338
msgid "Number of columns:"
msgstr "Aantal kolommen:"
+#: ../plugins/pager/pager.c:364
+msgid "Switch workspaces using the mouse wheel"
+msgstr "Bureaublad wisselen met muis-wiel."
+
#: ../plugins/separator/separator.c:255
#: ../plugins/separator/separator.desktop.in.in.h:2
msgid "Separator or Spacing"
@@ -750,4 +782,3 @@
#: ../mcs-plugin/xfce4-panel-manager.desktop.in.h:3
msgid "Xfce 4 Panel Manager"
msgstr "Xfce 4 Paneel Manager"
-
Modified: xfce4-panel/trunk/po/pa.po
===================================================================
--- xfce4-panel/trunk/po/pa.po 2006-08-01 17:45:21 UTC (rev 22611)
+++ xfce4-panel/trunk/po/pa.po 2006-08-01 18:20:27 UTC (rev 22612)
@@ -7,7 +7,7 @@
msgstr ""
"Project-Id-Version: xfce4-panel 4.3.90.2\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-07-30 23:08+0200\n"
+"POT-Creation-Date: 2006-08-01 20:04+0200\n"
"PO-Revision-Date: 2005-09-29 20:36+0900\n"
"Last-Translator: Amanpreet Singh Alam <aalam at redhat.com>\n"
"Language-Team: Punjabi <fedora-trans-pa at redhat.com>\n"
@@ -18,6 +18,41 @@
"Plural-Forms: Plural-Forms: Plural-Forms: nplurals=2; plural=(n != 1);\n"
"\n"
+#: ../config/launcher-7.rc.in.h:1
+#, fuzzy
+msgid "Command Prompt"
+msgstr "ਕਮਾਂਡ:"
+
+#: ../config/launcher-7.rc.in.h:2
+msgid "X terminal emulator"
+msgstr ""
+
+#: ../config/launcher-8.rc.in.h:1
+msgid "Edit text files"
+msgstr ""
+
+#: ../config/launcher-8.rc.in.h:2 ../plugins/launcher/launcher-dialog.c:102
+msgid "Editor"
+msgstr "ਸੰਪਾਦਕ"
+
+#: ../config/launcher-9.rc.in.h:1
+#, fuzzy
+msgid "File Manager"
+msgstr "ਫਾਇਲ ਪ੍ਰਬੰਧਨ"
+
+#: ../config/launcher-9.rc.in.h:2
+msgid "Manage files and folders"
+msgstr ""
+
+#: ../config/launcher-10.rc.in.h:1
+msgid "Surf the internet"
+msgstr ""
+
+#: ../config/launcher-10.rc.in.h:2
+#, fuzzy
+msgid "Web Browser"
+msgstr "ਸਹਾਇਤਾ ਝਲਕਾਰਾ"
+
#. dialogs are annoying, just spit out a warning
#: ../libxfce4panel/xfce-panel-external-item.c:175
#, c-format
@@ -403,10 +438,6 @@
msgid "Default"
msgstr "ਮੂਲ"
-#: ../plugins/launcher/launcher-dialog.c:102
-msgid "Editor"
-msgstr "ਸੰਪਾਦਕ"
-
#: ../plugins/launcher/launcher-dialog.c:103
msgid "File management"
msgstr "ਫਾਇਲ ਪ੍ਰਬੰਧਨ"
@@ -528,18 +559,22 @@
msgid "Select file"
msgstr "ਫਾਇਲ ਚੁਣੋ"
-#: ../plugins/pager/pager.c:285 ../plugins/pager/pager.desktop.in.in.h:2
+#: ../plugins/pager/pager.c:305 ../plugins/pager/pager.desktop.in.in.h:2
msgid "Pager"
msgstr "ਪੇਜ਼ਰ"
-#: ../plugins/pager/pager.c:314
+#: ../plugins/pager/pager.c:334
msgid "Number of rows:"
msgstr "ਕਤਾਰਾਂ ਦੀ ਗਿਣਤੀ:"
-#: ../plugins/pager/pager.c:318
+#: ../plugins/pager/pager.c:338
msgid "Number of columns:"
msgstr "ਕਾਲਮਾਂ ਦੀ ਗਿਣਤੀ:"
+#: ../plugins/pager/pager.c:364
+msgid "Switch workspaces using the mouse wheel"
+msgstr ""
+
#: ../plugins/separator/separator.c:255
#: ../plugins/separator/separator.desktop.in.in.h:2
#, fuzzy
Modified: xfce4-panel/trunk/po/pl.po
===================================================================
--- xfce4-panel/trunk/po/pl.po 2006-08-01 17:45:21 UTC (rev 22611)
+++ xfce4-panel/trunk/po/pl.po 2006-08-01 18:20:27 UTC (rev 22612)
@@ -11,7 +11,7 @@
msgstr ""
"Project-Id-Version: xfce4-panel 4.3.90.2\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-07-30 23:08+0200\n"
+"POT-Creation-Date: 2006-08-01 20:04+0200\n"
"PO-Revision-Date: 2006-06-08 23:00+0200\n"
"Last-Translator: Szymon Kałasz <szymon_maestro at gazeta.pl>\n"
"Language-Team: Polish <translation-team-pl at lists.sourceforge.net>\n"
@@ -19,6 +19,41 @@
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+#: ../config/launcher-7.rc.in.h:1
+#, fuzzy
+msgid "Command Prompt"
+msgstr "Polecenie"
+
+#: ../config/launcher-7.rc.in.h:2
+msgid "X terminal emulator"
+msgstr ""
+
+#: ../config/launcher-8.rc.in.h:1
+msgid "Edit text files"
+msgstr ""
+
+#: ../config/launcher-8.rc.in.h:2 ../plugins/launcher/launcher-dialog.c:102
+msgid "Editor"
+msgstr "Edytor"
+
+#: ../config/launcher-9.rc.in.h:1
+#, fuzzy
+msgid "File Manager"
+msgstr "Menedżer plików"
+
+#: ../config/launcher-9.rc.in.h:2
+msgid "Manage files and folders"
+msgstr ""
+
+#: ../config/launcher-10.rc.in.h:1
+msgid "Surf the internet"
+msgstr ""
+
+#: ../config/launcher-10.rc.in.h:2
+#, fuzzy
+msgid "Web Browser"
+msgstr "Przeglądarka pomocy"
+
#. dialogs are annoying, just spit out a warning
#: ../libxfce4panel/xfce-panel-external-item.c:175
#, c-format
@@ -390,10 +425,6 @@
msgid "Default"
msgstr "Domyślny"
-#: ../plugins/launcher/launcher-dialog.c:102
-msgid "Editor"
-msgstr "Edytor"
-
#: ../plugins/launcher/launcher-dialog.c:103
msgid "File management"
msgstr "Menedżer plików"
@@ -517,18 +548,22 @@
msgid "Select file"
msgstr "Wybierz plik"
-#: ../plugins/pager/pager.c:285 ../plugins/pager/pager.desktop.in.in.h:2
+#: ../plugins/pager/pager.c:305 ../plugins/pager/pager.desktop.in.in.h:2
msgid "Pager"
msgstr "Pager"
-#: ../plugins/pager/pager.c:314
+#: ../plugins/pager/pager.c:334
msgid "Number of rows:"
msgstr "Ilość wierszy:"
-#: ../plugins/pager/pager.c:318
+#: ../plugins/pager/pager.c:338
msgid "Number of columns:"
msgstr "Ilość kolumn:"
+#: ../plugins/pager/pager.c:364
+msgid "Switch workspaces using the mouse wheel"
+msgstr ""
+
#: ../plugins/separator/separator.c:255
#: ../plugins/separator/separator.desktop.in.in.h:2
msgid "Separator or Spacing"
Modified: xfce4-panel/trunk/po/pt_BR.po
===================================================================
--- xfce4-panel/trunk/po/pt_BR.po 2006-08-01 17:45:21 UTC (rev 22611)
+++ xfce4-panel/trunk/po/pt_BR.po 2006-08-01 18:20:27 UTC (rev 22612)
@@ -8,7 +8,7 @@
msgstr ""
"Project-Id-Version: xfce4-panel 4.3.90.2\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-07-30 23:08+0200\n"
+"POT-Creation-Date: 2006-08-01 20:04+0200\n"
"PO-Revision-Date: 2006-06-04 23:01-0300\n"
"Last-Translator: Adriano Winter Bess <awbess at gmail.com>\n"
"Language-Team: Brazilian Portuguese <ldp-br at bazar.conectiva.com.br>\n"
@@ -16,6 +16,41 @@
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+#: ../config/launcher-7.rc.in.h:1
+#, fuzzy
+msgid "Command Prompt"
+msgstr "Comando"
+
+#: ../config/launcher-7.rc.in.h:2
+msgid "X terminal emulator"
+msgstr ""
+
+#: ../config/launcher-8.rc.in.h:1
+msgid "Edit text files"
+msgstr ""
+
+#: ../config/launcher-8.rc.in.h:2 ../plugins/launcher/launcher-dialog.c:102
+msgid "Editor"
+msgstr "Editor"
+
+#: ../config/launcher-9.rc.in.h:1
+#, fuzzy
+msgid "File Manager"
+msgstr "Gerenciamento de arquivos"
+
+#: ../config/launcher-9.rc.in.h:2
+msgid "Manage files and folders"
+msgstr ""
+
+#: ../config/launcher-10.rc.in.h:1
+msgid "Surf the internet"
+msgstr ""
+
+#: ../config/launcher-10.rc.in.h:2
+#, fuzzy
+msgid "Web Browser"
+msgstr "Navegador da ajuda"
+
#. dialogs are annoying, just spit out a warning
#: ../libxfce4panel/xfce-panel-external-item.c:175
#, c-format
@@ -389,10 +424,6 @@
msgid "Default"
msgstr "Padrão"
-#: ../plugins/launcher/launcher-dialog.c:102
-msgid "Editor"
-msgstr "Editor"
-
#: ../plugins/launcher/launcher-dialog.c:103
msgid "File management"
msgstr "Gerenciamento de arquivos"
@@ -517,18 +548,22 @@
msgid "Select file"
msgstr "Selecionar arquivo"
-#: ../plugins/pager/pager.c:285 ../plugins/pager/pager.desktop.in.in.h:2
+#: ../plugins/pager/pager.c:305 ../plugins/pager/pager.desktop.in.in.h:2
msgid "Pager"
msgstr "Paginador"
-#: ../plugins/pager/pager.c:314
+#: ../plugins/pager/pager.c:334
msgid "Number of rows:"
msgstr "Número de linhas:"
-#: ../plugins/pager/pager.c:318
+#: ../plugins/pager/pager.c:338
msgid "Number of columns:"
msgstr "Número de colunas:"
+#: ../plugins/pager/pager.c:364
+msgid "Switch workspaces using the mouse wheel"
+msgstr ""
+
#: ../plugins/separator/separator.c:255
#: ../plugins/separator/separator.desktop.in.in.h:2
msgid "Separator or Spacing"
Modified: xfce4-panel/trunk/po/pt_PT.po
===================================================================
--- xfce4-panel/trunk/po/pt_PT.po 2006-08-01 17:45:21 UTC (rev 22611)
+++ xfce4-panel/trunk/po/pt_PT.po 2006-08-01 18:20:27 UTC (rev 22612)
@@ -7,7 +7,7 @@
msgstr ""
"Project-Id-Version: xfce4-panel 4.3.90.2\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-07-30 23:08+0200\n"
+"POT-Creation-Date: 2006-08-01 20:04+0200\n"
"PO-Revision-Date: 2005-09-29 20:38+0900\n"
"Last-Translator: Nuno Donato <