[Xfce4-commits] xfdesktop:xfce-4.10 Fix hang when no backdrop image is selected (Bug #9892)

2013-03-09 Thread Jérôme Guelfucci
Updating branch refs/heads/xfce-4.10
 to a22643103bf113f58fb31c90c5a8963457d0783c (commit)
   from 7669bff74748508f9d7471eb827cb77cf57bd2af (commit)

commit a22643103bf113f58fb31c90c5a8963457d0783c
Author: Evangelos Foutras evange...@foutrelis.com
Date:   Wed Mar 6 05:58:54 2013 +0200

Fix hang when no backdrop image is selected (Bug #9892)

Checking whether backdrop-priv-image_path exists isn't enough; we'd
also have to check whether backdrop-priv-show_image is TRUE before
proceeding to apply a backdrop image.

When backdrop-priv-show_image is FALSE, iw and ih (image width/height)
will be zero, but can later be used to compute the upper limit of a for
loop as well as other computations.

To solve this, a new boolean variable (apply_backdrop_image) is added
and set to TRUE only if the return value of gdk_pixbuf_get_file_info()
is not NULL (meaning that the image format is recognized).

The above logic error was introduced in commit
ebad377e5cd067cec9f2b402dff4991ddc4cc3b5.

 src/xfce-backdrop.c |   14 +-
 1 files changed, 9 insertions(+), 5 deletions(-)

diff --git a/src/xfce-backdrop.c b/src/xfce-backdrop.c
index 9a4d7db..f4c2221 100644
--- a/src/xfce-backdrop.c
+++ b/src/xfce-backdrop.c
@@ -924,6 +924,8 @@ GdkPixbuf *
 xfce_backdrop_get_pixbuf(XfceBackdrop *backdrop)
 {
 GdkPixbuf *final_image, *image = NULL, *tmp;
+GdkPixbufFormat *format = NULL;
+gboolean apply_backdrop_image = FALSE;
 gint i, j;
 gint w, h, iw = 0, ih = 0;
 XfceBackdropImageStyle istyle;
@@ -933,8 +935,12 @@ xfce_backdrop_get_pixbuf(XfceBackdrop *backdrop)
 
 g_return_val_if_fail(XFCE_IS_BACKDROP(backdrop), NULL);
 
-if(backdrop-priv-show_image  backdrop-priv-image_path)
-gdk_pixbuf_get_file_info(backdrop-priv-image_path, iw, ih);
+if(backdrop-priv-show_image  backdrop-priv-image_path) {
+format = gdk_pixbuf_get_file_info(backdrop-priv-image_path, iw, 
ih);
+/* make sure we have a usable backdrop image */
+if(format != NULL)
+apply_backdrop_image = TRUE;
+}
 
 if(backdrop-priv-width == 0 || backdrop-priv-height == 0) {
 w = iw;
@@ -956,9 +962,7 @@ xfce_backdrop_get_pixbuf(XfceBackdrop *backdrop)
 final_image = create_solid(backdrop-priv-color1, w, h, FALSE, 
0xff);
 }
 
-/*check if the file exists,
- *and if it doesn't then make the background the single colour*/
-if(!g_file_test(backdrop-priv-image_path, G_FILE_TEST_EXISTS)) {
+if(!apply_backdrop_image) {
 if(backdrop-priv-brightness != 0)
 final_image = adjust_brightness(final_image, 
backdrop-priv-brightness);
 
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfdesktop:xfce-4.10 Fix tiling for some images

2013-03-09 Thread Jérôme Guelfucci
Updating branch refs/heads/xfce-4.10
 to 7b2eda13185b9e48d7f2a45f9b327f8d36a4637c (commit)
   from a22643103bf113f58fb31c90c5a8963457d0783c (commit)

commit 7b2eda13185b9e48d7f2a45f9b327f8d36a4637c
Author: Eric Koegel eric.koe...@gmail.com
Date:   Wed Mar 6 20:11:21 2013 +0300

Fix tiling for some images

gdk_pixbuf_get_file_info will return the width and height of the
bounding box in animation files which will cause the tiling
function to fail. This adds a check to get the actual width and
height of the image before tiling it.

 src/xfce-backdrop.c |5 +
 1 files changed, 5 insertions(+), 0 deletions(-)

diff --git a/src/xfce-backdrop.c b/src/xfce-backdrop.c
index f4c2221..dcf5299 100644
--- a/src/xfce-backdrop.c
+++ b/src/xfce-backdrop.c
@@ -1013,6 +1013,11 @@ xfce_backdrop_get_pixbuf(XfceBackdrop *backdrop)
 case XFCE_BACKDROP_IMAGE_TILED:
 image = gdk_pixbuf_new_from_file(backdrop-priv-image_path, NULL);
 tmp = gdk_pixbuf_new(GDK_COLORSPACE_RGB, TRUE, 8, w, h);
+/* Now that the image has been loaded, recalculate the image
+ * size because gdk_pixbuf_get_file_info doesn't always return
+ * the correct size */
+iw = gdk_pixbuf_get_width(image);
+ih = gdk_pixbuf_get_height(image);
 for(i = 0; (i * iw)  w; i++) {
 for(j = 0; (j * ih)  h; j++) {
 gint newx = iw * i, newy = ih * j;
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfdesktop:master l10n: Updated Czech (cs) translation to 99%

2013-03-09 Thread Transifex
Updating branch refs/heads/master
 to 6358306015e70525e76855544cb04a65a86c85e9 (commit)
   from e85e3412a65d710d41c25e3af734d68826edac34 (commit)

commit 6358306015e70525e76855544cb04a65a86c85e9
Author: Michal Várady miko.v...@gmail.com
Date:   Sat Mar 9 13:08:16 2013 +0100

l10n: Updated Czech (cs) translation to 99%

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

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

 po/cs.po |   45 +++--
 1 files changed, 23 insertions(+), 22 deletions(-)

diff --git a/po/cs.po b/po/cs.po
index 57d852a..52fbb23 100644
--- a/po/cs.po
+++ b/po/cs.po
@@ -9,7 +9,7 @@ msgid 
 msgstr 
 Project-Id-Version: xfdesktop 4.4.0\n
 Report-Msgid-Bugs-To: \n
-POT-Creation-Date: 2013-01-27 15:09+\n
+POT-Creation-Date: 2013-03-09 10:12+\n
 PO-Revision-Date: 2012-04-15 13:50+0100\n
 Last-Translator: Michal Várady miko.v...@gmail.com\n
 Language-Team: Czech translation-team...@lists.sourceforge.net\n
@@ -47,18 +47,19 @@ msgid Removable Devices
 msgstr Vyměnitelné jednotky
 
 #: ../settings/main.c:454
-#, fuzzy, c-format
+#, c-format
 msgid Wallpaper for %s on Monitor %d (%s)
-msgstr Obrazovka %d, monitor %d (%s)
+msgstr Tapeta pro %s na monitoru %d (%s)
 
 #: ../settings/main.c:458
 #, c-format
 msgid Wallpaper for %s on Monitor %d
-msgstr 
+msgstr Tapeta pro %s na monitoru %d
 
 #: ../settings/main.c:862
+#, fuzzy
 msgid Spanning screens
-msgstr 
+msgstr Rozložené obrazovky
 
 #: ../settings/main.c:1011
 msgid Image files
@@ -528,8 +529,8 @@ msgid _Open in New Window
 msgstr _Otevřít v novém okně
 
 #: ../src/xfdesktop-file-icon-manager.c:1425
-#: ../src/xfdesktop-special-file-icon.c:505 ../src/xfdesktop-volume-icon.c:751
-#: ../src/xfdesktop-volume-icon.c:755
+#: ../src/xfdesktop-special-file-icon.c:505 ../src/xfdesktop-volume-icon.c:774
+#: ../src/xfdesktop-volume-icon.c:778
 msgid _Open
 msgstr _Otevřít
 
@@ -586,7 +587,7 @@ msgid Desktop _Settings...
 msgstr _Nastavení plochy...
 
 #: ../src/xfdesktop-file-icon-manager.c:1744
-#: ../src/xfdesktop-volume-icon.c:797
+#: ../src/xfdesktop-volume-icon.c:820
 msgid P_roperties...
 msgstr _Vlastnosti...
 
@@ -737,12 +738,12 @@ msgstr 
 Systém odpojuje zařízení \%s\. Nevyjímejte médium ani neodpojujte jednotku
 
 #. TRANSLATORS: Please use the same translation here as in Thunar
-#: ../src/xfdesktop-notify.c:138 ../src/xfdesktop-notify.c:313
+#: ../src/xfdesktop-notify.c:138 ../src/xfdesktop-notify.c:318
 msgid Writing data to device
 msgstr Zápis dat na zařízení
 
 #. TRANSLATORS: Please use the same translation here as in Thunar
-#: ../src/xfdesktop-notify.c:141 ../src/xfdesktop-notify.c:316
+#: ../src/xfdesktop-notify.c:141 ../src/xfdesktop-notify.c:321
 #, c-format
 msgid 
 There is data that needs to be written to the device \%s\ before it can be 
@@ -751,27 +752,27 @@ msgstr 
 Je nutné zapsat data na zařízení \%s\ před jeho odebráním. Nevyjímejte 
 médium ani neodpojujte jednotku
 
-#: ../src/xfdesktop-notify.c:218
+#: ../src/xfdesktop-notify.c:223
 msgid Unmount Finished
 msgstr Odpojení dokončeno
 
-#: ../src/xfdesktop-notify.c:220 ../src/xfdesktop-notify.c:395
+#: ../src/xfdesktop-notify.c:225 ../src/xfdesktop-notify.c:405
 #, c-format
 msgid The device \%s\ has been safely removed from the system. 
 msgstr Zařízení %s bylo úspěšně odebráno ze systému.
 
 #. TRANSLATORS: Please use the same translation here as in Thunar
-#: ../src/xfdesktop-notify.c:304
+#: ../src/xfdesktop-notify.c:309
 msgid Ejecting device
 msgstr Vysouvání zařízení
 
 #. TRANSLATORS: Please use the same translation here as in Thunar
-#: ../src/xfdesktop-notify.c:307
+#: ../src/xfdesktop-notify.c:312
 #, c-format
 msgid The device \%s\ is being ejected. This may take some time
 msgstr Zařízení \%s\ se vysouvá. Tato akce může chvíli trvat
 
-#: ../src/xfdesktop-notify.c:393
+#: ../src/xfdesktop-notify.c:403
 msgid Eject Finished
 msgstr Vysunout dokončené
 
@@ -838,33 +839,33 @@ msgstr 
 Vyměnitelný svazek\n
 Dosud nepřipojeno
 
-#: ../src/xfdesktop-volume-icon.c:480 ../src/xfdesktop-volume-icon.c:522
+#: ../src/xfdesktop-volume-icon.c:483 ../src/xfdesktop-volume-icon.c:528
 #, c-format
 msgid Failed to eject \%s\
 msgstr Vysunutí \%s\ se nezdařilo
 
-#: ../src/xfdesktop-volume-icon.c:485 ../src/xfdesktop-volume-icon.c:527
+#: ../src/xfdesktop-volume-icon.c:488 ../src/xfdesktop-volume-icon.c:533
 msgid Eject Failed
 msgstr Vysunutí se nezdařilo
 
-#: ../src/xfdesktop-volume-icon.c:559
+#: ../src/xfdesktop-volume-icon.c:565
 #, c-format
 msgid Failed to mount \%s\
 msgstr Připojení \%s\ se nezdařilo
 
-#: ../src/xfdesktop-volume-icon.c:562
+#: ../src/xfdesktop-volume-icon.c:568
 msgid Mount Failed
 msgstr Připojení se nezdařilo
 
-#: ../src/xfdesktop-volume-icon.c:770
+#: ../src/xfdesktop-volume-icon.c:793
 msgid E_ject Volume
 msgstr _Vysunout svazek
 
-#: ../src/xfdesktop-volume-icon.c:777
+#: ../src/xfdesktop-volume-icon.c:800
 msgid _Unmount Volume
 msgstr 

[Xfce4-commits] xfdesktop:master l10n: Updated Czech (cs) translation to 100%

2013-03-09 Thread Transifex
Updating branch refs/heads/master
 to b125271de08cd0f0682947df443ba194dc595b93 (commit)
   from 6358306015e70525e76855544cb04a65a86c85e9 (commit)

commit b125271de08cd0f0682947df443ba194dc595b93
Author: Michal Várady miko.v...@gmail.com
Date:   Sat Mar 9 13:11:12 2013 +0100

l10n: Updated Czech (cs) translation to 100%

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

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

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

diff --git a/po/cs.po b/po/cs.po
index 52fbb23..a26d771 100644
--- a/po/cs.po
+++ b/po/cs.po
@@ -57,9 +57,8 @@ msgid Wallpaper for %s on Monitor %d
 msgstr Tapeta pro %s na monitoru %d
 
 #: ../settings/main.c:862
-#, fuzzy
 msgid Spanning screens
-msgstr Rozložené obrazovky
+msgstr Rozložení přes obrazovky
 
 #: ../settings/main.c:1011
 msgid Image files
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfce4-appfinder:master l10n: Updated Belarusian (be) translation to 100%

2013-03-09 Thread Transifex
Updating branch refs/heads/master
 to 27ef62f9f23a0473f07d0c6442122e38d8dd7fde (commit)
   from 3375295fd2cb216b9a9ebf59821f71d60ef177da (commit)

commit 27ef62f9f23a0473f07d0c6442122e38d8dd7fde
Author: Mike Gelfand mike...@mikedld.com
Date:   Sat Mar 9 13:35:05 2013 +0100

l10n: Updated Belarusian (be) translation to 100%

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

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

 po/be.po |  290 +-
 1 files changed, 192 insertions(+), 98 deletions(-)

diff --git a/po/be.po b/po/be.po
index 7a2055c..7b5b690 100644
--- a/po/be.po
+++ b/po/be.po
@@ -2,209 +2,311 @@
 # Copyright (C) 2004-2005 Eduard Roccatello.
 # This file is distributed under the same license as the xfce4-appfinder 
package.
 # Ales Nyakhaychyk n...@mail.by, 2004.
-#
+# 
 msgid 
 msgstr 
 Project-Id-Version: xfce4-appfinder trunk\n
 Report-Msgid-Bugs-To: \n
-POT-Creation-Date: 2011-09-21 20:43+0200\n
+POT-Creation-Date: 2012-12-27 07:06+\n
 PO-Revision-Date: 2008-11-18 01:09+0200\n
 Last-Translator: Alexander Nyakhaychyk nyakhayc...@gmail.com\n
 Language-Team: Belorussian i...@mova.org\n
-Language: \n
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=UTF-8\n
 Content-Transfer-Encoding: 8bit\n
+Language: \n
 
-#: ../src/appfinder-category-model.c:108
-#, fuzzy
+#: ../src/appfinder-category-model.c:146
 msgid All Applications
-msgstr Шукач дастасаваньняў
+msgstr Усе дастасаванні
 
-#: ../src/appfinder-model.c:422
+#: ../src/appfinder-model.c:545
 msgid Name
-msgstr 
+msgstr Назва
+
+#: ../src/appfinder-model.c:546
+msgid Comment
+msgstr Камэнтар
 
-#: ../src/appfinder-model.c:423
+#: ../src/appfinder-model.c:547
 msgid Command
-msgstr 
+msgstr Загад
 
-#: ../src/appfinder-model.c:424
+#: ../src/appfinder-model.c:548
 msgid Categories
 msgstr Катэгорыі
 
-#: ../src/appfinder-model.c:425
-#, fuzzy
+#: ../src/appfinder-model.c:549
 msgid Filename
-msgstr Кіраваньне файламі
+msgstr Імя файла
 
-#: ../src/appfinder-model.c:1317
-#, fuzzy
+#: ../src/appfinder-model.c:1829
 msgid Application has no command
-msgstr Шукач дастасаваньняў
+msgstr Дастасаванне
 
-#: ../src/appfinder-model.c:1634
+#: ../src/appfinder-model.c:2153
 msgid Commands History
-msgstr 
+msgstr Гісторыя загадаў
 
-#: ../src/appfinder-preferences.c:175
+#: ../src/appfinder-preferences.c:219
 msgid C_lear
-msgstr 
+msgstr Ачысціць
 
-#: ../src/appfinder-preferences.c:176
+#: ../src/appfinder-preferences.c:220
 msgid This will permanently clear the custom command history.
-msgstr 
+msgstr Гісторыя карыстальніцкіх загадаў будзе ачышчана без магчымасці 
аднаўлення.
 
-#: ../src/appfinder-preferences.c:177
+#: ../src/appfinder-preferences.c:221
 msgid Are you sure you want to clear the command history?
-msgstr 
+msgstr Упэўненыя што жадаеце ачысціць гісторыю загадаў?
 
-#: ../src/appfinder-preferences.c:287
+#: ../src/appfinder-preferences.c:331
 msgid The custom action will be deleted permanently.
-msgstr 
+msgstr Карыстальніцкае дзеянне будзе выдалена без магчымасці аднаўлення.
 
-#: ../src/appfinder-preferences.c:288
+#: ../src/appfinder-preferences.c:332
 #, c-format
 msgid Are you sure you want to delete pattern \%s\?
-msgstr 
+msgstr Упэўненыя што жадаеце выдаліць шаблон \%s\?
 
-#: ../src/appfinder-window.c:183 ../src/main.c:344
-#: ../src/appfinder-preferences.glade.h:3
+#: ../src/appfinder-window.c:219 ../src/main.c:446
+#: ../src/appfinder-preferences.glade.h:4
 #: ../data/xfce4-appfinder.desktop.in.h:1
 msgid Application Finder
-msgstr Шукач дастасаваньняў
+msgstr Шукач дастасаванняў
 
-#: ../src/appfinder-window.c:224
+#: ../src/appfinder-window.c:286
 msgid Toggle view mode
-msgstr 
+msgstr Пераключыць рэжым прагляду
+
+#: ../src/appfinder-window.c:391
+msgid La_unch
+msgstr Запусціць
+
+#: ../src/appfinder-window.c:826
+msgid Failed to launch desktop item editor
+msgstr Немагчыма запусціць рэдактар элемента працоўнага стала
+
+#: ../src/appfinder-window.c:852
+msgid 
+This will permanently remove the custom desktop file from your home 
+directory.
+msgstr Гэта выдаліць карыстальніцкі файл працоўнага стала з вашага хатняга 
каталогу без магчымасці аднаўлення.
+
+#: ../src/appfinder-window.c:853
+#, c-format
+msgid Are you sure you want to revert \%s\?
+msgstr Упэўненыя што жадаеце адмяніць змены ў \%s\?
+
+#: ../src/appfinder-window.c:863
+msgid Failed to remove desktop file
+msgstr Немагчыма выдаліць файл працоўнага стала
+
+#. I18N: the first %s will be replace with users' applications directory, the
+#. * second with Hidden=true
+#: ../src/appfinder-window.c:896
+#, c-format
+msgid 
+To unhide the item you have to manually remove the desktop file from \%s\ 
+or open the file in the same directory and remove the line \%s\.
+msgstr Каб зноў адлюстраваць гэты элемент, трэба будзе самастойна выдаліць 
файл працоўнага стала з \%s\ або адчыніць файл у тым жа каталоге і выдаліць 
радок \%s\.
+
+#: 

[Xfce4-commits] xfce4-appfinder:master l10n: Updated Belarusian (be) translation to 100%

2013-03-09 Thread Transifex
Updating branch refs/heads/master
 to 7cae7f4f9669ae614bf1b66a32f166456595595f (commit)
   from 27ef62f9f23a0473f07d0c6442122e38d8dd7fde (commit)

commit 7cae7f4f9669ae614bf1b66a32f166456595595f
Author: Mike Gelfand mike...@mikedld.com
Date:   Sat Mar 9 13:43:49 2013 +0100

l10n: Updated Belarusian (be) translation to 100%

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

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

 po/be.po |   28 ++--
 1 files changed, 14 insertions(+), 14 deletions(-)

diff --git a/po/be.po b/po/be.po
index 7b5b690..e50903a 100644
--- a/po/be.po
+++ b/po/be.po
@@ -50,7 +50,7 @@ msgstr Гісторыя загадаў
 
 #: ../src/appfinder-preferences.c:219
 msgid C_lear
-msgstr Ачысціць
+msgstr _Ачысціць
 
 #: ../src/appfinder-preferences.c:220
 msgid This will permanently clear the custom command history.
@@ -81,7 +81,7 @@ msgstr Пераключыць рэжым прагляду
 
 #: ../src/appfinder-window.c:391
 msgid La_unch
-msgstr Запусціць
+msgstr За_пусціць
 
 #: ../src/appfinder-window.c:826
 msgid Failed to launch desktop item editor
@@ -169,7 +169,7 @@ msgstr Дадаць новае дзеянне.
 
 #: ../src/appfinder-preferences.glade.h:2
 msgid Always c_enter the window
-msgstr Заўсёды цэнтраваць вакно
+msgstr Заўсёды _цэнтраваць вакно
 
 #: ../src/appfinder-preferences.glade.h:3
 msgid Appearance
@@ -181,11 +181,11 @@ msgstr Паводзіны
 
 #: ../src/appfinder-preferences.glade.h:6
 msgid C_lear Custom Command History
-msgstr Ачысціць гісторыю карыстальніцкіх дзеянняў
+msgstr _Ачысціць гісторыю карыстальніцкіх дзеянняў
 
 #: ../src/appfinder-preferences.glade.h:7
 msgid Categ_ory icon size:
-msgstr Памер значкі катэгорыі:
+msgstr Памер значкі _катэгорыі:
 
 #: ../src/appfinder-preferences.glade.h:8
 msgid Center the window on startup.
@@ -197,7 +197,7 @@ msgstr За_гад:
 
 #: ../src/appfinder-preferences.glade.h:10
 msgid Custom _Actions
-msgstr Карыстальніцкія дзеянні
+msgstr Карыстальніцкія _дзеянні
 
 #: ../src/appfinder-preferences.glade.h:11
 msgid History
@@ -220,11 +220,11 @@ msgstr Замест выхаду з дастасавання пасля зак
 
 #: ../src/appfinder-preferences.glade.h:15
 msgid Ite_m icon size:
-msgstr Памер значкі элемента:
+msgstr Памер значкі _элемента:
 
 #: ../src/appfinder-preferences.glade.h:16
 msgid Keep running _instance in the background
-msgstr Трымаць працуючы экзэмпляр у фоне
+msgstr Трымаць працуючы экзэмпляр у _фоне
 
 #: ../src/appfinder-preferences.glade.h:17
 msgid Large
@@ -240,7 +240,7 @@ msgstr Звычайны
 
 #: ../src/appfinder-preferences.glade.h:20
 msgid Patte_rn:
-msgstr Шаблон:
+msgstr _Шаблон:
 
 #: ../src/appfinder-preferences.glade.h:21
 msgid Pattern
@@ -256,7 +256,7 @@ msgstr Рэгулярны выраз
 
 #: ../src/appfinder-preferences.glade.h:24
 msgid Remember last _selected category
-msgstr Памятаваць апошнюю абраную катэгорыю
+msgstr _Памятаваць апошнюю абраную катэгорыю
 
 #: ../src/appfinder-preferences.glade.h:25
 msgid Remove the currently selected action.
@@ -272,7 +272,7 @@ msgstr Яшчэ меньш
 
 #: ../src/appfinder-preferences.glade.h:28
 msgid Text besi_de icons
-msgstr Тэкст за значкай
+msgstr Тэкст за зна_чкай
 
 #: ../src/appfinder-preferences.glade.h:29
 msgid Very Large
@@ -284,11 +284,11 @@ msgstr Вельмі малы
 
 #: ../src/appfinder-preferences.glade.h:31
 msgid _General
-msgstr Асноўныя
+msgstr А_сноўныя
 
 #: ../src/appfinder-preferences.glade.h:32
 msgid _Save match in command history
-msgstr Захоўваць супадзенне ў гісторыі загадаў
+msgstr Захоўваць _супадзенне ў гісторыі загадаў
 
 #: ../src/appfinder-preferences.glade.h:33
 msgid _Type:
@@ -296,7 +296,7 @@ msgstr _Тып:
 
 #: ../src/appfinder-preferences.glade.h:34
 msgid _View items as icons
-msgstr Паказваць элементы як значкі
+msgstr Паказваць элементы _як значкі
 
 #: ../data/xfce4-appfinder.desktop.in.h:2
 msgid Find and launch applications installed on your system
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfce4-panel:master l10n: Updated Polish (pl) translation to 96%

2013-03-09 Thread Transifex
Updating branch refs/heads/master
 to 9fcdac310197360c5c609c1e70d7c889f35c0504 (commit)
   from a82b41a9638162c3427bdf929c4043561265ee7b (commit)

commit 9fcdac310197360c5c609c1e70d7c889f35c0504
Author: Piotr Sokół pso...@jabster.pl
Date:   Sat Mar 9 16:36:05 2013 +0100

l10n: Updated Polish (pl) translation to 96%

New status: 380 messages complete with 0 fuzzies and 13 untranslated.

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

 po/pl.po |  176 +-
 1 files changed, 105 insertions(+), 71 deletions(-)

diff --git a/po/pl.po b/po/pl.po
index 1beae2a..6fc088d 100644
--- a/po/pl.po
+++ b/po/pl.po
@@ -6,21 +6,23 @@
 # Wit Wiliński mad...@berlios.de, 2005.
 # Piotr Maliński riklau...@gmail.com, 2006.
 # Szymon Kałasz szymon_maes...@gazeta.pl, 2006.
-# Piotr Sokół pso...@jabster.pl, 2009, 2010, 2011, 2012.
-# 
+# Piotr Sokół pso...@jabster.pl, 2009, 2010, 2011, 2012, 2013.
+#
 msgid 
 msgstr 
-Project-Id-Version: xfce4-panel 4.9.0\n
+Project-Id-Version: xfce4-panel 4.10.0\n
 Report-Msgid-Bugs-To: \n
-POT-Creation-Date: 2013-01-29 08:09+\n
-PO-Revision-Date: 2012-04-15 12:05+0200\n
+POT-Creation-Date: 2013-03-09 13:45+\n
+PO-Revision-Date: 2013-03-09 16:35+0100\n
 Last-Translator: Piotr Sokół pso...@jabster.pl\n
 Language-Team: polski \n
+Language: \n
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=UTF-8\n
 Content-Transfer-Encoding: 8bits\n
-Language: \n
-Plural-Forms: nplurals=3; plural=((n==1) ? 0 : ((n%10=2  n%10=4  
(n%10010 || n%100=20)) ? 1 : 2));\n
+Plural-Forms: nplurals=3; plural=((n==1) ? 0 : ((n%10=2  n%10=4  (n
+%10010 || n%100=20)) ? 1 : 2));\n
+X-Generator: Gtranslator 2.91.5\n
 
 #: ../panel-desktop-handler.desktop.in.h:1
 msgid 
@@ -266,7 +268,7 @@ msgstr Wyświetla panele w środowisku graficznym Xfce
 
 #: ../panel/panel-dialogs.c:87
 msgid translator-credits
-msgstr Piotr Sokół pso...@jabster.pl, 2008, 2009, 2010, 2011, 2012.
+msgstr Piotr Sokół pso...@jabster.pl, 2008, 2009, 2010, 2011, 2012, 2013
 
 #. setup the dialog
 #: ../panel/panel-dialogs.c:158 ../plugins/launcher/launcher-dialog.glade.h:2
@@ -464,8 +466,7 @@ msgstr _Długość (%):
 msgid M_ode:
 msgstr _Układ:
 
-#. I18N: name of the section (frame) in the panel preferences where the user
-#. can define the length and size of the panel
+#. I18N: name of the section (frame) in the panel preferences where the user 
can define the length and size of the panel
 #: ../panel/panel-preferences-dialog.glade.h:22
 msgid Measurements
 msgstr Wymiary
@@ -947,7 +948,7 @@ msgstr Wybór ikony
 
 #: ../plugins/applicationsmenu/applicationsmenu.c:603
 #: ../plugins/applicationsmenu/applicationsmenu.c:844
-#: ../plugins/launcher/launcher.c:2308
+#: ../plugins/clock/clock.c:852 ../plugins/launcher/launcher.c:2308
 #, c-format
 msgid Failed to execute command \%s\.
 msgstr Nie udało się wykonać polecenia „%s”.
@@ -994,15 +995,15 @@ msgstr Wyświetla menu w bieżącym położeniu kursora myszy
 msgid Show help options
 msgstr Wypisuje komunikat pomocy
 
-#: ../plugins/clock/clock.c:160
+#: ../plugins/clock/clock.c:167
 msgid Week %V
 msgstr Tydzień %V
 
-#: ../plugins/clock/clock.c:422
+#: ../plugins/clock/clock.c:450
 msgid Failed to execute clock command
 msgstr Nie udało się wykonać polecenia zegara
 
-#: ../plugins/clock/clock.c:758
+#: ../plugins/clock/clock.c:797
 msgid Custom Format
 msgstr Własny
 
@@ -1039,8 +1040,7 @@ msgstr _Sekundy
 msgid F_ormat:
 msgstr F_ormat:
 
-#. I18N: the fuzziness the *precision* of the fuzzy clock. Time steps of 5, 15
-#. or parts of the day.
+#. I18N: the fuzziness the *precision* of the fuzzy clock. Time steps of 5, 15 
or parts of the day.
 #: ../plugins/clock/clock-dialog.glade.h:11
 msgid F_uzziness:
 msgstr Stopień _rozmycia:
@@ -1058,265 +1058,299 @@ msgid LCD
 msgstr LCD
 
 #: ../plugins/clock/clock-dialog.glade.h:15
+msgid 
+Name of the timezone matching the system's timezone database. Leave empty to 
+revert to the local time.
+msgstr 
+Określa nazwę strefy czasowej pochodzącej z systemowej bazy danych. Proszę 
+pozostawić puste pole, aby użyć lokalnej strefy czasowej.
+
+#: ../plugins/clock/clock-dialog.glade.h:16
 msgid Sho_w AM/PM
 msgstr _AM/PM
 
-#: ../plugins/clock/clock-dialog.glade.h:16
+#: ../plugins/clock/clock-dialog.glade.h:17
 msgid Show _inactive dots
 msgstr _Nieaktywne punkty
 
-#: ../plugins/clock/clock-dialog.glade.h:17
+#: ../plugins/clock/clock-dialog.glade.h:18
 msgid Show gri_d
 msgstr _Siatka
 
 #: ../plugins/clock/clock-dialog.glade.h:19
+msgid 
+Start a tool for setting the system time and date. If the button is grayed 
+out, check the \Help\ page to see how to configure it correctly.
+msgstr 
+Uruchamia narzędzie służące do konfigurowania systemowego czasu i daty. 
+Jeśli przycisk jest nieaktywny, proszę sprawdzić podręcznik programu, aby 
+dowiedzieć się jak prawidłowo konfigurować czas i datę.
+
+#: ../plugins/clock/clock-dialog.glade.h:21
 #, no-c-format
 msgid 
 The 

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

2013-03-09 Thread Transifex
Updating branch refs/heads/master
 to 43e72a24532c8eeab32f549b2c8ffa96ba9cd7f0 (commit)
   from 11b7f0286bfd57ce0f3411ef1826854f853df86e (commit)

commit 43e72a24532c8eeab32f549b2c8ffa96ba9cd7f0
Author: Piotr Sokół pso...@jabster.pl
Date:   Sat Mar 9 16:53:58 2013 +0100

l10n: Updated Polish (pl) translation to 99%

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

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

 po/pl.po |  220 -
 1 files changed, 130 insertions(+), 90 deletions(-)

diff --git a/po/pl.po b/po/pl.po
index 8034037..194a343 100644
--- a/po/pl.po
+++ b/po/pl.po
@@ -3,20 +3,21 @@
 # This file is distributed under the same license as the parole package.
 # Paweł Drożański paw...@gmail.com, 2012.
 # Piotr Sokół pso...@jabster.pl, 2012, 2013.
-# 
+#
 msgid 
 msgstr 
 Project-Id-Version: Parole master\n
 Report-Msgid-Bugs-To: \n
-POT-Creation-Date: 2013-02-21 04:51+\n
-PO-Revision-Date: 2013-01-13 19:24+0100\n
+POT-Creation-Date: 2013-03-09 11:24+\n
+PO-Revision-Date: 2013-03-09 16:52+0100\n
 Last-Translator: Piotr Sokół pso...@jabster.pl\n
 Language-Team: polski \n
+Language: pl\n
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=UTF-8\n
 Content-Transfer-Encoding: 8bits\n
-Language: pl\n
-Plural-Forms: nplurals=3; plural=((n==1) ? 0 : ((n%10=2  n%10=4  
(n%10010 || n%100=20)) ? 1 : 2));\n
+Plural-Forms: nplurals=3; plural=((n==1) ? 0 : ((n%10=2  n%10=4  (n
+%10010 || n%100=20)) ? 1 : 2));\n
 X-Poedit-Language: Polish\n
 X-Poedit-Country: POLAND\n
 X-Generator: Gtranslator 2.91.5\n
@@ -70,7 +71,7 @@ msgstr Automatyczne
 msgid Buffering (0%)
 msgstr Buforowanie (0%)
 
-#: ../data/interfaces/parole.ui.h:12 ../src/parole-player.c:750
+#: ../data/interfaces/parole.ui.h:12 ../src/parole-player.c:746
 msgid Empty
 msgstr Pusty
 
@@ -93,7 +94,7 @@ msgstr Odtwarzacz nagrań
 
 #: ../data/interfaces/parole.ui.h:17
 msgid Next
-msgstr 
+msgstr Przechodzi do następnego nagrania
 
 #: ../data/interfaces/parole.ui.h:18
 msgid None
@@ -107,22 +108,21 @@ msgstr Otwórz ostatnie
 msgid Open _Location
 msgstr Otwórz p_ołożenie
 
-#: ../data/interfaces/parole.ui.h:21 ../src/parole-about.c:68
+#: ../data/interfaces/parole.ui.h:21 ../data/desktop/parole.desktop.in.in.h:2
+#: ../src/parole-about.c:68
 msgid Parole Media Player
 msgstr Odtwarzacz nagrań Parole
 
-#: ../data/interfaces/parole.ui.h:22 ../src/parole-player.c:1408
-#: ../src/parole-player.c:1442
-#, fuzzy
+#: ../data/interfaces/parole.ui.h:22 ../src/parole-player.c:1410
+#: ../src/parole-player.c:1444
 msgid Play
-msgstr Odtwarzanie
+msgstr Rozpoczyna odtwarzanie
 
 #: ../data/interfaces/parole.ui.h:23
 msgid Plugins
 msgstr Wtyczki
 
 #: ../data/interfaces/parole.ui.h:24
-#, fuzzy
 msgid Previous
 msgstr Przechodzi do poprzedniego nagrania
 
@@ -196,7 +196,7 @@ msgstr _Otwórz
 
 #: ../data/interfaces/playlist.ui.h:1
 msgid Add…
-msgstr Dodaj…
+msgstr Dodaje pozycje do listy odtwarzania
 
 #: ../data/interfaces/playlist.ui.h:2
 msgid Angle Menu
@@ -230,37 +230,42 @@ msgstr Lista odtwarzania płyty
 msgid Play opened files
 msgstr Odtwarzanie otwieranych plików
 
-#: ../data/interfaces/playlist.ui.h:10 ../src/parole-medialist.c:784
-#: ../src/parole-player.c:3067
+#: ../data/interfaces/playlist.ui.h:10 ../src/parole-medialist.c:805
+#: ../src/parole-player.c:3055
 msgid Playlist
 msgstr Lista odtwarzania
 
-#: ../data/interfaces/playlist.ui.h:11
+#: ../data/interfaces/playlist.ui.h:11 ../src/parole-medialist.c:993
+#: ../src/parole-medialist.c:1137
+msgid Playlist empty
+msgstr Pusta lista odtwarzania
+
+#: ../data/interfaces/playlist.ui.h:12
 msgid Playlist options
 msgstr Opcje listy odtwarzania
 
-#: ../data/interfaces/playlist.ui.h:12
+#: ../data/interfaces/playlist.ui.h:13
 #: ../data/interfaces/parole-settings.ui.h:17
 msgid Remember playlist
 msgstr Pamiętanie listy odtwarzania
 
-#: ../data/interfaces/playlist.ui.h:13
+#: ../data/interfaces/playlist.ui.h:14
 msgid Remove
-msgstr 
+msgstr Usuwa pozycje z listy odtwarzania
 
-#: ../data/interfaces/playlist.ui.h:14
+#: ../data/interfaces/playlist.ui.h:15
 msgid Repeat
 msgstr Powtarzanie
 
-#: ../data/interfaces/playlist.ui.h:15
+#: ../data/interfaces/playlist.ui.h:16
 msgid Replace playlist when opening files
 msgstr Zastępowanie zawartości otwieranymi plikami
 
-#: ../data/interfaces/playlist.ui.h:16
+#: ../data/interfaces/playlist.ui.h:17
 msgid Shuffle
 msgstr Losowa kolejność
 
-#: ../data/interfaces/playlist.ui.h:17
+#: ../data/interfaces/playlist.ui.h:18
 msgid Title Menu
 msgstr Menu tytułów
 
@@ -274,7 +279,7 @@ msgstr bOpis/b
 
 #: ../data/interfaces/plugins.ui.h:3
 msgid Enabled
-msgstr Właczone
+msgstr Włączenie
 
 #: ../data/interfaces/plugins.ui.h:4
 msgid Extend your media player
@@ -409,8 +414,21 @@ msgid Open Network Location
 msgstr Otwórz położenie sieciowe
 
 #: ../data/desktop/parole.desktop.in.in.h:1
-msgid Parole
-msgstr Parole
+msgid Next Track
+msgstr 

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

2013-03-09 Thread Transifex
Updating branch refs/heads/master
 to 9688e4b038983ab2bbbf63d840d83a3cea697f8e (commit)
   from df6602ca8caef477df3eed4f8c9f1d06f715e5dd (commit)

commit 9688e4b038983ab2bbbf63d840d83a3cea697f8e
Author: Piotr Sokół pso...@jabster.pl
Date:   Sat Mar 9 17:08:01 2013 +0100

l10n: Updated Polish (pl) translation to 100%

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

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

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

diff --git a/po/pl.po b/po/pl.po
index 65ad40b..48fe0d5 100644
--- a/po/pl.po
+++ b/po/pl.po
@@ -8,7 +8,7 @@ msgid 
 msgstr 
 Project-Id-Version: xfce4-dict 0.5.2\n
 Report-Msgid-Bugs-To: \n
-POT-Creation-Date: 2012-11-01 14:03+\n
+POT-Creation-Date: 2013-03-09 12:57+\n
 PO-Revision-Date: 2009-03-30 00:05+0100\n
 Last-Translator: Piotr Sokół piotr.so...@10g.pl\n
 Language-Team: Polish\n
@@ -98,24 +98,24 @@ msgstr Wyniki sprawdzania pisowni:
 #, c-format
 msgid %d suggestion found.
 msgid_plural %d suggestions found.
-msgstr[0] Znaleziono %d sugestię
-msgstr[1] Znaleziono %d sugestie
-msgstr[2] Znaleziono %d sugestii
+msgstr[0] Odnaleziono %d sugestię
+msgstr[1] Odnaleziono %d sugestie
+msgstr[2] Odnaleziono %d sugestii
 
 #: ../lib/spell.c:105
 #, c-format
 msgid Suggestions for \%s\ (%s):
-msgstr Sugestie dla \%s\ (%s):
+msgstr Sugestie dla  „%s” (%s):
 
 #: ../lib/spell.c:122
 #, c-format
 msgid \%s\ is spelled correctly (%s).
-msgstr \%s\ jest zapisane poprawnie (%s).
+msgstr Wyrażenie „%s” jest zapisane poprawnie (%s).
 
 #: ../lib/spell.c:134
 #, c-format
 msgid No suggestions could be found for \%s\ (%s).
-msgstr Nie znaleziono sugestii dla \%s\ (%s).
+msgstr Nie znaleziono sugestii dla „%s” (%s).
 
 #. translation hint:
 #. * Error while executing spell command, e.g. aspell (error message)
@@ -135,7 +135,7 @@ msgstr Niepoprawne dane
 #: ../lib/spell.c:247
 #, c-format
 msgid Process failed (%s)
-msgstr Proces zakończony niepowodzeniem (%s)
+msgstr Nieudane działanie (%s)
 
 #: ../lib/speedreader.c:80 ../lib/speedreader.c:683
 msgid P_ause
@@ -159,16 +159,16 @@ msgstr Szybkie czytanie
 
 #: ../lib/speedreader.c:369
 msgid You must enter a text.
-msgstr Musisz wpisać tekst.
+msgstr Proszę wprowadzić tekst.
 
 #: ../lib/speedreader.c:506
 msgid Choose a file to load
-msgstr Wybierz plik do wczytania
+msgstr Proszę wybrać plik do wczytania
 
 #: ../lib/speedreader.c:535
 #, c-format
 msgid The file '%s' could not be loaded.
-msgstr Plik '%s' nie mógł zostać wczytany.
+msgstr Nie udało się wczytać pliku „%s”.
 
 #: ../lib/speedreader.c:561
 #, c-format
@@ -182,23 +182,25 @@ msgstr[2] (wyświetla %d słów jednocześnie)
 msgid 
 This is an easy speed reading utility to help train you to read faster. It 
 does this by flashing words at a rapid rate on the screen.
-msgstr Jest to narzędzie do pomocy w łatwej nauce szybszego czytania. Uczy 
tego wyświetlając na ekranie słowa z dużą częstotliwością.
+msgstr 
+Jest to narzędzie do pomocy w łatwej nauce szybszego czytania. Uczy tego 
+wyświetlając na ekranie słowa z dużą częstotliwością.
 
 #: ../lib/speedreader.c:589
 msgid _Words per Minute:
-msgstr _Słowa na minutę
+msgstr _Słowa na minutę:
 
 #: ../lib/speedreader.c:595
 msgid _Mark Paragraphs
-msgstr _Oznacza akapity
+msgstr _Oznaczanie akapitów
 
 #: ../lib/speedreader.c:602
 msgid Word _Grouping:
-msgstr Grupowanie _Słów
+msgstr _Grupowanie słów
 
 #: ../lib/speedreader.c:618
 msgid _Font Size:
-msgstr _Rozmiar Czcionki
+msgstr _Rozmiar czcionki
 
 #: ../lib/speedreader.c:638
 msgid 
@@ -209,7 +211,8 @@ msgid 
 msgstr 
 Tutaj należy wprowadzić tekst do rpzeczytania.\n
 \n
-Należy się odprężyć i wygodnie ułożyć, następnie po wciśnięciu \Początek\, 
można rozpocząć szybkie czytanie.
+Należy się odprężyć i wygodnie ułożyć, następnie po wciśnięciu \Początek\, 
+można rozpocząć szybkie czytanie.
 
 #: ../lib/speedreader.c:654
 msgid Load the contents of a file
@@ -226,7 +229,7 @@ msgstr Wyczyść zawartość pola tekstowego
 
 #: ../lib/speedreader.c:684
 msgid _Start
-msgstr _Początek
+msgstr _Rozpocznij
 
 #: ../lib/common.c:188
 msgid The search URL is empty. Please check your preferences.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfdesktop:master l10n: Updated Finnish (fi) translation to 100%

2013-03-09 Thread Transifex
Updating branch refs/heads/master
 to a4e84ab1151d5ca7149d88ae784061f3b6604ec9 (commit)
   from b125271de08cd0f0682947df443ba194dc595b93 (commit)

commit a4e84ab1151d5ca7149d88ae784061f3b6604ec9
Author: Jari Rahkonen jari.rahko...@pp1.inet.fi
Date:   Sat Mar 9 17:46:25 2013 +0100

l10n: Updated Finnish (fi) translation to 100%

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

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

 po/fi.po |  558 ++
 1 files changed, 267 insertions(+), 291 deletions(-)

diff --git a/po/fi.po b/po/fi.po
index c85d3fa..f854789 100644
--- a/po/fi.po
+++ b/po/fi.po
@@ -3,27 +3,22 @@
 # This file is distributed under the same license as the xfdesktop package.
 # Ilkka Ollakka ilkka.olla...@iki.fi, 2004.
 # Jari Rahkonen jari.rahko...@pp1.inet.fi, 2005-2012.
-#
+# 
 msgid 
 msgstr 
 Project-Id-Version: xfdesktop 4.10\n
 Report-Msgid-Bugs-To: \n
-POT-Creation-Date: 2012-04-27 09:30+\n
+POT-Creation-Date: 2013-03-09 15:33+\n
 PO-Revision-Date: 2012-04-27 13:58+0300\n
 Last-Translator: Jari Rahkonen jari.rahko...@pp1.inet.fi\n
 Language-Team: Finnish xfce-i...@xfce.org\n
-Language: fi\n
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=UTF-8\n
 Content-Transfer-Encoding: 8bit\n
-
-#: ../common/xfdesktop-common.c:96 ../common/xfdesktop-common.c:200
-#, c-format
-msgid Backdrop list file is not valid
-msgstr Tiedosto ei ole kelvollinen taustakuvalista.
+Language: fi\n
 
 #. no need to escape markup; it's already done for us
-#: ../settings/main.c:166
+#: ../settings/main.c:151
 #, c-format
 msgid 
 %s\n
@@ -32,127 +27,72 @@ msgstr 
 %s\n
 iKoko: %dx%d/i
 
-#: ../settings/main.c:299 ../src/xfdesktop-special-file-icon.c:271
+#: ../settings/main.c:263 ../src/xfdesktop-special-file-icon.c:271
 #: ../src/xfdesktop-special-file-icon.c:434
 msgid Home
 msgstr Kotikansio
 
-#: ../settings/main.c:301
+#: ../settings/main.c:265
 msgid Filesystem
 msgstr Tiedostojärjestelmä
 
-#: ../settings/main.c:303
+#: ../settings/main.c:267
 msgid Trash
 msgstr Roskakori
 
-#: ../settings/main.c:305
+#: ../settings/main.c:269
 msgid Removable Devices
 msgstr Irrotettavat taltiot
 
-#: ../settings/main.c:485
+#: ../settings/main.c:454
 #, c-format
-msgid Cannot create backdrop list \%s\
-msgstr Ei voi luoda taustakuvalistaa \%s\.
+msgid Wallpaper for %s on Monitor %d (%s)
+msgstr Taustakuva työtilalle %d näytöllä %d (%s)
 
-#: ../settings/main.c:489 ../settings/main.c:862
-msgid Backdrop List Error
-msgstr Taustakuvalistavirhe
-
-#: ../settings/main.c:514
-msgid Create/Load Backdrop List
-msgstr Luo/lataa taustakuvalista
-
-#: ../settings/main.c:538
+#: ../settings/main.c:458
 #, c-format
-msgid 
-File \%s\ is not a valid backdrop list file.  Do you wish to overwrite it?
-msgstr Tiedosto \%s\ ei ole kelvollinen taustakuvalista. Korvataanko se?
+msgid Wallpaper for %s on Monitor %d
+msgstr Taustakuva työtilalle %d näytöllä %d
 
-#: ../settings/main.c:543
-msgid Invalid List File
-msgstr Taustakuvalista ei kelpaa
+#: ../settings/main.c:862
+msgid Spanning screens
+msgstr Ruuduilla
 
-#: ../settings/main.c:546
-msgid Overwriting the file will cause its contents to be lost.
-msgstr Jos korvaat tiedoston, sen sisältö menetetään.
-
-#: ../settings/main.c:548
-msgid Replace
-msgstr Korvaa
-
-#: ../settings/main.c:858
-#, c-format
-msgid Failed to write backdrop list to \%s\
-msgstr Taustakuvalistan kirjoitus epäonnistui kohteeseen \%s\.
-
-#: ../settings/main.c:885
-msgid Add Image File(s)
-msgstr Lisää kuvatiedosto(ja)
-
-#: ../settings/main.c:894
+#: ../settings/main.c:1011
 msgid Image files
 msgstr Kuvatiedostot
 
-#: ../settings/main.c:899
-msgid All files
-msgstr Kaikki tiedostot
-
-#: ../settings/main.c:1363
-#, c-format
-msgid Screen %d, Monitor %d (%s)
-msgstr Näyttö %d, Monitori %d (%s)
-
-#: ../settings/main.c:1367
-#, c-format
-msgid Screen %d, Monitor %d
-msgstr Näyttö %d, Monitori %d
-
-#: ../settings/main.c:1370
-#, c-format
-msgid Screen %d
-msgstr Näyttö %d
-
-#: ../settings/main.c:1375
-#, c-format
-msgid Monitor %d (%s)
-msgstr Monitori %d (%s)
-
-#: ../settings/main.c:1379
-#, c-format
-msgid Monitor %d
-msgstr Monitori %d
-
-#: ../settings/main.c:1638
+#: ../settings/main.c:
 msgid Settings manager socket
 msgstr Asetustenhallinnan pistoke
 
-#: ../settings/main.c:1638
+#: ../settings/main.c:
 msgid SOCKET ID
 msgstr PISTOKE
 
-#: ../settings/main.c:1639
+#: ../settings/main.c:1112
 msgid Version information
 msgstr Versiotiedot
 
-#: ../settings/main.c:1656
+#: ../settings/main.c:1129
 #, c-format
 msgid Type '%s --help' for usage.
 msgstr Saat ohjeita komennolla \%s --help\.
 
-#: ../settings/main.c:1668
+#: ../settings/main.c:1141
 msgid The Xfce development team. All rights reserved.
 msgstr Xfce:n kehitystiimi. Kaikki oikeudet pidätetään.
 
-#: ../settings/main.c:1669
+#: ../settings/main.c:1142
 #, c-format
 msgid Please report bugs to %s.
 msgstr Ilmoita 

[Xfce4-commits] libxfce4ui:master Update translators, week 09.

2013-03-09 Thread Transifex
Updating branch refs/heads/master
 to 038c30c9a123efa3dd8506c81a00aaabf33d1a6d (commit)
   from d45d2a00033274375fb7669b02461c853f377056 (commit)

commit 038c30c9a123efa3dd8506c81a00aaabf33d1a6d
Author: Transifex nore...@xfce.org
Date:   Sun Mar 10 00:21:08 2013 +0100

Update translators, week 09.

 xfce4-about/translators.h |7 ++-
 1 files changed, 6 insertions(+), 1 deletions(-)

diff --git a/xfce4-about/translators.h b/xfce4-about/translators.h
index 3e538dd..edf3649 100644
--- a/xfce4-about/translators.h
+++ b/xfce4-about/translators.h
@@ -24,7 +24,7 @@
 #include gtk/gtk.h
 #include libxfce4util/libxfce4util.h
 
-#define TRANSLATORS_H_STAMP 2013-03-03 00:21:07
+#define TRANSLATORS_H_STAMP 2013-03-10 00:21:08
 #define ATSIGN @
 #define DOTSIGN .
 
@@ -79,8 +79,10 @@ static const TranslatorInfo xfce_translators_ast[] =
 static const TranslatorInfo xfce_translators_be[] =
 {
   { Andrej Zakharevich, andrej ATSIGN zahar DOTSIGN ws, TRUE },
+  { Anton Barycheuski, antofa1 ATSIGN mail DOTSIGN ru, FALSE },
   { Arthur Schebetau, archisoft6 ATSIGN gmail DOTSIGN com, FALSE },
   { belarus, useq ATSIGN list DOTSIGN ru, FALSE },
+  { Юрый Кашчэеў, zowenko ATSIGN open DOTSIGN by, FALSE },
   { Mikalai Udodau, crom-a ATSIGN tut DOTSIGN by, FALSE },
   { Mike Gelfand, mikedld ATSIGN mikedld DOTSIGN com, FALSE },
   { NULL, NULL }
@@ -137,6 +139,7 @@ static const TranslatorInfo xfce_translators_cs[] =
 static const TranslatorInfo xfce_translators_da[] =
 {
   { Per Kongstad, p_kongstad ATSIGN op DOTSIGN pl, TRUE },
+  { Aputsiaq Janussen, aj ATSIGN isit DOTSIGN gl, FALSE },
   { Kris Thomsen, mail ATSIGN kristhomsen DOTSIGN dk, FALSE },
   { Morten Juhl-Johansen Zölde-Fejér, mjjzf ATSIGN syntaktisk DOTSIGN 
dk, FALSE },
   { NULL, NULL }
@@ -449,6 +452,7 @@ static const TranslatorInfo xfce_translators_ms[] =
 
 static const TranslatorInfo xfce_translators_nb[] =
 {
+  { Johan Skorild, x DOTSIGN bluebanana ATSIGN gmail DOTSIGN com, 
FALSE },
   { takoi, thomas DOTSIGN amland ATSIGN gmail DOTSIGN com, FALSE },
   { Terje Uriansrud, terje ATSIGN uriansrud DOTSIGN net, FALSE },
   { Kevin Brubeck Unhammer, javkalas ATSIGN mm DOTSIGN st, FALSE },
@@ -774,6 +778,7 @@ static const TranslatorInfo xfce_translators_zh_CN[] =
   { Michael Lin, linmx0130 ATSIGN 163 DOTSIGN com, FALSE },
   { Howard Chan, smartboyhw ATSIGN gmail DOTSIGN com, FALSE },
   { tuhaihe, 1132321739qq ATSIGN gmail DOTSIGN com, FALSE },
+  { winjeg kong, winjeg ATSIGN gmail DOTSIGN com, FALSE },
   { NULL, NULL }
 };
 
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] www:master Update translators, week 09.

2013-03-09 Thread Transifex
Updating branch refs/heads/master
 to 8efbe9a2f0ea6fc0184c878f2a45b296647b1141 (commit)
   from 1d17b0fd8084749037f174d577988de0a57b0281 (commit)

commit 8efbe9a2f0ea6fc0184c878f2a45b296647b1141
Author: Transifex nore...@xfce.org
Date:   Sun Mar 10 00:21:12 2013 +0100

Update translators, week 09.

 lib/translators.php |7 ++-
 1 files changed, 6 insertions(+), 1 deletions(-)

diff --git a/lib/translators.php b/lib/translators.php
index 179e23f..d88c01c 100644
--- a/lib/translators.php
+++ b/lib/translators.php
@@ -4,7 +4,7 @@
  * DO NOT EDIT IT MANUALLY!
  */
 
-$translators_stamp = 2013-03-03 00:21:11;
+$translators_stamp = 2013-03-10 00:21:12;
 
 $translators = array (
   'Amharic [am]' = array (
@@ -32,8 +32,10 @@ $translators = array (
   ),
   'Belarusian [be]' = array (
 'Andrej Zakharevich' = 'andrej'.ATSIGN.'zahar'.DOTSIGN.'ws',
+'Anton Barycheuski' = 'antofa1'.ATSIGN.'mail'.DOTSIGN.'ru',
 'Arthur Schebetau' = 'archisoft6'.ATSIGN.'gmail'.DOTSIGN.'com',
 'belarus' = 'useq'.ATSIGN.'list'.DOTSIGN.'ru',
+'Юрый Кашчэеў' = 'zowenko'.ATSIGN.'open'.DOTSIGN.'by',
 'Mikalai Udodau' = 'crom-a'.ATSIGN.'tut'.DOTSIGN.'by',
 'Mike Gelfand' = 'mikedld'.ATSIGN.'mikedld'.DOTSIGN.'com',
   ),
@@ -72,6 +74,7 @@ $translators = array (
   ),
   'Danish [da]' = array (
 'Per Kongstad' = 'p_kongstad'.ATSIGN.'op'.DOTSIGN.'pl',
+'Aputsiaq Janussen' = 'aj'.ATSIGN.'isit'.DOTSIGN.'gl',
 'Kris Thomsen' = 'mail'.ATSIGN.'kristhomsen'.DOTSIGN.'dk',
 'Morten Juhl-Johansen Zölde-Fejér' = 
'mjjzf'.ATSIGN.'syntaktisk'.DOTSIGN.'dk',
   ),
@@ -294,6 +297,7 @@ $translators = array (
 'Mohd'.DOTSIGN.' Nadzrin Sapari' = 
'terjemah'.DOTSIGN.'puretech'.ATSIGN.'gmail'.DOTSIGN.'com',
   ),
   'Norwegian Bokmal [nb]' = array (
+'Johan Skorild' = 'x'.DOTSIGN.'bluebanana'.ATSIGN.'gmail'.DOTSIGN.'com',
 'takoi' = 'thomas'.DOTSIGN.'amland'.ATSIGN.'gmail'.DOTSIGN.'com',
 'Terje Uriansrud' = 'terje'.ATSIGN.'uriansrud'.DOTSIGN.'net',
 'Kevin Brubeck Unhammer' = 'javkalas'.ATSIGN.'mm'.DOTSIGN.'st',
@@ -541,6 +545,7 @@ $translators = array (
 'Michael Lin' = 'linmx0130'.ATSIGN.'163'.DOTSIGN.'com',
 'Howard Chan' = 'smartboyhw'.ATSIGN.'gmail'.DOTSIGN.'com',
 'tuhaihe' = '1132321739qq'.ATSIGN.'gmail'.DOTSIGN.'com',
+'winjeg kong' = 'winjeg'.ATSIGN.'gmail'.DOTSIGN.'com',
   ),
   'Chinese (Hong Kong) [zh_HK]' = array (
 'Howard Chan' = 'smartboyhw'.ATSIGN.'gmail'.DOTSIGN.'com',
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits