kevin pushed to xfce4-cellmodem-plugin (f22). "Add patch porting to libxfceui4"

notifications at fedoraproject.org notifications at fedoraproject.org
Sun Mar 29 17:32:51 UTC 2015


>From bf78343568d30887bf8e12d7cb4101c5d64c2a4c Mon Sep 17 00:00:00 2001
From: Kevin Fenzi <kevin at scrye.com>
Date: Sun, 29 Mar 2015 11:31:48 -0600
Subject: Add patch porting to libxfceui4


diff --git a/xfce4-cellmodem-plugin-0.0.5-explicit-linking-to-libxfcegui4.patch b/xfce4-cellmodem-plugin-0.0.5-explicit-linking-to-libxfcegui4.patch
deleted file mode 100644
index 1807f4a..0000000
--- a/xfce4-cellmodem-plugin-0.0.5-explicit-linking-to-libxfcegui4.patch
+++ /dev/null
@@ -1,35 +0,0 @@
-Description: add explicit linking to libxfcegui4
-Author: Yves-Alexis Perez <corsac at debian.org>
-Bug: http://bugzilla.xfce.org/show_bug.cgi?id=6952
-xfce4_cellmodem_plugin-pin_helper.o: In function `pin_helper_pin_entry_callback':
-pin_helper.c:(.text+0xa6): undefined reference to `xfce_warn'
-
---- a/configure.ac
-+++ b/configure.ac
-@@ -18,6 +18,8 @@
- AC_CHECK_FUNCS([vasprintf])
- 
- XDT_CHECK_PACKAGE([LIBXFCE4PANEL], [libxfce4panel-1.0], [4.3.20])
-+XDT_CHECK_PACKAGE([LIBXFCEGUI4], [libxfcegui4-1.0], [4.3.20])
-+
- XDT_I18N([cs pt])
- 
- AC_ARG_ENABLE([debug],
---- a/panel-plugin/Makefile.am
-+++ b/panel-plugin/Makefile.am
-@@ -3,10 +3,12 @@
- 
- xfce4_cellmodem_plugin_CFLAGS = \
-         -DPACKAGE_LOCALE_DIR=\"$(localedir)\" \
--	@LIBXFCE4PANEL_CFLAGS@
-+	@LIBXFCE4PANEL_CFLAGS@ \
-+	@LIBXFCEGUI4_CFLAGS@
- 
- xfce4_cellmodem_plugin_LDADD = \
--	@LIBXFCE4PANEL_LIBS@ 
-+	@LIBXFCE4PANEL_LIBS@ \
-+	@LIBXFCEGUI4_LIBS@
- 
- xfce4_cellmodem_plugin_SOURCES = \
- 	cellmodem.c modem_driver.c \
-
diff --git a/xfce4-cellmodem-plugin-0.0.5-port-to-libxfce4ui.patch b/xfce4-cellmodem-plugin-0.0.5-port-to-libxfce4ui.patch
new file mode 100644
index 0000000..8240fe9
--- /dev/null
+++ b/xfce4-cellmodem-plugin-0.0.5-port-to-libxfce4ui.patch
@@ -0,0 +1,84 @@
+diff -Nur xfce4-cellmodem-plugin-0.0.5.orig/configure.ac xfce4-cellmodem-plugin-0.0.5/configure.ac
+--- xfce4-cellmodem-plugin-0.0.5.orig/configure.ac	2007-01-16 12:50:43.000000000 -0700
++++ xfce4-cellmodem-plugin-0.0.5/configure.ac	2015-03-29 09:35:48.584442704 -0600
+@@ -18,6 +18,7 @@
+ AC_CHECK_FUNCS([vasprintf])
+ 
+ XDT_CHECK_PACKAGE([LIBXFCE4PANEL], [libxfce4panel-1.0], [4.3.20])
++XDT_CHECK_PACKAGE([LIBXFCE4UI], [libxfce4ui-1], [4.8.0])
+ XDT_I18N([cs pt])
+ 
+ AC_ARG_ENABLE([debug],
+diff -Nur xfce4-cellmodem-plugin-0.0.5.orig/panel-plugin/cellmodem.h xfce4-cellmodem-plugin-0.0.5/panel-plugin/cellmodem.h
+--- xfce4-cellmodem-plugin-0.0.5.orig/panel-plugin/cellmodem.h	2006-10-30 12:27:24.000000000 -0700
++++ xfce4-cellmodem-plugin-0.0.5/panel-plugin/cellmodem.h	2015-03-29 09:35:48.584442704 -0600
+@@ -33,8 +33,8 @@
+ #include <gtk/gtk.h>
+ #include <glib.h>
+ #include <libxfce4util/libxfce4util.h>
+-#include <libxfcegui4/libxfcegui4.h>
+-#include <libxfce4panel/xfce-panel-plugin.h>
++#include <libxfce4ui/libxfce4ui.h>
++#include <libxfce4panel/libxfce4panel.h>
+ #include "leds.h"
+ 
+ #ifdef DEBUG_ENABLED
+diff -Nur xfce4-cellmodem-plugin-0.0.5.orig/panel-plugin/Makefile.am xfce4-cellmodem-plugin-0.0.5/panel-plugin/Makefile.am
+--- xfce4-cellmodem-plugin-0.0.5.orig/panel-plugin/Makefile.am	2007-01-16 12:58:53.000000000 -0700
++++ xfce4-cellmodem-plugin-0.0.5/panel-plugin/Makefile.am	2015-03-29 09:36:34.629597679 -0600
+@@ -3,10 +3,12 @@
+ 
+ xfce4_cellmodem_plugin_CFLAGS = \
+         -DPACKAGE_LOCALE_DIR=\"$(localedir)\" \
+-	@LIBXFCE4PANEL_CFLAGS@
++	@LIBXFCE4PANEL_CFLAGS@ \
++	@LIBXFCE4UI_CFLAGS@
+ 
+ xfce4_cellmodem_plugin_LDFLAGS = \
+-	@LIBXFCE4PANEL_LIBS@ 
++	@LIBXFCE4PANEL_LIBS@ \
++	@LIBXFCE4UI_LIBS@
+ 
+ xfce4_cellmodem_plugin_SOURCES = \
+ 	cellmodem.c modem_driver.c \
+diff -Nur xfce4-cellmodem-plugin-0.0.5.orig/panel-plugin/pin_helper.c xfce4-cellmodem-plugin-0.0.5/panel-plugin/pin_helper.c
+--- xfce4-cellmodem-plugin-0.0.5.orig/panel-plugin/pin_helper.c	2006-10-05 05:47:16.000000000 -0600
++++ xfce4-cellmodem-plugin-0.0.5/panel-plugin/pin_helper.c	2015-03-29 09:35:48.585442686 -0600
+@@ -28,7 +28,7 @@
+ 	if (!pin || strlen(pin)!=4 )
+ 	{
+ 	    /* Error. */
+-	    xfce_warn(_("Invalid PIN entered. PIN has 4 digits"));
++	    xfce_dialog_show_warning(NULL, NULL, _("Invalid PIN entered. PIN has 4 digits"));
+ 
+             return;
+ 	}
+diff -Nur xfce4-cellmodem-plugin-0.0.5.orig/panel-plugin/preferences.c xfce4-cellmodem-plugin-0.0.5/panel-plugin/preferences.c
+--- xfce4-cellmodem-plugin-0.0.5.orig/panel-plugin/preferences.c	2006-10-30 12:59:14.000000000 -0700
++++ xfce4-cellmodem-plugin-0.0.5/panel-plugin/preferences.c	2015-03-29 09:35:48.585442686 -0600
+@@ -269,7 +269,7 @@
+ 
+     xfce_panel_plugin_block_menu (plugin);
+     
+-    dlg = gtk_dialog_new_with_buttons (_("Configure Cell Modem Monitor"),
++    dlg = xfce_titled_dialog_new_with_buttons (_("Configure Cell Modem Monitor"),
+                 GTK_WINDOW (gtk_widget_get_toplevel (GTK_WIDGET (plugin))),
+                 GTK_DIALOG_DESTROY_WITH_PARENT |
+                 GTK_DIALOG_NO_SEPARATOR,
+@@ -279,15 +279,7 @@
+     g_signal_connect (dlg, "response", G_CALLBACK (cellmodem_t_dialog_response),
+                       monitor);
+ 
+-
+-    /* The header - this was most copied from other sources*/
+-
+-    header = xfce_create_header (NULL, _("Cellular Modem Monitor"));
+-    gtk_widget_set_size_request (GTK_BIN (header)->child, -1, 32);
+-    gtk_container_set_border_width (GTK_CONTAINER (header), BORDER - 2);
+-    gtk_widget_show (header);
+-    gtk_box_pack_start (GTK_BOX (GTK_DIALOG (dlg)->vbox), header,
+-                        FALSE, TRUE, 0);
++    xfce_titled_dialog_set_subtitle (XFCE_TITLED_DIALOG(dlg), _("Cellular Modem Monitor"));
+ 
+     /* Our own Vbox, so we can have a border */
+ 
diff --git a/xfce4-cellmodem-plugin-0.0.5-typo-linking.patch b/xfce4-cellmodem-plugin-0.0.5-typo-linking.patch
deleted file mode 100644
index 6e849c4..0000000
--- a/xfce4-cellmodem-plugin-0.0.5-typo-linking.patch
+++ /dev/null
@@ -1,16 +0,0 @@
-Description: fix typo in Makefile.am preventing correct linking
-Author: Nick Schermer <nick at xfce.org>
-Applied-Upstream: 0.0.5, http://git.xfce.org/panel-plugins/xfce4-cellmodem-plugin/commit/?id=404093d6e2f22064166b806711d5cb5d9dd935d2
-diff -ur xfce4-cellmodem-plugin-0.0.5.orig/panel-plugin/Makefile.am xfce4-cellmodem-plugin-0.0.5/panel-plugin/Makefile.am
---- xfce4-cellmodem-plugin-0.0.5.orig/panel-plugin/Makefile.am  2007-01-16 21:58:53.000000000 +0200
-+++ xfce4-cellmodem-plugin-0.0.5/panel-plugin/Makefile.am       2007-02-27 22:55:19.000000000 +0200
-@@ -5,7 +5,7 @@
-         -DPACKAGE_LOCALE_DIR=\"$(localedir)\" \
- 	@LIBXFCE4PANEL_CFLAGS@
- 
--xfce4_cellmodem_plugin_LDFLAGS = \
-+xfce4_cellmodem_plugin_LDADD = \
- 	@LIBXFCE4PANEL_LIBS@ 
- 
- xfce4_cellmodem_plugin_SOURCES = \
-
diff --git a/xfce4-cellmodem-plugin-0.0.5-update-translations.patch b/xfce4-cellmodem-plugin-0.0.5-update-translations.patch
deleted file mode 100644
index 0d6795d..0000000
--- a/xfce4-cellmodem-plugin-0.0.5-update-translations.patch
+++ /dev/null
@@ -1,6875 +0,0 @@
-diff -Nur xfce4-cellmodem-plugin-0.0.5.orig/po/ar.po xfce4-cellmodem-plugin-0.0.5/po/ar.po
---- xfce4-cellmodem-plugin-0.0.5.orig/po/ar.po	1970-01-01 01:00:00.000000000 +0100
-+++ xfce4-cellmodem-plugin-0.0.5/po/ar.po	2011-04-09 02:49:11.739375988 +0200
-@@ -0,0 +1,223 @@
-+msgid ""
-+msgstr ""
-+"Project-Id-Version: xfce\n"
-+"Report-Msgid-Bugs-To: \n"
-+"POT-Creation-Date: 2008-07-22 19:01+0100\n"
-+"PO-Revision-Date: 2008-07-16 15:06+0200\n"
-+"Last-Translator: Mohamed Magdy <mohamedmk at gmail.com>\n"
-+"Language-Team: Arabeyes <doc at arabeyes.org>\n"
-+"MIME-Version: 1.0\n"
-+"Content-Type: text/plain; charset=UTF-8\n"
-+"Content-Transfer-Encoding: 8bit\n"
-+"X-Poedit-Language: Arabic\n"
-+
-+#: ../panel-plugin/cellmodem.c:482
-+msgid "Initializing plugin now"
-+msgstr ""
-+
-+#: ../panel-plugin/cellmodem.c:505
-+#, c-format
-+msgid ""
-+"Error detected:\n"
-+"%s"
-+msgstr ""
-+
-+#: ../panel-plugin/cellmodem.c:511
-+msgid "Not registered"
-+msgstr ""
-+
-+#: ../panel-plugin/cellmodem.c:514
-+msgid "Modem needs PIN"
-+msgstr ""
-+
-+#: ../panel-plugin/cellmodem.c:517
-+msgid "Registering"
-+msgstr ""
-+
-+#: ../panel-plugin/cellmodem.c:520
-+#, c-format
-+msgid ""
-+"Registered [GPRS] to %s\n"
-+"Quality: %d (%d%%)"
-+msgstr ""
-+
-+#: ../panel-plugin/cellmodem.c:523
-+#, c-format
-+msgid ""
-+"Registered [UMTS] to %s\n"
-+"Quality: %d (%d%%)"
-+msgstr ""
-+
-+#: ../panel-plugin/cellmodem.c:526
-+#, c-format
-+msgid ""
-+"Registered [HSDPA] to %s\n"
-+"Quality: %d (%d%%)"
-+msgstr ""
-+
-+#: ../panel-plugin/cellmodem.c:529
-+#, c-format
-+msgid ""
-+"Registered to %s\n"
-+"Quality: %d (%d%%)"
-+msgstr ""
-+
-+#. Error
-+#: ../panel-plugin/cellmodem.c:687
-+msgid "Error in modem reply to CREG"
-+msgstr ""
-+
-+#: ../panel-plugin/cellmodem.c:696
-+msgid "Invalid reply to +CREG"
-+msgstr ""
-+
-+#: ../panel-plugin/cellmodem.c:721
-+msgid "Invalid CREG reply from modem"
-+msgstr ""
-+
-+#: ../panel-plugin/cellmodem.c:760
-+msgid "Error in modem reply to COPS"
-+msgstr ""
-+
-+#: ../panel-plugin/cellmodem.c:816
-+msgid "Invalid COPS reply from modem"
-+msgstr ""
-+
-+#: ../panel-plugin/cellmodem.c:844
-+msgid "Error in modem reply to CPIN"
-+msgstr ""
-+
-+#: ../panel-plugin/cellmodem.c:870
-+msgid "Invalid CPIN reply from modem"
-+msgstr ""
-+
-+#: ../panel-plugin/cellmodem.c:875
-+msgid "Unsupportted CPIN reply from modem"
-+msgstr ""
-+
-+#: ../panel-plugin/cellmodem.c:919 ../panel-plugin/cellmodem.c:973
-+msgid "Invalid OHCIP reply from modem"
-+msgstr ""
-+
-+#: ../panel-plugin/cellmodem.c:923 ../panel-plugin/cellmodem.c:977
-+msgid "Unsupportted OHCIP reply from modem"
-+msgstr ""
-+
-+#. Error
-+#: ../panel-plugin/cellmodem.c:1019
-+msgid "Cannot send PIN to modem"
-+msgstr ""
-+
-+#: ../panel-plugin/cellmodem.c:1055
-+msgid "Error in modem reply to CSQ"
-+msgstr ""
-+
-+#: ../panel-plugin/cellmodem.c:1075
-+msgid "Invalid CSQ reply from modem"
-+msgstr ""
-+
-+#: ../panel-plugin/cellmodem.c:1276 ../panel-plugin/cellmodem.c:1603
-+msgid "Cannot open modem"
-+msgstr ""
-+
-+#: ../panel-plugin/cellmodem.c:1429
-+msgid "Error reading from modem"
-+msgstr ""
-+
-+#: ../panel-plugin/cellmodem.c:1507
-+msgid "Error writing to modem"
-+msgstr ""
-+
-+#: ../panel-plugin/cellmodem.c:1523
-+msgid "Modem did not reply to command"
-+msgstr ""
-+
-+#: ../panel-plugin/cellmodem.c:1541
-+msgid "No driver defined"
-+msgstr ""
-+
-+#: ../panel-plugin/cellmodem.c:1546
-+msgid "No modem instance"
-+msgstr ""
-+
-+#: ../panel-plugin/cellmodem.c:1720
-+msgid "Modem initializing"
-+msgstr ""
-+
-+#: ../panel-plugin/cellmodem.c:1755
-+msgid "Invalid driver specified"
-+msgstr ""
-+
-+#. Error.
-+#: ../panel-plugin/pin_helper.c:31
-+msgid "Invalid PIN entered. PIN has 4 digits"
-+msgstr ""
-+
-+#: ../panel-plugin/pin_helper.c:65
-+msgid "Enter PIN"
-+msgstr ""
-+
-+#: ../panel-plugin/pin_helper.c:77
-+msgid "Please enter PIN:"
-+msgstr ""
-+
-+#: ../panel-plugin/preferences.c:285
-+msgid "Close"
-+msgstr ""
-+
-+#: ../panel-plugin/preferences.c:290
-+msgid "No known device found."
-+msgstr ""
-+
-+#: ../panel-plugin/preferences.c:292
-+msgid "The following devices were found:"
-+msgstr ""
-+
-+#: ../panel-plugin/preferences.c:299
-+msgid "Use this device"
-+msgstr ""
-+
-+#: ../panel-plugin/preferences.c:343
-+msgid "Configure Cell Modem Monitor"
-+msgstr ""
-+
-+#. The header - this was most copied from other sources
-+#: ../panel-plugin/preferences.c:356
-+msgid "Cellular Modem Monitor"
-+msgstr ""
-+
-+#: ../panel-plugin/preferences.c:387
-+msgid "Modem driver:"
-+msgstr ""
-+
-+#: ../panel-plugin/preferences.c:409
-+msgid "Modem speed:"
-+msgstr ""
-+
-+#: ../panel-plugin/preferences.c:422
-+msgid "Modem device:"
-+msgstr ""
-+
-+#: ../panel-plugin/preferences.c:434
-+msgid "Autodetect modem..."
-+msgstr ""
-+
-+#: ../panel-plugin/preferences.c:444
-+msgid "Maximum quality:"
-+msgstr ""
-+
-+#: ../panel-plugin/preferences.c:455
-+msgid "Low quality percentage:"
-+msgstr ""
-+
-+#: ../panel-plugin/preferences.c:465
-+msgid "Critical quality percentage:"
-+msgstr ""
-+
-+#: ../panel-plugin/preferences.c:479
-+msgid "Check for SMS every"
-+msgstr ""
-+
-+#: ../panel-plugin/preferences.c:481
-+msgid "minutes"
-+msgstr ""
-diff -Nur xfce4-cellmodem-plugin-0.0.5.orig/po/ast.po xfce4-cellmodem-plugin-0.0.5/po/ast.po
---- xfce4-cellmodem-plugin-0.0.5.orig/po/ast.po	1970-01-01 01:00:00.000000000 +0100
-+++ xfce4-cellmodem-plugin-0.0.5/po/ast.po	2011-04-09 02:49:11.739375988 +0200
-@@ -0,0 +1,234 @@
-+#
-+msgid ""
-+msgstr ""
-+"Project-Id-Version: xfce4-cellmodem-plugin\n"
-+"Report-Msgid-Bugs-To: \n"
-+"POT-Creation-Date: 2008-07-22 19:01+0100\n"
-+"PO-Revision-Date: 2009-07-13 19:55+0100\n"
-+"Last-Translator: Marcos Antonio Alvarez Costales <marcoscostales at gmail.com>\n"
-+"Language-Team: Asturian <alministradores at softastur.org>\n"
-+"MIME-Version: 1.0\n"
-+"Content-Type: text/plain; charset=UTF-8\n"
-+"Content-Transfer-Encoding: 8bit\n"
-+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-+
-+#: ../panel-plugin/cellmodem.c:482
-+msgid "Initializing plugin now"
-+msgstr "Aniciando complementu agora"
-+
-+#: ../panel-plugin/cellmodem.c:505
-+#, c-format
-+msgid ""
-+"Error detected:\n"
-+"%s"
-+msgstr ""
-+"Error deteutáu:\n"
-+"%s"
-+
-+#: ../panel-plugin/cellmodem.c:511
-+msgid "Not registered"
-+msgstr "Non rexistráu"
-+
-+#: ../panel-plugin/cellmodem.c:514
-+msgid "Modem needs PIN"
-+msgstr "El módem necesita'l PIN"
-+
-+#: ../panel-plugin/cellmodem.c:517
-+msgid "Registering"
-+msgstr "Rexistrando"
-+
-+#: ../panel-plugin/cellmodem.c:520
-+#, c-format
-+msgid ""
-+"Registered [GPRS] to %s\n"
-+"Quality: %d (%d%%)"
-+msgstr ""
-+"Rexistráu [GPRS] con %s\n"
-+"Calidá: %d (%d%%)"
-+
-+#: ../panel-plugin/cellmodem.c:523
-+#, c-format
-+msgid ""
-+"Registered [UMTS] to %s\n"
-+"Quality: %d (%d%%)"
-+msgstr ""
-+"Rexistráu [UMTS] con %s\n"
-+"Calidá: %d (%d%%)"
-+
-+#: ../panel-plugin/cellmodem.c:526
-+#, c-format
-+msgid ""
-+"Registered [HSDPA] to %s\n"
-+"Quality: %d (%d%%)"
-+msgstr ""
-+"Rexistráu [HSDPA] con %s\n"
-+"Calidá: %d (%d%%)"
-+
-+#: ../panel-plugin/cellmodem.c:529
-+#, c-format
-+msgid ""
-+"Registered to %s\n"
-+"Quality: %d (%d%%)"
-+msgstr ""
-+"Rexistráu con %s\n"
-+"Calidá: %d (%d%%)"
-+
-+#. Error
-+#: ../panel-plugin/cellmodem.c:687
-+msgid "Error in modem reply to CREG"
-+msgstr "Error na rempuesta del módem a CREG"
-+
-+#: ../panel-plugin/cellmodem.c:696
-+msgid "Invalid reply to +CREG"
-+msgstr "Rempuesta non válida a +CREG"
-+
-+#: ../panel-plugin/cellmodem.c:721
-+msgid "Invalid CREG reply from modem"
-+msgstr "Rempuesta CREG non válida dende'l módem"
-+
-+#: ../panel-plugin/cellmodem.c:760
-+msgid "Error in modem reply to COPS"
-+msgstr "Error na rempuesta del módem a COPS"
-+
-+#: ../panel-plugin/cellmodem.c:816
-+msgid "Invalid COPS reply from modem"
-+msgstr "Rempuesta COPS non válida dende'l módem"
-+
-+#: ../panel-plugin/cellmodem.c:844
-+msgid "Error in modem reply to CPIN"
-+msgstr "Error na rempuesta del módem a CPIN"
-+
-+#: ../panel-plugin/cellmodem.c:870
-+msgid "Invalid CPIN reply from modem"
-+msgstr "Rempuesta CPIN non válida dende'l módem"
-+
-+#: ../panel-plugin/cellmodem.c:875
-+msgid "Unsupportted CPIN reply from modem"
-+msgstr "Rempuesta CPIN non soportada dende'l módem"
-+
-+#: ../panel-plugin/cellmodem.c:919 ../panel-plugin/cellmodem.c:973
-+msgid "Invalid OHCIP reply from modem"
-+msgstr "Rempuesta OHCIP non válida dende'l módem"
-+
-+#: ../panel-plugin/cellmodem.c:923 ../panel-plugin/cellmodem.c:977
-+msgid "Unsupportted OHCIP reply from modem"
-+msgstr "Rempuesta OHCIP non soportada dende'l módem"
-+
-+#. Error
-+#: ../panel-plugin/cellmodem.c:1019
-+msgid "Cannot send PIN to modem"
-+msgstr "Nun pue unviase PIN al módem"
-+
-+#: ../panel-plugin/cellmodem.c:1055
-+msgid "Error in modem reply to CSQ"
-+msgstr "Error na rempuesta del módem a CSQ"
-+
-+#: ../panel-plugin/cellmodem.c:1075
-+msgid "Invalid CSQ reply from modem"
-+msgstr "Rempuesta CSQ non válida dende'l módem"
-+
-+#: ../panel-plugin/cellmodem.c:1276 ../panel-plugin/cellmodem.c:1603
-+msgid "Cannot open modem"
-+msgstr "Nun pue abrise'l módem"
-+
-+#: ../panel-plugin/cellmodem.c:1429
-+msgid "Error reading from modem"
-+msgstr "Error al lleer del módem"
-+
-+#: ../panel-plugin/cellmodem.c:1507
-+msgid "Error writing to modem"
-+msgstr "Error al escribir en módem"
-+
-+#: ../panel-plugin/cellmodem.c:1523
-+msgid "Modem did not reply to command"
-+msgstr "El módem nun retrucó al comandu"
-+
-+#: ../panel-plugin/cellmodem.c:1541
-+msgid "No driver defined"
-+msgstr "Nun se definió dengún controlador"
-+
-+#: ../panel-plugin/cellmodem.c:1546
-+msgid "No modem instance"
-+msgstr "Nun hai denguna instancia de módem"
-+
-+#: ../panel-plugin/cellmodem.c:1720
-+msgid "Modem initializing"
-+msgstr "Aniciando módem"
-+
-+#: ../panel-plugin/cellmodem.c:1755
-+msgid "Invalid driver specified"
-+msgstr "Controlador especificáu non válidu"
-+
-+#. Error.
-+#: ../panel-plugin/pin_helper.c:31
-+msgid "Invalid PIN entered. PIN has 4 digits"
-+msgstr "PIN metíu non válidu. El PIN tien 4 díxitos"
-+
-+#: ../panel-plugin/pin_helper.c:65
-+msgid "Enter PIN"
-+msgstr "Meta PIN"
-+
-+#: ../panel-plugin/pin_helper.c:77
-+msgid "Please enter PIN:"
-+msgstr "Por favor, meta'l PIN:"
-+
-+#: ../panel-plugin/preferences.c:285
-+msgid "Close"
-+msgstr "Zarrar"
-+
-+#: ../panel-plugin/preferences.c:290
-+msgid "No known device found."
-+msgstr "Nun s'atopó dengún preséu conocíu."
-+
-+#: ../panel-plugin/preferences.c:292
-+msgid "The following devices were found:"
-+msgstr "Atopáronse los siguientes preseos:"
-+
-+#: ../panel-plugin/preferences.c:299
-+msgid "Use this device"
-+msgstr "Usar esti preséu"
-+
-+#: ../panel-plugin/preferences.c:343
-+msgid "Configure Cell Modem Monitor"
-+msgstr "Configurar monitor de módem celular"
-+
-+#. The header - this was most copied from other sources
-+#: ../panel-plugin/preferences.c:356
-+msgid "Cellular Modem Monitor"
-+msgstr "Monitor de módem celular"
-+
-+#: ../panel-plugin/preferences.c:387
-+msgid "Modem driver:"
-+msgstr "Controlador de módem:"
-+
-+#: ../panel-plugin/preferences.c:409
-+msgid "Modem speed:"
-+msgstr "Velocidá de módem:"
-+
-+#: ../panel-plugin/preferences.c:422
-+msgid "Modem device:"
-+msgstr "Preséu módem:"
-+
-+#: ../panel-plugin/preferences.c:434
-+msgid "Autodetect modem..."
-+msgstr "Autodeteutar módem..."
-+
-+#: ../panel-plugin/preferences.c:444
-+msgid "Maximum quality:"
-+msgstr "Calidá másima:"
-+
-+#: ../panel-plugin/preferences.c:455
-+msgid "Low quality percentage:"
-+msgstr "Porcentax de calidá baxa:"
-+
-+#: ../panel-plugin/preferences.c:465
-+msgid "Critical quality percentage:"
-+msgstr "Porcentax de calidá crítico"
-+
-+#: ../panel-plugin/preferences.c:479
-+msgid "Check for SMS every"
-+msgstr "Comprobar SMS ca"
-+
-+#: ../panel-plugin/preferences.c:481
-+msgid "minutes"
-+msgstr "minutos"
-diff -Nur xfce4-cellmodem-plugin-0.0.5.orig/po/ca.po xfce4-cellmodem-plugin-0.0.5/po/ca.po
---- xfce4-cellmodem-plugin-0.0.5.orig/po/ca.po	1970-01-01 01:00:00.000000000 +0100
-+++ xfce4-cellmodem-plugin-0.0.5/po/ca.po	2011-04-09 02:49:11.739375988 +0200
-@@ -0,0 +1,243 @@
-+# Catalan translations for xfce4-cellmodem-plugin package
-+# Copyright (C) 2009 THE xfce4-cellmodem-plugin'S COPYRIGHT HOLDER
-+# This file is distributed under the same license as the xfce4-cellmodem-plugin package.
-+#  Harald Servat <redcrash at gmail.com>, 2009.
-+#
-+msgid ""
-+msgstr ""
-+"Project-Id-Version: xfce4-cellmodem-plugin\n"
-+"Report-Msgid-Bugs-To: \n"
-+"POT-Creation-Date: 2008-07-22 19:01+0100\n"
-+"PO-Revision-Date: \n"
-+"Last-Translator: Harald Servat <redcrash at gmail.com>\n"
-+"Language-Team: Harald Servat <redcrash at gmail.com>\n"
-+"MIME-Version: 1.0\n"
-+"Content-Type: text/plain; charset=UTF-8\n"
-+"Content-Transfer-Encoding: 8bit\n"
-+"X-Poedit-Language: Catalan\n"
-+"X-Poedit-Country: Spain\n"
-+
-+#: ../panel-plugin/cellmodem.c:482
-+msgid "Initializing plugin now"
-+msgstr "Iniciant el connector"
-+
-+#: ../panel-plugin/cellmodem.c:505
-+#, c-format
-+msgid ""
-+"Error detected:\n"
-+"%s"
-+msgstr ""
-+"Error detectat:\n"
-+"%s"
-+
-+#: ../panel-plugin/cellmodem.c:511
-+msgid "Not registered"
-+msgstr "No registrat"
-+
-+#: ../panel-plugin/cellmodem.c:514
-+msgid "Modem needs PIN"
-+msgstr "El mòdem necessita un PIN"
-+
-+#: ../panel-plugin/cellmodem.c:517
-+msgid "Registering"
-+msgstr "Registrant"
-+
-+#: ../panel-plugin/cellmodem.c:520
-+#, c-format
-+msgid ""
-+"Registered [GPRS] to %s\n"
-+"Quality: %d (%d%%)"
-+msgstr ""
-+"Registrat [GPRS] a %s\n"
-+"Qualitat: %d (%d%%)"
-+
-+#: ../panel-plugin/cellmodem.c:523
-+#, c-format
-+msgid ""
-+"Registered [UMTS] to %s\n"
-+"Quality: %d (%d%%)"
-+msgstr ""
-+"Registrat [UMTS] a %s\n"
-+"Qualitat: %d (%d%%)"
-+
-+#: ../panel-plugin/cellmodem.c:526
-+#, c-format
-+msgid ""
-+"Registered [HSDPA] to %s\n"
-+"Quality: %d (%d%%)"
-+msgstr ""
-+"Registrat [HSDPA] a %s\n"
-+"Qualitat: %d (%d%%)"
-+
-+#: ../panel-plugin/cellmodem.c:529
-+#, c-format
-+msgid ""
-+"Registered to %s\n"
-+"Quality: %d (%d%%)"
-+msgstr ""
-+"Registrat a %s\n"
-+"Qualitat: %d (%d%%)"
-+
-+#. Error
-+#: ../panel-plugin/cellmodem.c:687
-+msgid "Error in modem reply to CREG"
-+msgstr "Error en la resposta del mòdem a CREG"
-+
-+#: ../panel-plugin/cellmodem.c:696
-+msgid "Invalid reply to +CREG"
-+msgstr "Resposta invàlida a +CREG"
-+
-+#: ../panel-plugin/cellmodem.c:721
-+msgid "Invalid CREG reply from modem"
-+msgstr "Resposta CREG invàlida del mòdem"
-+
-+#: ../panel-plugin/cellmodem.c:760
-+msgid "Error in modem reply to COPS"
-+msgstr "Error en la resposta del modem a COPS"
-+
-+#: ../panel-plugin/cellmodem.c:816
-+msgid "Invalid COPS reply from modem"
-+msgstr "Resposta COPS invàlida del mòdem"
-+
-+#: ../panel-plugin/cellmodem.c:844
-+msgid "Error in modem reply to CPIN"
-+msgstr "Error en la resposta del mòdem a CPIN"
-+
-+#: ../panel-plugin/cellmodem.c:870
-+msgid "Invalid CPIN reply from modem"
-+msgstr "Resposta CPIN invàlida del mòdem"
-+
-+#: ../panel-plugin/cellmodem.c:875
-+msgid "Unsupportted CPIN reply from modem"
-+msgstr "Resposta de mòdem CPIN no suportada"
-+
-+#: ../panel-plugin/cellmodem.c:919
-+#: ../panel-plugin/cellmodem.c:973
-+msgid "Invalid OHCIP reply from modem"
-+msgstr "Resposta OHCIP invàlida del mòdem"
-+
-+#: ../panel-plugin/cellmodem.c:923
-+#: ../panel-plugin/cellmodem.c:977
-+msgid "Unsupportted OHCIP reply from modem"
-+msgstr "Resposta de mòdem OHCIP no suportada"
-+
-+#. Error
-+#: ../panel-plugin/cellmodem.c:1019
-+msgid "Cannot send PIN to modem"
-+msgstr "No es pot enviar el PIN al mòdem"
-+
-+#: ../panel-plugin/cellmodem.c:1055
-+msgid "Error in modem reply to CSQ"
-+msgstr "Error en la resposta del mòdem a CSQ"
-+
-+#: ../panel-plugin/cellmodem.c:1075
-+msgid "Invalid CSQ reply from modem"
-+msgstr "Resposta CSQ invàlida del mòdem"
-+
-+#: ../panel-plugin/cellmodem.c:1276
-+#: ../panel-plugin/cellmodem.c:1603
-+msgid "Cannot open modem"
-+msgstr "No es pot obrir el mòdem"
-+
-+#: ../panel-plugin/cellmodem.c:1429
-+msgid "Error reading from modem"
-+msgstr "No es pot llegir del mòdem"
-+
-+#: ../panel-plugin/cellmodem.c:1507
-+msgid "Error writing to modem"
-+msgstr "No es pot escriure al mòdem"
-+
-+#: ../panel-plugin/cellmodem.c:1523
-+msgid "Modem did not reply to command"
-+msgstr "El mòdem no ha respost a la comanda"
-+
-+#: ../panel-plugin/cellmodem.c:1541
-+msgid "No driver defined"
-+msgstr "No s'ha definit un controlador"
-+
-+#: ../panel-plugin/cellmodem.c:1546
-+msgid "No modem instance"
-+msgstr "No hi ha instància de mòdem"
-+
-+#: ../panel-plugin/cellmodem.c:1720
-+msgid "Modem initializing"
-+msgstr "Iniciant mòdem"
-+
-+#: ../panel-plugin/cellmodem.c:1755
-+msgid "Invalid driver specified"
-+msgstr "El controlador especificat és invàlid"
-+
-+#. Error.
-+#: ../panel-plugin/pin_helper.c:31
-+msgid "Invalid PIN entered. PIN has 4 digits"
-+msgstr "El PIN introduït és invàlid. El PIN conté 4 digits"
-+
-+#: ../panel-plugin/pin_helper.c:65
-+msgid "Enter PIN"
-+msgstr "Introdueix el PIN"
-+
-+#: ../panel-plugin/pin_helper.c:77
-+msgid "Please enter PIN:"
-+msgstr "Introdueix el PIN:"
-+
-+#: ../panel-plugin/preferences.c:285
-+msgid "Close"
-+msgstr "Tancar"
-+
-+#: ../panel-plugin/preferences.c:290
-+msgid "No known device found."
-+msgstr "No s'ha trobat dispositiu."
-+
-+#: ../panel-plugin/preferences.c:292
-+msgid "The following devices were found:"
-+msgstr "S'han trobat els següents dispositius:"
-+
-+#: ../panel-plugin/preferences.c:299
-+msgid "Use this device"
-+msgstr "Utilitza aquest dispositiu:"
-+
-+#: ../panel-plugin/preferences.c:343
-+msgid "Configure Cell Modem Monitor"
-+msgstr "Configura el monitor de mòdem per mòbil"
-+
-+#. The header - this was most copied from other sources
-+#: ../panel-plugin/preferences.c:356
-+msgid "Cellular Modem Monitor"
-+msgstr "Monitor de mòdem per mòbil"
-+
-+#: ../panel-plugin/preferences.c:387
-+msgid "Modem driver:"
-+msgstr "Controlador del mòdem:"
-+
-+#: ../panel-plugin/preferences.c:409
-+msgid "Modem speed:"
-+msgstr "Velocitat del mòdem:"
-+
-+#: ../panel-plugin/preferences.c:422
-+msgid "Modem device:"
-+msgstr "Dispositiu mòdem:"
-+
-+#: ../panel-plugin/preferences.c:434
-+msgid "Autodetect modem..."
-+msgstr "Mòdem detectat automàticament"
-+
-+#: ../panel-plugin/preferences.c:444
-+msgid "Maximum quality:"
-+msgstr "Qualitat màxima:"
-+
-+#: ../panel-plugin/preferences.c:455
-+msgid "Low quality percentage:"
-+msgstr "Percentatge de qualitat baixa:"
-+
-+#: ../panel-plugin/preferences.c:465
-+msgid "Critical quality percentage:"
-+msgstr "Percentatge de qualitat crítica:"
-+
-+#: ../panel-plugin/preferences.c:479
-+msgid "Check for SMS every"
-+msgstr "Comprova SMS cada"
-+
-+#: ../panel-plugin/preferences.c:481
-+msgid "minutes"
-+msgstr "minuts"
-+
-diff -Nur xfce4-cellmodem-plugin-0.0.5.orig/po/ChangeLog xfce4-cellmodem-plugin-0.0.5/po/ChangeLog
---- xfce4-cellmodem-plugin-0.0.5.orig/po/ChangeLog	2007-01-16 20:57:39.000000000 +0100
-+++ xfce4-cellmodem-plugin-0.0.5/po/ChangeLog	2011-04-09 02:49:11.739375988 +0200
-@@ -1,4 +1,156 @@
--2007-01-11  Maximilian Schleiss <maxschleiss at bluewin.ch>
-+2009-08-08  Mike Massonnet <mmassonnet at xfce.org>
-+
-+	* ast.po: Asturian translation added (Marcos Alvarez Costales)
-+	* gl.po: Galician translation update (Leandro Regueiro)
-+
-+2009-07-23  Gabor Kelemen  <kelemeng at gnome.hu>
-+
-+	* hu.po: Translation reworked.
-+
-+2009-06-18  Mike Massonnet <mmassonnet at xfce.org>
-+
-+	* zh_CN.po: Simplified Chinese update (Hunt Xu)
-+
-+2009-05-29  Mike Massonnet <mmassonnet at xfce.org>
-+
-+	* ur_PK.po: Urdu Pakistan translation update (Muhammad Ali Makki)
-+	* ur.po: Urdu translation update (Muhammad Ali Makki)
-+
-+2009-04-20  Mike Massonnet <mmassonnet at xfce.org>
-+
-+	* gl.po: Galician translation update (Leandro Regueiro)
-+
-+2009-04-16  Mike Massonnet <mmassonnet at xfce.org>
-+
-+	* gl.po: Galician translation update (Leandro Regueiro)
-+
-+2009-04-13  Mike Massonnet <mmassonnet at xfce.org>
-+
-+	* ca.po: Add Catalan translation (Harald Servat)
-+
-+2009-03-14  Maximilian Schleiss <maximilian at xfce.org>
-+
-+	* gl.po: Galician translation update (Leandro Regueiro)
-+
-+2009-03-11  Maximilian Schleiss <maximilian at xfce.org>
-+
-+	* fr.po; LINGUAS: French translation added
-+
-+2009-03-06  Maximilian Schleiss <maximilian at xfce.org>
-+
-+	* it.po: Italian translation update (Walter Comunello)
-+
-+2009-03-01  Maximilian Schleiss <maximilian at xfce.org>
-+
-+	* es.po: Spanish translation update (Abel Martín)
-+
-+2009-02-22  Mike Massonnet <mmassonnet at xfce.org>
-+
-+	* es.po: Add Spanish translation (Abel Martín)
-+
-+2009-02-09  Alexander Toresson <eulex at xfce.org>
-+
-+	* sv.po: Swedish translation update (Daniel Nylander)
-+
-+2009-02-07  Alexander Toresson <eulex at xfce.org>
-+
-+	* sv.po: Swedish translation update (Daniel Nylander)
-+
-+2009-01-18  Maximilian Schleiss <maximilian at xfce.org>
-+
-+	* it.po; LINGUAS: Italian translation added (Walter Comunello)
-+
-+2009-01-13  Alexander Toresson <eulex at xfce.org>
-+
-+	* sv.po, LINGUAS: Swedish translation added (Daniel Nylander)
-+
-+2008-12-13  Maximilian Schleiss <maximilian at xfce.org>
-+
-+	* zh_CN.po: Simplified Chinese translation added (Hunt Xu)
-+
-+2008-12-07  Piarres Beobide <pi at beobide.net>
-+
-+        * eu.po: Basque translation update
-+
-+2008-11-17  Eren Türkay <erenturkay at xfce.org>
-+
-+        * tr.po: Turkish translation update (Turkish translation team)
-+
-+2008-11-12  Piarres Beobide <pi at beobide.net>
-+
-+        * eu.po: Basque translation update
-+
-+2008-11-02  Michal Várady <miko.vaji at gmail.com>
-+
-+	* cs.po: Czech translation updated
-+
-+2008-10-16  Piarres Beobide <pi at beobide.net>
-+
-+	* eu.po: Basque translation update
-+
-+2008-08-10  Maximilian Schleiss <maximilian at xfce.org>
-+
-+	* id.po, LINGUAS: Indonesian translation added (Andhika Padmawan)
-+
-+2008-07-16  Og Maciel <ogmaciel at gnome.org>
-+
-+    * pt_BR.po: Updated Brazilian Portuguese translation
-+
-+2008-07-16 Mohamed Magdy <alnokta at xfce.org>
-+
-+        * ar.po: Add Arabic translation
-+
-+2008-06-26  Maximilian Schleiss <maximilian at xfce.org>
-+
-+	* gl.po, LINGUAS: Galician translation added (Leandro Regueiro)
-+
-+2008-05-27  Mike Massonnet <mmassonnet at xfce.org>
-+
-+	* da.po, LINGUAS: Add Danish translation (Jens Hyllegaard)
-+
-+2008-05-14  Og Maciel <ogmaciel at gnome.org>
-+
-+    * pt_BR.po: Added Brazilian Portuguese translation
-+    * LINGUAS: Added for the first time
-+
-+2007-12-07  Maximilian Schleiss <maximilian at xfce.org>
-+
-+	* de.po: German translation update
-+	by Fabian Nowak <timystery at arcor.de>
-+
-+2007-11-18  Maximilian Schleiss <maximilian at xfce.org>
-+
-+	* lv.po: Latvian translation added
-+	by Rihards Priedītis <rprieditis at inbox.lv>
-+
-+2007-10-20  SZERVÁC Attila <sas at 321>
-+
-+	* hu.po: Add Hungarian translations
-+
-+2007-09-12  Mike Massonnet <mmassonnet at xfce.org>
-+
-+	* eu.po: Add Basque translations
-+	by <piarres at gmail.com>
-+
-+2007-04-03  Alvaro Lopes <alvieboy at alvie.com>
-+
-+	* de.po: Added german translation by
-+        Tobias Kral 
-+
-+2007-04-01  Maximilian Schleiss <maximilian at xfce.org>
-+
-+	* pl.po: Added the Polish translation
-+	by Piotr Maliński <riklaunim at gmail.com>
-+
-+2007-03-31  Pau Rul-lan Ferragut <paurullan at bulma.net>
-+
-+  	* gb.po: British translation by Jeff Bailes <thepizzaking at gmail.com>
-+
-+2007-03-13  Maxim Dziumanenko <dziumanenko at gmail.com>
-+
-+	* uk.po: Added Ukrainian translation by Dmitry Nikitin
-+
-+2007-01-11  Maximilian Schleiss <maximilian at xfce.org>
- 
- 	* cs.po: Added the Czech translation by
- 	Michal Várady <miko.vaji at gmail.com>
-diff -Nur xfce4-cellmodem-plugin-0.0.5.orig/po/cs.po xfce4-cellmodem-plugin-0.0.5/po/cs.po
---- xfce4-cellmodem-plugin-0.0.5.orig/po/cs.po	2007-01-16 20:57:11.000000000 +0100
-+++ xfce4-cellmodem-plugin-0.0.5/po/cs.po	2011-04-09 02:49:11.739375988 +0200
-@@ -1,14 +1,14 @@
- # Czech translations for xfce4-cellmodem-plugin package.
- # Copyright (C) 2006 THE xfce4-cellmodem-plugin'S COPYRIGHT HOLDER
- # This file is distributed under the same license as the xfce4-cellmodem-plugin package.
--#  <miko.vaji at gmail.com>, 2006.
-+# Michal Várady <miko.vaji at gmail.com>, 2006-2008.
- #
- msgid ""
- msgstr ""
- "Project-Id-Version: xfce4-cellmodem-plugin 0.0.4\n"
- "Report-Msgid-Bugs-To: \n"
--"POT-Creation-Date: 2006-12-15 20:32+0100\n"
--"PO-Revision-Date: 2006-12-15 21:11+0100\n"
-+"POT-Creation-Date: 2008-07-22 19:01+0100\n"
-+"PO-Revision-Date: 2008-11-02 17:37+0100\n"
- "Last-Translator: Michal Várady <miko.vaji at gmail.com>\n"
- "Language-Team: Czech <translation-team-cs at lists.sourceforge.net>\n"
- "MIME-Version: 1.0\n"
-@@ -16,11 +16,11 @@
- "Content-Transfer-Encoding: 8bit\n"
- "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
- 
--#: ../panel-plugin/cellmodem.c:462
-+#: ../panel-plugin/cellmodem.c:482
- msgid "Initializing plugin now"
- msgstr "Inicializuji zásuvný modul"
- 
--#: ../panel-plugin/cellmodem.c:485
-+#: ../panel-plugin/cellmodem.c:505
- #, c-format
- msgid ""
- "Error detected:\n"
-@@ -29,19 +29,19 @@
- "Nalezeny chyby:\n"
- "%s"
- 
--#: ../panel-plugin/cellmodem.c:491
-+#: ../panel-plugin/cellmodem.c:511
- msgid "Not registered"
- msgstr "Neregistrováno"
- 
--#: ../panel-plugin/cellmodem.c:494
-+#: ../panel-plugin/cellmodem.c:514
- msgid "Modem needs PIN"
- msgstr "Modem vyžaduje PIN"
- 
--#: ../panel-plugin/cellmodem.c:497
-+#: ../panel-plugin/cellmodem.c:517
- msgid "Registering"
- msgstr "Registruji"
- 
--#: ../panel-plugin/cellmodem.c:500
-+#: ../panel-plugin/cellmodem.c:520
- #, c-format
- msgid ""
- "Registered [GPRS] to %s\n"
-@@ -50,7 +50,7 @@
- "Registrováno [GPRS] na %s\n"
- "Kvalita: %d (%d%%)"
- 
--#: ../panel-plugin/cellmodem.c:503
-+#: ../panel-plugin/cellmodem.c:523
- #, c-format
- msgid ""
- "Registered [UMTS] to %s\n"
-@@ -59,7 +59,7 @@
- "Registrováno [UMTS] na %s\n"
- "Kvalita: %d (%d%%)"
- 
--#: ../panel-plugin/cellmodem.c:506
-+#: ../panel-plugin/cellmodem.c:526
- #, c-format
- msgid ""
- "Registered [HSDPA] to %s\n"
-@@ -68,7 +68,7 @@
- "Registrováno [HSDPA] na %s\n"
- "Kvalita: %d (%d%%)"
- 
--#: ../panel-plugin/cellmodem.c:509
-+#: ../panel-plugin/cellmodem.c:529
- #, c-format
- msgid ""
- "Registered to %s\n"
-@@ -78,89 +78,91 @@
- "Kvalita: %d (%d%%)"
- 
- #. Error
--#: ../panel-plugin/cellmodem.c:667
-+#: ../panel-plugin/cellmodem.c:687
- msgid "Error in modem reply to CREG"
- msgstr "Chyba v odpovědi modemu na CREG"
- 
--#: ../panel-plugin/cellmodem.c:676
-+#: ../panel-plugin/cellmodem.c:696
- msgid "Invalid reply to +CREG"
- msgstr "Naplatná odpověď na +CREG"
- 
--#: ../panel-plugin/cellmodem.c:701
-+#: ../panel-plugin/cellmodem.c:721
- msgid "Invalid CREG reply from modem"
--msgstr "Neplatná odpově%d CREG modemu"
-+msgstr "Neplatná odpověď CREG modemu"
- 
--#: ../panel-plugin/cellmodem.c:739
-+#: ../panel-plugin/cellmodem.c:760
- msgid "Error in modem reply to COPS"
- msgstr "Chyba v odpovědi modemu na COPS"
- 
--#: ../panel-plugin/cellmodem.c:783
-+#: ../panel-plugin/cellmodem.c:816
- msgid "Invalid COPS reply from modem"
- msgstr "Neplatná odpověď COPS modemu"
- 
--#: ../panel-plugin/cellmodem.c:811
-+#: ../panel-plugin/cellmodem.c:844
- msgid "Error in modem reply to CPIN"
- msgstr "Chyba v odpovědi modemu na CPIN"
- 
--#: ../panel-plugin/cellmodem.c:837
-+#: ../panel-plugin/cellmodem.c:870
- msgid "Invalid CPIN reply from modem"
- msgstr "Neplatná odpověď CPIN modemu"
- 
--#: ../panel-plugin/cellmodem.c:842
-+#: ../panel-plugin/cellmodem.c:875
- msgid "Unsupportted CPIN reply from modem"
- msgstr "Nepodporovaná odpověď CPIN modemu"
- 
--#: ../panel-plugin/cellmodem.c:886
-+#: ../panel-plugin/cellmodem.c:919
-+#: ../panel-plugin/cellmodem.c:973
- msgid "Invalid OHCIP reply from modem"
- msgstr "Neplatná odpověď OHCIP modemu"
- 
--#: ../panel-plugin/cellmodem.c:891
-+#: ../panel-plugin/cellmodem.c:923
-+#: ../panel-plugin/cellmodem.c:977
- msgid "Unsupportted OHCIP reply from modem"
- msgstr "Nepodporovaná odpověď OHCIP modemu"
- 
- #. Error
--#: ../panel-plugin/cellmodem.c:904
-+#: ../panel-plugin/cellmodem.c:1019
- msgid "Cannot send PIN to modem"
- msgstr "Nelze poslat PIN modemu"
- 
--#: ../panel-plugin/cellmodem.c:940
-+#: ../panel-plugin/cellmodem.c:1055
- msgid "Error in modem reply to CSQ"
- msgstr "Chyba v odpovědi modemu na CSQ"
- 
--#: ../panel-plugin/cellmodem.c:960
-+#: ../panel-plugin/cellmodem.c:1075
- msgid "Invalid CSQ reply from modem"
- msgstr "Neplatná odpověď CSQ modemu"
- 
--#: ../panel-plugin/cellmodem.c:1084
--#: ../panel-plugin/cellmodem.c:1398
-+#: ../panel-plugin/cellmodem.c:1276
-+#: ../panel-plugin/cellmodem.c:1603
- msgid "Cannot open modem"
- msgstr "Nelze otevřít modem"
- 
--#: ../panel-plugin/cellmodem.c:1228
-+#: ../panel-plugin/cellmodem.c:1429
- msgid "Error reading from modem"
- msgstr "Chyba při čtení z modemu"
- 
--#: ../panel-plugin/cellmodem.c:1305
-+#: ../panel-plugin/cellmodem.c:1507
- msgid "Error writing to modem"
- msgstr "Chyba při zápisu na modem"
- 
--#: ../panel-plugin/cellmodem.c:1321
-+#: ../panel-plugin/cellmodem.c:1523
- msgid "Modem did not reply to command"
- msgstr "Modem neodpověděl na příkaz"
- 
--#: ../panel-plugin/cellmodem.c:1339
-+#: ../panel-plugin/cellmodem.c:1541
- msgid "No driver defined"
- msgstr "Nebyl definován žádný ovladač"
- 
--#: ../panel-plugin/cellmodem.c:1344
-+#: ../panel-plugin/cellmodem.c:1546
- msgid "No modem instance"
- msgstr "Žádná instance modemu"
- 
--#: ../panel-plugin/cellmodem.c:1509
-+#: ../panel-plugin/cellmodem.c:1720
- msgid "Modem initializing"
- msgstr "Modem se inicializuje"
- 
--#: ../panel-plugin/cellmodem.c:1544
-+#: ../panel-plugin/cellmodem.c:1755
- msgid "Invalid driver specified"
- msgstr "Specifikován neplatný ovladač"
- 
-@@ -177,48 +179,64 @@
- msgid "Please enter PIN:"
- msgstr "Prosím zadejte PIN:"
- 
--#: ../panel-plugin/preferences.c:214
-+#: ../panel-plugin/preferences.c:285
- msgid "Close"
- msgstr "Zavřít"
- 
--#: ../panel-plugin/preferences.c:219
-+#: ../panel-plugin/preferences.c:290
- msgid "No known device found."
- msgstr "Nenalezeno žádné známé zařízení."
- 
--#: ../panel-plugin/preferences.c:221
-+#: ../panel-plugin/preferences.c:292
- msgid "The following devices were found:"
- msgstr "Byla nalezena následující zařízení:"
- 
--#: ../panel-plugin/preferences.c:228
-+#: ../panel-plugin/preferences.c:299
- msgid "Use this device"
- msgstr "Použít toto zařízení"
- 
--#: ../panel-plugin/preferences.c:272
-+#: ../panel-plugin/preferences.c:343
- msgid "Configure Cell Modem Monitor"
- msgstr "Nastavit modem pro mobilní telefon"
- 
- #. The header - this was most copied from other sources
--#: ../panel-plugin/preferences.c:285
-+#: ../panel-plugin/preferences.c:356
- msgid "Cellular Modem Monitor"
- msgstr "Monitorování modemu pro mobilní telefon"
- 
--#: ../panel-plugin/preferences.c:316
-+#: ../panel-plugin/preferences.c:387
- msgid "Modem driver:"
- msgstr "Ovladač modemu:"
- 
--#: ../panel-plugin/preferences.c:338
-+#: ../panel-plugin/preferences.c:409
-+msgid "Modem speed:"
-+msgstr "Rychlost modemu:"
-+
-+#: ../panel-plugin/preferences.c:422
- msgid "Modem device:"
- msgstr "Zařízení modemu:"
- 
--#: ../panel-plugin/preferences.c:360
-+#: ../panel-plugin/preferences.c:434
-+msgid "Autodetect modem..."
-+msgstr "Autodetekce modemu..."
-+
-+#: ../panel-plugin/preferences.c:444
- msgid "Maximum quality:"
- msgstr "Maximální kvalita:"
- 
--#: ../panel-plugin/preferences.c:371
-+#: ../panel-plugin/preferences.c:455
- msgid "Low quality percentage:"
- msgstr "Nastavení nízké kvality (v procentech):"
- 
--#: ../panel-plugin/preferences.c:381
-+#: ../panel-plugin/preferences.c:465
- msgid "Critical quality percentage:"
- msgstr "Nastavení kritické kvality (v procentech):"
- 
-+#: ../panel-plugin/preferences.c:479
-+msgid "Check for SMS every"
-+msgstr "Kontrolovat SMS každých"
-+
-+#: ../panel-plugin/preferences.c:481
-+msgid "minutes"
-+msgstr "minut"
-+
-diff -Nur xfce4-cellmodem-plugin-0.0.5.orig/po/da.po xfce4-cellmodem-plugin-0.0.5/po/da.po
---- xfce4-cellmodem-plugin-0.0.5.orig/po/da.po	1970-01-01 01:00:00.000000000 +0100
-+++ xfce4-cellmodem-plugin-0.0.5/po/da.po	2011-04-09 02:49:11.739375988 +0200
-@@ -0,0 +1,244 @@
-+# translation of xfce4-radio-plugin to Danish
-+# Copyright (C) 2007 THE xfce4-radio-plugin'S COPYRIGHT HOLDER
-+# This file is distributed under the same license as the xfce4-radio-plugin package.
-+# Jens Hyllegaard <jens.hyllegaard at gmail.com>, 2007.
-+# Per Kongstad <p_kongstad at op.pl>, 2008.
-+msgid ""
-+msgstr ""
-+"Project-Id-Version: xfce4-cellmodem-plugin 0.0.5\n"
-+"Report-Msgid-Bugs-To: \n"
-+"POT-Creation-Date: 2008-07-22 19:01+0100\n"
-+"PO-Revision-Date: 2008-09-19 15:36+0100\n"
-+"Last-Translator: Per Kongstad <p_kongstad at op.pl>\n"
-+"Language-Team: Danish <dansk at dansk-gruppen.dk>\n"
-+"MIME-Version: 1.0\n"
-+"Content-Type: text/plain; charset=UTF-8\n"
-+"Content-Transfer-Encoding: 8bit\n"
-+"X-Poedit-Language: Danish\n"
-+"X-Poedit-Country: DENMARK\n"
-+"X-Poedit-SourceCharset: utf-8\n"
-+
-+#: ../panel-plugin/cellmodem.c:482
-+msgid "Initializing plugin now"
-+msgstr "Initialiserer udvidelsesmodul nu"
-+
-+#: ../panel-plugin/cellmodem.c:505
-+#, c-format
-+msgid ""
-+"Error detected:\n"
-+"%s"
-+msgstr ""
-+"Fejl fundet:\n"
-+"%s"
-+
-+#: ../panel-plugin/cellmodem.c:511
-+msgid "Not registered"
-+msgstr "Ikke registreret"
-+
-+#: ../panel-plugin/cellmodem.c:514
-+msgid "Modem needs PIN"
-+msgstr "Modem kræver PIN"
-+
-+#: ../panel-plugin/cellmodem.c:517
-+msgid "Registering"
-+msgstr "Registrerer"
-+
-+#: ../panel-plugin/cellmodem.c:520
-+#, c-format
-+msgid ""
-+"Registered [GPRS] to %s\n"
-+"Quality: %d (%d%%)"
-+msgstr ""
-+"Registreret [GPRS] til %s\n"
-+"Kvalitet: %d (%d%%)"
-+
-+#: ../panel-plugin/cellmodem.c:523
-+#, c-format
-+msgid ""
-+"Registered [UMTS] to %s\n"
-+"Quality: %d (%d%%)"
-+msgstr ""
-+"Registreret [UMTS] til %s\n"
-+"Kvalitet: %d (%d%%)"
-+
-+#: ../panel-plugin/cellmodem.c:526
-+#, c-format
-+msgid ""
-+"Registered [HSDPA] to %s\n"
-+"Quality: %d (%d%%)"
-+msgstr ""
-+"Registreret [HSDPA] til %s\n"
-+"Kvalitet: %d (%d%%)"
-+
-+#: ../panel-plugin/cellmodem.c:529
-+#, c-format
-+msgid ""
-+"Registered to %s\n"
-+"Quality: %d (%d%%)"
-+msgstr ""
-+"Registreret til %s\n"
-+"Kvalitet: %d (%d%%)"
-+
-+#. Error
-+#: ../panel-plugin/cellmodem.c:687
-+msgid "Error in modem reply to CREG"
-+msgstr "Fejl i modemsvar til CREG"
-+
-+#: ../panel-plugin/cellmodem.c:696
-+msgid "Invalid reply to +CREG"
-+msgstr "Ugyldigt svar på +CREG"
-+
-+#: ../panel-plugin/cellmodem.c:721
-+msgid "Invalid CREG reply from modem"
-+msgstr "Ugyldigt CREG-svar fra modem"
-+
-+#: ../panel-plugin/cellmodem.c:760
-+msgid "Error in modem reply to COPS"
-+msgstr "Fejl i modemsvar til COPS"
-+
-+#: ../panel-plugin/cellmodem.c:816
-+msgid "Invalid COPS reply from modem"
-+msgstr "Ugyldigt COPS-svar fra modem"
-+
-+#: ../panel-plugin/cellmodem.c:844
-+msgid "Error in modem reply to CPIN"
-+msgstr "Fejl i modemsvar til CPIN"
-+
-+#: ../panel-plugin/cellmodem.c:870
-+msgid "Invalid CPIN reply from modem"
-+msgstr "Ugyldigt CPIN-svar fra modem"
-+
-+#: ../panel-plugin/cellmodem.c:875
-+msgid "Unsupportted CPIN reply from modem"
-+msgstr "Ej understøttet CPIN-svar fra modem"
-+
-+#: ../panel-plugin/cellmodem.c:919
-+#: ../panel-plugin/cellmodem.c:973
-+msgid "Invalid OHCIP reply from modem"
-+msgstr "Ugyldigt OHCIP-svar fra modem"
-+
-+#: ../panel-plugin/cellmodem.c:923
-+#: ../panel-plugin/cellmodem.c:977
-+msgid "Unsupportted OHCIP reply from modem"
-+msgstr "Ej understøttet OHCIP-svar fra modem"
-+
-+#. Error
-+#: ../panel-plugin/cellmodem.c:1019
-+msgid "Cannot send PIN to modem"
-+msgstr "Kan ikke sende PIN til modemet"
-+
-+#: ../panel-plugin/cellmodem.c:1055
-+msgid "Error in modem reply to CSQ"
-+msgstr "Fejl i modemsvar til CSQ"
-+
-+#: ../panel-plugin/cellmodem.c:1075
-+msgid "Invalid CSQ reply from modem"
-+msgstr "Ugyldigt CSQ-svar fra modem"
-+
-+#: ../panel-plugin/cellmodem.c:1276
-+#: ../panel-plugin/cellmodem.c:1603
-+msgid "Cannot open modem"
-+msgstr "Kan ikke åbne modemmet"
-+
-+#: ../panel-plugin/cellmodem.c:1429
-+msgid "Error reading from modem"
-+msgstr "Fejl ved læsning fra modemmet"
-+
-+#: ../panel-plugin/cellmodem.c:1507
-+msgid "Error writing to modem"
-+msgstr "Fejl ved skrivning til modemmet"
-+
-+#: ../panel-plugin/cellmodem.c:1523
-+msgid "Modem did not reply to command"
-+msgstr "Modemmet svarede ikke på kommandoen"
-+
-+#: ../panel-plugin/cellmodem.c:1541
-+msgid "No driver defined"
-+msgstr "Intet drivprogram defineret"
-+
-+#: ../panel-plugin/cellmodem.c:1546
-+msgid "No modem instance"
-+msgstr "Ingen modem-instans"
-+
-+#: ../panel-plugin/cellmodem.c:1720
-+msgid "Modem initializing"
-+msgstr "Modem initialiseres"
-+
-+#: ../panel-plugin/cellmodem.c:1755
-+msgid "Invalid driver specified"
-+msgstr "Ugyldigt valg af drivprogram"
-+
-+#. Error.
-+#: ../panel-plugin/pin_helper.c:31
-+msgid "Invalid PIN entered. PIN has 4 digits"
-+msgstr "Ugyldig PIN indtastet. En PIN har 4 tal"
-+
-+#: ../panel-plugin/pin_helper.c:65
-+msgid "Enter PIN"
-+msgstr "Indtast PIN"
-+
-+#: ../panel-plugin/pin_helper.c:77
-+msgid "Please enter PIN:"
-+msgstr "Indtast venligst PIN:"
-+
-+#: ../panel-plugin/preferences.c:285
-+msgid "Close"
-+msgstr "Luk"
-+
-+#: ../panel-plugin/preferences.c:290
-+msgid "No known device found."
-+msgstr "Ingen kendt enhed fundet."
-+
-+#: ../panel-plugin/preferences.c:292
-+msgid "The following devices were found:"
-+msgstr "Følgende enheder blev fundet:"
-+
-+#: ../panel-plugin/preferences.c:299
-+msgid "Use this device"
-+msgstr "Brug denne enhed"
-+
-+#: ../panel-plugin/preferences.c:343
-+msgid "Configure Cell Modem Monitor"
-+msgstr "Konfigurér mobilmodem-overvågning"
-+
-+#. The header - this was most copied from other sources
-+#: ../panel-plugin/preferences.c:356
-+msgid "Cellular Modem Monitor"
-+msgstr "Mobilmodem-overvågning"
-+
-+#: ../panel-plugin/preferences.c:387
-+msgid "Modem driver:"
-+msgstr "Modem-drivprogram:"
-+
-+#: ../panel-plugin/preferences.c:409
-+msgid "Modem speed:"
-+msgstr "Modemhastighed:"
-+
-+#: ../panel-plugin/preferences.c:422
-+msgid "Modem device:"
-+msgstr "Modem-enhed:"
-+
-+#: ../panel-plugin/preferences.c:434
-+msgid "Autodetect modem..."
-+msgstr "Find modem automatisk..."
-+
-+#: ../panel-plugin/preferences.c:444
-+msgid "Maximum quality:"
-+msgstr "Maksimum kvalitet:"
-+
-+#: ../panel-plugin/preferences.c:455
-+msgid "Low quality percentage:"
-+msgstr "Lav kvalitets procentdel:"
-+
-+#: ../panel-plugin/preferences.c:465
-+msgid "Critical quality percentage:"
-+msgstr "Kritisk kvalitets procentdel:"
-+
-+#: ../panel-plugin/preferences.c:479
-+msgid "Check for SMS every"
-+msgstr "Tjek for SMS hver"
-+
-+#: ../panel-plugin/preferences.c:481
-+msgid "minutes"
-+msgstr "minutter"
-+
-diff -Nur xfce4-cellmodem-plugin-0.0.5.orig/po/de.po xfce4-cellmodem-plugin-0.0.5/po/de.po
---- xfce4-cellmodem-plugin-0.0.5.orig/po/de.po	1970-01-01 01:00:00.000000000 +0100
-+++ xfce4-cellmodem-plugin-0.0.5/po/de.po	2011-04-09 02:49:11.740376232 +0200
-@@ -0,0 +1,241 @@
-+# Translation of xfce4-cellmodem-plugin to German
-+# Copyright (C) 2007 Tobias Kral
-+# This file is distributed under the same license as the xfce4-cellmodem-plugin package.
-+# 
-+# Tobias Kral <tobias at kral.ws>, 2007.
-+# Fabian Nowak <timystery at arcor.de>, 2007.
-+# Simon Schneider <simon at schneiderimtal.de>, 2009
-+# 
-+msgid ""
-+msgstr ""
-+"Project-Id-Version: xfce4-cellmodem-plugin\n"
-+"Report-Msgid-Bugs-To: \n"
-+"POT-Creation-Date: 2008-07-22 19:01+0100\n"
-+"PO-Revision-Date: 2009-02-24 21:59+0000\n"
-+"Last-Translator: Simon Schneider <simon at schneiderimtal.de>\n"
-+"Language-Team: German <xfce-i18n at xfce.org>\n"
-+"MIME-Version: 1.0\n"
-+"Content-Type: text/plain; charset=UTF-8\n"
-+"Content-Transfer-Encoding: 8bit\n"
-+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-+
-+#: ../panel-plugin/cellmodem.c:482
-+msgid "Initializing plugin now"
-+msgstr "Іnitialisiere das Plugin"
-+
-+#: ../panel-plugin/cellmodem.c:505
-+#, c-format
-+msgid ""
-+"Error detected:\n"
-+"%s"
-+msgstr ""
-+"Fehler erkannt:\n"
-+"%s"
-+
-+#: ../panel-plugin/cellmodem.c:511
-+msgid "Not registered"
-+msgstr "Nicht angemeldet"
-+
-+#: ../panel-plugin/cellmodem.c:514
-+msgid "Modem needs PIN"
-+msgstr "Modem benötigt PIN"
-+
-+#: ../panel-plugin/cellmodem.c:517
-+msgid "Registering"
-+msgstr "Anmeldung"
-+
-+#: ../panel-plugin/cellmodem.c:520
-+#, c-format
-+msgid ""
-+"Registered [GPRS] to %s\n"
-+"Quality: %d (%d%%)"
-+msgstr ""
-+"Angemeldet [GPRS] bei %s\n"
-+"Signalstärke: %d (%d%%)"
-+
-+#: ../panel-plugin/cellmodem.c:523
-+#, c-format
-+msgid ""
-+"Registered [UMTS] to %s\n"
-+"Quality: %d (%d%%)"
-+msgstr ""
-+"Angemeldet [UMTS] bei %s\n"
-+"Signalstärke: %d (%d%%)"
-+
-+#: ../panel-plugin/cellmodem.c:526
-+#, c-format
-+msgid ""
-+"Registered [HSDPA] to %s\n"
-+"Quality: %d (%d%%)"
-+msgstr ""
-+"Angemeldet [HSDPA] bei %s\n"
-+"Signalstärke: %d (%d%%)"
-+
-+#: ../panel-plugin/cellmodem.c:529
-+#, c-format
-+msgid ""
-+"Registered to %s\n"
-+"Quality: %d (%d%%)"
-+msgstr ""
-+"Angemeldet bei %s\n"
-+"Signalstärke: %d (%d%%)"
-+
-+#. Error
-+#: ../panel-plugin/cellmodem.c:687
-+msgid "Error in modem reply to CREG"
-+msgstr "Fehler in Antwort des Modems auf CREG"
-+
-+#: ../panel-plugin/cellmodem.c:696
-+msgid "Invalid reply to +CREG"
-+msgstr "Ungültige Antwort auf +CREG"
-+
-+#: ../panel-plugin/cellmodem.c:721
-+msgid "Invalid CREG reply from modem"
-+msgstr "Ungültige Antwort des Modems auf CREG"
-+
-+#: ../panel-plugin/cellmodem.c:760
-+msgid "Error in modem reply to COPS"
-+msgstr "Fehler in Antwort des Modems auf COPS"
-+
-+#: ../panel-plugin/cellmodem.c:816
-+msgid "Invalid COPS reply from modem"
-+msgstr "Ungültige Antwort des Modems auf COPS"
-+
-+#: ../panel-plugin/cellmodem.c:844
-+msgid "Error in modem reply to CPIN"
-+msgstr "Fehler in Antwort des Modems auf CPIN"
-+
-+#: ../panel-plugin/cellmodem.c:870
-+msgid "Invalid CPIN reply from modem"
-+msgstr "Ungültige Antwort des Modems auf CPIN"
-+
-+#: ../panel-plugin/cellmodem.c:875
-+msgid "Unsupportted CPIN reply from modem"
-+msgstr "Nicht unterstützte Antwort des Modems auf CPIN"
-+
-+#: ../panel-plugin/cellmodem.c:919 ../panel-plugin/cellmodem.c:973
-+msgid "Invalid OHCIP reply from modem"
-+msgstr "Ungültige Antwort des Modems auf OHCIP"
-+
-+#: ../panel-plugin/cellmodem.c:923 ../panel-plugin/cellmodem.c:977
-+msgid "Unsupportted OHCIP reply from modem"
-+msgstr "Nicht unterstützte Antwort des Modems auf OHCIP"
-+
-+#. Error
-+#: ../panel-plugin/cellmodem.c:1019
-+msgid "Cannot send PIN to modem"
-+msgstr "Senden der PIN an Modem nicht möglich"
-+
-+#: ../panel-plugin/cellmodem.c:1055
-+msgid "Error in modem reply to CSQ"
-+msgstr "Fehler in Antwort des Modems auf CSQ"
-+
-+#: ../panel-plugin/cellmodem.c:1075
-+msgid "Invalid CSQ reply from modem"
-+msgstr "Ungültige Antwort des Modems auf CSQ"
-+
-+#: ../panel-plugin/cellmodem.c:1276 ../panel-plugin/cellmodem.c:1603
-+msgid "Cannot open modem"
-+msgstr "Öffnen des Modems nicht möglich"
-+
-+#: ../panel-plugin/cellmodem.c:1429
-+msgid "Error reading from modem"
-+msgstr "Fehler beim Lesen vom Modem"
-+
-+#: ../panel-plugin/cellmodem.c:1507
-+msgid "Error writing to modem"
-+msgstr "Fehler beim Schreiben auf Modem"
-+
-+#: ../panel-plugin/cellmodem.c:1523
-+msgid "Modem did not reply to command"
-+msgstr "Modem antwortet nicht auf Befehl"
-+
-+#: ../panel-plugin/cellmodem.c:1541
-+msgid "No driver defined"
-+msgstr "Kein Treiber ausgewählt"
-+
-+#: ../panel-plugin/cellmodem.c:1546
-+msgid "No modem instance"
-+msgstr "Keine Modem-Instanz vorhanden"
-+
-+#: ../panel-plugin/cellmodem.c:1720
-+msgid "Modem initializing"
-+msgstr "Initialisiere Modem"
-+
-+#: ../panel-plugin/cellmodem.c:1755
-+msgid "Invalid driver specified"
-+msgstr "Ungültiger Treiber ausgewählt"
-+
-+#. Error.
-+#: ../panel-plugin/pin_helper.c:31
-+msgid "Invalid PIN entered. PIN has 4 digits"
-+msgstr "Ungültige PIN eingegeben. Eine PIN hat 4 Stellen."
-+
-+#: ../panel-plugin/pin_helper.c:65
-+msgid "Enter PIN"
-+msgstr "PIN eingeben"
-+
-+#: ../panel-plugin/pin_helper.c:77
-+msgid "Please enter PIN:"
-+msgstr "Bitte PIN eingeben:"
-+
-+#: ../panel-plugin/preferences.c:285
-+msgid "Close"
-+msgstr "Schließen"
-+
-+#: ../panel-plugin/preferences.c:290
-+msgid "No known device found."
-+msgstr "Kein bekanntes Gerät erkannt."
-+
-+#: ../panel-plugin/preferences.c:292
-+msgid "The following devices were found:"
-+msgstr "Die folgenden Geräte wurden erkannt:"
-+
-+#: ../panel-plugin/preferences.c:299
-+msgid "Use this device"
-+msgstr "Benutze dieses Gerät"
-+
-+#: ../panel-plugin/preferences.c:343
-+msgid "Configure Cell Modem Monitor"
-+msgstr "Mobilfunkmodem-Monitor konfigurieren"
-+
-+#. The header - this was most copied from other sources
-+#: ../panel-plugin/preferences.c:356
-+msgid "Cellular Modem Monitor"
-+msgstr "Mobilfunkmodem-Monitor"
-+
-+#: ../panel-plugin/preferences.c:387
-+msgid "Modem driver:"
-+msgstr "Modem-Treiber:"
-+
-+#: ../panel-plugin/preferences.c:409
-+msgid "Modem speed:"
-+msgstr "Modem-Geschwindigkeit:"
-+
-+#: ../panel-plugin/preferences.c:422
-+msgid "Modem device:"
-+msgstr "Modem-Gerätedatei:"
-+
-+#: ../panel-plugin/preferences.c:434
-+msgid "Autodetect modem..."
-+msgstr "Automatische Modemerkennung ..."
-+
-+#: ../panel-plugin/preferences.c:444
-+msgid "Maximum quality:"
-+msgstr "Мaximale Signalstärke:"
-+
-+#: ../panel-plugin/preferences.c:455
-+msgid "Low quality percentage:"
-+msgstr "Niedrige Signalstärke (in %):"
-+
-+#: ../panel-plugin/preferences.c:465
-+msgid "Critical quality percentage:"
-+msgstr "Kritische Signalstärke (in %):"
-+
-+#: ../panel-plugin/preferences.c:479
-+msgid "Check for SMS every"
-+msgstr "SMS-Abholung alle"
-+
-+#: ../panel-plugin/preferences.c:481
-+msgid "minutes"
-+msgstr "Minuten"
-diff -Nur xfce4-cellmodem-plugin-0.0.5.orig/po/el.po xfce4-cellmodem-plugin-0.0.5/po/el.po
---- xfce4-cellmodem-plugin-0.0.5.orig/po/el.po	1970-01-01 01:00:00.000000000 +0100
-+++ xfce4-cellmodem-plugin-0.0.5/po/el.po	2011-04-09 02:49:11.740376232 +0200
-@@ -0,0 +1,244 @@
-+# Czech translations for xfce4-cellmodem-plugin package.
-+# Copyright (C) 2006 THE xfce4-cellmodem-plugin'S COPYRIGHT HOLDER
-+# This file is distributed under the same license as the xfce4-cellmodem-plugin package.
-+#
-+#
-+msgid ""
-+msgstr ""
-+"Project-Id-Version: xfce4-cellmodem-plugin\n"
-+"Report-Msgid-Bugs-To: \n"
-+"POT-Creation-Date: 2008-07-22 19:01+0100\n"
-+"PO-Revision-Date: 2011-01-04 20:08+0200\n"
-+"Last-Translator: George Vasilakos <forfolias at linuxteam.cs.teilar.gr>\n"
-+"Language-Team: Greek <nls at tux.hellug.gr>\n"
-+"MIME-Version: 1.0\n"
-+"Content-Type: text/plain; charset=UTF-8\n"
-+"Content-Transfer-Encoding: 8bit\n"
-+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-+"X-Poedit-Language: Greek\n"
-+"X-Poedit-Country: GREECE\n"
-+
-+#: ../panel-plugin/cellmodem.c:482
-+msgid "Initializing plugin now"
-+msgstr "Αρχικοποίηση του πρόσθετου"
-+
-+#: ../panel-plugin/cellmodem.c:505
-+#, c-format
-+msgid ""
-+"Error detected:\n"
-+"%s"
-+msgstr ""
-+"Εντοπίστηκε σφάλμα:\n"
-+"%s"
-+
-+#: ../panel-plugin/cellmodem.c:511
-+msgid "Not registered"
-+msgstr "Μη καταχωρημένο"
-+
-+#: ../panel-plugin/cellmodem.c:514
-+msgid "Modem needs PIN"
-+msgstr "Το μόντεμ χρειάζεται το PIN"
-+
-+#: ../panel-plugin/cellmodem.c:517
-+msgid "Registering"
-+msgstr "Κατοχυρώνεται"
-+
-+#: ../panel-plugin/cellmodem.c:520
-+#, c-format
-+msgid ""
-+"Registered [GPRS] to %s\n"
-+"Quality: %d (%d%%)"
-+msgstr ""
-+"Κατοχυρώθηκε [GPRS] στο %s\n"
-+"Ποιότητα: %d (%d%%)"
-+
-+#: ../panel-plugin/cellmodem.c:523
-+#, c-format
-+msgid ""
-+"Registered [UMTS] to %s\n"
-+"Quality: %d (%d%%)"
-+msgstr ""
-+"Κατοχυρώθηκε [UMTS] στο %s\n"
-+"Ποιότητα: %d (%d%%)"
-+
-+#: ../panel-plugin/cellmodem.c:526
-+#, c-format
-+msgid ""
-+"Registered [HSDPA] to %s\n"
-+"Quality: %d (%d%%)"
-+msgstr ""
-+"Κατοχυρώθηκε [HSDPA] στο %s\n"
-+"Ποιότητα: %d (%d%%)"
-+
-+#: ../panel-plugin/cellmodem.c:529
-+#, c-format
-+msgid ""
-+"Registered to %s\n"
-+"Quality: %d (%d%%)"
-+msgstr ""
-+"Κατοχυρώθηκε στο %s\n"
-+"Ποιότητα: %d (%d%%)"
-+
-+#. Error
-+#: ../panel-plugin/cellmodem.c:687
-+msgid "Error in modem reply to CREG"
-+msgstr "Σφάλμα στην ανταπόκριση του μόντεμ στο CREG"
-+
-+#: ../panel-plugin/cellmodem.c:696
-+msgid "Invalid reply to +CREG"
-+msgstr "Άκυρη απόκριση στο +CREG"
-+
-+#: ../panel-plugin/cellmodem.c:721
-+msgid "Invalid CREG reply from modem"
-+msgstr "Άκυρη απόκριση CREG από το μόντεμ"
-+
-+#: ../panel-plugin/cellmodem.c:760
-+msgid "Error in modem reply to COPS"
-+msgstr "Σφάλμα στην ανταπόκριση του μόντεμ στο COPS"
-+
-+#: ../panel-plugin/cellmodem.c:816
-+msgid "Invalid COPS reply from modem"
-+msgstr "Άκυρη απόκριση COPS από το μόντεμ"
-+
-+#: ../panel-plugin/cellmodem.c:844
-+msgid "Error in modem reply to CPIN"
-+msgstr "Σφάλμα στην ανταπόκριση του μόντεμ στο CPIN"
-+
-+#: ../panel-plugin/cellmodem.c:870
-+msgid "Invalid CPIN reply from modem"
-+msgstr "Άκυρη απόκριση CPIN από το μόντεμ"
-+
-+#: ../panel-plugin/cellmodem.c:875
-+msgid "Unsupportted CPIN reply from modem"
-+msgstr "Μη υποστηριζόμενη απόκριση CPIN από το μόντεμ"
-+
-+#: ../panel-plugin/cellmodem.c:919
-+#: ../panel-plugin/cellmodem.c:973
-+msgid "Invalid OHCIP reply from modem"
-+msgstr "Άκυρη απόκριση OHCIP από το μόντεμ"
-+
-+#: ../panel-plugin/cellmodem.c:923
-+#: ../panel-plugin/cellmodem.c:977
-+msgid "Unsupportted OHCIP reply from modem"
-+msgstr "Μη υποστηριζόμενη απόκριση OHCIP από το μόντεμ"
-+
-+#. Error
-+#: ../panel-plugin/cellmodem.c:1019
-+msgid "Cannot send PIN to modem"
-+msgstr "Δε μπορεί να σταλεί το PIN στο μόντεμ"
-+
-+#: ../panel-plugin/cellmodem.c:1055
-+msgid "Error in modem reply to CSQ"
-+msgstr "Σφάλμα στην ανταπόκριση του μόντεμ στο CSQ"
-+
-+#: ../panel-plugin/cellmodem.c:1075
-+msgid "Invalid CSQ reply from modem"
-+msgstr "Άκυρη απόκριση CSQ από το μόντεμ"
-+
-+#: ../panel-plugin/cellmodem.c:1276
-+#: ../panel-plugin/cellmodem.c:1603
-+msgid "Cannot open modem"
-+msgstr "Δεν μπορεί να ανοίξει το μόντεμ"
-+
-+#: ../panel-plugin/cellmodem.c:1429
-+msgid "Error reading from modem"
-+msgstr "Σφάλμα κατά την ανάγνωση από το μόντεμ"
-+
-+#: ../panel-plugin/cellmodem.c:1507
-+msgid "Error writing to modem"
-+msgstr "Σφάλμα κατά την εγγραφή στο μόντεμ"
-+
-+#: ../panel-plugin/cellmodem.c:1523
-+msgid "Modem did not reply to command"
-+msgstr "Το μόντεμ δεν αποκρίθηκε στην εντολή"
-+
-+#: ../panel-plugin/cellmodem.c:1541
-+msgid "No driver defined"
-+msgstr "Δεν έχει οριστεί κάποιος οδηγός"
-+
-+#: ../panel-plugin/cellmodem.c:1546
-+msgid "No modem instance"
-+msgstr "Δε βρέθηκε στιγμιότυπο του μόντεμ"
-+
-+#: ../panel-plugin/cellmodem.c:1720
-+msgid "Modem initializing"
-+msgstr "Αρχικοποίηση του μόντεμ"
-+
-+#: ../panel-plugin/cellmodem.c:1755
-+msgid "Invalid driver specified"
-+msgstr "Προσδιορίστηκε άκυρος οδηγός"
-+
-+#. Error.
-+#: ../panel-plugin/pin_helper.c:31
-+msgid "Invalid PIN entered. PIN has 4 digits"
-+msgstr "Εισήχθη άκυρο PIN. Το PIN έχει 4 ψηφία"
-+
-+#: ../panel-plugin/pin_helper.c:65
-+msgid "Enter PIN"
-+msgstr "Εισάγετε PIN"
-+
-+#: ../panel-plugin/pin_helper.c:77
-+msgid "Please enter PIN:"
-+msgstr "Παρακαλώ εισάγετε PIN:"
-+
-+#: ../panel-plugin/preferences.c:285
-+msgid "Close"
-+msgstr "Κλείσιμο"
-+
-+#: ../panel-plugin/preferences.c:290
-+msgid "No known device found."
-+msgstr "Δε βρέθηκε κάποια γνωστή συσκευή."
-+
-+#: ../panel-plugin/preferences.c:292
-+msgid "The following devices were found:"
-+msgstr "Οι παρακάτω συσκευές βρέθηκαν:"
-+
-+#: ../panel-plugin/preferences.c:299
-+msgid "Use this device"
-+msgstr "Χρήση αυτής της συσκευής"
-+
-+#: ../panel-plugin/preferences.c:343
-+msgid "Configure Cell Modem Monitor"
-+msgstr "Ρύθμιση του Cell Modem Monitor"
-+
-+#. The header - this was most copied from other sources
-+#: ../panel-plugin/preferences.c:356
-+msgid "Cellular Modem Monitor"
-+msgstr "Cellular Modem Monitor"
-+
-+#: ../panel-plugin/preferences.c:387
-+msgid "Modem driver:"
-+msgstr "Οδηγός Modem:"
-+
-+#: ../panel-plugin/preferences.c:409
-+msgid "Modem speed:"
-+msgstr "Ταχύτητα Modem:"
-+
-+#: ../panel-plugin/preferences.c:422
-+msgid "Modem device:"
-+msgstr "Συσκευή Modem:"
-+
-+#: ../panel-plugin/preferences.c:434
-+msgid "Autodetect modem..."
-+msgstr "Αυτόματη ανίχνευση μόντεμ..."
-+
-+#: ../panel-plugin/preferences.c:444
-+msgid "Maximum quality:"
-+msgstr "Μέγιστη ποιότητα:"
-+
-+#: ../panel-plugin/preferences.c:455
-+msgid "Low quality percentage:"
-+msgstr "Χαμηλή ποιότητα επί τις εκατό:"
-+
-+#: ../panel-plugin/preferences.c:465
-+msgid "Critical quality percentage:"
-+msgstr "Κρίσιμη ποιότητα επί τις εκατό:"
-+
-+#: ../panel-plugin/preferences.c:479
-+msgid "Check for SMS every"
-+msgstr "Έλεγχος για SMS κάθε"
-+
-+#: ../panel-plugin/preferences.c:481
-+msgid "minutes"
-+msgstr "λεπτά"
-+
-diff -Nur xfce4-cellmodem-plugin-0.0.5.orig/po/en_GB.po xfce4-cellmodem-plugin-0.0.5/po/en_GB.po
---- xfce4-cellmodem-plugin-0.0.5.orig/po/en_GB.po	1970-01-01 01:00:00.000000000 +0100
-+++ xfce4-cellmodem-plugin-0.0.5/po/en_GB.po	2011-04-09 02:49:11.740376232 +0200
-@@ -0,0 +1,238 @@
-+# Czech translations for xfce4-cellmodem-plugin package.
-+# Copyright (C) 2006 THE xfce4-cellmodem-plugin'S COPYRIGHT HOLDER
-+# This file is distributed under the same license as the xfce4-cellmodem-plugin package.
-+#
-+#
-+msgid ""
-+msgstr ""
-+"Project-Id-Version: xfce4-cellmodem-plugin\n"
-+"Report-Msgid-Bugs-To: \n"
-+"POT-Creation-Date: 2008-07-22 19:01+0100\n"
-+"PO-Revision-Date: 2009-08-18 19:30+1000\n"
-+"Last-Translator: Jeff Bailes <thepizzaking at gmail.com>\n"
-+"Language-Team: English/GB\n"
-+"MIME-Version: 1.0\n"
-+"Content-Type: text/plain; charset=UTF-8\n"
-+"Content-Transfer-Encoding: 8bit\n"
-+"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
-+
-+#: ../panel-plugin/cellmodem.c:482
-+msgid "Initializing plugin now"
-+msgstr "Initialising plugin now"
-+
-+#: ../panel-plugin/cellmodem.c:505
-+#, c-format
-+msgid ""
-+"Error detected:\n"
-+"%s"
-+msgstr ""
-+"Error detected:\n"
-+"%s"
-+
-+#: ../panel-plugin/cellmodem.c:511
-+msgid "Not registered"
-+msgstr "Not registered"
-+
-+#: ../panel-plugin/cellmodem.c:514
-+msgid "Modem needs PIN"
-+msgstr "Modem needs PIN"
-+
-+#: ../panel-plugin/cellmodem.c:517
-+msgid "Registering"
-+msgstr "Registering"
-+
-+#: ../panel-plugin/cellmodem.c:520
-+#, c-format
-+msgid ""
-+"Registered [GPRS] to %s\n"
-+"Quality: %d (%d%%)"
-+msgstr ""
-+"Registered [GPRS] to %s\n"
-+"Quality: %d (%d%%)"
-+
-+#: ../panel-plugin/cellmodem.c:523
-+#, c-format
-+msgid ""
-+"Registered [UMTS] to %s\n"
-+"Quality: %d (%d%%)"
-+msgstr ""
-+"Registered [UMTS] to %s\n"
-+"Quality: %d (%d%%)"
-+
-+#: ../panel-plugin/cellmodem.c:526
-+#, c-format
-+msgid ""
-+"Registered [HSDPA] to %s\n"
-+"Quality: %d (%d%%)"
-+msgstr ""
-+"Registered [HSDPA] to %s\n"
-+"Quality: %d (%d%%)"
-+
-+#: ../panel-plugin/cellmodem.c:529
-+#, c-format
-+msgid ""
-+"Registered to %s\n"
-+"Quality: %d (%d%%)"
-+msgstr ""
-+"Registered to %s\n"
-+"Quality: %d (%d%%)"
-+
-+#. Error
-+#: ../panel-plugin/cellmodem.c:687
-+msgid "Error in modem reply to CREG"
-+msgstr "Error in modem reply to CREG"
-+
-+#: ../panel-plugin/cellmodem.c:696
-+msgid "Invalid reply to +CREG"
-+msgstr "Invalid reply to +CREG"
-+
-+#: ../panel-plugin/cellmodem.c:721
-+msgid "Invalid CREG reply from modem"
-+msgstr "Invalid CREG reply from modem"
-+
-+#: ../panel-plugin/cellmodem.c:760
-+msgid "Error in modem reply to COPS"
-+msgstr "Error in modem reply to COPS"
-+
-+#: ../panel-plugin/cellmodem.c:816
-+msgid "Invalid COPS reply from modem"
-+msgstr "Invalid COPS reply from modem"
-+
-+#: ../panel-plugin/cellmodem.c:844
-+msgid "Error in modem reply to CPIN"
-+msgstr "Error in modem reply to CPIN"
-+
-+#: ../panel-plugin/cellmodem.c:870
-+msgid "Invalid CPIN reply from modem"
-+msgstr "Invalid CPIN reply from modem"
-+
-+#: ../panel-plugin/cellmodem.c:875
-+msgid "Unsupportted CPIN reply from modem"
-+msgstr "Unsupportted CPIN reply from modem"
-+
-+#: ../panel-plugin/cellmodem.c:919 ../panel-plugin/cellmodem.c:973
-+msgid "Invalid OHCIP reply from modem"
-+msgstr "Invalid OHCIP reply from modem"
-+
-+#: ../panel-plugin/cellmodem.c:923 ../panel-plugin/cellmodem.c:977
-+msgid "Unsupportted OHCIP reply from modem"
-+msgstr "Unsupportted OHCIP reply from modem"
-+
-+#. Error
-+#: ../panel-plugin/cellmodem.c:1019
-+msgid "Cannot send PIN to modem"
-+msgstr "Cannot send PIN to modem"
-+
-+#: ../panel-plugin/cellmodem.c:1055
-+msgid "Error in modem reply to CSQ"
-+msgstr "Error in modem reply to CSQ"
-+
-+#: ../panel-plugin/cellmodem.c:1075
-+msgid "Invalid CSQ reply from modem"
-+msgstr "Invalid CSQ reply from modem"
-+
-+#: ../panel-plugin/cellmodem.c:1276 ../panel-plugin/cellmodem.c:1603
-+msgid "Cannot open modem"
-+msgstr "Cannot open modem"
-+
-+#: ../panel-plugin/cellmodem.c:1429
-+msgid "Error reading from modem"
-+msgstr "Error reading from modem"
-+
-+#: ../panel-plugin/cellmodem.c:1507
-+msgid "Error writing to modem"
-+msgstr "Error writing to modem"
-+
-+#: ../panel-plugin/cellmodem.c:1523
-+msgid "Modem did not reply to command"
-+msgstr "Modem did not reply to command"
-+
-+#: ../panel-plugin/cellmodem.c:1541
-+msgid "No driver defined"
-+msgstr "No driver defined"
-+
-+#: ../panel-plugin/cellmodem.c:1546
-+msgid "No modem instance"
-+msgstr "No modem instance"
-+
-+#: ../panel-plugin/cellmodem.c:1720
-+msgid "Modem initializing"
-+msgstr "Modem initialising"
-+
-+#: ../panel-plugin/cellmodem.c:1755
-+msgid "Invalid driver specified"
-+msgstr "Invalid driver specified"
-+
-+#. Error.
-+#: ../panel-plugin/pin_helper.c:31
-+msgid "Invalid PIN entered. PIN has 4 digits"
-+msgstr "Invalid PIN entered. PIN has 4 digits"
-+
-+#: ../panel-plugin/pin_helper.c:65
-+msgid "Enter PIN"
-+msgstr "Enter PIN"
-+
-+#: ../panel-plugin/pin_helper.c:77
-+msgid "Please enter PIN:"
-+msgstr "Please enter PIN:"
-+
-+#: ../panel-plugin/preferences.c:285
-+msgid "Close"
-+msgstr "Close"
-+
-+#: ../panel-plugin/preferences.c:290
-+msgid "No known device found."
-+msgstr "No known device found."
-+
-+#: ../panel-plugin/preferences.c:292
-+msgid "The following devices were found:"
-+msgstr "The following devices were found:"
-+
-+#: ../panel-plugin/preferences.c:299
-+msgid "Use this device"
-+msgstr "Use this device"
-+
-+#: ../panel-plugin/preferences.c:343
-+msgid "Configure Cell Modem Monitor"
-+msgstr "Configure Cell Modem Monitor"
-+
-+#. The header - this was most copied from other sources
-+#: ../panel-plugin/preferences.c:356
-+msgid "Cellular Modem Monitor"
-+msgstr "Cellular Modem Monitor"
-+
-+#: ../panel-plugin/preferences.c:387
-+msgid "Modem driver:"
-+msgstr "Modem driver:"
-+
-+#: ../panel-plugin/preferences.c:409
-+msgid "Modem speed:"
-+msgstr "Modem speed:"
-+
-+#: ../panel-plugin/preferences.c:422
-+msgid "Modem device:"
-+msgstr "Modem device:"
-+
-+#: ../panel-plugin/preferences.c:434
-+msgid "Autodetect modem..."
-+msgstr "Autodetect modem..."
-+
-+#: ../panel-plugin/preferences.c:444
-+msgid "Maximum quality:"
-+msgstr "Maximum quality:"
-+
-+#: ../panel-plugin/preferences.c:455
-+msgid "Low quality percentage:"
-+msgstr "Low quality percentage:"
-+
-+#: ../panel-plugin/preferences.c:465
-+msgid "Critical quality percentage:"
-+msgstr "Critical quality percentage:"
-+
-+#: ../panel-plugin/preferences.c:479
-+msgid "Check for SMS every"
-+msgstr "Check for SMS every"
-+
-+#: ../panel-plugin/preferences.c:481
-+msgid "minutes"
-+msgstr "minutes"
-diff -Nur xfce4-cellmodem-plugin-0.0.5.orig/po/es.po xfce4-cellmodem-plugin-0.0.5/po/es.po
---- xfce4-cellmodem-plugin-0.0.5.orig/po/es.po	1970-01-01 01:00:00.000000000 +0100
-+++ xfce4-cellmodem-plugin-0.0.5/po/es.po	2011-04-09 02:49:11.740376232 +0200
-@@ -0,0 +1,242 @@
-+# Spanish translations for xfce4-cellmodem-plugin package
-+# Copyright (C) 2009 THE xfce4-cellmodem-plugin'S COPYRIGHT HOLDER
-+# This file is distributed under the same license as the xfce4-cellmodem-plugin package.
-+#  <abel.martin.ruiz at gmail.com>, 2009.
-+#
-+msgid ""
-+msgstr ""
-+"Project-Id-Version: xfce4-cellmodem-plugin\n"
-+"Report-Msgid-Bugs-To: \n"
-+"POT-Creation-Date: 2008-07-22 19:01+0100\n"
-+"PO-Revision-Date: 2009-02-24 17:26+0100\n"
-+"Last-Translator: Abel Martín <abel.martin.ruiz at gmail.com>\n"
-+"Language-Team: Spanish\n"
-+"MIME-Version: 1.0\n"
-+"Content-Type: text/plain; charset=UTF-8\n"
-+"Content-Transfer-Encoding: 8bit\n"
-+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-+
-+#: ../panel-plugin/cellmodem.c:482
-+msgid "Initializing plugin now"
-+msgstr "Iniciando complemento ahora"
-+
-+#: ../panel-plugin/cellmodem.c:505
-+#, c-format
-+msgid ""
-+"Error detected:\n"
-+"%s"
-+msgstr ""
-+"Error detectado:\n"
-+"%s"
-+
-+#: ../panel-plugin/cellmodem.c:511
-+msgid "Not registered"
-+msgstr "No registrado"
-+
-+#: ../panel-plugin/cellmodem.c:514
-+msgid "Modem needs PIN"
-+msgstr "El módem necesita el PIN"
-+
-+#: ../panel-plugin/cellmodem.c:517
-+msgid "Registering"
-+msgstr "Registrando"
-+
-+#: ../panel-plugin/cellmodem.c:520
-+#, c-format
-+msgid ""
-+"Registered [GPRS] to %s\n"
-+"Quality: %d (%d%%)"
-+msgstr ""
-+"Registrado [GPRS] con %s\n"
-+"Calidad: %d (%d%%)"
-+
-+#: ../panel-plugin/cellmodem.c:523
-+#, c-format
-+msgid ""
-+"Registered [UMTS] to %s\n"
-+"Quality: %d (%d%%)"
-+msgstr ""
-+"Registrado [UMTS] con %s\n"
-+"Calidad: %d (%d%%)"
-+
-+#: ../panel-plugin/cellmodem.c:526
-+#, c-format
-+msgid ""
-+"Registered [HSDPA] to %s\n"
-+"Quality: %d (%d%%)"
-+msgstr ""
-+"Registrado [HSDPA] con %s\n"
-+"Calidad: %d (%d%%)"
-+
-+#: ../panel-plugin/cellmodem.c:529
-+#, c-format
-+msgid ""
-+"Registered to %s\n"
-+"Quality: %d (%d%%)"
-+msgstr ""
-+"Registrado con %s\n"
-+"Calidad: %d (%d%%)"
-+
-+#. Error
-+#: ../panel-plugin/cellmodem.c:687
-+msgid "Error in modem reply to CREG"
-+msgstr "Error en la respuesta del módem a CREG"
-+
-+#: ../panel-plugin/cellmodem.c:696
-+msgid "Invalid reply to +CREG"
-+msgstr "Respuesta no válida a +CREG"
-+
-+#: ../panel-plugin/cellmodem.c:721
-+msgid "Invalid CREG reply from modem"
-+msgstr "Respuesta CREG no válida desde el módem"
-+
-+#: ../panel-plugin/cellmodem.c:760
-+msgid "Error in modem reply to COPS"
-+msgstr "Error en la respuesta del módem a COPS"
-+
-+#: ../panel-plugin/cellmodem.c:816
-+msgid "Invalid COPS reply from modem"
-+msgstr "Respuesta COPS no válida desde el módem"
-+
-+#: ../panel-plugin/cellmodem.c:844
-+msgid "Error in modem reply to CPIN"
-+msgstr "Error en la respuesta del módem a CPIN"
-+
-+#: ../panel-plugin/cellmodem.c:870
-+msgid "Invalid CPIN reply from modem"
-+msgstr "Respuesta CPIN no válida desde el módem"
-+
-+#: ../panel-plugin/cellmodem.c:875
-+msgid "Unsupportted CPIN reply from modem"
-+msgstr "Respuesta CPIN no soportada desde el módem"
-+
-+#: ../panel-plugin/cellmodem.c:919
-+#: ../panel-plugin/cellmodem.c:973
-+msgid "Invalid OHCIP reply from modem"
-+msgstr "Respuesta OHCIP no válida desde el módem"
-+
-+#: ../panel-plugin/cellmodem.c:923
-+#: ../panel-plugin/cellmodem.c:977
-+msgid "Unsupportted OHCIP reply from modem"
-+msgstr "Respuesta OHCIP no soportada desde el módem"
-+
-+#. Error
-+#: ../panel-plugin/cellmodem.c:1019
-+msgid "Cannot send PIN to modem"
-+msgstr "No se puede enviar PIN al módem"
-+
-+#: ../panel-plugin/cellmodem.c:1055
-+msgid "Error in modem reply to CSQ"
-+msgstr "Error en la respuesta del módem a CSQ"
-+
-+#: ../panel-plugin/cellmodem.c:1075
-+msgid "Invalid CSQ reply from modem"
-+msgstr "Respuesta CSQ no válida desde el módem"
-+
-+#: ../panel-plugin/cellmodem.c:1276
-+#: ../panel-plugin/cellmodem.c:1603
-+msgid "Cannot open modem"
-+msgstr "No se puede abrir el módem"
-+
-+#: ../panel-plugin/cellmodem.c:1429
-+msgid "Error reading from modem"
-+msgstr "Error al leer del módem"
-+
-+#: ../panel-plugin/cellmodem.c:1507
-+msgid "Error writing to modem"
-+msgstr "Error al escribir en módem"
-+
-+#: ../panel-plugin/cellmodem.c:1523
-+msgid "Modem did not reply to command"
-+msgstr "El módem no respondió al comando"
-+
-+#: ../panel-plugin/cellmodem.c:1541
-+msgid "No driver defined"
-+msgstr "No se definió ningún controlador"
-+
-+#: ../panel-plugin/cellmodem.c:1546
-+msgid "No modem instance"
-+msgstr "No hay ninguna instancia de módem"
-+
-+#: ../panel-plugin/cellmodem.c:1720
-+msgid "Modem initializing"
-+msgstr "Iniciando módem"
-+
-+#: ../panel-plugin/cellmodem.c:1755
-+msgid "Invalid driver specified"
-+msgstr "Controlador especificado no válido"
-+
-+#. Error.
-+#: ../panel-plugin/pin_helper.c:31
-+msgid "Invalid PIN entered. PIN has 4 digits"
-+msgstr "PIN introducido no válido. El PIN tiene 4 dígitos"
-+
-+#: ../panel-plugin/pin_helper.c:65
-+msgid "Enter PIN"
-+msgstr "Introduzca PIN"
-+
-+#: ../panel-plugin/pin_helper.c:77
-+msgid "Please enter PIN:"
-+msgstr "Por favor, introduzca el PIN:"
-+
-+#: ../panel-plugin/preferences.c:285
-+msgid "Close"
-+msgstr "Cerrar"
-+
-+#: ../panel-plugin/preferences.c:290
-+msgid "No known device found."
-+msgstr "No se encontró ningún dispositivo conocido."
-+
-+#: ../panel-plugin/preferences.c:292
-+msgid "The following devices were found:"
-+msgstr "Se han encontrado los siguientes dispositivos:"
-+
-+#: ../panel-plugin/preferences.c:299
-+msgid "Use this device"
-+msgstr "Usar este dispositivo"
-+
-+#: ../panel-plugin/preferences.c:343
-+msgid "Configure Cell Modem Monitor"
-+msgstr "Configurar monitor de módem celular"
-+
-+#. The header - this was most copied from other sources
-+#: ../panel-plugin/preferences.c:356
-+msgid "Cellular Modem Monitor"
-+msgstr "Monitor de módem celular"
-+
-+#: ../panel-plugin/preferences.c:387
-+msgid "Modem driver:"
-+msgstr "Controlador de módem:"
-+
-+#: ../panel-plugin/preferences.c:409
-+msgid "Modem speed:"
-+msgstr "Velocidad de módem:"
-+
-+#: ../panel-plugin/preferences.c:422
-+msgid "Modem device:"
-+msgstr "Dispositivo módem:"
-+
-+#: ../panel-plugin/preferences.c:434
-+msgid "Autodetect modem..."
-+msgstr "Autodetectar módem..."
-+
-+#: ../panel-plugin/preferences.c:444
-+msgid "Maximum quality:"
-+msgstr "Calidad máxima:"
-+
-+#: ../panel-plugin/preferences.c:455
-+msgid "Low quality percentage:"
-+msgstr "Porcentaje de calidad baja:"
-+
-+#: ../panel-plugin/preferences.c:465
-+msgid "Critical quality percentage:"
-+msgstr "Porcentaje de calidad crítica"
-+
-+#: ../panel-plugin/preferences.c:479
-+msgid "Check for SMS every"
-+msgstr "Comprobar SMS cada"
-+
-+#: ../panel-plugin/preferences.c:481
-+msgid "minutes"
-+msgstr "minutos"
-+
-diff -Nur xfce4-cellmodem-plugin-0.0.5.orig/po/eu.po xfce4-cellmodem-plugin-0.0.5/po/eu.po
---- xfce4-cellmodem-plugin-0.0.5.orig/po/eu.po	1970-01-01 01:00:00.000000000 +0100
-+++ xfce4-cellmodem-plugin-0.0.5/po/eu.po	2011-04-09 02:49:11.740376232 +0200
-@@ -0,0 +1,241 @@
-+# translation of eu.po to Euskara
-+# Copyright (C) 2006 THE xfce4-cellmodem-plugin'S COPYRIGHT HOLDER
-+# This file is distributed under the same license as the xfce4-cellmodem-plugin package.
-+#
-+#
-+# Piarres Beobide <pi at beobide.net>, 2007, 2008.
-+msgid ""
-+msgstr ""
-+"Project-Id-Version: eu\n"
-+"Report-Msgid-Bugs-To: \n"
-+"POT-Creation-Date: 2008-07-22 19:01+0100\n"
-+"PO-Revision-Date: 2008-11-30 08:51+0200\n"
-+"Last-Translator: Piarres Beobide <pi at beobide.net>\n"
-+"Language-Team: Euskara <debian-l10n-basque at lists.debian.org>\n"
-+"Language: eu\n"
-+"MIME-Version: 1.0\n"
-+"Content-Type: text/plain; charset=UTF-8\n"
-+"Content-Transfer-Encoding: 8bit\n"
-+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-+"X-Generator: Pootle 1.2.0\n"
-+
-+#: ../panel-plugin/cellmodem.c:482
-+msgid "Initializing plugin now"
-+msgstr "Plugina orain abiarazten"
-+
-+#: ../panel-plugin/cellmodem.c:505
-+#, c-format
-+msgid ""
-+"Error detected:\n"
-+"%s"
-+msgstr ""
-+"Errorea atzemanda:\n"
-+"%s"
-+
-+#: ../panel-plugin/cellmodem.c:511
-+msgid "Not registered"
-+msgstr "Erregistratu gabe"
-+
-+#: ../panel-plugin/cellmodem.c:514
-+msgid "Modem needs PIN"
-+msgstr "Modem-ak  PIN-a behar du"
-+
-+#: ../panel-plugin/cellmodem.c:517
-+msgid "Registering"
-+msgstr "Erregistratzen"
-+
-+#: ../panel-plugin/cellmodem.c:520
-+#, c-format
-+msgid ""
-+"Registered [GPRS] to %s\n"
-+"Quality: %d (%d%%)"
-+msgstr ""
-+"[GPRS] %s-(e)n erregistraturik\n"
-+"Kalitatea: %d (%d%%)"
-+
-+#: ../panel-plugin/cellmodem.c:523
-+#, c-format
-+msgid ""
-+"Registered [UMTS] to %s\n"
-+"Quality: %d (%d%%)"
-+msgstr ""
-+"[UMTS] %s-(e)n erregistraturik\n"
-+"Kalitatea: %d (%d%%)"
-+
-+#: ../panel-plugin/cellmodem.c:526
-+#, c-format
-+msgid ""
-+"Registered [HSDPA] to %s\n"
-+"Quality: %d (%d%%)"
-+msgstr ""
-+"[HSDPA] %s-(e)n erregistraturik\n"
-+"Kalitatea: %d (%d%%)"
-+
-+#: ../panel-plugin/cellmodem.c:529
-+#, c-format
-+msgid ""
-+"Registered to %s\n"
-+"Quality: %d (%d%%)"
-+msgstr ""
-+"%s-(e)n erregistraturik\n"
-+"Kalitatea: %d (%d%%)"
-+
-+#. Error
-+#: ../panel-plugin/cellmodem.c:687
-+msgid "Error in modem reply to CREG"
-+msgstr "Errorea modem-aren CREG erantzunean"
-+
-+#: ../panel-plugin/cellmodem.c:696
-+msgid "Invalid reply to +CREG"
-+msgstr "+CREG erantzun baliogabea"
-+
-+#: ../panel-plugin/cellmodem.c:721
-+msgid "Invalid CREG reply from modem"
-+msgstr "Okerreko CREG erantzuna modem-etik"
-+
-+#: ../panel-plugin/cellmodem.c:760
-+msgid "Error in modem reply to COPS"
-+msgstr "Errorea modem COPS erantzunean"
-+
-+#: ../panel-plugin/cellmodem.c:816
-+msgid "Invalid COPS reply from modem"
-+msgstr "Okerreko COPS erantzuna modem-etik"
-+
-+#: ../panel-plugin/cellmodem.c:844
-+msgid "Error in modem reply to CPIN"
-+msgstr "Errorea modem CPIN erantzunean"
-+
-+#: ../panel-plugin/cellmodem.c:870
-+msgid "Invalid CPIN reply from modem"
-+msgstr "Okerreko CPIN erantzuna modem-etik"
-+
-+#: ../panel-plugin/cellmodem.c:875
-+msgid "Unsupportted CPIN reply from modem"
-+msgstr "Onartzen ez den CPIN erantzuna modem-etik"
-+
-+#: ../panel-plugin/cellmodem.c:919 ../panel-plugin/cellmodem.c:973
-+msgid "Invalid OHCIP reply from modem"
-+msgstr "Okerreko OHCIP erantzuna modem-etik"
-+
-+#: ../panel-plugin/cellmodem.c:923 ../panel-plugin/cellmodem.c:977
-+msgid "Unsupportted OHCIP reply from modem"
-+msgstr "Onartzen ez den OHCIP erantzuna modem-etik"
-+
-+#. Error
-+#: ../panel-plugin/cellmodem.c:1019
-+msgid "Cannot send PIN to modem"
-+msgstr "Ezin da PIN-a bidali modemera"
-+
-+#: ../panel-plugin/cellmodem.c:1055
-+msgid "Error in modem reply to CSQ"
-+msgstr "Errorea modemaren CSQ-ra erantzunean"
-+
-+#: ../panel-plugin/cellmodem.c:1075
-+msgid "Invalid CSQ reply from modem"
-+msgstr "Okerreko CSQ erantzuna modem-etik"
-+
-+#: ../panel-plugin/cellmodem.c:1276 ../panel-plugin/cellmodem.c:1603
-+msgid "Cannot open modem"
-+msgstr "Ezin da modema ireki"
-+
-+#: ../panel-plugin/cellmodem.c:1429
-+msgid "Error reading from modem"
-+msgstr "errorea modenetik irakurtzean"
-+
-+#: ../panel-plugin/cellmodem.c:1507
-+msgid "Error writing to modem"
-+msgstr "Errorea modenean idaztean"
-+
-+#: ../panel-plugin/cellmodem.c:1523
-+msgid "Modem did not reply to command"
-+msgstr "Modem-ak ez du komandora erantzun"
-+
-+#: ../panel-plugin/cellmodem.c:1541
-+msgid "No driver defined"
-+msgstr "Ez da gailurik ezarri"
-+
-+#: ../panel-plugin/cellmodem.c:1546
-+msgid "No modem instance"
-+msgstr "Ez dago modem instantziarik"
-+
-+#: ../panel-plugin/cellmodem.c:1720
-+msgid "Modem initializing"
-+msgstr "Modem-a abiarazten"
-+
-+#: ../panel-plugin/cellmodem.c:1755
-+msgid "Invalid driver specified"
-+msgstr "Okerreko kontrolagailua ezarria"
-+
-+#. Error.
-+#: ../panel-plugin/pin_helper.c:31
-+msgid "Invalid PIN entered. PIN has 4 digits"
-+msgstr "PIN okerra sartu da. PIN-ak lau digitu ditu"
-+
-+#: ../panel-plugin/pin_helper.c:65
-+msgid "Enter PIN"
-+msgstr "Idatzi PIN-a"
-+
-+#: ../panel-plugin/pin_helper.c:77
-+msgid "Please enter PIN:"
-+msgstr "Mesedez idatzi PIN-a:"
-+
-+#: ../panel-plugin/preferences.c:285
-+msgid "Close"
-+msgstr "Itxi"
-+
-+#: ../panel-plugin/preferences.c:290
-+msgid "No known device found."
-+msgstr "Ez da gailu ezagunik aurkitu"
-+
-+#: ../panel-plugin/preferences.c:292
-+msgid "The following devices were found:"
-+msgstr "Hurrengo gailuak aurkitu dira"
-+
-+#: ../panel-plugin/preferences.c:299
-+msgid "Use this device"
-+msgstr "Gailu hu erabili"
-+
-+#: ../panel-plugin/preferences.c:343
-+msgid "Configure Cell Modem Monitor"
-+msgstr "Cell Modem Monitorea konfiguratu"
-+
-+#. The header - this was most copied from other sources
-+#: ../panel-plugin/preferences.c:356
-+msgid "Cellular Modem Monitor"
-+msgstr "Cellular Modem Monitorea"
-+
-+#: ../panel-plugin/preferences.c:387
-+msgid "Modem driver:"
-+msgstr "Modem kontrolagailua:"
-+
-+#: ../panel-plugin/preferences.c:409
-+msgid "Modem speed:"
-+msgstr "Modem abiadura:"
-+
-+#: ../panel-plugin/preferences.c:422
-+msgid "Modem device:"
-+msgstr "Modem gailua:"
-+
-+#: ../panel-plugin/preferences.c:434
-+msgid "Autodetect modem..."
-+msgstr "Autoantzeman modema..."
-+
-+#: ../panel-plugin/preferences.c:444
-+msgid "Maximum quality:"
-+msgstr "Gehienezko kalitatea:"
-+
-+#: ../panel-plugin/preferences.c:455
-+msgid "Low quality percentage:"
-+msgstr "Kalitate baxu ehunekoa:"
-+
-+#: ../panel-plugin/preferences.c:465
-+msgid "Critical quality percentage:"
-+msgstr "Kalitate larri ehunekoa:"
-+
-+#: ../panel-plugin/preferences.c:479
-+msgid "Check for SMS every"
-+msgstr "SMS-ak egiaztatze tartea:"
-+
-+#: ../panel-plugin/preferences.c:481
-+msgid "minutes"
-+msgstr "minutu"
-diff -Nur xfce4-cellmodem-plugin-0.0.5.orig/po/fr.po xfce4-cellmodem-plugin-0.0.5/po/fr.po
---- xfce4-cellmodem-plugin-0.0.5.orig/po/fr.po	1970-01-01 01:00:00.000000000 +0100
-+++ xfce4-cellmodem-plugin-0.0.5/po/fr.po	2011-04-09 02:49:11.740376232 +0200
-@@ -0,0 +1,242 @@
-+# French translation of the xfce4-cellmodem-plugin package.
-+# Copyright (C) 2009 Álvaro Lopes <alvieboy at alvie.com>
-+# This file is distributed under the same license as the xfce4-cellmodem-plugin package.
-+# Maximilian Schleiss <maximilian at xfce.org>, 2009.
-+#
-+msgid ""
-+msgstr ""
-+"Project-Id-Version: xfce4-cell-modem-plugin\n"
-+"Report-Msgid-Bugs-To: \n"
-+"POT-Creation-Date: 2008-07-22 19:01+0100\n"
-+"PO-Revision-Date: 2009-03-11 19:59+0100\n"
-+"Last-Translator: Maximilian Schleiss <maximilian at xfce.org>\n"
-+"Language-Team:  <i18n-xfce at xfce.org>\n"
-+"MIME-Version: 1.0\n"
-+"Content-Type: text/plain; charset=utf-8\n"
-+"Content-Transfer-Encoding: 8bit\n"
-+"X-Poedit-Language: French\n"
-+
-+#: ../panel-plugin/cellmodem.c:482
-+msgid "Initializing plugin now"
-+msgstr "Initialisation du greffon"
-+
-+#: ../panel-plugin/cellmodem.c:505
-+#, c-format
-+msgid ""
-+"Error detected:\n"
-+"%s"
-+msgstr ""
-+"Erreur détectée :\n"
-+"%s"
-+
-+#: ../panel-plugin/cellmodem.c:511
-+msgid "Not registered"
-+msgstr "Non enregistré"
-+
-+#: ../panel-plugin/cellmodem.c:514
-+msgid "Modem needs PIN"
-+msgstr "PIN requis"
-+
-+#: ../panel-plugin/cellmodem.c:517
-+msgid "Registering"
-+msgstr "Enregistrement"
-+
-+#: ../panel-plugin/cellmodem.c:520
-+#, c-format
-+msgid ""
-+"Registered [GPRS] to %s\n"
-+"Quality: %d (%d%%)"
-+msgstr ""
-+"Enregistré [GPRS] à %s\n"
-+"Qualité : %d (%d%%)"
-+
-+#: ../panel-plugin/cellmodem.c:523
-+#, c-format
-+msgid ""
-+"Registered [UMTS] to %s\n"
-+"Quality: %d (%d%%)"
-+msgstr ""
-+"Enregistré [UMTS] à %s\n"
-+"Qualité : %d (%d%%)"
-+
-+#: ../panel-plugin/cellmodem.c:526
-+#, c-format
-+msgid ""
-+"Registered [HSDPA] to %s\n"
-+"Quality: %d (%d%%)"
-+msgstr ""
-+"Enregistré [HSDPA] à %s\n"
-+"Qualité : %d (%d%%)"
-+
-+#: ../panel-plugin/cellmodem.c:529
-+#, c-format
-+msgid ""
-+"Registered to %s\n"
-+"Quality: %d (%d%%)"
-+msgstr ""
-+"Enregistré à %s\n"
-+"Qualité : %d (%d%%)"
-+
-+#. Error
-+#: ../panel-plugin/cellmodem.c:687
-+msgid "Error in modem reply to CREG"
-+msgstr "Erreur dans la réponse du CREG"
-+
-+#: ../panel-plugin/cellmodem.c:696
-+msgid "Invalid reply to +CREG"
-+msgstr "Réponse incorrecte à +CREG"
-+
-+#: ../panel-plugin/cellmodem.c:721
-+msgid "Invalid CREG reply from modem"
-+msgstr "Réponse CREG incorrecte du modem"
-+
-+#: ../panel-plugin/cellmodem.c:760
-+msgid "Error in modem reply to COPS"
-+msgstr "Erreur dans la réponse du COPS"
-+
-+#: ../panel-plugin/cellmodem.c:816
-+msgid "Invalid COPS reply from modem"
-+msgstr "Réponse COPS incorrecte du modem"
-+
-+#: ../panel-plugin/cellmodem.c:844
-+msgid "Error in modem reply to CPIN"
-+msgstr "Erreur dans la réponse du CPIN"
-+
-+#: ../panel-plugin/cellmodem.c:870
-+msgid "Invalid CPIN reply from modem"
-+msgstr "Réponse CPIN incorrecte du modem"
-+
-+#: ../panel-plugin/cellmodem.c:875
-+msgid "Unsupportted CPIN reply from modem"
-+msgstr "Réponse CPIN du modem non supportée"
-+
-+#: ../panel-plugin/cellmodem.c:919
-+#: ../panel-plugin/cellmodem.c:973
-+msgid "Invalid OHCIP reply from modem"
-+msgstr "Réponse OHCIP incorrecte du modem"
-+
-+#: ../panel-plugin/cellmodem.c:923
-+#: ../panel-plugin/cellmodem.c:977
-+msgid "Unsupportted OHCIP reply from modem"
-+msgstr "Réponse OCHIP du modem non supportée"
-+
-+#. Error
-+#: ../panel-plugin/cellmodem.c:1019
-+msgid "Cannot send PIN to modem"
-+msgstr "Échec d'envoi du code PIN au modem"
-+
-+#: ../panel-plugin/cellmodem.c:1055
-+msgid "Error in modem reply to CSQ"
-+msgstr "Erreur dans la réponse du CSQ"
-+
-+#: ../panel-plugin/cellmodem.c:1075
-+msgid "Invalid CSQ reply from modem"
-+msgstr "Réponse CSQ incorrecte du modem"
-+
-+#: ../panel-plugin/cellmodem.c:1276
-+#: ../panel-plugin/cellmodem.c:1603
-+msgid "Cannot open modem"
-+msgstr "Échec d'ouverture du modem"
-+
-+#: ../panel-plugin/cellmodem.c:1429
-+msgid "Error reading from modem"
-+msgstr "Erreur de lecture du modem"
-+
-+#: ../panel-plugin/cellmodem.c:1507
-+msgid "Error writing to modem"
-+msgstr "Erreur d'écriture au modem"
-+
-+#: ../panel-plugin/cellmodem.c:1523
-+msgid "Modem did not reply to command"
-+msgstr "Pas de réponse du modem à la commande"
-+
-+#: ../panel-plugin/cellmodem.c:1541
-+msgid "No driver defined"
-+msgstr "Pas de pilote défini"
-+
-+#: ../panel-plugin/cellmodem.c:1546
-+msgid "No modem instance"
-+msgstr "Pas de modem"
-+
-+#: ../panel-plugin/cellmodem.c:1720
-+msgid "Modem initializing"
-+msgstr "Initialisation du modem"
-+
-+#: ../panel-plugin/cellmodem.c:1755
-+msgid "Invalid driver specified"
-+msgstr "Pilote sélectionné incorrect"
-+
-+#. Error.
-+#: ../panel-plugin/pin_helper.c:31
-+msgid "Invalid PIN entered. PIN has 4 digits"
-+msgstr "Code PIN incorrect. Le code a 4 chiffres"
-+
-+#: ../panel-plugin/pin_helper.c:65
-+msgid "Enter PIN"
-+msgstr "Code PIN"
-+
-+#: ../panel-plugin/pin_helper.c:77
-+msgid "Please enter PIN:"
-+msgstr "Saisir le code PIN :"
-+
-+#: ../panel-plugin/preferences.c:285
-+msgid "Close"
-+msgstr "Fermer"
-+
-+#: ../panel-plugin/preferences.c:290
-+msgid "No known device found."
-+msgstr "Aucun périphérique connu trouvé."
-+
-+#: ../panel-plugin/preferences.c:292
-+msgid "The following devices were found:"
-+msgstr "Les périphériques suivants ont été trouvés :"
-+
-+#: ../panel-plugin/preferences.c:299
-+msgid "Use this device"
-+msgstr "Utiliser ce périphérique"
-+
-+#: ../panel-plugin/preferences.c:343
-+msgid "Configure Cell Modem Monitor"
-+msgstr "Configurer le moniteur de modem GSM"
-+
-+#. The header - this was most copied from other sources
-+#: ../panel-plugin/preferences.c:356
-+msgid "Cellular Modem Monitor"
-+msgstr "Moniteur de modem GSM"
-+
-+#: ../panel-plugin/preferences.c:387
-+msgid "Modem driver:"
-+msgstr "Pilote du modem :"
-+
-+#: ../panel-plugin/preferences.c:409
-+msgid "Modem speed:"
-+msgstr "Vitesse du modem :"
-+
-+#: ../panel-plugin/preferences.c:422
-+msgid "Modem device:"
-+msgstr "Périphérique modem :"
-+
-+#: ../panel-plugin/preferences.c:434
-+msgid "Autodetect modem..."
-+msgstr "Autodétection du modem..."
-+
-+#: ../panel-plugin/preferences.c:444
-+msgid "Maximum quality:"
-+msgstr "Réception maximale :"
-+
-+#: ../panel-plugin/preferences.c:455
-+msgid "Low quality percentage:"
-+msgstr "Qualité de réception faible :"
-+
-+#: ../panel-plugin/preferences.c:465
-+msgid "Critical quality percentage:"
-+msgstr "Qualité de réception critique :"
-+
-+#: ../panel-plugin/preferences.c:479
-+msgid "Check for SMS every"
-+msgstr "Vérifier les SMS toutes les"
-+
-+#: ../panel-plugin/preferences.c:481
-+msgid "minutes"
-+msgstr "minutes"
-+
-diff -Nur xfce4-cellmodem-plugin-0.0.5.orig/po/gl.po xfce4-cellmodem-plugin-0.0.5/po/gl.po
---- xfce4-cellmodem-plugin-0.0.5.orig/po/gl.po	1970-01-01 01:00:00.000000000 +0100
-+++ xfce4-cellmodem-plugin-0.0.5/po/gl.po	2011-04-09 02:49:11.740376233 +0200
-@@ -0,0 +1,242 @@
-+# Galician translation of xfce4-cellmodem-plugin
-+# Copyright (C) 2008-2009 Leandro Regueiro
-+# This file is distributed under the same license as the xfce package.
-+# 
-+# Leandro Regueiro <leandro.regueiro at gmail.com>, 2008, 2009.
-+# 
-+# Proxecto Trasno - Adaptación do software libre á lingua galega:  Se desexas
-+# colaborar connosco, podes atopar máis información en <http://trasno.net>
-+# 
-+msgid ""
-+msgstr ""
-+"Project-Id-Version: xfce4-cellmodem-plugin\n"
-+"Report-Msgid-Bugs-To: \n"
-+"POT-Creation-Date: 2008-07-22 19:01+0100\n"
-+"PO-Revision-Date: 2009-08-19 13:17+0100\n"
-+"Last-Translator: Leandro Regueiro <leandro.regueiro at gmail.com>\n"
-+"Language-Team: Galician <proxecto at trasno.net>\n"
-+"MIME-Version: 1.0\n"
-+"Content-Type: text/plain; charset=UTF-8\n"
-+"Content-Transfer-Encoding: 8bit\n"
-+"Plural-Forms: nplurals=2; plural=(n!=1);\n"
-+
-+#: ../panel-plugin/cellmodem.c:482
-+msgid "Initializing plugin now"
-+msgstr "Iniciando o engadido"
-+
-+#: ../panel-plugin/cellmodem.c:505
-+#, c-format
-+msgid ""
-+"Error detected:\n"
-+"%s"
-+msgstr ""
-+"Detectouse un erro:\n"
-+"%s"
-+
-+#: ../panel-plugin/cellmodem.c:511
-+msgid "Not registered"
-+msgstr "Non rexistrado"
-+
-+#: ../panel-plugin/cellmodem.c:514
-+msgid "Modem needs PIN"
-+msgstr "O módem precisa un PIN"
-+
-+#: ../panel-plugin/cellmodem.c:517
-+msgid "Registering"
-+msgstr "Rexistrando"
-+
-+#: ../panel-plugin/cellmodem.c:520
-+#, c-format
-+msgid ""
-+"Registered [GPRS] to %s\n"
-+"Quality: %d (%d%%)"
-+msgstr ""
-+"Rexistrado [GPRS] en %s\n"
-+"Calidade: %d (%d%%)"
-+
-+#: ../panel-plugin/cellmodem.c:523
-+#, c-format
-+msgid ""
-+"Registered [UMTS] to %s\n"
-+"Quality: %d (%d%%)"
-+msgstr ""
-+"Rexistrado [UMTS] en %s\n"
-+"Calidade: %d (%d%%)"
-+
-+#: ../panel-plugin/cellmodem.c:526
-+#, c-format
-+msgid ""
-+"Registered [HSDPA] to %s\n"
-+"Quality: %d (%d%%)"
-+msgstr ""
-+"Rexistrado [HSDPA] en %s\n"
-+"Calidade: %d (%d%%)"
-+
-+#: ../panel-plugin/cellmodem.c:529
-+#, c-format
-+msgid ""
-+"Registered to %s\n"
-+"Quality: %d (%d%%)"
-+msgstr ""
-+"Rexistrado en %s\n"
-+"Calidade: %d (%d%%)"
-+
-+#. Error
-+#: ../panel-plugin/cellmodem.c:687
-+msgid "Error in modem reply to CREG"
-+msgstr "Erro na resposta do módem a CREG"
-+
-+#: ../panel-plugin/cellmodem.c:696
-+msgid "Invalid reply to +CREG"
-+msgstr "Resposta incorrecta a +CREG"
-+
-+#: ../panel-plugin/cellmodem.c:721
-+msgid "Invalid CREG reply from modem"
-+msgstr "Resposta CREG incorrecta do módem"
-+
-+#: ../panel-plugin/cellmodem.c:760
-+msgid "Error in modem reply to COPS"
-+msgstr "Erro na resposta do módem a COPS"
-+
-+#: ../panel-plugin/cellmodem.c:816
-+msgid "Invalid COPS reply from modem"
-+msgstr "Resposta COPS incorrecta do módem"
-+
-+#: ../panel-plugin/cellmodem.c:844
-+msgid "Error in modem reply to CPIN"
-+msgstr "Erro na resposta do módem a CPIN"
-+
-+#: ../panel-plugin/cellmodem.c:870
-+msgid "Invalid CPIN reply from modem"
-+msgstr "Resposta CPIN incorrecta do módem"
-+
-+#: ../panel-plugin/cellmodem.c:875
-+msgid "Unsupportted CPIN reply from modem"
-+msgstr "Resposta CPIN non soportada do módem"
-+
-+#: ../panel-plugin/cellmodem.c:919 ../panel-plugin/cellmodem.c:973
-+msgid "Invalid OHCIP reply from modem"
-+msgstr "Resposta OHCIP incorrecta do módem"
-+
-+#: ../panel-plugin/cellmodem.c:923 ../panel-plugin/cellmodem.c:977
-+msgid "Unsupportted OHCIP reply from modem"
-+msgstr "Resposta OHCIP non soportada do módem"
-+
-+#. Error
-+#: ../panel-plugin/cellmodem.c:1019
-+msgid "Cannot send PIN to modem"
-+msgstr "Non se puido enviar o PIN ao módem"
-+
-+#: ../panel-plugin/cellmodem.c:1055
-+msgid "Error in modem reply to CSQ"
-+msgstr "Erro na resposta do módem a CSQ"
-+
-+#: ../panel-plugin/cellmodem.c:1075
-+msgid "Invalid CSQ reply from modem"
-+msgstr "Resposta CSQ incorrecta do módem"
-+
-+#: ../panel-plugin/cellmodem.c:1276 ../panel-plugin/cellmodem.c:1603
-+msgid "Cannot open modem"
-+msgstr "Non se puido abrir o módem"
-+
-+#: ../panel-plugin/cellmodem.c:1429
-+msgid "Error reading from modem"
-+msgstr "Erro ao ler do módem"
-+
-+#: ../panel-plugin/cellmodem.c:1507
-+msgid "Error writing to modem"
-+msgstr "Ocorreu un erro ao escribir no módem"
-+
-+#: ../panel-plugin/cellmodem.c:1523
-+msgid "Modem did not reply to command"
-+msgstr "O módem non respondeu á orde"
-+
-+#: ../panel-plugin/cellmodem.c:1541
-+msgid "No driver defined"
-+msgstr "Non se definiu ningún controlador"
-+
-+#: ../panel-plugin/cellmodem.c:1546
-+msgid "No modem instance"
-+msgstr "Non hai ningunha instancia de módem"
-+
-+#: ../panel-plugin/cellmodem.c:1720
-+msgid "Modem initializing"
-+msgstr "Iniciando o módem"
-+
-+#: ../panel-plugin/cellmodem.c:1755
-+msgid "Invalid driver specified"
-+msgstr "Especificouse un controlador incorrecto"
-+
-+#. Error.
-+#: ../panel-plugin/pin_helper.c:31
-+msgid "Invalid PIN entered. PIN has 4 digits"
-+msgstr "Introduciuse un PIN incorrecto. O PIN ten 4 díxitos"
-+
-+#: ../panel-plugin/pin_helper.c:65
-+msgid "Enter PIN"
-+msgstr "Introduza o PIN"
-+
-+#: ../panel-plugin/pin_helper.c:77
-+msgid "Please enter PIN:"
-+msgstr "Introduza o PIN:"
-+
-+#: ../panel-plugin/preferences.c:285
-+msgid "Close"
-+msgstr "Pechar"
-+
-+#: ../panel-plugin/preferences.c:290
-+msgid "No known device found."
-+msgstr "Non se atopou ningún dispositivo coñecido"
-+
-+#: ../panel-plugin/preferences.c:292
-+msgid "The following devices were found:"
-+msgstr "Atopáronse os seguintes dispositivos:"
-+
-+#: ../panel-plugin/preferences.c:299
-+msgid "Use this device"
-+msgstr "Usar este dispositivo"
-+
-+#: ../panel-plugin/preferences.c:343
-+msgid "Configure Cell Modem Monitor"
-+msgstr "Configurar o monitor de módem móbil"
-+
-+#. The header - this was most copied from other sources
-+#: ../panel-plugin/preferences.c:356
-+msgid "Cellular Modem Monitor"
-+msgstr "Monitor de módem móbil"
-+
-+#: ../panel-plugin/preferences.c:387
-+msgid "Modem driver:"
-+msgstr "Controlador do módem:"
-+
-+#: ../panel-plugin/preferences.c:409
-+msgid "Modem speed:"
-+msgstr "Velocidade do módem:"
-+
-+#: ../panel-plugin/preferences.c:422
-+msgid "Modem device:"
-+msgstr "Dispositivo do módem:"
-+
-+#: ../panel-plugin/preferences.c:434
-+msgid "Autodetect modem..."
-+msgstr "Detectar automaticamente o módem..."
-+
-+#: ../panel-plugin/preferences.c:444
-+msgid "Maximum quality:"
-+msgstr "Calidade máxima:"
-+
-+#: ../panel-plugin/preferences.c:455
-+msgid "Low quality percentage:"
-+msgstr "Porcentaxe de calidade baixa:"
-+
-+#: ../panel-plugin/preferences.c:465
-+msgid "Critical quality percentage:"
-+msgstr "Porcentaxe de calidade crítica:"
-+
-+#: ../panel-plugin/preferences.c:479
-+msgid "Check for SMS every"
-+msgstr "Buscar SMS cada"
-+
-+#: ../panel-plugin/preferences.c:481
-+msgid "minutes"
-+msgstr "minutos"
-diff -Nur xfce4-cellmodem-plugin-0.0.5.orig/po/hu.po xfce4-cellmodem-plugin-0.0.5/po/hu.po
---- xfce4-cellmodem-plugin-0.0.5.orig/po/hu.po	1970-01-01 01:00:00.000000000 +0100
-+++ xfce4-cellmodem-plugin-0.0.5/po/hu.po	2011-04-09 02:49:11.740376233 +0200
-@@ -0,0 +1,243 @@
-+# Hungarian translation of xfce4-cellmodem-plugin
-+# Copyright 2009. Free Software Foundation, Inc.
-+# This file is distributed under the same license as the xfce4-cellmodem-plugin package.
-+#
-+# Gabor Kelemen <kelemeng at gnome dot hu>, 2009.
-+msgid ""
-+msgstr ""
-+"Project-Id-Version: xfce4-cellmodem-plugin\n"
-+"Report-Msgid-Bugs-To: \n"
-+"POT-Creation-Date: 2009-07-23 12:18+0200\n"
-+"PO-Revision-Date: 2009-07-23 18:54+0200\n"
-+"Last-Translator: Gabor Kelemen <kelemeng at gnome dot hu>\n"
-+"Language-Team: Hungarian <gnome at gnome dot hu>\n"
-+"MIME-Version: 1.0\n"
-+"Content-Type: text/plain; charset=UTF-8\n"
-+"Content-Transfer-Encoding: 8bit\n"
-+"X-Generator: KBabel 1.11.4\n"
-+"Plural-Forms:  nplurals=2; plural=(n != 1);\n"
-+
-+#: ../panel-plugin/cellmodem.c:482
-+msgid "Initializing plugin now"
-+msgstr "Bővítmény inicializálása"
-+
-+#: ../panel-plugin/cellmodem.c:505
-+#, c-format
-+msgid ""
-+"Error detected:\n"
-+"%s"
-+msgstr ""
-+"Hiba történt:\n"
-+"%s"
-+
-+#: ../panel-plugin/cellmodem.c:511
-+#, c-format
-+msgid "Not registered"
-+msgstr "Nincs regisztrálva"
-+
-+#: ../panel-plugin/cellmodem.c:514
-+#, c-format
-+msgid "Modem needs PIN"
-+msgstr "A modem PIN-kódot igényel"
-+
-+#: ../panel-plugin/cellmodem.c:517
-+#, c-format
-+msgid "Registering"
-+msgstr "Regisztráció"
-+
-+#: ../panel-plugin/cellmodem.c:520
-+#, c-format
-+msgid ""
-+"Registered [GPRS] to %s\n"
-+"Quality: %d (%d%%)"
-+msgstr ""
-+"[GPRS] regisztrálva ehhez: %s\n"
-+"Minőség: %d (%d%%)"
-+
-+#: ../panel-plugin/cellmodem.c:523
-+#, c-format
-+msgid ""
-+"Registered [UMTS] to %s\n"
-+"Quality: %d (%d%%)"
-+msgstr ""
-+"[UMTS] regisztrálva ehhez: %s\n"
-+"Minőség: %d (%d%%)"
-+
-+#: ../panel-plugin/cellmodem.c:526
-+#, c-format
-+msgid ""
-+"Registered [HSDPA] to %s\n"
-+"Quality: %d (%d%%)"
-+msgstr ""
-+"[HSDPA] regisztrálva ehhez: %s\n"
-+"Minőség: %d (%d%%)"
-+
-+#: ../panel-plugin/cellmodem.c:529
-+#, c-format
-+msgid ""
-+"Registered to %s\n"
-+"Quality: %d (%d%%)"
-+msgstr ""
-+"Regisztrálva ehhez: %s\n"
-+"Minőség: %d (%d%%)"
-+
-+#. Error
-+#: ../panel-plugin/cellmodem.c:687
-+msgid "Error in modem reply to CREG"
-+msgstr "Hiba a modem válaszában a CREG-re"
-+
-+#: ../panel-plugin/cellmodem.c:696
-+msgid "Invalid reply to +CREG"
-+msgstr "Érvénytelen válasz a +CREG-re"
-+
-+#: ../panel-plugin/cellmodem.c:721
-+msgid "Invalid CREG reply from modem"
-+msgstr "Érvénytelen CREG válasz a modemtől"
-+
-+#: ../panel-plugin/cellmodem.c:760
-+msgid "Error in modem reply to COPS"
-+msgstr "Hiba a modem válaszában a COPS-ra"
-+
-+#: ../panel-plugin/cellmodem.c:816
-+msgid "Invalid COPS reply from modem"
-+msgstr "Érvénytelen COPS válasz a modemtől"
-+
-+#: ../panel-plugin/cellmodem.c:844
-+msgid "Error in modem reply to CPIN"
-+msgstr "Hiba a modem válaszában a CPIN-re"
-+
-+#: ../panel-plugin/cellmodem.c:870
-+msgid "Invalid CPIN reply from modem"
-+msgstr "Érvénytelen CPIN válasz a modemtől"
-+
-+#: ../panel-plugin/cellmodem.c:875
-+msgid "Unsupportted CPIN reply from modem"
-+msgstr "Nem támogatott CPIN válasz a modemtől"
-+
-+#: ../panel-plugin/cellmodem.c:919 ../panel-plugin/cellmodem.c:973
-+msgid "Invalid OHCIP reply from modem"
-+msgstr "Érvénytelen OHCIP válasz a modemtől"
-+
-+#: ../panel-plugin/cellmodem.c:923 ../panel-plugin/cellmodem.c:977
-+msgid "Unsupportted OHCIP reply from modem"
-+msgstr "Nem támogatott OHCIP válasz a modemtől"
-+
-+#. Error
-+#: ../panel-plugin/cellmodem.c:1019
-+msgid "Cannot send PIN to modem"
-+msgstr "Nem küldhető PIN a modemnek"
-+
-+#: ../panel-plugin/cellmodem.c:1055
-+msgid "Error in modem reply to CSQ"
-+msgstr "Hiba a modem válaszában a CSQ-ra"
-+
-+#: ../panel-plugin/cellmodem.c:1075
-+msgid "Invalid CSQ reply from modem"
-+msgstr "Érvénytelen CSQ válasz a modemtől"
-+
-+#: ../panel-plugin/cellmodem.c:1276 ../panel-plugin/cellmodem.c:1603
-+msgid "Cannot open modem"
-+msgstr "Nem nyitható meg a modem"
-+
-+#: ../panel-plugin/cellmodem.c:1429
-+msgid "Error reading from modem"
-+msgstr "Hiba a modemről való olvasáskor"
-+
-+#: ../panel-plugin/cellmodem.c:1507
-+msgid "Error writing to modem"
-+msgstr "Hiba a modemre való íráskor"
-+
-+#: ../panel-plugin/cellmodem.c:1523
-+msgid "Modem did not reply to command"
-+msgstr "A modem nem válaszolt a parancsra"
-+
-+#: ../panel-plugin/cellmodem.c:1541
-+msgid "No driver defined"
-+msgstr "Nincs megadva meghajtó"
-+
-+#: ../panel-plugin/cellmodem.c:1546
-+msgid "No modem instance"
-+msgstr "Nincs modempéldány"
-+
-+#: ../panel-plugin/cellmodem.c:1720
-+msgid "Modem initializing"
-+msgstr "Modem előkészítése"
-+
-+#: ../panel-plugin/cellmodem.c:1755
-+msgid "Invalid driver specified"
-+msgstr "A megadott meghajtó érvénytelen"
-+
-+#. Error.
-+#: ../panel-plugin/pin_helper.c:31
-+msgid "Invalid PIN entered. PIN has 4 digits"
-+msgstr "Érvénytelen PIN-kódot adott meg. A PIN 4 számjegyből áll."
-+
-+#: ../panel-plugin/pin_helper.c:65
-+msgid "Enter PIN"
-+msgstr "PIN megadása"
-+
-+#: ../panel-plugin/pin_helper.c:77
-+msgid "Please enter PIN:"
-+msgstr "Adja meg a PIN-kódot:"
-+
-+#: ../panel-plugin/preferences.c:285
-+msgid "Close"
-+msgstr "Bezárás"
-+
-+#: ../panel-plugin/preferences.c:290
-+msgid "No known device found."
-+msgstr "Nem található ismert eszköz."
-+
-+#: ../panel-plugin/preferences.c:292
-+msgid "The following devices were found:"
-+msgstr "A következő eszközök észlelve:"
-+
-+#: ../panel-plugin/preferences.c:299
-+msgid "Use this device"
-+msgstr "Eszköz használata"
-+
-+#: ../panel-plugin/preferences.c:343
-+msgid "Configure Cell Modem Monitor"
-+msgstr "Mobilmodem-figyelő beállítása"
-+
-+#. The header - this was most copied from other sources
-+#: ../panel-plugin/preferences.c:356
-+msgid "Cellular Modem Monitor"
-+msgstr "Mobilmodem-figyelő"
-+
-+#: ../panel-plugin/preferences.c:387
-+msgid "Modem driver:"
-+msgstr "Modemmeghajtó:"
-+
-+#: ../panel-plugin/preferences.c:409
-+msgid "Modem speed:"
-+msgstr "Modem sebessége:"
-+
-+#: ../panel-plugin/preferences.c:422
-+msgid "Modem device:"
-+msgstr "Modemeszköz:"
-+
-+#: ../panel-plugin/preferences.c:434
-+msgid "Autodetect modem..."
-+msgstr "Modem automatikus felismerése…"
-+
-+#: ../panel-plugin/preferences.c:444
-+msgid "Maximum quality:"
-+msgstr "Maximális minőség:"
-+
-+#: ../panel-plugin/preferences.c:455
-+msgid "Low quality percentage:"
-+msgstr "Gyenge minőség százalékban:"
-+
-+#: ../panel-plugin/preferences.c:465
-+msgid "Critical quality percentage:"
-+msgstr "Kritikus minőség százalékban:"
-+
-+#: ../panel-plugin/preferences.c:479
-+msgid "Check for SMS every"
-+msgstr "SMS ellenőrzése minden"
-+
-+#: ../panel-plugin/preferences.c:481
-+msgid "minutes"
-+msgstr "percben"
-+
-diff -Nur xfce4-cellmodem-plugin-0.0.5.orig/po/id.po xfce4-cellmodem-plugin-0.0.5/po/id.po
---- xfce4-cellmodem-plugin-0.0.5.orig/po/id.po	1970-01-01 01:00:00.000000000 +0100
-+++ xfce4-cellmodem-plugin-0.0.5/po/id.po	2011-04-09 02:49:11.740376233 +0200
-@@ -0,0 +1,236 @@
-+# Indonesian translations for xfce4-cellmodem-plugin package.
-+# Copyright (C) 2006 Álvaro Lopes
-+# This file is distributed under the same license as the xfce4-cellmodem-plugin package.
-+# Andhika Padmawan <andhika.padmawan at gmail.com>, 2008.
-+#
-+msgid ""
-+msgstr ""
-+"Project-Id-Version: xfce4-cellmodem-plugin 0.0.4\n"
-+"Report-Msgid-Bugs-To: \n"
-+"POT-Creation-Date: 2008-07-16 12:55+0200\n"
-+"PO-Revision-Date: 2008-07-20 21:13+0700\n"
-+"Last-Translator: Andhika Padmawan <andhika.padmawan at gmail.com>\n"
-+"Language-Team: Indonesian <translation-team-id at lists.sourceforge.net>\n"
-+"MIME-Version: 1.0\n"
-+"Content-Type: text/plain; charset=UTF-8\n"
-+"Content-Transfer-Encoding: 8bit\n"
-+
-+#: ../panel-plugin/cellmodem.c:482
-+msgid "Initializing plugin now"
-+msgstr "Menginisialisasi plugin sekarang"
-+
-+#: ../panel-plugin/cellmodem.c:505
-+#, c-format
-+msgid ""
-+"Error detected:\n"
-+"%s"
-+msgstr ""
-+"Galat terdeteksi:\n"
-+"%s"
-+
-+#: ../panel-plugin/cellmodem.c:511
-+#, c-format
-+msgid "Not registered"
-+msgstr "Tak terdaftar"
-+
-+#: ../panel-plugin/cellmodem.c:514
-+#, c-format
-+msgid "Modem needs PIN"
-+msgstr "Modem memerlukan PIN"
-+
-+#: ../panel-plugin/cellmodem.c:517
-+#, c-format
-+msgid "Registering"
-+msgstr "Mendaftarkan"
-+
-+#: ../panel-plugin/cellmodem.c:520
-+#, c-format
-+msgid ""
-+"Registered [GPRS] to %s\n"
-+"Quality: %d (%d%%)"
-+msgstr ""
-+"[GPRS] terdaftar ke %s\n"
-+"Kualitas: %d (%d%%)"
-+
-+#: ../panel-plugin/cellmodem.c:523
-+#, c-format
-+msgid ""
-+"Registered [UMTS] to %s\n"
-+"Quality: %d (%d%%)"
-+msgstr ""
-+"[UMTS] terdaftar ke %s\n"
-+"Kualitas: %d (%d%%)"
-+
-+#: ../panel-plugin/cellmodem.c:526
-+#, c-format
-+msgid ""
-+"Registered [HSDPA] to %s\n"
-+"Quality: %d (%d%%)"
-+msgstr ""
-+"[HSDPA] terdaftar ke %s\n"
-+"Kualitas: %d (%d%%)"
-+
-+#: ../panel-plugin/cellmodem.c:529
-+#, c-format
-+msgid ""
-+"Registered to %s\n"
-+"Quality: %d (%d%%)"
-+msgstr ""
-+"Terdaftar ke %s\n"
-+"Kualitas: %d (%d%%)"
-+
-+#. Error
-+#: ../panel-plugin/cellmodem.c:687
-+msgid "Error in modem reply to CREG"
-+msgstr "Galat di balasan modem ke CREG"
-+
-+#: ../panel-plugin/cellmodem.c:696
-+msgid "Invalid reply to +CREG"
-+msgstr "Balasan tidak sah ke +CREG"
-+
-+#: ../panel-plugin/cellmodem.c:721
-+msgid "Invalid CREG reply from modem"
-+msgstr "Balasan CREG tidak sah dari modem"
-+
-+#: ../panel-plugin/cellmodem.c:760
-+msgid "Error in modem reply to COPS"
-+msgstr "Galat di balasan modem ke COPS"
-+
-+#: ../panel-plugin/cellmodem.c:816
-+msgid "Invalid COPS reply from modem"
-+msgstr "Balasan COPS tidak sah dari modem"
-+
-+#: ../panel-plugin/cellmodem.c:844
-+msgid "Error in modem reply to CPIN"
-+msgstr "Galat di balasan modem ke CPIN"
-+
-+#: ../panel-plugin/cellmodem.c:870
-+msgid "Invalid CPIN reply from modem"
-+msgstr "Balasan CPIN tidak sah dari modem"
-+
-+#: ../panel-plugin/cellmodem.c:875
-+msgid "Unsupportted CPIN reply from modem"
-+msgstr "Balasan CPIN tidak didukung dari modem"
-+
-+#: ../panel-plugin/cellmodem.c:919 ../panel-plugin/cellmodem.c:973
-+msgid "Invalid OHCIP reply from modem"
-+msgstr "Balasan OHCIP tidak sah dari modem"
-+
-+#: ../panel-plugin/cellmodem.c:923 ../panel-plugin/cellmodem.c:977
-+msgid "Unsupportted OHCIP reply from modem"
-+msgstr "Balasan OHCIP tidak didukung dari modem"
-+
-+#. Error
-+#: ../panel-plugin/cellmodem.c:1019
-+msgid "Cannot send PIN to modem"
-+msgstr "Tak dapat mengirim PIN ke modem"
-+
-+#: ../panel-plugin/cellmodem.c:1055
-+msgid "Error in modem reply to CSQ"
-+msgstr "Galat di balasan modem ke CSQ"
-+
-+#: ../panel-plugin/cellmodem.c:1075
-+msgid "Invalid CSQ reply from modem"
-+msgstr "Balasan CSQ tidak sah dari modem"
-+
-+#: ../panel-plugin/cellmodem.c:1276 ../panel-plugin/cellmodem.c:1603
-+msgid "Cannot open modem"
-+msgstr "Tak dapat membuka modem"
-+
-+#: ../panel-plugin/cellmodem.c:1429
-+msgid "Error reading from modem"
-+msgstr "Galat membaca dari modem"
-+
-+#: ../panel-plugin/cellmodem.c:1507
-+msgid "Error writing to modem"
-+msgstr "Galat menulis ke modem"
-+
-+#: ../panel-plugin/cellmodem.c:1523
-+msgid "Modem did not reply to command"
-+msgstr "Modem tidak membalas terhadap perintah"
-+
-+#: ../panel-plugin/cellmodem.c:1541
-+msgid "No driver defined"
-+msgstr "Tak ada driver yang didefinisikan"
-+
-+#: ../panel-plugin/cellmodem.c:1546
-+msgid "No modem instance"
-+msgstr "Tak ada instansi modem"
-+
-+#: ../panel-plugin/cellmodem.c:1720
-+msgid "Modem initializing"
-+msgstr "Modem menginisialisasi"
-+
-+#: ../panel-plugin/cellmodem.c:1755
-+msgid "Invalid driver specified"
-+msgstr "Driver yang ditentukan tidak sah"
-+
-+#. Error.
-+#: ../panel-plugin/pin_helper.c:31
-+msgid "Invalid PIN entered. PIN has 4 digits"
-+msgstr "PIN yang dimasukkan tidak sah. PIN memiliki 4 digit"
-+
-+#: ../panel-plugin/pin_helper.c:65
-+msgid "Enter PIN"
-+msgstr "Masukkan PIN"
-+
-+#: ../panel-plugin/pin_helper.c:77
-+msgid "Please enter PIN:"
-+msgstr "Silakan masukkan PIN:"
-+
-+#: ../panel-plugin/preferences.c:285
-+msgid "Close"
-+msgstr "Tutup"
-+
-+#: ../panel-plugin/preferences.c:290
-+msgid "No known device found."
-+msgstr "Tak menemukan divais yang dikenal."
-+
-+#: ../panel-plugin/preferences.c:292
-+msgid "The following devices were found:"
-+msgstr "Divais berikut ditemukan:"
-+
-+#: ../panel-plugin/preferences.c:299
-+msgid "Use this device"
-+msgstr "Gunakan divais ini"
-+
-+#: ../panel-plugin/preferences.c:343
-+msgid "Configure Cell Modem Monitor"
-+msgstr "Atur Monitor Modem Selular"
-+
-+#. The header - this was most copied from other sources
-+#: ../panel-plugin/preferences.c:356
-+msgid "Cellular Modem Monitor"
-+msgstr "Monitor Modem Selular"
-+
-+#: ../panel-plugin/preferences.c:387
-+msgid "Modem driver:"
-+msgstr "Driver modem:"
-+
-+#: ../panel-plugin/preferences.c:409
-+msgid "Modem speed:"
-+msgstr "Kecepatan modem:"
-+
-+#: ../panel-plugin/preferences.c:422
-+msgid "Modem device:"
-+msgstr "Divais modem:"
-+
-+#: ../panel-plugin/preferences.c:444
-+msgid "Maximum quality:"
-+msgstr "Kualitas maksimum:"
-+
-+#: ../panel-plugin/preferences.c:455
-+msgid "Low quality percentage:"
-+msgstr "Persentase kualitas rendah:"
-+
-+#: ../panel-plugin/preferences.c:465
-+msgid "Critical quality percentage:"
-+msgstr "Persentase kualitas kritis:"
-+
-+#: ../panel-plugin/preferences.c:479
-+msgid "Check for SMS every"
-+msgstr "Cek SMS tiap"
-+
-+#: ../panel-plugin/preferences.c:481
-+msgid "minutes"
-+msgstr "menit"
-diff -Nur xfce4-cellmodem-plugin-0.0.5.orig/po/it.po xfce4-cellmodem-plugin-0.0.5/po/it.po
---- xfce4-cellmodem-plugin-0.0.5.orig/po/it.po	1970-01-01 01:00:00.000000000 +0100
-+++ xfce4-cellmodem-plugin-0.0.5/po/it.po	2011-04-09 02:49:11.740376233 +0200
-@@ -0,0 +1,241 @@
-+# Italian translation for xfce4-cellmodem-plugin
-+# Copyright (C) 2008 Xfce Desktop Environment Project
-+# This file is distributed under the same license as the xfce4-cellmodem-plugin package.
-+# Walter Comunello <masterz3d at gmail.com>, 2008
-+#
-+msgid ""
-+msgstr ""
-+"Project-Id-Version: xfce4-cellmodem-plugin\n"
-+"Report-Msgid-Bugs-To: \n"
-+"POT-Creation-Date: 2008-07-22 19:01+0100\n"
-+"PO-Revision-Date: 2009-03-04 09:09+0100\n"
-+"Last-Translator: Walter Comunello <masterz3d at gmail.com>\n"
-+"Language-Team: Darkforge Team <www.darkforge.it>\n"
-+"MIME-Version: 1.0\n"
-+"Content-Type: text/plain; charset=utf-8\n"
-+"Content-Transfer-Encoding: 8bit\n"
-+
-+#: ../panel-plugin/cellmodem.c:482
-+msgid "Initializing plugin now"
-+msgstr "Inizializzazione del plugin in corso"
-+
-+#: ../panel-plugin/cellmodem.c:505
-+#, c-format
-+msgid ""
-+"Error detected:\n"
-+"%s"
-+msgstr ""
-+"Si è verificato un errore:\n"
-+"%s"
-+
-+#: ../panel-plugin/cellmodem.c:511
-+msgid "Not registered"
-+msgstr "Non registrato"
-+
-+#: ../panel-plugin/cellmodem.c:514
-+msgid "Modem needs PIN"
-+msgstr "Il modem ha bisogno del PIN"
-+
-+#: ../panel-plugin/cellmodem.c:517
-+msgid "Registering"
-+msgstr "Registrazione in corso"
-+
-+#: ../panel-plugin/cellmodem.c:520
-+#, c-format
-+msgid ""
-+"Registered [GPRS] to %s\n"
-+"Quality: %d (%d%%)"
-+msgstr ""
-+"Registrato [GPRS] in %s\n"
-+"Qualità: %d (%d%%)"
-+
-+#: ../panel-plugin/cellmodem.c:523
-+#, c-format
-+msgid ""
-+"Registered [UMTS] to %s\n"
-+"Quality: %d (%d%%)"
-+msgstr ""
-+"Registrato [UMTS] in %s\n"
-+"Qualità: %d (%d%%)"
-+
-+#: ../panel-plugin/cellmodem.c:526
-+#, c-format
-+msgid ""
-+"Registered [HSDPA] to %s\n"
-+"Quality: %d (%d%%)"
-+msgstr ""
-+"Registrato [HDSPA] in %s\n"
-+"Qualità: %d (%d%%)"
-+
-+#: ../panel-plugin/cellmodem.c:529
-+#, c-format
-+msgid ""
-+"Registered to %s\n"
-+"Quality: %d (%d%%)"
-+msgstr ""
-+"Registrato in %s\n"
-+"Qualità: %d (%d%%)"
-+
-+#. Error
-+#: ../panel-plugin/cellmodem.c:687
-+msgid "Error in modem reply to CREG"
-+msgstr "Errore nella risposta del modem in CREG"
-+
-+#: ../panel-plugin/cellmodem.c:696
-+msgid "Invalid reply to +CREG"
-+msgstr "Risposta non valida in +CREG"
-+
-+#: ../panel-plugin/cellmodem.c:721
-+msgid "Invalid CREG reply from modem"
-+msgstr "Risposta CREG non valida dal modem"
-+
-+#: ../panel-plugin/cellmodem.c:760
-+msgid "Error in modem reply to COPS"
-+msgstr "Errore nella risposta del modem in COPS"
-+
-+#: ../panel-plugin/cellmodem.c:816
-+msgid "Invalid COPS reply from modem"
-+msgstr "Risposta COPS non valida dal modem"
-+
-+#: ../panel-plugin/cellmodem.c:844
-+msgid "Error in modem reply to CPIN"
-+msgstr "Errore nella risposta del modem in CPIN"
-+
-+#: ../panel-plugin/cellmodem.c:870
-+msgid "Invalid CPIN reply from modem"
-+msgstr "Risposta CPIN non valida dal modem"
-+
-+#: ../panel-plugin/cellmodem.c:875
-+msgid "Unsupportted CPIN reply from modem"
-+msgstr "Risposta CPIN dal modem non supportata"
-+
-+#: ../panel-plugin/cellmodem.c:919
-+#: ../panel-plugin/cellmodem.c:973
-+msgid "Invalid OHCIP reply from modem"
-+msgstr "Risposta OHCIP dal modem non valida"
-+
-+#: ../panel-plugin/cellmodem.c:923
-+#: ../panel-plugin/cellmodem.c:977
-+msgid "Unsupportted OHCIP reply from modem"
-+msgstr "Risposta OHCIP dal modem non supportata"
-+
-+#. Error
-+#: ../panel-plugin/cellmodem.c:1019
-+msgid "Cannot send PIN to modem"
-+msgstr "Impossibile mandare il PIN al modem"
-+
-+#: ../panel-plugin/cellmodem.c:1055
-+msgid "Error in modem reply to CSQ"
-+msgstr "Errore nella risposta del modem in CSQ"
-+
-+#: ../panel-plugin/cellmodem.c:1075
-+msgid "Invalid CSQ reply from modem"
-+msgstr "Risposta CSQ dal modem non valida"
-+
-+#: ../panel-plugin/cellmodem.c:1276
-+#: ../panel-plugin/cellmodem.c:1603
-+msgid "Cannot open modem"
-+msgstr "Impossibile aprire il modem"
-+
-+#: ../panel-plugin/cellmodem.c:1429
-+msgid "Error reading from modem"
-+msgstr "Errore in lettura dal modem"
-+
-+#: ../panel-plugin/cellmodem.c:1507
-+msgid "Error writing to modem"
-+msgstr "Errore in scrittura verso il modem"
-+
-+#: ../panel-plugin/cellmodem.c:1523
-+msgid "Modem did not reply to command"
-+msgstr "Il modem non ha risposto al comando"
-+
-+#: ../panel-plugin/cellmodem.c:1541
-+msgid "No driver defined"
-+msgstr "Nessun driver definito"
-+
-+#: ../panel-plugin/cellmodem.c:1546
-+msgid "No modem instance"
-+msgstr "Nessuna istanza del modem"
-+
-+#: ../panel-plugin/cellmodem.c:1720
-+msgid "Modem initializing"
-+msgstr "Inizializzazione del modem"
-+
-+#: ../panel-plugin/cellmodem.c:1755
-+msgid "Invalid driver specified"
-+msgstr "Driver non valido specificato"
-+
-+#. Error.
-+#: ../panel-plugin/pin_helper.c:31
-+msgid "Invalid PIN entered. PIN has 4 digits"
-+msgstr "Il PIN immesso non è valido. Un PIN ha 4 cifre"
-+
-+#: ../panel-plugin/pin_helper.c:65
-+msgid "Enter PIN"
-+msgstr "Immettere PIN"
-+
-+#: ../panel-plugin/pin_helper.c:77
-+msgid "Please enter PIN:"
-+msgstr "Prego immettere il PIN:"
-+
-+#: ../panel-plugin/preferences.c:285
-+msgid "Close"
-+msgstr "Chiudi"
-+
-+#: ../panel-plugin/preferences.c:290
-+msgid "No known device found."
-+msgstr "Nessuna periferica conosciuta trovata."
-+
-+#: ../panel-plugin/preferences.c:292
-+msgid "The following devices were found:"
-+msgstr "Sono state trovate le seguenti periferiche:"
-+
-+#: ../panel-plugin/preferences.c:299
-+msgid "Use this device"
-+msgstr "Usa questa periferica"
-+
-+#: ../panel-plugin/preferences.c:343
-+msgid "Configure Cell Modem Monitor"
-+msgstr "Configura Cell Modem Monitor"
-+
-+#. The header - this was most copied from other sources
-+#: ../panel-plugin/preferences.c:356
-+msgid "Cellular Modem Monitor"
-+msgstr "Cellular Modem Monitor"
-+
-+#: ../panel-plugin/preferences.c:387
-+msgid "Modem driver:"
-+msgstr "Driver del modem:"
-+
-+#: ../panel-plugin/preferences.c:409
-+msgid "Modem speed:"
-+msgstr "Velocità del modem:"
-+
-+#: ../panel-plugin/preferences.c:422
-+msgid "Modem device:"
-+msgstr "Periferica modem:"
-+
-+#: ../panel-plugin/preferences.c:434
-+msgid "Autodetect modem..."
-+msgstr "Identificazione del modem..."
-+
-+#: ../panel-plugin/preferences.c:444
-+msgid "Maximum quality:"
-+msgstr "Qualità massima:"
-+
-+#: ../panel-plugin/preferences.c:455
-+msgid "Low quality percentage:"
-+msgstr "Percentuale di qualità bassa:"
-+
-+#: ../panel-plugin/preferences.c:465
-+msgid "Critical quality percentage:"
-+msgstr "Percentuale di qualità critica:"
-+
-+#: ../panel-plugin/preferences.c:479
-+msgid "Check for SMS every"
-+msgstr "Controlla SMS ogni"
-+
-+#: ../panel-plugin/preferences.c:481
-+msgid "minutes"
-+msgstr "minuti"
-+
-diff -Nur xfce4-cellmodem-plugin-0.0.5.orig/po/LINGUAS xfce4-cellmodem-plugin-0.0.5/po/LINGUAS
---- xfce4-cellmodem-plugin-0.0.5.orig/po/LINGUAS	1970-01-01 01:00:00.000000000 +0100
-+++ xfce4-cellmodem-plugin-0.0.5/po/LINGUAS	2011-04-09 02:49:11.739375988 +0200
-@@ -0,0 +1,2 @@
-+# set of available languages (in alphabetic order)
-+ar ast ca cs da de en_GB es eu fr gl hu id it lv pl pt pt_BR sv tr uk ur ur_PK zh_CN 
-diff -Nur xfce4-cellmodem-plugin-0.0.5.orig/po/lv.po xfce4-cellmodem-plugin-0.0.5/po/lv.po
---- xfce4-cellmodem-plugin-0.0.5.orig/po/lv.po	1970-01-01 01:00:00.000000000 +0100
-+++ xfce4-cellmodem-plugin-0.0.5/po/lv.po	2011-04-09 02:49:11.740376233 +0200
-@@ -0,0 +1,241 @@
-+# Latvian translations for xfce4-cellmodem-plugin package.
-+# Copyright (C) 2006 THE xfce4-cellmodem-plugin'S COPYRIGHT HOLDER
-+# This file is distributed under the same license as the xfce4-cellmodem-plugin package.
-+#
-+# Rihards Prieditis <rprieditis at inbox.lv>, 2007.
-+# Rihards Prieditis <rprieditis at gmail.com>, 2009.
-+msgid ""
-+msgstr ""
-+"Project-Id-Version: xfce4-cellmodem-plugin\n"
-+"Report-Msgid-Bugs-To: \n"
-+"POT-Creation-Date: 2008-07-22 19:01+0100\n"
-+"PO-Revision-Date: 2009-09-18 21:37+0100\n"
-+"Last-Translator: Rihards Prieditis <rprieditis at gmail.com>\n"
-+"Language-Team: Latvian <translation-team-lv at lists.sourceforge.net>\n"
-+"MIME-Version: 1.0\n"
-+"Content-Type: text/plain; charset=UTF-8\n"
-+"Content-Transfer-Encoding: 8bit\n"
-+"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2;\n"
-+"X-Generator: Lokalize 1.0\n"
-+
-+#: ../panel-plugin/cellmodem.c:482
-+msgid "Initializing plugin now"
-+msgstr "Spraudņa inicializācija"
-+
-+#: ../panel-plugin/cellmodem.c:505
-+#, c-format
-+msgid ""
-+"Error detected:\n"
-+"%s"
-+msgstr ""
-+"Kļūda:\n"
-+"%s"
-+
-+#: ../panel-plugin/cellmodem.c:511
-+msgid "Not registered"
-+msgstr "Nereģistrēts"
-+
-+#: ../panel-plugin/cellmodem.c:514
-+msgid "Modem needs PIN"
-+msgstr "Modēmam nepieciešams PIN"
-+
-+#: ../panel-plugin/cellmodem.c:517
-+msgid "Registering"
-+msgstr "Reģistrēju"
-+
-+#: ../panel-plugin/cellmodem.c:520
-+#, c-format
-+msgid ""
-+"Registered [GPRS] to %s\n"
-+"Quality: %d (%d%%)"
-+msgstr ""
-+"Reģistrēts [GPRS] uz %s\n"
-+"Kvalitāte: %d (%d%%)"
-+
-+#: ../panel-plugin/cellmodem.c:523
-+#, c-format
-+msgid ""
-+"Registered [UMTS] to %s\n"
-+"Quality: %d (%d%%)"
-+msgstr ""
-+"Reģistrēts [UMTS] uz %s\n"
-+"Kvalitāte:%d (%d%%)"
-+
-+#: ../panel-plugin/cellmodem.c:526
-+#, c-format
-+msgid ""
-+"Registered [HSDPA] to %s\n"
-+"Quality: %d (%d%%)"
-+msgstr ""
-+"Reģistrēts [HSDPA] uz %s\n"
-+"Kvalitāte: %d (%d%%)"
-+
-+#: ../panel-plugin/cellmodem.c:529
-+#, c-format
-+msgid ""
-+"Registered to %s\n"
-+"Quality: %d (%d%%)"
-+msgstr ""
-+"Reģistrēts uz %s\n"
-+"Kvalitāte: %d (%d%%)"
-+
-+#. Error
-+#: ../panel-plugin/cellmodem.c:687
-+msgid "Error in modem reply to CREG"
-+msgstr "Kļūda modēma CREG atbilde"
-+
-+#: ../panel-plugin/cellmodem.c:696
-+msgid "Invalid reply to +CREG"
-+msgstr "Nederīga +CREG atbilde"
-+
-+#: ../panel-plugin/cellmodem.c:721
-+msgid "Invalid CREG reply from modem"
-+msgstr "Nederīga +CREG atbilde no modēma"
-+
-+#: ../panel-plugin/cellmodem.c:760
-+msgid "Error in modem reply to COPS"
-+msgstr "Kļūda modēma COPS atbilde"
-+
-+#: ../panel-plugin/cellmodem.c:816
-+msgid "Invalid COPS reply from modem"
-+msgstr "Nederīga COPS atbilde no modēma"
-+
-+#: ../panel-plugin/cellmodem.c:844
-+msgid "Error in modem reply to CPIN"
-+msgstr "Kļūda modēma CPIN atbilde"
-+
-+#: ../panel-plugin/cellmodem.c:870
-+msgid "Invalid CPIN reply from modem"
-+msgstr "Nederīga CPIN atbilde no modēma"
-+
-+#: ../panel-plugin/cellmodem.c:875
-+msgid "Unsupportted CPIN reply from modem"
-+msgstr "Neatbalstīta CPIN atbilde no modēma"
-+
-+#: ../panel-plugin/cellmodem.c:919 ../panel-plugin/cellmodem.c:973
-+msgid "Invalid OHCIP reply from modem"
-+msgstr "Nederīga OHCIP atbilde no modēma"
-+
-+#: ../panel-plugin/cellmodem.c:923 ../panel-plugin/cellmodem.c:977
-+msgid "Unsupportted OHCIP reply from modem"
-+msgstr "Neatbalstīta OHCIP atbilde no modēma"
-+
-+#. Error
-+#: ../panel-plugin/cellmodem.c:1019
-+msgid "Cannot send PIN to modem"
-+msgstr "Nevar nosūtīt PIN uz modēmu"
-+
-+#: ../panel-plugin/cellmodem.c:1055
-+msgid "Error in modem reply to CSQ"
-+msgstr "Kļūda CSQ atbildē no modēma"
-+
-+#: ../panel-plugin/cellmodem.c:1075
-+msgid "Invalid CSQ reply from modem"
-+msgstr "Nederīga CSQ atbilde no modēma"
-+
-+#: ../panel-plugin/cellmodem.c:1276 ../panel-plugin/cellmodem.c:1603
-+msgid "Cannot open modem"
-+msgstr "Nevar atvērt modēmu"
-+
-+#: ../panel-plugin/cellmodem.c:1429
-+msgid "Error reading from modem"
-+msgstr "Kļūda lasot no  modēma"
-+
-+#: ../panel-plugin/cellmodem.c:1507
-+msgid "Error writing to modem"
-+msgstr "Kļūda rakstot modēmā"
-+
-+#: ../panel-plugin/cellmodem.c:1523
-+msgid "Modem did not reply to command"
-+msgstr "Modems neatbildēja uz komandu"
-+
-+#: ../panel-plugin/cellmodem.c:1541
-+msgid "No driver defined"
-+msgstr "Nav definēta draiveris"
-+
-+#: ../panel-plugin/cellmodem.c:1546
-+msgid "No modem instance"
-+msgstr "Nav neviena modēma"
-+
-+#: ../panel-plugin/cellmodem.c:1720
-+msgid "Modem initializing"
-+msgstr "Modēma inicializācija"
-+
-+#: ../panel-plugin/cellmodem.c:1755
-+msgid "Invalid driver specified"
-+msgstr "Norādīts nederīgs draiveris"
-+
-+#. Error.
-+#: ../panel-plugin/pin_helper.c:31
-+msgid "Invalid PIN entered. PIN has 4 digits"
-+msgstr "Ievadīts nederīgs PIN. PIN ir 4 simbolu garš."
-+
-+#: ../panel-plugin/pin_helper.c:65
-+msgid "Enter PIN"
-+msgstr "Ievadiet PIN"
-+
-+#: ../panel-plugin/pin_helper.c:77
-+msgid "Please enter PIN:"
-+msgstr "Lūdzu ievadiet PIN:"
-+
-+#: ../panel-plugin/preferences.c:285
-+msgid "Close"
-+msgstr "Aizvērt"
-+
-+#: ../panel-plugin/preferences.c:290
-+msgid "No known device found."
-+msgstr "Neviena zināma ierīce nav atrasta."
-+
-+#: ../panel-plugin/preferences.c:292
-+msgid "The following devices were found:"
-+msgstr "Tika atrastas sekojošas ierīces:"
-+
-+#: ../panel-plugin/preferences.c:299
-+msgid "Use this device"
-+msgstr "Izmantot šo ierīci"
-+
-+#: ../panel-plugin/preferences.c:343
-+msgid "Configure Cell Modem Monitor"
-+msgstr "Konfigurēt mobilā telefona modēma uzraugu"
-+
-+#. The header - this was most copied from other sources
-+#: ../panel-plugin/preferences.c:356
-+msgid "Cellular Modem Monitor"
-+msgstr "Mobilo telefonu modēmu uzraugs"
-+
-+#: ../panel-plugin/preferences.c:387
-+msgid "Modem driver:"
-+msgstr "Modēma datu nesējs:"
-+
-+#: ../panel-plugin/preferences.c:409
-+msgid "Modem speed:"
-+msgstr "Modēma ātrums:"
-+
-+#: ../panel-plugin/preferences.c:422
-+msgid "Modem device:"
-+msgstr "Modēma ierīce:"
-+
-+#: ../panel-plugin/preferences.c:434
-+msgid "Autodetect modem..."
-+msgstr "Automātiska modēma noteikšana..."
-+
-+#: ../panel-plugin/preferences.c:444
-+msgid "Maximum quality:"
-+msgstr "Maksimālā kvalitāte:"
-+
-+#: ../panel-plugin/preferences.c:455
-+msgid "Low quality percentage:"
-+msgstr "Zemas kavalitātes procents:"
-+
-+#: ../panel-plugin/preferences.c:465
-+msgid "Critical quality percentage:"
-+msgstr "Augstas kavalitātes procents:"
-+
-+#: ../panel-plugin/preferences.c:479
-+msgid "Check for SMS every"
-+msgstr "Pārbaudīt SMS katras"
-+
-+#: ../panel-plugin/preferences.c:481
-+msgid "minutes"
-+msgstr "minūtes"
-+
-diff -Nur xfce4-cellmodem-plugin-0.0.5.orig/po/pl.po xfce4-cellmodem-plugin-0.0.5/po/pl.po
---- xfce4-cellmodem-plugin-0.0.5.orig/po/pl.po	1970-01-01 01:00:00.000000000 +0100
-+++ xfce4-cellmodem-plugin-0.0.5/po/pl.po	2011-04-09 02:49:11.740376233 +0200
-@@ -0,0 +1,237 @@
-+# Czech translations for xfce4-cellmodem-plugin package.
-+# Copyright (C) 2006 THE xfce4-cellmodem-plugin'S COPYRIGHT HOLDER
-+# This file is distributed under the same license as the xfce4-cellmodem-plugin package.
-+#
-+#
-+msgid ""
-+msgstr ""
-+"Project-Id-Version: xfce4-cellmodem-plugin\n"
-+"Report-Msgid-Bugs-To: \n"
-+"POT-Creation-Date: 2008-07-22 19:01+0100\n"
-+"PO-Revision-Date: 2007-03-02 14:12+0200\n"
-+"Last-Translator: Piotr Maliński <riklaunim at gmail.com>\n"
-+"Language-Team: Polish <translation-team-pl at lists.sourceforge.net>\n"
-+"MIME-Version: 1.0\n"
-+"Content-Type: text/plain; charset=UTF-8\n"
-+"Content-Transfer-Encoding: 8bit\n"
-+
-+#: ../panel-plugin/cellmodem.c:482
-+msgid "Initializing plugin now"
-+msgstr "Ładuję wtyczkę"
-+
-+#: ../panel-plugin/cellmodem.c:505
-+#, c-format
-+msgid ""
-+"Error detected:\n"
-+"%s"
-+msgstr ""
-+"Wykryto Błąd:\n"
-+"%s"
-+
-+#: ../panel-plugin/cellmodem.c:511
-+msgid "Not registered"
-+msgstr "Nie zarejestrowany"
-+
-+#: ../panel-plugin/cellmodem.c:514
-+msgid "Modem needs PIN"
-+msgstr "Modem wymaga PIN"
-+
-+#: ../panel-plugin/cellmodem.c:517
-+msgid "Registering"
-+msgstr "Rejestruję"
-+
-+#: ../panel-plugin/cellmodem.c:520
-+#, c-format
-+msgid ""
-+"Registered [GPRS] to %s\n"
-+"Quality: %d (%d%%)"
-+msgstr ""
-+"Zarejestrowano [GPRS] na %s\n"
-+"Jakość: %d (%d%%)"
-+
-+#: ../panel-plugin/cellmodem.c:523
-+#, c-format
-+msgid ""
-+"Registered [UMTS] to %s\n"
-+"Quality: %d (%d%%)"
-+msgstr ""
-+"Zarejestrowano [UMTS] na %s\n"
-+"Jakość: %d (%d%%)"
-+
-+#: ../panel-plugin/cellmodem.c:526
-+#, c-format
-+msgid ""
-+"Registered [HSDPA] to %s\n"
-+"Quality: %d (%d%%)"
-+msgstr ""
-+"Zarejestrowano [HSDPA] na %s\n"
-+"Jakość: %d (%d%%)"
-+
-+#: ../panel-plugin/cellmodem.c:529
-+#, c-format
-+msgid ""
-+"Registered to %s\n"
-+"Quality: %d (%d%%)"
-+msgstr ""
-+"Zarejestrowano na %s\n"
-+"Jakość: %d (%d%%)"
-+
-+#. Error
-+#: ../panel-plugin/cellmodem.c:687
-+msgid "Error in modem reply to CREG"
-+msgstr "Błąd przy odpowiedzi modemu do CREG"
-+
-+#: ../panel-plugin/cellmodem.c:696
-+msgid "Invalid reply to +CREG"
-+msgstr "Błędna odpowiedź do +CREG"
-+
-+#: ../panel-plugin/cellmodem.c:721
-+msgid "Invalid CREG reply from modem"
-+msgstr "Błędna odpowiedź CREG modemu"
-+
-+#: ../panel-plugin/cellmodem.c:760
-+msgid "Error in modem reply to COPS"
-+msgstr "Błąd odpowiedzi modemu do COPS"
-+
-+#: ../panel-plugin/cellmodem.c:816
-+msgid "Invalid COPS reply from modem"
-+msgstr "Błędna odpowiedź COPS modemu"
-+
-+#: ../panel-plugin/cellmodem.c:844
-+msgid "Error in modem reply to CPIN"
-+msgstr "Błąd odpowiedzi modemu na CPIN"
-+
-+#: ../panel-plugin/cellmodem.c:870
-+msgid "Invalid CPIN reply from modem"
-+msgstr "Błędna odpowiedź CPIN modemu"
-+
-+#: ../panel-plugin/cellmodem.c:875
-+msgid "Unsupportted CPIN reply from modem"
-+msgstr "Niewspierana odpowiedź CPIN modemu"
-+
-+#: ../panel-plugin/cellmodem.c:919 ../panel-plugin/cellmodem.c:973
-+msgid "Invalid OHCIP reply from modem"
-+msgstr "Błędna odpowiedź OHCIP modemu"
-+
-+#: ../panel-plugin/cellmodem.c:923 ../panel-plugin/cellmodem.c:977
-+msgid "Unsupportted OHCIP reply from modem"
-+msgstr "Niewspierana odpowiedź OHCIP modemu"
-+
-+#. Error
-+#: ../panel-plugin/cellmodem.c:1019
-+msgid "Cannot send PIN to modem"
-+msgstr "Nie mogę wysłać PINu do modemu"
-+
-+#: ../panel-plugin/cellmodem.c:1055
-+msgid "Error in modem reply to CSQ"
-+msgstr "Błąd odpowiedzi modemu do CSQ"
-+
-+#: ../panel-plugin/cellmodem.c:1075
-+msgid "Invalid CSQ reply from modem"
-+msgstr "Błędna odpowiedź CSQ modemu"
-+
-+#: ../panel-plugin/cellmodem.c:1276 ../panel-plugin/cellmodem.c:1603
-+msgid "Cannot open modem"
-+msgstr "Nie mogę otworzyć modemu"
-+
-+#: ../panel-plugin/cellmodem.c:1429
-+msgid "Error reading from modem"
-+msgstr "Błąd odczytu z modemu"
-+
-+#: ../panel-plugin/cellmodem.c:1507
-+msgid "Error writing to modem"
-+msgstr "Błąd zapisu w modemie"
-+
-+#: ../panel-plugin/cellmodem.c:1523
-+msgid "Modem did not reply to command"
-+msgstr "Modem nie odpowiedział na polecenie"
-+
-+#: ../panel-plugin/cellmodem.c:1541
-+msgid "No driver defined"
-+msgstr "Nie określono sterownika"
-+
-+#: ../panel-plugin/cellmodem.c:1546
-+msgid "No modem instance"
-+msgstr "Brak instancji modemu"
-+
-+#: ../panel-plugin/cellmodem.c:1720
-+msgid "Modem initializing"
-+msgstr "Uruchamianie modemu"
-+
-+#: ../panel-plugin/cellmodem.c:1755
-+msgid "Invalid driver specified"
-+msgstr "Błędny sterownik"
-+
-+#. Error.
-+#: ../panel-plugin/pin_helper.c:31
-+msgid "Invalid PIN entered. PIN has 4 digits"
-+msgstr "Błędny PIN. Numer PIN składa się z 4 znaków"
-+
-+#: ../panel-plugin/pin_helper.c:65
-+msgid "Enter PIN"
-+msgstr "Podaj PIN"
-+
-+#: ../panel-plugin/pin_helper.c:77
-+msgid "Please enter PIN:"
-+msgstr "Podaj numer PIN:"
-+
-+#: ../panel-plugin/preferences.c:285
-+msgid "Close"
-+msgstr "Zamknij"
-+
-+#: ../panel-plugin/preferences.c:290
-+msgid "No known device found."
-+msgstr "Nie znaleziono urządzeń."
-+
-+#: ../panel-plugin/preferences.c:292
-+msgid "The following devices were found:"
-+msgstr "Znaleziono następujące urządzenia:"
-+
-+#: ../panel-plugin/preferences.c:299
-+msgid "Use this device"
-+msgstr "Użyj to urządzenie"
-+
-+#: ../panel-plugin/preferences.c:343
-+msgid "Configure Cell Modem Monitor"
-+msgstr "Konfiguracja Ekranu Modemu Komórki"
-+
-+#. The header - this was most copied from other sources
-+#: ../panel-plugin/preferences.c:356
-+msgid "Cellular Modem Monitor"
-+msgstr "Monitor Modemu Komórki"
-+
-+#: ../panel-plugin/preferences.c:387
-+msgid "Modem driver:"
-+msgstr "Sterownik:"
-+
-+#: ../panel-plugin/preferences.c:409
-+msgid "Modem speed:"
-+msgstr "Prędkość:"
-+
-+#: ../panel-plugin/preferences.c:422
-+msgid "Modem device:"
-+msgstr "Urządzenie:"
-+
-+#: ../panel-plugin/preferences.c:434
-+msgid "Autodetect modem..."
-+msgstr ""
-+
-+#: ../panel-plugin/preferences.c:444
-+msgid "Maximum quality:"
-+msgstr "Maksymalna jakość:"
-+
-+#: ../panel-plugin/preferences.c:455
-+msgid "Low quality percentage:"
-+msgstr "Niska jakość, procent:"
-+
-+#: ../panel-plugin/preferences.c:465
-+msgid "Critical quality percentage:"
-+msgstr "Krytyczna jakość, procent:"
-+
-+#: ../panel-plugin/preferences.c:479
-+msgid "Check for SMS every"
-+msgstr ""
-+
-+#: ../panel-plugin/preferences.c:481
-+msgid "minutes"
-+msgstr ""
-diff -Nur xfce4-cellmodem-plugin-0.0.5.orig/po/pt_BR.po xfce4-cellmodem-plugin-0.0.5/po/pt_BR.po
---- xfce4-cellmodem-plugin-0.0.5.orig/po/pt_BR.po	1970-01-01 01:00:00.000000000 +0100
-+++ xfce4-cellmodem-plugin-0.0.5/po/pt_BR.po	2011-04-09 02:49:11.740376233 +0200
-@@ -0,0 +1,238 @@
-+# Tradução portuguesa para o xfce4-cellmodem-plugin
-+# Copyright (C) 2006 Álvaro Lopes
-+# This file is distributed under the same license as the xfce4-cellmodem-plugin package.
-+# Og Maciel <ogmaciel at gnome.org>, 2008.
-+# Fábio Nogueira <deb-user-ba at ubuntu.com>, 2008.
-+#
-+msgid ""
-+msgstr ""
-+"Project-Id-Version: xfce4-cellmodem-plugin 0.0.4\n"
-+"Report-Msgid-Bugs-To: \n"
-+"POT-Creation-Date: 2008-07-22 19:01+0100\n"
-+"PO-Revision-Date: 2008-07-16 09:29-0300\n"
-+"Last-Translator: Fábio Nogueira <deb-user-ba at ubuntu.com>\n"
-+"Language-Team: Brazilian Portuguese <ldp-br at bazar2.conectiva.com.br>\n"
-+"MIME-Version: 1.0\n"
-+"Content-Type: text/plain; charset=UTF-8\n"
-+"Content-Transfer-Encoding: 8bit\n"
-+
-+#: ../panel-plugin/cellmodem.c:482
-+msgid "Initializing plugin now"
-+msgstr "Inicializando o plug-in"
-+
-+#: ../panel-plugin/cellmodem.c:505
-+#, c-format
-+msgid ""
-+"Error detected:\n"
-+"%s"
-+msgstr ""
-+"Erro detectado:\n"
-+"%s"
-+
-+#: ../panel-plugin/cellmodem.c:511
-+msgid "Not registered"
-+msgstr "Não registrado"
-+
-+#: ../panel-plugin/cellmodem.c:514
-+msgid "Modem needs PIN"
-+msgstr "O modem necessita de um PIN"
-+
-+#: ../panel-plugin/cellmodem.c:517
-+msgid "Registering"
-+msgstr "Registrando"
-+
-+#: ../panel-plugin/cellmodem.c:520
-+#, c-format
-+msgid ""
-+"Registered [GPRS] to %s\n"
-+"Quality: %d (%d%%)"
-+msgstr ""
-+"Registrado [GPRS] em %s\n"
-+"Qualidade: %d (%d%%)"
-+
-+#: ../panel-plugin/cellmodem.c:523
-+#, c-format
-+msgid ""
-+"Registered [UMTS] to %s\n"
-+"Quality: %d (%d%%)"
-+msgstr ""
-+"Registrado [UMTS] em %s\n"
-+"Qualidade: %d (%d%%)"
-+
-+#: ../panel-plugin/cellmodem.c:526
-+#, c-format
-+msgid ""
-+"Registered [HSDPA] to %s\n"
-+"Quality: %d (%d%%)"
-+msgstr ""
-+"Registrado [HSDPA] em %s\n"
-+"Qualidade: %d (%d%%)"
-+
-+#: ../panel-plugin/cellmodem.c:529
-+#, c-format
-+msgid ""
-+"Registered to %s\n"
-+"Quality: %d (%d%%)"
-+msgstr ""
-+"Registrado em %s\n"
-+"Qualidade: %d (%d%%)"
-+
-+#. Error
-+#: ../panel-plugin/cellmodem.c:687
-+msgid "Error in modem reply to CREG"
-+msgstr "Erro na resposta CREG do modem"
-+
-+#: ../panel-plugin/cellmodem.c:696
-+msgid "Invalid reply to +CREG"
-+msgstr "Resposta inválida a +CREG"
-+
-+#: ../panel-plugin/cellmodem.c:721
-+msgid "Invalid CREG reply from modem"
-+msgstr "Resposta CREG inválida do modem"
-+
-+#: ../panel-plugin/cellmodem.c:760
-+msgid "Error in modem reply to COPS"
-+msgstr "Erro na resposta COPS do modem"
-+
-+#: ../panel-plugin/cellmodem.c:816
-+msgid "Invalid COPS reply from modem"
-+msgstr "Resposta COPS inválida do modem"
-+
-+#: ../panel-plugin/cellmodem.c:844
-+msgid "Error in modem reply to CPIN"
-+msgstr "Erro na resposta CPIN do modem"
-+
-+#: ../panel-plugin/cellmodem.c:870
-+msgid "Invalid CPIN reply from modem"
-+msgstr "Resposta CPIN inválida do modem"
-+
-+#: ../panel-plugin/cellmodem.c:875
-+msgid "Unsupportted CPIN reply from modem"
-+msgstr "Resposta CPIN não suportada do modem"
-+
-+#: ../panel-plugin/cellmodem.c:919 ../panel-plugin/cellmodem.c:973
-+msgid "Invalid OHCIP reply from modem"
-+msgstr "Resposta OHCIP inválida do modem"
-+
-+#: ../panel-plugin/cellmodem.c:923 ../panel-plugin/cellmodem.c:977
-+msgid "Unsupportted OHCIP reply from modem"
-+msgstr "Resposta OHCIP não suportada do modem"
-+
-+#. Error
-+#: ../panel-plugin/cellmodem.c:1019
-+msgid "Cannot send PIN to modem"
-+msgstr "Não foi possível enviar o PIN ao modem"
-+
-+#: ../panel-plugin/cellmodem.c:1055
-+msgid "Error in modem reply to CSQ"
-+msgstr "Erro na resposta CSQ do modem"
-+
-+#: ../panel-plugin/cellmodem.c:1075
-+msgid "Invalid CSQ reply from modem"
-+msgstr "Resposta CSQ inválida do modem"
-+
-+#: ../panel-plugin/cellmodem.c:1276 ../panel-plugin/cellmodem.c:1603
-+msgid "Cannot open modem"
-+msgstr "Não foi possível abrir o modem"
-+
-+#: ../panel-plugin/cellmodem.c:1429
-+msgid "Error reading from modem"
-+msgstr "Erro ao ler do modem"
-+
-+#: ../panel-plugin/cellmodem.c:1507
-+msgid "Error writing to modem"
-+msgstr "Erro ao escrever no modem"
-+
-+#: ../panel-plugin/cellmodem.c:1523
-+msgid "Modem did not reply to command"
-+msgstr "O modem não respondeu ao comando"
-+
-+#: ../panel-plugin/cellmodem.c:1541
-+msgid "No driver defined"
-+msgstr "Nenhum driver definido"
-+
-+#: ../panel-plugin/cellmodem.c:1546
-+msgid "No modem instance"
-+msgstr "Nenhuma instância do modem"
-+
-+#: ../panel-plugin/cellmodem.c:1720
-+msgid "Modem initializing"
-+msgstr "Inicializando o modem"
-+
-+#: ../panel-plugin/cellmodem.c:1755
-+msgid "Invalid driver specified"
-+msgstr "Driver especificado inválido"
-+
-+#. Error.
-+#: ../panel-plugin/pin_helper.c:31
-+msgid "Invalid PIN entered. PIN has 4 digits"
-+msgstr "PIN inválido. O PIN tem 4 dígitos"
-+
-+#: ../panel-plugin/pin_helper.c:65
-+msgid "Enter PIN"
-+msgstr "Digite o PIN"
-+
-+#: ../panel-plugin/pin_helper.c:77
-+msgid "Please enter PIN:"
-+msgstr "Por favor digite o PIN:"
-+
-+#: ../panel-plugin/preferences.c:285
-+msgid "Close"
-+msgstr "Fechar"
-+
-+#: ../panel-plugin/preferences.c:290
-+msgid "No known device found."
-+msgstr "Não foi encontrado nenhum dispositivo conhecido."
-+
-+#: ../panel-plugin/preferences.c:292
-+msgid "The following devices were found:"
-+msgstr "Os seguintes dispositivos foram encontrados:"
-+
-+#: ../panel-plugin/preferences.c:299
-+msgid "Use this device"
-+msgstr "Usar este dispositivo"
-+
-+#: ../panel-plugin/preferences.c:343
-+msgid "Configure Cell Modem Monitor"
-+msgstr "Configurar o monitor de modem celular"
-+
-+#. The header - this was most copied from other sources
-+#: ../panel-plugin/preferences.c:356
-+msgid "Cellular Modem Monitor"
-+msgstr "Monitor de modem celular"
-+
-+#: ../panel-plugin/preferences.c:387
-+msgid "Modem driver:"
-+msgstr "Driver do modem:"
-+
-+#: ../panel-plugin/preferences.c:409
-+msgid "Modem speed:"
-+msgstr "Velocidade do modem:"
-+
-+#: ../panel-plugin/preferences.c:422
-+msgid "Modem device:"
-+msgstr "Dispositivo do modem:"
-+
-+#: ../panel-plugin/preferences.c:434
-+msgid "Autodetect modem..."
-+msgstr "Autodetectar modem..."
-+
-+#: ../panel-plugin/preferences.c:444
-+msgid "Maximum quality:"
-+msgstr "Qualidade máxima:"
-+
-+#: ../panel-plugin/preferences.c:455
-+msgid "Low quality percentage:"
-+msgstr "Porcentagem de baixa qualidade:"
-+
-+#: ../panel-plugin/preferences.c:465
-+msgid "Critical quality percentage:"
-+msgstr "Porcentagem de qualidade crítica:"
-+
-+#: ../panel-plugin/preferences.c:479
-+msgid "Check for SMS every"
-+msgstr "Checar por SMS a cada"
-+
-+#: ../panel-plugin/preferences.c:481
-+msgid "minutes"
-+msgstr "minutos"
-diff -Nur xfce4-cellmodem-plugin-0.0.5.orig/po/pt.po xfce4-cellmodem-plugin-0.0.5/po/pt.po
---- xfce4-cellmodem-plugin-0.0.5.orig/po/pt.po	2006-11-02 17:08:00.000000000 +0100
-+++ xfce4-cellmodem-plugin-0.0.5/po/pt.po	2011-04-09 02:49:11.740376233 +0200
-@@ -1,26 +1,27 @@
--# Tradu��o portuguesa para o xfce4-cellmodem-plugin
--# Copyright (C) 2006 �lvaro Lopes
-+# Tradução portuguesa para o xfce4-cellmodem-plugin
-+# Copyright (C) 2006 Álvaro Lopes
- # This file is distributed under the same license as the xfce4-cellmodem-plugin package.
--# �lvaro Lopes <alvieboy at alvie.com>, 2006
-+# Álvaro Lopes <alvieboy at alvie.com>, 2006
- #
--#, fuzzy
- msgid ""
- msgstr ""
--"Project-Id-Version: xfce4-cellmodem-plugin 0.0.4\n"
-+"Project-Id-Version: xfce4-cellmodem-plugin\n"
- "Report-Msgid-Bugs-To: \n"
--"POT-Creation-Date: 2006-11-02 16:08+0000\n"
--"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
--"Last-Translator: �lvaro Lopes <alvieboy at alvie.com>\n"
--"Language-Team: LANGUAGE <LL at li.org>\n"
-+"POT-Creation-Date: 2008-07-22 19:01+0100\n"
-+"PO-Revision-Date: 2010-11-17 14:33-0000\n"
-+"Last-Translator: Sérgio Marques <smarquespt at gmail.com>\n"
-+"Language-Team: \n"
- "MIME-Version: 1.0\n"
--"Content-Type: text/plain; charset=ISO-8859-1\n"
-+"Content-Type: text/plain; charset=utf-8\n"
- "Content-Transfer-Encoding: 8bit\n"
-+"X-Poedit-Language: Portuguese\n"
-+"X-Poedit-Country: Porrtugal\n"
- 
--#: ../panel-plugin/cellmodem.c:462
-+#: ../panel-plugin/cellmodem.c:482
- msgid "Initializing plugin now"
--msgstr ""
-+msgstr "Iniciando o \"plug-in\""
- 
--#: ../panel-plugin/cellmodem.c:485
-+#: ../panel-plugin/cellmodem.c:505
- #, c-format
- msgid ""
- "Error detected:\n"
-@@ -29,196 +30,214 @@
- "Erro detectado:\n"
- "%s"
- 
--#: ../panel-plugin/cellmodem.c:491
-+#: ../panel-plugin/cellmodem.c:511
- msgid "Not registered"
--msgstr "N�o registrado na rede"
-+msgstr "Não registado"
- 
--#: ../panel-plugin/cellmodem.c:494
-+#: ../panel-plugin/cellmodem.c:514
- msgid "Modem needs PIN"
- msgstr "Modem necessita de PIN"
- 
--#: ../panel-plugin/cellmodem.c:497
-+#: ../panel-plugin/cellmodem.c:517
- msgid "Registering"
--msgstr "A registrar na rede"
-+msgstr "A registar"
- 
--#: ../panel-plugin/cellmodem.c:500
-+#: ../panel-plugin/cellmodem.c:520
- #, c-format
- msgid ""
- "Registered [GPRS] to %s\n"
- "Quality: %d (%d%%)"
- msgstr ""
--"Registrado [GPRS] na rede %s\n"
-+"[GPRS] registado em %s\n"
- "Qualidade: %d (%d%%)"
- 
--#: ../panel-plugin/cellmodem.c:503
-+#: ../panel-plugin/cellmodem.c:523
- #, c-format
- msgid ""
- "Registered [UMTS] to %s\n"
- "Quality: %d (%d%%)"
- msgstr ""
--"Registrado [UMTS] na rede %s\n"
-+"[UMTS] registado em %s\n"
- "Qualidade: %d (%d%%)"
- 
--#: ../panel-plugin/cellmodem.c:506
-+#: ../panel-plugin/cellmodem.c:526
- #, c-format
- msgid ""
- "Registered [HSDPA] to %s\n"
- "Quality: %d (%d%%)"
- msgstr ""
--"Registrado [HSDPA] na rede %s\n"
-+"[HSDPA] registado em %s\n"
- "Qualidade: %d (%d%%)"
- 
--#: ../panel-plugin/cellmodem.c:509
-+#: ../panel-plugin/cellmodem.c:529
- #, c-format
- msgid ""
- "Registered to %s\n"
- "Quality: %d (%d%%)"
- msgstr ""
--"Registrado na rede %s\n"
-+"Registrado em %s\n"
- "Qualidade: %d (%d%%)"
- 
- #. Error
--#: ../panel-plugin/cellmodem.c:667
-+#: ../panel-plugin/cellmodem.c:687
- msgid "Error in modem reply to CREG"
- msgstr "Erro na resposta CREG do modem"
- 
--#: ../panel-plugin/cellmodem.c:676
-+#: ../panel-plugin/cellmodem.c:696
- msgid "Invalid reply to +CREG"
--msgstr "Resposta inv�lida a +CREG"
-+msgstr "Resposta inválida a +CREG"
- 
--#: ../panel-plugin/cellmodem.c:701
-+#: ../panel-plugin/cellmodem.c:721
- msgid "Invalid CREG reply from modem"
--msgstr "Resposta CREG inv�lida"
-+msgstr "Resposta CREG inválida"
- 
--#: ../panel-plugin/cellmodem.c:739
-+#: ../panel-plugin/cellmodem.c:760
- msgid "Error in modem reply to COPS"
- msgstr "Erro na resposta COPS do modem"
- 
--#: ../panel-plugin/cellmodem.c:783
-+#: ../panel-plugin/cellmodem.c:816
- msgid "Invalid COPS reply from modem"
--msgstr "Resposta COPS inv�lida"
-+msgstr "Resposta COPS inválida"
- 
--#: ../panel-plugin/cellmodem.c:811
-+#: ../panel-plugin/cellmodem.c:844
- msgid "Error in modem reply to CPIN"
- msgstr "Erro na resposta CPIN do modem"
- 
--#: ../panel-plugin/cellmodem.c:837
-+#: ../panel-plugin/cellmodem.c:870
- msgid "Invalid CPIN reply from modem"
--msgstr "Resposta CPIN inv�lida"
-+msgstr "Resposta CPIN inválida"
- 
--#: ../panel-plugin/cellmodem.c:842
-+#: ../panel-plugin/cellmodem.c:875
- msgid "Unsupportted CPIN reply from modem"
--msgstr "Resposta CPIN n�o suportada"
-+msgstr "Resposta CPIN não suportada"
- 
--#: ../panel-plugin/cellmodem.c:886
--#, fuzzy
-+#: ../panel-plugin/cellmodem.c:919
-+#: ../panel-plugin/cellmodem.c:973
- msgid "Invalid OHCIP reply from modem"
--msgstr "Resposta COPS inv�lida"
-+msgstr "Resposta OHCIP inválida"
- 
--#: ../panel-plugin/cellmodem.c:891
--#, fuzzy
-+#: ../panel-plugin/cellmodem.c:923
-+#: ../panel-plugin/cellmodem.c:977
- msgid "Unsupportted OHCIP reply from modem"
--msgstr "Resposta CPIN n�o suportada"
-+msgstr "Resposta OHCIP não suportada"
- 
- #. Error
--#: ../panel-plugin/cellmodem.c:904
-+#: ../panel-plugin/cellmodem.c:1019
- msgid "Cannot send PIN to modem"
--msgstr "N�o foi poss�vel introduzir o PIN no modem"
-+msgstr "Não foi possível introduzir o PIN no modem"
- 
--#: ../panel-plugin/cellmodem.c:940
-+#: ../panel-plugin/cellmodem.c:1055
- msgid "Error in modem reply to CSQ"
- msgstr "Erro na resposta CSQ do modem"
- 
--#: ../panel-plugin/cellmodem.c:960
-+#: ../panel-plugin/cellmodem.c:1075
- msgid "Invalid CSQ reply from modem"
--msgstr "Resposta CSQ inv�lida"
-+msgstr "Resposta CSQ inválida"
- 
--#: ../panel-plugin/cellmodem.c:1084 ../panel-plugin/cellmodem.c:1398
-+#: ../panel-plugin/cellmodem.c:1276
-+#: ../panel-plugin/cellmodem.c:1603
- msgid "Cannot open modem"
--msgstr "N�o foi poss�vel abrir o modem"
-+msgstr "Não foi possível abrir o modem"
- 
--#: ../panel-plugin/cellmodem.c:1228
-+#: ../panel-plugin/cellmodem.c:1429
- msgid "Error reading from modem"
- msgstr "Erro ao ler do modem"
- 
--#: ../panel-plugin/cellmodem.c:1305
-+#: ../panel-plugin/cellmodem.c:1507
- msgid "Error writing to modem"
- msgstr "Erro ao escrever para o modem"
- 
--#: ../panel-plugin/cellmodem.c:1321
-+#: ../panel-plugin/cellmodem.c:1523
- msgid "Modem did not reply to command"
--msgstr "O modem n�o respondeu ao comando"
-+msgstr "O modem não respondeu ao comando"
- 
--#: ../panel-plugin/cellmodem.c:1339
-+#: ../panel-plugin/cellmodem.c:1541
- msgid "No driver defined"
--msgstr "N�o existe um controlador definido"
-+msgstr "Nenhum controlador definido"
- 
--#: ../panel-plugin/cellmodem.c:1344
-+#: ../panel-plugin/cellmodem.c:1546
- msgid "No modem instance"
--msgstr "N�o existe inst�ncia do modem"
-+msgstr "Nenhuma instância de modem"
- 
--#: ../panel-plugin/cellmodem.c:1509
-+#: ../panel-plugin/cellmodem.c:1720
- msgid "Modem initializing"
- msgstr "Modem a inicializar"
- 
--#: ../panel-plugin/cellmodem.c:1544
-+#: ../panel-plugin/cellmodem.c:1755
- msgid "Invalid driver specified"
--msgstr "Controlador inv�lido especificado"
-+msgstr "Controlador inválido"
- 
- #. Error.
- #: ../panel-plugin/pin_helper.c:31
- msgid "Invalid PIN entered. PIN has 4 digits"
--msgstr "Introduziu um PIN inv�lido. O PIN tem 4 d�gitos"
-+msgstr "Indicou um PIN inválido. O PIN tem 4 dígitos"
- 
- #: ../panel-plugin/pin_helper.c:65
- msgid "Enter PIN"
--msgstr "Introduza o PIN"
-+msgstr "Indique o PIN"
- 
- #: ../panel-plugin/pin_helper.c:77
- msgid "Please enter PIN:"
--msgstr "Por favor introduza o PIN:"
-+msgstr "Por favor, indique o PIN:"
- 
--#: ../panel-plugin/preferences.c:214
-+#: ../panel-plugin/preferences.c:285
- msgid "Close"
- msgstr "Fechar"
- 
--#: ../panel-plugin/preferences.c:219
-+#: ../panel-plugin/preferences.c:290
- msgid "No known device found."
--msgstr "N�o foi encontrado nenhum dispositivo conhecido"
-+msgstr "Não foi encontrado qualquer dispositivo conhecido"
- 
--#: ../panel-plugin/preferences.c:221
-+#: ../panel-plugin/preferences.c:292
- msgid "The following devices were found:"
- msgstr "Os seguintes dispositivos foram encontrados:"
- 
--#: ../panel-plugin/preferences.c:228
-+#: ../panel-plugin/preferences.c:299
- msgid "Use this device"
--msgstr "Usar este dispositivo"
-+msgstr "Utilizar este dispositivo"
- 
--#: ../panel-plugin/preferences.c:272
-+#: ../panel-plugin/preferences.c:343
- msgid "Configure Cell Modem Monitor"
--msgstr "Configurar o Monitor de Modem Celular"
-+msgstr "Configurar o o monitor do modem"
- 
- #. The header - this was most copied from other sources
--#: ../panel-plugin/preferences.c:285
-+#: ../panel-plugin/preferences.c:356
- msgid "Cellular Modem Monitor"
--msgstr "Monitor de Modem Celular"
-+msgstr "Cellular Modem Monitor"
- 
--#: ../panel-plugin/preferences.c:316
-+#: ../panel-plugin/preferences.c:387
- msgid "Modem driver:"
- msgstr "Controlador do modem:"
- 
--#: ../panel-plugin/preferences.c:338
-+#: ../panel-plugin/preferences.c:409
-+msgid "Modem speed:"
-+msgstr "Velocidade do modem:"
-+
-+#: ../panel-plugin/preferences.c:422
- msgid "Modem device:"
--msgstr "Dispositivo do Modem:"
-+msgstr "Dispositivo:"
- 
--#: ../panel-plugin/preferences.c:360
-+#: ../panel-plugin/preferences.c:434
-+msgid "Autodetect modem..."
-+msgstr "Auto-detectar modem..."
-+
-+#: ../panel-plugin/preferences.c:444
- msgid "Maximum quality:"
--msgstr "Qualidade m�xima:"
-+msgstr "Qualidade máxima:"
- 
--#: ../panel-plugin/preferences.c:371
-+#: ../panel-plugin/preferences.c:455
- msgid "Low quality percentage:"
- msgstr "Percentagem para baixa qualidade:"
- 
--#: ../panel-plugin/preferences.c:381
-+#: ../panel-plugin/preferences.c:465
- msgid "Critical quality percentage:"
--msgstr "Percentagem para qualidade cr�tica:"
-+msgstr "Percentagem para qualidade crítica:"
-+
-+#: ../panel-plugin/preferences.c:479
-+msgid "Check for SMS every"
-+msgstr "Verificar SMS a cada"
-+
-+#: ../panel-plugin/preferences.c:481
-+msgid "minutes"
-+msgstr "minutos"
-+
-diff -Nur xfce4-cellmodem-plugin-0.0.5.orig/po/ru.po xfce4-cellmodem-plugin-0.0.5/po/ru.po
---- xfce4-cellmodem-plugin-0.0.5.orig/po/ru.po	1970-01-01 01:00:00.000000000 +0100
-+++ xfce4-cellmodem-plugin-0.0.5/po/ru.po	2011-04-09 02:49:11.740376233 +0200
-@@ -0,0 +1,240 @@
-+msgid ""
-+msgstr ""
-+"Project-Id-Version: xfce4-cellmodem-plugin\n"
-+"Report-Msgid-Bugs-To: \n"
-+"POT-Creation-Date: 2008-08-12 12:26+0000\n"
-+"PO-Revision-Date: 2010-03-15 14:23+0300\n"
-+"Last-Translator: Andriy Kovtun <kovtunos at yandex.ru>\n"
-+"Language-Team: Russian <xfce4-dev at xfce.org>\n"
-+"MIME-Version: 1.0\n"
-+"Content-Type: text/plain; charset=UTF-8\n"
-+"Content-Transfer-Encoding: 8bit\n"
-+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
-+
-+#: ../panel-plugin/cellmodem.c:482
-+msgid "Initializing plugin now"
-+msgstr "Инициализировать модуль"
-+
-+#: ../panel-plugin/cellmodem.c:505
-+#, c-format
-+msgid ""
-+"Error detected:\n"
-+"%s"
-+msgstr ""
-+"Найдена ошибка:\n"
-+"%s"
-+
-+#: ../panel-plugin/cellmodem.c:511
-+#, c-format
-+msgid "Not registered"
-+msgstr "Не зарегистрировано"
-+
-+#: ../panel-plugin/cellmodem.c:514
-+#, c-format
-+msgid "Modem needs PIN"
-+msgstr "Для модема необходим PIN"
-+
-+#: ../panel-plugin/cellmodem.c:517
-+#, c-format
-+msgid "Registering"
-+msgstr "Регистрация"
-+
-+#: ../panel-plugin/cellmodem.c:520
-+#, c-format
-+msgid ""
-+"Registered [GPRS] to %s\n"
-+"Quality: %d (%d%%)"
-+msgstr ""
-+"Зарегистрирован [GPRS] для %s\n"
-+"Качество: %d (%d%%)"
-+
-+#: ../panel-plugin/cellmodem.c:523
-+#, c-format
-+msgid ""
-+"Registered [UMTS] to %s\n"
-+"Quality: %d (%d%%)"
-+msgstr ""
-+"Зарегистрирован [UMTS] для %s\n"
-+"Качество: %d (%d%%)"
-+
-+#: ../panel-plugin/cellmodem.c:526
-+#, c-format
-+msgid ""
-+"Registered [HSDPA] to %s\n"
-+"Quality: %d (%d%%)"
-+msgstr ""
-+"Зарегистрирован [HSDPA] для %s\n"
-+"Качество: %d (%d%%)"
-+
-+#: ../panel-plugin/cellmodem.c:529
-+#, c-format
-+msgid ""
-+"Registered to %s\n"
-+"Quality: %d (%d%%)"
-+msgstr ""
-+"Зарегистрирован для %s\n"
-+"Качество: %d (%d%%)"
-+
-+#. Error
-+#: ../panel-plugin/cellmodem.c:687
-+msgid "Error in modem reply to CREG"
-+msgstr "Ошибка ответа модема для CREG"
-+
-+#: ../panel-plugin/cellmodem.c:696
-+msgid "Invalid reply to +CREG"
-+msgstr "Неправильный ответ для +CREG"
-+
-+#: ../panel-plugin/cellmodem.c:721
-+msgid "Invalid CREG reply from modem"
-+msgstr "Неправильный CREG ответ от модема"
-+
-+#: ../panel-plugin/cellmodem.c:760
-+msgid "Error in modem reply to COPS"
-+msgstr "Ошибка ответа модема для COPS"
-+
-+#: ../panel-plugin/cellmodem.c:816
-+msgid "Invalid COPS reply from modem"
-+msgstr "Неправильный COPS ответ от модема"
-+
-+#: ../panel-plugin/cellmodem.c:844
-+msgid "Error in modem reply to CPIN"
-+msgstr "Ошибка ответа модема для CPIN"
-+
-+#: ../panel-plugin/cellmodem.c:870
-+msgid "Invalid CPIN reply from modem"
-+msgstr "Неправильный CPIN ответ от модема"
-+
-+#: ../panel-plugin/cellmodem.c:875
-+msgid "Unsupportted CPIN reply from modem"
-+msgstr "Неподдерживаемый CPIN ответ от модема"
-+
-+#: ../panel-plugin/cellmodem.c:919
-+#: ../panel-plugin/cellmodem.c:973
-+msgid "Invalid OHCIP reply from modem"
-+msgstr "Неправильный OHCIP ответ от модема"
-+
-+#: ../panel-plugin/cellmodem.c:923
-+#: ../panel-plugin/cellmodem.c:977
-+msgid "Unsupportted OHCIP reply from modem"
-+msgstr "Неподдерживаемый OHCIP ответ от модема"
-+
-+#. Error
-+#: ../panel-plugin/cellmodem.c:1019
-+msgid "Cannot send PIN to modem"
-+msgstr "Невозможно послать PIN в модем"
-+
-+#: ../panel-plugin/cellmodem.c:1055
-+msgid "Error in modem reply to CSQ"
-+msgstr "Ошибка ответа модема для CSQ"
-+
-+#: ../panel-plugin/cellmodem.c:1075
-+msgid "Invalid CSQ reply from modem"
-+msgstr "Неправильный CSQ ответ от модема"
-+
-+#: ../panel-plugin/cellmodem.c:1276
-+#: ../panel-plugin/cellmodem.c:1603
-+msgid "Cannot open modem"
-+msgstr "Невозможно открыть модем"
-+
-+#: ../panel-plugin/cellmodem.c:1429
-+msgid "Error reading from modem"
-+msgstr "Ошибка чтения из модема"
-+
-+#: ../panel-plugin/cellmodem.c:1507
-+msgid "Error writing to modem"
-+msgstr "Ошибка записи в модем"
-+
-+#: ../panel-plugin/cellmodem.c:1523
-+msgid "Modem did not reply to command"
-+msgstr "Модем не отвечает на команду"
-+
-+#: ../panel-plugin/cellmodem.c:1541
-+msgid "No driver defined"
-+msgstr "Драйвер не определен"
-+
-+#: ../panel-plugin/cellmodem.c:1546
-+msgid "No modem instance"
-+msgstr "Модем не установлен"
-+
-+#: ../panel-plugin/cellmodem.c:1720
-+msgid "Modem initializing"
-+msgstr "Инициализация модема"
-+
-+#: ../panel-plugin/cellmodem.c:1755
-+msgid "Invalid driver specified"
-+msgstr "Указан неправильный драйвер"
-+
-+#. Error.
-+#: ../panel-plugin/pin_helper.c:31
-+msgid "Invalid PIN entered. PIN has 4 digits"
-+msgstr "Введен некорректный PIN. PIN состоит из 4 цифр"
-+
-+#: ../panel-plugin/pin_helper.c:65
-+msgid "Enter PIN"
-+msgstr "Ввод PIN"
-+
-+#: ../panel-plugin/pin_helper.c:77
-+msgid "Please enter PIN:"
-+msgstr "Введите PIN:"
-+
-+#: ../panel-plugin/preferences.c:285
-+msgid "Close"
-+msgstr "Закрыть"
-+
-+#: ../panel-plugin/preferences.c:290
-+msgid "No known device found."
-+msgstr "Найдено неизвестное устройство."
-+
-+#: ../panel-plugin/preferences.c:292
-+msgid "The following devices were found:"
-+msgstr "Были найдены следующие устройства:"
-+
-+#: ../panel-plugin/preferences.c:299
-+msgid "Use this device"
-+msgstr "Использовать это устройство"
-+
-+#: ../panel-plugin/preferences.c:343
-+msgid "Configure Cell Modem Monitor"
-+msgstr "Настроить слежение за модемом"
-+
-+#. The header - this was most copied from other sources
-+#: ../panel-plugin/preferences.c:356
-+msgid "Cellular Modem Monitor"
-+msgstr "Слежение за модемом"
-+
-+#: ../panel-plugin/preferences.c:387
-+msgid "Modem driver:"
-+msgstr "Драйвер модема:"
-+
-+#: ../panel-plugin/preferences.c:409
-+msgid "Modem speed:"
-+msgstr "Скорость модема:"
-+
-+#: ../panel-plugin/preferences.c:422
-+msgid "Modem device:"
-+msgstr "Устройство модема:"
-+
-+#: ../panel-plugin/preferences.c:434
-+msgid "Autodetect modem..."
-+msgstr "Автоматическое обнаружение модема..."
-+
-+#: ../panel-plugin/preferences.c:444
-+msgid "Maximum quality:"
-+msgstr "Максимальное качество:"
-+
-+#: ../panel-plugin/preferences.c:455
-+msgid "Low quality percentage:"
-+msgstr "Процент малого качества:"
-+
-+#: ../panel-plugin/preferences.c:465
-+msgid "Critical quality percentage:"
-+msgstr "Процент критического качества:"
-+
-+#: ../panel-plugin/preferences.c:479
-+msgid "Check for SMS every"
-+msgstr "Проверять SMS каждые"
-+
-+#: ../panel-plugin/preferences.c:481
-+msgid "minutes"
-+msgstr "минут"
-+
-diff -Nur xfce4-cellmodem-plugin-0.0.5.orig/po/sv.po xfce4-cellmodem-plugin-0.0.5/po/sv.po
---- xfce4-cellmodem-plugin-0.0.5.orig/po/sv.po	1970-01-01 01:00:00.000000000 +0100
-+++ xfce4-cellmodem-plugin-0.0.5/po/sv.po	2011-04-09 02:49:11.740376233 +0200
-@@ -0,0 +1,249 @@
-+# Swedish translation for xfce4-cellmodem-plugin.
-+# Copyright (C) 2008, 2009 Free Software Foundation, Inc.
-+# This file is distributed under the same license as the xfce4-cellmodem-plugin package.
-+# Daniel Nylander <po at danielnylander.se>, 2008, 2009.
-+#
-+msgid ""
-+msgstr ""
-+"Project-Id-Version: xfce4-cellmodem-plugin\n"
-+"Report-Msgid-Bugs-To: \n"
-+"POT-Creation-Date: 2009-02-09 00:26+0100\n"
-+"PO-Revision-Date: 2009-02-09 00:57+0100\n"
-+"Last-Translator: Daniel Nylander <po at danielnylander.se>\n"
-+"Language-Team: Swedish <tp-sv at listor.tp-sv.se>\n"
-+"MIME-Version: 1.0\n"
-+"Content-Type: text/plain; charset=utf-8\n"
-+"Content-Transfer-Encoding: 8bit\n"
-+
-+#: ../panel-plugin/cellmodem.c:482
-+msgid "Initializing plugin now"
-+msgstr "Initierar insticksmodul nu"
-+
-+#: ../panel-plugin/cellmodem.c:505
-+#, c-format
-+msgid ""
-+"Error detected:\n"
-+"%s"
-+msgstr ""
-+"Fel upptäcktes:\n"
-+"%s"
-+
-+#: ../panel-plugin/cellmodem.c:511
-+#, c-format
-+msgid "Not registered"
-+msgstr "Inte registrerad"
-+
-+#: ../panel-plugin/cellmodem.c:514
-+#, c-format
-+msgid "Modem needs PIN"
-+msgstr "Modem kräver PIN-kod"
-+
-+#: ../panel-plugin/cellmodem.c:517
-+#, c-format
-+msgid "Registering"
-+msgstr "Registrerar"
-+
-+#: ../panel-plugin/cellmodem.c:520
-+#, c-format
-+msgid ""
-+"Registered [GPRS] to %s\n"
-+"Quality: %d (%d%%)"
-+msgstr ""
-+"Registrerad [GPRS] till %s\n"
-+"Kvalitet: %d (%d %%)"
-+
-+#: ../panel-plugin/cellmodem.c:523
-+#, c-format
-+msgid ""
-+"Registered [UMTS] to %s\n"
-+"Quality: %d (%d%%)"
-+msgstr ""
-+"Registrerad [UMTS] till %s\n"
-+"Kvalitet: %d (%d %%)"
-+
-+#: ../panel-plugin/cellmodem.c:526
-+#, c-format
-+msgid ""
-+"Registered [HSDPA] to %s\n"
-+"Quality: %d (%d%%)"
-+msgstr ""
-+"Registrerad [HSDPA] till %s\n"
-+"Kvalitet: %d (%d %%)"
-+
-+#: ../panel-plugin/cellmodem.c:529
-+#, c-format
-+msgid ""
-+"Registered to %s\n"
-+"Quality: %d (%d%%)"
-+msgstr ""
-+"Registrerad till %s\n"
-+"Kvalitet: %d (%d %%)"
-+
-+#. Error
-+#: ../panel-plugin/cellmodem.c:687
-+msgid "Error in modem reply to CREG"
-+msgstr "Fel i modemsvar till CREG"
-+
-+#: ../panel-plugin/cellmodem.c:696
-+msgid "Invalid reply to +CREG"
-+msgstr "Ogiltigt svar på +CREG"
-+
-+#: ../panel-plugin/cellmodem.c:721
-+msgid "Invalid CREG reply from modem"
-+msgstr "Ogiltigt CREG-svar från modem"
-+
-+#: ../panel-plugin/cellmodem.c:760
-+msgid "Error in modem reply to COPS"
-+msgstr "Fel i modemsvar till COPS"
-+
-+#: ../panel-plugin/cellmodem.c:816
-+msgid "Invalid COPS reply from modem"
-+msgstr "Ogiltigt COPS-svar från modem"
-+
-+#: ../panel-plugin/cellmodem.c:844
-+msgid "Error in modem reply to CPIN"
-+msgstr "Fel i modemsvar på CPIN"
-+
-+#: ../panel-plugin/cellmodem.c:870
-+msgid "Invalid CPIN reply from modem"
-+msgstr "Ogiltigt CPIN-svar från modem"
-+
-+#: ../panel-plugin/cellmodem.c:875
-+msgid "Unsupportted CPIN reply from modem"
-+msgstr "CPIN-svar från modemet stöds inte"
-+
-+#: ../panel-plugin/cellmodem.c:919
-+#: ../panel-plugin/cellmodem.c:973
-+msgid "Invalid OHCIP reply from modem"
-+msgstr "Ogiltigt OHCIP-svar från modem"
-+
-+#: ../panel-plugin/cellmodem.c:923
-+#: ../panel-plugin/cellmodem.c:977
-+msgid "Unsupportted OHCIP reply from modem"
-+msgstr "OHCIP-svar från modemet stöds inte"
-+
-+#. Error
-+#: ../panel-plugin/cellmodem.c:1019
-+msgid "Cannot send PIN to modem"
-+msgstr "Kan inte skicka PIN-kod till modem"
-+
-+#: ../panel-plugin/cellmodem.c:1055
-+msgid "Error in modem reply to CSQ"
-+msgstr "Fel i modemsvar till CSQ"
-+
-+#: ../panel-plugin/cellmodem.c:1075
-+msgid "Invalid CSQ reply from modem"
-+msgstr "Ogiltigt CSQ-svar från modem"
-+
-+#: ../panel-plugin/cellmodem.c:1276
-+#: ../panel-plugin/cellmodem.c:1603
-+msgid "Cannot open modem"
-+msgstr "Kan inte öppna modemet"
-+
-+#: ../panel-plugin/cellmodem.c:1429
-+msgid "Error reading from modem"
-+msgstr "Fel vid läsning från modemet"
-+
-+#: ../panel-plugin/cellmodem.c:1507
-+msgid "Error writing to modem"
-+msgstr "Fel i skrivning till modemet"
-+
-+#: ../panel-plugin/cellmodem.c:1523
-+msgid "Modem did not reply to command"
-+msgstr "Modemet svarade inte på kommandot"
-+
-+#: ../panel-plugin/cellmodem.c:1541
-+msgid "No driver defined"
-+msgstr "Ingen drivrutin definierad"
-+
-+#: ../panel-plugin/cellmodem.c:1546
-+msgid "No modem instance"
-+msgstr "Ingen modeminstans"
-+
-+#: ../panel-plugin/cellmodem.c:1720
-+msgid "Modem initializing"
-+msgstr "Modeminitiering"
-+
-+#: ../panel-plugin/cellmodem.c:1755
-+msgid "Invalid driver specified"
-+msgstr "Ogiltig drivrutin angiven"
-+
-+#. Error.
-+#: ../panel-plugin/pin_helper.c:31
-+msgid "Invalid PIN entered. PIN has 4 digits"
-+msgstr "Ogiltig PIN-kod angiven. PIN-koden innehåller 4 siffror"
-+
-+#: ../panel-plugin/pin_helper.c:65
-+msgid "Enter PIN"
-+msgstr "Ange PIN-kod"
-+
-+#: ../panel-plugin/pin_helper.c:77
-+msgid "Please enter PIN:"
-+msgstr "Ange PIN-koden:"
-+
-+#: ../panel-plugin/preferences.c:285
-+msgid "Close"
-+msgstr "Stäng"
-+
-+#: ../panel-plugin/preferences.c:290
-+msgid "No known device found."
-+msgstr "Inga kända enheter hittades."
-+
-+#: ../panel-plugin/preferences.c:292
-+msgid "The following devices were found:"
-+msgstr "Följande enheter hittades:"
-+
-+#: ../panel-plugin/preferences.c:299
-+msgid "Use this device"
-+msgstr "Använd denna enhet"
-+
-+#: ../panel-plugin/preferences.c:343
-+msgid "Configure Cell Modem Monitor"
-+msgstr "Konfigurera övervakare för mobilt bredband"
-+
-+#. The header - this was most copied from other sources
-+#: ../panel-plugin/preferences.c:356
-+#: ../panel-plugin/cellmodem.desktop.in.in.h:1
-+msgid "Cellular Modem Monitor"
-+msgstr "Övervakare för mobilt bredband"
-+
-+#: ../panel-plugin/preferences.c:387
-+msgid "Modem driver:"
-+msgstr "Modemdrivrutin:"
-+
-+#: ../panel-plugin/preferences.c:409
-+msgid "Modem speed:"
-+msgstr "Modemhastighet:"
-+
-+#: ../panel-plugin/preferences.c:422
-+msgid "Modem device:"
-+msgstr "Modemenhet:"
-+
-+#: ../panel-plugin/preferences.c:434
-+msgid "Autodetect modem..."
-+msgstr "Detekterar modem automatiskt..."
-+
-+#: ../panel-plugin/preferences.c:444
-+msgid "Maximum quality:"
-+msgstr "Maximal kvalitet:"
-+
-+#: ../panel-plugin/preferences.c:455
-+msgid "Low quality percentage:"
-+msgstr "Procentandel för låg kvalitet:"
-+
-+#: ../panel-plugin/preferences.c:465
-+msgid "Critical quality percentage:"
-+msgstr "Procentandel för kritisk kvalitet:"
-+
-+#: ../panel-plugin/preferences.c:479
-+msgid "Check for SMS every"
-+msgstr "Leta efter SMS var"
-+
-+#: ../panel-plugin/preferences.c:481
-+msgid "minutes"
-+msgstr "minuter"
-+
-+#: ../panel-plugin/cellmodem.desktop.in.in.h:2
-+msgid "Monitor line quality and type of Cellular Modems"
-+msgstr "Övervaka linjekvalitet och typ av mobilt bredband"
-+
-diff -Nur xfce4-cellmodem-plugin-0.0.5.orig/po/tr.po xfce4-cellmodem-plugin-0.0.5/po/tr.po
---- xfce4-cellmodem-plugin-0.0.5.orig/po/tr.po	1970-01-01 01:00:00.000000000 +0100
-+++ xfce4-cellmodem-plugin-0.0.5/po/tr.po	2011-04-09 02:49:11.740376233 +0200
-@@ -0,0 +1,237 @@
-+msgid ""
-+msgstr ""
-+"Project-Id-Version: xfce4 cellmodem plugin\n"
-+"Report-Msgid-Bugs-To: \n"
-+"POT-Creation-Date: 2008-07-22 19:01+0100\n"
-+"PO-Revision-Date: \n"
-+"Last-Translator: Samed Beyribey <ras0ir at eventualis.org>\n"
-+"Language-Team: Xfce-TR <xfce-tr at googlegroups.com>\n"
-+"MIME-Version: 1.0\n"
-+"Content-Type: text/plain; charset=UTF-8\n"
-+"Content-Transfer-Encoding: 8bit\n"
-+"X-Poedit-Country: TURKEY\n"
-+
-+#: ../panel-plugin/cellmodem.c:482
-+msgid "Initializing plugin now"
-+msgstr "Eklenti başlatılıyor"
-+
-+#: ../panel-plugin/cellmodem.c:505
-+#, c-format
-+msgid ""
-+"Error detected:\n"
-+"%s"
-+msgstr ""
-+"Hata oluştu:\n"
-+"%s"
-+
-+#: ../panel-plugin/cellmodem.c:511
-+msgid "Not registered"
-+msgstr "Kayıtlı değil"
-+
-+#: ../panel-plugin/cellmodem.c:514
-+msgid "Modem needs PIN"
-+msgstr "Modem PIN'e ihtiyaç duyuyor"
-+
-+#: ../panel-plugin/cellmodem.c:517
-+msgid "Registering"
-+msgstr "Kaydediliyor"
-+
-+#: ../panel-plugin/cellmodem.c:520
-+#, c-format
-+msgid ""
-+"Registered [GPRS] to %s\n"
-+"Quality: %d (%d%%)"
-+msgstr ""
-+"[GPRS] %s üzerine kaydedildi\n"
-+"Kalite: %d (%d%%)"
-+
-+#: ../panel-plugin/cellmodem.c:523
-+#, c-format
-+msgid ""
-+"Registered [UMTS] to %s\n"
-+"Quality: %d (%d%%)"
-+msgstr ""
-+"[UMTS] %s üzerine kaydedildi\n"
-+"Kalite: %d (%d%%)"
-+
-+#: ../panel-plugin/cellmodem.c:526
-+#, c-format
-+msgid ""
-+"Registered [HSDPA] to %s\n"
-+"Quality: %d (%d%%)"
-+msgstr ""
-+"[HSDPA] %s üzerine kaydedildi\n"
-+"Quality: %d (%d%%)"
-+
-+#: ../panel-plugin/cellmodem.c:529
-+#, c-format
-+msgid ""
-+"Registered to %s\n"
-+"Quality: %d (%d%%)"
-+msgstr ""
-+"%s üzerine kaydedildi\n"
-+"Quality: %d (%d%%)"
-+
-+#. Error
-+#: ../panel-plugin/cellmodem.c:687
-+msgid "Error in modem reply to CREG"
-+msgstr "CREG'e modem yanıtında hata"
-+
-+#: ../panel-plugin/cellmodem.c:696
-+msgid "Invalid reply to +CREG"
-+msgstr "+CREG'e geçersiz yanıt"
-+
-+#: ../panel-plugin/cellmodem.c:721
-+msgid "Invalid CREG reply from modem"
-+msgstr "Modemden geçersiz CREG yanıtı"
-+
-+#: ../panel-plugin/cellmodem.c:760
-+msgid "Error in modem reply to COPS"
-+msgstr "COPS'a modem yanıtında hata"
-+
-+#: ../panel-plugin/cellmodem.c:816
-+msgid "Invalid COPS reply from modem"
-+msgstr "Modemden geçersiz COPS yanıtı"
-+
-+#: ../panel-plugin/cellmodem.c:844
-+msgid "Error in modem reply to CPIN"
-+msgstr "CPIN'e modem yanıtında hata"
-+
-+#: ../panel-plugin/cellmodem.c:870
-+msgid "Invalid CPIN reply from modem"
-+msgstr "Modemden geçersiz CPIN yanıtı"
-+
-+#: ../panel-plugin/cellmodem.c:875
-+msgid "Unsupportted CPIN reply from modem"
-+msgstr "Modemden desteklenmeyen CPIN yanıtı"
-+
-+#: ../panel-plugin/cellmodem.c:919
-+#: ../panel-plugin/cellmodem.c:973
-+msgid "Invalid OHCIP reply from modem"
-+msgstr "Modemden geçersiz OHCIP yanıtı"
-+
-+#: ../panel-plugin/cellmodem.c:923
-+#: ../panel-plugin/cellmodem.c:977
-+msgid "Unsupportted OHCIP reply from modem"
-+msgstr "Modemden desteklenmeyen OHCIP yanıtı"
-+
-+#. Error
-+#: ../panel-plugin/cellmodem.c:1019
-+msgid "Cannot send PIN to modem"
-+msgstr "PIN modeme gönderilemiyor"
-+
-+#: ../panel-plugin/cellmodem.c:1055
-+msgid "Error in modem reply to CSQ"
-+msgstr "CSQ'ye modem yanıtında hata"
-+
-+#: ../panel-plugin/cellmodem.c:1075
-+msgid "Invalid CSQ reply from modem"
-+msgstr "Modemden geçersiz CSQ yanıtı"
-+
-+#: ../panel-plugin/cellmodem.c:1276
-+#: ../panel-plugin/cellmodem.c:1603
-+msgid "Cannot open modem"
-+msgstr "Modem açılamıyor"
-+
-+#: ../panel-plugin/cellmodem.c:1429
-+msgid "Error reading from modem"
-+msgstr "Modemden okunurken hata oluştu"
-+
-+#: ../panel-plugin/cellmodem.c:1507
-+msgid "Error writing to modem"
-+msgstr "Modeme yazılırken hata oluştu"
-+
-+#: ../panel-plugin/cellmodem.c:1523
-+msgid "Modem did not reply to command"
-+msgstr "Modem komuta yanıt vermedi"
-+
-+#: ../panel-plugin/cellmodem.c:1541
-+msgid "No driver defined"
-+msgstr "Sürücü belirtilmemiş"
-+
-+#: ../panel-plugin/cellmodem.c:1546
-+msgid "No modem instance"
-+msgstr "Modem örneklenmemiş"
-+
-+#: ../panel-plugin/cellmodem.c:1720
-+msgid "Modem initializing"
-+msgstr "Modem başlatılıyor"
-+
-+#: ../panel-plugin/cellmodem.c:1755
-+msgid "Invalid driver specified"
-+msgstr "Belirtilen sürücü geçersiz"
-+
-+#. Error.
-+#: ../panel-plugin/pin_helper.c:31
-+msgid "Invalid PIN entered. PIN has 4 digits"
-+msgstr "Geçersiz PIN girdiniz. PIN kodu 4 hanelidir"
-+
-+#: ../panel-plugin/pin_helper.c:65
-+msgid "Enter PIN"
-+msgstr "PIN kodunu giriniz"
-+
-+#: ../panel-plugin/pin_helper.c:77
-+msgid "Please enter PIN:"
-+msgstr "Lütfen PIN kodunu giriniz:"
-+
-+#: ../panel-plugin/preferences.c:285
-+msgid "Close"
-+msgstr "Kapat"
-+
-+#: ../panel-plugin/preferences.c:290
-+msgid "No known device found."
-+msgstr "Aygıt bulunamadı."
-+
-+#: ../panel-plugin/preferences.c:292
-+msgid "The following devices were found:"
-+msgstr "Bulunan aygıtlar:"
-+
-+#: ../panel-plugin/preferences.c:299
-+msgid "Use this device"
-+msgstr "Bu aygıtı kullan"
-+
-+#: ../panel-plugin/preferences.c:343
-+msgid "Configure Cell Modem Monitor"
-+msgstr "Cep Telefonu Modemi İzleyicisini Yapılandır"
-+
-+#. The header - this was most copied from other sources
-+#: ../panel-plugin/preferences.c:356
-+msgid "Cellular Modem Monitor"
-+msgstr "Cep Telefonu Modemi İzleyici"
-+
-+#: ../panel-plugin/preferences.c:387
-+msgid "Modem driver:"
-+msgstr "Modem sürücüsü:"
-+
-+#: ../panel-plugin/preferences.c:409
-+msgid "Modem speed:"
-+msgstr "Modem hızı:"
-+
-+#: ../panel-plugin/preferences.c:422
-+msgid "Modem device:"
-+msgstr "Modem aygıtı:"
-+
-+#: ../panel-plugin/preferences.c:434
-+msgid "Autodetect modem..."
-+msgstr "Modemi otomatik algıla..."
-+
-+#: ../panel-plugin/preferences.c:444
-+msgid "Maximum quality:"
-+msgstr "Maksimum kalite:"
-+
-+#: ../panel-plugin/preferences.c:455
-+msgid "Low quality percentage:"
-+msgstr "Düşük kalite oranı:"
-+
-+#: ../panel-plugin/preferences.c:465
-+msgid "Critical quality percentage:"
-+msgstr "Kritik kalite oranı:"
-+
-+#: ../panel-plugin/preferences.c:479
-+msgid "Check for SMS every"
-+msgstr "SMS kontrol aralığı"
-+
-+#: ../panel-plugin/preferences.c:481
-+msgid "minutes"
-+msgstr "dakika"
-+
-diff -Nur xfce4-cellmodem-plugin-0.0.5.orig/po/ug.po xfce4-cellmodem-plugin-0.0.5/po/ug.po
---- xfce4-cellmodem-plugin-0.0.5.orig/po/ug.po	1970-01-01 01:00:00.000000000 +0100
-+++ xfce4-cellmodem-plugin-0.0.5/po/ug.po	2011-04-09 02:49:11.740376233 +0200
-@@ -0,0 +1,229 @@
-+#
-+msgid ""
-+msgstr ""
-+"Project-Id-Version: xfce4-cellmodem-plugin\n"
-+"Report-Msgid-Bugs-To: \n"
-+"POT-Creation-Date: 2008-07-22 19:01+0100\n"
-+"PO-Revision-Date: 2009-07-13 19:55+0100\n"
-+"Last-Translator: Gheyret T.Kenji <gheyret at gmail.com>\n"
-+"Language-Team: Uyghur Computer Science Association <UKIJ at yahoogroups.com>\n"
-+"MIME-Version: 1.0\n"
-+"Content-Type: text/plain; charset=UTF-8\n"
-+"Content-Transfer-Encoding: 8bit\n"
-+"Plural-Forms: nplurals=1; plural=0;\n"
-+
-+#: ../panel-plugin/cellmodem.c:482
-+msgid "Initializing plugin now"
-+msgstr "ھازىر قىستۇرمىنى دەسلەپلەشتۈرۈۋاتىدۇ"
-+
-+#: ../panel-plugin/cellmodem.c:505
-+#, c-format
-+msgid ""
-+"Error detected:\n"
-+"%s"
-+msgstr "خاتالىق بايقالدى:\n"
-+"%s"
-+
-+#: ../panel-plugin/cellmodem.c:511
-+msgid "Not registered"
-+msgstr "خەتلىتىلمىگەن"
-+
-+#: ../panel-plugin/cellmodem.c:514
-+msgid "Modem needs PIN"
-+msgstr "Modem غا PIN زۆرۈر"
-+
-+#: ../panel-plugin/cellmodem.c:517
-+msgid "Registering"
-+msgstr "خەتلىتىۋاتىدۇ"
-+
-+#: ../panel-plugin/cellmodem.c:520
-+#, c-format
-+msgid ""
-+"Registered [GPRS] to %s\n"
-+"Quality: %d (%d%%)"
-+msgstr "خەتلىتىلدى[GPRS] %s \n"
-+"سۈپىتى: %d (%d%%)"
-+
-+#: ../panel-plugin/cellmodem.c:523
-+#, c-format
-+msgid ""
-+"Registered [UMTS] to %s\n"
-+"Quality: %d (%d%%)"
-+msgstr "خەتلىتىلدى [UMTS] %s\n"
-+"سۈپىتى: %d (%d%%)"
-+
-+#: ../panel-plugin/cellmodem.c:526
-+#, c-format
-+msgid ""
-+"Registered [HSDPA] to %s\n"
-+"Quality: %d (%d%%)"
-+msgstr "خەتلىتىلدى [HSDPA] %s\n"
-+"سۈپىتى: %d (%d%%)"
-+
-+#: ../panel-plugin/cellmodem.c:529
-+#, c-format
-+msgid ""
-+"Registered to %s\n"
-+"Quality: %d (%d%%)"
-+msgstr "%s غا خەتلىتىلدى\n"
-+"سۈپىتى: %d (%d%%)"
-+
-+#. Error
-+#: ../panel-plugin/cellmodem.c:687
-+msgid "Error in modem reply to CREG"
-+msgstr "CREG غا جاۋاب بېرىشتە modem دا خاتالىق كۆرۈلدى"
-+
-+#: ../panel-plugin/cellmodem.c:696
-+msgid "Invalid reply to +CREG"
-+msgstr "+CREG غا بېرىلگەن جاۋاب ئىناۋەتسىز"
-+
-+#: ../panel-plugin/cellmodem.c:721
-+msgid "Invalid CREG reply from modem"
-+msgstr "modem دىن ئىناۋەتسىز CREG جاۋابى كەلدى"
-+
-+#: ../panel-plugin/cellmodem.c:760
-+msgid "Error in modem reply to COPS"
-+msgstr "COPS غا جاۋاب بېرىشتە modem دا خاتالىق كۆرۈلدى"
-+
-+#: ../panel-plugin/cellmodem.c:816
-+msgid "Invalid COPS reply from modem"
-+msgstr "modem دىن ئىناۋەتسىز COPS جاۋابى كەلدى"
-+
-+#: ../panel-plugin/cellmodem.c:844
-+msgid "Error in modem reply to CPIN"
-+msgstr "CPIN غا جاۋاب بېرىشتە modem دا خاتالىق كۆرۈلدى"
-+
-+#: ../panel-plugin/cellmodem.c:870
-+msgid "Invalid CPIN reply from modem"
-+msgstr "modem دىن ئىناۋەتسىز CPIN جاۋابى كەلدى"
-+
-+#: ../panel-plugin/cellmodem.c:875
-+msgid "Unsupportted CPIN reply from modem"
-+msgstr "modem دىن CPIN جاۋابىنى بىر تەرەپ قىلالمايمەن"
-+
-+#: ../panel-plugin/cellmodem.c:919 ../panel-plugin/cellmodem.c:973
-+msgid "Invalid OHCIP reply from modem"
-+msgstr "modem دىن ئىناۋەتسىز CPIN جاۋابى كەلدى"
-+
-+#: ../panel-plugin/cellmodem.c:923 ../panel-plugin/cellmodem.c:977
-+msgid "Unsupportted OHCIP reply from modem"
-+msgstr "modem دىن OHCIP جاۋابىنى بىر تەرەپ قىلالمايمەن"
-+
-+#. Error
-+#: ../panel-plugin/cellmodem.c:1019
-+msgid "Cannot send PIN to modem"
-+msgstr "modem غا PIN ئەۋەتكىلى بولمىدى"
-+
-+#: ../panel-plugin/cellmodem.c:1055
-+msgid "Error in modem reply to CSQ"
-+msgstr "CSQ غا جاۋاب بېرىشتە modem دا خاتالىق كۆرۈلدى"
-+
-+#: ../panel-plugin/cellmodem.c:1075
-+msgid "Invalid CSQ reply from modem"
-+msgstr "modem دىن ئىناۋەتسىز CSQ جاۋابى كەلدى"
-+
-+#: ../panel-plugin/cellmodem.c:1276 ../panel-plugin/cellmodem.c:1603
-+msgid "Cannot open modem"
-+msgstr "modem نى ئاچقىلى بولمىدى"
-+
-+#: ../panel-plugin/cellmodem.c:1429
-+msgid "Error reading from modem"
-+msgstr "modem دىن ئوقۇشتا خاتالىق كۆرۈلدى"
-+
-+#: ../panel-plugin/cellmodem.c:1507
-+msgid "Error writing to modem"
-+msgstr "modem غا يېزىشتا خاتالىق كۆرۈلدى"
-+
-+#: ../panel-plugin/cellmodem.c:1523
-+msgid "Modem did not reply to command"
-+msgstr "modem بۇيرۇققا جاۋاب بەرمىدى"
-+
-+#: ../panel-plugin/cellmodem.c:1541
-+msgid "No driver defined"
-+msgstr "No driver defined"
-+
-+#: ../panel-plugin/cellmodem.c:1546
-+msgid "No modem instance"
-+msgstr "No modem instance"
-+
-+#: ../panel-plugin/cellmodem.c:1720
-+msgid "Modem initializing"
-+msgstr "Modem دەسلەپلەشتۈرۈلۈۋاتىدۇ"
-+
-+#: ../panel-plugin/cellmodem.c:1755
-+msgid "Invalid driver specified"
-+msgstr "ئىناۋەتسىز قوزغاتقۇچ."
-+
-+#. Error.
-+#: ../panel-plugin/pin_helper.c:31
-+msgid "Invalid PIN entered. PIN has 4 digits"
-+msgstr "كىرگۈزۈلگەن PIN ئىناۋەتسىز. PIN دا 4 رەقەم بولىدۇ"
-+
-+#: ../panel-plugin/pin_helper.c:65
-+msgid "Enter PIN"
-+msgstr "PIN كىرگۈزۈش"
-+
-+#: ../panel-plugin/pin_helper.c:77
-+msgid "Please enter PIN:"
-+msgstr "PIN كىرگۈزۈڭ:"
-+
-+#: ../panel-plugin/preferences.c:285
-+msgid "Close"
-+msgstr "تاقا"
-+
-+#: ../panel-plugin/preferences.c:290
-+msgid "No known device found."
-+msgstr "تونۇش ئۈسكىنە يوق ئىكەن."
-+
-+#: ../panel-plugin/preferences.c:292
-+msgid "The following devices were found:"
-+msgstr "تۆۋەندىكى ئۈسكۈنىلەر تېپىلدى:"
-+
-+#: ../panel-plugin/preferences.c:299
-+msgid "Use this device"
-+msgstr "بۇ ئۈسكىنىنى ئىشلەت"
-+
-+#: ../panel-plugin/preferences.c:343
-+msgid "Configure Cell Modem Monitor"
-+msgstr "Cell Modem كۆزەتكۈنى سەپلەش"
-+
-+#. The header - this was most copied from other sources
-+#: ../panel-plugin/preferences.c:356
-+msgid "Cellular Modem Monitor"
-+msgstr "Cellular Modem كۆزەتكۈ"
-+
-+#: ../panel-plugin/preferences.c:387
-+msgid "Modem driver:"
-+msgstr "Modemنىڭ قوزغىتىش پروگراممىسى"
-+
-+#: ../panel-plugin/preferences.c:409
-+msgid "Modem speed:"
-+msgstr "Modem تېزلىكى:"
-+
-+#: ../panel-plugin/preferences.c:422
-+msgid "Modem device:"
-+msgstr "Modem ئۈسكۈنىسى:"
-+
-+#: ../panel-plugin/preferences.c:434
-+msgid "Autodetect modem..."
-+msgstr "Modem نى ئۆزلۈكىدىن بايقاش..."
-+
-+#: ../panel-plugin/preferences.c:444
-+msgid "Maximum quality:"
-+msgstr "ئەڭ يۇقىرى سۈپىتى:"
-+
-+#: ../panel-plugin/preferences.c:455
-+msgid "Low quality percentage:"
-+msgstr "Low quality percentage:"
-+
-+#: ../panel-plugin/preferences.c:465
-+msgid "Critical quality percentage:"
-+msgstr "Critical quality percentage:"
-+
-+#: ../panel-plugin/preferences.c:479
-+msgid "Check for SMS every"
-+msgstr "SMS نى قەرەللىك تەكشۈرۈش ۋاقتى"
-+
-+#: ../panel-plugin/preferences.c:481
-+msgid "minutes"
-+msgstr "مىنۇت"
-diff -Nur xfce4-cellmodem-plugin-0.0.5.orig/po/uk.po xfce4-cellmodem-plugin-0.0.5/po/uk.po
---- xfce4-cellmodem-plugin-0.0.5.orig/po/uk.po	1970-01-01 01:00:00.000000000 +0100
-+++ xfce4-cellmodem-plugin-0.0.5/po/uk.po	2011-04-09 02:49:11.740376233 +0200
-@@ -0,0 +1,243 @@
-+# Ukrainian translation of xfce4-cellmodem-plugin.
-+# Copyright (C) 2007 Dmitry Nikitin
-+# This file is distributed under the same license as the xfce4-cellmodem-plugin package.
-+#
-+# Dmitry Nikitin <luckas_fb at mail.ru>, 2007, 2008.
-+msgid ""
-+msgstr ""
-+"Project-Id-Version: xfce4-cellmodem-plugin\n"
-+"Report-Msgid-Bugs-To: \n"
-+"POT-Creation-Date: 2008-08-12 12:26+0000\n"
-+"PO-Revision-Date: 2008-07-28 18:16+0300\n"
-+"Last-Translator: Dmitry Nikitin <luckas_fb at mail.ru>\n"
-+"Language-Team: Ukrainian <xfce4-dev at xfce.org>\n"
-+"MIME-Version: 1.0\n"
-+"Content-Type: text/plain; charset=UTF-8\n"
-+"Content-Transfer-Encoding: 8bit\n"
-+"X-Generator: KBabel 1.11.4\n"
-+"Plural-Forms:  nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%"
-+"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
-+
-+#: ../panel-plugin/cellmodem.c:482
-+msgid "Initializing plugin now"
-+msgstr "Ініціювати розширення зараз"
-+
-+#: ../panel-plugin/cellmodem.c:505
-+#, c-format
-+msgid ""
-+"Error detected:\n"
-+"%s"
-+msgstr ""
-+"Виявлено помилку:\n"
-+"%s"
-+
-+#: ../panel-plugin/cellmodem.c:511
-+#, c-format
-+msgid "Not registered"
-+msgstr "Не зареєстровано"
-+
-+#: ../panel-plugin/cellmodem.c:514
-+#, c-format
-+msgid "Modem needs PIN"
-+msgstr "Модему потрібен PIN"
-+
-+#: ../panel-plugin/cellmodem.c:517
-+#, c-format
-+msgid "Registering"
-+msgstr "Реєстрація"
-+
-+#: ../panel-plugin/cellmodem.c:520
-+#, c-format
-+msgid ""
-+"Registered [GPRS] to %s\n"
-+"Quality: %d (%d%%)"
-+msgstr ""
-+"Зареєстровано [GPRS] для %s\n"
-+"Якість: %d (%d%%)"
-+
-+#: ../panel-plugin/cellmodem.c:523
-+#, c-format
-+msgid ""
-+"Registered [UMTS] to %s\n"
-+"Quality: %d (%d%%)"
-+msgstr ""
-+"Зареєстровано [UMTS] для %s\n"
-+"Якість: %d (%d%%)"
-+
-+#: ../panel-plugin/cellmodem.c:526
-+#, c-format
-+msgid ""
-+"Registered [HSDPA] to %s\n"
-+"Quality: %d (%d%%)"
-+msgstr ""
-+"Зареєстровано [HSDPA] для %s\n"
-+"Якість: %d (%d%%)"
-+
-+#: ../panel-plugin/cellmodem.c:529
-+#, c-format
-+msgid ""
-+"Registered to %s\n"
-+"Quality: %d (%d%%)"
-+msgstr ""
-+"Зареєстровано для %s\n"
-+"Якість: %d (%d%%)"
-+
-+#. Error
-+#: ../panel-plugin/cellmodem.c:687
-+msgid "Error in modem reply to CREG"
-+msgstr "Помилка у відповіді модема для CREG"
-+
-+#: ../panel-plugin/cellmodem.c:696
-+msgid "Invalid reply to +CREG"
-+msgstr "Неправильна відповідь для +CREG"
-+
-+#: ../panel-plugin/cellmodem.c:721
-+msgid "Invalid CREG reply from modem"
-+msgstr "Неправильна CREG відповідь від модема"
-+
-+#: ../panel-plugin/cellmodem.c:760
-+msgid "Error in modem reply to COPS"
-+msgstr "Помилка у відповіді модема для COPS"
-+
-+#: ../panel-plugin/cellmodem.c:816
-+msgid "Invalid COPS reply from modem"
-+msgstr "Неправильна COPS відповідь від модема"
-+
-+#: ../panel-plugin/cellmodem.c:844
-+msgid "Error in modem reply to CPIN"
-+msgstr "Помилка у відповіді модема для CPIN"
-+
-+#: ../panel-plugin/cellmodem.c:870
-+msgid "Invalid CPIN reply from modem"
-+msgstr "Неправильна CPIN відповідь від модема"
-+
-+#: ../panel-plugin/cellmodem.c:875
-+msgid "Unsupportted CPIN reply from modem"
-+msgstr "Непідтримувана CPIN відповідь від модема"
-+
-+#: ../panel-plugin/cellmodem.c:919 ../panel-plugin/cellmodem.c:973
-+msgid "Invalid OHCIP reply from modem"
-+msgstr "Неправильна OHCIP відповідь від модема"
-+
-+#: ../panel-plugin/cellmodem.c:923 ../panel-plugin/cellmodem.c:977
-+msgid "Unsupportted OHCIP reply from modem"
-+msgstr "Непідтримувана OHCIP відповідь від модема"
-+
-+#. Error
-+#: ../panel-plugin/cellmodem.c:1019
-+msgid "Cannot send PIN to modem"
-+msgstr "Неможливо послати PIN в модем"
-+
-+#: ../panel-plugin/cellmodem.c:1055
-+msgid "Error in modem reply to CSQ"
-+msgstr "Помилка у відповіді модема для CSQ"
-+
-+#: ../panel-plugin/cellmodem.c:1075
-+msgid "Invalid CSQ reply from modem"
-+msgstr "Неправильна CSQ відповідь від модема"
-+
-+#: ../panel-plugin/cellmodem.c:1276 ../panel-plugin/cellmodem.c:1603
-+msgid "Cannot open modem"
-+msgstr "Неможливо відкрити модем"
-+
-+#: ../panel-plugin/cellmodem.c:1429
-+msgid "Error reading from modem"
-+msgstr "Помилка читання з модема"
-+
-+#: ../panel-plugin/cellmodem.c:1507
-+msgid "Error writing to modem"
-+msgstr "Помилка запису в модем"
-+
-+#: ../panel-plugin/cellmodem.c:1523
-+msgid "Modem did not reply to command"
-+msgstr "Модем не відповів на команду"
-+
-+#: ../panel-plugin/cellmodem.c:1541
-+msgid "No driver defined"
-+msgstr "Не визначений драйвер"
-+
-+#: ../panel-plugin/cellmodem.c:1546
-+msgid "No modem instance"
-+msgstr "Модем не встановлено"
-+
-+#: ../panel-plugin/cellmodem.c:1720
-+msgid "Modem initializing"
-+msgstr "Ініціалізація модема"
-+
-+#: ../panel-plugin/cellmodem.c:1755
-+msgid "Invalid driver specified"
-+msgstr "Визначено неправильний драйвер"
-+
-+#. Error.
-+#: ../panel-plugin/pin_helper.c:31
-+msgid "Invalid PIN entered. PIN has 4 digits"
-+msgstr "Введено неправильний PIN. PIN налічує 4 цифри"
-+
-+#: ../panel-plugin/pin_helper.c:65
-+msgid "Enter PIN"
-+msgstr "Ввід PIN"
-+
-+#: ../panel-plugin/pin_helper.c:77
-+msgid "Please enter PIN:"
-+msgstr "Введіть будь-ласка PIN:"
-+
-+#: ../panel-plugin/preferences.c:285
-+msgid "Close"
-+msgstr "Закрити"
-+
-+#: ../panel-plugin/preferences.c:290
-+msgid "No known device found."
-+msgstr "Виявлено невідомий пристрій."
-+
-+#: ../panel-plugin/preferences.c:292
-+msgid "The following devices were found:"
-+msgstr "Було знайдено наступні пристрої:"
-+
-+#: ../panel-plugin/preferences.c:299
-+msgid "Use this device"
-+msgstr "Використовувати цей пристрій"
-+
-+#: ../panel-plugin/preferences.c:343
-+msgid "Configure Cell Modem Monitor"
-+msgstr "Налаштувати спостереження за модемом"
-+
-+#. The header - this was most copied from other sources
-+#: ../panel-plugin/preferences.c:356
-+msgid "Cellular Modem Monitor"
-+msgstr "Спостереження за набором номеру модемом"
-+
-+#: ../panel-plugin/preferences.c:387
-+msgid "Modem driver:"
-+msgstr "Драйвер модему:"
-+
-+#: ../panel-plugin/preferences.c:409
-+msgid "Modem speed:"
-+msgstr "Швидкість модему:"
-+
-+#: ../panel-plugin/preferences.c:422
-+msgid "Modem device:"
-+msgstr "Пристрій модему:"
-+
-+#: ../panel-plugin/preferences.c:434
-+msgid "Autodetect modem..."
-+msgstr "Автоматичне визначення модема..."
-+
-+#: ../panel-plugin/preferences.c:444
-+msgid "Maximum quality:"
-+msgstr "Максимальна якість:"
-+
-+#: ../panel-plugin/preferences.c:455
-+msgid "Low quality percentage:"
-+msgstr "Відсоток слабкої якості:"
-+
-+#: ../panel-plugin/preferences.c:465
-+msgid "Critical quality percentage:"
-+msgstr "Відсоток критичної якості:"
-+
-+#: ../panel-plugin/preferences.c:479
-+msgid "Check for SMS every"
-+msgstr "Перевіряти надходження SMS кожних"
-+
-+#: ../panel-plugin/preferences.c:481
-+msgid "minutes"
-+msgstr "хвилин"
-diff -Nur xfce4-cellmodem-plugin-0.0.5.orig/po/ur_PK.po xfce4-cellmodem-plugin-0.0.5/po/ur_PK.po
---- xfce4-cellmodem-plugin-0.0.5.orig/po/ur_PK.po	1970-01-01 01:00:00.000000000 +0100
-+++ xfce4-cellmodem-plugin-0.0.5/po/ur_PK.po	2011-04-09 02:49:11.741376478 +0200
-@@ -0,0 +1,245 @@
-+# SOME DESCRIPTIVE TITLE.
-+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
-+# This file is distributed under the same license as the PACKAGE package.
-+# FIRST AUTHOR <EMAIL at ADDRESS>, YEAR.
-+#
-+msgid ""
-+msgstr ""
-+"Project-Id-Version: xfce4-cellmodem-plugin\n"
-+"Report-Msgid-Bugs-To: \n"
-+"POT-Creation-Date: 2008-07-22 19:01+0100\n"
-+"PO-Revision-Date: 2009-05-14 02:42+0500\n"
-+"Last-Translator: Muhammad Ali Makki <makki.ma at gmail.com>\n"
-+"Language-Team: Urdu <makki.ma at gmail.com>\n"
-+"MIME-Version: 1.0\n"
-+"Content-Type: text/plain; charset=utf-8\n"
-+"Content-Transfer-Encoding: 8bit\n"
-+"Plural-Forms: Plural-Forms: nplurals=2; plural=n != 1;\n"
-+"X-Poedit-Language: Urdu\n"
-+"X-Poedit-Country: PAKISTAN\n"
-+"X-Poedit-SourceCharset: utf-8\n"
-+
-+#: ../panel-plugin/cellmodem.c:482
-+msgid "Initializing plugin now"
-+msgstr "پلگ ان چلایا جارہا ہے"
-+
-+#: ../panel-plugin/cellmodem.c:505
-+#, c-format
-+msgid ""
-+"Error detected:\n"
-+"%s"
-+msgstr ""
-+"غلطی دریافت ہوئی ہے:\n"
-+"%s"
-+
-+#: ../panel-plugin/cellmodem.c:511
-+msgid "Not registered"
-+msgstr "رجسٹر نہیں ہے"
-+
-+#: ../panel-plugin/cellmodem.c:514
-+msgid "Modem needs PIN"
-+msgstr "موڈیم کو PIN درکار ہے"
-+
-+#: ../panel-plugin/cellmodem.c:517
-+msgid "Registering"
-+msgstr "رجسٹر کیا جارہا ہے"
-+
-+#: ../panel-plugin/cellmodem.c:520
-+#, c-format
-+msgid ""
-+"Registered [GPRS] to %s\n"
-+"Quality: %d (%d%%)"
-+msgstr ""
-+"جی پی آر ایس [GPRS] رجسٹر ہے تا %s\n"
-+"کوالٹی: %d (%d%%)"
-+
-+#: ../panel-plugin/cellmodem.c:523
-+#, c-format
-+msgid ""
-+"Registered [UMTS] to %s\n"
-+"Quality: %d (%d%%)"
-+msgstr ""
-+"یو ایم ٹی ایس [UMTS] رجسٹر ہے تا %s\n"
-+"کوالٹی: %d (%d%%)"
-+
-+#: ../panel-plugin/cellmodem.c:526
-+#, c-format
-+msgid ""
-+"Registered [HSDPA] to %s\n"
-+"Quality: %d (%d%%)"
-+msgstr ""
-+"ایچ ایس ڈی پی اے [HSDPA] رجسٹر ہے تا %s\n"
-+"کوالٹی: %d (%d%%)"
-+
-+#: ../panel-plugin/cellmodem.c:529
-+#, c-format
-+msgid ""
-+"Registered to %s\n"
-+"Quality: %d (%d%%)"
-+msgstr ""
-+"رجسٹر ہے تا %s\n"
-+"کوالٹی: %d (%d%%)"
-+
-+#. Error
-+#: ../panel-plugin/cellmodem.c:687
-+msgid "Error in modem reply to CREG"
-+msgstr "موڈیم کے جواب میں غلطی تا CREG"
-+
-+#: ../panel-plugin/cellmodem.c:696
-+msgid "Invalid reply to +CREG"
-+msgstr "غلط جواب تا +CREG"
-+
-+#: ../panel-plugin/cellmodem.c:721
-+msgid "Invalid CREG reply from modem"
-+msgstr "موڈیم سے نا موزوں CREG جواب"
-+
-+#: ../panel-plugin/cellmodem.c:760
-+msgid "Error in modem reply to COPS"
-+msgstr "موڈیم کے جواب میں غلطی تا COPS"
-+
-+#: ../panel-plugin/cellmodem.c:816
-+msgid "Invalid COPS reply from modem"
-+msgstr "موڈیم سے ناموزوں COPS جواب"
-+
-+#: ../panel-plugin/cellmodem.c:844
-+msgid "Error in modem reply to CPIN"
-+msgstr "موڈیم کے جواب میں غلطی تا CPIN"
-+
-+#: ../panel-plugin/cellmodem.c:870
-+msgid "Invalid CPIN reply from modem"
-+msgstr "موڈیم سے نا موزوں CPIN جواب"
-+
-+#: ../panel-plugin/cellmodem.c:875
-+msgid "Unsupportted CPIN reply from modem"
-+msgstr "موڈیم سے غیر معاونت شدہ CPIN جواب"
-+
-+#: ../panel-plugin/cellmodem.c:919
-+#: ../panel-plugin/cellmodem.c:973
-+msgid "Invalid OHCIP reply from modem"
-+msgstr "موڈیم سے نا موزوں OHCIP جواب"
-+
-+#: ../panel-plugin/cellmodem.c:923
-+#: ../panel-plugin/cellmodem.c:977
-+msgid "Unsupportted OHCIP reply from modem"
-+msgstr "موڈیم سے غیر معاونت شدہ OHCIP جواب"
-+
-+#. Error
-+#: ../panel-plugin/cellmodem.c:1019
-+msgid "Cannot send PIN to modem"
-+msgstr "موڈیم کو PIN ارسال نہیں کیا جاسکتا"
-+
-+#: ../panel-plugin/cellmodem.c:1055
-+msgid "Error in modem reply to CSQ"
-+msgstr "موڈیم کے جواب میں غلطی تا CSQ"
-+
-+#: ../panel-plugin/cellmodem.c:1075
-+msgid "Invalid CSQ reply from modem"
-+msgstr "موڈیم سے نا موزوں CSQ جواب"
-+
-+#: ../panel-plugin/cellmodem.c:1276
-+#: ../panel-plugin/cellmodem.c:1603
-+msgid "Cannot open modem"
-+msgstr "موڈیم نہیں کھولا جاسکتا"
-+
-+#: ../panel-plugin/cellmodem.c:1429
-+msgid "Error reading from modem"
-+msgstr "موڈیم سے پڑھنے میں غلطی"
-+
-+#: ../panel-plugin/cellmodem.c:1507
-+msgid "Error writing to modem"
-+msgstr "موڈیم پر لکھنے میں غلطی"
-+
-+#: ../panel-plugin/cellmodem.c:1523
-+msgid "Modem did not reply to command"
-+msgstr "موڈیم نے کمانڈ کو جواب نہیں دیا"
-+
-+#: ../panel-plugin/cellmodem.c:1541
-+msgid "No driver defined"
-+msgstr "کوئی ڈرائیو متعین نہیں ہے"
-+
-+#: ../panel-plugin/cellmodem.c:1546
-+msgid "No modem instance"
-+msgstr "کوئی موڈیم حالت نہیں"
-+
-+#: ../panel-plugin/cellmodem.c:1720
-+msgid "Modem initializing"
-+msgstr "موڈیم تیاری"
-+
-+#: ../panel-plugin/cellmodem.c:1755
-+msgid "Invalid driver specified"
-+msgstr "نا موزوں ڈرائیو متعین کی گئی ہے"
-+
-+#. Error.
-+#: ../panel-plugin/pin_helper.c:31
-+msgid "Invalid PIN entered. PIN has 4 digits"
-+msgstr "نا موزوں PIN داخل کی گئی ہے. PIN چار 4 عدد رکھتی ہے"
-+
-+#: ../panel-plugin/pin_helper.c:65
-+msgid "Enter PIN"
-+msgstr "PIN داخل کریں"
-+
-+#: ../panel-plugin/pin_helper.c:77
-+msgid "Please enter PIN:"
-+msgstr "براہ مہربانی PIN داخل کریں:"
-+
-+#: ../panel-plugin/preferences.c:285
-+msgid "Close"
-+msgstr "بند کریں"
-+
-+#: ../panel-plugin/preferences.c:290
-+msgid "No known device found."
-+msgstr "کوئی جانی پہچانی ڈیوائس نہیں ملی."
-+
-+#: ../panel-plugin/preferences.c:292
-+msgid "The following devices were found:"
-+msgstr "مندرجہ ڈیوائسیں دریافت ہوئی ہیں:"
-+
-+#: ../panel-plugin/preferences.c:299
-+msgid "Use this device"
-+msgstr "یہ ڈیوائس استعمال کریں"
-+
-+#: ../panel-plugin/preferences.c:343
-+msgid "Configure Cell Modem Monitor"
-+msgstr "سیل فون مانیٹر وضع کریں"
-+
-+#. The header - this was most copied from other sources
-+#: ../panel-plugin/preferences.c:356
-+msgid "Cellular Modem Monitor"
-+msgstr "سیلولر موڈیم مانیٹر"
-+
-+#: ../panel-plugin/preferences.c:387
-+msgid "Modem driver:"
-+msgstr "موڈیم ڈرائیور:"
-+
-+#: ../panel-plugin/preferences.c:409
-+msgid "Modem speed:"
-+msgstr "موڈیم رفتار:"
-+
-+#: ../panel-plugin/preferences.c:422
-+msgid "Modem device:"
-+msgstr "موڈیم ڈیوائس:"
-+
-+#: ../panel-plugin/preferences.c:434
-+msgid "Autodetect modem..."
-+msgstr "موڈیم کی خودکار دریافت..."
-+
-+#: ../panel-plugin/preferences.c:444
-+msgid "Maximum quality:"
-+msgstr "زیادہ سے زیادہ کوالٹی:"
-+
-+#: ../panel-plugin/preferences.c:455
-+msgid "Low quality percentage:"
-+msgstr "کم کوالٹی فیصد:"
-+
-+#: ../panel-plugin/preferences.c:465
-+msgid "Critical quality percentage:"
-+msgstr "خطرناک حد تک کم کوالٹی فیصد:"
-+
-+#: ../panel-plugin/preferences.c:479
-+msgid "Check for SMS every"
-+msgstr "ایس ایم ایس چیک کریں ہر"
-+
-+#: ../panel-plugin/preferences.c:481
-+msgid "minutes"
-+msgstr "منٹ"
-+
-diff -Nur xfce4-cellmodem-plugin-0.0.5.orig/po/ur.po xfce4-cellmodem-plugin-0.0.5/po/ur.po
---- xfce4-cellmodem-plugin-0.0.5.orig/po/ur.po	1970-01-01 01:00:00.000000000 +0100
-+++ xfce4-cellmodem-plugin-0.0.5/po/ur.po	2011-04-09 02:49:11.740376233 +0200
-@@ -0,0 +1,245 @@
-+# SOME DESCRIPTIVE TITLE.
-+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
-+# This file is distributed under the same license as the PACKAGE package.
-+# FIRST AUTHOR <EMAIL at ADDRESS>, YEAR.
-+#
-+msgid ""
-+msgstr ""
-+"Project-Id-Version: xfce4-cellmodem-plugin\n"
-+"Report-Msgid-Bugs-To: \n"
-+"POT-Creation-Date: 2008-07-22 19:01+0100\n"
-+"PO-Revision-Date: 2009-05-14 02:42+0500\n"
-+"Last-Translator: Muhammad Ali Makki <makki.ma at gmail.com>\n"
-+"Language-Team: Urdu <makki.ma at gmail.com>\n"
-+"MIME-Version: 1.0\n"
-+"Content-Type: text/plain; charset=utf-8\n"
-+"Content-Transfer-Encoding: 8bit\n"
-+"Plural-Forms: Plural-Forms: nplurals=2; plural=n != 1;\n"
-+"X-Poedit-Language: Urdu\n"
-+"X-Poedit-Country: PAKISTAN\n"
-+"X-Poedit-SourceCharset: utf-8\n"
-+
-+#: ../panel-plugin/cellmodem.c:482
-+msgid "Initializing plugin now"
-+msgstr "پلگ ان چلایا جارہا ہے"
-+
-+#: ../panel-plugin/cellmodem.c:505
-+#, c-format
-+msgid ""
-+"Error detected:\n"
-+"%s"
-+msgstr ""
-+"غلطی دریافت ہوئی ہے:\n"
-+"%s"
-+
-+#: ../panel-plugin/cellmodem.c:511
-+msgid "Not registered"
-+msgstr "رجسٹر نہیں ہے"
-+
-+#: ../panel-plugin/cellmodem.c:514
-+msgid "Modem needs PIN"
-+msgstr "موڈیم کو PIN درکار ہے"
-+
-+#: ../panel-plugin/cellmodem.c:517
-+msgid "Registering"
-+msgstr "رجسٹر کیا جارہا ہے"
-+
-+#: ../panel-plugin/cellmodem.c:520
-+#, c-format
-+msgid ""
-+"Registered [GPRS] to %s\n"
-+"Quality: %d (%d%%)"
-+msgstr ""
-+"جی پی آر ایس [GPRS] رجسٹر ہے تا %s\n"
-+"کوالٹی: %d (%d%%)"
-+
-+#: ../panel-plugin/cellmodem.c:523
-+#, c-format
-+msgid ""
-+"Registered [UMTS] to %s\n"
-+"Quality: %d (%d%%)"
-+msgstr ""
-+"یو ایم ٹی ایس [UMTS] رجسٹر ہے تا %s\n"
-+"کوالٹی: %d (%d%%)"
-+
-+#: ../panel-plugin/cellmodem.c:526
-+#, c-format
-+msgid ""
-+"Registered [HSDPA] to %s\n"
-+"Quality: %d (%d%%)"
-+msgstr ""
-+"ایچ ایس ڈی پی اے [HSDPA] رجسٹر ہے تا %s\n"
-+"کوالٹی: %d (%d%%)"
-+
-+#: ../panel-plugin/cellmodem.c:529
-+#, c-format
-+msgid ""
-+"Registered to %s\n"
-+"Quality: %d (%d%%)"
-+msgstr ""
-+"رجسٹر ہے تا %s\n"
-+"کوالٹی: %d (%d%%)"
-+
-+#. Error
-+#: ../panel-plugin/cellmodem.c:687
-+msgid "Error in modem reply to CREG"
-+msgstr "موڈیم کے جواب میں غلطی تا CREG"
-+
-+#: ../panel-plugin/cellmodem.c:696
-+msgid "Invalid reply to +CREG"
-+msgstr "غلط جواب تا +CREG"
-+
-+#: ../panel-plugin/cellmodem.c:721
-+msgid "Invalid CREG reply from modem"
-+msgstr "موڈیم سے نا موزوں CREG جواب"
-+
-+#: ../panel-plugin/cellmodem.c:760
-+msgid "Error in modem reply to COPS"
-+msgstr "موڈیم کے جواب میں غلطی تا COPS"
-+
-+#: ../panel-plugin/cellmodem.c:816
-+msgid "Invalid COPS reply from modem"
-+msgstr "موڈیم سے ناموزوں COPS جواب"
-+
-+#: ../panel-plugin/cellmodem.c:844
-+msgid "Error in modem reply to CPIN"
-+msgstr "موڈیم کے جواب میں غلطی تا CPIN"
-+
-+#: ../panel-plugin/cellmodem.c:870
-+msgid "Invalid CPIN reply from modem"
-+msgstr "موڈیم سے نا موزوں CPIN جواب"
-+
-+#: ../panel-plugin/cellmodem.c:875
-+msgid "Unsupportted CPIN reply from modem"
-+msgstr "موڈیم سے غیر معاونت شدہ CPIN جواب"
-+
-+#: ../panel-plugin/cellmodem.c:919
-+#: ../panel-plugin/cellmodem.c:973
-+msgid "Invalid OHCIP reply from modem"
-+msgstr "موڈیم سے نا موزوں OHCIP جواب"
-+
-+#: ../panel-plugin/cellmodem.c:923
-+#: ../panel-plugin/cellmodem.c:977
-+msgid "Unsupportted OHCIP reply from modem"
-+msgstr "موڈیم سے غیر معاونت شدہ OHCIP جواب"
-+
-+#. Error
-+#: ../panel-plugin/cellmodem.c:1019
-+msgid "Cannot send PIN to modem"
-+msgstr "موڈیم کو PIN ارسال نہیں کیا جاسکتا"
-+
-+#: ../panel-plugin/cellmodem.c:1055
-+msgid "Error in modem reply to CSQ"
-+msgstr "موڈیم کے جواب میں غلطی تا CSQ"
-+
-+#: ../panel-plugin/cellmodem.c:1075
-+msgid "Invalid CSQ reply from modem"
-+msgstr "موڈیم سے نا موزوں CSQ جواب"
-+
-+#: ../panel-plugin/cellmodem.c:1276
-+#: ../panel-plugin/cellmodem.c:1603
-+msgid "Cannot open modem"
-+msgstr "موڈیم نہیں کھولا جاسکتا"
-+
-+#: ../panel-plugin/cellmodem.c:1429
-+msgid "Error reading from modem"
-+msgstr "موڈیم سے پڑھنے میں غلطی"
-+
-+#: ../panel-plugin/cellmodem.c:1507
-+msgid "Error writing to modem"
-+msgstr "موڈیم پر لکھنے میں غلطی"
-+
-+#: ../panel-plugin/cellmodem.c:1523
-+msgid "Modem did not reply to command"
-+msgstr "موڈیم نے کمانڈ کو جواب نہیں دیا"
-+
-+#: ../panel-plugin/cellmodem.c:1541
-+msgid "No driver defined"
-+msgstr "کوئی ڈرائیو متعین نہیں ہے"
-+
-+#: ../panel-plugin/cellmodem.c:1546
-+msgid "No modem instance"
-+msgstr "کوئی موڈیم حالت نہیں"
-+
-+#: ../panel-plugin/cellmodem.c:1720
-+msgid "Modem initializing"
-+msgstr "موڈیم تیاری"
-+
-+#: ../panel-plugin/cellmodem.c:1755
-+msgid "Invalid driver specified"
-+msgstr "نا موزوں ڈرائیو متعین کی گئی ہے"
-+
-+#. Error.
-+#: ../panel-plugin/pin_helper.c:31
-+msgid "Invalid PIN entered. PIN has 4 digits"
-+msgstr "نا موزوں PIN داخل کی گئی ہے. PIN چار 4 عدد رکھتی ہے"
-+
-+#: ../panel-plugin/pin_helper.c:65
-+msgid "Enter PIN"
-+msgstr "PIN داخل کریں"
-+
-+#: ../panel-plugin/pin_helper.c:77
-+msgid "Please enter PIN:"
-+msgstr "براہ مہربانی PIN داخل کریں:"
-+
-+#: ../panel-plugin/preferences.c:285
-+msgid "Close"
-+msgstr "بند کریں"
-+
-+#: ../panel-plugin/preferences.c:290
-+msgid "No known device found."
-+msgstr "کوئی جانی پہچانی ڈیوائس نہیں ملی."
-+
-+#: ../panel-plugin/preferences.c:292
-+msgid "The following devices were found:"
-+msgstr "مندرجہ ڈیوائسیں دریافت ہوئی ہیں:"
-+
-+#: ../panel-plugin/preferences.c:299
-+msgid "Use this device"
-+msgstr "یہ ڈیوائس استعمال کریں"
-+
-+#: ../panel-plugin/preferences.c:343
-+msgid "Configure Cell Modem Monitor"
-+msgstr "سیل فون مانیٹر وضع کریں"
-+
-+#. The header - this was most copied from other sources
-+#: ../panel-plugin/preferences.c:356
-+msgid "Cellular Modem Monitor"
-+msgstr "سیلولر موڈیم مانیٹر"
-+
-+#: ../panel-plugin/preferences.c:387
-+msgid "Modem driver:"
-+msgstr "موڈیم ڈرائیور:"
-+
-+#: ../panel-plugin/preferences.c:409
-+msgid "Modem speed:"
-+msgstr "موڈیم رفتار:"
-+
-+#: ../panel-plugin/preferences.c:422
-+msgid "Modem device:"
-+msgstr "موڈیم ڈیوائس:"
-+
-+#: ../panel-plugin/preferences.c:434
-+msgid "Autodetect modem..."
-+msgstr "موڈیم کی خودکار دریافت..."
-+
-+#: ../panel-plugin/preferences.c:444
-+msgid "Maximum quality:"
-+msgstr "زیادہ سے زیادہ کوالٹی:"
-+
-+#: ../panel-plugin/preferences.c:455
-+msgid "Low quality percentage:"
-+msgstr "کم کوالٹی فیصد:"
-+
-+#: ../panel-plugin/preferences.c:465
-+msgid "Critical quality percentage:"
-+msgstr "خطرناک حد تک کم کوالٹی فیصد:"
-+
-+#: ../panel-plugin/preferences.c:479
-+msgid "Check for SMS every"
-+msgstr "ایس ایم ایس چیک کریں ہر"
-+
-+#: ../panel-plugin/preferences.c:481
-+msgid "minutes"
-+msgstr "منٹ"
-+
-diff -Nur xfce4-cellmodem-plugin-0.0.5.orig/po/zh_CN.po xfce4-cellmodem-plugin-0.0.5/po/zh_CN.po
---- xfce4-cellmodem-plugin-0.0.5.orig/po/zh_CN.po	1970-01-01 01:00:00.000000000 +0100
-+++ xfce4-cellmodem-plugin-0.0.5/po/zh_CN.po	2011-04-09 02:49:11.741376478 +0200
-@@ -0,0 +1,243 @@
-+# Chinese translations for xfce package.
-+# Copyright (C) 2008 THE xfce'S COPYRIGHT HOLDER
-+# This file is distributed under the same license as the xfce package.
-+# Hunt Xu <huntxu at live.cn>, 2008, 2009.
-+#
-+msgid ""
-+msgstr ""
-+"Project-Id-Version: xfce 4-cellmodem-plugin\n"
-+"Report-Msgid-Bugs-To: \n"
-+"POT-Creation-Date: 2008-07-22 19:01+0100\n"
-+"PO-Revision-Date: 2009-06-17 01:20+0800\n"
-+"Last-Translator: Hunt Xu <huntxu at live.cn>\n"
-+"Language-Team: Chinese (simplified) <xfce-i18n at xfce.org>\n"
-+"MIME-Version: 1.0\n"
-+"Content-Type: text/plain; charset=UTF-8\n"
-+"Content-Transfer-Encoding: 8bit\n"
-+
-+#: ../panel-plugin/cellmodem.c:482
-+msgid "Initializing plugin now"
-+msgstr "正在初始化插件"
-+
-+#: ../panel-plugin/cellmodem.c:505
-+#, c-format
-+msgid ""
-+"Error detected:\n"
-+"%s"
-+msgstr ""
-+"检测到错误:\n"
-+"%s"
-+
-+#: ../panel-plugin/cellmodem.c:511
-+msgid "Not registered"
-+msgstr "未注册"
-+
-+#: ../panel-plugin/cellmodem.c:514
-+msgid "Modem needs PIN"
-+msgstr "需要输入 PIN 码才能使用 modem"
-+
-+#: ../panel-plugin/cellmodem.c:517
-+msgid "Registering"
-+msgstr "正在注册"
-+
-+#: ../panel-plugin/cellmodem.c:520
-+#, c-format
-+msgid ""
-+"Registered [GPRS] to %s\n"
-+"Quality: %d (%d%%)"
-+msgstr ""
-+"已注册 GPRS 到 %s\n"
-+"信号强度: %d (%d%%)"
-+
-+#: ../panel-plugin/cellmodem.c:523
-+#, c-format
-+msgid ""
-+"Registered [UMTS] to %s\n"
-+"Quality: %d (%d%%)"
-+msgstr ""
-+"已注册 UMTS 到 %s\n"
-+"信号强度: %d (%d%%)"
-+
-+#: ../panel-plugin/cellmodem.c:526
-+#, c-format
-+msgid ""
-+"Registered [HSDPA] to %s\n"
-+"Quality: %d (%d%%)"
-+msgstr ""
-+"已注册 HSDPA 到 %s\n"
-+"信号强度: %d (%d%%)"
-+
-+#: ../panel-plugin/cellmodem.c:529
-+#, c-format
-+msgid ""
-+"Registered to %s\n"
-+"Quality: %d (%d%%)"
-+msgstr ""
-+"已注册到 %s\n"
-+"信号强度: %d (%d%%)"
-+
-+#. Error
-+#: ../panel-plugin/cellmodem.c:687
-+msgid "Error in modem reply to CREG"
-+msgstr ""
-+
-+#: ../panel-plugin/cellmodem.c:696
-+msgid "Invalid reply to +CREG"
-+msgstr ""
-+
-+#: ../panel-plugin/cellmodem.c:721
-+msgid "Invalid CREG reply from modem"
-+msgstr ""
-+
-+#: ../panel-plugin/cellmodem.c:760
-+msgid "Error in modem reply to COPS"
-+msgstr ""
-+
-+#: ../panel-plugin/cellmodem.c:816
-+msgid "Invalid COPS reply from modem"
-+msgstr ""
-+
-+#: ../panel-plugin/cellmodem.c:844
-+msgid "Error in modem reply to CPIN"
-+msgstr ""
-+
-+#: ../panel-plugin/cellmodem.c:870
-+msgid "Invalid CPIN reply from modem"
-+msgstr ""
-+
-+#: ../panel-plugin/cellmodem.c:875
-+msgid "Unsupportted CPIN reply from modem"
-+msgstr ""
-+
-+#: ../panel-plugin/cellmodem.c:919
-+#: ../panel-plugin/cellmodem.c:973
-+msgid "Invalid OHCIP reply from modem"
-+msgstr ""
-+
-+#: ../panel-plugin/cellmodem.c:923
-+#: ../panel-plugin/cellmodem.c:977
-+msgid "Unsupportted OHCIP reply from modem"
-+msgstr ""
-+
-+#. Error
-+#: ../panel-plugin/cellmodem.c:1019
-+msgid "Cannot send PIN to modem"
-+msgstr ""
-+
-+#: ../panel-plugin/cellmodem.c:1055
-+msgid "Error in modem reply to CSQ"
-+msgstr ""
-+
-+#: ../panel-plugin/cellmodem.c:1075
-+msgid "Invalid CSQ reply from modem"
-+msgstr ""
-+
-+#: ../panel-plugin/cellmodem.c:1276
-+#: ../panel-plugin/cellmodem.c:1603
-+msgid "Cannot open modem"
-+msgstr "无法打开 modem"
-+
-+#: ../panel-plugin/cellmodem.c:1429
-+msgid "Error reading from modem"
-+msgstr "从 modem 接收数据时发生错误"
-+
-+#: ../panel-plugin/cellmodem.c:1507
-+msgid "Error writing to modem"
-+msgstr "向 modem 发送数据时发生错误"
-+
-+#: ../panel-plugin/cellmodem.c:1523
-+msgid "Modem did not reply to command"
-+msgstr "Modem 未返回命令结果"
-+
-+#: ../panel-plugin/cellmodem.c:1541
-+msgid "No driver defined"
-+msgstr "未定义驱动"
-+
-+#: ../panel-plugin/cellmodem.c:1546
-+msgid "No modem instance"
-+msgstr ""
-+
-+#: ../panel-plugin/cellmodem.c:1720
-+msgid "Modem initializing"
-+msgstr "正在初始化 modem"
-+
-+#: ../panel-plugin/cellmodem.c:1755
-+msgid "Invalid driver specified"
-+msgstr "指定的驱动无效"
-+
-+#. Error.
-+#: ../panel-plugin/pin_helper.c:31
-+msgid "Invalid PIN entered. PIN has 4 digits"
-+msgstr "输入的 PIN 码无效。PIN 码为4位"
-+
-+#: ../panel-plugin/pin_helper.c:65
-+msgid "Enter PIN"
-+msgstr "输入 PIN 码"
-+
-+#: ../panel-plugin/pin_helper.c:77
-+msgid "Please enter PIN:"
-+msgstr "请输入 PIN 码:"
-+
-+#: ../panel-plugin/preferences.c:285
-+msgid "Close"
-+msgstr "关闭"
-+
-+#: ../panel-plugin/preferences.c:290
-+msgid "No known device found."
-+msgstr "未找到已知设备。"
-+
-+#: ../panel-plugin/preferences.c:292
-+msgid "The following devices were found:"
-+msgstr "发现以下设备:"
-+
-+#: ../panel-plugin/preferences.c:299
-+msgid "Use this device"
-+msgstr "使用这个设备"
-+
-+#: ../panel-plugin/preferences.c:343
-+#, fuzzy
-+msgid "Configure Cell Modem Monitor"
-+msgstr "配置手机 Modem 监视器"
-+
-+#. The header - this was most copied from other sources
-+#: ../panel-plugin/preferences.c:356
-+#, fuzzy
-+msgid "Cellular Modem Monitor"
-+msgstr "手机 modem 监视器"
-+
-+#: ../panel-plugin/preferences.c:387
-+msgid "Modem driver:"
-+msgstr "Modem 驱动:"
-+
-+#: ../panel-plugin/preferences.c:409
-+msgid "Modem speed:"
-+msgstr "Modem 速度:"
-+
-+#: ../panel-plugin/preferences.c:422
-+msgid "Modem device:"
-+msgstr "Modem 设备:"
-+
-+#: ../panel-plugin/preferences.c:434
-+msgid "Autodetect modem..."
-+msgstr "自动检测 modem..."
-+
-+#: ../panel-plugin/preferences.c:444
-+msgid "Maximum quality:"
-+msgstr "最大信号强度:"
-+
-+#: ../panel-plugin/preferences.c:455
-+msgid "Low quality percentage:"
-+msgstr "低信号强度:"
-+
-+#: ../panel-plugin/preferences.c:465
-+msgid "Critical quality percentage:"
-+msgstr "最低信号强度:"
-+
-+#: ../panel-plugin/preferences.c:479
-+msgid "Check for SMS every"
-+msgstr "检查 SMS 时间间隔:"
-+
-+#: ../panel-plugin/preferences.c:481
-+msgid "minutes"
-+msgstr "分钟"
-+
diff --git a/xfce4-cellmodem-plugin.spec b/xfce4-cellmodem-plugin.spec
index b9d6bd1..2d5a7b2 100644
--- a/xfce4-cellmodem-plugin.spec
+++ b/xfce4-cellmodem-plugin.spec
@@ -5,31 +5,25 @@
 
 Name:           xfce4-cellmodem-plugin
 Version:        0.0.5
-Release:        15%{?dist}
+Release:        16%{?dist}
 Summary:        Cell Modem monitor plugin for the Xfce panel
 
 Group:          User Interface/Desktops
 License:        GPLv2+
 URL:            http://goodies.xfce.org/projects/panel-plugins/%{name}
 Source0:        http://archive.xfce.org/src/panel-plugins/%{name}/%{majorversion}/%{name}-%{version}.tar.gz
-# From Debian: fix a typo in Makefile.am that breaks linking
-# http://git.xfce.org/panel-plugins/xfce4-cellmodem-plugin/commit/?id=404093d6e2f22064166b806711d5cb5d9dd935d2
-Patch0:         %{name}-0.0.5-typo-linking.patch
-# From Debian: fix underlinking
-# Upstream bug: http://bugzilla.xfce.org/show_bug.cgi?id=6952
-Patch1:         %{name}-0.0.5-explicit-linking-to-libxfcegui4.patch
+# fixes path of the desktop file for xfce4-panel 4.7
+# Port over to libxfce4ui
+Patch1:         xfce4-cellmodem-plugin-0.0.5-port-to-libxfce4ui.patch
+
 # From Xfce: Fix crash on removing the plugin from the panel
 # Fedora bug:   https://bugzilla.redhat.com/show_bug.cgi?id=874042
 # Upstream bug: https://bugzilla.xfce.org/show_bug.cgi?id=6747
 Patch2:         xfce4-cellmodem-plugin-0.0.5-fix-callback-prototype.patch
-# contains all translations from 
-# http://translations.xfce.org/projects/p/xfce4-cellmodem-plugin/c/master/
-# as of 2011-04-08
-Patch3:         %{name}-0.0.5-update-translations.patch
-# fixes path of the desktop file for xfce4-panel 4.7
+
 BuildRoot:      %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
 
-BuildRequires:  xfce4-panel-devel >= 4.3.22, libxfcegui4-devel >= 4.4.0
+BuildRequires:  xfce4-panel-devel >= 4.3.22, libxfce4ui-devel >= 4.4.0
 BuildRequires:  libusb-devel
 BuildRequires:  gettext, intltool
 BuildRequires:  libtool, xfce4-dev-tools
@@ -50,10 +44,8 @@ monitoring purposes. Current features include:
 
 %prep
 %setup -q
-%patch0 -p1 -b .typo
-%patch1 -p1 -b .explicit-linking
-%patch2 -p1 -b .fix-callback
-%patch3 -p1 -b .update-translations
+%patch1 -p1
+%patch2 -p1
 
 # Fix icon in 'Add new panel item' dialog
 sed -i 's|Icon=xfce-mouse|Icon=phone|g' panel-plugin/cellmodem.desktop.in.in
@@ -86,6 +78,9 @@ rm -rf $RPM_BUILD_ROOT
 
 
 %changelog
+* Sun Mar 29 2015 Kevin Fenzi <kevin at scrye.com> 0.0.5-16
+- Add patch porting to libxfceui4
+
 * Sat Feb 28 2015 Kevin Fenzi <kevin at scrye.com> 0.0.5-15
 - Rebuild for Xfce 4.12
 
@@ -131,5 +126,5 @@ rm -rf $RPM_BUILD_ROOT
 * Mon Jul 27 2009 Fedora Release Engineering <rel-eng at lists.fedoraproject.org> - 0.0.5-2
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
 
-* Thu May 05 2009 Christoph Wickert <cwickert at fedoraproject.org> - 0.0.5-1
+* Tue May 05 2009 Christoph Wickert <cwickert at fedoraproject.org> - 0.0.5-1
 - Initial Fedora package
-- 
cgit v0.10.2


	http://pkgs.fedoraproject.org/cgit/xfce4-cellmodem-plugin.git/commit/?h=f22&id=bf78343568d30887bf8e12d7cb4101c5d64c2a4c


More information about the scm-commits mailing list