[Goodies-commits] r2887 - in xfce4-mount-plugin/trunk: . panel-plugin po

Fabian Nowak timystery at xfce.org
Wed Jul 4 23:18:13 CEST 2007


Author: timystery
Date: 2007-07-04 21:18:13 +0000 (Wed, 04 Jul 2007)
New Revision: 2887

Modified:
   xfce4-mount-plugin/trunk/ChangeLog
   xfce4-mount-plugin/trunk/README
   xfce4-mount-plugin/trunk/configure.ac
   xfce4-mount-plugin/trunk/panel-plugin/devices.c
   xfce4-mount-plugin/trunk/panel-plugin/mount-plugin.c
   xfce4-mount-plugin/trunk/po/ca.po
   xfce4-mount-plugin/trunk/po/cs.po
   xfce4-mount-plugin/trunk/po/de.po
   xfce4-mount-plugin/trunk/po/el.po
   xfce4-mount-plugin/trunk/po/en_GB.po
   xfce4-mount-plugin/trunk/po/eu.po
   xfce4-mount-plugin/trunk/po/fr.po
   xfce4-mount-plugin/trunk/po/gl.po
   xfce4-mount-plugin/trunk/po/hu.po
   xfce4-mount-plugin/trunk/po/ja.po
   xfce4-mount-plugin/trunk/po/ko.po
   xfce4-mount-plugin/trunk/po/lt.po
   xfce4-mount-plugin/trunk/po/no.po
   xfce4-mount-plugin/trunk/po/pl.po
   xfce4-mount-plugin/trunk/po/ru.po
   xfce4-mount-plugin/trunk/po/sq.po
   xfce4-mount-plugin/trunk/po/uk.po
   xfce4-mount-plugin/trunk/po/vi.po
   xfce4-mount-plugin/trunk/po/xfce4-mount-plugin.pot
   xfce4-mount-plugin/trunk/po/zh_TW.po
Log:
- broke translations by repairing one misspelled english work
- added cifs to list of network filesystems
- added language file nb.po



Modified: xfce4-mount-plugin/trunk/ChangeLog
===================================================================
--- xfce4-mount-plugin/trunk/ChangeLog	2007-07-04 06:57:05 UTC (rev 2886)
+++ xfce4-mount-plugin/trunk/ChangeLog	2007-07-04 21:18:13 UTC (rev 2887)
@@ -1,3 +1,8 @@
+04 july 2007 - version 0.5.3
+- fixed another broken string
+- added language "nb"
+- added cifs to list of network filesystems
+
 05 may 2007 - version 0.5.2 beginning...
 - fixed broken string, thus breaking the translations...
 - fixed hungarian translation using '\ ' for unknown reasons, which is invalid

Modified: xfce4-mount-plugin/trunk/README
===================================================================
--- xfce4-mount-plugin/trunk/README	2007-07-04 06:57:05 UTC (rev 2886)
+++ xfce4-mount-plugin/trunk/README	2007-07-04 21:18:13 UTC (rev 2887)
@@ -9,7 +9,7 @@
 #
 ###################################
 
-xfce4-mount-plugin - version 0.4.4
+xfce4-mount-plugin - version 0.5.3
 
 This little plugin behaves like the "kwikdisk - removable media utility" shipped
 with KDE.
@@ -30,3 +30,20 @@
 For mouting a device, the plugin simply runs a "mount /mount_point/ " command if
 no other command is explicitly specified in the options dialog.
 
+Acknowledgements go to the following people for several major or minor reasons,
+mostly for nice ideas and fea tures, but also for bugfixes and other stuff:
+
+ - Christoph Kühne
+ - Pavol Rusnak
+ - Lionel Le Folgoc
+ - Enrico Troeger
+ - Sergei "GeoNix"
+ - Neoklis
+ - Robby Workman
+ - Matthias Eller
+ - Jari Eskelinen
+ - Joost Kremers
+ - Jean-Baptiste Dulong
+
+Thank you.
+

Modified: xfce4-mount-plugin/trunk/configure.ac
===================================================================
--- xfce4-mount-plugin/trunk/configure.ac	2007-07-04 06:57:05 UTC (rev 2886)
+++ xfce4-mount-plugin/trunk/configure.ac	2007-07-04 21:18:13 UTC (rev 2887)
@@ -7,7 +7,7 @@
 dnl
 dnl for Xfce4-panel 4.3 and higher only!
 
-m4_define([mount_version],[0.5.2])
+m4_define([mount_version],[0.5.3])
 
 AC_INIT([xfce4-mount-plugin], [mount_version()],
 	[timystery at arcor.de])
@@ -63,7 +63,7 @@
 XDT_CHECK_PACKAGE([LIBXFCE4PANEL], [libxfce4panel-1.0], [4.3.20])
 
 dnl Check for i18n support
-XDT_I18N([ca cs de el en_GB eu fr gl hu ja ko lt no pl ru sq uk vi zh_TW])
+XDT_I18N([ca cs de el en_GB eu fr gl hu ja ko lt nb no pl ru sq uk vi zh_TW])
 
 dnl Check for debugging support
 XDT_FEATURE_DEBUG()

Modified: xfce4-mount-plugin/trunk/panel-plugin/devices.c
===================================================================
--- xfce4-mount-plugin/trunk/panel-plugin/devices.c	2007-07-04 06:57:05 UTC (rev 2886)
+++ xfce4-mount-plugin/trunk/panel-plugin/devices.c	2007-07-04 21:18:13 UTC (rev 2887)
@@ -329,6 +329,7 @@
                 g_str_has_prefix(pfstab->fs_vfstype, "fuse") |
                 g_str_has_prefix(pfstab->fs_vfstype, "shfs") |
                 g_str_has_prefix(pfstab->fs_vfstype, "nfs") |
+                g_str_has_prefix(pfstab->fs_vfstype, "cifs") |
                 g_str_has_prefix(pfstab->fs_vfstype, "smbfs");
 
         if ( has_valid_mount_device &&
@@ -518,6 +519,7 @@
 			  g_str_has_prefix(pmntent->mnt_type, "fuse") ||
 			  g_str_has_prefix(pmntent->mnt_type, "nfs") ||
 			  g_str_has_prefix(pmntent->mnt_type, "smbfs") ||
+			  g_str_has_prefix(pmntent->mnt_type, "cifs") ||
 			  g_str_has_prefix(pmntent->mnt_type, "shfs") )
 			) continue;
 
@@ -552,7 +554,7 @@
      */
     if (strstr(device, "/dev")==NULL) { /* remote or unknown */
         if (strstr(device, "nfs") || strstr(device, "smbfs")
-            || strstr(device, "shfs") || strstr(device, "fuse")) {
+            || strstr(device, "shfs") || strstr(device, "cifs") || strstr(device, "fuse")) {
             dc = REMOTE;
         }
     }

Modified: xfce4-mount-plugin/trunk/panel-plugin/mount-plugin.c
===================================================================
--- xfce4-mount-plugin/trunk/panel-plugin/mount-plugin.c	2007-07-04 06:57:05 UTC (rev 2886)
+++ xfce4-mount-plugin/trunk/panel-plugin/mount-plugin.c	2007-07-04 21:18:13 UTC (rev 2887)
@@ -54,7 +54,7 @@
                         msg = _("The device \"%s\" should be removable safely "
                                     "now.");
                     else
-                        msg = _("An error occured. The device should not be "
+                        msg = _("An error occurred. The device should not be "
                                     "removed!");
 
                 my_dlg = gtk_message_dialog_new (NULL,

Modified: xfce4-mount-plugin/trunk/po/ca.po
===================================================================
--- xfce4-mount-plugin/trunk/po/ca.po	2007-07-04 06:57:05 UTC (rev 2886)
+++ xfce4-mount-plugin/trunk/po/ca.po	2007-07-04 21:18:13 UTC (rev 2887)
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: xfce4-mount-plugin 0.5.2\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-05-05 20:03+0200\n"
+"POT-Creation-Date: 2007-07-04 22:53+0200\n"
 "PO-Revision-Date: 2007-05-11 19:30+0100\n"
 "Last-Translator: Carles Muñoz Gorriz <carlesmu at internautas.org>\n"
 "Language-Team: Catalan <xfce-i18n at xfce.org>\n"
@@ -94,7 +94,8 @@
 msgstr "El dispositiu «%s» ja es pot extreure de forma segura."
 
 #: ../panel-plugin/mount-plugin.c:57
-msgid "An error occured. The device should not be removed!"
+#, fuzzy
+msgid "An error occurred. The device should not be removed!"
 msgstr "Error: El dispositiu no s'ha d'extreure!"
 
 #: ../panel-plugin/mount-plugin.c:183

Modified: xfce4-mount-plugin/trunk/po/cs.po
===================================================================
--- xfce4-mount-plugin/trunk/po/cs.po	2007-07-04 06:57:05 UTC (rev 2886)
+++ xfce4-mount-plugin/trunk/po/cs.po	2007-07-04 21:18:13 UTC (rev 2887)
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: xfce4-mount-plugin 0.5.2\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-05-05 20:03+0200\n"
+"POT-Creation-Date: 2007-07-04 22:53+0200\n"
 "PO-Revision-Date: 2007-05-05 18:13+0100\n"
 "Last-Translator: Michal Várady <miko.vaji at gmail.com>\n"
 "Language-Team: Czech <xfce-i18n at xfce.org>\n"
@@ -92,7 +92,8 @@
 msgstr "Zařízení \"%s\" je nyní bezpečně odpojitelné."
 
 #: ../panel-plugin/mount-plugin.c:57
-msgid "An error occured. The device should not be removed!"
+#, fuzzy
+msgid "An error occurred. The device should not be removed!"
 msgstr "Nastala chyba. Zařízení by nemělo být fyzicky odpojeno!"
 
 #: ../panel-plugin/mount-plugin.c:183

Modified: xfce4-mount-plugin/trunk/po/de.po
===================================================================
--- xfce4-mount-plugin/trunk/po/de.po	2007-07-04 06:57:05 UTC (rev 2886)
+++ xfce4-mount-plugin/trunk/po/de.po	2007-07-04 21:18:13 UTC (rev 2887)
@@ -6,10 +6,10 @@
 #
 msgid ""
 msgstr ""
-"Project-Id-Version: xfce4-mount-plugin 0.5.2\n"
+"Project-Id-Version: xfce4-mount-plugin 0.5.3\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-05-05 20:03+0200\n"
-"PO-Revision-Date: 2007-02-17 16:04+0100\n"
+"POT-Creation-Date: 2007-07-04 22:53+0200\n"
+"PO-Revision-Date: 2007-07-04 23:21+0200\n"
 "Last-Translator: Fabian Nowak <timystery at arcor.de>\n"
 "Language-Team: German <xfce-i18n at xfce.org>\n"
 "MIME-Version: 1.0\n"
@@ -91,7 +91,7 @@
 msgstr "Das Gerät »%s« sollte sich jetzt sicher entfernen lassen."
 
 #: ../panel-plugin/mount-plugin.c:57
-msgid "An error occured. The device should not be removed!"
+msgid "An error occurred. The device should not be removed!"
 msgstr "Ein Fehler hat sich ereignet. Das Gerät sollte nicht entfernt werden!"
 
 #: ../panel-plugin/mount-plugin.c:183
@@ -235,7 +235,6 @@
 msgstr "_Folgende Dateisysteme ausschließen"
 
 #: ../panel-plugin/mount-plugin.c:910
-#, fuzzy
 msgid "_File systems"
 msgstr "_Dateisysteme"
 

Modified: xfce4-mount-plugin/trunk/po/el.po
===================================================================
--- xfce4-mount-plugin/trunk/po/el.po	2007-07-04 06:57:05 UTC (rev 2886)
+++ xfce4-mount-plugin/trunk/po/el.po	2007-07-04 21:18:13 UTC (rev 2887)
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: xfce4-mount-plugin 0.5.2\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-05-05 20:03+0200\n"
+"POT-Creation-Date: 2007-07-04 22:53+0200\n"
 "PO-Revision-Date: 2006-08-04 22:18+0200\n"
 "Last-Translator: Stavros Giannouris <stavrosg at serverhive.com>\n"
 "Language-Team: Greek <xfce-i18n at xfce.org>\n"
@@ -94,7 +94,8 @@
 msgstr "Η συσκευή \"%s\" μπορεί να αφαιρεθεί με ασφάλεια."
 
 #: ../panel-plugin/mount-plugin.c:57
-msgid "An error occured. The device should not be removed!"
+#, fuzzy
+msgid "An error occurred. The device should not be removed!"
 msgstr "Προέκυψε ένα σφάλμα. Η συσκευή δεν πρέπει να αφαιρεθεί!"
 
 #: ../panel-plugin/mount-plugin.c:183

Modified: xfce4-mount-plugin/trunk/po/en_GB.po
===================================================================
--- xfce4-mount-plugin/trunk/po/en_GB.po	2007-07-04 06:57:05 UTC (rev 2886)
+++ xfce4-mount-plugin/trunk/po/en_GB.po	2007-07-04 21:18:13 UTC (rev 2887)
@@ -8,13 +8,13 @@
 msgstr ""
 "Project-Id-Version: xfce4-mount-plugin 0.5.2\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-05-05 20:03+0200\n"
+"POT-Creation-Date: 2007-07-04 22:53+0200\n"
 "PO-Revision-Date: 2007-06-18 13:37+1000\n"
 "Last-Translator: Jeff Bailes <thepizzaking at gmail.com>\n"
 "Language-Team: British English <xfce-i18n at xfce.org>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit"
+"Content-Transfer-Encoding: 8bit\n"
 
 #: ../panel-plugin/devices.c:53
 #, c-format
@@ -91,7 +91,8 @@
 msgstr "The device \"%s\" should be now be safely removable."
 
 #: ../panel-plugin/mount-plugin.c:57
-msgid "An error occured. The device should not be removed!"
+#, fuzzy
+msgid "An error occurred. The device should not be removed!"
 msgstr "An error occured. The device should not be removed!"
 
 #: ../panel-plugin/mount-plugin.c:183
@@ -236,4 +237,3 @@
 #: ../panel-plugin/xfce4-mount-plugin.desktop.in.in.h:2
 msgid "Shows all mountable devices and (un)mounts them on request."
 msgstr "Shows all mountable devices and (un)mounts them on request."
-

Modified: xfce4-mount-plugin/trunk/po/eu.po
===================================================================
--- xfce4-mount-plugin/trunk/po/eu.po	2007-07-04 06:57:05 UTC (rev 2886)
+++ xfce4-mount-plugin/trunk/po/eu.po	2007-07-04 21:18:13 UTC (rev 2887)
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: xfce4-mount-plugin 0.5.2\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-05-05 20:03+0200\n"
+"POT-Creation-Date: 2007-07-04 22:53+0200\n"
 "PO-Revision-Date: 2006-04-20 22:26+0200\n"
 "Last-Translator: Piarres Beobide <pi at beobide.net>\n"
 "Language-Team: Basque <xfce-i18n at xfce.org>\n"
@@ -92,7 +92,8 @@
 msgstr "\"%s\" gailua orain ziurtasunez deskonektatu daiteke."
 
 #: ../panel-plugin/mount-plugin.c:57
-msgid "An error occured. The device should not be removed!"
+#, fuzzy
+msgid "An error occurred. The device should not be removed!"
 msgstr "Errore bat gertatu da. Gailua ezin da ezabatu!"
 
 #: ../panel-plugin/mount-plugin.c:183

Modified: xfce4-mount-plugin/trunk/po/fr.po
===================================================================
--- xfce4-mount-plugin/trunk/po/fr.po	2007-07-04 06:57:05 UTC (rev 2886)
+++ xfce4-mount-plugin/trunk/po/fr.po	2007-07-04 21:18:13 UTC (rev 2887)
@@ -10,7 +10,7 @@
 msgstr ""
 "Project-Id-Version: xfce4-mount-plugin 0.5.2\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-05-05 20:03+0200\n"
+"POT-Creation-Date: 2007-07-04 22:53+0200\n"
 "PO-Revision-Date: 2007-06-15 18:15+0100\n"
 "Last-Translator: Maximilian Schleiss <maximilian at xfce.org>\n"
 "Language-Team: French <xfce-i18n at xfce.org>\n"
@@ -83,19 +83,21 @@
 msgid "not mounted\n"
 msgstr "non monté\n"
 
-#: ../panel-plugin/devices.c:236
-#: ../panel-plugin/devices.c:285
+#: ../panel-plugin/devices.c:236 ../panel-plugin/devices.c:285
 msgid "Mount Plugin: Error executing command."
 msgstr "Greffon de montage : erreur à l'exécution de la commande."
 
 #: ../panel-plugin/mount-plugin.c:54
 #, c-format
 msgid "The device \"%s\" should be removable safely now."
-msgstr "Le périphérique \"%s\" peut maintenant être déconnecté de manière sûre."
+msgstr ""
+"Le périphérique \"%s\" peut maintenant être déconnecté de manière sûre."
 
 #: ../panel-plugin/mount-plugin.c:57
-msgid "An error occured. The device should not be removed!"
-msgstr "Une erreur s'est produite. Le périphérique ne devrait pas être déconnecté !"
+#, fuzzy
+msgid "An error occurred. The device should not be removed!"
+msgstr ""
+"Une erreur s'est produite. Le périphérique ne devrait pas être déconnecté !"
 
 #: ../panel-plugin/mount-plugin.c:183
 msgid "<span foreground=\"#FF0000\">not mounted</span>"
@@ -115,8 +117,12 @@
 msgstr "Monter les périphériques"
 
 #: ../panel-plugin/mount-plugin.c:686
-msgid "This is only useful and recommended if you specify \"sync\" as part of the \"unmount\" command string."
-msgstr "Ceci est utile et recommandé uniquement si vous spécifiez \"sync\" dans la ligne de commande de \"unmount\"."
+msgid ""
+"This is only useful and recommended if you specify \"sync\" as part of the "
+"\"unmount\" command string."
+msgstr ""
+"Ceci est utile et recommandé uniquement si vous spécifiez \"sync\" dans la "
+"ligne de commande de \"unmount\"."
 
 #: ../panel-plugin/mount-plugin.c:691
 msgid "Show _message after unmount"
@@ -141,11 +147,13 @@
 #: ../panel-plugin/mount-plugin.c:736
 #, c-format
 msgid ""
-"This command will be executed after mounting the device with the mount point of the device as argument.\n"
+"This command will be executed after mounting the device with the mount point "
+"of the device as argument.\n"
 "If you are unsure what to insert, try \"thunar %m\".\n"
 "'%d' can be used to specify the device, '%m' for the mountpoint."
 msgstr ""
-"Cette commande sera exécutée après le montage du périphérique avec son point de montage comme argument.\n"
+"Cette commande sera exécutée après le montage du périphérique avec son point "
+"de montage comme argument.\n"
 "Si vous n'êtes pas sûr de la commande, tapez \"thunar %m\" dans la console.\n"
 "'%d' spécifie le périphérique et '%m' le point de montage."
 
@@ -154,8 +162,12 @@
 msgstr "_Exécuter après le montage :"
 
 #: ../panel-plugin/mount-plugin.c:769
-msgid "WARNING: These options are for experts only! If you do not know what they may be good for, keep your hands off!"
-msgstr "ATTENTION : ces options sont réservées aux experts ! Si vous ne savez pas à quoi elle servent, ne les touchez pas !"
+msgid ""
+"WARNING: These options are for experts only! If you do not know what they "
+"may be good for, keep your hands off!"
+msgstr ""
+"ATTENTION : ces options sont réservées aux experts ! Si vous ne savez pas à "
+"quoi elle servent, ne les touchez pas !"
 
 #: ../panel-plugin/mount-plugin.c:774
 msgid "_Custom commands"
@@ -164,10 +176,12 @@
 #: ../panel-plugin/mount-plugin.c:793
 #, c-format
 msgid ""
-"Most users will only want to prepend \"sudo\" to both commands or prepend \"sync %d &&\" to the \"unmount %d\" command.\n"
+"Most users will only want to prepend \"sudo\" to both commands or prepend "
+"\"sync %d &&\" to the \"unmount %d\" command.\n"
 "'%d' is used to specify the device, '%m' for the mountpoint."
 msgstr ""
-"La plupart des utilisateurs voudront ajouter \"sudo\" au début de chaque commande ou \"sync %d &&\" à la commande \"unmount %d\".\n"
+"La plupart des utilisateurs voudront ajouter \"sudo\" au début de chaque "
+"commande ou \"sync %d &&\" à la commande \"unmount %d\".\n"
 "'%d' spécifie le périphérique et '\\%m' le point de montage."
 
 #: ../panel-plugin/mount-plugin.c:802
@@ -183,16 +197,24 @@
 msgstr "_Commandes"
 
 #: ../panel-plugin/mount-plugin.c:849
-msgid "Activate this option to also display network file systems like NFS, SMBFS, SHFS and SSHFS."
-msgstr "Activer cette option pour afficher aussi les systèmes de fichiers réseau comme NFS, SMBFS, SHFS et SSHFS."
+msgid ""
+"Activate this option to also display network file systems like NFS, SMBFS, "
+"SHFS and SSHFS."
+msgstr ""
+"Activer cette option pour afficher aussi les systèmes de fichiers réseau "
+"comme NFS, SMBFS, SHFS et SSHFS."
 
 #: ../panel-plugin/mount-plugin.c:854
 msgid "Display _network file systems"
 msgstr "Afficher les systèmes de fichiers _réseau"
 
 #: ../panel-plugin/mount-plugin.c:867
-msgid "Activate this option to also eject a CD-drive after unmounting and to insert before mounting."
-msgstr "Cocher cette option pour éjecter un lecteur de CD après le démontage et permettre l'insertion avant le montage."
+msgid ""
+"Activate this option to also eject a CD-drive after unmounting and to insert "
+"before mounting."
+msgstr ""
+"Cocher cette option pour éjecter un lecteur de CD après le démontage et "
+"permettre l'insertion avant le montage."
 
 #: ../panel-plugin/mount-plugin.c:872
 msgid "_Eject CD-drives"
@@ -218,16 +240,21 @@
 
 #: ../panel-plugin/xfce4-mount-plugin.desktop.in.in.h:2
 msgid "Shows all mountable devices and (un)mounts them on request."
-msgstr "Affiche tous les périphériques pouvant être montés et les (dé)monte à la demande. "
+msgstr ""
+"Affiche tous les périphériques pouvant être montés et les (dé)monte à la "
+"demande. "
 
 #~ msgid "size : %g\n"
 #~ msgstr "espace : %g\n"
+
 #~ msgid "<b>Commands</b>"
 #~ msgstr "<b>Commandes</b>"
+
 #~ msgid "Specify own commands"
 #~ msgstr "Préciser vos propres commandes"
+
 #~ msgid "<b>General</b>"
 #~ msgstr "<b>Général</b>"
+
 #~ msgid "Mount Plugin"
 #~ msgstr "Greffon de montage"
-

Modified: xfce4-mount-plugin/trunk/po/gl.po
===================================================================
--- xfce4-mount-plugin/trunk/po/gl.po	2007-07-04 06:57:05 UTC (rev 2886)
+++ xfce4-mount-plugin/trunk/po/gl.po	2007-07-04 21:18:13 UTC (rev 2887)
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: xfce4-mount-plugin 0.5.2\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-05-05 20:03+0200\n"
+"POT-Creation-Date: 2007-07-04 22:53+0200\n"
 "PO-Revision-Date: 2006-08-24 13:37+0100\n"
 "Last-Translator: Leandro Regueiro <leandro.regueiro at gmail.com>\n"
 "Language-Team: Galician <xfce-i18n at xfce.org>\n"
@@ -91,7 +91,8 @@
 msgstr ""
 
 #: ../panel-plugin/mount-plugin.c:57
-msgid "An error occured. The device should not be removed!"
+#, fuzzy
+msgid "An error occurred. The device should not be removed!"
 msgstr "Ocorreu un erro. Non se debe extraer o dispositivo!"
 
 #: ../panel-plugin/mount-plugin.c:183

Modified: xfce4-mount-plugin/trunk/po/hu.po
===================================================================
--- xfce4-mount-plugin/trunk/po/hu.po	2007-07-04 06:57:05 UTC (rev 2886)
+++ xfce4-mount-plugin/trunk/po/hu.po	2007-07-04 21:18:13 UTC (rev 2887)
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: xfce4-mount-plugin 0.5.2\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-05-05 20:03+0200\n"
+"POT-Creation-Date: 2007-07-04 22:53+0200\n"
 "PO-Revision-Date: 2007-05-06 09:40+0100\n"
 "Last-Translator: SZERVÁC Attila <sas at 321.hu>\n"
 "Language-Team: Hungarian <xfce-i18n at xfce.org>\n"
@@ -81,8 +81,7 @@
 msgid "not mounted\n"
 msgstr "nincs csatolva\n"
 
-#: ../panel-plugin/devices.c:236
-#: ../panel-plugin/devices.c:285
+#: ../panel-plugin/devices.c:236 ../panel-plugin/devices.c:285
 msgid "Mount Plugin: Error executing command."
 msgstr "Hiba a parancs futtatásakor"
 
@@ -92,7 +91,8 @@
 msgstr "A \"%s\" eszköz biztonságosan eltávolítható."
 
 #: ../panel-plugin/mount-plugin.c:57
-msgid "An error occured. The device should not be removed!"
+#, fuzzy
+msgid "An error occurred. The device should not be removed!"
 msgstr "Hiba történt. Az eszközt nem lehet eltávolítani!"
 
 #: ../panel-plugin/mount-plugin.c:183
@@ -113,8 +113,11 @@
 msgstr "Eszközök csatolása"
 
 #: ../panel-plugin/mount-plugin.c:686
-msgid "This is only useful and recommended if you specify \"sync\" as part of the \"unmount\" command string."
-msgstr "Ez csak akkor ajánlott, ha megadod a \"sync\"-et az \"unmount\" prancsban."
+msgid ""
+"This is only useful and recommended if you specify \"sync\" as part of the "
+"\"unmount\" command string."
+msgstr ""
+"Ez csak akkor ajánlott, ha megadod a \"sync\"-et az \"unmount\" prancsban."
 
 #: ../panel-plugin/mount-plugin.c:691
 msgid "Show _message after unmount"
@@ -139,11 +142,13 @@
 #: ../panel-plugin/mount-plugin.c:736
 #, c-format
 msgid ""
-"This command will be executed after mounting the device with the mount point of the device as argument.\n"
+"This command will be executed after mounting the device with the mount point "
+"of the device as argument.\n"
 "If you are unsure what to insert, try \"thunar %m\".\n"
 "'%d' can be used to specify the device, '%m' for the mountpoint."
 msgstr ""
-"E parancs fut egy eszköz csatolása után annak csatolási pontját argumentumként átadva. \n"
+"E parancs fut egy eszköz csatolása után annak csatolási pontját "
+"argumentumként átadva. \n"
 "Használd például ezt: \"thunar %m\".\n"
 "A '%d' eszközt, a '%m' csatolási pontot ad."
 
@@ -152,8 +157,12 @@
 msgstr "Csatolás után fut:"
 
 #: ../panel-plugin/mount-plugin.c:769
-msgid "WARNING: These options are for experts only! If you do not know what they may be good for, keep your hands off!"
-msgstr "FIGYELEM: E lehetőséges csak szakértőknek valók! Ha nem tudod, mire jók, ne módosítsd!"
+msgid ""
+"WARNING: These options are for experts only! If you do not know what they "
+"may be good for, keep your hands off!"
+msgstr ""
+"FIGYELEM: E lehetőséges csak szakértőknek valók! Ha nem tudod, mire jók, ne "
+"módosítsd!"
 
 #: ../panel-plugin/mount-plugin.c:774
 msgid "_Custom commands"
@@ -162,10 +171,12 @@
 #: ../panel-plugin/mount-plugin.c:793
 #, c-format
 msgid ""
-"Most users will only want to prepend \"sudo\" to both commands or prepend \"sync %d &&\" to the \"unmount %d\" command.\n"
+"Most users will only want to prepend \"sudo\" to both commands or prepend "
+"\"sync %d &&\" to the \"unmount %d\" command.\n"
 "'%d' is used to specify the device, '%m' for the mountpoint."
 msgstr ""
-"A legtöbb felhasználó csak \"sudo\"-t akar mindkét parancs, vagy \"sync %d &&\"-t az \"unmount %d\" parancs elé.\n"
+"A legtöbb felhasználó csak \"sudo\"-t akar mindkét parancs, vagy \"sync %d &&"
+"\"-t az \"unmount %d\" parancs elé.\n"
 "A '%d' eszközt, a '%m' csatolási pontot ad."
 
 #: ../panel-plugin/mount-plugin.c:802
@@ -181,16 +192,23 @@
 msgstr "Parancsok"
 
 #: ../panel-plugin/mount-plugin.c:849
-msgid "Activate this option to also display network file systems like NFS, SMBFS, SHFS and SSHFS."
-msgstr "E lehetőség az NFS, SMBFS, SHFS, SSHFS, stb. fájlrendszereket is kiírja."
+msgid ""
+"Activate this option to also display network file systems like NFS, SMBFS, "
+"SHFS and SSHFS."
+msgstr ""
+"E lehetőség az NFS, SMBFS, SHFS, SSHFS, stb. fájlrendszereket is kiírja."
 
 #: ../panel-plugin/mount-plugin.c:854
 msgid "Display _network file systems"
 msgstr "Hálózati fájlrendszereket is"
 
 #: ../panel-plugin/mount-plugin.c:867
-msgid "Activate this option to also eject a CD-drive after unmounting and to insert before mounting."
-msgstr "Használd e lehetőséget egy CD-meghajtó kinyitásához lecsatolás után és becsukásához csatolás előtt."
+msgid ""
+"Activate this option to also eject a CD-drive after unmounting and to insert "
+"before mounting."
+msgstr ""
+"Használd e lehetőséget egy CD-meghajtó kinyitásához lecsatolás után és "
+"becsukásához csatolás előtt."
 
 #: ../panel-plugin/mount-plugin.c:872
 msgid "_Eject CD-drives"
@@ -220,12 +238,15 @@
 
 #~ msgid "size : %g\n"
 #~ msgstr "méret : %g\n"
+
 #~ msgid "<b>Commands</b>"
 #~ msgstr "<b>Parancsok</b>"
+
 #~ msgid "Specify own commands"
 #~ msgstr "Saját parancs megadása"
+
 #~ msgid "<b>General</b>"
 #~ msgstr "<b>Általános</b>"
+
 #~ msgid "Mount Plugin"
 #~ msgstr "Csatoló"
-

Modified: xfce4-mount-plugin/trunk/po/ja.po
===================================================================
--- xfce4-mount-plugin/trunk/po/ja.po	2007-07-04 06:57:05 UTC (rev 2886)
+++ xfce4-mount-plugin/trunk/po/ja.po	2007-07-04 21:18:13 UTC (rev 2887)
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: xfce4-mount-plugin 0.5.2\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-05-05 20:03+0200\n"
+"POT-Creation-Date: 2007-07-04 22:53+0200\n"
 "PO-Revision-Date: 2006-04-02 20:42+0900\n"
 "Last-Translator: Daichi Kawahata <daichi at xfce.org>\n"
 "Language-Team: Japanese <xfce-i18n at xfce.org>\n"
@@ -92,7 +92,8 @@
 msgstr "デバイス「%s」を取り外す用意が整いました。"
 
 #: ../panel-plugin/mount-plugin.c:57
-msgid "An error occured. The device should not be removed!"
+#, fuzzy
+msgid "An error occurred. The device should not be removed!"
 msgstr "エラーが発生しました。デバイスを取り外してはいけません!"
 
 #: ../panel-plugin/mount-plugin.c:183

Modified: xfce4-mount-plugin/trunk/po/ko.po
===================================================================
--- xfce4-mount-plugin/trunk/po/ko.po	2007-07-04 06:57:05 UTC (rev 2886)
+++ xfce4-mount-plugin/trunk/po/ko.po	2007-07-04 21:18:13 UTC (rev 2887)
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: xfce4-mount-plugin 0.5.2\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-05-05 20:03+0200\n"
+"POT-Creation-Date: 2007-07-04 22:53+0200\n"
 "PO-Revision-Date: 2007-02-20 12:37+0900\n"
 "Last-Translator: ByungHyun Choi <byunghyun.choi at debianusers.org>\n"
 "Language-Team: Korean <xfce-i18n at xfce.org>\n"
@@ -91,7 +91,8 @@
 msgstr "\"%s\" 장치를 안전하게 분리할 수 있습니다."
 
 #: ../panel-plugin/mount-plugin.c:57
-msgid "An error occured. The device should not be removed!"
+#, fuzzy
+msgid "An error occurred. The device should not be removed!"
 msgstr "오류발생! 장치를 분리하지 마십시오!"
 
 #: ../panel-plugin/mount-plugin.c:183

Modified: xfce4-mount-plugin/trunk/po/lt.po
===================================================================
--- xfce4-mount-plugin/trunk/po/lt.po	2007-07-04 06:57:05 UTC (rev 2886)
+++ xfce4-mount-plugin/trunk/po/lt.po	2007-07-04 21:18:13 UTC (rev 2887)
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: xfce4-mount-plugin 0.5.2\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-05-05 20:03+0200\n"
+"POT-Creation-Date: 2007-07-04 22:53+0200\n"
 "PO-Revision-Date: 2006-01-04 21:39+0900\n"
 "Last-Translator: Rimas Kudelis <rq at akl.lt>\n"
 "Language-Team: Lithuanian <xfce-i18n at xfce.org>\n"
@@ -91,7 +91,7 @@
 msgstr ""
 
 #: ../panel-plugin/mount-plugin.c:57
-msgid "An error occured. The device should not be removed!"
+msgid "An error occurred. The device should not be removed!"
 msgstr ""
 
 #: ../panel-plugin/mount-plugin.c:183

Modified: xfce4-mount-plugin/trunk/po/no.po
===================================================================
--- xfce4-mount-plugin/trunk/po/no.po	2007-07-04 06:57:05 UTC (rev 2886)
+++ xfce4-mount-plugin/trunk/po/no.po	2007-07-04 21:18:13 UTC (rev 2887)
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: xfce4-mount-plugin 0.5.2\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-05-05 20:03+0200\n"
+"POT-Creation-Date: 2007-07-04 22:53+0200\n"
 "PO-Revision-Date: 2006-08-07 00:00+0200\n"
 "Last-Translator: Jon Kristian Nilsen <jonn3 at broadpark.no>\n"
 "Language-Team: Norwegian <xfce-i18n at xfce.org>\n"
@@ -91,7 +91,8 @@
 msgstr "Enheten \"%s\" kan trygt fjernes."
 
 #: ../panel-plugin/mount-plugin.c:57
-msgid "An error occured. The device should not be removed!"
+#, fuzzy
+msgid "An error occurred. The device should not be removed!"
 msgstr "En feil oppstod. Enheten må ikke fjernes!"
 
 #: ../panel-plugin/mount-plugin.c:183

Modified: xfce4-mount-plugin/trunk/po/pl.po
===================================================================
--- xfce4-mount-plugin/trunk/po/pl.po	2007-07-04 06:57:05 UTC (rev 2886)
+++ xfce4-mount-plugin/trunk/po/pl.po	2007-07-04 21:18:13 UTC (rev 2887)
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: xfce4-mount-plugin 0.5.2\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-05-05 20:03+0200\n"
+"POT-Creation-Date: 2007-07-04 22:53+0200\n"
 "PO-Revision-Date: 2006-04-08 13:09+0900\n"
 "Last-Translator: Piotr Maliński <admin at rk.edu.pl>\n"
 "Language-Team: Polish <xfce-i18n at xfce.org>\n"
@@ -91,7 +91,8 @@
 msgstr "Urządzenie \"%s\"  można już bezpiecznie usunąć."
 
 #: ../panel-plugin/mount-plugin.c:57
-msgid "An error occured. The device should not be removed!"
+#, fuzzy
+msgid "An error occurred. The device should not be removed!"
 msgstr "Wystąpił błąd. Nie usuwaj urządzenia!"
 
 #: ../panel-plugin/mount-plugin.c:183

Modified: xfce4-mount-plugin/trunk/po/ru.po
===================================================================
--- xfce4-mount-plugin/trunk/po/ru.po	2007-07-04 06:57:05 UTC (rev 2886)
+++ xfce4-mount-plugin/trunk/po/ru.po	2007-07-04 21:18:13 UTC (rev 2887)
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: xfce4-mount-plugin 0.5.2\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-05-05 20:03+0200\n"
+"POT-Creation-Date: 2007-07-04 22:53+0200\n"
 "PO-Revision-Date: 2006-01-04 21:40+0900\n"
 "Last-Translator: Eugene Ostapets <eostapets at altlinux.ru>\n"
 "Language-Team: Russian <xfce-i18n at xfce.org>\n"
@@ -94,7 +94,7 @@
 msgstr ""
 
 #: ../panel-plugin/mount-plugin.c:57
-msgid "An error occured. The device should not be removed!"
+msgid "An error occurred. The device should not be removed!"
 msgstr ""
 
 #: ../panel-plugin/mount-plugin.c:183

Modified: xfce4-mount-plugin/trunk/po/sq.po
===================================================================
--- xfce4-mount-plugin/trunk/po/sq.po	2007-07-04 06:57:05 UTC (rev 2886)
+++ xfce4-mount-plugin/trunk/po/sq.po	2007-07-04 21:18:13 UTC (rev 2887)
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: xfce4-mount-plugin 0.5.2\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-05-05 20:03+0200\n"
+"POT-Creation-Date: 2007-07-04 22:53+0200\n"
 "PO-Revision-Date: 2007-01-29 12:35+0200\n"
 "Last-Translator: Besnik Bleta <besnik at programeshqip.org>\n"
 "Language-Team: Albanian <xfce-i18n at xfce.org>\n"
@@ -91,7 +91,8 @@
 msgstr "Pajisja \"%s\" tani mund të hiqet pa rrezik."
 
 #: ../panel-plugin/mount-plugin.c:57
-msgid "An error occured. The device should not be removed!"
+#, fuzzy
+msgid "An error occurred. The device should not be removed!"
 msgstr "Pati një gabim. Pajisja nuk do të duhej hequr!"
 
 #: ../panel-plugin/mount-plugin.c:183

Modified: xfce4-mount-plugin/trunk/po/uk.po
===================================================================
--- xfce4-mount-plugin/trunk/po/uk.po	2007-07-04 06:57:05 UTC (rev 2886)
+++ xfce4-mount-plugin/trunk/po/uk.po	2007-07-04 21:18:13 UTC (rev 2887)
@@ -9,7 +9,7 @@
 msgstr ""
 "Project-Id-Version: xfce4-mount-plugin 0.5.2\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-07-04 09:54+0300\n"
+"POT-Creation-Date: 2007-07-04 22:53+0200\n"
 "PO-Revision-Date: 2007-06-19 16:14+0300\n"
 "Last-Translator: Dmitry Nikitin <luckas_fb at mail.ru>\n"
 "Language-Team: Ukrainian <xfce-i18n at xfce.org>\n"
@@ -98,7 +98,8 @@
 msgstr "Пристрій \"%s\" може бути безпечно зараз від'єднано."
 
 #: ../panel-plugin/mount-plugin.c:57
-msgid "An error occured. The device should not be removed!"
+#, fuzzy
+msgid "An error occurred. The device should not be removed!"
 msgstr "Сталася помилка. Пристрій не може бути від'єднано!"
 
 #: ../panel-plugin/mount-plugin.c:183

Modified: xfce4-mount-plugin/trunk/po/vi.po
===================================================================
--- xfce4-mount-plugin/trunk/po/vi.po	2007-07-04 06:57:05 UTC (rev 2886)
+++ xfce4-mount-plugin/trunk/po/vi.po	2007-07-04 21:18:13 UTC (rev 2887)
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: xfce4-mount-plugin 0.4.6\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-05-05 20:03+0200\n"
+"POT-Creation-Date: 2007-07-04 22:53+0200\n"
 "PO-Revision-Date: 2006-02-19 22:51+0300\n"
 "Last-Translator: Phan Vĩnh Thịnh <teppi at vnlinux.org>\n"
 "Language-Team: Vietnamese <xfce-i18n at xfce.org>\n"
@@ -92,7 +92,7 @@
 msgstr ""
 
 #: ../panel-plugin/mount-plugin.c:57
-msgid "An error occured. The device should not be removed!"
+msgid "An error occurred. The device should not be removed!"
 msgstr ""
 
 #: ../panel-plugin/mount-plugin.c:183

Modified: xfce4-mount-plugin/trunk/po/xfce4-mount-plugin.pot
===================================================================
--- xfce4-mount-plugin/trunk/po/xfce4-mount-plugin.pot	2007-07-04 06:57:05 UTC (rev 2886)
+++ xfce4-mount-plugin/trunk/po/xfce4-mount-plugin.pot	2007-07-04 21:18:13 UTC (rev 2887)
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-05-05 20:03+0200\n"
+"POT-Creation-Date: 2007-07-04 22:53+0200\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -91,7 +91,7 @@
 msgstr ""
 
 #: ../panel-plugin/mount-plugin.c:57
-msgid "An error occured. The device should not be removed!"
+msgid "An error occurred. The device should not be removed!"
 msgstr ""
 
 #: ../panel-plugin/mount-plugin.c:183

Modified: xfce4-mount-plugin/trunk/po/zh_TW.po
===================================================================
--- xfce4-mount-plugin/trunk/po/zh_TW.po	2007-07-04 06:57:05 UTC (rev 2886)
+++ xfce4-mount-plugin/trunk/po/zh_TW.po	2007-07-04 21:18:13 UTC (rev 2887)
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: xfce4-mount-plugin 0.5.2\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-05-05 20:03+0200\n"
+"POT-Creation-Date: 2007-07-04 22:53+0200\n"
 "PO-Revision-Date: 2006-07-28 23:47+0800\n"
 "Last-Translator: Cosmo Chene <cosmolax at gmail.com>\n"
 "Language-Team: Chinese/Traditional <xfce-i18n at xfce.org>\n"
@@ -91,7 +91,8 @@
 msgstr "您現在可以安心移除裝置 \"%s\" 。"
 
 #: ../panel-plugin/mount-plugin.c:57
-msgid "An error occured. The device should not be removed!"
+#, fuzzy
+msgid "An error occurred. The device should not be removed!"
 msgstr "發生錯誤。您不應貿然移除這個裝置!"
 
 #: ../panel-plugin/mount-plugin.c:183




More information about the Goodies-commits mailing list