[Xfce4-commits] Render smarter inbox labels and add a display name

2011-01-07 Thread Christian Dywan
Updating branch refs/heads/master
 to 13592c762d306bc3006f0e6ed99411177a89a58f (commit)
   from 237e914fef8806febc0e4ebccabb62840b7d (commit)

commit 13592c762d306bc3006f0e6ed99411177a89a58f
Author: Christian Dywan 
Date:   Sat Jan 8 00:45:50 2011 +0100

Render smarter inbox labels and add a display name

A single account is "Inbox", a unique provider is "gmail"

Fixes: https://bugs.launchpad.net/postler/+bug/699740

 postler/postler-accounts.vala |   33 -
 postler/postler-folders.vala  |   22 ++
 postler/postler-service.vala  |2 +-
 3 files changed, 39 insertions(+), 18 deletions(-)

diff --git a/postler/postler-accounts.vala b/postler/postler-accounts.vala
index 49b6437..6314ca4 100644
--- a/postler/postler-accounts.vala
+++ b/postler/postler-accounts.vala
@@ -1,5 +1,5 @@
 /*
- Copyright (C) 2010 Christian Dywan 
+ Copyright (C) 2011 Christian Dywan 
 
  This library is free software; you can redistribute it and/or
  modify it under the terms of the GNU Lesser General Public
@@ -75,6 +75,7 @@ namespace Postler {
 
 public class AccountInfo : GLib.Object {
 public string name;
+public string display_name;
 public AccountType type;
 public string realname;
 public string address;
@@ -158,6 +159,33 @@ public class Postler.Accounts : GLib.Object {
 reload ();
 }
 
+void update_display_names () {
+/* A single account is "Inbox", a unique provider is "gmail" */
+uint num_accounts = 0;
+foreach (var info in infos) {
+if (info.type != AccountType.SEARCH)
+num_accounts++;
+string? domain = (info.address ?? info.name).rstr ("@");
+if (domain != null) {
+foreach (var account_info in infos) {
+unowned string address = account_info.address ?? 
account_info.name;
+if (account_info != info && domain in address) {
+domain = null;
+break;
+}
+}
+domain = domain != null ? domain.next_char () : null;
+if (domain != null)
+domain = domain.split (".", 2)[0];
+}
+info.display_name = domain ?? info.name;
+}
+if (num_accounts == 1)
+foreach (var info in infos)
+if (info.type != AccountType.SEARCH)
+info.display_name = _("Inbox");
+}
+
 void write_keyfile () throws Error {
 if (DirUtils.create_with_parents (config_path, 0700) != 0)
 throw new GLib.FileError.FAILED (_("Config folder couldn't be 
created."));
@@ -175,6 +203,8 @@ public class Postler.Accounts : GLib.Object {
 }
 else if (infos.length () == 0)
 FileUtils.unlink (filename);
+
+update_display_names ();
 }
 
 public void update () {
@@ -321,6 +351,7 @@ public class Postler.Accounts : GLib.Object {
 }
 }
 infos.reverse ();
+update_display_names ();
 }
 
 public string[] get_folders () {
diff --git a/postler/postler-folders.vala b/postler/postler-folders.vala
index a841cae..08f6ed0 100644
--- a/postler/postler-folders.vala
+++ b/postler/postler-folders.vala
@@ -44,7 +44,7 @@ public class Postler.Folders : Gtk.TreeView {
 
 /* Local folders */
 local_info = new AccountInfo ();
-local_info.name = _("Local");
+local_info.display_name = _("Local");
 local_info.type = AccountType.MAILDIR;
 local_info.path = null;
 unowned string mail = Environment.get_variable ("MAILDIR");
@@ -135,17 +135,7 @@ public class Postler.Folders : Gtk.TreeView {
 return name;
 }
 
-public bool populate_accounts (GLib.List infos, int count=-1) 
{
-int num_accounts = 0;
-if (count > -1)
-num_accounts = count;
-else {
-foreach (unowned AccountInfo account_info in infos) {
-if (account_info.type != AccountType.SEARCH)
-num_accounts++;
-}
-}
-bool one_account = num_accounts < 2;
+public bool populate_accounts (GLib.List infos) {
 bool need_update = false;
 
 /* foreach (unowned AccountInfo account_info in infos) { */
@@ -191,11 +181,11 @@ public class Postler.Folders : Gtk.TreeView {
 monitor.changed.connect ((monitor, file, other, event) => {
 var account_infos = new GLib.List ();
 account_infos.prepend (account_info);
-populate_accounts (account_infos, num_accounts);
+populate_accounts (account_infos);
 });
 store.insert_with_values (out account_iter, null, -1,
 Columns.ICON, Gtk.STOCK_DIALOG_ERROR,
- 

[Xfce4-commits] l10n: Updated Croatian (hr) translation to 83%

2011-01-07 Thread Transifex
Updating branch refs/heads/master
 to b38824ff94b2ca4d217d6b7be687a79be888c583 (commit)
   from ad2f0066ce969152080cd841ce4cdd0920565409 (commit)

commit b38824ff94b2ca4d217d6b7be687a79be888c583
Author: Ivica  Kolić 
Date:   Sat Jan 8 00:19:47 2011 +0100

l10n: Updated Croatian (hr) translation to 83%

New status: 557 messages complete with 0 fuzzies and 112 untranslated.

Transmitted-via: Transifex (translations.xfce.org).

 po/hr.po |   54 +++---
 1 files changed, 27 insertions(+), 27 deletions(-)

diff --git a/po/hr.po b/po/hr.po
index fe0790b..748f579 100644
--- a/po/hr.po
+++ b/po/hr.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Midori\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-01-03 05:14+\n"
+"POT-Creation-Date: 2011-01-07 17:15+\n"
 "PO-Revision-Date: 2010-12-22 21:45+0100\n"
 "Last-Translator: Ivica Kolić \n"
 "Language-Team: Croatian <>\n"
@@ -355,7 +355,7 @@ msgstr "Pokreni kao _web aplikaciju"
 #: ../midori/midori-browser.c:972
 #, c-format
 msgid "The file \"%s\" can't be saved in this folder."
-msgstr ""
+msgstr "Datoteka \"%s\" ne može biti spremljena u ovoj mapi."
 
 #: ../midori/midori-browser.c:974
 #, c-format
@@ -403,9 +403,9 @@ msgstr "Dodaj novu zabilješku"
 msgid "Empty"
 msgstr "Prazno"
 
-#: ../midori/midori-browser.c:3328 ../midori/sokoke.c:435
-#: ../midori/sokoke.c:445 ../midori/sokoke.c:473 ../midori/sokoke.c:502
-#: ../midori/sokoke.c:516
+#: ../midori/midori-browser.c:3328 ../midori/sokoke.c:436
+#: ../midori/sokoke.c:446 ../midori/sokoke.c:474 ../midori/sokoke.c:503
+#: ../midori/sokoke.c:517
 msgid "Could not run external program."
 msgstr "Ne mogu pokrenuti vanjski program"
 
@@ -488,11 +488,11 @@ msgid "Clear the following data:"
 msgstr "Očisti slijedeće podatke:"
 
 #. i18n: Browsing history, visited web pages
-#: ../midori/midori-browser.c:4303 ../midori/sokoke.c:1397
+#: ../midori/midori-browser.c:4303 ../midori/sokoke.c:1398
 msgid "_History"
 msgstr "_Povijest"
 
-#: ../midori/midori-browser.c:4308 ../midori/sokoke.c:1403
+#: ../midori/midori-browser.c:4308 ../midori/sokoke.c:1404
 msgid "_Closed Tabs"
 msgstr "_Zatvorene kartice"
 
@@ -516,7 +516,7 @@ msgstr "Ivica Kolić (zvacet) "
 msgid "_File"
 msgstr "_Datoteka"
 
-#: ../midori/midori-browser.c:4798 ../midori/sokoke.c:1404
+#: ../midori/midori-browser.c:4798 ../midori/sokoke.c:1405
 msgid "New _Window"
 msgstr "Novi _prozor"
 
@@ -988,7 +988,7 @@ msgstr "Pokreni web pretraživanje"
 msgid "Reopen a previously closed tab or window"
 msgstr "Ponovno otvori prethodno zatvorenu karticu ili prozor"
 
-#: ../midori/midori-browser.c:5656 ../midori/sokoke.c:1393
+#: ../midori/midori-browser.c:5656 ../midori/sokoke.c:1394
 msgid "_Bookmarks"
 msgstr "_Zabilješke"
 
@@ -1031,7 +1031,7 @@ msgstr "Konfiguracija proširenja '%s' ne može biti 
učitana: %s\n"
 #: ../extensions/addons.c:1637
 #, c-format
 msgid "The configuration of the extension '%s' couldn't be saved: %s\n"
-msgstr ""
+msgstr "Konfiguracija proširenja '%s' ne može biti spremljena: %s\n"
 
 #: ../midori/midori-locationaction.c:393
 #, c-format
@@ -1679,8 +1679,8 @@ msgstr "%s želi znati vašu lokaciju."
 #. so reloading via Javascript works but not via API calls.
 #. Error pages are special, we want to try loading the destination
 #. again, not the error page which isn't even a proper page
-#: ../midori/midori-view.c:1395 ../midori/midori-view.c:4770
-#: ../midori/midori-view.c:4774
+#: ../midori/midori-view.c:1395 ../midori/midori-view.c:4774
+#: ../midori/midori-view.c:4778
 #, c-format
 msgid "Error - %s"
 msgstr "Greška - %s"
@@ -1901,15 +1901,15 @@ msgstr "Prikaži samo _ikone kartice"
 msgid "Close ot_her Tabs"
 msgstr "Zatvori dr_uge kartice"
 
-#: ../midori/midori-view.c:4948
+#: ../midori/midori-view.c:4952
 msgid "Print background images"
 msgstr "Ispis pozadinskih slika"
 
-#: ../midori/midori-view.c:4949
+#: ../midori/midori-view.c:4953
 msgid "Whether background images should be printed"
 msgstr ""
 
-#: ../midori/midori-view.c:4985 ../midori/midori-preferences.c:412
+#: ../midori/midori-view.c:4989 ../midori/midori-preferences.c:412
 msgid "Features"
 msgstr "Obilježja"
 
@@ -1941,11 +1941,11 @@ msgstr "Postavke fonta"
 
 #: ../midori/midori-preferences.c:383
 msgid "Default Font Family"
-msgstr ""
+msgstr "Zadana obitelj fonta"
 
 #: ../midori/midori-preferences.c:386
 msgid "The default font family used to display text"
-msgstr ""
+msgstr "Zadana obitelj fonta koje se koristi za prikaz teksta"
 
 #: ../midori/midori-preferences.c:389
 msgid "The default font size used to display text"
@@ -2105,43 +2105,43 @@ msgstr "Otvori pomoću"
 msgid "Choose an application or command to open \"%s\":"
 msgstr "Izaberite program ili naredbu za otvaranje \"%s\":"
 
-#: ../midori/sokoke.c:1392
+#: ../midori/sokoke.c:1393
 msgid "_Bookmark"
 msgstr "_Zabilješka"
 
-#: ../midori/sokoke.c:1394
+#: ../midori/sokoke.c:1395
 msgid "Add Boo_kmark"
 msgstr 

[Xfce4-commits] l10n: Updates for Croatian (hr) translation

2011-01-07 Thread Transifex
Updating branch refs/heads/master
 to 3d5678b5c0dc18507cc91fa457fb102db0d67d68 (commit)
   from 4b71bdafff4b816e1c83cf8eb980f047a92ee9a6 (commit)

commit 3d5678b5c0dc18507cc91fa457fb102db0d67d68
Author: Ivica  Kolić 
Date:   Sat Jan 8 00:11:56 2011 +0100

l10n: Updates for Croatian (hr) translation

New status: 57 messages complete with 0 fuzzies and 15 untranslated.

Transmitted-via: Transifex (translations.xfce.org).

 po/hr.po |  112 +-
 1 files changed, 67 insertions(+), 45 deletions(-)

diff --git a/po/hr.po b/po/hr.po
index dbb0f57..24c194d 100644
--- a/po/hr.po
+++ b/po/hr.po
@@ -1,30 +1,32 @@
 # Croatian translations for xfce-utils package.
 # Copyright (C) 2010 The Xfce development team.
 # This file is distributed under the same license as the xfce-utils package.
-#  Ivica Kolić, 2010.
+#  
 #  Ivica Kolić <>, 2010.
+# Ivica Kolić <>, 2011.
+#
 msgid ""
 msgstr ""
 "Project-Id-Version: xfce-utils\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-12-05 15:39+0100\n"
-"PO-Revision-Date: 2010-06-07 01:30+0200\n"
-"Last-Translator:  Ivica Kolić <>\n"
+"POT-Creation-Date: 2011-01-07 11:09+\n"
+"PO-Revision-Date: 2011-01-08 00:07+0100\n"
+"Last-Translator: Ivica Kolić <>\n"
 "Language-Team: Croatian <>\n"
-"Language: hr\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
+"Language: hr\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"
 
 #: ../xfce4-about/main.c:52
 msgid "Version information"
-msgstr ""
+msgstr "Informacija o verziji"
 
 #: ../xfce4-about/main.c:70
 msgid "Window Manager"
-msgstr ""
+msgstr "Upravitelj prozora"
 
 #: ../xfce4-about/main.c:71
 msgid "Handles the placement of windows on the screen."
@@ -32,7 +34,7 @@ msgstr ""
 
 #: ../xfce4-about/main.c:74
 msgid "Panel"
-msgstr ""
+msgstr "Ploča"
 
 #: ../xfce4-about/main.c:75
 msgid ""
@@ -42,7 +44,7 @@ msgstr ""
 
 #: ../xfce4-about/main.c:79
 msgid "Desktop Manager"
-msgstr ""
+msgstr "Upravitelj radne površine"
 
 #: ../xfce4-about/main.c:80
 msgid ""
@@ -52,17 +54,19 @@ msgstr ""
 
 #: ../xfce4-about/main.c:84
 msgid "File Manager "
-msgstr ""
+msgstr "Upravitelj datotekama"
 
 #: ../xfce4-about/main.c:85
 msgid ""
 "A modern file manager for the Unix/Linux desktop, aiming to be easy-to-use "
 "and fast."
 msgstr ""
+"Moderni upravitelj datotekama za Unix/Linux radne površine,s namjerom da "
+"bude brz i lagan za korištenje."
 
 #: ../xfce4-about/main.c:89
 msgid "Session Manager"
-msgstr ""
+msgstr "Upravitelj sesijama"
 
 #: ../xfce4-about/main.c:90
 msgid ""
@@ -72,23 +76,27 @@ msgstr ""
 
 #: ../xfce4-about/main.c:94
 msgid "Setting System"
-msgstr ""
+msgstr "Postavi sustav"
 
 #: ../xfce4-about/main.c:95
 msgid ""
 "Configuration system to control various aspects of the desktop like "
 "appearance, display, keyboard and mouse settings."
 msgstr ""
+"Sustav konfiguracije za kontrolu različitih aspekata radne površine,kao što "
+"su postavke izgleda,zaslona,tipkovnice i miša."
 
 #: ../xfce4-about/main.c:99
 msgid "Application Finder"
-msgstr ""
+msgstr "Pronalazač programa"
 
 #: ../xfce4-about/main.c:100
 msgid ""
 "Shows the applications installed on your system in categories, so you can "
 "quickly find and launch them."
 msgstr ""
+"Pokazuje instalirane programe u vašem sustavu po kategorijama,te ih možete "
+"lako naći i pokrenuti."
 
 #: ../xfce4-about/main.c:104
 msgid "Utilities and Scripts"
@@ -111,6 +119,8 @@ msgid ""
 "Xfce is a collection of programs that together provide a full-featured "
 "desktop environment. The following programs are part of the Xfce core:"
 msgstr ""
+"Xfce je skup programa koji zajedno donose puno radno okruženje.Slijedeći "
+"programi su dio Xfce jezgre:"
 
 #: ../xfce4-about/main.c:140
 msgid ""
@@ -118,6 +128,9 @@ msgid ""
 "programmers create applications that fit in well with the desktop "
 "environment."
 msgstr ""
+"Xfce je također razvojna platforma koja donosi nekoliko bibliotekakoje "
+"pomažu programerima stvaranje programa koji se dobro uklapaju u radno "
+"okruženje."
 
 #: ../xfce4-about/main.c:146
 msgid ""
@@ -126,24 +139,28 @@ msgid ""
 "the source code or the Xfce website (http://www.xfce.org) for more "
 "information."
 msgstr ""
+"Xfce komponente su licencirane pod licencama slobodnog i otvorenog koda;GPL "
+"ili BSDL za programe i LGPL ili BSDL za biblioteke.Pogledajte u "
+"dokumentaciju,izvorni kod ili Xfce web stranicu (http://www.xfce.org) for "
+"more information."
 
 #: ../xfce4-about/main.c:153
 msgid "Thank you for your interest in Xfce."
-msgstr ""
+msgstr "Zahvaljujemo vam na interesu za Xfce."
 
 #: ../xfce4-about/main.c:157
 msgid "The Xfce Development Team"
-msgstr ""
+msgstr "Xfce razvojni tim"
 
 #: ../xfce4-about/main.c:266
-#, fuzzy
 msgid ""
 "If you know of anyone missing from this list; don't hesitate and file a bug

[Xfce4-commits] l10n: Updated Greek (el) translation to 100%

2011-01-07 Thread Transifex
Updating branch refs/heads/master
 to 0f6d5de74534c105c90c25e26c1d13284897c1bf (commit)
   from f3a8ccd08931ef30b7f4f04a3889479d1cb272c4 (commit)

commit 0f6d5de74534c105c90c25e26c1d13284897c1bf
Author: Spiros Georgaras 
Date:   Fri Jan 7 18:09:49 2011 +0100

l10n: Updated Greek (el) translation to 100%

New status: 75 messages complete with 0 fuzzies and 0 untranslated.

Transmitted-via: Transifex (translations.xfce.org).

 po/el.po |   29 +
 1 files changed, 17 insertions(+), 12 deletions(-)

diff --git a/po/el.po b/po/el.po
index a303f48..0487314 100644
--- a/po/el.po
+++ b/po/el.po
@@ -5,7 +5,7 @@ msgstr ""
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2009-03-31 18:57+0200\n"
 "PO-Revision-Date: \n"
-"Last-Translator: George Vasilakos \n"
+"Last-Translator: Spiros Georgaras \n"
 "Language-Team: Greek \n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -105,7 +105,8 @@ msgstr "Τύπος:"
 msgid "Key:"
 msgstr "Κλειδί:"
 
-#: ../src/xfbib-entry-edit-dialog.c:327 ../src/xfbib-multiple-input.c:168
+#: ../src/xfbib-entry-edit-dialog.c:327
+#: ../src/xfbib-multiple-input.c:168
 msgid "Title"
 msgstr "Τίτλος"
 
@@ -245,7 +246,8 @@ msgstr "Άνοιγμα"
 msgid "BibTeX files"
 msgstr "Αρχεία BibTeX"
 
-#: ../src/xfbib-file-io.c:99 ../src/xfbib-file-io.c:141
+#: ../src/xfbib-file-io.c:99
+#: ../src/xfbib-file-io.c:141
 #, c-format
 msgid "An error occured when opening the file: %s\n"
 msgstr "Παρουσιάστηκε σφάλμα κατά το άνοιγμα του αρχείου: %s\n"
@@ -271,21 +273,21 @@ msgstr "Κλειδί αλφαριθμητικού:"
 msgid "Text:"
 msgstr "Κείμενο:"
 
-#: ../src/xfbib-menu-bar.c:148 ../src/xfbib-menu-bar.c:226
+#: ../src/xfbib-menu-bar.c:148
+#: ../src/xfbib-menu-bar.c:226
 msgid "No row has been selected for removal"
 msgstr "Δεν επιλέχτηκε κάποια σειρά για απομάκρυνση"
 
-#: ../src/xfbib-menu-bar.c:183 ../src/xfbib-menu-bar.c:257
+#: ../src/xfbib-menu-bar.c:183
+#: ../src/xfbib-menu-bar.c:257
 msgid "No row has been selected for edit"
 msgstr "Δεν επιλέχτηκε κάποια σειρά για επεξεργασία"
 
 #: ../src/xfbib-menu-bar.c:265
-#, fuzzy
 msgid "David Gustafsson "
 msgstr "David Gustafsson "
 
 #: ../src/xfbib-menu-bar.c:266
-#, fuzzy
 msgid "Jesper Karlsson "
 msgstr "Jesper Karlsson "
 
@@ -297,27 +299,29 @@ msgstr "Το Xfbib είναι ένας επεξεργαστής BibTeX για τ
 msgid "File"
 msgstr "Αρχείο"
 
-#: ../src/xfbib-menu-bar.c:389 ../src/xfbib-window.c:113
+#: ../src/xfbib-menu-bar.c:389
+#: ../src/xfbib-window.c:113
 msgid "Entry"
 msgstr "Καταχώρηση"
 
-#: ../src/xfbib-menu-bar.c:413 ../src/xfbib-window.c:121
+#: ../src/xfbib-menu-bar.c:413
+#: ../src/xfbib-window.c:121
 msgid "Variable"
 msgstr "Μεταβλητή"
 
 #. item = gtk_menu_item_new_with_label("Show Columns");
 #. gtk_menu_item_set_submenu(GTK_MENU_ITEM(item), instance->view_columns);
 #. gtk_menu_shell_append(GTK_MENU_SHELL (instance->view), item);
-#. 
+#.
 #. Columns submenu
-#. 
+#.
 #. for (i = 0; i < XFBIB_BIBTEX_FIELD_N_FIELDS; i++) {
 #. str = g_strdup_printf("Show %s", xfbib_field_get_column_name(i));
 #. item = gtk_check_menu_item_new_with_mnemonic(str);
 #. g_free(str);
 #. gtk_menu_shell_append(GTK_MENU_SHELL (instance->view_columns), item);
 #. }
-#. 
+#.
 #: ../src/xfbib-menu-bar.c:437
 msgid "Show Toolbar"
 msgstr "Εμφάνιση εργαλειοθήκης"
@@ -347,3 +351,4 @@ msgstr "Τιμή"
 #: ../src/xfbib-window.c:152
 msgid "(Untitled)"
 msgstr "(Χωρίς τίτλο)"
+
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] l10n: Updated Greek (el) translation to 100%

2011-01-07 Thread Transifex
Updating branch refs/heads/master
 to 2b2148c063a6eea01bc8e96142102cea5465ad25 (commit)
   from 03c0168b109fbf4db03f55714fcf63358c6150a7 (commit)

commit 2b2148c063a6eea01bc8e96142102cea5465ad25
Author: Spiros Georgaras 
Date:   Fri Jan 7 18:06:51 2011 +0100

l10n: Updated Greek (el) translation to 100%

New status: 270 messages complete with 0 fuzzies and 0 untranslated.

Transmitted-via: Transifex (translations.xfce.org).

 po/el.po |   47 ---
 1 files changed, 28 insertions(+), 19 deletions(-)

diff --git a/po/el.po b/po/el.po
index 5897c98..9290dcb 100644
--- a/po/el.po
+++ b/po/el.po
@@ -3,14 +3,14 @@
 # This file is distributed under the same license as the Terminal package.
 # Stavros Giannouris , 2005-2006, 2009
 # Stathis Kamperis , 2006.
-# 
+#
 msgid ""
 msgstr ""
 "Project-Id-Version: Terminal git version\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2011-01-07 05:01+\n"
-"PO-Revision-Date: 2010-01-29 14:09+0200\n"
-"Last-Translator: Evaggelos Balaskas \n"
+"PO-Revision-Date: 2011-01-07 19:06+0200\n"
+"Last-Translator: Spiros Georgaras \n"
 "Language-Team: Greek \n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -34,13 +34,15 @@ msgstr "Γενικές επιλογές"
 
 #. parameter of --default-display
 #. parameter of --display
-#: ../terminal/main.c:59 ../terminal/main.c:85
+#: ../terminal/main.c:59
+#: ../terminal/main.c:85
 msgid "display"
 msgstr "προβολή"
 
 #. parameter of --default-working-directory
 #. parameter of --working-directory
-#: ../terminal/main.c:61 ../terminal/main.c:76
+#: ../terminal/main.c:61
+#: ../terminal/main.c:76
 msgid "directory"
 msgstr "κατάλογος"
 
@@ -91,8 +93,10 @@ msgstr "πλακίδιο"
 msgid "See the %s man page for full explanation of the options above."
 msgstr "Δείτε την %s σελίδα του manual για λεπτομερή εξήγηση όλων των επιλογών 
παραπάνω."
 
-#: ../terminal/main.c:126 ../terminal/terminal-preferences.c:1262
-#: ../terminal/terminal-shortcut-editor.c:119 ../Terminal.desktop.in.in.h:1
+#: ../terminal/main.c:126
+#: ../terminal/terminal-preferences.c:1262
+#: ../terminal/terminal-shortcut-editor.c:119
+#: ../Terminal.desktop.in.in.h:1
 msgid "Terminal"
 msgstr "Τερματικό"
 
@@ -149,7 +153,8 @@ msgstr "Ο δίαυλος μηνυμάτων D-BUS αποσυνδέθηκε, έ
 msgid "Unable to register object %s"
 msgstr "Δεν ήταν δυνατή η εγγραφή του αντικειμένου %s"
 
-#: ../terminal/terminal-dialogs.c:95 ../Terminal-default-apps.xml.in.in.h:1
+#: ../terminal/terminal-dialogs.c:95
+#: ../Terminal-default-apps.xml.in.in.h:1
 msgid "Xfce Terminal Emulator"
 msgstr "Προσομοίωση τερματικού Xfce"
 
@@ -308,7 +313,8 @@ msgstr "Πλήρης οθόνη"
 msgid "Set Title"
 msgstr "Καθορισμός τίτλου"
 
-#: ../terminal/terminal-preferences.c:463 ../terminal/terminal-window.c:236
+#: ../terminal/terminal-preferences.c:463
+#: ../terminal/terminal-window.c:236
 msgid "Reset"
 msgstr "Αρχικοποίηση"
 
@@ -364,7 +370,8 @@ msgstr "Μετάβαση στην Καρτέλα 9"
 msgid "Contents"
 msgstr "Περιεχόμενα"
 
-#: ../terminal/terminal-screen.c:397 ../terminal/terminal-screen.c:629
+#: ../terminal/terminal-screen.c:397
+#: ../terminal/terminal-screen.c:629
 #: ../terminal/terminal-screen.c:1598
 msgid "Untitled"
 msgstr "Ανώνυμο"
@@ -404,7 +411,8 @@ msgid "Help"
 msgstr "Βοήθεια"
 
 #: ../terminal/terminal-shortcut-editor.c:209
-#: ../terminal/terminal-shortcut-editor.c:505 ../Terminal.glade.h:24
+#: ../terminal/terminal-shortcut-editor.c:505
+#: ../Terminal.glade.h:24
 msgid "Disabled"
 msgstr "Απενεργοποιημένο"
 
@@ -725,7 +733,7 @@ msgstr "Προσομοίωση τερματικού"
 
 #: ../Terminal.glade.h:1
 msgid "$TERM s_etting:"
-msgstr "Ρύθμιση $TERM:"
+msgstr "Ρύ_θμιση $TERM:"
 
 #: ../Terminal.glade.h:2
 msgid "ASCII DEL"
@@ -737,7 +745,7 @@ msgstr "Για προχ_ωρημένους"
 
 #: ../Terminal.glade.h:4
 msgid "Allow bold te_xt"
-msgstr "Να επιτρέπεται το έντονο κείμενο"
+msgstr "Να επι_τρέπεται το έντονο κείμενο"
 
 #: ../Terminal.glade.h:5
 msgid "Auto-detect"
@@ -796,7 +804,7 @@ msgid ""
 "Consider the following characters part of a _word\n"
 "when double clicking:"
 msgstr ""
-"Θεωρείστε τους ακόλουθους χαρακτήρες τμήμα μίας λέξης\n"
+"_Θεωρείστε τους ακόλουθους χαρακτήρες τμήμα μίας λέξης\n"
 "κατά το διπλό κλικ:"
 
 #: ../Terminal.glade.h:20
@@ -809,11 +817,11 @@ msgstr "Χρώμα κέ_ρσορα:"
 
 #: ../Terminal.glade.h:22
 msgid "Disable all me_nu access keys (such as Alt+f)"
-msgstr "Απενεργοποίηση πλήκτρων συντομεύσεων μενού (όπως το Alt+f)"
+msgstr "Απενεργοποίηση πλήκτρων συντομεύσεων με_νού (όπως το Alt+f)"
 
 #: ../Terminal.glade.h:23
 msgid "Disable m_enu shortcut keys (F10 by default)"
-msgstr "Απενεργοποίηση των πλήκτρων συντόμευσης του μενού (προεπιλογή F10)"
+msgstr "Απενεργοποίηση των πλήκτρων συντόμευσης του μ_ενού (προεπιλογή F10)"
 
 #: ../Terminal.glade.h:25
 msgid "Display _borders around new windows"
@@ -993,7 +1001,7 @@ msgstr "_Επαναφορά επιλογών διπλού κλικ στις πρ
 
 #: ../Terminal.glade.h:69
 msgid "Reset tab activity _indicat

[Xfce4-commits] l10n: Updated Greek (el) translation to 100%

2011-01-07 Thread Transifex
Updating branch refs/heads/master
 to 577ed2be96e3588a1a4aba057c93858a2626c8bf (commit)
   from 5120cbde2071da92f1853d484eecb1599724b27c (commit)

commit 577ed2be96e3588a1a4aba057c93858a2626c8bf
Author: Spiros Georgaras 
Date:   Fri Jan 7 18:01:44 2011 +0100

l10n: Updated Greek (el) translation to 100%

New status: 283 messages complete with 0 fuzzies and 0 untranslated.

Transmitted-via: Transifex (translations.xfce.org).

 po/el.po |  108 -
 1 files changed, 71 insertions(+), 37 deletions(-)

diff --git a/po/el.po b/po/el.po
index f9c0a03..cb1bb56 100644
--- a/po/el.po
+++ b/po/el.po
@@ -2,14 +2,14 @@
 # Copyright (C) 2006 Jean-François Wauthy.
 # This file is distributed under the same license as the xfburn package.
 # Stavros Giannouris , 2006.
-# 
+#
 msgid ""
 msgstr ""
 "Project-Id-Version: xfburn git version\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2011-01-07 05:02+\n"
-"PO-Revision-Date: 2010-03-26 00:15+0200\n"
-"Last-Translator: Evaggelos Balaskas \n"
+"PO-Revision-Date: 2011-01-07 19:01+0200\n"
+"Last-Translator: Spiros Georgaras \n"
 "Language-Team: Greek \n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -68,7 +68,8 @@ msgstr "Κενός δίσκος"
 msgid "Burning device"
 msgstr "Συσκευή εγγραφής"
 
-#: ../xfburn/xfburn-blank-dialog.c:222 ../xfburn/xfburn-device-box.c:190
+#: ../xfburn/xfburn-blank-dialog.c:222
+#: ../xfburn/xfburn-device-box.c:190
 msgid "Blank mode"
 msgstr "Τύπος διαγραφής"
 
@@ -124,7 +125,8 @@ msgstr "Διαγραφή δίσκου..."
 msgid "Done"
 msgstr "Ολοκληρώθηκε"
 
-#: ../xfburn/xfburn-blank-dialog.c:443 ../xfburn/xfburn-perform-burn.c:372
+#: ../xfburn/xfburn-blank-dialog.c:443
+#: ../xfburn/xfburn-perform-burn.c:372
 #: ../xfburn/xfburn-progress-dialog.c:603
 msgid "Failure"
 msgstr "Απέτυχε"
@@ -312,7 +314,7 @@ msgstr "Συσκευή Ανάγνωσης CD"
 #: ../xfburn/xfburn-copy-cd-dialog.c:152
 #: ../xfburn/xfburn-copy-dvd-dialog.c:152
 msgid "On the _fly"
-msgstr "Απευθείας"
+msgstr "Απευ_θείας"
 
 #: ../xfburn/xfburn-copy-cd-dialog.c:193
 msgid "_Copy CD"
@@ -470,7 +472,8 @@ msgstr "Υπάρχει ήδη ένα αρχείο με όνομα \"%s\" στο
 msgid "Duplicate filename '%s' for '%s'"
 msgstr "Διπλό όνομα αρχείου '%s' για '%s'"
 
-#: ../xfburn/xfburn-device-box.c:174 ../xfburn/xfburn-device-box.c:175
+#: ../xfburn/xfburn-device-box.c:174
+#: ../xfburn/xfburn-device-box.c:175
 msgid "Show writers only"
 msgstr "Εμφάνιση μόνο εγγραφέων"
 
@@ -502,7 +505,8 @@ msgstr "Είναι έγκυρος ο συνδυασμός υλικού και δ
 msgid "The blank mode shows different disc status messages than regular mode"
 msgstr "Η κενή κατάσταση εμφανίζει διαφορετικό μήνυμα κατάστασης δίσκου από 
την κανονική κατάσταση"
 
-#: ../xfburn/xfburn-device-box.c:194 ../xfburn/xfburn-device-box.c:195
+#: ../xfburn/xfburn-device-box.c:194
+#: ../xfburn/xfburn-device-box.c:195
 msgid "Accept only CDs as valid discs"
 msgstr "Δεχόνται μόνο CDs ως έγκυροι δίσκοι"
 
@@ -552,7 +556,8 @@ msgstr "Μέγιστο"
 msgid "Drive can't burn on the inserted disc"
 msgstr "Ο οδηγός δεν μπορεί να γράψει τον επιλεγμένο δίσκο"
 
-#: ../xfburn/xfburn-device-box.c:595 ../xfburn/xfburn-device-box.c:641
+#: ../xfburn/xfburn-device-box.c:595
+#: ../xfburn/xfburn-device-box.c:641
 msgid "Drive is empty"
 msgstr "Ο οδηγός είναι κενός"
 
@@ -564,15 +569,18 @@ msgstr "Λυπάμαι, οι πολλαπλές συνεδρίες δεν υπο
 msgid "Inserted disc is full"
 msgstr "Ο δίσκος που έχετε εισάγει είναι γεμάτος"
 
-#: ../xfburn/xfburn-device-box.c:604 ../xfburn/xfburn-device-box.c:647
+#: ../xfburn/xfburn-device-box.c:604
+#: ../xfburn/xfburn-device-box.c:647
 msgid "Inserted disc is unsuitable"
 msgstr "Ο δίσκος που έχετε εισάγει δεν είναι κατάλληλος"
 
-#: ../xfburn/xfburn-device-box.c:607 ../xfburn/xfburn-device-box.c:650
+#: ../xfburn/xfburn-device-box.c:607
+#: ../xfburn/xfburn-device-box.c:650
 msgid "Cannot access drive (it might be in use)"
 msgstr "Αδυναμία πρόσβασης στον οδηγό (μπορεί να είναι σε χρήση)"
 
-#: ../xfburn/xfburn-device-box.c:612 ../xfburn/xfburn-device-box.c:653
+#: ../xfburn/xfburn-device-box.c:612
+#: ../xfburn/xfburn-device-box.c:653
 msgid "Error determining disc"
 msgstr "Σφάλμα προσδιορισμού δίσκου"
 
@@ -592,7 +600,8 @@ msgstr "Ο δίσκος που εισάγατε είναι ήδη κενός"
 msgid "Auto"
 msgstr "Αυτόματο"
 
-#: ../xfburn/xfburn-device-list.c:206 ../xfburn/xfburn-device-list.c:207
+#: ../xfburn/xfburn-device-list.c:206
+#: ../xfburn/xfburn-device-list.c:207
 msgid "Number of burners in the system"
 msgstr "Αριθμός συσκευών εγγραφής στο σύστημα"
 
@@ -604,11 +613,13 @@ msgstr "Αριθμός των οδηγών στο σύστημα"
 msgid "Number of drives in the system (readers and writers)"
 msgstr "Ο αριθμός των οδηγών στο σύστημα (ανάγνωσης και εγγραφής)"
 
-#: ../xfburn/xfburn-device-list.c:212 ../xfburn/xfburn-device-list.c:213
+#: ../xfburn/xfburn-device-list.c:212
+#: ../xfburn/xfburn-device-list.c:213
 msgid "List of devices"
 msgstr "Λίστα συσκευών"
 
-#: ../xfburn/xfburn-de

[Xfce4-commits] prepare for 0.3.6 release

2011-01-07 Thread Landry Breuil
Updating branch refs/heads/master
 to 6b677fedb8df6513babb2be16ac94466112f6293 (commit)
   from 5f414709c0081fa545f569d9ca7ec185fe337f94 (commit)

commit 6b677fedb8df6513babb2be16ac94466112f6293
Author: Landry Breuil 
Date:   Fri Jan 7 17:47:16 2011 +0100

prepare for 0.3.6 release

 ChangeLog   |4 
 configure.ac.in |2 +-
 2 files changed, 5 insertions(+), 1 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index d9cdde3..4137053 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+07-01-2011 Landry Breuil 
+   * release 0.3.6
+   * recognize exo-1 for upcoming Xfce 4.8
+
 17-05-2010 Landry Breuil 
* release 0.3.5
* add enable/disable outputs in rightclick menu
diff --git a/configure.ac.in b/configure.ac.in
index 9261f53..d0c1cfb 100644
--- a/configure.ac.in
+++ b/configure.ac.in
@@ -5,7 +5,7 @@ dnl
 
 m4_define([mpc_version_major], [0])
 m4_define([mpc_version_minor], [3])
-m4_define([mpc_version_micro], [5])
+m4_define([mpc_version_micro], [6])
 m4_define([mpc_version_tag], []) # Leave empty for releases
 m4_define([mpc_version_build], [...@revision@])
 m4_define([mpc_version], 
[mpc_version_major().mpc_version_minor().mpc_version_micro()ifelse(mpc_version_tag(),
 [], [], [mpc_version_tag()-mpc_version_build()])])
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] l10n: Updated Greek (el) translation to 100%

2011-01-07 Thread Transifex
Updating branch refs/heads/master
 to ad2f0066ce969152080cd841ce4cdd0920565409 (commit)
   from 7e00e760ba2f2a7dc829f5336ea1a898bd6f1cd1 (commit)

commit ad2f0066ce969152080cd841ce4cdd0920565409
Author: Spiros Georgaras 
Date:   Fri Jan 7 17:57:36 2011 +0100

l10n: Updated Greek (el) translation to 100%

New status: 669 messages complete with 0 fuzzies and 0 untranslated.

Transmitted-via: Transifex (translations.xfce.org).

 po/el.po |  275 +++--
 1 files changed, 176 insertions(+), 99 deletions(-)

diff --git a/po/el.po b/po/el.po
index d05f870..64e08cb 100644
--- a/po/el.po
+++ b/po/el.po
@@ -7,8 +7,8 @@ msgstr ""
 "Project-Id-Version: midori git version\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2011-01-04 11:14+\n"
-"PO-Revision-Date: 2010-10-11 19:57+0200\n"
-"Last-Translator: Evaggelos Balaskas \n"
+"PO-Revision-Date: 2011-01-07 18:56+0200\n"
+"Last-Translator: Spiros Georgaras \n"
 "Language-Team: Greek \n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=utf-8\n"
@@ -24,8 +24,11 @@ msgstr ""
 msgid "Lightweight web browser"
 msgstr "Ελαφρύς περιηγητής ιστού"
 
-#: ../data/midori.desktop.in.h:2 ../midori/main.c:1357 ../midori/main.c:1753
-#: ../midori/main.c:1761 ../midori/main.c:1777
+#: ../data/midori.desktop.in.h:2
+#: ../midori/main.c:1357
+#: ../midori/main.c:1753
+#: ../midori/main.c:1761
+#: ../midori/main.c:1777
 #: ../midori/midori-websettings.c:315
 msgid "Midori"
 msgstr "Μιντόρι"
@@ -44,7 +47,8 @@ msgstr "Οι ρυθμίσεις δεν μπορούν να φορτωθούν: %
 msgid "Value '%s' is invalid for %s"
 msgstr "Η τιμή '%s' δεν είναι έγκυρη για το %s"
 
-#: ../midori/main.c:147 ../midori/main.c:240
+#: ../midori/main.c:147
+#: ../midori/main.c:240
 #, c-format
 msgid "Invalid configuration value '%s'"
 msgstr "Μη έγκυρη τιμή ρύθμισης '%s'"
@@ -59,7 +63,9 @@ msgstr "Οι μηχανές αναζήτησης δεν μπόρεσαν να φ
 msgid "Failed to clear history: %s\n"
 msgstr "Αποτυχία κατά τον καθαρισμό του ιστορικού: %s\n"
 
-#: ../midori/main.c:421 ../midori/main.c:578 ../extensions/formhistory.c:443
+#: ../midori/main.c:421
+#: ../midori/main.c:578
+#: ../extensions/formhistory.c:443
 #, c-format
 msgid "Failed to open database: %s\n"
 msgstr "Αποτυχία κατά το άνοιγμα της βάσης: %s\n"
@@ -75,7 +81,8 @@ msgstr "Αποτυχία στην διαγραφή των παλιών αντι
 msgid "Failed to add bookmark item: %s\n"
 msgstr "Απέτυχε η προσθήκη σελιδοδείκτη: %s\n"
 
-#: ../midori/main.c:561 ../panels/midori-history.c:180
+#: ../midori/main.c:561
+#: ../panels/midori-history.c:180
 #, c-format
 msgid "Failed to remove history item: %s\n"
 msgstr "Αποτυχία στην διαγραφή του αντικειμένου από το ιστορικό: %s\n"
@@ -96,12 +103,14 @@ msgid "The search engines couldn't be saved. %s"
 msgstr "Οι μηχανές αναζήτησης δεν μπόρεσαν να αποθηκευτούν. %s"
 
 #. i18n: Trash, or wastebin, containing closed tabs
-#: ../midori/main.c:684 ../midori/main.c:704
+#: ../midori/main.c:684
+#: ../midori/main.c:704
 #, c-format
 msgid "The trash couldn't be saved. %s"
 msgstr "Τα απορρίμματα δεν μπόρεσαν να αποθηκευτούν. %s"
 
-#: ../midori/main.c:755 ../midori/main.c:993
+#: ../midori/main.c:755
+#: ../midori/main.c:993
 #, c-format
 msgid "The session couldn't be saved. %s"
 msgstr "Η συνεδρία δεν μπόρεσε να αποθηκευτεί. %s"
@@ -126,7 +135,8 @@ msgstr "Επαναφορά της τελευταίας σ_υνεδρίας"
 msgid "Disable all _extensions"
 msgstr "Απενεργοποίηση όλων των επ_εκτάσεων"
 
-#: ../midori/main.c:1236 ../midori/main.c:2041
+#: ../midori/main.c:1236
+#: ../midori/main.c:2041
 #, c-format
 msgid "The session couldn't be loaded: %s\n"
 msgstr "Η συνεδρία δεν μπορεί να φορτωθεί: %s\n"
@@ -268,7 +278,8 @@ msgstr "Α_γνόησε"
 msgid "File not found."
 msgstr "Το αρχείο δεν βρέθηκε."
 
-#: ../midori/midori-array.c:452 ../midori/midori-array.c:475
+#: ../midori/midori-array.c:452
+#: ../midori/midori-array.c:475
 #: ../midori/midori-array.c:485
 msgid "Malformed document."
 msgstr "Κακοσχηματισμένο έγγραφο."
@@ -281,12 +292,14 @@ msgstr "Άγνωστος τύπος συνδέσμου."
 msgid "Writing failed."
 msgstr "Αποτυχία εγγραφής."
 
-#: ../midori/midori-browser.c:331 ../midori/midori-browser.c:4883
+#: ../midori/midori-browser.c:331
+#: ../midori/midori-browser.c:4883
 #: ../midori/midori-browser.c:4889
 msgid "Reload the current page"
 msgstr "Ανανέωση της τρέχουσας σελίδας"
 
-#: ../midori/midori-browser.c:341 ../midori/midori-browser.c:4886
+#: ../midori/midori-browser.c:341
+#: ../midori/midori-browser.c:4886
 msgid "Stop loading the current page"
 msgstr "Σταμάτημα φόρτωσης της τρέχουσας σελίδας"
 
@@ -325,21 +338,26 @@ msgstr "Επεξεργασία σελιδοδείκτη"
 msgid "_Title:"
 msgstr "_Τίτλος:"
 
-#: ../midori/midori-browser.c:775 ../midori/midori-searchaction.c:960
+#: ../midori/midori-browser.c:775
+#: ../midori/midori-searchaction.c:960
 msgid "_Description:"
 msgstr "_Περιγραφή:"
 
-#: ../midori/midori-browser.c:794 ../midori/midori-searchaction.c:974
+#: ../midori/midori-browser.c:794
+#: ../midori/

[Xfce4-commits] l10n: Updated Greek (el) translation to 100%

2011-01-07 Thread Transifex
Updating branch refs/heads/master
 to 520ef33f1717426e4bcf158c94ec732bff445463 (commit)
   from 23888e1fffc182a2e1faaec33cd6646e068f4bfc (commit)

commit 520ef33f1717426e4bcf158c94ec732bff445463
Author: Spiros Georgaras 
Date:   Fri Jan 7 17:55:09 2011 +0100

l10n: Updated Greek (el) translation to 100%

New status: 133 messages complete with 0 fuzzies and 0 untranslated.

Transmitted-via: Transifex (translations.xfce.org).

 po/el.po |   55 ++-
 1 files changed, 34 insertions(+), 21 deletions(-)

diff --git a/po/el.po b/po/el.po
index 4225b3d..2613c12 100644
--- a/po/el.po
+++ b/po/el.po
@@ -1,14 +1,14 @@
 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
 # This file is distributed under the same license as the PACKAGE package.
-# 
+#
 # Evaggelos Balaskas , 2009.
 msgid ""
 msgstr ""
 "Project-Id-Version: gigolo\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2011-01-07 05:05+\n"
-"PO-Revision-Date: 2010-01-29 23:19+0200\n"
-"Last-Translator: Evaggelos Balaskas \n"
+"PO-Revision-Date: 2011-01-07 18:54+0200\n"
+"Last-Translator: Spiros Georgaras \n"
 "Language-Team: Greek \n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -72,7 +72,8 @@ msgstr "WebDAV"
 msgid "WebDAV (secure)"
 msgstr "WebDAV (ασφαλές)"
 
-#: ../src/common.c:93 ../src/window.c:1395
+#: ../src/common.c:93
+#: ../src/window.c:1395
 msgid "Network"
 msgstr "Δίκτυο"
 
@@ -114,9 +115,13 @@ msgstr "Το gigolo δεν μπορεί να κάνει χρήση των ακό
 msgid "The command '%s' failed"
 msgstr "Η εντολή '%s' απέτυχε"
 
-#: ../src/window.c:563 ../src/window.c:700 ../src/bookmarkeditdialog.c:220
-#: ../src/bookmarkeditdialog.c:239 ../src/bookmarkeditdialog.c:252
-#: ../src/bookmarkeditdialog.c:263 ../src/bookmarkeditdialog.c:274
+#: ../src/window.c:563
+#: ../src/window.c:700
+#: ../src/bookmarkeditdialog.c:220
+#: ../src/bookmarkeditdialog.c:239
+#: ../src/bookmarkeditdialog.c:252
+#: ../src/bookmarkeditdialog.c:263
+#: ../src/bookmarkeditdialog.c:274
 msgid "Error"
 msgstr "Σφάλμα"
 
@@ -124,10 +129,12 @@ msgstr "Σφάλμα"
 msgid "Edit _Bookmark"
 msgstr "Επεξεργασία _σελοδοδείκτη"
 
-#: ../src/window.c:615 ../src/window.c:1189 ../src/browsenetworkpanel.c:453
+#: ../src/window.c:615
+#: ../src/window.c:1189
+#: ../src/browsenetworkpanel.c:453
 #: ../src/browsenetworkpanel.c:497
 msgid "Create _Bookmark"
-msgstr "Δημιουργία συνδέσμου"
+msgstr "Δημιουργία συν_δέσμου"
 
 #: ../src/window.c:1181
 msgid "_File"
@@ -199,7 +206,7 @@ msgstr "Εμφάνιση ως _σύμβολα"
 
 #: ../src/window.c:1219
 msgid "View as _Detailed List"
-msgstr "Εμφάνιση ως λεπτομερής λίστας"
+msgstr "Εμφάνιση ως _λεπτομερή λίστα"
 
 #: ../src/window.c:1225
 msgid "_Bookmarks"
@@ -213,11 +220,13 @@ msgstr "Επιλογή ενός συνδέσμου για σύνδεση"
 msgid "Connected"
 msgstr "Συνδέθηκε"
 
-#: ../src/window.c:1308 ../src/bookmarkdialog.c:315
+#: ../src/window.c:1308
+#: ../src/bookmarkdialog.c:315
 msgid "Service Type"
 msgstr "Τύπος υπηρεσίας"
 
-#: ../src/window.c:1316 ../src/bookmarkdialog.c:307
+#: ../src/window.c:1316
+#: ../src/bookmarkdialog.c:307
 msgid "Name"
 msgstr "Όνομα"
 
@@ -225,7 +234,9 @@ msgstr "Όνομα"
 msgid "Bookmarks"
 msgstr "Σύνδεσμοι"
 
-#: ../src/window.c:1443 ../src/window.c:1518 ../gigolo.desktop.in.h:2
+#: ../src/window.c:1443
+#: ../src/window.c:1518
+#: ../gigolo.desktop.in.h:2
 msgid "Gigolo"
 msgstr "Gigolo"
 
@@ -318,7 +329,8 @@ msgstr "Πρέπει να εισάγετε ένα έγκυρο URI για την
 msgid "_Device:"
 msgstr "_Συσκευή:"
 
-#: ../src/bookmarkeditdialog.c:569 ../src/bookmarkeditdialog.c:1079
+#: ../src/bookmarkeditdialog.c:569
+#: ../src/bookmarkeditdialog.c:1079
 msgid "_Server:"
 msgstr "_Διακομιστής:"
 
@@ -452,7 +464,7 @@ msgstr "Αποθηκεύει την θέση και γεωμετρία των π
 
 #: ../src/preferencesdialog.c:378
 msgid "Show status _icon in the Notification Area"
-msgstr "Εμφάνιση εικονιδίου κατάστασης στην περιοχή ειδοποιήσεων"
+msgstr "Εμφάνιση ε_ικονιδίου κατάστασης στην περιοχή ειδοποιήσεων"
 
 #: ../src/preferencesdialog.c:381
 msgid "Start _minimized in the Notification Area"
@@ -518,11 +530,13 @@ msgstr ""
 msgid "Unix device: %s"
 msgstr "Συσκευή Unix: %s"
 
-#: ../src/backendgvfs.c:441 ../src/backendgvfs.c:477
+#: ../src/backendgvfs.c:441
+#: ../src/backendgvfs.c:477
 msgid "unknown"
 msgstr "άγνωστο"
 
-#: ../src/backendgvfs.c:447 ../src/backendgvfs.c:543
+#: ../src/backendgvfs.c:447
+#: ../src/backendgvfs.c:543
 #, c-format
 msgid "Connecting to \"%s\" failed."
 msgstr "Η σύνδεση στο \"%s\" απέτυχε."
@@ -560,7 +574,8 @@ msgstr "Δημιουργία συνδέσμου από τον επιλεγμέν
 msgid "Refresh the network list"
 msgstr "Ανανέωση της λίστας δικτύου"
 
-#: ../src/browsenetworkpanel.c:518 ../src/bookmarkpanel.c:267
+#: ../src/browsenetworkpanel.c:518
+#: ../src/bookmarkpanel.c:267
 msgid "Close panel"
 msgstr "Κλείσιμο ταμπλό"
 
@@ -582,12 +597,10 @@ msgstr "Ένα απλό εργαλείο για την εύκολο σύνδεσ
 #~ msgstr ""
 #~ "Η υλοποίηση του διαχειριστή τόμων βασισμένος στο HAL χρ

[Xfce4-commits] l10n: Updated Greek (el) translation to 100%

2011-01-07 Thread Transifex
Updating branch refs/heads/master
 to 8f2a8c20a97a70060809b95838e36c06f97fd61a (commit)
   from c3d6e10fc5a13e04952bae64e0ec62182bf9ccec (commit)

commit 8f2a8c20a97a70060809b95838e36c06f97fd61a
Author: Spiros Georgaras 
Date:   Fri Jan 7 17:52:25 2011 +0100

l10n: Updated Greek (el) translation to 100%

New status: 64 messages complete with 0 fuzzies and 0 untranslated.

Transmitted-via: Transifex (translations.xfce.org).

 po/el.po |   18 +++---
 1 files changed, 11 insertions(+), 7 deletions(-)

diff --git a/po/el.po b/po/el.po
index e6d3e18..2bb9056 100644
--- a/po/el.po
+++ b/po/el.po
@@ -3,14 +3,14 @@
 # This file is distributed under the same license as the Mousepad package.
 # Stavros Giannouris , 2005, 2007.
 # Stathis Kamperis , 2006.
-# 
+#
 msgid ""
 msgstr ""
 "Project-Id-Version: mousepad 0.2.16\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2007-01-20 12:34+0100\n"
-"PO-Revision-Date: 2007-02-06 02:18+0200\n"
-"Last-Translator: Stavros Giannouris \n"
+"PO-Revision-Date: 2011-01-07 18:51+0200\n"
+"Last-Translator: Spiros Georgaras \n"
 "Language-Team: Greek \n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -23,7 +23,8 @@ msgstr ""
 msgid "Save changes to '%s'?"
 msgstr "Αποθήκευση αλλαγών στο '%s';"
 
-#: ../src/callback.c:213 ../src/file.c:174
+#: ../src/callback.c:213
+#: ../src/file.c:174
 #, c-format
 msgid "Can't convert codeset to '%s'"
 msgstr "Αδυναμία μετατροπής της κωδικοσελίδας σε '%s'"
@@ -190,11 +191,13 @@ msgstr "%d επαναλήψεις αντικαταστάθηκαν"
 msgid "Find"
 msgstr "Εύρεση"
 
-#: ../src/search.c:200 ../src/search.c:265
+#: ../src/search.c:200
+#: ../src/search.c:265
 msgid "Fi_nd what: "
 msgstr "Ε_υρεση του:"
 
-#: ../src/search.c:219 ../src/search.c:292
+#: ../src/search.c:219
+#: ../src/search.c:292
 msgid "_Match case"
 msgstr "_Ταίριασμα πεζών-κεφαλαίων"
 
@@ -233,7 +236,7 @@ msgstr "Άλλες κωδικοποίησεις"
 
 #: ../src/selector.c:186
 msgid "Code_set:"
-msgstr "Σετ χαρακτήρων:"
+msgstr "_Σετ χαρακτήρων:"
 
 #: ../src/selector.c:207
 #, c-format
@@ -281,3 +284,4 @@ msgstr "Απλός επεξεργαστής κειμένου"
 #: ../mousepad.desktop.in.h:3
 msgid "Text Editor"
 msgstr "Επεξεργαστής κειμένου"
+
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] l10n: Updated Polish (pl) translation to 100%

2011-01-07 Thread Transifex
Updating branch refs/heads/master
 to aaf5bf123107f4eb5ad854e595ac69d3f28d239e (commit)
   from a2c4f2eaf70b586b68497e8394d4c49aa994ad4f (commit)

commit aaf5bf123107f4eb5ad854e595ac69d3f28d239e
Author: Piotr Sokół 
Date:   Fri Jan 7 17:49:10 2011 +0100

l10n: Updated Polish (pl) translation to 100%

New status: 7 messages complete with 0 fuzzies and 0 untranslated.

Transmitted-via: Transifex (translations.xfce.org).

 po/pl.po |   61 +++--
 1 files changed, 39 insertions(+), 22 deletions(-)

diff --git a/po/pl.po b/po/pl.po
index 27fdb82..f3ed904 100644
--- a/po/pl.po
+++ b/po/pl.po
@@ -3,19 +3,21 @@
 # This file is distributed under the same license as the libxfce4util package.
 # Thanks to FreeBSD.hello.pl and Gnu.org for licenses translations.
 # Szymon Kałasz , 2006.
-# Piotr Sokół , 2009.
-# 
+# Piotr Sokół , 2009, 2011.
+#
 msgid ""
 msgstr ""
 "Project-Id-Version: libxfce4util 4.4.0\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2011-01-07 11:08+\n"
-"PO-Revision-Date: 2009-02-12 10:15+0100\n"
-"Last-Translator: Piotr Sokół \n"
-"Language-Team: Polish\n"
+"PO-Revision-Date: 2011-01-07 17:45+0100\n"
+"Last-Translator: Piotr Sokół \n"
+"Language-Team: Polish <>\n"
 "MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Type: text/plain; charset=utf-8\n"
 "Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=((n==1) ? 0 : ((n%10>=2 && n%10<=4 && (n"
+"%100<10 || n%100>=20)) ? 1 : 2));\n"
 
 #: ../libxfce4util/xfce-fileutils.c:153
 #, c-format
@@ -45,7 +47,7 @@ msgid ""
 " (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF\n"
 " THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"
 msgstr ""
-"Redystrybuowanie i użytkowanie kodu źródłowego lub plików wykonywalnych po\n"
+" Redystrybuowanie i użytkowanie kodu źródłowego lub plików wykonywalnych po\n"
 " lub bez dokonywania modyfikacji jest dozwolone, o ile spełnione zostaną\n"
 " następujące warunki:\n"
 "\n"
@@ -82,22 +84,29 @@ msgid ""
 "FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for\n"
 "more details.\n"
 "\n"
-"You should have received a copy of the GNU General Public License along 
with\n"
-"this program; if not, write to the Free Software Foundation, Inc., 51 
Franklin\n"
+"You should have received a copy of the GNU General Public License along "
+"with\n"
+"this program; if not, write to the Free Software Foundation, Inc., 51 "
+"Franklin\n"
 "Street, Fifth Floor, Boston, MA 02110-1301, USA.\n"
 msgstr ""
 "Niniejszy program jest wolnym oprogramowaniem; można go rozprowadzać dalej\n"
 "i/lub modyfikować na warunkach Powszechnej Licencji Publicznej GNU, wydanej\n"
-"przez Fundację Wolnego Oprogramowania ‒ według wersji drugiej tej Licencji 
lub\n"
+"przez Fundację Wolnego Oprogramowania ‒ według wersji drugiej tej Licencji "
+"lub\n"
 "którejś z późniejszych wersji.\n"
 "\n"
 "Niniejszy program rozpowszechniany jest z nadzieją, iż będzie on użyteczny\n"
-"- jednak BEZ JAKIEJKOLWIEK GWARANCJI, nawet domyślnej gwarancji 
PRZYDATNOŚCI\n"
+"- jednak BEZ JAKIEJKOLWIEK GWARANCJI, nawet domyślnej gwarancji "
+"PRZYDATNOŚCI\n"
 "HANDLOWEJ albo PRZYDATNOŚCI DO OKREŚLONYCH ZASTOSOWAŃ. W celu uzyskania\n"
-"bliższych informacji należy zapoznać się z Powszechną Licencją Publiczną 
GNU.\n"
+"bliższych informacji należy zapoznać się z Powszechną Licencją Publiczną "
+"GNU.\n"
 "\n"
-"Z pewnością wraz z niniejszym programem dostarczono także egzemplarz 
Powszechnej\n"
-"Licencji Publicznej GNU (GNU General Public License); jeśli nie - proszę 
napisać\n"
+"Z pewnością wraz z niniejszym programem dostarczono także egzemplarz "
+"Powszechnej\n"
+"Licencji Publicznej GNU (GNU General Public License); jeśli nie - proszę "
+"napisać\n"
 "do Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,\n"
 "MA 02110-130159 USA.\n"
 
@@ -118,18 +127,26 @@ msgid ""
 "Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, \n"
 "Boston, MA 02110-1301  USA.\n"
 msgstr ""
-"Niniejsza biblioteka jest wolnym oprogramowaniem; można ją rozprowadzać 
dalej\n"
-"i/lub modyfikować na warunkach Powszechnej Licencji Publicznej GNU Library, 
wydanej\n"
-"przez Fundację Wolnego Oprogramowania ‒ według wersji drugiej tej Licencji 
lub\n"
+"Niniejsza biblioteka jest wolnym oprogramowaniem; można ją rozprowadzać "
+"dalej\n"
+"i/lub modyfikować na warunkach Powszechnej Licencji Publicznej GNU Library, "
+"wydanej\n"
+"przez Fundację Wolnego Oprogramowania ‒ według wersji drugiej tej Licencji "
+"lub\n"
 "którejś z późniejszych wersji.\n"
 "\n"
-"Niniejsza biblioteka rozpowszechniana jest z nadzieją, iż będzie ono 
użyteczna\n"
-"- jednak BEZ JAKIEJKOLWIEK GWARANCJI, nawet domyślnej gwarancji 
PRZYDATNOŚCI\n"
+"Niniejsza biblioteka rozpowszechniana jest z nadzieją, iż będzie ono "
+"użyteczna\n"
+"- jednak BEZ JAKIEJKOLWIEK GWARANCJI, nawet domyślnej gwarancji "
+"PRZYDA

[Xfce4-commits] l10n: Updated Greek (el) translation to 100%

2011-01-07 Thread Transifex
Updating branch refs/heads/master
 to d6a1b1ee6fd3cb15a392430ab4e54229bce34eeb (commit)
   from 1d44b7c75bf21d7adf4667afa9800a78243cf793 (commit)

commit d6a1b1ee6fd3cb15a392430ab4e54229bce34eeb
Author: Spiros Georgaras 
Date:   Fri Jan 7 17:44:54 2011 +0100

l10n: Updated Greek (el) translation to 100%

New status: 116 messages complete with 0 fuzzies and 0 untranslated.

Transmitted-via: Transifex (translations.xfce.org).

 po/el.po |   22 +++---
 1 files changed, 11 insertions(+), 11 deletions(-)

diff --git a/po/el.po b/po/el.po
index 9ad0a69..b74b444 100644
--- a/po/el.po
+++ b/po/el.po
@@ -10,8 +10,8 @@ msgstr ""
 "Project-Id-Version: thunar-volman git version\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2010-11-07 14:39+0100\n"
-"PO-Revision-Date: 2011-01-06 16:35+0200\n"
-"Last-Translator: Stavros Giannouris \n"
+"PO-Revision-Date: 2011-01-07 18:44+0200\n"
+"Last-Translator: Spiros Georgaras \n"
 "Language-Team: Greek \n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -389,11 +389,11 @@ msgstr "Πρ_οσάρτηση αφαιρούμενων οδηγών όταν σ
 
 #: ../thunar-volman-settings/tvm-preferences-dialog.c:166
 msgid "Mount removable media when _inserted"
-msgstr "Προσάρτηση αφαιρούμενων μέσων όταν εισαχθούν"
+msgstr "Προσάρτηση αφαιρούμενων μέσων όταν ε_ισαχθούν"
 
 #: ../thunar-volman-settings/tvm-preferences-dialog.c:174
 msgid "B_rowse removable media when inserted"
-msgstr "Περιήγηση αφαιρούμενων μέσων όταν εισαχθούν"
+msgstr "Πε_ριήγηση αφαιρούμενων μέσων όταν εισαχθούν"
 
 #: ../thunar-volman-settings/tvm-preferences-dialog.c:182
 msgid "_Auto-run programs on new drives and media"
@@ -413,11 +413,11 @@ msgstr "_Εγγραφή ενός CD ή DVD όταν εισαχθεί κενός
 
 #: ../thunar-volman-settings/tvm-preferences-dialog.c:229
 msgid "Command for _Data CDs:"
-msgstr "Εντολή για CD δεδομένων:"
+msgstr "Εντολή για CD _δεδομένων:"
 
 #: ../thunar-volman-settings/tvm-preferences-dialog.c:239
 msgid "Command for A_udio CDs:"
-msgstr "Εντολή για CD ήχου:"
+msgstr "Εντολή για CD ή_χου:"
 
 #. Multimedia
 #.
@@ -431,7 +431,7 @@ msgstr "CD ήχου"
 
 #: ../thunar-volman-settings/tvm-preferences-dialog.c:283
 msgid "Play _audio CDs when inserted"
-msgstr "Αναπαραγωγή CD ήχου όταν εισαχθεί"
+msgstr "Αν_απαραγωγή CD ήχου όταν εισαχθεί"
 
 #: ../thunar-volman-settings/tvm-preferences-dialog.c:290
 #: ../thunar-volman-settings/tvm-preferences-dialog.c:415
@@ -447,7 +447,7 @@ msgstr "Βίντεο CD/DVD"
 
 #: ../thunar-volman-settings/tvm-preferences-dialog.c:321
 msgid "Play _video CDs and DVDs when inserted"
-msgstr "Αναπαραγωγή βίντεο CD και DVD όταν εισαχθούν"
+msgstr "Αναπαραγωγή _βίντεο CD και DVD όταν εισαχθούν"
 
 #: ../thunar-volman-settings/tvm-preferences-dialog.c:329
 #: ../thunar-volman-settings/tvm-preferences-dialog.c:367
@@ -498,7 +498,7 @@ msgstr "Pocket PC"
 
 #: ../thunar-volman-settings/tvm-preferences-dialog.c:497
 msgid "Sync Pocket P_C devices when connected"
-msgstr "Συγχρονισμός συσκευών Pocket PC όταν συνδεθεί"
+msgstr "Συγχρονισμός _συσκευών Pocket PC όταν συνδεθεί"
 
 #. Printers
 #.
@@ -509,7 +509,7 @@ msgstr "Εκτυπωτές"
 
 #: ../thunar-volman-settings/tvm-preferences-dialog.c:545
 msgid "Automatically run a program when a _printer is connected"
-msgstr "Αυτόματη εκτέλεση προγράμματος όταν συνδεθεί ένας εκτυπωτής"
+msgstr "Αυτόματη εκτέλεση προγράμματος όταν συνδεθεί ένας ε_κτυπωτής"
 
 #. Input Devices
 #.
@@ -523,7 +523,7 @@ msgstr "Πληκτρολόγια"
 
 #: ../thunar-volman-settings/tvm-preferences-dialog.c:593
 msgid "Automatically run a program when an USB _keyboard is connected"
-msgstr "Αυτόματη εκτέλεση ενός προγράμματος όταν συνδεθεί ένα πληκτρολόγιο USB"
+msgstr "Αυτόματη ε_κτέλεση ενός προγράμματος όταν συνδεθεί ένα πληκτρολόγιο 
USB"
 
 #: ../thunar-volman-settings/tvm-preferences-dialog.c:615
 msgid "Mice"
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] l10n: Updated Polish (pl) translation to 100%

2011-01-07 Thread Transifex
Updating branch refs/heads/master
 to a2c4f2eaf70b586b68497e8394d4c49aa994ad4f (commit)
   from 52406336b294ca7686ac23562741a27e3ae7aa7c (commit)

commit a2c4f2eaf70b586b68497e8394d4c49aa994ad4f
Author: Piotr Sokół 
Date:   Fri Jan 7 17:43:07 2011 +0100

l10n: Updated Polish (pl) translation to 100%

New status: 7 messages complete with 0 fuzzies and 0 untranslated.

Transmitted-via: Transifex (translations.xfce.org).

 po/pl.po |   56 +---
 1 files changed, 21 insertions(+), 35 deletions(-)

diff --git a/po/pl.po b/po/pl.po
index 0d815b1..27fdb82 100644
--- a/po/pl.po
+++ b/po/pl.po
@@ -4,12 +4,12 @@
 # Thanks to FreeBSD.hello.pl and Gnu.org for licenses translations.
 # Szymon Kałasz , 2006.
 # Piotr Sokół , 2009.
-#
+# 
 msgid ""
 msgstr ""
 "Project-Id-Version: libxfce4util 4.4.0\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-12-18 11:59+0100\n"
+"POT-Creation-Date: 2011-01-07 11:08+\n"
 "PO-Revision-Date: 2009-02-12 10:15+0100\n"
 "Last-Translator: Piotr Sokół \n"
 "Language-Team: Polish\n"
@@ -45,7 +45,7 @@ msgid ""
 " (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF\n"
 " THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"
 msgstr ""
-" Redystrybucja i użytkowanie kodu źródłowego lub plików wykonywalnych po\n"
+"Redystrybuowanie i użytkowanie kodu źródłowego lub plików wykonywalnych po\n"
 " lub bez dokonywania modyfikacji jest dozwolone, o ile spełnione zostaną\n"
 " następujące warunki:\n"
 "\n"
@@ -82,29 +82,22 @@ msgid ""
 "FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for\n"
 "more details.\n"
 "\n"
-"You should have received a copy of the GNU General Public License along "
-"with\n"
-"this program; if not, write to the Free Software Foundation, Inc., 51 "
-"Franklin\n"
+"You should have received a copy of the GNU General Public License along 
with\n"
+"this program; if not, write to the Free Software Foundation, Inc., 51 
Franklin\n"
 "Street, Fifth Floor, Boston, MA 02110-1301, USA.\n"
 msgstr ""
 "Niniejszy program jest wolnym oprogramowaniem; można go rozprowadzać dalej\n"
 "i/lub modyfikować na warunkach Powszechnej Licencji Publicznej GNU, wydanej\n"
-"przez Fundację Wolnego Oprogramowania ‒ według wersji drugiej tej Licencji "
-"lub\n"
+"przez Fundację Wolnego Oprogramowania ‒ według wersji drugiej tej Licencji 
lub\n"
 "którejś z późniejszych wersji.\n"
 "\n"
 "Niniejszy program rozpowszechniany jest z nadzieją, iż będzie on użyteczny\n"
-"- jednak BEZ JAKIEJKOLWIEK GWARANCJI, nawet domyślnej gwarancji "
-"PRZYDATNOŚCI\n"
+"- jednak BEZ JAKIEJKOLWIEK GWARANCJI, nawet domyślnej gwarancji 
PRZYDATNOŚCI\n"
 "HANDLOWEJ albo PRZYDATNOŚCI DO OKREŚLONYCH ZASTOSOWAŃ. W celu uzyskania\n"
-"bliższych informacji należy zapoznać się z Powszechną Licencją Publiczną "
-"GNU.\n"
+"bliższych informacji należy zapoznać się z Powszechną Licencją Publiczną 
GNU.\n"
 "\n"
-"Z pewnością wraz z niniejszym programem dostarczono także egzemplarz "
-"Powszechnej\n"
-"Licencji Publicznej GNU (GNU General Public License); jeśli nie - proszę "
-"napisać\n"
+"Z pewnością wraz z niniejszym programem dostarczono także egzemplarz 
Powszechnej\n"
+"Licencji Publicznej GNU (GNU General Public License); jeśli nie - proszę 
napisać\n"
 "do Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,\n"
 "MA 02110-130159 USA.\n"
 
@@ -125,39 +118,32 @@ msgid ""
 "Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, \n"
 "Boston, MA 02110-1301  USA.\n"
 msgstr ""
-"Niniejsza biblioteka jest wolnym oprogramowaniem; można ją rozprowadzać "
-"dalej\n"
-"i/lub modyfikować na warunkach Powszechnej Licencji Publicznej GNU, wydanej\n"
-"przez Fundację Wolnego Oprogramowania ‒ według wersji drugiej tej Licencji "
-"lub\n"
+"Niniejsza biblioteka jest wolnym oprogramowaniem; można ją rozprowadzać 
dalej\n"
+"i/lub modyfikować na warunkach Powszechnej Licencji Publicznej GNU Library, 
wydanej\n"
+"przez Fundację Wolnego Oprogramowania ‒ według wersji drugiej tej Licencji 
lub\n"
 "którejś z późniejszych wersji.\n"
 "\n"
-"Niniejsza biblioteka rozpowszechniana jest z nadzieją, iż będzie ono "
-"użyteczna\n"
-"- jednak BEZ JAKIEJKOLWIEK GWARANCJI, nawet domyślnej gwarancji "
-"PRZYDATNOŚCI\n"
+"Niniejsza biblioteka rozpowszechniana jest z nadzieją, iż będzie ono 
użyteczna\n"
+"- jednak BEZ JAKIEJKOLWIEK GWARANCJI, nawet domyślnej gwarancji 
PRZYDATNOŚCI\n"
 "HANDLOWEJ albo PRZYDATNOŚCI DO OKREŚLONYCH ZASTOSOWAŃ. W celu uzyskania\n"
-"bliższych informacji należy zapoznać się z Powszechną Licencją Publiczną "
-"GNU.\n"
+"bliższych informacji należy zapoznać się z Powszechną Licencją Publiczną 
GNU.\n"
 "\n"
-"Z pewnością wraz z niniejszą biblioteką dostarczono także egzemplarz "
-"Powszechnej\n"
-"Licencji Publicznej GNU (GNU General Public License); jeśli nie - proszę "
-"napisać\n"
+"Z pewnością wraz z niniejszą biblioteką dostarczono także egzemplarz 

[Xfce4-commits] l10n: Updated Greek (el) translation to 100%

2011-01-07 Thread Transifex
Updating branch refs/heads/master
 to 9c53673502d74ea58a9e20603b57f242938d1902 (commit)
   from dca937f4815e4c6d355a292675b648284fedee6d (commit)

commit 9c53673502d74ea58a9e20603b57f242938d1902
Author: Spiros Georgaras 
Date:   Fri Jan 7 17:37:27 2011 +0100

l10n: Updated Greek (el) translation to 100%

New status: 31 messages complete with 0 fuzzies and 0 untranslated.

Transmitted-via: Transifex (translations.xfce.org).

 po/el.po |9 +
 1 files changed, 5 insertions(+), 4 deletions(-)

diff --git a/po/el.po b/po/el.po
index c92cf03..e3b92cb 100644
--- a/po/el.po
+++ b/po/el.po
@@ -1,15 +1,15 @@
 # translation of el.po to Greek
 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
 # This file is distributed under the same license as the PACKAGE package.
-# 
+#
 # Evaggelos Balaskas , 2008.
 msgid ""
 msgstr ""
 "Project-Id-Version: el\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2011-01-06 05:13+\n"
-"PO-Revision-Date: 2011-01-04 01:07+0200\n"
-"Last-Translator: George Vasilakos \n"
+"PO-Revision-Date: 2011-01-07 18:36+0200\n"
+"Last-Translator: Spiros Georgaras \n"
 "Language-Team: Greek \n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -121,7 +121,7 @@ msgstr "Αν_αβολή"
 #. Create resume button
 #: ../panel-plugin/time-out-lock-screen.c:225
 msgid "_Resume"
-msgstr "Συνέχεια"
+msgstr "_Συνέχεια"
 
 #: ../panel-plugin/time-out-countdown.c:377
 msgid "The break is over."
@@ -203,3 +203,4 @@ msgstr "Χρόνος που απομένει: %s %s %s"
 #: ../panel-plugin/xfce4-time-out-plugin.desktop.in.in.h:1
 msgid "Automatically controlled time outs and breaks"
 msgstr "Αυτόματα ελεγχόμενες χρονικές ανάπαυλες και διαλείμματα"
+
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] l10n: Updated Polish (pl) translation to 98%

2011-01-07 Thread Transifex
Updating branch refs/heads/master
 to 4b71bdafff4b816e1c83cf8eb980f047a92ee9a6 (commit)
   from 2615273e2a7a60a546e4f7c7d62365760eeb097f (commit)

commit 4b71bdafff4b816e1c83cf8eb980f047a92ee9a6
Author: Piotr Sokół 
Date:   Fri Jan 7 17:34:45 2011 +0100

l10n: Updated Polish (pl) translation to 98%

New status: 71 messages complete with 1 fuzzy and 0 untranslated.

Transmitted-via: Transifex (translations.xfce.org).

 po/pl.po |  156 +++--
 1 files changed, 89 insertions(+), 67 deletions(-)

diff --git a/po/pl.po b/po/pl.po
index d04a990..afcb6da 100644
--- a/po/pl.po
+++ b/po/pl.po
@@ -4,114 +4,126 @@
 # Paweł Pastuła , 2003.
 # Daniel 'Beorn' Mróz , 2003.
 # Piotr Maliński , 2005, 2006.
-# Piotr Sokół , 2009.
+# Piotr Sokół , 2009, 2011.
 #
 msgid ""
 msgstr ""
 "Project-Id-Version: xfce-utils\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-12-05 15:39+0100\n"
-"PO-Revision-Date: 2009-04-10 11:03+0100\n"
-"Last-Translator: Piotr Sokół \n"
-"Language-Team: Polish\n"
-"Language: \n"
+"POT-Creation-Date: 2011-01-07 11:09+\n"
+"PO-Revision-Date: 2011-01-07 17:31+0100\n"
+"Last-Translator: Piotr Sokół \n"
+"Language-Team: Polish <>\n"
 "MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Type: text/plain; charset=utf-8\n"
 "Content-Transfer-Encoding: 8bit\n"
+"Language: \n"
+"Plural-Forms: nplurals=3; plural=((n==1) ? 0 : ((n%10>=2 && n%10<=4 && (n"
+"%100<10 || n%100>=20)) ? 1 : 2));\n"
 
 #: ../xfce4-about/main.c:52
 msgid "Version information"
-msgstr ""
+msgstr "Wypisuje informacje o wersji"
 
 #: ../xfce4-about/main.c:70
 msgid "Window Manager"
-msgstr ""
+msgstr "Menedżer okien"
 
 #: ../xfce4-about/main.c:71
 msgid "Handles the placement of windows on the screen."
-msgstr ""
+msgstr "Zarządza położeniem okien na ekranie."
 
 #: ../xfce4-about/main.c:74
 msgid "Panel"
-msgstr ""
+msgstr "Panel"
 
 #: ../xfce4-about/main.c:75
 msgid ""
 "Program launchers, window buttons, applications menu, workspace switcher and "
 "more."
 msgstr ""
+"Przechowuje i wyświetla rozmaite aplety takie jak aktywatory, przyciski "
+"okien, podgląd obszarów roboczych i inne."
 
 #: ../xfce4-about/main.c:79
 msgid "Desktop Manager"
-msgstr ""
+msgstr "Menedżer pulpitu"
 
 #: ../xfce4-about/main.c:80
 msgid ""
 "Sets the background color or image with optional application menu or icons "
 "for minimized applications or launchers, devices and folders."
-msgstr ""
+msgstr "Konfiguruje tło pulpitu oraz jego zawartość."
 
 #: ../xfce4-about/main.c:84
 msgid "File Manager "
-msgstr ""
+msgstr "Menedżer plików"
 
 #: ../xfce4-about/main.c:85
 msgid ""
 "A modern file manager for the Unix/Linux desktop, aiming to be easy-to-use "
 "and fast."
-msgstr ""
+msgstr "Zarządza plikami w prosty i efektywny sposób."
 
 #: ../xfce4-about/main.c:89
 msgid "Session Manager"
-msgstr ""
+msgstr "Menedżer sesji"
 
 #: ../xfce4-about/main.c:90
 msgid ""
 "Restores your session on startup and allows you to shutdown the computer "
 "from Xfce."
-msgstr ""
+msgstr "Przywraca sesje po uruchomieniu komputera i umożliwia zarządzanie nią."
 
 #: ../xfce4-about/main.c:94
 msgid "Setting System"
-msgstr ""
+msgstr "Menedżer ustawień"
 
 #: ../xfce4-about/main.c:95
 msgid ""
 "Configuration system to control various aspects of the desktop like "
 "appearance, display, keyboard and mouse settings."
 msgstr ""
+"Konfiguruje różne cechy środowiska, takiej jak jego wygląd, ustawienia "
+"ekranu, klawiatury i myszy."
 
 #: ../xfce4-about/main.c:99
 msgid "Application Finder"
-msgstr ""
+msgstr "Wyszukiwanie programów"
 
 #: ../xfce4-about/main.c:100
 msgid ""
 "Shows the applications installed on your system in categories, so you can "
 "quickly find and launch them."
 msgstr ""
+"Wyświetla programy zainstalowane w systemie rozmieszczone w kategoriach, w "
+"celu ich szybkiego odnalezienia i uruchomienia."
 
 #: ../xfce4-about/main.c:104
 msgid "Utilities and Scripts"
-msgstr ""
+msgstr "Narzędzia i skrypty"
 
 #: ../xfce4-about/main.c:105
 msgid "Startup scripts, run dialog and about dialog."
 msgstr ""
+"Zawiera skrypty uruchomieniowe, okno dialogowe uruchamiania poleceń i okno "
+"informacji o środowisku graficznym."
 
 #: ../xfce4-about/main.c:108
 msgid "Settings Daemon"
-msgstr ""
+msgstr "Demon ustawień"
 
 #: ../xfce4-about/main.c:109
 msgid "D-Bus-based configuration storage system."
-msgstr ""
+msgstr "Przechowuje konfiguracje programów w oparciu o system D-Bus."
 
 #: ../xfce4-about/main.c:116
 msgid ""
 "Xfce is a collection of programs that together provide a full-featured "
 "desktop environment. The following programs are part of the Xfce core:"
 msgstr ""
+"Xfce jest zestawem programów, które używane razem, oferują kompletne "
+"środowisko graficzne. Do podstawowych programów środowiska Xfce należą:"
 
 #: ../xfce4-about/main.c:140
 msgid ""
@@ -119,6 +131,9 @@ msgid ""
 "programmers create applications that fit in well with t

[Xfce4-commits] l10n: Updated Greek (el) translation to 100%

2011-01-07 Thread Transifex
Updating branch refs/heads/master
 to 31c230bda2bce175533db04656bc7e656728394b (commit)
   from 35c0fbfb7ba2994e47d8de050b712fb8a54d4cef (commit)

commit 31c230bda2bce175533db04656bc7e656728394b
Author: Spiros Georgaras 
Date:   Fri Jan 7 17:35:17 2011 +0100

l10n: Updated Greek (el) translation to 100%

New status: 47 messages complete with 0 fuzzies and 0 untranslated.

Transmitted-via: Transifex (translations.xfce.org).

 po/el.po |6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/po/el.po b/po/el.po
index 1958825..45fe719 100644
--- a/po/el.po
+++ b/po/el.po
@@ -8,8 +8,8 @@ msgstr ""
 "Project-Id-Version: xfce4-clipman-plugin\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2009-12-12 19:12+0100\n"
-"PO-Revision-Date: 2010-02-01 08:43+0200\n"
-"Last-Translator: Evaggelos Balaskas \n"
+"PO-Revision-Date: 2011-01-07 18:34+0200\n"
+"Last-Translator: Spiros Georgaras \n"
 "Language-Team: Greek \n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -167,7 +167,7 @@ msgstr "Αποθήκευση κατά την έ_ξοδο"
 
 #: ../panel-plugin/settings-dialog.glade.h:23
 msgid "Size of the _history:"
-msgstr "Μέγεθος του ιστορικού:"
+msgstr "Μέγεθος του _ιστορικού:"
 
 #: ../panel-plugin/settings-dialog.glade.h:24
 msgid "Store an _image"
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] l10n: Updated Greek (el) translation to 100%

2011-01-07 Thread Transifex
Updating branch refs/heads/master
 to 455643b3d01b17ef96633dad5c93714ebb56c1e3 (commit)
   from f21ff3e28741916ac3c6c7adde7af56114680852 (commit)

commit 455643b3d01b17ef96633dad5c93714ebb56c1e3
Author: forfolias 
Date:   Fri Jan 7 17:33:47 2011 +0100

l10n: Updated Greek (el) translation to 100%

New status: 75 messages complete with 0 fuzzies and 0 untranslated.

Transmitted-via: Transifex (translations.xfce.org).

 po/el.po |   10 +++---
 1 files changed, 3 insertions(+), 7 deletions(-)

diff --git a/po/el.po b/po/el.po
index 44dbaa7..988525a 100644
--- a/po/el.po
+++ b/po/el.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: xfce4-taskmanager git version\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-01-03 17:15+\n"
+"POT-Creation-Date: 2011-01-07 11:16+\n"
 "PO-Revision-Date: 2010-05-24 13:13+0200\n"
 "Last-Translator: Evaggelos Balaskas \n"
 "Language-Team: Greek \n"
@@ -42,9 +42,8 @@ msgid "Couldn't find any default command to run."
 msgstr "Δεν βρέθηκε καμία προεπιλεγμένη εντολή προς εκτέλεση."
 
 #: ../src/exec-tool-button.c:164
-#, fuzzy
 msgid "Run Task Manager as root"
-msgstr "Εκτέλεση του Διαχειριστή Εργασιών ως διαχειριστής"
+msgstr "Εκτέλεση του Διαχειριστή Εργασιών ως υπερχρήστης"
 
 #: ../src/exec-tool-button.c:175 ../src/exec-tool-button.c:177
 #: ../src/exec-tool-button.c:179
@@ -225,21 +224,18 @@ msgstr ""
 "Σταύρος Γιαννούρης"
 
 #: ../src/process-window.ui.h:2
-#, fuzzy
 msgid "Warning, you are using the root account, you may harm your system."
-msgstr "Προσοχή, χρησιμοποιείτε το λογαριασμό του διαχειριστή, μπορεί να 
βλάψετε το σύστημά σας."
+msgstr "Προσοχή, χρησιμοποιείτε το λογαριασμό του υπερχρήστη, μπορεί να 
βλάψετε το σύστημά σας."
 
 #: ../src/settings.c:378
 msgid "Default"
 msgstr "Προεπιλογή"
 
 #: ../src/settings.c:379
-#, fuzzy
 msgid "Small"
 msgstr "Μικρό"
 
 #: ../src/settings.c:380
-#, fuzzy
 msgid "Large"
 msgstr "Μεγάλο"
 
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] l10n: Updated Greek (el) translation to 100%

2011-01-07 Thread Transifex
Updating branch refs/heads/master
 to 831fc251afbdf925a75e468073b78ba59f722145 (commit)
   from ba9f35f61e08726b3aaee3df0d60c690907fb891 (commit)

commit 831fc251afbdf925a75e468073b78ba59f722145
Author: Spiros Georgaras 
Date:   Fri Jan 7 17:32:59 2011 +0100

l10n: Updated Greek (el) translation to 100%

New status: 19 messages complete with 0 fuzzies and 0 untranslated.

Transmitted-via: Transifex (translations.xfce.org).

 po/el.po |   28 ++--
 1 files changed, 10 insertions(+), 18 deletions(-)

diff --git a/po/el.po b/po/el.po
index f51ffce..e41ae93 100644
--- a/po/el.po
+++ b/po/el.po
@@ -53,8 +53,8 @@ msgstr ""
 "Project-Id-Version: el\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2007-05-17 01:47-0500\n"
-"PO-Revision-Date: 2009-06-20 01:34-0800\n"
-"Last-Translator: Evaggelos Balaskas \n"
+"PO-Revision-Date: 2011-01-07 18:32+0200\n"
+"Last-Translator: Spiros Georgaras \n"
 "Language-Team: Greek \n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -66,8 +66,10 @@ msgstr ""
 msgid "Access folders, documents, and removable media"
 msgstr "Προσβάσιμοι φάκελοι, έγγραφα και αφαιρέσιμα μέσα"
 
-#: ../panel-plugin/places.desktop.in.in.h:2 ../panel-plugin/cfg.c:78
-#: ../panel-plugin/cfg.c:140 ../panel-plugin/cfg.c:259
+#: ../panel-plugin/places.desktop.in.in.h:2
+#: ../panel-plugin/cfg.c:78
+#: ../panel-plugin/cfg.c:140
+#: ../panel-plugin/cfg.c:259
 #: ../panel-plugin/cfg.c:329
 msgid "Places"
 msgstr "Τοποθεσίες"
@@ -84,7 +86,8 @@ msgstr "Επιφάνεια Εργασίας"
 msgid "File System"
 msgstr "Σύστημα αρχείων"
 
-#: ../panel-plugin/view.c:244 ../panel-plugin/cfg.c:456
+#: ../panel-plugin/view.c:244
+#: ../panel-plugin/cfg.c:456
 msgid "Recent Documents"
 msgstr "Πρόσφατα έγγραφα"
 
@@ -134,7 +137,7 @@ msgstr "Εμφάνιση GTK σ_ελιδοδεικτών"
 #. MENU: Show Recent Documents
 #: ../panel-plugin/cfg.c:442
 msgid "Show recent _documents"
-msgstr "Εμφάνιση πρόσφατων εγγράφων"
+msgstr "Εμφάνιση πρόσφατων ε_γγράφων"
 
 #. RECENT DOCUMENTS: Show clear option
 #: ../panel-plugin/cfg.c:460
@@ -147,39 +150,28 @@ msgstr "Αρ_ιθμός για εμφάνιση"
 
 #~ msgid "Failed to eject \"%s\""
 #~ msgstr "Αποτυχία κατά την εξαγωγή \"%s\""
-
 #~ msgid "Failed to unmount \"%s\""
 #~ msgstr "Αποτυχία κατά την αποπροσάρτηση \"%s\""
-
 #~ msgid "Failed to mount \"%s\""
 #~ msgstr "Αποτυχία κατά την προσάρτηση \"%s\""
-
 #~ msgid "Mount and Open"
 #~ msgstr "Προσάρτηση και άνοιγμα"
-
 #~ msgid "Mount"
 #~ msgstr "Προσάρτηση"
-
 #~ msgid "Eject"
 #~ msgstr "Εξαγωγή"
-
 #~ msgid "Unmount"
 #~ msgstr "Απόπροσάρτηση"
-
 #~ msgid "Search for Files"
 #~ msgstr "Αναζήτηση για αρχεία"
-
 #~ msgid "Mount and _Open on click"
 #~ msgstr "Προσάρτηση και άν_οιγμα στο click"
-
 #~ msgid "Search"
 #~ msgstr "Αναζήτηση"
-
 #~ msgid "Co_mmand"
 #~ msgstr "Εντ_ολή"
-
 #~ msgid "Open"
 #~ msgstr "Άνοιγμα"
-
 #~ msgid "Open Terminal Here"
 #~ msgstr "Άνοιγμα τερματικού εδώ"
+
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] l10n: Updated Greek (el) translation to 100%

2011-01-07 Thread Transifex
Updating branch refs/heads/master
 to b9abc8f268a7fc2e6c600d4ea2c0dde88eda87a6 (commit)
   from a155e62b7a116a46ef6e21f36b78fe0f98d21f25 (commit)

commit b9abc8f268a7fc2e6c600d4ea2c0dde88eda87a6
Author: Spiros Georgaras 
Date:   Fri Jan 7 17:30:20 2011 +0100

l10n: Updated Greek (el) translation to 100%

New status: 110 messages complete with 0 fuzzies and 0 untranslated.

Transmitted-via: Transifex (translations.xfce.org).

 po/el.po |   25 +
 1 files changed, 9 insertions(+), 16 deletions(-)

diff --git a/po/el.po b/po/el.po
index ca8eccd..b0e2450 100644
--- a/po/el.po
+++ b/po/el.po
@@ -3,14 +3,14 @@
 # This file is distributed under the same license as the 
xfce4-mailwatch-plugin package.
 # Stavros Giannouris , 2005-2006, 2008.
 # Stathis Kamperis , 2006.
-# 
+#
 msgid ""
 msgstr ""
 "Project-Id-Version: xfce4-mailwatch-plugin 1.0.1svn\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2009-07-15 22:43-0700\n"
-"PO-Revision-Date: 2008-09-11 17:40+0200\n"
-"Last-Translator: Stavros Giannouris \n"
+"PO-Revision-Date: 2011-01-07 18:29+0200\n"
+"Last-Translator: Spiros Georgaras \n"
 "Language-Team: Greek \n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -341,12 +341,14 @@ msgstr "Η ενδιάμεση μνήμη δεν είναι αρκετά μεγά
 msgid "xfce4-mailwatch-plugin: Unable to initialise GThread support.  This is 
likely a problem with your GLib install."
 msgstr "xfce4-mailwatch-plugin: Δεν ήταν δυνατή η ενεργοποίηση υποστήριξης 
GThread. Αυτό είναι ένα πιθανό πρόβλημα με την εγκατάσταση της  GLib σας."
 
-#: ../libmailwatch-core/mailwatch.c:341 ../libmailwatch-core/mailwatch.c:342
+#: ../libmailwatch-core/mailwatch.c:341
+#: ../libmailwatch-core/mailwatch.c:342
 #, c-format
 msgid "Unable to write config file '%s'"
 msgstr "Αδυναμία εγγραφής στο αρχείο ρυθμίσεων '%s'"
 
-#: ../libmailwatch-core/mailwatch.c:406 ../libmailwatch-core/mailwatch.c:408
+#: ../libmailwatch-core/mailwatch.c:406
+#: ../libmailwatch-core/mailwatch.c:408
 #, c-format
 msgid "Unable to set permissions on config file '%s'.  If this file contains 
passwords or other sensitive information, it may be readable by others on your 
system."
 msgstr "Αδύνατος ο ορισμός των δικαιωμάτων στο αρχείο ρυθμίσεων '%s'. Εάν αυτό 
το αρχείο περιέχει κωδικούς ή άλλες ευαίσθητες πληροφορίες, μπορεί να είναι 
προσβάσιμο και από άλλους στο σύστημα σας."
@@ -455,7 +457,7 @@ msgstr "Γραμμές κατα_γραφής:"
 #: ../panel-plugin/mailwatch-plugin-4.2.c:548
 #: ../panel-plugin/mailwatch-plugin.c:710
 msgid "Show log _status in icon"
-msgstr "Εμφάνιση κατάστασης της καταγραφής στο εικονίδιο"
+msgstr "Εμφάνιση κατά_στασης της καταγραφής στο εικονίδιο"
 
 #: ../panel-plugin/mailwatch-plugin-4.2.c:594
 #: ../panel-plugin/mailwatch-plugin.c:754
@@ -557,33 +559,24 @@ msgstr "Έλεγχος πολλαπλών γραμματοκιβωτίων"
 
 #~ msgid "Unable to set socket to non-blocking mode.  If the connect attempt 
hangs, the panel may hang on close."
 #~ msgstr "Unable to set socket to non-blocking mode.  Εάν κρεμάσει η 
προσπάθεια σύνδεσης. το ταμπλό μπορεί να κρεμάσει κατά το κλείσιμο."
-
 #~ msgid "Unable to return socket to blocking mode.  Data may not be retreived 
correctly."
 #~ msgstr "Unable to return socket to blocking mode.  Τα δεδομένα μπορεί να 
μην διαβαστούν σωστά."
-
 #~ msgid "The IMAP server returned a response we weren't quite expecting.  
This might be OK, or this plugin might need to be modified to support your mail 
server if the new message counts are incorrect."
 #~ msgstr "Ο εξυπηρετητής IMAP αποκρίθηκε με μη αναμενόνεμο τρόπο. Αυτό μπορεί 
να είναι εντάξει, ή θα πρέπει αυτό το πρόσθετο να τροποποιηθεί για να 
υποστηρίξει τον εξυπηρετητή αλληλογραφίας σας αν η μέτρηση νέας αλληλογραφίας 
δεν είναι σωστή."
-
 #~ msgid "XfceMailwatch: TLS handshake failed: %s"
 #~ msgstr "XfceMailwatch: Η χειραψία TLS απέτυχε: %s"
-
 #~ msgid "XfceMailwatch: TLS handshake failed: not compiled with SSL support."
 #~ msgstr "XfceMailwatch: Η χειραψία TLS απέτυχε: δε μεταγλωττίστηκε με 
υποστήριξη SSL."
-
 #~ msgid "A secure connection was requested, but gnutls was not initialised"
 #~ msgstr "Απαιτήθηκε ασφαλής σύνδεση, αλλά δεν ξεκίνησε το gnutls"
-
 #~ msgid "About Mailwatch"
 #~ msgstr "Περί του Mailwatch"
-
 #~ msgid "You have 1 new message:"
 #~ msgstr "Έχετε 1 νέο μήνυμα:"
-
 #~ msgid "You have %d new messages:"
 #~ msgstr "Έχετε %d νέα μηνύματά:"
-
 #~ msgid "Edit Properties"
 #~ msgstr "Επεξεργασία ιδιοτήτων"
-
 #~ msgid "A buffer was too small to receive all of an IMAP response.  This is 
a bug!"
 #~ msgstr "Η προσωρινή μνήμη ήταν πολύ μικρή για να ληφθεί όλη η απάντηση από 
το IMAP. Αυτό είναι bug!"
+
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] l10n: Updated Greek (el) translation to 100%

2011-01-07 Thread Transifex
Updating branch refs/heads/master
 to 535b54a16dc0b8a3d46c7065ab4bfbd1e9ba94c5 (commit)
   from c45a8a6987602f4afe457f70967519e667a33e9c (commit)

commit 535b54a16dc0b8a3d46c7065ab4bfbd1e9ba94c5
Author: Spiros Georgaras 
Date:   Fri Jan 7 17:27:52 2011 +0100

l10n: Updated Greek (el) translation to 100%

New status: 71 messages complete with 0 fuzzies and 0 untranslated.

Transmitted-via: Transifex (translations.xfce.org).

 po/el.po |   44 ++--
 1 files changed, 22 insertions(+), 22 deletions(-)

diff --git a/po/el.po b/po/el.po
index 1211d5d..96f0096 100644
--- a/po/el.po
+++ b/po/el.po
@@ -2,21 +2,22 @@
 # Copyright (C) 2004-2005 Fabian Nowak.
 # This file is distributed under the same license as the xfce4-sensors-plugin 
package.
 # Stavros Giannouris , 2005.
-# 
+#
 msgid ""
 msgstr ""
 "Project-Id-Version: xfce4-sensors-plugin 0.9.0\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2010-03-25 23:30+0100\n"
-"PO-Revision-Date: 2006-10-14 19:59+0200\n"
-"Last-Translator: Stavros Giannouris \n"
+"PO-Revision-Date: 2011-01-07 18:26+0200\n"
+"Last-Translator: Spiros Georgaras \n"
 "Language-Team: Greek \n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "X-Poedit-Country: GREECE\n"
 
-#: ../panel-plugin/sensors-plugin.c:291 ../panel-plugin/sensors-plugin.c:388
+#: ../panel-plugin/sensors-plugin.c:291
+#: ../panel-plugin/sensors-plugin.c:388
 #: ../panel-plugin/sensors-plugin.c:970
 msgid "Sensors"
 msgstr "Αισθητήρες"
@@ -107,7 +108,7 @@ msgstr "Εμφάνιση _μονάδων"
 
 #: ../panel-plugin/sensors-plugin.c:1946
 msgid "Small horizontal s_pacing"
-msgstr "Μικρό οριζόντιο διάστημα"
+msgstr "Μικρό ορι_ζόντιο διάστημα"
 
 #: ../panel-plugin/sensors-plugin.c:1968
 msgid "Suppress messages"
@@ -125,7 +126,8 @@ msgstr "_Προβολή"
 msgid "_Miscellaneous"
 msgstr "_Διάφορα"
 
-#: ../panel-plugin/sensors-plugin.c:2143 ../panel-plugin/sensors-plugin.h:30
+#: ../panel-plugin/sensors-plugin.c:2143
+#: ../panel-plugin/sensors-plugin.h:30
 #: ../lib/hddtemp.c:160
 msgid "Sensors Plugin"
 msgstr "Πρόσθετο αισθητήρων"
@@ -139,12 +141,16 @@ msgstr "Μπορείτε να αλλάξετε τις ιδιότητες ενό
 #. or do only use this , if it is an lmsensors device. whatever.
 #. FIXME: compare strings, or also have hddtmep and acpi store numeric values
 #. assert correctly saved file
-#: ../lib/configuration.c:156 ../lib/configuration.c:341
-#: ../lib/configuration.c:348 ../lib/hddtemp.c:351 ../lib/hddtemp.c:397
+#: ../lib/configuration.c:156
+#: ../lib/configuration.c:341
+#: ../lib/configuration.c:348
+#: ../lib/hddtemp.c:351
+#: ../lib/hddtemp.c:397
 msgid "Hard disks"
 msgstr "Σκληροί δίσκοι"
 
-#: ../lib/acpi.c:521 ../lib/acpi.c:529
+#: ../lib/acpi.c:521
+#: ../lib/acpi.c:529
 msgid "ACPI"
 msgstr "ACPI"
 
@@ -187,7 +193,8 @@ msgstr ""
 "%s\n"
 "επιστρέφοντας την τιμή %d.\n"
 
-#: ../lib/hddtemp.c:542 ../lib/hddtemp.c:572
+#: ../lib/hddtemp.c:542
+#: ../lib/hddtemp.c:572
 msgid "Suppress this message in future"
 msgstr "Να μην εμφανιστεί ξανά αυτό το μήνυμα στο μέλλον"
 
@@ -205,7 +212,8 @@ msgstr ""
 #. 32) );
 #. } else { // Celsius
 #. Celsius
-#: ../lib/hddtemp.c:638 ../lib/sensors-interface-common.c:144
+#: ../lib/hddtemp.c:638
+#: ../lib/sensors-interface-common.c:144
 #, c-format
 msgid "%.1f °C"
 msgstr "%.1f °C"
@@ -214,7 +222,8 @@ msgstr "%.1f °C"
 msgid "LM Sensors"
 msgstr "LM Sensors"
 
-#: ../lib/lmsensors.c:369 ../lib/lmsensors.c:416
+#: ../lib/lmsensors.c:369
+#: ../lib/lmsensors.c:416
 #, c-format
 msgid "Error: Could not connect to sensors!"
 msgstr "Σφάλμα: Δεν ήταν δυνατή η σύνδεση με τους αισθητήρες!"
@@ -400,22 +409,16 @@ msgstr "Πρόσθετο αισθητήρων"
 
 #~ msgid "g_raphical"
 #~ msgstr "γραφικό"
-
 #~ msgid "Show _labels in graphical UI"
 #~ msgstr "Εμφάνιση ετικετών σε γραφικό UI"
-
 #~ msgid "Xfce 4 Sensors Plugin"
 #~ msgstr "Πρόσθετο αισθητήρων"
-
 #~ msgid "Xfce 4 Sensors Viewer"
 #~ msgstr "Πρόσθετο αισθητήρων"
-
 #~ msgid "Edit Properties"
 #~ msgstr "Ιδιότητες"
-
 #~ msgid "View sensor values"
 #~ msgstr "Εμφάνιση τιμών αισθητήρων."
-
 #~ msgid ""
 #~ "Xfce Hardware Sensors Plugin: \n"
 #~ "Seems like there was a problem reading a sensor feature value. \n"
@@ -425,15 +428,12 @@ msgstr "Πρόσθετο αισθητήρων"
 #~ "Xfce Hardware Sensors Plugin: \n"
 #~ "Από οτι φαίνεται υπήρξε πρόβλημα κατά την ανάγνωση κάποιου αισθητήρα. \n"
 #~ "Δεν είναι εγγυημένη η κανονική συνέχεια.\n"
-
 #~ msgid "Sensors\n"
 #~ msgstr "Αισθητήρες 
\n"
-
 #~ msgid "Sensors"
 #~ msgstr "Αισθητήρες"
-
 #~ msgid "Sensors"
 #~ msgstr "Αισθητήρες"
-
 #~ msgid "View"
 #~ msgstr "Προβολή"
+
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] l10n: update greek translation

2011-01-07 Thread Transifex
Updating branch refs/heads/master
 to 3c3d0413b3da7a79cb4c4038f57e11ba84851fb3 (commit)
   from af74a0e9426510706dcda71bb927c95c08813277 (commit)

commit 3c3d0413b3da7a79cb4c4038f57e11ba84851fb3
Author: forfolias 
Date:   Fri Jan 7 17:24:47 2011 +0100

l10n: update greek translation

New status: 80 messages complete with 0 fuzzies and 0 untranslated.

Transmitted-via: Transifex (translations.xfce.org).

 po-doc/el.po |  160 +-
 1 files changed, 80 insertions(+), 80 deletions(-)

diff --git a/po-doc/el.po b/po-doc/el.po
index 3e38626..726a950 100644
--- a/po-doc/el.po
+++ b/po-doc/el.po
@@ -1,6 +1,6 @@
 msgid ""
 msgstr ""
-"Project-Id-Version: xfce4-screenshooter.\n"
+"Project-Id-Version: xfce4-screenshooter\n"
 "POT-Creation-Date: 2009-11-15 00:21+0100\n"
 "PO-Revision-Date: \n"
 "Last-Translator: George Vasilakos \n"
@@ -16,158 +16,158 @@ msgstr ""
 #. It doesn't matter what you translate it to: it's not used at all.
 #: ../docs/manual/C/xfce4-screenshooter.xml.in:97(None)
 msgid "@@image: 'images/xfce4-screenshooter-dialog1.png'; 
md5=ceb772964fa6ca07e5a09b9b9962ed18"
-msgstr ""
+msgstr "@@image: 'images/xfce4-screenshooter-dialog1.png'; 
md5=ceb772964fa6ca07e5a09b9b9962ed18"
 
 #. When image changes, this message will be marked fuzzy or untranslated for 
you.
 #. It doesn't matter what you translate it to: it's not used at all.
 #: ../docs/manual/C/xfce4-screenshooter.xml.in:169(None)
 msgid "@@image: 'images/xfce4-screenshooter-dialog2.png'; 
md5=fa48885f54ca6ab5dfc980fb216025e0"
-msgstr ""
+msgstr "@@image: 'images/xfce4-screenshooter-dialog2.png'; 
md5=fa48885f54ca6ab5dfc980fb216025e0"
 
 #. When image changes, this message will be marked fuzzy or untranslated for 
you.
 #. It doesn't matter what you translate it to: it's not used at all.
 #: ../docs/manual/C/xfce4-screenshooter.xml.in:260(None)
 msgid "@@image: 'images/xfce4-screenshooter-zimagez-login-dialog.png'; 
md5=c8102c88e978eb7ef63994f2648f5ae6"
-msgstr ""
+msgstr "@@image: 'images/xfce4-screenshooter-zimagez-login-dialog.png'; 
md5=c8102c88e978eb7ef63994f2648f5ae6"
 
 #. When image changes, this message will be marked fuzzy or untranslated for 
you.
 #. It doesn't matter what you translate it to: it's not used at all.
 #: ../docs/manual/C/xfce4-screenshooter.xml.in:289(None)
 msgid "@@image: 'images/xfce4-screenshooter-zimagez-result-dialog.png'; 
md5=468def960a376d5a856f2fcb3b35daf1"
-msgstr ""
+msgstr "@@image: 'images/xfce4-screenshooter-zimagez-result-dialog.png'; 
md5=468def960a376d5a856f2fcb3b35daf1"
 
 #: ../docs/manual/C/xfce4-screenshooter.xml.in:12(title)
 msgid "Xfce4 Screenshooter"
-msgstr ""
+msgstr "Στιγμιότυπο οθόνης για το Xfce4"
 
 #: ../docs/manual/C/xfce4-screenshooter.xml.in:17(year)
 msgid "2008"
-msgstr ""
+msgstr "2008"
 
 #: ../docs/manual/C/xfce4-screenshooter.xml.in:18(year)
 #: ../docs/manual/C/xfce4-screenshooter.xml.in:23(year)
 msgid "2009"
-msgstr ""
+msgstr "2009"
 
 #: ../docs/manual/C/xfce4-screenshooter.xml.in:19(holder)
 msgid "Jérôme Guelfucci"
-msgstr ""
+msgstr "Jérôme Guelfucci"
 
 #: ../docs/manual/C/xfce4-screenshooter.xml.in:24(holder)
 msgid "Sam Swift"
-msgstr ""
+msgstr "Sam Swift"
 
 #: ../docs/manual/C/xfce4-screenshooter.xml.in:28(para)
 msgid "Permission is granted to copy, distribute and/or modify this document 
under the terms of the GNU Free Documentation License, Version 1.1 or any later 
version published by the Free Software Foundation; with no Invariant Sections, 
with no Front-Cover Texts, and with no Back-Cover Texts. The complete license 
text is available from the http://www.gnu.org/\";>Free Software Foundation."
-msgstr ""
+msgstr "Δίνεται η άδεια για αντιγραφή, διανομή και/ή αλλαγή το εγγράφου 
σύμφωνα με τους όρους της GNU Free Documentation License, Έκδοσης 1.1 η 
οποιασδήποτε επόμενης έκδοσης που εκδόθηκε από το Ίδρυμα Ελεύθερου Λογισμικού: 
χωρίς αμετάβλητα τμήματα, χωρίς το κείμενο εξώφυλλου, και χωρίς το κείμενο 
οπισθόφυλλου. Το πλήρες κείμενο της άδειας χρήσης είναι διαθέσιμο στο http://www.gnu.org/\";>Free Software Foundation."
 
 #: ../docs/manual/C/xfce4-screenshooter.xml.in:40(firstname)
 msgid "Jérôme"
-msgstr ""
+msgstr "Jérôme"
 
 #: ../docs/manual/C/xfce4-screenshooter.xml.in:41(surname)
 msgid "Guelfucci"
-msgstr ""
+msgstr "Guelfucci"
 
 #: ../docs/manual/C/xfce4-screenshooter.xml.in:43(email)
 msgid "jero...@xfce.org"
-msgstr ""
+msgstr "jero...@xfce.org"
 
 #: ../docs/manual/C/xfce4-screenshooter.xml.in:47(firstname)
 msgid "Sam"
-msgstr ""
+msgstr "Sam"
 
 #: ../docs/manual/C/xfce4-screenshooter.xml.in:48(surname)
 msgid "Swift"
-msgstr ""
+msgstr "Swift"
 
 #: ../docs/manual/C/xfce4-screenshooter.xml.in:50(email)
 msgid "renm...@gmail.com"
-msgstr ""
+msgstr "renm...@gmail.com"
 
 #: ../docs/manual/C/xfce4-screenshooter.xml.in:55(releaseinfo)
 msgid "This manual describes version @PACKAGE_VERSION@ of Xfce4 Screenshooter."
-msgstr ""
+msgstr "Αυτό το εγχειρίδιο περιγράφε

[Xfce4-commits] l10n: Updated Greek (el) translation to 100%

2011-01-07 Thread Transifex
Updating branch refs/heads/master
 to dbbb994a7bea7968efd2ce75854eaa93c7d147af (commit)
   from cf1450adf88d3e7387c740e3e78967810d7c2dbf (commit)

commit dbbb994a7bea7968efd2ce75854eaa93c7d147af
Author: Spiros Georgaras 
Date:   Fri Jan 7 17:24:34 2011 +0100

l10n: Updated Greek (el) translation to 100%

New status: 44 messages complete with 0 fuzzies and 0 untranslated.

Transmitted-via: Transifex (translations.xfce.org).

 po/el.po |   16 +---
 1 files changed, 9 insertions(+), 7 deletions(-)

diff --git a/po/el.po b/po/el.po
index 14d915c..83e1486 100644
--- a/po/el.po
+++ b/po/el.po
@@ -3,7 +3,7 @@
 # Copyright (C) 2004-2005 Jean-Baptiste Dulong.
 # Copytight (C) 2005-2007 Fabian Nowak.
 # This file is distributed under the same license as the xfce4-mount-plugin 
package.
-# 
+#
 # Stavros Giannouris , 2005-2006.
 # Evaggelos Balaskas , 2008.
 msgid ""
@@ -11,8 +11,8 @@ msgstr ""
 "Project-Id-Version: el\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2011-01-04 11:05+\n"
-"PO-Revision-Date: 2008-05-25 19:27+0300\n"
-"Last-Translator: Evaggelos Balaskas \n"
+"PO-Revision-Date: 2011-01-07 18:23+0200\n"
+"Last-Translator: Spiros Georgaras \n"
 "Language-Team: Greek \n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -86,7 +86,8 @@ msgstr "σημείο προσάρτησης: %s\n"
 msgid "not mounted\n"
 msgstr "μη προσαρτημένο\n"
 
-#: ../panel-plugin/devices.c:260 ../panel-plugin/devices.c:309
+#: ../panel-plugin/devices.c:260
+#: ../panel-plugin/devices.c:309
 msgid "Mount Plugin: Error executing command."
 msgstr "Προέκυψε ένα σφάλμα κατά την εκτέλεση επιλεγμένης εντολής του mount 
plugin.."
 
@@ -202,7 +203,7 @@ msgstr "Ενεργοποιώντας αυτή την επιλογή εμφανί
 
 #: ../panel-plugin/mount-plugin.c:986
 msgid "Display _mount points only"
-msgstr "Εμφάνιση των προσαρτημένων σημείων μόνο"
+msgstr "Ε_μφάνιση των προσαρτημένων σημείων μόνο"
 
 #: ../panel-plugin/mount-plugin.c:1001
 msgid ""
@@ -216,11 +217,11 @@ msgstr ""
 
 #: ../panel-plugin/mount-plugin.c:1011
 msgid "E_xclude specified file systems"
-msgstr "Εξαιρούνται τα προσδιορίσμενα αρχεία συστήματος"
+msgstr "Ε_ξαιρούνται τα προσδιορίσμενα αρχεία συστήματος"
 
 #: ../panel-plugin/mount-plugin.c:1026
 msgid "_File systems"
-msgstr "Συστημάτων αρχείων"
+msgstr "Συστημάτων αρ_χείων"
 
 #: ../panel-plugin/xfce4-mount-plugin.desktop.in.in.h:1
 msgid "Mount devices"
@@ -232,3 +233,4 @@ msgstr "Εμφανίζει όλες τις προσαρτώμενες συσκε
 
 #~ msgid "Edit Properties"
 #~ msgstr "Επεξεργασία ιδιοτήτων"
+
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] l10n: Updated Greek (el) translation to 99%

2011-01-07 Thread Transifex
Updating branch refs/heads/master
 to e9fb3ae7b88e7843de9a556945f465b1100b5b4e (commit)
   from a300760755d86b4b2f8dc557d8a3edccde11c24e (commit)

commit e9fb3ae7b88e7843de9a556945f465b1100b5b4e
Author: Spiros Georgaras 
Date:   Fri Jan 7 17:13:26 2011 +0100

l10n: Updated Greek (el) translation to 99%

New status: 198 messages complete with 2 fuzzies and 0 untranslated.

Transmitted-via: Transifex (translations.xfce.org).

 po/el.po |  265 +++---
 1 files changed, 134 insertions(+), 131 deletions(-)

diff --git a/po/el.po b/po/el.po
index 3eb1221..d0cc352 100644
--- a/po/el.po
+++ b/po/el.po
@@ -3,14 +3,14 @@
 # This file is distributed under the same license as the xfdesktop package.
 # Stavros Giannouris , 2005-2006, 2008.
 # Stathis Kamperis , 2006.
-# 
+#
 msgid ""
 msgstr ""
 "Project-Id-Version: xfdesktop git\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2011-01-06 11:11+\n"
-"PO-Revision-Date: 2010-11-05 16:52+0200\n"
-"Last-Translator: Evaggelos Balaskas \n"
+"PO-Revision-Date: 2011-01-07 17:54+0200\n"
+"Last-Translator: Spiros Georgaras \n"
 "Language-Team: Greek \n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -20,7 +20,8 @@ msgstr ""
 "Plural-Forms: nplurals=2; plural=(n != 1);\\n\\n\\nX-Poedit-Language: Greek\n"
 "X-Poedit-SourceCharset: utf-8\n"
 
-#: ../common/xfdesktop-common.c:96 ../common/xfdesktop-common.c:200
+#: ../common/xfdesktop-common.c:96
+#: ../common/xfdesktop-common.c:200
 #, c-format
 msgid "Backdrop list file is not valid"
 msgstr "Το αρχείο δεν είναι έγκυρο"
@@ -35,7 +36,8 @@ msgstr ""
 "%s\n"
 "Μέγεθος %dx%d"
 
-#: ../settings/main.c:272 ../src/xfdesktop-special-file-icon.c:247
+#: ../settings/main.c:272
+#: ../src/xfdesktop-special-file-icon.c:247
 #: ../src/xfdesktop-special-file-icon.c:413
 msgid "Home"
 msgstr "Αρχικός κατάλογος"
@@ -57,7 +59,8 @@ msgstr "Αφαιρούμενα μέσα"
 msgid "Cannot create backdrop list \"%s\""
 msgstr "Δεν ήταν δυνατή η δημιουργία του αρχείου λίστας \"%s\""
 
-#: ../settings/main.c:462 ../settings/main.c:779
+#: ../settings/main.c:462
+#: ../settings/main.c:779
 msgid "Backdrop List Error"
 msgstr "Σφάλμα στη λίστα παρασκηνίων"
 
@@ -67,11 +70,8 @@ msgstr "Δημιουργία/φόρτωση λίστας παρασκηνίων"
 
 #: ../settings/main.c:511
 #, c-format
-msgid ""
-"File \"%s\" is not a valid backdrop list file.  Do you wish to overwrite it?"
-msgstr ""
-"Το αρχείο \"%s\" δεν είναι έγκυρο αρχείο λίστας εικόνων φόντου. Θέλετε "
-"να το αντικαταστήσετε;"
+msgid "File \"%s\" is not a valid backdrop list file.  Do you wish to 
overwrite it?"
+msgstr "Το αρχείο \"%s\" δεν είναι έγκυρο αρχείο λίστας εικόνων φόντου. Θέλετε 
να το αντικαταστήσετε;"
 
 #: ../settings/main.c:516
 msgid "Invalid List File"
@@ -200,7 +200,7 @@ msgstr "Αυτόματη επιλογή τυχαίας εικόνας από λ
 
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:8
 msgid "B_rightness:"
-msgstr "Φωτεινότητα:"
+msgstr "_Φωτεινότητα:"
 
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:9
 #: ../settings/xfdesktop-settings-ui.glade.h:8
@@ -238,7 +238,7 @@ msgstr "Αφαίρεση των επιλεγμένων εικόνων από τ
 
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:17
 msgid "Sa_turation:"
-msgstr "Κορεσμός:"
+msgstr "Κο_ρεσμός:"
 
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:18
 #: ../settings/xfdesktop-settings-ui.glade.h:23
@@ -267,15 +267,12 @@ msgid "Specifies the \"right\" or \"bottom\" color of the 
gradient"
 msgstr "Ορίζει το χρώμα \"δεξιά\" ή \"κάτω\" της διαβάθμισης"
 
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:24
-msgid ""
-"Specifies the solid color, or the \"left\" or \"top\" color of the gradient"
-msgstr ""
-"Ορίζει το συμπαγές χρώμα, ή το \"αριστερό\" ή \"πάνω\" χρώμα της διαβάθμισης"
+msgid "Specifies the solid color, or the \"left\" or \"top\" color of the 
gradient"
+msgstr "Ορίζει το συμπαγές χρώμα, ή το \"αριστερό\" ή \"πάνω\" χρώμα της 
διαβάθμισης"
 
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:25
 msgid "Specify how the image will be resized to fit the screen"
-msgstr ""
-"Καθορίστε πώς θα αλλάξει το μέγεθός της εικόνας για να χωρέσει στην οθόνη"
+msgstr "Καθορίστε πώς θα αλλάξει το μέγεθός της εικόνας για να χωρέσει στην 
οθόνη"
 
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:26
 msgid "Specify the style of the color drawn behind the backdrop image"
@@ -316,7 +313,7 @@ msgstr "_Κανένα"
 
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:34
 msgid "_Single image"
-msgstr "Μια εικόνα"
+msgstr "_Μια εικόνα"
 
 #: ../settings/xfdesktop-settings-ui.glade.h:1
 msgid "Appearance"
@@ -340,13 +337,14 @@ msgstr "Alt"
 
 #: ../settings/xfdesktop-settings-ui.glade.h:7
 msgid "B_utton:"
-msgstr "Κουμπί:"
+msgstr "_Κουμπί:"
 
 #: ../settings/xfdesktop-settings-ui.glade.h:9
 msgid "Control"
 msgstr "Control"
 
-#: ../settings/xfdesktop-settings-ui.glade.h:10 ../src/xfce-desktop

[Xfce4-commits] l10n: Updated Greek (el) translation to 100%

2011-01-07 Thread Transifex
Updating branch refs/heads/master
 to 23d0214e8c24bed8134664ed9c829e3c86ad65b4 (commit)
   from 96187ab3a96caa589f741bee3bc7499bf0a3a128 (commit)

commit 23d0214e8c24bed8134664ed9c829e3c86ad65b4
Author: Spiros Georgaras 
Date:   Fri Jan 7 17:04:47 2011 +0100

l10n: Updated Greek (el) translation to 100%

New status: 230 messages complete with 0 fuzzies and 0 untranslated.

Transmitted-via: Transifex (translations.xfce.org).

 po/el.po |7 ---
 1 files changed, 4 insertions(+), 3 deletions(-)

diff --git a/po/el.po b/po/el.po
index 45de54c..b960d6c 100644
--- a/po/el.po
+++ b/po/el.po
@@ -1,7 +1,7 @@
 # Greek translation of xfwm4.
 # Copyright (C) 2002-2006 The Xfce development team.
 # This file is distributed under the same license as the xfwm4 package.
-# 
+#
 # Stavros Giannouris , 2005.
 # Stathis Kamperis , 2006.
 # Evaggelos Balaskas , 2009.
@@ -10,8 +10,8 @@ msgstr ""
 "Project-Id-Version: xfwm4 git version\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2011-01-06 17:11+\n"
-"PO-Revision-Date: 2010-05-04 23:40+0200\n"
-"Last-Translator: Evaggelos Balaskas \n"
+"PO-Revision-Date: 2011-01-07 17:51+0200\n"
+"Last-Translator: Spiros Georgaras \n"
 "Language-Team: el \n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -1004,3 +1004,4 @@ msgstr "Σφάλμα ανάγνωσης δεδομένων από την διε
 #, c-format
 msgid "Cannot spawn helper-dialog: %s\n"
 msgstr "Δεν είναι δυνατή η έναρξη του διαλόγου: %s\n"
+
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] l10n: Updated Greek (el) translation to 100%

2011-01-07 Thread Transifex
Updating branch refs/heads/master
 to 6c315a89f9574f1a63996696380218f722b060ef (commit)
   from ac209563b12f9a3527b1b5a491654657f329a7f5 (commit)

commit 6c315a89f9574f1a63996696380218f722b060ef
Author: Spiros Georgaras 
Date:   Fri Jan 7 17:03:56 2011 +0100

l10n: Updated Greek (el) translation to 100%

New status: 266 messages complete with 0 fuzzies and 0 untranslated.

Transmitted-via: Transifex (translations.xfce.org).

 po/el.po |   54 ++
 1 files changed, 30 insertions(+), 24 deletions(-)

diff --git a/po/el.po b/po/el.po
index 0286324..84b6fbd 100644
--- a/po/el.po
+++ b/po/el.po
@@ -1,14 +1,14 @@
 # Copyright (C) 2008 THE PACKAGE'S COPYRIGHT HOLDER
 # This file is distributed under the same license as the PACKAGE package.
-# 
+#
 # Evaggelos Balaskas , 2008, 2009.
 msgid ""
 msgstr ""
 "Project-Id-Version: xfce4-settings git\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2011-01-03 17:10+\n"
-"PO-Revision-Date: 2010-01-29 21:00+0200\n"
-"Last-Translator: Evaggelos Balaskas \n"
+"PO-Revision-Date: 2011-01-07 17:48+0200\n"
+"Last-Translator: Spiros Georgaras \n"
 "Language-Team: Greek \n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -168,23 +168,28 @@ msgstr "εικονοστοιχεία/δεπτ"
 #: ../dialogs/accessibility-settings/main.c:44
 #: ../dialogs/appearance-settings/main.c:87
 #: ../dialogs/display-settings/main.c:103
-#: ../dialogs/keyboard-settings/main.c:39 ../dialogs/mouse-settings/main.c:100
+#: ../dialogs/keyboard-settings/main.c:39
+#: ../dialogs/mouse-settings/main.c:100
 msgid "Settings manager socket"
 msgstr "Ρυθμίσεις διαχειριστή υποδoχής"
 
 #: ../dialogs/accessibility-settings/main.c:44
 #: ../dialogs/appearance-settings/main.c:87
 #: ../dialogs/display-settings/main.c:103
-#: ../dialogs/keyboard-settings/main.c:39 ../dialogs/mouse-settings/main.c:100
+#: ../dialogs/keyboard-settings/main.c:39
+#: ../dialogs/mouse-settings/main.c:100
 msgid "SOCKET ID"
 msgstr "ID ΥΠΟΔΟΧΗΣ"
 
 #: ../dialogs/accessibility-settings/main.c:45
 #: ../dialogs/appearance-settings/main.c:88
 #: ../dialogs/display-settings/main.c:104
-#: ../dialogs/keyboard-settings/main.c:40 ../dialogs/mouse-settings/main.c:101
-#: ../xfce4-settings-editor/main.c:43 ../xfce4-settings-helper/main.c:74
-#: ../xfce4-settings-manager/main.c:40 ../xfsettingsd/main.c:52
+#: ../dialogs/keyboard-settings/main.c:40
+#: ../dialogs/mouse-settings/main.c:101
+#: ../xfce4-settings-editor/main.c:43
+#: ../xfce4-settings-helper/main.c:74
+#: ../xfce4-settings-manager/main.c:40
+#: ../xfsettingsd/main.c:52
 msgid "Version information"
 msgstr "Πληροφορίες έκδοσης"
 
@@ -192,8 +197,10 @@ msgstr "Πληροφορίες έκδοσης"
 #: ../dialogs/appearance-settings/main.c:827
 #: ../dialogs/display-settings/main.c:1046
 #: ../dialogs/keyboard-settings/main.c:64
-#: ../dialogs/mouse-settings/main.c:1188 ../xfce4-settings-editor/main.c:63
-#: ../xfce4-settings-helper/main.c:160 ../xfce4-settings-manager/main.c:58
+#: ../dialogs/mouse-settings/main.c:1188
+#: ../xfce4-settings-editor/main.c:63
+#: ../xfce4-settings-helper/main.c:160
+#: ../xfce4-settings-manager/main.c:58
 #, c-format
 msgid "Type '%s --help' for usage."
 msgstr "Πληκτρολόγησε  '%s --help'  για χρήση."
@@ -202,8 +209,10 @@ msgstr "Πληκτρολόγησε  '%s --help'  για χρήση."
 #: ../dialogs/appearance-settings/main.c:846
 #: ../dialogs/display-settings/main.c:1065
 #: ../dialogs/keyboard-settings/main.c:80
-#: ../dialogs/mouse-settings/main.c:1207 ../xfce4-settings-editor/main.c:82
-#: ../xfce4-settings-helper/main.c:176 ../xfce4-settings-manager/main.c:71
+#: ../dialogs/mouse-settings/main.c:1207
+#: ../xfce4-settings-editor/main.c:82
+#: ../xfce4-settings-helper/main.c:176
+#: ../xfce4-settings-manager/main.c:71
 msgid "The Xfce development team. All rights reserved."
 msgstr "H ομάδα ανάπτυξης Xfce. Όλα τα δικαιώματα είναι δεσμευμένα."
 
@@ -211,8 +220,10 @@ msgstr "H ομάδα ανάπτυξης Xfce. Όλα τα δικαιώματα 
 #: ../dialogs/appearance-settings/main.c:847
 #: ../dialogs/display-settings/main.c:1066
 #: ../dialogs/keyboard-settings/main.c:81
-#: ../dialogs/mouse-settings/main.c:1208 ../xfce4-settings-editor/main.c:83
-#: ../xfce4-settings-helper/main.c:177 ../xfce4-settings-manager/main.c:72
+#: ../dialogs/mouse-settings/main.c:1208
+#: ../xfce4-settings-editor/main.c:83
+#: ../xfce4-settings-helper/main.c:177
+#: ../xfce4-settings-manager/main.c:72
 #, c-format
 msgid "Please report bugs to <%s>."
 msgstr "Παρακαλώ αναφέρετε τα σφάλματα στο <%s>."
@@ -792,7 +803,8 @@ msgid "DEVICE NAME"
 msgstr "ΌΝΟΜΑ ΣΥΣΚΕΥΗΣ"
 
 #. sort the names but keep Default on top
-#: ../dialogs/mouse-settings/main.c:355 ../dialogs/mouse-settings/main.c:357
+#: ../dialogs/mouse-settings/main.c:355
+#: ../dialogs/mouse-settings/main.c:357
 #: ../dialogs/mouse-settings/main.c:417
 msgid "Default"
 msgstr "Προεπιλογή"
@@ -1102,7 +1114,8 @@ msgstr "Τα πλήκτρα αναπήδησης είναι απενεργοπο
 msgid "Bounce keys"
 msgstr 

[Xfce4-commits] l10n: Updated Greek (el) translation to 100%

2011-01-07 Thread Transifex
Updating branch refs/heads/master
 to 10e2ab185a5b4eca35ba4f8b650ecfdb5324ba7a (commit)
   from 6bfcb541b62b7a51bfc6775be909d477efdd15ca (commit)

commit 10e2ab185a5b4eca35ba4f8b650ecfdb5324ba7a
Author: Spiros Georgaras 
Date:   Fri Jan 7 17:02:51 2011 +0100

l10n: Updated Greek (el) translation to 100%

New status: 344 messages complete with 0 fuzzies and 0 untranslated.

Transmitted-via: Transifex (translations.xfce.org).

 po/el.po |   56 ++--
 1 files changed, 30 insertions(+), 26 deletions(-)

diff --git a/po/el.po b/po/el.po
index ed48d90..575dee2 100644
--- a/po/el.po
+++ b/po/el.po
@@ -5,14 +5,14 @@
 # Evaggelos Balaskas , 2008, 2009, 2010.
 # Spiros Georgaras , 2010.
 # Stathis Kamperis , 2006.
-# 
+#
 msgid ""
 msgstr ""
 "Project-Id-Version: xfce4-panel git version\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2011-01-06 11:09+\n"
-"PO-Revision-Date: 2010-06-17 21:50+0200\n"
-"Last-Translator: Stavros Giannouris \n"
+"PO-Revision-Date: 2011-01-07 17:47+0200\n"
+"Last-Translator: Spiros Georgaras \n"
 "Language-Team: Greek \n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -36,7 +36,8 @@ msgid "Customize the panel"
 msgstr "Προσαρμογή του ταμπλό"
 
 #: ../panel-preferences.desktop.in.h:2
-#: ../panel/panel-preferences-dialog.glade.h:24 ../panel/panel-window.c:
+#: ../panel/panel-preferences-dialog.glade.h:24
+#: ../panel/panel-window.c:
 #: ../migrate/main.c:84
 msgid "Panel"
 msgstr "Ταμπλό"
@@ -80,17 +81,20 @@ msgid "Pane_l"
 msgstr "Ταμπ_λό"
 
 #. add new items
-#: ../libxfce4panel/xfce-panel-plugin.c:1096 ../panel/panel-window.c:2234
+#: ../libxfce4panel/xfce-panel-plugin.c:1096
+#: ../panel/panel-window.c:2234
 msgid "Add _New Items..."
 msgstr "Προσθήκη _νέων αντικειμένων..."
 
 #. customize panel
-#: ../libxfce4panel/xfce-panel-plugin.c:1107 ../panel/panel-window.c:2245
+#: ../libxfce4panel/xfce-panel-plugin.c:1107
+#: ../panel/panel-window.c:2245
 msgid "Panel Pr_eferences..."
 msgstr "Π_ροτιμήσεις ταμπλό..."
 
 #. logout item
-#: ../libxfce4panel/xfce-panel-plugin.c:1124 ../panel/panel-window.c:2261
+#: ../libxfce4panel/xfce-panel-plugin.c:1124
+#: ../panel/panel-window.c:2261
 msgid "Log _Out"
 msgstr "Απ_οσύνδεση"
 
@@ -98,7 +102,8 @@ msgstr "Απ_οσύνδεση"
 msgid "Show the 'Panel Preferences' dialog"
 msgstr "Εμφάνιση του διαλόγου 'Ρυθμίσεις ταμπλό´"
 
-#: ../panel/main.c:78 ../panel/main.c:79
+#: ../panel/main.c:78
+#: ../panel/main.c:79
 msgid "PANEL-NUMBER"
 msgstr "ΑΡΙΘΜΟΣ-ΤΑΜΠΛΟ"
 
@@ -193,7 +198,8 @@ msgstr "Αποτυχία αποστολής μηνύματος D-BUS"
 msgid "Do you want to start the panel? If you do, make sure you save the 
session on logout, so the panel is automatically started the next time you 
login."
 msgstr "Θέλετε να εκκινηθεί το ταμπλό; Αν το εκκινήσετε, αποθηκεύστε τη 
συνεδρία κατά την αποσύνδεσή σας, ώστε το ταμπλό να εκκινηθεί αυτόματα την 
επόμενη φορά που θα συνδεθείτε."
 
-#: ../panel/main.c:367 ../panel/main.c:381
+#: ../panel/main.c:367
+#: ../panel/main.c:381
 #, c-format
 msgid "No running instance of %s was found"
 msgstr "Δεν βρέθηκε να τρέχει κάποια διεργασία του %s"
@@ -202,15 +208,18 @@ msgstr "Δεν βρέθηκε να τρέχει κάποια διεργασία
 msgid "Failed to launch the migration application"
 msgstr "Απέτυχε η εκτέλεση της εφαρμογής μεταφοράς ρυθμίσεων"
 
-#: ../panel/panel-application.c:1446 ../plugins/actions/actions.c:413
+#: ../panel/panel-application.c:1446
+#: ../plugins/actions/actions.c:413
 msgid "You have started X without session manager. Clicking Quit will close 
the X server."
 msgstr "Ξεκινήσατε το Xfce χωρίς διαχειριστή συνεδρίας. Επιλέγοντας έξοδος θα 
κλείσει ο X server."
 
-#: ../panel/panel-application.c:1447 ../plugins/actions/actions.c:414
+#: ../panel/panel-application.c:1447
+#: ../plugins/actions/actions.c:414
 msgid "Are you sure you want to quit the panel?"
 msgstr "Είστε σίγουροι ότι θέλετε να κλείσετε το ταμπλό;"
 
-#: ../panel/panel-application.c:1455 ../plugins/actions/actions.c:422
+#: ../panel/panel-application.c:1455
+#: ../plugins/actions/actions.c:422
 #, c-format
 msgid "Failed to execute command \"%s\""
 msgstr "Αδυναμία εκτέλεσης της εντολής \"%s\""
@@ -237,7 +246,8 @@ msgstr ""
 "Σπύρος Γεωργαράς "
 
 #. setup the dialog
-#: ../panel/panel-dialogs.c:122 ../plugins/launcher/launcher-dialog.glade.h:1
+#: ../panel/panel-dialogs.c:122
+#: ../plugins/launcher/launcher-dialog.glade.h:1
 msgid "Add New Item"
 msgstr "Προσθήκη νέου αντικειμένου"
 
@@ -246,7 +256,8 @@ msgid "Please choose a panel for the new plugin:"
 msgstr "Παρακαλώ επιλέξτε ένα ταμπλό για το νέο άρθρωμα:"
 
 #. I18N: panel combo box in the preferences dialog
-#: ../panel/panel-dialogs.c:147 ../panel/panel-preferences-dialog.c:767
+#: ../panel/panel-dialogs.c:147
+#: ../panel/panel-preferences-dialog.c:767
 #, c-format
 msgid "Panel %d"
 msgstr "Ταμπλό %d"
@@ -1258,7 +1269,8 @@ msgstr "_Θέση κουμπιού βέλους:"
 msgid "Program launcher with optional m

[Xfce4-commits] l10n: Updated Greek (el) translation to 100%

2011-01-07 Thread Transifex
Updating branch refs/heads/master
 to eadf2853749bc22b8aaf72fc6862a008202116c7 (commit)
   from 0d0c4122753d15e34735132c665dd9a9235cef67 (commit)

commit eadf2853749bc22b8aaf72fc6862a008202116c7
Author: Spiros Georgaras 
Date:   Fri Jan 7 17:00:16 2011 +0100

l10n: Updated Greek (el) translation to 100%

New status: 274 messages complete with 0 fuzzies and 0 untranslated.

Transmitted-via: Transifex (translations.xfce.org).

 po/el.po |6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/po/el.po b/po/el.po
index c67401f..fb0bd50 100644
--- a/po/el.po
+++ b/po/el.po
@@ -9,8 +9,8 @@ msgstr ""
 "Project-Id-Version: exo git\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2010-11-07 05:00+\n"
-"PO-Revision-Date: 2010-11-07 11:43+0200\n"
-"Last-Translator: Evaggelos Balaskas \n"
+"PO-Revision-Date: 2011-01-07 17:44+0200\n"
+"Last-Translator: Spiros Georgaras \n"
 "Language-Team: Greek \n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -646,7 +646,7 @@ msgstr "_Διεύθυνση:"
 #. TRANSLATORS: Label in "Create Launcher" dialog, make sure to avoid mnemonic 
conflicts
 #: ../exo-desktop-item-edit/exo-die-editor.c:360
 msgid "Working _Directory:"
-msgstr "Κατάλο_γος εργασίας"
+msgstr "Κατάλο_γος εργασίας:"
 
 #. TRANSLATORS: Label in "Create Launcher"/"Create Link" dialog, make sure to 
avoid mnemonic conflicts
 #: ../exo-desktop-item-edit/exo-die-editor.c:389
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] l10n: Updated Greek (el) translation to 100%

2011-01-07 Thread Transifex
Updating branch refs/heads/master
 to 96187ab3a96caa589f741bee3bc7499bf0a3a128 (commit)
   from 52482dd62f235f9c2d2485d202d527fc33e1ec8a (commit)

commit 96187ab3a96caa589f741bee3bc7499bf0a3a128
Author: Spiros Georgaras 
Date:   Fri Jan 7 16:34:34 2011 +0100

l10n: Updated Greek (el) translation to 100%

New status: 230 messages complete with 0 fuzzies and 0 untranslated.

Transmitted-via: Transifex (translations.xfce.org).

 po/el.po |   16 
 1 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/po/el.po b/po/el.po
index 64acc48..45de54c 100644
--- a/po/el.po
+++ b/po/el.po
@@ -204,7 +204,7 @@ msgstr "Αυτόματη αν_ύψωση παραθύρων όταν εστια
 
 #: ../settings-dialogs/xfwm4-dialog.glade.h:25
 msgid "Automatically give focus to _newly created windows"
-msgstr "Αυτόματη εστίαση νέων παραθύρων όταν δημιουργούνται"
+msgstr "Αυτόματη εστίαση _νέων παραθύρων όταν δημιουργούνται"
 
 #: ../settings-dialogs/xfwm4-dialog.glade.h:26
 msgid "Clic_k to focus"
@@ -260,7 +260,7 @@ msgstr "Μενού"
 
 #: ../settings-dialogs/xfwm4-dialog.glade.h:40
 msgid "Raise window when clicking _inside application window"
-msgstr "Ανύψωση παραθύρου επιλέγοντας εντός του παράθυρου της εφαρμογής"
+msgstr "Ανύψωση παραθύρου επ_ιλέγοντας εντός του παράθυρου της εφαρμογής"
 
 #: ../settings-dialogs/xfwm4-dialog.glade.h:41
 msgid "Shade"
@@ -670,7 +670,7 @@ msgstr "Κυκλική εναλλαγή μ_εταξύ των παραθύρων
 
 #: ../settings-dialogs/xfwm4-tweaks-dialog.glade.h:13
 msgid "Display _fullscreen overlay windows directly"
-msgstr "Να απεικονίζονται απευθείας σε πλήρη οθόνης τα επικαλυπτόμενα παράθυρα"
+msgstr "Να απεικονίζονται απευθείας σε πλήρη ο_θόνης τα επικαλυπτόμενα 
παράθυρα"
 
 #: ../settings-dialogs/xfwm4-tweaks-dialog.glade.h:14
 msgid "Do _nothing"
@@ -678,7 +678,7 @@ msgstr "Μην γίνει τ_ίποτα"
 
 #: ../settings-dialogs/xfwm4-tweaks-dialog.glade.h:16
 msgid "Hide _frame of windows when maximized"
-msgstr "Απόκρυψη περιγραμμάτων των παραθύρων όταν μεγιστοποιούνται"
+msgstr "Απόκρυψη περιγρα_μμάτων των παραθύρων όταν μεγιστοποιούνται"
 
 #: ../settings-dialogs/xfwm4-tweaks-dialog.glade.h:17
 msgid "Honor _standard ICCCM focus hint"
@@ -686,7 +686,7 @@ msgstr "Να τηρείται η πρ_ότυπη υπόδειξη εστίαση
 
 #: ../settings-dialogs/xfwm4-tweaks-dialog.glade.h:18
 msgid "Keep urgent windows _blinking repeatedly"
-msgstr "Κράτημα επείγον παραθύρων αναβοσβήνοντας τα συνέχεια"
+msgstr "Κράτημα επείγον παραθύρων ανα_βοσβήνοντας τα συνέχεια"
 
 #: ../settings-dialogs/xfwm4-tweaks-dialog.glade.h:19
 msgid "Key used to _grab and move windows:"
@@ -758,7 +758,7 @@ msgstr "Αναδίπλωση χώρων εργασίας σύμφωνα με τ
 
 #: ../settings-dialogs/xfwm4-tweaks-dialog.glade.h:37
 msgid "Wrap workspaces when the _first or the last workspace is reached"
-msgstr "Αναδίπλωση χώρων εργασίας όταν φτάσει στον πρώτο ή στον τελευταίο χώρο 
εργασίας "
+msgstr "Αναδίπλωση χώρων εργασίας όταν _φτάσει στον πρώτο ή στον τελευταίο 
χώρο εργασίας "
 
 #: ../settings-dialogs/xfwm4-tweaks-dialog.glade.h:38
 msgid "_Accessibility"
@@ -766,7 +766,7 @@ msgstr "Πρ_οσβασιμότητα"
 
 #: ../settings-dialogs/xfwm4-tweaks-dialog.glade.h:39
 msgid "_Bring window on current workspace"
-msgstr "Μεταφορά παραθύρου στο τρέχον χώρο εργασίας"
+msgstr "_Μεταφορά παραθύρου στο τρέχον χώρο εργασίας"
 
 #: ../settings-dialogs/xfwm4-tweaks-dialog.glade.h:40
 msgid "_Draw frame around selected windows while cycling"
@@ -797,7 +797,7 @@ msgid ""
 "_Remember and recall previous workspace\n"
 "when switching via keyboard shortcuts"
 msgstr ""
-"Ενθύμιση και επανάκληση του προηγούμενο χώρου εργασίας\n"
+"Ενθύμιση και επανάκληση του π_ροηγούμενο χώρου εργασίας\n"
 "κατά την εναλλαγή μέσω συντομεύσεων πληκτρολογίου"
 
 #: ../settings-dialogs/xfwm4-tweaks-dialog.glade.h:49
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] l10n: Updated Greek (el) translation to 100%

2011-01-07 Thread Transifex
Updating branch refs/heads/master
 to ac209563b12f9a3527b1b5a491654657f329a7f5 (commit)
   from e5587ba0ee21d59b82b13f945e5c3c36490e436e (commit)

commit ac209563b12f9a3527b1b5a491654657f329a7f5
Author: Spiros Georgaras 
Date:   Fri Jan 7 16:33:38 2011 +0100

l10n: Updated Greek (el) translation to 100%

New status: 266 messages complete with 0 fuzzies and 0 untranslated.

Transmitted-via: Transifex (translations.xfce.org).

 po/el.po |   74 +++---
 1 files changed, 37 insertions(+), 37 deletions(-)

diff --git a/po/el.po b/po/el.po
index ee6030c..0286324 100644
--- a/po/el.po
+++ b/po/el.po
@@ -51,7 +51,7 @@ msgstr "Απενεργοποίηση κολλώδων πλήκτρων εάν π
 
 #: ../dialogs/accessibility-settings/accessibility-dialog.glade.h:8
 msgid "K_eystroke delay:"
-msgstr "Καθυστέρηση πατήματος πλήκτρου:"
+msgstr "Καθ_υστέρηση πατήματος πλήκτρου:"
 
 #: ../dialogs/accessibility-settings/accessibility-dialog.glade.h:9
 msgid "Keyboa_rd"
@@ -115,15 +115,15 @@ msgstr "Για την βοήθεια αποφυγής ατυχών πολλαπ
 
 #: ../dialogs/accessibility-settings/accessibility-dialog.glade.h:24
 msgid "Use _bounce keys"
-msgstr "Χρήση αναπήδησης πλήκτρων"
+msgstr "Χρήση αναπή_δησης πλήκτρων"
 
 #: ../dialogs/accessibility-settings/accessibility-dialog.glade.h:25
 msgid "Use _sticky keys"
-msgstr "Χρήση κολλώδη πλήκτρων"
+msgstr "Χρήση _κολλώδη πλήκτρων"
 
 #: ../dialogs/accessibility-settings/accessibility-dialog.glade.h:26
 msgid "Use slow _keys"
-msgstr "Χρήση αργών πλήκτρων"
+msgstr "Χρήση αρ_γών πλήκτρων"
 
 #: ../dialogs/accessibility-settings/accessibility-dialog.glade.h:27
 msgid "When selected, modifier keys (such as Control, Alt, and Shift) do not 
need to be held down (they can be pressed and then released) when multiple keys 
would normally need to be pressed at the same time"
@@ -143,19 +143,19 @@ msgstr "Όταν επιλεχθεί, ο δείκτης του ποντικιού
 
 #: ../dialogs/accessibility-settings/accessibility-dialog.glade.h:31
 msgid "_Acceleration delay:"
-msgstr "Επιτάχυνση καθυστέρησης:"
+msgstr "Επιτάχυνση κ_αθυστέρησης:"
 
 #: ../dialogs/accessibility-settings/accessibility-dialog.glade.h:32
 msgid "_Lock sticky keys"
-msgstr "Κλείδωμα κολλώδη πλήκτρων"
+msgstr "Κ_λείδωμα κολλώδη πλήκτρων"
 
 #: ../dialogs/accessibility-settings/accessibility-dialog.glade.h:33
 msgid "_Mouse"
-msgstr "Ποντίκι"
+msgstr "_Ποντίκι"
 
 #: ../dialogs/accessibility-settings/accessibility-dialog.glade.h:34
 msgid "_Use mouse emulation"
-msgstr "Χρήση εξομείωσης ποντικιού"
+msgstr "Χρήση ε_ξομείωσης ποντικιού"
 
 #: ../dialogs/accessibility-settings/accessibility-dialog.glade.h:35
 msgid "msec"
@@ -356,11 +356,11 @@ msgstr "Καθορισμός εάν τα κλικς του ποντικιού ή
 
 #: ../dialogs/appearance-settings/appearance-dialog.glade.h:33
 msgid "St_yle"
-msgstr "Εμφάνιση"
+msgstr "Εμ_φάνιση"
 
 #: ../dialogs/appearance-settings/appearance-dialog.glade.h:34
 msgid "Sub-_pixel order:"
-msgstr "Σειρά υπό-πίξελ:"
+msgstr "Σειρά υπό-_πίξελ:"
 
 #: ../dialogs/appearance-settings/appearance-dialog.glade.h:35
 msgid "Text"
@@ -372,7 +372,7 @@ msgstr "Αυτή η γραμματοσειρά θα χρησιμοποιηθεί
 
 #: ../dialogs/appearance-settings/appearance-dialog.glade.h:37
 msgid "_Fonts"
-msgstr "Γραμματοσειρές"
+msgstr "_Γραμματοσειρές"
 
 #: ../dialogs/appearance-settings/appearance-dialog.glade.h:38
 msgid "_Hinting:"
@@ -380,11 +380,11 @@ msgstr "_Εξομάλυνση (γραμμάτων):"
 
 #: ../dialogs/appearance-settings/appearance-dialog.glade.h:39
 msgid "_Icons"
-msgstr "Εικονίδια"
+msgstr "Ε_ικονίδια"
 
 #: ../dialogs/appearance-settings/appearance-dialog.glade.h:40
 msgid "_Settings"
-msgstr "Ρυθμίσεις"
+msgstr "Ρυ_θμίσεις"
 
 #: ../dialogs/appearance-settings/appearance-dialog.glade.h:41
 msgid "_Toolbar Style"
@@ -438,7 +438,7 @@ msgstr "Οθόνη"
 
 #: ../dialogs/display-settings/display-dialog.glade.h:3
 msgid "R_esolution:"
-msgstr "Ανάλυση:"
+msgstr "Ανάλ_υση:"
 
 #: ../dialogs/display-settings/display-dialog.glade.h:4
 msgid "Ref_lection:"
@@ -446,11 +446,11 @@ msgstr "_Αντανάκλαση:"
 
 #: ../dialogs/display-settings/display-dialog.glade.h:5
 msgid "Refresh _rate:"
-msgstr "Ρυθμός ανανέωσης:"
+msgstr "_Ρυθμός ανανέωσης:"
 
 #: ../dialogs/display-settings/display-dialog.glade.h:6
 msgid "Ro_tation:"
-msgstr "Περιστροφή:"
+msgstr "Περισ_τροφή:"
 
 #: ../dialogs/display-settings/display-dialog.glade.h:7
 msgid "_Use this output"
@@ -593,7 +593,7 @@ msgstr "Εντολή:"
 
 #: ../dialogs/keyboard-settings/command-dialog.c:162
 msgid "Use _startup notification"
-msgstr "Χρήση ενημέρωσης εκκίνησης"
+msgstr "Χρή_ση ενημέρωσης εκκίνησης"
 
 #: ../dialogs/keyboard-settings/command-dialog.c:209
 msgid "The command may not be empty."
@@ -629,7 +629,7 @@ msgstr "Δέσμες ενεργειών κέλυφους"
 
 #: ../dialogs/keyboard-settings/keyboard-dialog.glade.h:1
 msgid "Appli_cation Shortcuts"
-msgstr "Συντομεύσεις εφαρμογών"
+msgstr "Σ_υντομεύσεις εφαρμογών"
 
 #: ../dialogs/keyboard-settings/keyboard-dialog.glade.h:2
 msgid "Be_havior"
@

[Xfce4-commits] l10n: Updated Greek (el) translation to 100%

2011-01-07 Thread Transifex
Updating branch refs/heads/master
 to 1cba1ff2543c4c1112c91d5b5ae37a085c89b65e (commit)
   from 703aa65188be3c02f189603bc6b8d8fabe189d6b (commit)

commit 1cba1ff2543c4c1112c91d5b5ae37a085c89b65e
Author: Spiros Georgaras 
Date:   Fri Jan 7 16:32:43 2011 +0100

l10n: Updated Greek (el) translation to 100%

New status: 678 messages complete with 0 fuzzies and 0 untranslated.

Transmitted-via: Transifex (translations.xfce.org).

 po/el.po |2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/po/el.po b/po/el.po
index 2615e83..e1d80d3 100644
--- a/po/el.po
+++ b/po/el.po
@@ -3045,7 +3045,7 @@ msgstr "Εισάγετε το κείμενο που θα αντικαταστή
 
 #: ../plugins/thunar-sbr/thunar-sbr-replace-renamer.c:251
 msgid "C_ase Sensitive Search"
-msgstr "Να γίνεται διάκριση πεζών-κεφαλαίων"
+msgstr "Να γίνεται διάκριση πεζών-κε_φαλαίων"
 
 #: ../plugins/thunar-sbr/thunar-sbr-replace-renamer.c:253
 msgid ""
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] l10n: Updated Greek (el) translation to 100%

2011-01-07 Thread Transifex
Updating branch refs/heads/master
 to 0d0c4122753d15e34735132c665dd9a9235cef67 (commit)
   from 1d26f3937f9b0497c36789c17784a7b0f30923be (commit)

commit 0d0c4122753d15e34735132c665dd9a9235cef67
Author: Spiros Georgaras 
Date:   Fri Jan 7 16:31:42 2011 +0100

l10n: Updated Greek (el) translation to 100%

New status: 274 messages complete with 0 fuzzies and 0 untranslated.

Transmitted-via: Transifex (translations.xfce.org).

 po/el.po |2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/po/el.po b/po/el.po
index 93effd1..c67401f 100644
--- a/po/el.po
+++ b/po/el.po
@@ -646,7 +646,7 @@ msgstr "_Διεύθυνση:"
 #. TRANSLATORS: Label in "Create Launcher" dialog, make sure to avoid mnemonic 
conflicts
 #: ../exo-desktop-item-edit/exo-die-editor.c:360
 msgid "Working _Directory:"
-msgstr "Κατάλογος εργασίας"
+msgstr "Κατάλο_γος εργασίας"
 
 #. TRANSLATORS: Label in "Create Launcher"/"Create Link" dialog, make sure to 
avoid mnemonic conflicts
 #: ../exo-desktop-item-edit/exo-die-editor.c:389
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] l10n: Updated Greek (el) translation to 100%

2011-01-07 Thread Transifex
Updating branch refs/heads/master
 to 6bfcb541b62b7a51bfc6775be909d477efdd15ca (commit)
   from 17265c43528bdd80d76cbe6ea4a94af080a68840 (commit)

commit 6bfcb541b62b7a51bfc6775be909d477efdd15ca
Author: Spiros Georgaras 
Date:   Fri Jan 7 16:29:49 2011 +0100

l10n: Updated Greek (el) translation to 100%

New status: 344 messages complete with 0 fuzzies and 0 untranslated.

Transmitted-via: Transifex (translations.xfce.org).

 po/el.po |   14 +++---
 1 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/po/el.po b/po/el.po
index e5065cc..ed48d90 100644
--- a/po/el.po
+++ b/po/el.po
@@ -469,7 +469,7 @@ msgstr "Συμπαγές χρώμα"
 
 #: ../panel/panel-preferences-dialog.glade.h:35
 msgid "Span mo_nitors"
-msgstr "Επέκταση στις οθόνες"
+msgstr "Επέκταση στις ο_θόνες"
 
 #: ../panel/panel-preferences-dialog.glade.h:36
 msgid "Transparency when the pointer is hovering over the panel, with 0 being 
fully transparent and 100 fully opaque."
@@ -663,7 +663,7 @@ msgstr "Τίτλος _κουμπιού:"
 
 #: ../plugins/applicationsmenu/applicationsmenu-dialog.glade.h:4
 msgid "Ed_it Menu"
-msgstr "Επεξεργασία μενού"
+msgstr "Επε_ξεργασία μενού"
 
 #: ../plugins/applicationsmenu/applicationsmenu-dialog.glade.h:5
 msgid "Menu File"
@@ -838,7 +838,7 @@ msgstr "Εμ_φάνιση πλαισίου"
 
 #: ../plugins/clock/clock-dialog.glade.h:17
 msgid "Show _inactive dots"
-msgstr "Εμφάνιση ανενεργών κουκκίδων"
+msgstr "Εμφάν_ιση ανενεργών κουκκίδων"
 
 #: ../plugins/clock/clock-dialog.glade.h:18
 msgid "Show gri_d"
@@ -1240,7 +1240,7 @@ msgstr "Εμφάνιση ετι_κέτας αντί εικονιδίου"
 
 #: ../plugins/launcher/launcher-dialog.glade.h:19
 msgid "Show last _used item in panel"
-msgstr "Εμφάνιση του τελευταίου χρησιμοποιημένου αντικειμένου στο ταμπλό"
+msgstr "Εμφάνιση του τελευταίου _χρησιμοποιημένου αντικειμένου στο ταμπλό"
 
 #: ../plugins/launcher/launcher-dialog.glade.h:20
 msgid "South"
@@ -1286,7 +1286,7 @@ msgstr "Προβολή μικρογραφίας του χώρου εργασία
 
 #: ../plugins/pager/pager-dialog.glade.h:5
 msgid "Show mi_niature view"
-msgstr "Προβολή μικρογραφιών"
+msgstr "Προβολή μικρογρα_φιών"
 
 #: ../plugins/pager/pager-dialog.glade.h:6
 msgid "Switch workspaces using the mouse _wheel"
@@ -1411,11 +1411,11 @@ msgstr "Ποτέ"
 
 #: ../plugins/tasklist/tasklist-dialog.glade.h:9
 msgid "Restore minimized windows to current _workspace"
-msgstr "Επαναφορά ελαχιστοποίησης των παραθύρων στο τωρινό χώρο εργασίας"
+msgstr "Επαναφορά ελα_χιστοποίησης των παραθύρων στο τωρινό χώρο εργασίας"
 
 #: ../plugins/tasklist/tasklist-dialog.glade.h:10
 msgid "Ro_tate buttons in vertical panel"
-msgstr "Περιστροφή κουμπιών στο κάθετο ταμπλό"
+msgstr "Περιστροφή κουμπιών στο κάθετο _ταμπλό"
 
 #: ../plugins/tasklist/tasklist-dialog.glade.h:11
 msgid "Show _flat buttons"
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] l10n: Updated Romanian (ro) translation to 100%

2011-01-07 Thread Transifex
Updating branch refs/heads/master
 to a300760755d86b4b2f8dc557d8a3edccde11c24e (commit)
   from fd354104a674c78df6fbd1503e2a0d9262c224ce (commit)

commit a300760755d86b4b2f8dc557d8a3edccde11c24e
Author: Mișu Moldovan 
Date:   Fri Jan 7 14:05:28 2011 +0100

l10n: Updated Romanian (ro) translation to 100%

New status: 200 messages complete with 0 fuzzies and 0 untranslated.

Transmitted-via: Transifex (translations.xfce.org).

 po/ro.po |  778 +++---
 1 files changed, 132 insertions(+), 646 deletions(-)

diff --git a/po/ro.po b/po/ro.po
index c655fbf..b86c68c 100644
--- a/po/ro.po
+++ b/po/ro.po
@@ -1,27 +1,28 @@
 # Romanian translation of xfdesktop.
-# Copyright (C) 2003-2009 The Xfce development team.
+# Copyright (C) 2003-2011 The Xfce development team.
 # This file is distributed under the same license as the xfdesktop package.
-# Mișu Moldovan , 2004-2009.
+# Mișu Moldovan , 2004-2011.
 #
 msgid ""
 msgstr ""
-"Project-Id-Version: xfdesktop 4.6.1\n"
+"Project-Id-Version: xfdesktop 4.8\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-12-05 16:00+0100\n"
-"PO-Revision-Date: 2009-04-21 23:23+0300\n"
+"POT-Creation-Date: 2011-01-06 11:11+\n"
+"PO-Revision-Date: 2011-01-07 14:34+0200\n"
 "Last-Translator: Mișu Moldovan \n"
-"Language-Team: Romanian \n"
+"Language-Team: Romanian \n"
 "Language: ro\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==0||((n%100)>0&&(n%100)<20))?"
-"1:2)\n"
+"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < "
+"20)) ? 1 : 2);;\n"
+"X-Generator: Virtaal 0.6.1\n"
 
 #: ../common/xfdesktop-common.c:96 ../common/xfdesktop-common.c:200
 #, c-format
 msgid "Backdrop list file is not valid"
-msgstr "Fișierul cu lista fundalurilor nu este valid"
+msgstr "Fișierul cu lista de fundaluri nu este valid"
 
 #. no need to escape markup; it's already done for us
 #: ../settings/main.c:162
@@ -48,7 +49,7 @@ msgstr "Coș de gunoi"
 
 #: ../settings/main.c:278
 msgid "Removable Devices"
-msgstr "Dispozitive amovibile"
+msgstr "Dispozitive detașabile"
 
 #: ../settings/main.c:458
 #, c-format
@@ -57,23 +58,23 @@ msgstr "Nu s-a putut crea lista imaginilor de fundal „%s”"
 
 #: ../settings/main.c:462 ../settings/main.c:779
 msgid "Backdrop List Error"
-msgstr "Eroare listă fundaluri"
+msgstr "Eroare în lista de fundaluri"
 
 #: ../settings/main.c:487
 msgid "Create/Load Backdrop List"
-msgstr "Creare/Încărcare listă fundaluri"
+msgstr "Creare/Încărcare listă de fundaluri"
 
 #: ../settings/main.c:511
 #, c-format
 msgid ""
 "File \"%s\" is not a valid backdrop list file.  Do you wish to overwrite it?"
 msgstr ""
-"Fișierul „%s” nu este o fișier valid de tip listă de fundaluri. Doriți să-l "
+"Fișierul „%s” nu este un fișier valid de tip listă de fundaluri. Doriți să-l "
 "suprascrieți?"
 
 #: ../settings/main.c:516
 msgid "Invalid List File"
-msgstr "Fișier listă nevalid"
+msgstr "Fișier de tip listă nevalid"
 
 #: ../settings/main.c:519
 msgid "Overwriting the file will cause its contents to be lost."
@@ -86,7 +87,7 @@ msgstr "Înlocuiește"
 #: ../settings/main.c:775
 #, c-format
 msgid "Failed to write backdrop list to \"%s\""
-msgstr "Nu s-a putut scrie lista fundalurilor în „%s”"
+msgstr "Nu s-a putut scrie lista de fundaluri în „%s”"
 
 #: ../settings/main.c:802
 msgid "Add Image File(s)"
@@ -94,7 +95,7 @@ msgstr "Adăugare fișiere de tip imagine"
 
 #: ../settings/main.c:811
 msgid "Image files"
-msgstr "Fișiere imagine"
+msgstr "Fișierele imagini"
 
 #: ../settings/main.c:816
 msgid "All files"
@@ -149,11 +150,11 @@ msgstr "Echipa de dezvoltare Xfce. Toate drepturile sunt 
rezervate."
 #: ../settings/main.c:1511
 #, c-format
 msgid "Please report bugs to <%s>."
-msgstr "Raportați erorile la <%s>."
+msgstr "Raportați problemele la <%s>."
 
 #: ../settings/main.c:1518
 msgid "Desktop Settings"
-msgstr "Opțiuni desktop"
+msgstr "Opțiuni pentru desktop"
 
 #: ../settings/main.c:1520
 msgid "Unable to contact settings server"
@@ -166,7 +167,7 @@ msgstr "Desktop "
 #: ../settings/xfce-backdrop-settings.desktop.in.h:2
 msgid "Set desktop background and menu and icon behaviour"
 msgstr ""
-"Schimbați fundalul desktopului și funcționalitatea meniurilor și iconițelor "
+"Schimbați fundalul desktopului și funcționalitatea meniului și iconițelor "
 "sale"
 
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:1
@@ -187,16 +188,16 @@ msgstr "Imagini"
 
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:5
 msgid "Add an image to the list"
-msgstr "Adăugați o imagine listei"
+msgstr "Adăugați o imagine în listă"
 
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:6
 #: ../settings/xfdesktop-settings-ui.glade.h:6
 msgid "Auto"
-msgstr ""
+msgstr "Automat"
 
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:7
 msgid "Automatically pick a ra

[Xfce4-commits] l10n: Updated Polish (pl) translation to 99%

2011-01-07 Thread Transifex
Updating branch refs/heads/master
 to fd354104a674c78df6fbd1503e2a0d9262c224ce (commit)
   from 608ab6b4dd28776df505f08818fdcdb84e746e0c (commit)

commit fd354104a674c78df6fbd1503e2a0d9262c224ce
Author: Piotr Sokół 
Date:   Fri Jan 7 14:04:21 2011 +0100

l10n: Updated Polish (pl) translation to 99%

New status: 199 messages complete with 1 fuzzy and 0 untranslated.

Transmitted-via: Transifex (translations.xfce.org).

 po/pl.po |  252 --
 1 files changed, 115 insertions(+), 137 deletions(-)

diff --git a/po/pl.po b/po/pl.po
index a876b50..d28012c 100644
--- a/po/pl.po
+++ b/po/pl.po
@@ -4,20 +4,22 @@
 # Robert Kurowski , 2005.
 # Piotr Maliński , 2006.
 # Szymon Kałasz , 2006.
-# Piotr Sokół , 2009.
+# Piotr Sokół , 2009, 2011.
 #
 msgid ""
 msgstr ""
-"Project-Id-Version: xfdesktop 4.5.92\n"
+"Project-Id-Version: xfdesktop 4.7.5\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-12-05 16:00+0100\n"
-"PO-Revision-Date: 2009-07-15 21:16+0100\n"
-"Last-Translator: Piotr Sokół \n"
-"Language-Team: Polish\n"
-"Language: \n"
+"POT-Creation-Date: 2011-01-06 11:11+\n"
+"PO-Revision-Date: 2011-01-07 14:03+0100\n"
+"Last-Translator: Piotr Sokół \n"
+"Language-Team: Polish <>\n"
 "MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Type: text/plain; charset=utf-8\n"
 "Content-Transfer-Encoding: 8bit\n"
+"Language: \n"
+"Plural-Forms: nplurals=3; plural=((n==1) ? 0 : ((n%10>=2 && n%10<=4 && (n"
+"%100<10 || n%100>=20)) ? 1 : 2));\n"
 
 #: ../common/xfdesktop-common.c:96 ../common/xfdesktop-common.c:200
 #, c-format
@@ -37,7 +39,7 @@ msgstr ""
 #: ../settings/main.c:272 ../src/xfdesktop-special-file-icon.c:247
 #: ../src/xfdesktop-special-file-icon.c:413
 msgid "Home"
-msgstr "Katalog domowy"
+msgstr "Katalog użytkownika"
 
 #: ../settings/main.c:274
 msgid "Filesystem"
@@ -72,11 +74,11 @@ msgstr "Plik „%s” nie jest poprawnym plikiem listy obrazów. 
Nadpisać go?"
 
 #: ../settings/main.c:516
 msgid "Invalid List File"
-msgstr "Niewłaściwy plik listy"
+msgstr "Niepoprawny plik listy"
 
 #: ../settings/main.c:519
 msgid "Overwriting the file will cause its contents to be lost."
-msgstr "Nadpisanie pliku usunie jego zawartość."
+msgstr "Zastąpienie pliku spowoduje usunięcie jego dotychczasowej zawartość."
 
 #: ../settings/main.c:521
 msgid "Replace"
@@ -130,7 +132,7 @@ msgstr "Określa gniazdo menedżera ustawień"
 
 #: ../settings/main.c:1477
 msgid "SOCKET ID"
-msgstr "ID GNIAZDA"
+msgstr "ID_GNIAZDA"
 
 #: ../settings/main.c:1478
 msgid "Version information"
@@ -139,17 +141,17 @@ msgstr "Informacje o wersji"
 #: ../settings/main.c:1498
 #, c-format
 msgid "Type '%s --help' for usage."
-msgstr "Wpisz „%s --help” aby wypisać komunikat pomocy."
+msgstr "Proszę wprowadzić „%s --help”, aby wypisać komunikat pomocy."
 
 #: ../settings/main.c:1510
 msgid "The Xfce development team. All rights reserved."
 msgstr ""
-"Zespół twórców środowiska graficznego Xfce. Wszystkie prawa zastrzeżone."
+"Zespół twórców środowiska graficznego Xfce. Wszystkie prawa zastrzeżone."
 
 #: ../settings/main.c:1511
 #, c-format
 msgid "Please report bugs to <%s>."
-msgstr "Błędy proszę zgłaszać na <%s>."
+msgstr "Proszę zgłaszać błędy na adres <%s>."
 
 #: ../settings/main.c:1518
 msgid "Desktop Settings"
@@ -190,7 +192,7 @@ msgstr "Dodaje obraz do listy"
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:6
 #: ../settings/xfdesktop-settings-ui.glade.h:6
 msgid "Auto"
-msgstr "Automatyczny"
+msgstr "Automatycznie"
 
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:7
 msgid "Automatically pick a random image from a list file"
@@ -203,7 +205,7 @@ msgstr "_Jasność:"
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:9
 #: ../settings/xfdesktop-settings-ui.glade.h:8
 msgid "Centered"
-msgstr "Wyśrodkuj"
+msgstr "Wyśrodkowanie"
 
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:10
 msgid "Create a new list, or load an existing one"
@@ -215,7 +217,6 @@ msgstr "Nie wyświetla obrazu w tle pulpitu"
 
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:12
 #: ../settings/xfdesktop-settings-ui.glade.h:12
-#, fuzzy
 msgid "Horizontal gradient"
 msgstr "Gradient poziomy"
 
@@ -242,7 +243,7 @@ msgstr "_Nasycenie:"
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:18
 #: ../settings/xfdesktop-settings-ui.glade.h:23
 msgid "Scaled"
-msgstr "Skaluj"
+msgstr "Przeskalowanie"
 
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:19
 msgid "Select First Color"
@@ -258,28 +259,27 @@ msgstr "Wyświetla w tle pulpitu pojedynczy obraz"
 
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:22
 #: ../settings/xfdesktop-settings-ui.glade.h:32
-#, fuzzy
 msgid "Solid color"
 msgstr "Jednolity"
 
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:23
 msgid "Specifies the \"right\" or \"bottom\" color of the gradient"
-msgstr "Określa „

[Xfce4-commits] l10n: Updated Romanian (ro) translation to 100%

2011-01-07 Thread Transifex
Updating branch refs/heads/master
 to 2615273e2a7a60a546e4f7c7d62365760eeb097f (commit)
   from b9ab360d657ca86f8f90c1a8cf49b9eef1933e19 (commit)

commit 2615273e2a7a60a546e4f7c7d62365760eeb097f
Author: Mișu Moldovan 
Date:   Fri Jan 7 13:28:31 2011 +0100

l10n: Updated Romanian (ro) translation to 100%

New status: 72 messages complete with 0 fuzzies and 0 untranslated.

Transmitted-via: Transifex (translations.xfce.org).

 po/ro.po |  132 +++--
 1 files changed, 101 insertions(+), 31 deletions(-)

diff --git a/po/ro.po b/po/ro.po
index 1078b7a..09d2294 100644
--- a/po/ro.po
+++ b/po/ro.po
@@ -6,15 +6,16 @@ msgid ""
 msgstr ""
 "Project-Id-Version: xfce-utils 4.8\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-01-06 11:08+\n"
-"PO-Revision-Date: 2011-01-06 16:14+0300\n"
+"POT-Creation-Date: 2011-01-07 11:09+\n"
+"PO-Revision-Date: 2011-01-07 14:27+0200\n"
 "Last-Translator: Mișu Moldovan \n"
 "Language-Team: Romanian \n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: ro\n"
-"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < 
20)) ? 1 : 2);;\n"
+"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < "
+"20)) ? 1 : 2);;\n"
 "X-Generator: Virtaal 0.6.1\n"
 
 #: ../xfce4-about/main.c:52
@@ -34,48 +35,74 @@ msgid "Panel"
 msgstr "Panou"
 
 #: ../xfce4-about/main.c:75
-msgid "Program launchers, window buttons, applications menu, workspace 
switcher and more."
-msgstr "Lansatori de programe, butoane de ferestre, meniu cu aplicații, 
comutator al spațiilor de lucru și altele."
+msgid ""
+"Program launchers, window buttons, applications menu, workspace switcher and "
+"more."
+msgstr ""
+"Lansatori de programe, butoane de ferestre, meniu cu programe, comutator al "
+"spațiilor de lucru și altele."
 
 #: ../xfce4-about/main.c:79
 msgid "Desktop Manager"
 msgstr "Manager de desktop"
 
 #: ../xfce4-about/main.c:80
-msgid "Sets the background color or image with optional application menu or 
icons for minimized applications or launchers, devices and folders."
-msgstr "Gestionează culoarea ori imaginea fundalului și (opțional) un meniu cu 
aplicații, iconițe pentru aplicații minimizate ori lansatori, precum și alte 
dispozitive și dosare."
+msgid ""
+"Sets the background color or image with optional application menu or icons "
+"for minimized applications or launchers, devices and folders."
+msgstr ""
+"Gestionează culoarea ori imaginea fundalului și (opțional) un meniu cu "
+"programe, iconițe pentru ferestre minimizate ori lansatori, precum și alte "
+"dispozitive și dosare."
 
 #: ../xfce4-about/main.c:84
 msgid "File Manager "
 msgstr "Manager de fișiere"
 
 #: ../xfce4-about/main.c:85
-msgid "A modern file manager for the Unix/Linux desktop, aiming to be 
easy-to-use and fast."
-msgstr "Un manager de fișiere modern pentru desktopuri Unix/Linux, rapid și 
ușor de folosit."
+msgid ""
+"A modern file manager for the Unix/Linux desktop, aiming to be easy-to-use "
+"and fast."
+msgstr ""
+"Un manager de fișiere modern pentru desktopuri Unix/Linux, rapid și ușor de "
+"folosit."
 
 #: ../xfce4-about/main.c:89
 msgid "Session Manager"
 msgstr "Manager de sesiune"
 
 #: ../xfce4-about/main.c:90
-msgid "Restores your session on startup and allows you to shutdown the 
computer from Xfce."
-msgstr "Vă restaurează la pornire sesiunea de lucru și vă permite să închideți 
calculatorul din Xfce."
+msgid ""
+"Restores your session on startup and allows you to shutdown the computer "
+"from Xfce."
+msgstr ""
+"Vă restaurează la pornire sesiunea de lucru și vă permite să închideți "
+"calculatorul din Xfce."
 
 #: ../xfce4-about/main.c:94
 msgid "Setting System"
 msgstr "Sistem de opțiuni"
 
 #: ../xfce4-about/main.c:95
-msgid "Configuration system to control various aspects of the desktop like 
appearance, display, keyboard and mouse settings."
-msgstr "Sistemul de configurare ce controlează diferite aspecte ale 
desktopului precum: înfățișarea aplicațiilor și a panoului, opțiunile pentru 
monitor, tastatură și maus."
+msgid ""
+"Configuration system to control various aspects of the desktop like "
+"appearance, display, keyboard and mouse settings."
+msgstr ""
+"Sistemul de configurare ce controlează diferite aspecte ale desktopului "
+"precum: înfățișarea ferestrelor și a panoului, opțiunile pentru monitor, "
+"tastatură și maus."
 
 #: ../xfce4-about/main.c:99
 msgid "Application Finder"
-msgstr "Căutare de aplicații"
+msgstr "Căutare de programe"
 
 #: ../xfce4-about/main.c:100
-msgid "Shows the applications installed on your system in categories, so you 
can quickly find and launch them."
-msgstr "Arată pe categorii aplicațiile instalate în sistem, astfel încât să le 
puteți găsi și lansa rapid."
+msgid ""
+"Shows the applications installed on your system in categories, so you can "
+"quickly find and launc

[Xfce4-commits] l10n: Updated Romanian (ro) translation to 100%

2011-01-07 Thread Transifex
Updating branch refs/heads/master
 to e86b66dfb1ff8b390c5a5cf1cf6f35924da9cb2f (commit)
   from c4b276082c3fb9cbd0223c017ac01c587c6a3e58 (commit)

commit e86b66dfb1ff8b390c5a5cf1cf6f35924da9cb2f
Author: Mișu Moldovan 
Date:   Fri Jan 7 13:25:20 2011 +0100

l10n: Updated Romanian (ro) translation to 100%

New status: 19 messages complete with 0 fuzzies and 0 untranslated.

Transmitted-via: Transifex (translations.xfce.org).

 po/ro.po |6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/po/ro.po b/po/ro.po
index f67a732..a9fcb12 100644
--- a/po/ro.po
+++ b/po/ro.po
@@ -8,7 +8,7 @@ msgstr ""
 "Project-Id-Version: xfce4-appfinder 4.8\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2011-01-05 17:09+\n"
-"PO-Revision-Date: 2011-01-05 21:39+0300\n"
+"PO-Revision-Date: 2011-01-07 14:24+0200\n"
 "Last-Translator: Mișu Moldovan \n"
 "Language-Team: Romanian \n"
 "MIME-Version: 1.0\n"
@@ -54,11 +54,11 @@ msgstr "Conectarea la demonul xfconf a eșuat."
 
 #: ../src/xfce-appfinder-window.c:217 ../data/xfce4-appfinder.desktop.in.h:1
 msgid "Application Finder"
-msgstr "Căutare de aplicații"
+msgstr "Căutare de programe"
 
 #: ../src/xfce-appfinder-window.c:219 ../data/xfce4-appfinder.desktop.in.h:2
 msgid "Find and launch applications installed on your system"
-msgstr "Caută și lansează aplicații instalate în sistem"
+msgstr "Caută și lansează programe instalate în sistem"
 
 #: ../src/xfce-appfinder-window.c:242
 msgid "Search"
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] l10n: Updated Romanian (ro) translation to 100%

2011-01-07 Thread Transifex
Updating branch refs/heads/master
 to 1e8ea49e0a3bbf0a5c3f2d814b0727852cc4ebdf (commit)
   from 100c74630f1308e519347d1a597cab35b1795568 (commit)

commit 1e8ea49e0a3bbf0a5c3f2d814b0727852cc4ebdf
Author: Mișu Moldovan 
Date:   Fri Jan 7 13:23:04 2011 +0100

l10n: Updated Romanian (ro) translation to 100%

New status: 44 messages complete with 0 fuzzies and 0 untranslated.

Transmitted-via: Transifex (translations.xfce.org).

 po/ro.po |4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/po/ro.po b/po/ro.po
index 73020a5..ce265e7 100644
--- a/po/ro.po
+++ b/po/ro.po
@@ -7,7 +7,7 @@ msgstr ""
 "Project-Id-Version: libxfcegui4 4.8\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2011-01-05 11:12+\n"
-"PO-Revision-Date: 2011-01-05 15:30+0300\n"
+"PO-Revision-Date: 2011-01-07 14:22+0200\n"
 "Last-Translator: Mișu Moldovan \n"
 "Language-Team: Romanian \n"
 "Language: ro\n"
@@ -115,7 +115,7 @@ msgstr "Notificare la pornire"
 #: ../libxfcegui4/xfce-appmenuitem.c:251
 msgid "Whether or not the app supports startup notification"
 msgstr ""
-"Specifică dacă aplicația oferă sau nu suport pentru notificarea la pornire"
+"Specifică dacă programul oferă sau nu suport pentru notificarea la pornire"
 
 #: ../libxfcegui4/xfce-appmenuitem.c:255
 msgid "Use underline"
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] Update copyright year.

2011-01-07 Thread Ali Abdallah
Updating branch refs/heads/master
 to 9fc2b557f8c1210890abc29e9bdc2b353a35e9d2 (commit)
   from 7f977d69a0ca4c17dc27554762f50acee1530b07 (commit)

commit 9fc2b557f8c1210890abc29e9bdc2b353a35e9d2
Author: Ali Abdallah 
Date:   Wed Jan 5 00:11:49 2011 +0100

Update copyright year.

 common/xfpm-brightness.c |2 +-
 common/xfpm-brightness.h |2 +-
 common/xfpm-common.c |4 ++--
 common/xfpm-common.h |2 +-
 common/xfpm-debug.c  |2 +-
 common/xfpm-debug.h  |2 +-
 common/xfpm-icons.h  |2 +-
 libdbus/xfpm-dbus-monitor.c  |2 +-
 libdbus/xfpm-dbus-monitor.h  |2 +-
 libdbus/xfpm-dbus.c  |2 +-
 libdbus/xfpm-dbus.h  |2 +-
 libdbus/xfpm-unique.c|2 +-
 libdbus/xfpm-unique.h|2 +-
 panel-plugins/brightness/brightness-button.c |2 +-
 panel-plugins/brightness/brightness-button.h |2 +-
 panel-plugins/brightness/brightness-plugin.c |2 +-
 settings/xfpm-settings-main.c|2 +-
 settings/xfpm-settings.c |2 +-
 settings/xfpm-settings.h |2 +-
 src/xfpm-backlight.c |2 +-
 src/xfpm-backlight.h |2 +-
 src/xfpm-battery.c   |2 +-
 src/xfpm-battery.h   |2 +-
 src/xfpm-button.c|2 +-
 src/xfpm-button.h|2 +-
 src/xfpm-config.h|2 +-
 src/xfpm-console-kit.c   |2 +-
 src/xfpm-console-kit.h   |2 +-
 src/xfpm-disks.c |2 +-
 src/xfpm-disks.h |2 +-
 src/xfpm-dpms.c  |2 +-
 src/xfpm-dpms.h  |2 +-
 src/xfpm-enum-glib.h |2 +-
 src/xfpm-enum.h  |2 +-
 src/xfpm-errors.c|2 +-
 src/xfpm-errors.h|2 +-
 src/xfpm-inhibit.c   |2 +-
 src/xfpm-inhibit.h   |2 +-
 src/xfpm-main.c  |2 +-
 src/xfpm-manager.c   |2 +-
 src/xfpm-manager.h   |2 +-
 src/xfpm-network-manager.c   |2 +-
 src/xfpm-network-manager.h   |2 +-
 src/xfpm-notify.c|2 +-
 src/xfpm-notify.h|2 +-
 src/xfpm-polkit.c|2 +-
 src/xfpm-polkit.h|2 +-
 src/xfpm-power-common.c  |2 +-
 src/xfpm-power-common.h  |2 +-
 src/xfpm-power-info.c|2 +-
 src/xfpm-power.c |2 +-
 src/xfpm-power.h |2 +-
 src/xfpm-xfconf.c|2 +-
 src/xfpm-xfconf.h|2 +-
 54 files changed, 55 insertions(+), 55 deletions(-)

diff --git a/common/xfpm-brightness.c b/common/xfpm-brightness.c
index 84e6b87..e0b9c3c 100644
--- a/common/xfpm-brightness.c
+++ b/common/xfpm-brightness.c
@@ -1,5 +1,5 @@
 /*
- * * Copyright (C) 2009 Ali 
+ * * Copyright (C) 2009-2011 Ali 
  *
  * Licensed under the GNU General Public License Version 2
  *
diff --git a/common/xfpm-brightness.h b/common/xfpm-brightness.h
index e687371..f0398e6 100644
--- a/common/xfpm-brightness.h
+++ b/common/xfpm-brightness.h
@@ -1,5 +1,5 @@
 /*
- * * Copyright (C) 2009 Ali 
+ * * Copyright (C) 2009-2011 Ali 
  *
  * Licensed under the GNU General Public License Version 2
  *
diff --git a/common/xfpm-common.c b/common/xfpm-common.c
index 039c05c..eca2ed5 100644
--- a/common/xfpm-common.c
+++ b/common/xfpm-common.c
@@ -1,5 +1,5 @@
 /*
- * * Copyright (C) 2008-2009 Ali 
+ * * Copyright (C) 2008-2011 Ali 
  *
  * Licensed under the GNU General Public License Version 2
  *
@@ -147,7 +147,7 @@ xfpm_about (GtkWidget *widget, gpointer data)
 
 gtk_show_about_dialog (NULL,
 "authors", authors,
-"copyright", "Copyright \302\251 2008-2009 Ali Abdallah",
+"copyright", "Copyright \302\251 2008-2011 Ali Abdallah",
 "destroy-with-parent", TRUE,
 "documenters", documenters,
 "license", XFCE_LICENSE_GPL,
diff --git a/common/xfpm-common.h b/common/xfpm-common.h
index 80f47cd..2dce854 100644
--- a/common/xfpm-common.h
+++ b/common/xfpm-common.h
@@ -1,5 +1,5 @@
 /*
- * * Copyright (C) 2008-2009 Ali 
+ * * Copyright (C) 2008-2011 Ali 
  *
  * Licensed un

[Xfce4-commits] Merge branch 'master' of ssh://git.xfce.org/git/apps/xfce4-power-manager

2011-01-07 Thread Ali Abdallah
Updating branch refs/heads/master
 to 8977b9f51e932d6034a0e25055096f070bc523fc (commit)
   from 9fc2b557f8c1210890abc29e9bdc2b353a35e9d2 (commit)

commit 8977b9f51e932d6034a0e25055096f070bc523fc
Merge: 9fc2b55 6ef9a84
Author: Ali Abdallah 
Date:   Fri Jan 7 12:28:03 2011 +0100

Merge branch 'master' of ssh://git.xfce.org/git/apps/xfce4-power-manager

commit 6ef9a84761f72a1023d86faf10d2ebbcb0ad182a
Author: forfolias 
Date:   Fri Jan 7 10:34:25 2011 +0100

l10n: Updated Greek (el) translation to 100%

New status: 198 messages complete with 0 fuzzies and 0 untranslated.

Transmitted-via: Transifex (translations.xfce.org).

commit 2a22d2745aeb9036da978eaa68e09f697935b665
Author: forfolias 
Date:   Thu Jan 6 16:57:08 2011 +0100

l10n: Updated Greek (el) translation to 63%

New status: 126 messages complete with 57 fuzzies and 15 untranslated.

Transmitted-via: Transifex (translations.xfce.org).

 po/el.po |  537 +-
 1 files changed, 217 insertions(+), 320 deletions(-)

diff --git a/po/el.po b/po/el.po
index e5ca5b7..36262c9 100644
--- a/po/el.po
+++ b/po/el.po
@@ -1,24 +1,24 @@
 # Translation of xfce4-power-manager to Greek
 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
 # This file is distributed under the same license as the PACKAGE package.
-#
+# 
 # Evaggelos Balaskas  , 2008, 2009.
 msgid ""
 msgstr ""
 "Project-Id-Version: xfce4-power-manager git\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-03-25 18:01+0100\n"
+"POT-Creation-Date: 2011-01-07 05:03+\n"
 "PO-Revision-Date: 2010-03-26 00:12+0200\n"
 "Last-Translator: Evaggelos Balaskas \n"
 "Language-Team: Greek \n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=utf-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Lokalize 0.2\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 "X-Poedit-Language: Greek\n"
-"X-Poedit-Country: GREECE\n"
 "X-Poedit-SourceCharset: utf-8\n"
+"X-Poedit-Country: GREECE\n"
+"X-Generator: Lokalize 0.2\n"
 
 #: ../data/interfaces/xfpm-settings.ui.h:1
 msgid "Actions"
@@ -49,14 +49,10 @@ msgid "Consider the computer on low power at:"
 msgstr "Θεωρείστε τον υπολογιστή σε λίγο ρεύμα στο:"
 
 #. Hibernate menu option
-#: ../data/interfaces/xfpm-settings.ui.h:8
-#: ../settings/xfpm-settings.c:789
-#: ../settings/xfpm-settings.c:857
-#: ../settings/xfpm-settings.c:995
-#: ../settings/xfpm-settings.c:1160
-#: ../settings/xfpm-settings.c:1215
-#: ../settings/xfpm-settings.c:1265
-#: ../src/xfpm-power.c:443
+#: ../data/interfaces/xfpm-settings.ui.h:8 ../settings/xfpm-settings.c:789
+#: ../settings/xfpm-settings.c:857 ../settings/xfpm-settings.c:995
+#: ../settings/xfpm-settings.c:1160 ../settings/xfpm-settings.c:1215
+#: ../settings/xfpm-settings.c:1265 ../src/xfpm-power.c:443
 #: ../src/xfpm-power.c:704
 msgid "Hibernate"
 msgstr "Αδρανοποίηση"
@@ -65,8 +61,7 @@ msgstr "Αδρανοποίηση"
 msgid "Lock screen when going for suspend/hibernate"
 msgstr "Κλείδωμα οθόνης όταν μεταβαίνει για αναστολή/αδρανοποίηση"
 
-#: ../data/interfaces/xfpm-settings.ui.h:10
-#: ../src/xfpm-power-common.c:132
+#: ../data/interfaces/xfpm-settings.ui.h:10 ../src/xfpm-power-common.c:132
 msgid "Monitor"
 msgstr "Οθόνη"
 
@@ -74,12 +69,9 @@ msgstr "Οθόνη"
 msgid "Monitor power management control"
 msgstr "Παρακολούθηση ελέγχου διαχείρισης ρεύματος"
 
-#: ../data/interfaces/xfpm-settings.ui.h:12
-#: ../settings/xfpm-settings.c:778
-#: ../settings/xfpm-settings.c:846
-#: ../settings/xfpm-settings.c:984
-#: ../settings/xfpm-settings.c:1149
-#: ../settings/xfpm-settings.c:1204
+#: ../data/interfaces/xfpm-settings.ui.h:12 ../settings/xfpm-settings.c:778
+#: ../settings/xfpm-settings.c:846 ../settings/xfpm-settings.c:984
+#: ../settings/xfpm-settings.c:1149 ../settings/xfpm-settings.c:1204
 #: ../settings/xfpm-settings.c:1254
 msgid "Nothing"
 msgstr "Τίποτα"
@@ -118,21 +110,17 @@ msgstr "Να εμφανίζονται ειδοποιήσεις σχετικά μ
 
 #: ../data/interfaces/xfpm-settings.ui.h:21
 msgid "Spin down hard disks"
-msgstr ""
+msgstr "Μείωση αυτοστροφορμής σκληρών δίσκων"
 
 #: ../data/interfaces/xfpm-settings.ui.h:22
 msgid "Standby"
 msgstr "Σε αναμονή"
 
 #. Suspend menu option
-#: ../data/interfaces/xfpm-settings.ui.h:23
-#: ../settings/xfpm-settings.c:783
-#: ../settings/xfpm-settings.c:851
-#: ../settings/xfpm-settings.c:989
-#: ../settings/xfpm-settings.c:1154
-#: ../settings/xfpm-settings.c:1209
-#: ../settings/xfpm-settings.c:1259
-#: ../src/xfpm-power.c:458
+#: ../data/interfaces/xfpm-settings.ui.h:23 ../settings/xfpm-settings.c:783
+#: ../settings/xfpm-settings.c:851 ../settings/xfpm-settings.c:989
+#: ../settings/xfpm-settings.c:1154 ../settings/xfpm-settings.c:1209
+#: ../settings/xfpm-settings.c:1259 ../src/xfpm-power.c:458
 #: ../src/xfpm-power.c:717
 msgid "Suspend"
 msgstr "Αναστολή"
@@ -166,16 +154,13 @@ msgid "When sleep button is pressed:"
 msgstr "Όταν το κουμπί κλεισίματος πατηθεί:"
 
 #: ../data/interfaces/xfpm-

[Xfce4-commits] Fix compilation on FREEBSD.

2011-01-07 Thread Ali Abdallah
Updating branch refs/heads/master
 to 50f8c1aa194be51b2f12b8be2d12dcf9911ee2e1 (commit)
   from 8977b9f51e932d6034a0e25055096f070bc523fc (commit)

commit 50f8c1aa194be51b2f12b8be2d12dcf9911ee2e1
Author: Ali Abdallah 
Date:   Fri Jan 7 12:28:20 2011 +0100

Fix compilation on FREEBSD.

 src/xfpm-polkit.c |   12 
 1 files changed, 12 insertions(+), 0 deletions(-)

diff --git a/src/xfpm-polkit.c b/src/xfpm-polkit.c
index f8f7f9a..0460cf1 100644
--- a/src/xfpm-polkit.c
+++ b/src/xfpm-polkit.c
@@ -30,6 +30,18 @@
 #include 
 #endif
 
+#include 
+
+#ifndef HAVE_FREEBSD
+#include 
+#else
+#include 
+#include 
+#include 
+#endif
+
+#include 
+
 #include 
 
 #include "xfpm-polkit.h"
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] l10n: Updated Greek (el) translation to 100%

2011-01-07 Thread Transifex
Updating branch refs/heads/master
 to 709c5c71bfad6bcae65b5bebf1a4d4f0db2edb12 (commit)
   from d43657af72f369ea3bfa6c78344f31f5635c44cc (commit)

commit 709c5c71bfad6bcae65b5bebf1a4d4f0db2edb12
Author: forfolias 
Date:   Fri Jan 7 12:02:20 2011 +0100

l10n: Updated Greek (el) translation to 100%

New status: 124 messages complete with 0 fuzzies and 0 untranslated.

Transmitted-via: Transifex (translations.xfce.org).

 po/el.po |   30 --
 1 files changed, 12 insertions(+), 18 deletions(-)

diff --git a/po/el.po b/po/el.po
index b73a7e4..8eefe23 100644
--- a/po/el.po
+++ b/po/el.po
@@ -13,11 +13,11 @@ msgstr ""
 "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"
 "X-Poedit-Language: Greek\n"
-"X-Poedit-Country: GREECE\n"
 "X-Poedit-SourceCharset: utf-8\n"
+"X-Poedit-Country: GREECE\n"
+"X-Generator: KBabel 1.11.4\n"
 
 #: ../src/main.c:59
 msgid "Version information"
@@ -38,8 +38,7 @@ msgid ""
 "Try %s --help to see a full list of available command line options.\n"
 msgstr ""
 "%s: %s\n"
-"Δοκίμασε %s --help για να δεις μία πλήρη λίστα με τις διαθέσιμες παραμέτρους "
-"στην γραμμή εντολών.\n"
+"Δοκίμασε %s --help για να δεις μία πλήρη λίστα με τις διαθέσιμες παραμέτρους 
στην γραμμή εντολών.\n"
 
 #. File Menu
 #: ../src/main_window.c:277
@@ -270,30 +269,28 @@ msgstr "Κάτω"
 #. Create Play/Pause Slideshow actions
 #: ../src/main_window.c:451
 msgid "_Play"
-msgstr ""
+msgstr "_Εκκίνηση"
 
 #: ../src/main_window.c:451
-#, fuzzy
 msgid "Play slideshow"
 msgstr "Εκκίνηση προβολής διαφανειών"
 
 #: ../src/main_window.c:452
 msgid "_Pause"
-msgstr ""
+msgstr "_Παύση"
 
 #: ../src/main_window.c:452
-#, fuzzy
 msgid "Pause slideshow"
-msgstr "Εκκίνηση προβολής διαφανειών"
+msgstr "Παύση προβολής διαφανειών"
 
 #. Create Recently used items Action
 #: ../src/main_window.c:455
 msgid "_Recently used"
-msgstr ""
+msgstr "_Χρησιμοποιήθηκε πρόσφατα"
 
 #: ../src/main_window.c:455
 msgid "Recently used"
-msgstr ""
+msgstr "Χρησιμοποιήθηκε πρόσφατα"
 
 #: ../src/main_window.c:542 ../src/main_window.c:864
 msgid "Press open to select an image"
@@ -309,8 +306,7 @@ msgstr "Δημιουργός:"
 
 #: ../src/main_window.c:1657
 msgid "Ristretto is an imageviewer for the Xfce desktop environment."
-msgstr ""
-"Το ristretto είναι ένα εμφάνισης εικόνων για το γραφικό περιβάλλον xfce."
+msgstr "Το ristretto είναι ένα εμφάνισης εικόνων για το γραφικό περιβάλλον 
xfce."
 
 #: ../src/main_window.c:1665
 msgid "translator-credits"
@@ -375,8 +371,7 @@ msgid ""
 "The time period an individual image is displayed during a slideshow\n"
 "(in seconds)"
 msgstr ""
-"Η χρονική περίοδος εμφάνισης μία ανεξάρτητης εικόνας ανάμεσα στις "
-"διαφάνειες\n"
+"Η χρονική περίοδος εμφάνισης μία ανεξάρτητης εικόνας ανάμεσα στις 
διαφάνειες\n"
 "(σε δευτερόλεπτα)"
 
 #: ../src/preferences_dialog.c:290
@@ -433,8 +428,7 @@ msgstr "Εκκίνηση"
 
 #: ../src/preferences_dialog.c:372
 msgid "Resize window to image on startup"
-msgstr ""
-"Να αλλάζει το μέγεθος του παραθύρου στο μέγεθος της εικόνας κατά την εκκίνηση"
+msgstr "Να αλλάζει το μέγεθος του παραθύρου στο μέγεθος της εικόνας κατά την 
εκκίνηση"
 
 #: ../src/preferences_dialog.c:376
 msgid "Open entire folder on startup"
@@ -466,7 +460,7 @@ msgstr "Ενεργοποίηση προσωρινής μνήμης"
 
 #: ../src/preferences_dialog.c:418
 msgid "Enable preloading"
-msgstr ""
+msgstr "Ενεργοποίηση προφόρτισης"
 
 #: ../src/preferences_dialog.c:495
 msgid "Preferences"
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] l10n: Updated Greek (el) translation to 100%

2011-01-07 Thread Transifex
Updating branch refs/heads/master
 to 5120cbde2071da92f1853d484eecb1599724b27c (commit)
   from 17f59065c5bdcdc3c46759e2eef74939cb94c73f (commit)

commit 5120cbde2071da92f1853d484eecb1599724b27c
Author: forfolias 
Date:   Fri Jan 7 12:00:29 2011 +0100

l10n: Updated Greek (el) translation to 100%

New status: 283 messages complete with 0 fuzzies and 0 untranslated.

Transmitted-via: Transifex (translations.xfce.org).

 po/el.po |  184 +++---
 1 files changed, 92 insertions(+), 92 deletions(-)

diff --git a/po/el.po b/po/el.po
index a0a7f5f..f9c0a03 100644
--- a/po/el.po
+++ b/po/el.po
@@ -2,12 +2,12 @@
 # Copyright (C) 2006 Jean-François Wauthy.
 # This file is distributed under the same license as the xfburn package.
 # Stavros Giannouris , 2006.
-#
+# 
 msgid ""
 msgstr ""
 "Project-Id-Version: xfburn git version\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-03-25 18:01+0100\n"
+"POT-Creation-Date: 2011-01-07 05:02+\n"
 "PO-Revision-Date: 2010-03-26 00:15+0200\n"
 "Last-Translator: Evaggelos Balaskas \n"
 "Language-Team: Greek \n"
@@ -16,8 +16,8 @@ msgstr ""
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 "X-Poedit-Language: Greek\n"
-"X-Poedit-Country: GREECE\n"
 "X-Poedit-SourceCharset: utf-8\n"
+"X-Poedit-Country: GREECE\n"
 
 #: ../xfburn/xfburn-adding-progress.c:111
 msgid "Adding files to the composition"
@@ -68,8 +68,7 @@ msgstr "Κενός δίσκος"
 msgid "Burning device"
 msgstr "Συσκευή εγγραφής"
 
-#: ../xfburn/xfburn-blank-dialog.c:222
-#: ../xfburn/xfburn-device-box.c:190
+#: ../xfburn/xfburn-blank-dialog.c:222 ../xfburn/xfburn-device-box.c:190
 msgid "Blank mode"
 msgstr "Τύπος διαγραφής"
 
@@ -95,7 +94,8 @@ msgstr "Ε_ξαγωγή δίσκου:"
 msgid "_Blank"
 msgstr "_Διαγραφή"
 
-#. blanking can only be performed on blank discs, format and deformat are 
allowed to be blank ones
+#. blanking can only be performed on blank discs, format and deformat are
+#. allowed to be blank ones
 #: ../xfburn/xfburn-blank-dialog.c:355
 msgid "The inserted disc is already blank."
 msgstr "Ο δίσκος είναι ήδη κενός."
@@ -124,8 +124,7 @@ msgstr "Διαγραφή δίσκου..."
 msgid "Done"
 msgstr "Ολοκληρώθηκε"
 
-#: ../xfburn/xfburn-blank-dialog.c:443
-#: ../xfburn/xfburn-perform-burn.c:372
+#: ../xfburn/xfburn-blank-dialog.c:443 ../xfburn/xfburn-perform-burn.c:372
 #: ../xfburn/xfburn-progress-dialog.c:603
 msgid "Failure"
 msgstr "Απέτυχε"
@@ -143,13 +142,12 @@ msgid "Image"
 msgstr "Εικόνα"
 
 #: ../xfburn/xfburn-burn-data-composition-base-dialog.c:157
-#, fuzzy
 msgid "Show volume name"
-msgstr "Εισάγετε το νέο όνομα:"
+msgstr "Εμφάνιση ονόματος τόμου:"
 
 #: ../xfburn/xfburn-burn-data-composition-base-dialog.c:157
 msgid "Show a text entry for the name of the volume"
-msgstr ""
+msgstr "Εμφάνιση κειμένου για το όνομα του τόμου"
 
 #: ../xfburn/xfburn-burn-data-composition-base-dialog.c:183
 #: ../xfburn/xfburn-burn-audio-cd-composition-dialog.c:148
@@ -391,7 +389,8 @@ msgstr "Καθάρισμα"
 msgid "Clear the content of the composition"
 msgstr "Εκκαθάριση περιεχομένων σύνθεσης"
 
-#. {"import-session", "xfburn-import-session", N_("Import"), NULL, N_("Import 
existing session"),},
+#. {"import-session", "xfburn-import-session", N_("Import"), NULL, N_("Import
+#. existing session"),},
 #: ../xfburn/xfburn-data-composition.c:195
 msgid "Rename"
 msgstr "Μετονομασία"
@@ -433,7 +432,8 @@ msgstr "Ένα αρχείο με το ίδιο όνομα υπάρχει ήδη
 msgid "New directory"
 msgstr "Νέος κατάλογος"
 
-#. Note to translators: first %s is the date in "i18n" format 
(year-month-day), %d is a running number of compositions
+#. Note to translators: first %s is the date in "i18n" format (year-month-
+#. day), %d is a running number of compositions
 #: ../xfburn/xfburn-data-composition.c:966
 #, c-format
 msgid "Data %s~%d"
@@ -470,8 +470,7 @@ msgstr "Υπάρχει ήδη ένα αρχείο με όνομα \"%s\" στο
 msgid "Duplicate filename '%s' for '%s'"
 msgstr "Διπλό όνομα αρχείου '%s' για '%s'"
 
-#: ../xfburn/xfburn-device-box.c:174
-#: ../xfburn/xfburn-device-box.c:175
+#: ../xfburn/xfburn-device-box.c:174 ../xfburn/xfburn-device-box.c:175
 msgid "Show writers only"
 msgstr "Εμφάνιση μόνο εγγραφέων"
 
@@ -480,18 +479,16 @@ msgid "Show speed selection"
 msgstr "Εμφάνιση επιλογής ταχύτητας"
 
 #: ../xfburn/xfburn-device-box.c:179
-#, fuzzy
 msgid "Show speed selection combo"
-msgstr "Εμφάνιση της σελίδας των ιδιοτήτων [επιλογή καναλιού ] του συντονιστή."
+msgstr "Εμφάνιση συνδυασμών επιλογής ταχύτητας"
 
 #: ../xfburn/xfburn-device-box.c:182
 msgid "Show mode selection"
 msgstr "Εμφάνιση επιλογής λειτουργίας"
 
 #: ../xfburn/xfburn-device-box.c:183
-#, fuzzy
 msgid "Show mode selection combo"
-msgstr "Εμφάνιση της σελίδας των ιδιοτήτων [επιλογή καναλιού ] του συντονιστή."
+msgstr "Εμφάνιση συνδυασμών επιλογής λειτουργίας"
 
 #: ../xfburn/xfburn-device-box.c:186
 msgid "Is it a valid combination"
@@ -505,8 +502,7 @@ msgstr "Είναι έγκυρος ο

[Xfce4-commits] l10n: Updated Croatian (hr) translation to 60%

2011-01-07 Thread Transifex
Updating branch refs/heads/master
 to e5587ba0ee21d59b82b13f945e5c3c36490e436e (commit)
   from eb1ac8a8b537239605e5b232fed0080b7e83c183 (commit)

commit e5587ba0ee21d59b82b13f945e5c3c36490e436e
Author: Ivica  Kolić 
Date:   Fri Jan 7 11:32:27 2011 +0100

l10n: Updated Croatian (hr) translation to 60%

New status: 161 messages complete with 0 fuzzies and 105 untranslated.

Transmitted-via: Transifex (translations.xfce.org).

 po/hr.po |  366 ++
 1 files changed, 151 insertions(+), 215 deletions(-)

diff --git a/po/hr.po b/po/hr.po
index 8a90c03..ed22e30 100644
--- a/po/hr.po
+++ b/po/hr.po
@@ -3,21 +3,19 @@
 # This file is distributed under the same license as the xfce-settings package.
 #  Ivica Kolić, 2010.
 #  Ivica Kolić <>, 2010.
-#: ../xfsettingsd/main.c:127
 msgid ""
 msgstr ""
 "Project-Id-Version: xfce 4-settings\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-08-28 23:05+0200\n"
+"POT-Creation-Date: 2011-01-07 05:10+\n"
 "PO-Revision-Date: 2010-06-05 17:46+0200\n"
 "Last-Translator: Ivica Kolić <>\n"
 "Language-Team: Croatian <>\n"
-"Language: hr\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"
+"Language: hr\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"
 
 #: ../dialogs/accessibility-settings/accessibility-dialog.glade.h:1
 msgid "Acceleration _profile:"
@@ -81,11 +79,8 @@ msgid "The amount of time, in milliseconds, required between 
keystrokes"
 msgstr "Vrijeme,u milisekundama potrebno između pritisaka tipke"
 
 #: ../dialogs/accessibility-settings/accessibility-dialog.glade.h:16
-msgid ""
-"The amount of time, in milliseconds, that must elapse before a keystroke "
-"will be accepted"
-msgstr ""
-"Vrijeme,u milisekundama,koje mora proći da pritisak tipke bude prihvaćen"
+msgid "The amount of time, in milliseconds, that must elapse before a 
keystroke will be accepted"
+msgstr "Vrijeme,u milisekundama,koje mora proći da pritisak tipke bude 
prihvaćen"
 
 #: ../dialogs/accessibility-settings/accessibility-dialog.glade.h:17
 msgid "The maximum pointer speed after acceleration"
@@ -100,9 +95,7 @@ msgid "The time, in milliseconds, between repeated motion 
events"
 msgstr ""
 
 #: ../dialogs/accessibility-settings/accessibility-dialog.glade.h:20
-msgid ""
-"The time, in milliseconds, between the initial key press and first repeated "
-"motion event"
+msgid "The time, in milliseconds, between the initial key press and first 
repeated motion event"
 msgstr ""
 
 #: ../dialogs/accessibility-settings/accessibility-dialog.glade.h:21
@@ -110,15 +103,11 @@ msgid "The time, in milliseconds, to get to maximum speed"
 msgstr "vrijeme,u milisekundama, za postizanje maksimalne brzine"
 
 #: ../dialogs/accessibility-settings/accessibility-dialog.glade.h:22
-msgid ""
-"To help prevent accidental keystrokes, slow keys requires that a key is held "
-"for a certain minimum amount of time before the keystroke will be accepted"
+msgid "To help prevent accidental keystrokes, slow keys requires that a key is 
held for a certain minimum amount of time before the keystroke will be accepted"
 msgstr ""
 
 #: ../dialogs/accessibility-settings/accessibility-dialog.glade.h:23
-msgid ""
-"To help prevent accidental multiple keystrokes, bounce keys imposes a "
-"minimum delay between keystrokes"
+msgid "To help prevent accidental multiple keystrokes, bounce keys imposes a 
minimum delay between keystrokes"
 msgstr ""
 
 #: ../dialogs/accessibility-settings/accessibility-dialog.glade.h:24
@@ -134,28 +123,19 @@ msgid "Use slow _keys"
 msgstr ""
 
 #: ../dialogs/accessibility-settings/accessibility-dialog.glade.h:27
-msgid ""
-"When selected, modifier keys (such as Control, Alt, and Shift) do not need "
-"to be held down (they can be pressed and then released) when multiple keys "
-"would normally need to be pressed at the same time"
+msgid "When selected, modifier keys (such as Control, Alt, and Shift) do not 
need to be held down (they can be pressed and then released) when multiple keys 
would normally need to be pressed at the same time"
 msgstr ""
 
 #: ../dialogs/accessibility-settings/accessibility-dialog.glade.h:28
-msgid ""
-"When selected, modifier keys (such as Control, Alt, and Shift) will remain "
-"locked in the pressed state until pressed again"
+msgid "When selected, modifier keys (such as Control, Alt, and Shift) will 
remain locked in the pressed state until pressed again"
 msgstr ""
 
 #: ../dialogs/accessibility-settings/accessibility-dialog.glade.h:29
-msgid ""
-"When selected, the \"sticky keys\" feature will be disabled if two keys are "
-"pressed simultaneously"
+msgid "When selected, the \"sticky keys\" feature will be disabled if two keys 
are

[Xfce4-commits] l10n: Updated Croatian (hr) translation to 68%

2011-01-07 Thread Transifex
Updating branch refs/heads/master
 to 8f1012ae472570cb7e6391c772873c0b8810d28c (commit)
   from 437bdde34251002724caa38e3f429a5f4f8e5fdc (commit)

commit 8f1012ae472570cb7e6391c772873c0b8810d28c
Author: Ivica  Kolić 
Date:   Fri Jan 7 11:12:08 2011 +0100

l10n: Updated Croatian (hr) translation to 68%

New status: 59 messages complete with 0 fuzzies and 27 untranslated.

Transmitted-via: Transifex (translations.xfce.org).

 po/hr.po |  117 +++--
 1 files changed, 105 insertions(+), 12 deletions(-)

diff --git a/po/hr.po b/po/hr.po
index 43b7397..6c13b43 100644
--- a/po/hr.po
+++ b/po/hr.po
@@ -7,15 +7,104 @@ msgid ""
 msgstr ""
 "Project-Id-Version: thunar 1.0.1\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-06-06 22:08+\n"
+"POT-Creation-Date: 2011-01-07 05:12+\n"
 "PO-Revision-Date: 2010-06-07 01:02+0200\n"
-"Last-Translator:  Ivica Kolić <>\n"
+"Last-Translator: Ivica Kolić <>\n"
 "Language-Team: Croatian <>\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"
+"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"
+
+#: ../thunar-vfs/exo-hal.c:434
+#, c-format
+msgid "External %s Drive"
+msgstr ""
+
+#: ../thunar-vfs/exo-hal.c:436
+#, c-format
+msgid "%s Drive"
+msgstr ""
+
+#: ../thunar-vfs/exo-hal.c:445
+msgid "External Floppy Drive"
+msgstr ""
+
+#: ../thunar-vfs/exo-hal.c:447
+msgid "Floppy Drive"
+msgstr ""
+
+#: ../thunar-vfs/exo-hal.c:451
+msgid "Compact Flash Drive"
+msgstr ""
+
+#: ../thunar-vfs/exo-hal.c:455
+msgid "Memory Stick Drive"
+msgstr ""
+
+#: ../thunar-vfs/exo-hal.c:459
+msgid "Smart Media Drive"
+msgstr ""
+
+#: ../thunar-vfs/exo-hal.c:463
+msgid "SD/MMC Drive"
+msgstr ""
+
+#: ../thunar-vfs/exo-hal.c:467
+msgid "Zip Drive"
+msgstr ""
+
+#: ../thunar-vfs/exo-hal.c:471
+msgid "Jaz Drive"
+msgstr ""
+
+#: ../thunar-vfs/exo-hal.c:475
+msgid "Pen Drive"
+msgstr ""
+
+#. TRANSLATORS: This string requires special care as %s may be the empty
+#. string. Trailing/leading whitespace will be removed.
+#: ../thunar-vfs/exo-hal.c:484
+#, c-format
+msgid "%s Music Player"
+msgstr ""
+
+#. TRANSLATORS: This string requires special care as %s may be the empty
+#. string. Trailing/leading whitespace will be removed.
+#: ../thunar-vfs/exo-hal.c:499
+#, c-format
+msgid "%s Digital Camera"
+msgstr "%s Digitalna kamera"
+
+#. last fallback to "Drive"
+#: ../thunar-vfs/exo-hal.c:522
+msgid "Drive"
+msgstr ""
+
+#: ../thunar-vfs/exo-hal.c:739
+#, c-format
+msgid "Blank %s Disc"
+msgstr "Prazni %s disk"
+
+#: ../thunar-vfs/exo-hal.c:741
+#, c-format
+msgid "%s Disc"
+msgstr "%s Disk"
+
+#. special case for pure audio disc
+#: ../thunar-vfs/exo-hal.c:746
+msgid "Audio CD"
+msgstr "Audio CD"
+
+#: ../thunar-vfs/exo-hal.c:782
+#, c-format
+msgid "%s Removable Volume"
+msgstr "%sUklonjivi medij"
+
+#: ../thunar-vfs/exo-hal.c:784
+#, c-format
+msgid "%s Volume"
+msgstr "%s Medij"
 
 #: ../thunar-vfs/exo-mount-point.c:218 ../thunar-vfs/exo-mount-point.c:247
 #: ../thunar-vfs/exo-mount-point.c:435
@@ -29,18 +118,20 @@ msgstr "Neuspjeh u otvaranju datoteke \"%s\": %s"
 msgid "Failed to read folder contents"
 msgstr "Neuspjehu čitanju sadržaja mape"
 
-#: ../thunar-vfs/thunar-vfs-exec.c:590
+#: ../thunar-vfs/thunar-vfs-exec.c:603
 #, c-format
 msgid "Unknown error"
 msgstr "Nepoznata greška"
 
-#. TRANSLATORS: `Exec' is a field name in a .desktop file. You should leave it 
as-is.
+#. TRANSLATORS: `Exec' is a field name in a .desktop file. You should leave it
+#. as-is.
 #: ../thunar-vfs/thunar-vfs-info.c:390
 #, c-format
 msgid "No Exec field specified"
 msgstr ""
 
-#. TRANSLATORS: `URL' is a field name in a .desktop file. You should leave it 
as-is.
+#. TRANSLATORS: `URL' is a field name in a .desktop file. You should leave it
+#. as-is.
 #: ../thunar-vfs/thunar-vfs-info.c:409
 #, c-format
 msgid "No URL field specified"
@@ -191,7 +282,8 @@ msgstr "Neuspjeh u određivanju informacija datoteke za 
\"%s\""
 msgid "Failed to create directory \"%s\""
 msgstr "Neuspjeh u stvaranju direktorija \"%s\""
 
-#. TRANSLATORS: FIFO is an acronym for First In, First Out. You can replace 
the word with `pipe'.
+#. TRANSLATORS: FIFO is an acronym for First In, First Out. You can replace
+#. the word with `pipe'.
 #: ../thunar-vfs/thunar-vfs-io-local-xfer.c:519
 #, c-format
 msgid "Failed to create named fifo \"%s\""
@@ -273,13 +365,13 @@ msgstr "Želite li prepisati?"
 msgid "Do you want to skip it?"
 msgstr "Želite li preskočiti?"
 
-#: ../thunar-vfs/thunar-vfs-mime-database.c:1684
+#: ../thunar-vfs/thunar-vfs-mime-database.c:1683
 #, c-format
 msgid "Failed to load application from file %s"
 msgstr "Neuspjelo učitavanje programa iz datoteke %s"
 
 #. tell the user that we failed 

[Xfce4-commits] l10n: Updated Croatian (hr) translation to 73%

2011-01-07 Thread Transifex
Updating branch refs/heads/master
 to 1d26f3937f9b0497c36789c17784a7b0f30923be (commit)
   from b2297d07f852fa81aa6e7edef6e30707cfe21f5b (commit)

commit 1d26f3937f9b0497c36789c17784a7b0f30923be
Author: Ivica  Kolić 
Date:   Fri Jan 7 11:03:04 2011 +0100

l10n: Updated Croatian (hr) translation to 73%

New status: 202 messages complete with 0 fuzzies and 72 untranslated.

Transmitted-via: Transifex (translations.xfce.org).

 po/hr.po |  216 +-
 1 files changed, 116 insertions(+), 100 deletions(-)

diff --git a/po/hr.po b/po/hr.po
index 638a172..42646eb 100644
--- a/po/hr.po
+++ b/po/hr.po
@@ -2,21 +2,21 @@
 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
 # This file is distributed under the same license as the PACKAGE package.
 # FIRST AUTHOR , YEAR.
-#
+# 
 msgid ""
 msgstr ""
 "Project-Id-Version: exo\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-07-21 18:14+0200\n"
+"POT-Creation-Date: 2011-01-07 05:00+\n"
 "PO-Revision-Date: 2010-05-19 16:42+0100\n"
 "Last-Translator: Petar \n"
 "Language-Team: Croatian \n"
-"Language: hr\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=utf-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Poedit-Language: Croatian\n"
 "X-Poedit-Country: CROATIA\n"
+"Language: hr\n"
+"X-Poedit-Language: Croatian\n"
 
 #: ../exo/exo-cell-renderer-ellipsized-text.c:131
 #: ../exo/exo-cell-renderer-icon.c:144
@@ -64,11 +64,8 @@ msgstr "Neuspješno čitanje datoteke \"%s\": %s"
 
 #: ../exo/exo-gdk-pixbuf-extensions.c:890
 #, c-format
-msgid ""
-"Failed to load image \"%s\": Unknown reason, probably a corrupt image file"
-msgstr ""
-"Neuspješno učitavanje slike  \"%s\": Nepoznati razlog, vjerojatno oštećena "
-"slika"
+msgid "Failed to load image \"%s\": Unknown reason, probably a corrupt image 
file"
+msgstr "Neuspješno učitavanje slike  \"%s\": Nepoznati razlog, vjerojatno 
oštećena slika"
 
 #: ../exo/exo-gtk-extensions.c:227
 #, c-format
@@ -288,8 +285,7 @@ msgid "The model for the icon view"
 msgstr ""
 
 #: ../exo/exo-icon-view.c:777
-msgid ""
-"How the text and icon of each item are positioned relative to each other"
+msgid "How the text and icon of each item are positioned relative to each 
other"
 msgstr "Pozicija teksta i ikona svake stavke u odnosu jedne na drugu"
 
 #: ../exo/exo-icon-view.c:809
@@ -337,9 +333,7 @@ msgid "Single Click Timeout"
 msgstr ""
 
 #: ../exo/exo-icon-view.c:889 ../exo/exo-tree-view.c:172
-msgid ""
-"The amount of time after which the item under the mouse cursor will be "
-"selected automatically in single click mode"
+msgid "The amount of time after which the item under the mouse cursor will be 
selected automatically in single click mode"
 msgstr ""
 
 #: ../exo/exo-icon-view.c:904
@@ -399,9 +393,7 @@ msgid "_Add a new toolbar"
 msgstr "_Dodaj novu alatnu traku"
 
 #: ../exo/exo-toolbars-editor.c:221
-msgid ""
-"Drag an item onto the toolbars above to add it, from the toolbars in the "
-"items table to remove it."
+msgid "Drag an item onto the toolbars above to add it, from the toolbars in 
the items table to remove it."
 msgstr ""
 
 #: ../exo/exo-toolbars-editor.c:538
@@ -531,7 +523,7 @@ msgid "  --strip-content   Remove node contents from XML 
files\n"
 msgstr ""
 
 #: ../exo-csource/main.c:304 ../exo-desktop-item-edit/main.c:177
-#: ../exo-open/main.c:258
+#: ../exo-open/main.c:471
 #, c-format
 msgid ""
 "Copyright (c) %s\n"
@@ -540,9 +532,14 @@ msgid ""
 "Written by Benedikt Meurer .\n"
 "\n"
 msgstr ""
+"Copyright (c) %s\n"
+" os-cillation e.K. Sva prava pridržana..\n"
+"\n"
+"Napisao Benedikt Meurer .\n"
+"\n"
 
 #: ../exo-csource/main.c:308 ../exo-desktop-item-edit/main.c:181
-#: ../exo-open/main.c:262
+#: ../exo-open/main.c:475
 #, c-format
 msgid ""
 "%s comes with ABSOLUTELY NO WARRANTY,\n"
@@ -553,7 +550,7 @@ msgid ""
 msgstr ""
 
 #: ../exo-csource/main.c:312 ../exo-desktop-item-edit/main.c:185
-#: ../exo-open/main.c:266
+#: ../exo-open/main.c:479
 #, c-format
 msgid "Please report bugs to <%s>.\n"
 msgstr "Molimo prijavite bugove na  <%s>.\n"
@@ -598,38 +595,44 @@ msgstr "Skripte ljuske"
 msgid "Create Launcher %s"
 msgstr "Napravi pokretač %s"
 
-#. TRANSLATORS: Label in "Create Launcher"/"Create Link" dialog, make sure to 
avoid mnemonic conflicts
+#. TRANSLATORS: Label in "Create Launcher"/"Create Link" dialog, make sure to
+#. avoid mnemonic conflicts
 #: ../exo-desktop-item-edit/exo-die-editor.c:297
 msgid "_Name:"
 msgstr "_Naziv:"
 
-#. TRANSLATORS: Label in "Create Launcher"/"Create Link" dialog, make sure to 
avoid mnemonic conflicts
+#. TRANSLATORS: Label in "Create Launcher"/"Create Link" dialog, make sure to
+#. avoid mnemonic conflicts
 #: ../exo-desktop-item-edit/exo-die-editor.c:313
 msgid "C_omment:"
 msgstr "_Komentar:"
 
-#. TRANSLATORS: Label in "Create Launcher" dialog, make sure to avoid mnemonic 
conflicts
+#. TRANSLATORS: Label in "Create Launcher" dialog, make sure to avoid mnemonic
+#. conflicts

[Xfce4-commits] l10n: Updated Greek (el) translation to 100%

2011-01-07 Thread Transifex
Updating branch refs/heads/master
 to 23888e1fffc182a2e1faaec33cd6646e068f4bfc (commit)
   from 4e2513107707d2308638b864ca01de9e8b5efa26 (commit)

commit 23888e1fffc182a2e1faaec33cd6646e068f4bfc
Author: forfolias 
Date:   Fri Jan 7 10:43:36 2011 +0100

l10n: Updated Greek (el) translation to 100%

New status: 133 messages complete with 0 fuzzies and 0 untranslated.

Transmitted-via: Transifex (translations.xfce.org).

 po/el.po |  265 --
 1 files changed, 119 insertions(+), 146 deletions(-)

diff --git a/po/el.po b/po/el.po
index 5314148..4225b3d 100644
--- a/po/el.po
+++ b/po/el.po
@@ -1,30 +1,28 @@
 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
 # This file is distributed under the same license as the PACKAGE package.
-#
+# 
 # Evaggelos Balaskas , 2009.
 msgid ""
 msgstr ""
 "Project-Id-Version: gigolo\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-08-01 12:06+0200\n"
+"POT-Creation-Date: 2011-01-07 05:05+\n"
 "PO-Revision-Date: 2010-01-29 23:19+0200\n"
 "Last-Translator: Evaggelos Balaskas \n"
 "Language-Team: Greek \n"
-"Language: el\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Lokalize 0.2\n"
+"Language: el\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 "X-Poedit-Language: Greek\n"
-"X-Poedit-Country: GREECE\n"
 "X-Poedit-SourceCharset: utf-8\n"
+"X-Poedit-Country: GREECE\n"
+"X-Generator: Lokalize 0.2\n"
 
 #: ../src/main.c:46
 msgid "Ignore running instances, enforce opening a new instance"
-msgstr ""
-"Αγνόησε τις εκτελούμενα στιγμιότυπα, επιβολή ανοίγματος ενός νέου "
-"στιγμιότυπου"
+msgstr "Αγνόησε τις εκτελούμενα στιγμιότυπα, επιβολή ανοίγματος ενός νέου 
στιγμιότυπου"
 
 #: ../src/main.c:47
 msgid "Print a list of supported URI schemes"
@@ -40,8 +38,7 @@ msgstr "Εμφάνιση πληροφορίες έκδοσης"
 
 #: ../src/main.c:79
 msgid "- a simple frontend to easily connect to remote filesystems"
-msgstr ""
-"- μία απλή εφαρμογή για να συνδέονται εύκολα απομακρυσμένα συστήματα αρχείων"
+msgstr "- μία απλή εφαρμογή για να συνδέονται εύκολα απομακρυσμένα συστήματα 
αρχείων"
 
 #: ../src/common.c:77
 msgid "Unix Device"
@@ -75,7 +72,7 @@ msgstr "WebDAV"
 msgid "WebDAV (secure)"
 msgstr "WebDAV (ασφαλές)"
 
-#: ../src/common.c:93 ../src/window.c:1367
+#: ../src/common.c:93 ../src/window.c:1395
 msgid "Network"
 msgstr "Δίκτυο"
 
@@ -91,168 +88,161 @@ msgstr "Εικόνες"
 msgid "Custom Location"
 msgstr "Προσαρμοσμένη τοποθεσία"
 
-#: ../src/window.c:257
+#: ../src/window.c:261
 #, c-format
 msgid "Connecting to \"%s\""
 msgstr "Σύνδεση στο \"%s\""
 
-#: ../src/window.c:425 ../gigolo.desktop.in.h:1
-msgid "A simple frontend to easily connect to remote filesystems"
-msgstr ""
-"Ένα απλό εργαλείο για την εύκολο σύνδεση σε απομακρυσμένα συστήματα αρχείων"
+#: ../src/window.c:429
+msgid "A simple frontend to easily connect/mount to local and remote 
filesystems"
+msgstr "Ένα απλό εργαλείο διεπαφής για την εύκολη σύνδεση/προσάρτηση τοπικών 
και απομακρυσμένων συστημάτων αρχείων"
 
-#: ../src/window.c:426
-msgid "Copyright 2008-2010 Enrico Tröger"
-msgstr "Δικαιώματα 2008-2010 Enrico Tröger"
+#: ../src/window.c:430
+msgid "Copyright 2008-2011 Enrico Tröger"
+msgstr "Δικαιώματα 2008-2011 Enrico Tröger"
 
-#: ../src/window.c:429
+#: ../src/window.c:433
 msgid "translator-credits"
 msgstr "Evaggelos Balaskas , 2009"
 
-#: ../src/window.c:461
+#: ../src/window.c:465
 msgid "Gigolo can use the following protocols provided by GVfs:"
-msgstr ""
-"Το gigolo δεν μπορεί να κάνει χρήση των ακόλουθων πρωτοκόλλων που παρέχει το "
-"GVfs:"
+msgstr "Το gigolo δεν μπορεί να κάνει χρήση των ακόλουθων πρωτοκόλλων που 
παρέχει το GVfs:"
 
-#: ../src/window.c:558
+#: ../src/window.c:562
 #, c-format
 msgid "The command '%s' failed"
 msgstr "Η εντολή '%s' απέτυχε"
 
-#: ../src/window.c:559 ../src/window.c:686 ../src/bookmarkeditdialog.c:214
-#: ../src/bookmarkeditdialog.c:233 ../src/bookmarkeditdialog.c:246
-#: ../src/bookmarkeditdialog.c:257 ../src/bookmarkeditdialog.c:268
+#: ../src/window.c:563 ../src/window.c:700 ../src/bookmarkeditdialog.c:220
+#: ../src/bookmarkeditdialog.c:239 ../src/bookmarkeditdialog.c:252
+#: ../src/bookmarkeditdialog.c:263 ../src/bookmarkeditdialog.c:274
 msgid "Error"
 msgstr "Σφάλμα"
 
-#: ../src/window.c:1153
+#: ../src/window.c:613
+msgid "Edit _Bookmark"
+msgstr "Επεξεργασία _σελοδοδείκτη"
+
+#: ../src/window.c:615 ../src/window.c:1189 ../src/browsenetworkpanel.c:453
+#: ../src/browsenetworkpanel.c:497
+msgid "Create _Bookmark"
+msgstr "Δημιουργία συνδέσμου"
+
+#: ../src/window.c:1181
 msgid "_File"
 msgstr "_Αρχείο"
 
-#: ../src/window.c:1154
+#: ../src/window.c:1182
 msgid "_Edit"
 msgstr "_Επεξεργασία"
 
-#: ../src/window.c:1155
+#: ../src/window.c:1183
 msgid "_Actions"
 msgstr "Ε_νέργειες"
 
-#: ../src/window.c:1156
+#: ../src/window.c:1184
 msgid "_View"
 msgstr "_Εμφάνιση"
 
-#: ../src/window.c:1157
+#: ../src/

[Xfce4-commits] l10n: Updated Greek (el) translation to 100%

2011-01-07 Thread Transifex
Updating branch refs/heads/master
 to 03c0168b109fbf4db03f55714fcf63358c6150a7 (commit)
   from f463e8f229221572aefbb55e2d23dc821f67505a (commit)

commit 03c0168b109fbf4db03f55714fcf63358c6150a7
Author: forfolias 
Date:   Fri Jan 7 10:41:11 2011 +0100

l10n: Updated Greek (el) translation to 100%

New status: 270 messages complete with 0 fuzzies and 0 untranslated.

Transmitted-via: Transifex (translations.xfce.org).

 po/el.po |  249 ++
 1 files changed, 72 insertions(+), 177 deletions(-)

diff --git a/po/el.po b/po/el.po
index a053201..5897c98 100644
--- a/po/el.po
+++ b/po/el.po
@@ -3,12 +3,12 @@
 # This file is distributed under the same license as the Terminal package.
 # Stavros Giannouris , 2005-2006, 2009
 # Stathis Kamperis , 2006.
-#
+# 
 msgid ""
 msgstr ""
 "Project-Id-Version: Terminal git version\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-04-12 19:57+0200\n"
+"POT-Creation-Date: 2011-01-07 05:01+\n"
 "PO-Revision-Date: 2010-01-29 14:09+0200\n"
 "Last-Translator: Evaggelos Balaskas \n"
 "Language-Team: Greek \n"
@@ -17,8 +17,8 @@ msgstr ""
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 "X-Poedit-Language: Greek\n"
-"X-Poedit-Country: GREECE\n"
 "X-Poedit-SourceCharset: utf-8\n"
+"X-Poedit-Country: GREECE\n"
 
 #: ../terminal/main.c:52
 msgid "Usage:"
@@ -89,9 +89,7 @@ msgstr "πλακίδιο"
 #: ../terminal/main.c:95
 #, c-format
 msgid "See the %s man page for full explanation of the options above."
-msgstr ""
-"Δείτε την %s σελίδα του manual για λεπτομερή εξήγηση όλων των επιλογών "
-"παραπάνω."
+msgstr "Δείτε την %s σελίδα του manual για λεπτομερή εξήγηση όλων των επιλογών 
παραπάνω."
 
 #: ../terminal/main.c:126 ../terminal/terminal-preferences.c:1262
 #: ../terminal/terminal-shortcut-editor.c:119 ../Terminal.desktop.in.in.h:1
@@ -123,7 +121,7 @@ msgstr ""
 "\n"
 "Παρακαλώ αναφέρετε σφάλματα στο <%s>.\n"
 
-#: ../terminal/main.c:250
+#: ../terminal/main.c:254
 #, c-format
 msgid "Unable to register terminal service: %s\n"
 msgstr "Δεν ήταν δυνατή η καταχώρηση της υπηρεσίας τερματικού: %s\n"
@@ -133,16 +131,20 @@ msgstr "Δεν ήταν δυνατή η καταχώρηση της υπηρεσ
 msgid "Invalid geometry string \"%s\"\n"
 msgstr "Μη έγκυρο αλφαριθμητικό γεωμετρίας \"%s\"\"\n"
 
-#: ../terminal/terminal-dbus.c:107
+#: ../terminal/terminal-dbus.c:113
 msgid "User id mismatch"
 msgstr "Το αναγνωριστικό χρήστη δεν ταιριάζει"
 
-#: ../terminal/terminal-dbus.c:133
+#: ../terminal/terminal-dbus.c:119
+msgid "Display mismatch"
+msgstr "Εμφάνιση αναντιστοιχίας"
+
+#: ../terminal/terminal-dbus.c:145
 #, c-format
 msgid "D-BUS message bus disconnected, exiting...\n"
 msgstr "Ο δίαυλος μηνυμάτων D-BUS αποσυνδέθηκε, έξοδος...\n"
 
-#: ../terminal/terminal-dbus.c:195
+#: ../terminal/terminal-dbus.c:207
 #, c-format
 msgid "Unable to register object %s"
 msgstr "Δεν ήταν δυνατή η εγγραφή του αντικειμένου %s"
@@ -162,22 +164,20 @@ msgstr "Επισκεφτείτε την ιστοσελίδα του terminal"
 #: ../terminal/terminal-dialogs.c:215
 #, c-format
 msgid "The %s user manual is not installed on your computer"
-msgstr ""
+msgstr "Το εγχειρίδιο χρήσης %s δεν είναι εγκατεστημένο στον υπολογιστή σας"
 
 #: ../terminal/terminal-dialogs.c:218
 #, c-format
-msgid ""
-"You can read the user manual online. This manual may however not exactly "
-"match your %s version."
-msgstr ""
+msgid "You can read the user manual online. This manual may however not 
exactly match your %s version."
+msgstr "Μπορείτε να διαβάσετε το εγχειρίδιο χρήσης διαδικτυακά. Το εγχειρίδιο 
αυτό μπορεί ωστόσο να μην ανταποκρίνεται ακριβώς την έκδοση σας %s."
 
 #: ../terminal/terminal-dialogs.c:220
 msgid "User manual is missing"
-msgstr ""
+msgstr "Λείπει το εγχειρίδιο χρήσης"
 
 #: ../terminal/terminal-dialogs.c:222
 msgid "_Read Online"
-msgstr ""
+msgstr "_Διάβασμα διαδικτυακά"
 
 #. display an error message to the user
 #: ../terminal/terminal-dialogs.c:302
@@ -186,95 +186,58 @@ msgstr "Το άνοιγμα του αναγνώστη τεκμηρίωσης α
 
 #: ../terminal/terminal-options.c:210
 #, c-format
-msgid ""
-"Option \"--default-display\" requires specifying the default X display as "
-"its parameter"
-msgstr ""
-"Η επιλογή \"--default-display\" απαιτεί τον προσδιορισμό του προκαθορισμένου "
-"X display ως παράμετρο"
+msgid "Option \"--default-display\" requires specifying the default X display 
as its parameter"
+msgstr "Η επιλογή \"--default-display\" απαιτεί τον προσδιορισμό του 
προκαθορισμένου X display ως παράμετρο"
 
 #: ../terminal/terminal-options.c:225
 #, c-format
-msgid ""
-"Option \"--default-working-directory\" requires specifying the default "
-"working directory as its parameter"
-msgstr ""
-"Η επιλογή \"--default-working-directory\" απαιτεί τον προσδιορισμό του "
-"προκαθορισμένου καταλόγου στον οποίο θα ξεκινήσει ως παράμετρο"
+msgid "Option \"--default-working-directory\" requires specifying the default 
working directory as its paramete

[Xfce4-commits] l10n: Updated Greek (el) translation to 100%

2011-01-07 Thread Transifex
Updating branch refs/heads/master
 to 152d479c9f29d5ba701a2238795442fdb48a3047 (commit)
   from 11708e7c48529b3e0526629ec64dfd6850c73a9d (commit)

commit 152d479c9f29d5ba701a2238795442fdb48a3047
Author: forfolias 
Date:   Fri Jan 7 10:37:04 2011 +0100

l10n: Updated Greek (el) translation to 100%

New status: 73 messages complete with 0 fuzzies and 0 untranslated.

Transmitted-via: Transifex (translations.xfce.org).

 po/el.po |   57 +++--
 1 files changed, 19 insertions(+), 38 deletions(-)

diff --git a/po/el.po b/po/el.po
index d28f796..6e89d47 100644
--- a/po/el.po
+++ b/po/el.po
@@ -2,7 +2,7 @@
 # Copyright (C) 2006-2007 Stephan Arts.
 # This file is distributed under the same license as the squeeze package.
 # Stavros Giannouris , 2007.
-#
+# 
 msgid ""
 msgstr ""
 "Project-Id-Version: squeeze git\n"
@@ -16,8 +16,8 @@ msgstr ""
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 "X-Poedit-Language: Greek\n"
-"X-Poedit-Country: GREECE\n"
 "X-Poedit-SourceCharset: utf-8\n"
+"X-Poedit-Country: GREECE\n"
 
 #: ../libsqueeze/archive.c:236
 msgid "Name"
@@ -39,18 +39,14 @@ msgstr "Δημιουργία και διαχείριση συμπιεσμένω
 msgid "Squeeze Archive Manager"
 msgstr "Squeeze διαχειριστής συμπιεσμένων αρχείων"
 
-#.
 #. * Could not open archive (mime type not supported or file did not exist)
 #. * Should be a more specific error message.
-#.
-#: ../src/application.c:160
-#: ../src/application.c:250
+#. 
+#: ../src/application.c:160 ../src/application.c:250
 msgid "Could not open archive, MIME-type unsupported or file did not exist"
 msgstr "Δεν είναι δυνατό το άνοιγμα αυτού του αρχείου. Ο τύπος αρχείου δεν 
υποστηρίζεται ή το αρχείο δεν υπάρχει."
 
-#: ../src/application.c:191
-#: ../src/main_window.c:826
-#: ../src/main_window.c:1260
+#: ../src/application.c:191 ../src/main_window.c:826 ../src/main_window.c:1260
 msgid ""
 "Squeeze cannot extract this archive type,\n"
 "the application to support this is missing."
@@ -58,15 +54,13 @@ msgstr ""
 "Το squeeze δε μπορεί να αποσυμπιέσει αυτό τον τύπο αρχείου.\n"
 "Η εφαρμογή που τον υποστηρίζει δεν είναι διαθέσιμη."
 
-#.
 #. * Could not create archive (mime type unsupported)
-#.
+#. 
 #: ../src/application.c:233
 msgid "Could not create archive, MIME-type unsupported"
 msgstr "Δεν ήταν δυνατή η δημιουργία του αρχείου, ο τύπος MIME δεν 
υποστηρίζεται"
 
-#: ../src/application.c:268
-#: ../src/main_window.c:874
+#: ../src/application.c:268 ../src/main_window.c:874
 msgid ""
 "Squeeze cannot add files to this archive type,\n"
 "the application to support this is missing."
@@ -74,23 +68,19 @@ msgstr ""
 "Το squeeze δε μπορεί να προσθέσει αρχεία σε αυτό τον τύπο αρχείου.\n"
 "Η εφαρμογή που τον υποστηρίζει δεν είναι διαθέσιμη."
 
-#: ../src/archive_store.c:249
-#: ../src/notebook.c:179
+#: ../src/archive_store.c:249 ../src/notebook.c:179
 msgid "Show full path"
 msgstr "Προβολή ολόκληρης της διαδρομής"
 
-#: ../src/archive_store.c:250
-#: ../src/notebook.c:180
+#: ../src/archive_store.c:250 ../src/notebook.c:180
 msgid "Show the full path strings for each entry"
 msgstr "Εμφάνιση πλήρους διαδρομής σε κάθε εγγραφή"
 
-#: ../src/archive_store.c:256
-#: ../src/notebook.c:186
+#: ../src/archive_store.c:256 ../src/notebook.c:186
 msgid "Show mime icons"
 msgstr "Προβολή εικονιδίων εφαρμογών"
 
-#: ../src/archive_store.c:257
-#: ../src/notebook.c:187
+#: ../src/archive_store.c:257 ../src/notebook.c:187
 msgid "Show the mime type icons for each entry"
 msgstr "Εμφάνιση εικονιδίων εφαρμογών σε κάθε εγγραφή "
 
@@ -102,19 +92,15 @@ msgstr "Προβολή εγγραφής καταλόγου"
 msgid "Show '..' to go to the parent directory"
 msgstr "Προβολή '..' για μετάβαση στο γονικό κατάλογο"
 
-#: ../src/archive_store.c:270
-#: ../src/notebook.c:193
+#: ../src/archive_store.c:270 ../src/notebook.c:193
 msgid "Sort folders before files"
 msgstr "Ταξινόμηση φακέλων πριν τα αρχεία"
 
-#: ../src/archive_store.c:271
-#: ../src/notebook.c:194
+#: ../src/archive_store.c:271 ../src/notebook.c:194
 msgid "The folders will be put at the top of the list"
 msgstr "Οι φάκελοι θα ταξινομηθούν στην κορυφή της λίστας"
 
-#: ../src/archive_store.c:277
-#: ../src/archive_store.c:278
-#: ../src/notebook.c:200
+#: ../src/archive_store.c:277 ../src/archive_store.c:278 ../src/notebook.c:200
 #: ../src/notebook.c:201
 msgid "Sort text case sensitive"
 msgstr "Ταξινόμηση με βάση το κείμενο"
@@ -135,8 +121,7 @@ msgstr "Όλα τα αρχεία"
 msgid "Selected files"
 msgstr "Επιλεγμένα αρχεία"
 
-#: ../src/extract_dialog.c:100
-#: ../src/main_window.c:451
+#: ../src/extract_dialog.c:100 ../src/main_window.c:451
 #: ../src/main_window.c:1219
 msgid "Extract"
 msgstr "Αποσυμπίεση"
@@ -230,13 +215,11 @@ msgstr "_Προβολή"
 msgid "_Help"
 msgstr "_Βοήθεια"
 
-#: ../src/main_window.c:443
-#: ../src/main_window.c:852
+#: ../src/main_window.c:443 ../src/main_window.c:852
 msgid "Add files"
 msgstr "Προσθήκη αρχείων"
 
-#: ../src/

[Xfce4-commits] l10n: Updated Greek (el) translation to 100%

2011-01-07 Thread Transifex
Updating branch refs/heads/master
 to 6ef9a84761f72a1023d86faf10d2ebbcb0ad182a (commit)
   from 2a22d2745aeb9036da978eaa68e09f697935b665 (commit)

commit 6ef9a84761f72a1023d86faf10d2ebbcb0ad182a
Author: forfolias 
Date:   Fri Jan 7 10:34:25 2011 +0100

l10n: Updated Greek (el) translation to 100%

New status: 198 messages complete with 0 fuzzies and 0 untranslated.

Transmitted-via: Transifex (translations.xfce.org).

 po/el.po |  234 +-
 1 files changed, 108 insertions(+), 126 deletions(-)

diff --git a/po/el.po b/po/el.po
index dd05e57..36262c9 100644
--- a/po/el.po
+++ b/po/el.po
@@ -7,18 +7,18 @@ msgid ""
 msgstr ""
 "Project-Id-Version: xfce4-power-manager git\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-01-06 11:02+\n"
+"POT-Creation-Date: 2011-01-07 05:03+\n"
 "PO-Revision-Date: 2010-03-26 00:12+0200\n"
 "Last-Translator: Evaggelos Balaskas \n"
 "Language-Team: Greek \n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=utf-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Poedit-Country: GREECE\n"
-"X-Generator: Lokalize 0.2\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 "X-Poedit-Language: Greek\n"
 "X-Poedit-SourceCharset: utf-8\n"
+"X-Poedit-Country: GREECE\n"
+"X-Generator: Lokalize 0.2\n"
 
 #: ../data/interfaces/xfpm-settings.ui.h:1
 msgid "Actions"
@@ -110,7 +110,7 @@ msgstr "Να εμφανίζονται ειδοποιήσεις σχετικά μ
 
 #: ../data/interfaces/xfpm-settings.ui.h:21
 msgid "Spin down hard disks"
-msgstr ""
+msgstr "Μείωση αυτοστροφορμής σκληρών δίσκων"
 
 #: ../data/interfaces/xfpm-settings.ui.h:22
 msgid "Standby"
@@ -197,9 +197,8 @@ msgstr "Δευτερόλεπτα"
 
 #: ../settings/xfpm-settings.c:761 ../settings/xfpm-settings.c:948
 #: ../settings/xfpm-settings.c:1410
-#, fuzzy
 msgid "Hibernate and suspend operations not supported"
-msgstr "Οι λειτουργίες αδρανοποίηση και αναστολή δεν επιτρέπονται"
+msgstr "Οι λειτουργίες αδρανοποίηση και αναστολή δεν υποστηρίζονται"
 
 #: ../settings/xfpm-settings.c:766 ../settings/xfpm-settings.c:953
 #: ../settings/xfpm-settings.c:1415
@@ -222,7 +221,7 @@ msgstr "Κλείδωμα οθόνης"
 
 #: ../settings/xfpm-settings.c:918 ../settings/xfpm-settings.c:1056
 msgid "Spinning down hard disks permission denied"
-msgstr ""
+msgstr "Άρνηση άδειας μείωσης αυτοστροφορμής σκληρών δίσκων"
 
 #: ../settings/xfpm-settings.c:1096
 msgid "Always show icon"
@@ -245,18 +244,16 @@ msgid "Disable Display Power Management Signaling (DPMS), 
e.g don't attempt to s
 msgstr "Απενεργοποίηση των σημάτων διαχείρισης ρεύματος της οθόνης (DPMS), 
π.χ. καμία προσπάθεια απενεργοποίησης ή κλεισίματος της οθόνης."
 
 #: ../settings/xfpm-settings.c:1319
-#, fuzzy
 msgid "Suspend operation not supported"
-msgstr "Δεν επιτρέπεται η λειτουργία αναστολής"
+msgstr "Η λειτουργία αναστολής  δεν υποστηρίζεται"
 
 #: ../settings/xfpm-settings.c:1325
 msgid "Suspend operation not permitted"
 msgstr "Δεν επιτρέπεται η λειτουργία αναστολής"
 
 #: ../settings/xfpm-settings.c:1331
-#, fuzzy
 msgid "Hibernate operation not supported"
-msgstr "Δεν επιτρέπεται η λειτουργία αδρανοποίησης"
+msgstr "Η λειτουργία αδρανοποίησης  δεν υποστηρίζεται"
 
 #: ../settings/xfpm-settings.c:1336
 msgid "Hibernate operation not permitted"
@@ -353,29 +350,25 @@ msgid "Quit"
 msgstr "Τερματισμός"
 
 #: ../src/xfpm-power.c:422
-#, fuzzy
 msgid "All running instances of the power manager will exit"
-msgstr "Επανεκκίνηση του τρέχοντος στιγμιότυπου του διαχειριστή ρεύματος xfce"
+msgstr "Όλα τα εκτελούμενα στιγμιότυπα του διαχειριστή ρεύματος θα 
τερματιστούν"
 
 #: ../src/xfpm-power.c:424
-#, fuzzy
 msgid "Quit Xfce power manager?"
-msgstr "Τερματισμός του διαχειριστής ρεύματος xfce"
+msgstr "Τερματισμός του διαχειριστής ρεύματος xfce;"
 
 #. Power information
 #: ../src/xfpm-power.c:494 ../src/xfpm-power-info.c:818
-#, fuzzy
 msgid "Power Information"
-msgstr "Πληροφορίες έκδοσης"
+msgstr "Πληροφορίες ενέργειας"
 
 #: ../src/xfpm-power.c:618
 msgid "Hibernate the system"
 msgstr "Αδρανοποίηση του συστήματος"
 
 #: ../src/xfpm-power.c:629
-#, fuzzy
 msgid "Suspend the system"
-msgstr "Σφάλμα συστήματος"
+msgstr "Αναστολή συστήματος"
 
 #: ../src/xfpm-power.c:639
 msgid "Shutdown the system"
@@ -390,19 +383,17 @@ msgid "System is running on low power"
 msgstr "Το σύστημα τρέχει σε λίγο ρεύμα"
 
 #: ../src/xfpm-power.c:858
-#, fuzzy
 msgid "Battery charge level is low"
 msgstr "Χαμηλή φόρτιση της μπαταρίας σας"
 
 #: ../src/xfpm-power.c:1058 ../src/xfpm-power.c:1063
-#, fuzzy
 msgid "Adaptor is offline"
-msgstr "Ο χρήστης δεν είναι συνδεδεμένος."
+msgstr "Ο μετασχηματιστής ρεύματος δεν είναι συνδεδεμένος"
 
 #: ../src/xfpm-power.c:1059 ../src/xfpm-power.c:1064 ../src/xfpm-battery.c:323
-#, fuzzy, c-format
+#, c-format
 msgid "Adaptor is online"
-msgstr "Ο επιλεγμένος λογαριασμός δεν είναι συνδεδεμένος."
+msgstr "Ο μετασχηματιστής ρεύματος είναι συνδεδεμένος."
 
 #: ../src/xfpm-power.c:1507 ../src/xfpm-power.c:1528 ../src/xfp

[Xfce4-commits] l10n: Updated Croatian (hr) translation to 83%

2011-01-07 Thread Transifex
Updating branch refs/heads/master
 to 608ab6b4dd28776df505f08818fdcdb84e746e0c (commit)
   from 2a731e4c90293a3b5abc1e5bf1a80e8178fc6aa3 (commit)

commit 608ab6b4dd28776df505f08818fdcdb84e746e0c
Author: Ivica  Kolić 
Date:   Fri Jan 7 10:15:29 2011 +0100

l10n: Updated Croatian (hr) translation to 83%

New status: 166 messages complete with 0 fuzzies and 34 untranslated.

Transmitted-via: Transifex (translations.xfce.org).

 po/hr.po |  281 --
 1 files changed, 110 insertions(+), 171 deletions(-)

diff --git a/po/hr.po b/po/hr.po
index 3d2acb3..35d9978 100644
--- a/po/hr.po
+++ b/po/hr.po
@@ -7,16 +7,15 @@ msgid ""
 msgstr ""
 "Project-Id-Version: xfdesktop\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-12-05 16:00+0100\n"
+"POT-Creation-Date: 2011-01-07 05:11+\n"
 "PO-Revision-Date: 2010-05-27 22:41+0200\n"
-"Last-Translator:  Ivica Kolić <>\n"
+"Last-Translator: Ivica Kolić <>\n"
 "Language-Team: Croatian hr<>\n"
-"Language: \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"
+"Language: \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"
 
 #: ../common/xfdesktop-common.c:96 ../common/xfdesktop-common.c:200
 #, c-format
@@ -65,8 +64,7 @@ msgstr "Napravi/Učitaj Pozadinsku Listu"
 
 #: ../settings/main.c:511
 #, c-format
-msgid ""
-"File \"%s\" is not a valid backdrop list file.  Do you wish to overwrite it?"
+msgid "File \"%s\" is not a valid backdrop list file.  Do you wish to 
overwrite it?"
 msgstr "Datoteka \"%s\" nije valjana pozadinska lista. Želite li je zamjeniti?"
 
 #: ../settings/main.c:516
@@ -167,24 +165,23 @@ msgstr "Postavi ponašanje pozadine i izbornika i ikona 
radne poveršine"
 
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:1
 msgid "Adjustments"
-msgstr ""
+msgstr "Podešavanja"
 
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:2
-#, fuzzy
 msgid "Colors"
-msgstr "Radni prostor %d"
+msgstr "Boje"
 
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:3
 msgid "Image"
-msgstr ""
+msgstr "Slika"
 
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:4
 msgid "Images"
-msgstr ""
+msgstr "Slike"
 
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:5
 msgid "Add an image to the list"
-msgstr ""
+msgstr "Dodaj sliku na listu"
 
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:6
 #: ../settings/xfdesktop-settings-ui.glade.h:6
@@ -202,15 +199,15 @@ msgstr ""
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:9
 #: ../settings/xfdesktop-settings-ui.glade.h:8
 msgid "Centered"
-msgstr ""
+msgstr "Centrirano"
 
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:10
 msgid "Create a new list, or load an existing one"
-msgstr ""
+msgstr "Napravi novu listu,ili učitaj postojeću"
 
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:11
 msgid "Don't display an image at all"
-msgstr ""
+msgstr "Nemoj uopće prikazati sliku"
 
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:12
 #: ../settings/xfdesktop-settings-ui.glade.h:12
@@ -218,9 +215,8 @@ msgid "Horizontal gradient"
 msgstr ""
 
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:13
-#, fuzzy
 msgid "Image _list"
-msgstr "Datoteke slika"
+msgstr "Lista _slika"
 
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:14
 msgid "Increase or decrease the brightness of the final image"
@@ -245,11 +241,11 @@ msgstr ""
 
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:19
 msgid "Select First Color"
-msgstr ""
+msgstr "Odaberi prvu boju"
 
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:20
 msgid "Select Second Color"
-msgstr ""
+msgstr "Odaberi drugu boju"
 
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:21
 msgid "Select a single image as the backdrop"
@@ -258,15 +254,14 @@ msgstr ""
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:22
 #: ../settings/xfdesktop-settings-ui.glade.h:32
 msgid "Solid color"
-msgstr ""
+msgstr "Puna boja"
 
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:23
 msgid "Specifies the \"right\" or \"bottom\" color of the gradient"
 msgstr ""
 
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:24
-msgid ""
-"Specifies the solid color, or the \"left\" or \"top\" color of the gradient"
+msgid "Specifies the solid color, or the \"left\" or \"top\" color of the 
gradient"
 msgstr ""
 
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:25
@@ -279,12 +274,12 @@ msgstr ""
 
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:27
 msgid "St_yle:"
-msgstr ""
+msgstr "St_il"
 
 #: ../settings/xfdesktop-settings-appearance-frame-ui.gl

[Xfce4-commits] Don't try to populate local folders if not set

2011-01-07 Thread Christian Dywan
Updating branch refs/heads/master
 to 237e914fef8806febc0e4ebccabb62840b7d (commit)
   from 1459a2241c2f378e1ec3ea69b6ddf044f96e1e07 (commit)

commit 237e914fef8806febc0e4ebccabb62840b7d
Author: Christian Dywan 
Date:   Fri Jan 7 10:13:36 2011 +0100

Don't try to populate local folders if not set

 postler/postler-folders.vala |3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/postler/postler-folders.vala b/postler/postler-folders.vala
index 3068777..a841cae 100644
--- a/postler/postler-folders.vala
+++ b/postler/postler-folders.vala
@@ -97,7 +97,8 @@ public class Postler.Folders : Gtk.TreeView {
 store.clear ();
 
 var account_infos = accounts.get_infos ().copy ();
-account_infos.prepend (local_info);
+if (local_info.path != null)
+account_infos.prepend (local_info);
 return populate_accounts (account_infos);
 }
 
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] Choose from smartly for header links as well

2011-01-07 Thread Christian Dywan
Updating branch refs/heads/master
 to b3a022de537f43b8157e9641ef701c912e8643c8 (commit)
   from bcde54ea236a1900bdf38273665a501e46962ce1 (commit)

commit b3a022de537f43b8157e9641ef701c912e8643c8
Author: Christian Dywan 
Date:   Thu Jan 6 20:42:19 2011 +0100

Choose from smartly for header links as well

 postler/postler-bureau.vala   |   16 +---
 postler/postler-content.vala  |   22 +++---
 postler/postler-messages.vala |2 +-
 3 files changed, 21 insertions(+), 19 deletions(-)

diff --git a/postler/postler-bureau.vala b/postler/postler-bureau.vala
index aaf368a..95c7429 100644
--- a/postler/postler-bureau.vala
+++ b/postler/postler-bureau.vala
@@ -104,23 +104,9 @@ public class Postler.Bureau : Gtk.Window {
 }
 
 void compose_message (string? prefix=null, string? recipient=null, int 
part=0) {
-/* See if recipient is among the accounts, otherwise pick a fallback */
-string sender = "";
-if (content.recipient != null) {
-string from = Postler.Messages.parse_address 
(content.recipient)[1];
-foreach (var info in accounts.get_infos ())
-if (info.address != null && from in info.address)
-sender = from;
-}
-if (sender == "") {
-var info = folders.get_selected_account ();
-if (info != null && info.address != null)
-sender = info.address.split (",")[0];
-}
-
 Postler.App.spawn_module ("compose", (recipient != null ? recipient : 
"")
 + (prefix != null ? "?subject=" + prefix + content.subject : "")
-+ "&from=" + sender + "&part=" + part.to_string (),
++ "&from=" + content.choose_from () + "&part=" + part.to_string (),
 prefix != null ? content.last_location : null);
 }
 
diff --git a/postler/postler-content.vala b/postler/postler-content.vala
index 6b3db4a..c120020 100644
--- a/postler/postler-content.vala
+++ b/postler/postler-content.vala
@@ -1,5 +1,5 @@
 /*
- Copyright (C) 2010 Christian Dywan 
+ Copyright (C) 2011 Christian Dywan 
 
  This library is free software; you can redistribute it and/or
  modify it under the terms of the GNU Lesser General Public
@@ -74,6 +74,7 @@ struct Postler.EmoticonMapping {
 }
 
 public class Postler.Content : WebKit.WebView {
+AccountInfo? selected_account;
 string content_encoding;
 string date;
 string carbon_copy;
@@ -562,6 +563,20 @@ public class Postler.Content : WebKit.WebView {
 load_string (body.str, mime_type, charset, "about:blank");
 }
 
+public string choose_from () {
+/* See if recipient is among the accounts, otherwise pick a fallback */
+if (recipient != null) {
+string from = Postler.Messages.parse_address (recipient)[1];
+var accounts = new Accounts ();
+foreach (var info in accounts.get_infos ())
+if (info.address != null && from in info.address)
+return from;
+}
+if (selected_account != null && selected_account.address != null)
+return selected_account.address.split (",")[0];
+return "";
+}
+
 void parse_message (string location) throws GLib.FileError {
 last_location = location;
 subject = _("(No subject)");
@@ -673,7 +688,7 @@ public class Postler.Content : WebKit.WebView {
 /* Linkify From, To and Reply-To */
 /* FIXME: Use raw subject for argument? */
 /* TODO: Show addressbook icons beside addresses */
-string arguments = "?from=" + html_escape (recipient)
+string arguments = "?from=" + html_escape (choose_from ())
 + "&subject=Re: " + subject;
 sender = linkify_address (from, arguments);
 if (recipient != "")
@@ -869,7 +884,8 @@ public class Postler.Content : WebKit.WebView {
 }
 }
 
-public bool display (string location) {
+public bool display (string location, AccountInfo? account_info=null) {
+selected_account = account_info;
 try {
 parse_message (location);
 
diff --git a/postler/postler-messages.vala b/postler/postler-messages.vala
index e89a9c6..f4277b2 100644
--- a/postler/postler-messages.vala
+++ b/postler/postler-messages.vala
@@ -925,7 +925,7 @@ public class Postler.Messages : Gtk.TreeView {
 string location;
 sort.get (sort_iter, Columns.LOCATION, out location);
 mark_message_read (sort_iter, ref location);
-content.display (location);
+content.display (location, account_info);
 }
 
 public static bool ensure_folder (string folder) {
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] Decode folder names from modified UTF-7

2011-01-07 Thread Christian Dywan
Updating branch refs/heads/master
 to bcde54ea236a1900bdf38273665a501e46962ce1 (commit)
   from 0c28ec12edf145e6a6fac93ed01ac16df78c (commit)

commit bcde54ea236a1900bdf38273665a501e46962ce1
Author: Christian Dywan 
Date:   Thu Jan 6 20:09:49 2011 +0100

Decode folder names from modified UTF-7

 postler/postler-folders.vala |   17 -
 tests/parsing.vala   |   23 +--
 2 files changed, 37 insertions(+), 3 deletions(-)

diff --git a/postler/postler-folders.vala b/postler/postler-folders.vala
index d0551be..3068777 100644
--- a/postler/postler-folders.vala
+++ b/postler/postler-folders.vala
@@ -119,6 +119,21 @@ public class Postler.Folders : Gtk.TreeView {
 return false;
 }
 
+public static string decode_foldername (string name) {
+/* Modified UTF-7 according to RFC 2060 */
+string decoded = name.replace ("&", "+").replace (",", "/");
+try {
+return GLib.convert (decoded, -1, "UTF-8", "UTF-7", null);
+}
+catch (Error error) {
+if (error is ConvertError.ILLEGAL_SEQUENCE)
+GLib.warning ("Incomplete folder name conversion: %s", name);
+else
+GLib.warning ("Failed to convert folder name: %s", 
error.message);
+}
+return name;
+}
+
 public bool populate_accounts (GLib.List infos, int count=-1) 
{
 int num_accounts = 0;
 if (count > -1)
@@ -275,7 +290,7 @@ public class Postler.Folders : Gtk.TreeView {
 store.insert_with_values (out folder_iter,
 folder.localized != null ? account_iter : parent_iter, 
-1,
 Columns.ICON, folder.stock_id ?? Gtk.STOCK_DIRECTORY,
-Columns.NAME, folder.label ?? folder_name,
+Columns.NAME, folder.label ?? decode_foldername 
(folder_name),
 Columns.ELLIPSIZE, Pango.EllipsizeMode.MIDDLE,
 Columns.LOCATION, account_info.path + "/" + name,
 Columns.INFO, account_info,
diff --git a/tests/parsing.vala b/tests/parsing.vala
index c90c905..61f4b1d 100644
--- a/tests/parsing.vala
+++ b/tests/parsing.vala
@@ -1,5 +1,5 @@
 /*
- Copyright (C) 2010 Christian Dywan 
+ Copyright (C) 2011 Christian Dywan 
 
  This library is free software; you can redistribute it and/or
  modify it under the terms of the GNU Lesser General Public
@@ -17,7 +17,25 @@ void assert_string_equal (string a, string b) {
 
 struct TestCase {
 public string data;
-public string expected;
+public string? expected;
+}
+
+const TestCase[] folders = {
+{ "Sent Mail", null },
+{ "Messages envoy&AOk-s", "Messages envoyés" },
+{ "&ZeVnLIqe-", "日本語" },
+{ "&U,BTFw-", "台北" },
+{ "&BkUGMwZIBi8GJwYq-", "مسودات" }
+};
+
+void parsing_filename_folder () {
+foreach (var foldername in folders) {
+string decoded = Postler.Folders.decode_foldername (foldername.data);
+string expected = foldername.expected;
+if (expected == null)
+expected = foldername.data;
+assert_string_equal (decoded, expected);
+}
 }
 
 const TestCase[] filenames = {
@@ -123,6 +141,7 @@ void parsing_headers_encoded () {
 
 void main (string[] args) {
 Test.init (ref args);
+Test.add_func ("/parsing/filename/folder", parsing_filename_folder);
 Test.add_func ("/parsing/filename/flags", parsing_filename_flags);
 Test.add_func ("/parsing/headers/address", parsing_headers_address);
 Test.add_func ("/parsing/headers/linkify", parsing_headers_linkify);
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] Omit current year and use more friendly date format

2011-01-07 Thread Christian Dywan
Updating branch refs/heads/master
 to 1eb9d124216eca05e48d0a4f7335bdbdf388e94b (commit)
   from 07884048dfe5d52b7e51f4396143262752c4fd9f (commit)

commit 1eb9d124216eca05e48d0a4f7335bdbdf388e94b
Author: Christian Dywan 
Date:   Thu Jan 6 23:13:33 2011 +0100

Omit current year and use more friendly date format

Fixes: https://bugs.launchpad.net/postler/+bug/697855

 postler/postler-messages.vala |7 ++-
 1 files changed, 6 insertions(+), 1 deletions(-)

diff --git a/postler/postler-messages.vala b/postler/postler-messages.vala
index f4277b2..710122a 100644
--- a/postler/postler-messages.vala
+++ b/postler/postler-messages.vala
@@ -465,7 +465,12 @@ public class Postler.Messages : Gtk.TreeView {
 return _("Today") + GLib.Time.local (timestamp).format (" %X");
 if (days == 1)
 return _("Yesterday") + GLib.Time.local (timestamp).format (" %X");
-return GLib.Time.local (timestamp).format ("%x %X");
+if (the_time.get_year () == now.get_year ()) {
+/* i18n: strftime format for full month name and day number */
+return GLib.Time.local (timestamp).format (_("%B %e") + (" %X"));
+}
+/* i18n: strftime format for full month name, day number and year */
+return GLib.Time.local (timestamp).format (_("%B %e, %Y") + (" %X"));
 }
 
 internal static string format_date (string date, GLib.Date now,
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] Put From at the top and ellipsise in the middle

2011-01-07 Thread Christian Dywan
Updating branch refs/heads/master
 to 1459a2241c2f378e1ec3ea69b6ddf044f96e1e07 (commit)
   from 1eb9d124216eca05e48d0a4f7335bdbdf388e94b (commit)

commit 1459a2241c2f378e1ec3ea69b6ddf044f96e1e07
Author: Christian Dywan 
Date:   Thu Jan 6 00:36:23 2011 +0100

Put From at the top and ellipsise in the middle

 postler/postler-messages.vala |4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/postler/postler-messages.vala b/postler/postler-messages.vala
index 710122a..d356820 100644
--- a/postler/postler-messages.vala
+++ b/postler/postler-messages.vala
@@ -152,10 +152,10 @@ public class Postler.Messages : Gtk.TreeView {
 from = escape_text (parse_address (parse_encoded (from, out 
charset))[0]);
 from = dexter.get_name (from) ?? from;
 
-renderer.ellipsize = Pango.EllipsizeMode.END;
+renderer.ellipsize = Pango.EllipsizeMode.MIDDLE;
 renderer.markup = ("%s\n" +
"%s   %s").printf (
-   weight, subject, date, from);
+   weight, from, date, subject);
 }
 
 void render_from (Gtk.TreeViewColumn column, Gtk.CellRenderer cell,
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] Only fetch up to 500 non-new, non-flagged messages

2011-01-07 Thread Christian Dywan
Updating branch refs/heads/master
 to 07884048dfe5d52b7e51f4396143262752c4fd9f (commit)
   from b3a022de537f43b8157e9641ef701c912e8643c8 (commit)

commit 07884048dfe5d52b7e51f4396143262752c4fd9f
Author: Christian Dywan 
Date:   Thu Jan 6 22:53:02 2011 +0100

Only fetch up to 500 non-new, non-flagged messages

 postler/postler-accounts.vala |1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/postler/postler-accounts.vala b/postler/postler-accounts.vala
index 5c1872b..49b6437 100644
--- a/postler/postler-accounts.vala
+++ b/postler/postler-accounts.vala
@@ -463,6 +463,7 @@ public class Postler.Accounts : GLib.Object {
Slave :local:
Patterns %% * !INBOX
Patterns %% %s
+   MaxMessages 500
 
Group mirror
Channel local-remote:INBOX
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] Update packages used to build unit tests

2011-01-07 Thread Christian Dywan
Updating branch refs/heads/master
 to 0c28ec12edf145e6a6fac93ed01ac16df78c (commit)
   from 3af35a4ce8932c9ce3cae08c8255149fa97fc6f8 (commit)

commit 0c28ec12edf145e6a6fac93ed01ac16df78c
Author: Christian Dywan 
Date:   Thu Jan 6 20:01:06 2011 +0100

Update packages used to build unit tests

 tests/wscript_build |5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/tests/wscript_build b/tests/wscript_build
index dfdaa25..3d6de9f 100644
--- a/tests/wscript_build
+++ b/tests/wscript_build
@@ -36,7 +36,8 @@ for test in tests:
 obj.source = source
 obj.find_sources_in_dirs ('../postler', excludes=['postler-reader.vala'])
 obj.vapi_dirs = '../postler'
-obj.packages = 'config postler posix gio-2.0 gtk+-2.0 unique-1.0 
webkit-1.0'
-obj.uselib = 'GIO GTK UNIQUE WEBKIT'
+obj.uselib = 'GIO GTHREAD GTK LIBNOTIFY LIBCANBERRA INDICATE UNIQUE WEBKIT'
+obj.packages = 'config postler posix gio-2.0 gtk+-2.0 libnotify 
libcanberra ' \
+   'indicate unique-1.0 webkit-1.0'
 obj.unit_test = 1
 
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
http://foo-projects.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] l10n: Updated Croatian (hr) translation to 76%

2011-01-07 Thread Transifex
Updating branch refs/heads/master
 to 52482dd62f235f9c2d2485d202d527fc33e1ec8a (commit)
   from 601166e89f156bb84c4269cbe99f603e3d546618 (commit)

commit 52482dd62f235f9c2d2485d202d527fc33e1ec8a
Author: Ivica  Kolić 
Date:   Fri Jan 7 09:35:22 2011 +0100

l10n: Updated Croatian (hr) translation to 76%

New status: 177 messages complete with 0 fuzzies and 53 untranslated.

Transmitted-via: Transifex (translations.xfce.org).

 po/hr.po |  101 +++--
 1 files changed, 64 insertions(+), 37 deletions(-)

diff --git a/po/hr.po b/po/hr.po
index ffbad83..60c90f1 100644
--- a/po/hr.po
+++ b/po/hr.po
@@ -7,15 +7,14 @@ msgid ""
 msgstr ""
 "Project-Id-Version: xfwm4\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-06-11 16:07+\n"
+"POT-Creation-Date: 2011-01-07 05:11+\n"
 "PO-Revision-Date: 2010-06-12 00:06+0200\n"
 "Last-Translator: Ivica Kolić <>\n"
 "Language-Team: Croatian <>\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"
+"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"
 
 #: ../helper-dialog/helper-dialog.c:84
 msgid ""
@@ -38,26 +37,26 @@ msgid "Session manager socket"
 msgstr "Socket upravitelja sesijom"
 
 #: ../settings-dialogs/tweaks-settings.c:421
-#: ../settings-dialogs/workspace-settings.c:360
+#: ../settings-dialogs/workspace-settings.c:370
 #: ../settings-dialogs/xfwm4-settings.c:310
 msgid "SOCKET ID"
 msgstr "SOCKET ID"
 
 #: ../settings-dialogs/tweaks-settings.c:422
-#: ../settings-dialogs/workspace-settings.c:361
+#: ../settings-dialogs/workspace-settings.c:371
 #: ../settings-dialogs/xfwm4-settings.c:312
 msgid "Version information"
 msgstr "Informacija o verziji"
 
 #: ../settings-dialogs/tweaks-settings.c:440
-#: ../settings-dialogs/workspace-settings.c:378
-#: ../settings-dialogs/xfwm4-settings.c:948
+#: ../settings-dialogs/workspace-settings.c:388
+#: ../settings-dialogs/xfwm4-settings.c:942
 msgid "."
 msgstr "."
 
 #: ../settings-dialogs/tweaks-settings.c:444
-#: ../settings-dialogs/workspace-settings.c:382
-#: ../settings-dialogs/xfwm4-settings.c:952
+#: ../settings-dialogs/workspace-settings.c:392
+#: ../settings-dialogs/xfwm4-settings.c:946
 #, c-format
 msgid ""
 "%s: %s\n"
@@ -66,17 +65,17 @@ msgstr ""
 "%s: %s\n"
 "Pokušajte %s --help da vi vidjeli popis svih mogućih opcija.\n"
 
-#: ../settings-dialogs/workspace-settings.c:72
-#: ../settings-dialogs/workspace-settings.c:87
+#: ../settings-dialogs/workspace-settings.c:73
+#: ../settings-dialogs/workspace-settings.c:88
 #, c-format
 msgid "Workspace %d"
 msgstr "Radni prostor %d"
 
-#: ../settings-dialogs/workspace-settings.c:252
+#: ../settings-dialogs/workspace-settings.c:280
 msgid "Workspace Name"
 msgstr "Naziv Radnog Prostora"
 
-#: ../settings-dialogs/workspace-settings.c:360
+#: ../settings-dialogs/workspace-settings.c:370
 #: ../settings-dialogs/xfwm4-settings.c:310
 msgid "Settings manager socket"
 msgstr "Socket upravitelja postavkama"
@@ -596,39 +595,35 @@ msgstr "Obriši zadnji radni prostor"
 msgid "Delete active workspace"
 msgstr "Obriši aktivni radni prostor"
 
-#: ../settings-dialogs/xfwm4-settings.c:450
+#: ../settings-dialogs/xfwm4-settings.c:448
 msgid "Theme"
 msgstr "Tema"
 
-#: ../settings-dialogs/xfwm4-settings.c:599
+#: ../settings-dialogs/xfwm4-settings.c:597
 msgid "Action"
 msgstr "Radnja"
 
-#: ../settings-dialogs/xfwm4-settings.c:604
+#: ../settings-dialogs/xfwm4-settings.c:602
 msgid "Shortcut"
 msgstr "Prečac"
 
-#: ../settings-dialogs/xfwm4-settings.c:977
+#: ../settings-dialogs/xfwm4-settings.c:971
 #, c-format
 msgid "Failed to initialize xfconf. Reason: %s"
 msgstr "Xfconf neuspješno inicijaliziran. Razlog: %s"
 
-#: ../settings-dialogs/xfwm4-settings.c:988
+#: ../settings-dialogs/xfwm4-settings.c:982
 msgid "Could not create the settings dialog."
 msgstr "Ne mogu kreirati prozor sa postavkama."
 
-#: ../settings-dialogs/xfwm4-settings.c:1880
-#: ../settings-dialogs/xfwm4-settings.c:1881
+#: ../settings-dialogs/xfwm4-settings.c:1869
+#: ../settings-dialogs/xfwm4-settings.c:1870
 msgid "Reset to Defaults"
 msgstr "Vrati na zadano"
 
-#: ../settings-dialogs/xfwm4-settings.c:1882
-msgid ""
-"This will reset all shortcuts to their default values. Do you really want to "
-"do this?"
-msgstr ""
-"Ovo će vratiti sve prečace na njihovu zadanu vrijednost.Želite li doista to "
-"učiniti?"
+#: ../settings-dialogs/xfwm4-settings.c:1871
+msgid "This will reset all shortcuts to their default values. Do you really 
want to do this?"
+msgstr "Ovo će vratiti sve prečace na njihovu zadanu vrijednost.Želite li 
doista to učiniti?"
 
 #. Smart placement size
 #: ../settings-dialogs/xfwm4-tweaks-dialog.glade.h:2
@@ -677,7 +672,7 @@ msgstr "Ne _radi ništa"
 
 #: ../

[Xfce4-commits] l10n: Updated Croatian (hr) translation to 79%

2011-01-07 Thread Transifex
Updating branch refs/heads/master
 to 17265c43528bdd80d76cbe6ea4a94af080a68840 (commit)
   from bef973edc48ce2b4d2a2c84bb4aa1104b23659cf (commit)

commit 17265c43528bdd80d76cbe6ea4a94af080a68840
Author: Ivica  Kolić 
Date:   Fri Jan 7 09:24:32 2011 +0100

l10n: Updated Croatian (hr) translation to 79%

New status: 272 messages complete with 0 fuzzies and 72 untranslated.

Transmitted-via: Transifex (translations.xfce.org).

 po/hr.po |   47 +++
 1 files changed, 23 insertions(+), 24 deletions(-)

diff --git a/po/hr.po b/po/hr.po
index 6c47fbe..a44257a 100644
--- a/po/hr.po
+++ b/po/hr.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: xfce4-panel 4.7.0\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-01-03 11:09+\n"
+"POT-Creation-Date: 2011-01-07 05:09+\n"
 "PO-Revision-Date: 2010-06-11 23:34+0200\n"
 "Last-Translator: Ivica Kolić <>\n"
 "Language-Team: Croatian <>\n"
@@ -128,66 +128,66 @@ msgid "Print version information and exit"
 msgstr "Ispis informacija o verziji i izlaz"
 
 #. parse context options
-#: ../panel/main.c:196
+#: ../panel/main.c:240
 msgid "[ARGUMENTS...]"
 msgstr ""
 
-#: ../panel/main.c:203
+#: ../panel/main.c:247
 #, c-format
 msgid "Type \"%s --help\" for usage."
 msgstr "Upiši \"%s --help\" za uporabu."
 
-#: ../panel/main.c:222
+#: ../panel/main.c:266
 msgid "The Xfce development team. All rights reserved."
 msgstr "Xfce razvojni tim.Sva prava pridržana."
 
-#: ../panel/main.c:223
+#: ../panel/main.c:267
 #, c-format
 msgid "Please report bugs to <%s>."
 msgstr "Prijavite probleme u <%s>."
 
-#: ../panel/main.c:274
+#: ../panel/main.c:318
 msgid "There is already a running instance"
 msgstr ""
 
 #. spawn ourselfs again
-#: ../panel/main.c:323
+#: ../panel/main.c:367
 msgid "Restarting..."
 msgstr "Ponovno pokretanje..."
 
-#: ../panel/main.c:338
+#: ../panel/main.c:382
 msgid "Failed to show the preferences dialog"
 msgstr "Neuspjelo pokazivanje dijaloga osobitosti"
 
-#: ../panel/main.c:340
+#: ../panel/main.c:384
 msgid "Failed to show the add new items dialog"
 msgstr "Neuspjelo pokazivanje dijaloga dodaj nove stavke"
 
-#: ../panel/main.c:342
+#: ../panel/main.c:386
 msgid "Failed to save the panel configuration"
 msgstr "Neuspjelo spremanje konfiguracije ploče"
 
-#: ../panel/main.c:344
+#: ../panel/main.c:388
 msgid "Failed to add a plugin to the panel"
 msgstr "Neuspjelo dodavanje priključka ploči"
 
-#: ../panel/main.c:346
+#: ../panel/main.c:390
 msgid "Failed to restart the panel"
 msgstr "Nespjelo ponovno pokretanje ploče"
 
-#: ../panel/main.c:348
+#: ../panel/main.c:392
 msgid "Failed to quit the panel"
 msgstr "Neuspjelo iskjlučivanje ploče"
 
-#: ../panel/main.c:350
+#: ../panel/main.c:394
 msgid "Failed to send D-Bus message"
 msgstr "Neuspjelo slanje D-bus poruke"
 
-#: ../panel/main.c:361
+#: ../panel/main.c:405
 msgid "Do you want to start the panel? If you do, make sure you save the 
session on logout, so the panel is automatically started the next time you 
login."
 msgstr "Želite li pokrenuti ploču?Ako želite spremite sesiju kod odjave,tako 
da se ploča automatiski pokrene idući put kada se prijavite."
 
-#: ../panel/main.c:364 ../panel/main.c:378
+#: ../panel/main.c:408 ../panel/main.c:422
 #, c-format
 msgid "No running instance of %s was found"
 msgstr ""
@@ -1334,20 +1334,20 @@ msgstr "sakrij sve prozore i pokaži radnu površinu"
 msgid "Show Desktop"
 msgstr "Pokaži radnu površinu"
 
-#: ../plugins/systray/systray.c:381
+#: ../plugins/systray/systray.c:382
 msgid "Unable to start the notification area"
 msgstr ""
 
 #. create fake error and show it
-#: ../plugins/systray/systray.c:831
+#: ../plugins/systray/systray.c:850
 msgid "Most likely another widget took over the function of a notification 
area. This area will be unused."
 msgstr ""
 
-#: ../plugins/systray/systray.c:833
+#: ../plugins/systray/systray.c:852
 msgid "The notification area lost selection"
 msgstr ""
 
-#: ../plugins/systray/systray.c:986
+#: ../plugins/systray/systray.c:1005
 msgid "Are you sure you want to clear the list of known applications?"
 msgstr "Jeste li sigurni da želite očistiti listu znanih programa?"
 
@@ -1368,7 +1368,7 @@ msgstr ""
 msgid "_Maximum icon size (px):"
 msgstr ""
 
-#: ../plugins/systray/systray-manager.c:403
+#: ../plugins/systray/systray-manager.c:406
 #, c-format
 msgid "Failed to acquire manager selection for screen %d"
 msgstr ""
@@ -1422,9 +1422,8 @@ msgid "Show only _minimized windows"
 msgstr "Pokaži samo _minimizirane prozore"
 
 #: ../plugins/tasklist/tasklist-dialog.glade.h:15
-#, fuzzy
 msgid "Show windows from _all workspaces or viewports"
-msgstr "Pokaži prozore sa _svih radnih prostora"
+msgstr "Pokaži prozore sa _svih radnih prostora ili pogleda"
 
 #: ../plugins/tasklist/tasklist-dialog.glade.h:16
 msgid "Show windows from all mo_nitors"
@@ -1540,7 +1539,7 @@ msgstr "Izbornik prozora"
 
 #: ../plugins/windowmenu/windowmenu.desktop.in.h:1