[Xfce4-commits] parole:master Replace deprecated goodies-website link with plugins-page of the docs

2013-12-03 Thread Simon Steinbeiss
Updating branch refs/heads/master
 to be01f0217333ef9e6d127d5965dbc16512eb4fa4 (commit)
   from eee4efefc42dfb2169086b87e5696bca85c660ed (commit)

commit be01f0217333ef9e6d127d5965dbc16512eb4fa4
Author: Simon Steinbeiss simon.steinbe...@elfenbeinturm.at
Date:   Tue Dec 3 09:27:16 2013 +0100

Replace deprecated goodies-website link with plugins-page of the docs

 data/interfaces/plugins.ui |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/data/interfaces/plugins.ui b/data/interfaces/plugins.ui
index 7aaf5db..4fcc264 100644
--- a/data/interfaces/plugins.ui
+++ b/data/interfaces/plugins.ui
@@ -191,7 +191,7 @@
 property name=receives_defaultTrue/property
 property name=has_tooltipTrue/property
 property name=reliefnone/property
-property name=urihttp://goodies.xfce.org/property
+property 
name=urihttp://docs.xfce.org/apps/parole/plugins/property
   /object
   packing
 property name=expandFalse/property
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] orage:master 4.9.10.8 Fixed timezone bugs also for events using length instead of endtime

2013-12-03 Thread Juha Kautto
Updating branch refs/heads/master
 to bf14ecade213b547f7423e40b3b7a7000e69fb79 (commit)
   from 5c02ddee5f103c0e790065afeee8407ac984cee5 (commit)

commit bf14ecade213b547f7423e40b3b7a7000e69fb79
Author: Juha Kautto j...@xfce.org
Date:   Tue Dec 3 12:06:21 2013 +0200

4.9.10.8 Fixed timezone bugs also for events using length instead of endtime

There is not always endtime, so needed to patch also that.

 configure.in.in |2 +-
 src/ical-code.c |   40 +---
 2 files changed, 26 insertions(+), 16 deletions(-)

diff --git a/configure.in.in b/configure.in.in
index 66323bf..f5f5815 100644
--- a/configure.in.in
+++ b/configure.in.in
@@ -9,7 +9,7 @@ dnl Written for Xfce by Juha Kautto j...@xfce.org
 dnl
 
 dnl Version information
-m4_define([orage_version], [4.9.10.7-git])
+m4_define([orage_version], [4.9.10.8-git])
 
 m4_define([gtk_minimum_version], [2.14.0])
 m4_define([xfce_minimum_version], [4.8.0])
diff --git a/src/ical-code.c b/src/ical-code.c
index 4cc90e7..b52c466 100644
--- a/src/ical-code.c
+++ b/src/ical-code.c
@@ -3498,26 +3498,28 @@ static void mark_calendar(icalcomponent *c, 
icaltime_span *span , void *data)
 gmtime_r(temp, end_tm);
 }
 sdate = icaltime_from_string(orage_tm_time_to_icaltime(start_tm));
+edate = icaltime_from_string(orage_tm_time_to_icaltime(end_tm));
 if (cal_data-appt.freq != XFICAL_FREQ_HOURLY
   start_tm.tm_hour != cal_data-orig_start_hour) {
 orage_message(-10, P_N FIXING WRONG HOUR Title (%s) %d - %d (day 
%d), cal_data-appt.title, start_tm.tm_hour, cal_data-orig_start_hour, 
start_tm.tm_mday);
 /* WHEN we arrive here, libical has done an extra UTC conversion,
   which we need to undo */
 sdate = convert_to_zone(sdate, UTC);
+edate = convert_to_zone(edate, UTC);
 }
 else {
 sdate = convert_to_zone(sdate, cal_data-appt.start_tz_loc);
+edate = convert_to_zone(edate, cal_data-appt.end_tz_loc);
 }
 sdate = icaltime_convert_to_zone(sdate, local_icaltimezone);
-edate = icaltime_from_string(orage_tm_time_to_icaltime(end_tm));
+edate = icaltime_convert_to_zone(edate, local_icaltimezone);
+/*
 if (cal_data-appt.freq != XFICAL_FREQ_HOURLY
   end_tm.tm_hour != cal_data-orig_end_hour) {
-edate = convert_to_zone(edate, UTC);
 }
 else {
-edate = convert_to_zone(edate, cal_data-appt.end_tz_loc);
 }
-edate = icaltime_convert_to_zone(edate, local_icaltimezone);
+*/
 /* fix for bug 8508 prevent showing extra day in calendar.
Only has effect when end date is midnight */
 icaltime_adjust(edate, 0, 0, 0, -1);
@@ -3595,9 +3597,11 @@ static void 
xfical_mark_calendar_from_component(GtkCalendar *gtkcal
what the time is in, libical returns wrong time in span.
But as the hour only changes with HOURLY repeating appointments,
we can replace received hour with the hour from start time */
+/*
 p = icalcomponent_get_first_property(c, ICAL_DTEND_PROPERTY);
 start = icalproperty_get_dtend(p);
 cal_data.orig_end_hour = start.hour;
+*/
 p = icalcomponent_get_first_property(c, ICAL_DTSTART_PROPERTY);
 start = icalproperty_get_dtstart(p);
 cal_data.orig_start_hour = start.hour;
@@ -3783,13 +3787,14 @@ static void add_appt_to_list(icalcomponent *c, 
icaltime_span *span , void *data)
 gmtime_r(span-end, end_tm);
 /*
 if (data1-file_type[0] == 'F') {
-orage_message(10, P_N 1 Title (%s)\n\tcur Start:%s End:%s\n\tlimit 
Start:%s End:%s\n\traw Start:%s (%s) End:%s (%s)\n\tSpan Start:%d (%d) End:%d 
(%d)\n\tREAL Span Start:%d End:%d
+orage_message(10, P_N 1 Title (%s)\n\tcur Start:%s End:%s\n\tlimit 
Start:%s End:%s\n\traw Start:%s (%s) End:%s (%s)\n\tSpan Start:%d (%d) End:%d 
(%d)\n\tREAL Span Start:%d End:%d\n\t orig start:%d, orig:end:%d
 , appt-title
 , appt-starttimecur, appt-endtimecur
 , data1-asdate, data1-aedate
 , appt-starttime, appt-start_tz_loc, appt-endtime, appt-end_tz_loc
 , start_tm.tm_mday, start_tm.tm_hour, end_tm.tm_mday, end_tm.tm_hour
 , span-start, span-end
+, data1-orig_start_hour, data1-orig_end_hour
 );
 }
 */
@@ -3806,7 +3811,9 @@ static void add_appt_to_list(icalcomponent *c, 
icaltime_span *span , void *data)
the last day */
 }
 /* end of bug workaround */
+/* FIXME: should we use interval instead ? */
 sdate = icaltime_from_string(orage_tm_time_to_icaltime(start_tm));
+edate = icaltime_from_string(orage_tm_time_to_icaltime(end_tm));
 /* BUG 7929. If calendar file contains same timezone definition than what
the time is in, libical returns wrong time in span. But as the hour
only changes with HOURLY repeating appointments, we can replace received
@@ -3817,22 +3824,16 @@ static void add_appt_to_list(icalcomponent *c, 
icaltime_span *span , 

[Xfce4-commits] xfwm4:ochosi/tabwin Expand the font-size fix to work for the listview

2013-12-03 Thread Simon Steinbeiss
Updating branch refs/heads/ochosi/tabwin
 to da430eb8ffc740cf26d344b77dafb57d8d761790 (commit)
   from 034ff38453afbae11d9d0768609e83faace49fbf (commit)

commit da430eb8ffc740cf26d344b77dafb57d8d761790
Author: Simon Steinbeiss simon.steinbe...@elfenbeinturm.at
Date:   Tue Dec 3 12:22:32 2013 +0100

Expand the font-size fix to work for the listview

 src/tabwin.c |   15 +--
 1 file changed, 9 insertions(+), 6 deletions(-)

diff --git a/src/tabwin.c b/src/tabwin.c
index 3fadbfe..08d2f05 100644
--- a/src/tabwin.c
+++ b/src/tabwin.c
@@ -464,13 +464,13 @@ createWindowlist (ScreenInfo *screen_info, TabwinWidget 
*tbw)
 g_signal_connect (window_button, leave-notify-event, G_CALLBACK 
(cb_window_button_leave), tbw);
 gtk_widget_add_events (window_button, GDK_ENTER_NOTIFY_MASK);
 
+/* We need to account for changes to the font size in the user's
+ * appearance theme and gtkrc settings */
+layout = gtk_widget_create_pango_layout (GTK_WIDGET (tbw), );
+pango_layout_get_pixel_size (layout, NULL, app_label_height);
+
 if (screen_info-params-cycle_tabwin_mode == STANDARD_ICON_GRID)
 {
-/* We need to account for changes to the font size in the user's
- * appearance theme and gtkrc settings */
-layout = gtk_widget_create_pango_layout (GTK_WIDGET (tbw), );
-pango_layout_get_pixel_size (layout, NULL, app_label_height);
-
 gtk_widget_set_size_request (GTK_WIDGET (window_button), 
icon_size+24, icon_size+app_label_height+8);
 buttonbox = gtk_vbox_new (FALSE, 0);
 buttonlabel = gtk_label_new ();
@@ -478,7 +478,10 @@ createWindowlist (ScreenInfo *screen_info, TabwinWidget 
*tbw)
 }
 else
 {
-gtk_widget_set_size_request (GTK_WIDGET (window_button), 
icon_size+256, icon_size+8);
+if (icon_size  app_label_height)
+gtk_widget_set_size_request (GTK_WIDGET (window_button), 
icon_size+256, app_label_height+8);
+else
+gtk_widget_set_size_request (GTK_WIDGET (window_button), 
icon_size+256, icon_size+8);
 buttonbox = gtk_hbox_new (FALSE, 6);
 buttonlabel = gtk_label_new (c-name);
 gtk_misc_set_alignment (GTK_MISC (buttonlabel), 0, 0.5);
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfce4-datetime-plugin:master I18n: Add new translation sl (89%).

2013-12-03 Thread Transifex
Updating branch refs/heads/master
 to b40be4e8c122439ae18c284a5cf01e776b2fe486 (commit)
   from 0da8f7f86c56d24d9ea0d69ac9c4d8aaf6aca96e (commit)

commit b40be4e8c122439ae18c284a5cf01e776b2fe486
Author: anthonmanix anthon.ma...@gmail.com
Date:   Tue Dec 3 12:31:21 2013 +0100

I18n: Add new translation sl (89%).

17 translated messages, 2 untranslated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).

 po/{nl.po = sl.po} |   49 +
 1 file changed, 25 insertions(+), 24 deletions(-)

diff --git a/po/nl.po b/po/sl.po
similarity index 69%
copy from po/nl.po
copy to po/sl.po
index 87bcfd7..c50fdaf 100644
--- a/po/nl.po
+++ b/po/sl.po
@@ -3,75 +3,76 @@
 # This file is distributed under the same license as the PACKAGE package.
 # 
 # Translators:
-# Remco den Breeje re...@sx.mine.nu, 2006
+# anthonmanix anthon.ma...@gmail.com, 2013
+# Klemen Košir klemen...@gmail.com, 2013
 msgid 
 msgstr 
 Project-Id-Version: Xfce Panel Plugins\n
 Report-Msgid-Bugs-To: \n
 POT-Creation-Date: 2013-07-03 20:55+0200\n
-PO-Revision-Date: 2013-09-19 14:36+\n
-Last-Translator: Pjotr123 pjotrverta...@gmail.com\n
-Language-Team: Dutch 
(http://www.transifex.com/projects/p/xfce/language/nl/)\n
+PO-Revision-Date: 2013-12-03 11:06+\n
+Last-Translator: anthonmanix anthon.ma...@gmail.com\n
+Language-Team: Slovenian 
(http://www.transifex.com/projects/p/xfce/language/sl/)\n
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=UTF-8\n
 Content-Transfer-Encoding: 8bit\n
-Language: nl\n
-Plural-Forms: nplurals=2; plural=(n != 1);\n
+Language: sl\n
+Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || 
n%100==4 ? 2 : 3);\n
 
 #: ../panel-plugin/datetime.c:87
 msgid Invalid format
-msgstr Ongeldige opmaak
+msgstr Neveljavna oblika
 
 #: ../panel-plugin/datetime.c:92
 msgid Error
-msgstr Fout
+msgstr Napaka
 
 #: ../panel-plugin/datetime-dialog.c:42
 msgid Date, then time
-msgstr Datum, gevolgd door tijd
+msgstr Datum, potem čas
 
 #: ../panel-plugin/datetime-dialog.c:43
 msgid Time, then date
-msgstr Tijd, gevolgd door datum
+msgstr Čas, potem datum
 
 #: ../panel-plugin/datetime-dialog.c:44
 msgid Date only
-msgstr Alleen datum
+msgstr Samo datum
 
 #: ../panel-plugin/datetime-dialog.c:45
 msgid Time only
-msgstr Alleen tijd
+msgstr Samo čas
 
 #. placeholder
 #: ../panel-plugin/datetime-dialog.c:85 ../panel-plugin/datetime-dialog.c:96
 msgid Custom...
-msgstr Aangepast...
+msgstr Po meri...
 
 #: ../panel-plugin/datetime-dialog.c:131
 msgid Select font
-msgstr Kies lettertype
+msgstr Izberite pisavo
 
 #: ../panel-plugin/datetime-dialog.c:313
 #, c-format
 msgid Unable to open the following url: %s
-msgstr Kan het volgende webadres niet openen: %s
+msgstr Naslova URL ni mogoče odpreti: %s
 
 #: ../panel-plugin/datetime-dialog.c:352
 msgid Datetime
-msgstr Datumtijd
+msgstr 
 
 #. * layout frame
 #. 
 #: ../panel-plugin/datetime-dialog.c:372
 msgid Layout
-msgstr Vormgeving
+msgstr Razporeditev
 
 #. Format label
 #. format label
 #: ../panel-plugin/datetime-dialog.c:386 ../panel-plugin/datetime-dialog.c:446
 #: ../panel-plugin/datetime-dialog.c:547
 msgid Format:
-msgstr Opmaak:
+msgstr Oblika:
 
 #. * Date frame
 #. 
@@ -81,27 +82,27 @@ msgstr Datum
 
 #: ../panel-plugin/datetime-dialog.c:417
 msgid The date will appear in a tooltip.
-msgstr De datum zal verschijnen in een gereedschaptip.
+msgstr Datum bo prikazan v orodnem namigu.
 
 #. font label
 #: ../panel-plugin/datetime-dialog.c:429 ../panel-plugin/datetime-dialog.c:530
 msgid Font:
-msgstr Lettertype:
+msgstr Pisava:
 
 #. * time frame
 #. 
 #: ../panel-plugin/datetime-dialog.c:507
 msgid Time
-msgstr Tijd
+msgstr Čas
 
 #: ../panel-plugin/datetime-dialog.c:518
 msgid The time will appear in a tooltip.
-msgstr De tijd zal verschijnen in een gereedschaptip.
+msgstr Čas bo prikazan v orodnem namigu.
 
 #: ../panel-plugin/datetime.desktop.in.h:1
 msgid DateTime
-msgstr DatumTijd
+msgstr 
 
 #: ../panel-plugin/datetime.desktop.in.h:2
 msgid Date and Time plugin with a simple calendar
-msgstr Datum en tijd-invoegtoepassing met een simpele kalender
+msgstr Vstavek za datum in čas s preprostim koledarjem
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfce4-eyes-plugin:master I18n: Add new translation sl (100%).

2013-12-03 Thread Transifex
Updating branch refs/heads/master
 to ffd2e2e8aff46fbbd6f65f73fc82d3501fca341f (commit)
   from d51d1e0e4f235d38576cfa2b2d6d7326033c62a3 (commit)

commit ffd2e2e8aff46fbbd6f65f73fc82d3501fca341f
Author: anthonmanix anthon.ma...@gmail.com
Date:   Tue Dec 3 12:31:25 2013 +0100

I18n: Add new translation sl (100%).

4 translated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).

 po/{da.po = sl.po} |   21 ++---
 1 file changed, 10 insertions(+), 11 deletions(-)

diff --git a/po/da.po b/po/sl.po
similarity index 59%
copy from po/da.po
copy to po/sl.po
index 5d01fac..deb9685 100644
--- a/po/da.po
+++ b/po/sl.po
@@ -3,34 +3,33 @@
 # This file is distributed under the same license as the PACKAGE package.
 # 
 # Translators:
-# cedeel ch...@cedeel.com, 2013
-# Jens Hyllegaard jens.hyllega...@gmail.com, 2007
+# anthonmanix anthon.ma...@gmail.com, 2013
 msgid 
 msgstr 
 Project-Id-Version: Xfce Panel Plugins\n
 Report-Msgid-Bugs-To: \n
 POT-Creation-Date: 2013-07-03 20:59+0200\n
-PO-Revision-Date: 2013-11-20 18:01+\n
-Last-Translator: cedeel ch...@cedeel.com\n
-Language-Team: Danish 
(http://www.transifex.com/projects/p/xfce/language/da/)\n
+PO-Revision-Date: 2013-12-03 07:33+\n
+Last-Translator: anthonmanix anthon.ma...@gmail.com\n
+Language-Team: Slovenian 
(http://www.transifex.com/projects/p/xfce/language/sl/)\n
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=UTF-8\n
 Content-Transfer-Encoding: 8bit\n
-Language: da\n
-Plural-Forms: nplurals=2; plural=(n != 1);\n
+Language: sl\n
+Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || 
n%100==4 ? 2 : 3);\n
 
 #: ../panel-plugin/eyes.c:332 ../panel-plugin/eyes.desktop.in.h:1
 msgid Eyes
-msgstr Øjne
+msgstr Oči
 
 #: ../panel-plugin/eyes.c:348
 msgid _Select a theme:
-msgstr _Vælg et tema:
+msgstr _Izberite temo:
 
 #: ../panel-plugin/eyes.c:385
 msgid Use single _row in multi-row panel
-msgstr Benyt en enkelt _række i et panel med flere rækker
+msgstr Uporabi eno _vrstico na več vrstičnem pladnju
 
 #: ../panel-plugin/eyes.desktop.in.h:2
 msgid Eyes that spy on you
-msgstr Øjne, der udspionerer dig
+msgstr Oči vohunijo za vami
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfce4-mixer:master I18n: Update translation is (50%).

2013-12-03 Thread Transifex
Updating branch refs/heads/master
 to e5fe8ea3aa650877eaaa295df4304cdd7f0357ba (commit)
   from c9183fd134679dc6d7a613079fc26b7681931b0b (commit)

commit e5fe8ea3aa650877eaaa295df4304cdd7f0357ba
Author: Sveinn í Felli svei...@nett.is
Date:   Tue Dec 3 12:31:05 2013 +0100

I18n: Update translation is (50%).

18 translated messages, 18 untranslated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).

 po/is.po |  109 --
 1 file changed, 27 insertions(+), 82 deletions(-)

diff --git a/po/is.po b/po/is.po
index 6ae34f8..d67f726 100644
--- a/po/is.po
+++ b/po/is.po
@@ -1,22 +1,22 @@
-# translation of is.po to Icelandic
-# Copyright (C) 2011 Free Software Foundation
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
 # This file is distributed under the same license as the PACKAGE package.
-#
-# Sveinn í Felli svei...@nett.is, 2011.
+# 
+# Translators:
+# Sveinn í Felli svei...@nett.is, 2011,2013
 msgid 
 msgstr 
-Project-Id-Version: is\n
+Project-Id-Version: Xfce Apps\n
 Report-Msgid-Bugs-To: \n
 POT-Creation-Date: 2012-09-29 13:30+\n
-PO-Revision-Date: 2011-12-08 21:52+\n
+PO-Revision-Date: 2013-12-03 10:01+\n
 Last-Translator: Sveinn í Felli svei...@nett.is\n
-Language-Team: Icelandic translation-team...@lists.sourceforge.net\n
-Language: is\n
+Language-Team: Icelandic 
(http://www.transifex.com/projects/p/xfce/language/is/)\n
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=UTF-8\n
 Content-Transfer-Encoding: 8bit\n
-Plural-Forms: Plural-Forms: nplurals=2; plural=n != 1;\n
-X-Generator: KBabel 1.11.4\n
+Language: is\n
+Plural-Forms: nplurals=2; plural=(n != 1);\n
 
 #. Add menu item for muting
 #: ../panel-plugin/xfce-mixer-plugin.c:306
@@ -29,28 +29,26 @@ msgstr 
 
 #: ../panel-plugin/xfce-mixer-plugin.c:581 ../xfce4-mixer/main.c:148
 msgid 
-GStreamer was unable to detect any sound devices. Some sound system specific 
-GStreamer packages may be missing. It may also be a permissions problem.
+GStreamer was unable to detect any sound devices. Some sound system specific
+ GStreamer packages may be missing. It may also be a permissions problem.
 msgstr 
 
 #: ../panel-plugin/xfce-mixer-plugin.c:931
-#, fuzzy
 msgid No command defined
-msgstr Engin vinstri-smells-skipun skilgreind
+msgstr 
 
 #. Generate error message and insert the current command
 #: ../panel-plugin/xfce-mixer-plugin.c:939
 #, c-format
 msgid 
-Could not execute the command \%s\. Ensure that either the location of the 
-command is included in the PATH environment variable or that you are 
+Could not execute the command \%s\. Ensure that either the location of the
+ command is included in the PATH environment variable or that you are 
 providing the full path to the command.
 msgstr 
 
 #: ../panel-plugin/xfce-plugin-dialog.c:150
-#, fuzzy
 msgid Audio Mixer Plugin
-msgstr Hljóðblöndunarviðbót
+msgstr 
 
 #: ../panel-plugin/xfce-plugin-dialog.c:152
 msgid Configure the sound card and mixer track
@@ -58,14 +56,12 @@ msgstr 
 
 #: ../panel-plugin/xfce-plugin-dialog.c:165
 #: ../xfce4-mixer/xfce-mixer-window.c:185
-#, fuzzy
 msgid Sound _card:
-msgstr Hljóðkort:
+msgstr Hljóð_kort:
 
 #: ../panel-plugin/xfce-plugin-dialog.c:174
-#, fuzzy
 msgid Mixer _track:
-msgstr Hljóðblöndunarrás
+msgstr Hljóð_blöndunarrás:
 
 #: ../panel-plugin/xfce-volume-button.c:854
 msgid No valid device and/or element.
@@ -74,7 +70,7 @@ msgstr 
 #: ../panel-plugin/xfce-volume-button.c:859
 #, c-format
 msgid %s: muted
-msgstr 
+msgstr %s: þaggað niður
 
 #: ../panel-plugin/xfce-volume-button.c:861
 #, c-format
@@ -87,19 +83,18 @@ msgstr %s: %i%%
 #: ../xfce4-mixer/xfce-mixer-window.c:413
 #: ../xfce4-mixer/xfce-mixer-window.c:427
 #: ../xfce4-mixer/xfce4-mixer.desktop.in.h:1
-#, fuzzy
 msgid Audio Mixer
 msgstr Hljóðblandari
 
 #: ../panel-plugin/mixer.desktop.in.h:2
 #: ../xfce4-mixer/xfce4-mixer.desktop.in.h:2
 msgid Adjust volume levels
-msgstr 
+msgstr Stilla hljóðstyrk
 
 #: ../libxfce4mixer/libxfce4mixer.c:422
 #, c-format
 msgid Unknown Volume Control %d
-msgstr Óþekkt hljóðstyrksstjórnun %d
+msgstr Óþekkt hljóðstyrksstýring %d
 
 #: ../xfce4-mixer/main.c:86
 msgid Enable debugging output
@@ -110,29 +105,25 @@ msgid Show version and exit
 msgstr 
 
 #: ../xfce4-mixer/main.c:130
-#, fuzzy, c-format
+#, c-format
 msgid xfce4-mixer: Failed to initialize xfconf: %s\n
-msgstr Mistókst að frumstilla xfconf: %s
+msgstr 
 
 #: ../xfce4-mixer/xfce-mixer-container.c:218
-#, fuzzy
 msgid _Playback
-msgstr Afspilun
+msgstr _Afspilun
 
 #: ../xfce4-mixer/xfce-mixer-container.c:218
-#, fuzzy
 msgid C_apture
-msgstr Upptaka
+msgstr _Upptaka
 
 #: ../xfce4-mixer/xfce-mixer-container.c:218
-#, fuzzy
 msgid S_witches
-msgstr Rofar
+msgstr _Rofar
 
 #: ../xfce4-mixer/xfce-mixer-container.c:218
-#, fuzzy
 msgid _Options
-msgstr Valkostir
+msgstr _Valkostir
 
 #: ../xfce4-mixer/xfce-mixer-container.c:390
 msgid No controls visible

[Xfce4-commits] xfce4-dict:master I18n: Update translation is (73%).

2013-12-03 Thread Transifex
Updating branch refs/heads/master
 to 035c87c4769234b946b930da129604c28b980e00 (commit)
   from 89debe52662e48c5337e5038fab3bd77f744f490 (commit)

commit 035c87c4769234b946b930da129604c28b980e00
Author: Sveinn í Felli svei...@nett.is
Date:   Tue Dec 3 12:31:03 2013 +0100

I18n: Update translation is (73%).

82 translated messages, 29 untranslated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).

 po/is.po |  196 +++---
 1 file changed, 98 insertions(+), 98 deletions(-)

diff --git a/po/is.po b/po/is.po
index 2921258..c5105bb 100644
--- a/po/is.po
+++ b/po/is.po
@@ -1,20 +1,22 @@
-# Icelandic translation of xfce-dict
-# Copyright (C) 2011 FSF
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
 # This file is distributed under the same license as the PACKAGE package.
-# Sveinn í Felli svei...@nett.is, 2011.
+# 
+# Translators:
+# Sveinn í Felli svei...@nett.is, 2011,2013
 msgid 
 msgstr 
-Project-Id-Version: xfce\n
+Project-Id-Version: Xfce Apps\n
 Report-Msgid-Bugs-To: \n
-POT-Creation-Date: 2013-05-20 16:06+0200\n
-PO-Revision-Date: 2011-12-18 10:04+\n
+POT-Creation-Date: 2013-07-03 20:36+0200\n
+PO-Revision-Date: 2013-12-03 10:01+\n
 Last-Translator: Sveinn í Felli svei...@nett.is\n
-Language-Team: is translation-team...@lists.sourceforge.net\n
-Language: is\n
+Language-Team: Icelandic 
(http://www.transifex.com/projects/p/xfce/language/is/)\n
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=UTF-8\n
 Content-Transfer-Encoding: 8bit\n
-Plural-Forms: nplurals=2; plural=n != 1;\n
+Language: is\n
+Plural-Forms: nplurals=2; plural=(n != 1);\n
 
 #: ../panel-plugin/xfce4-dict-plugin.desktop.in.h:1
 #: ../src/xfce4-dict.desktop.in.h:1 ../lib/gui.c:736 ../lib/prefs.c:270
@@ -29,7 +31,7 @@ msgstr 
 #: ../panel-plugin/xfce4-dict-plugin.c:492 ../src/xfce4-dict.c:200
 #: ../lib/spell.c:243 ../lib/gui.c:516
 msgid Ready
-msgstr 
+msgstr Tilbúið
 
 #: ../panel-plugin/xfce4-dict-plugin.c:431
 msgid Look up a word
@@ -37,7 +39,7 @@ msgstr Fletta upp orði
 
 #: ../panel-plugin/xfce4-dict-plugin.c:467 ../lib/gui.c:766
 msgid Search term
-msgstr 
+msgstr Leitarorð
 
 #: ../src/xfce4-dict.c:51
 msgid Search the given text using a Dict server(RFC 2229)
@@ -69,20 +71,20 @@ msgstr 
 
 #: ../src/xfce4-dict.c:58
 msgid Show version information
-msgstr 
+msgstr Sýna upplýsingar um útgáfu
 
 #: ../src/xfce4-dict.c:131
 msgid [TEXT]
-msgstr 
+msgstr [TEXTI]
 
 #: ../src/xfce4-dict.c:147
 #, c-format
 msgid Please report bugs to %s.
-msgstr 
+msgstr Tilkynntu villur til %s.
 
 #: ../src/xfce4-dict.desktop.in.h:2
 msgid Dictionary Client
-msgstr 
+msgstr Orðabókarbiðlari
 
 #: ../src/xfce4-dict.desktop.in.h:3 ../lib/gui.c:962
 msgid A client program to query different dictionaries.
@@ -90,7 +92,7 @@ msgstr 
 
 #: ../lib/spell.c:75
 msgid Spell Checker Results:
-msgstr 
+msgstr Niðurstöður stafsetningarleiðréttingar:
 
 #: ../lib/spell.c:101
 #, c-format
@@ -127,7 +129,7 @@ msgstr 
 
 #: ../lib/spell.c:208 ../lib/common.c:223
 msgid Invalid input
-msgstr 
+msgstr Ógilt inntak
 
 #: ../lib/spell.c:247
 #, c-format
@@ -136,43 +138,43 @@ msgstr 
 
 #: ../lib/speedreader.c:80 ../lib/speedreader.c:683
 msgid P_ause
-msgstr 
+msgstr _Bíða
 
 #: ../lib/speedreader.c:81
 msgid _Resume
-msgstr 
+msgstr Halda áf_ram
 
 #: ../lib/speedreader.c:263
 msgid Running
-msgstr 
+msgstr Keyrandi
 
 #: ../lib/speedreader.c:266
 msgid Finished
-msgstr 
+msgstr Lokið
 
 #: ../lib/speedreader.c:274
 msgid Speed Reader
-msgstr 
+msgstr Hraðlesari
 
 #: ../lib/speedreader.c:369
 msgid You must enter a text.
-msgstr 
+msgstr Þú verður að setja inn texta.
 
 #: ../lib/speedreader.c:506
 msgid Choose a file to load
-msgstr 
+msgstr Veldu skrá til hleðslu
 
 #: ../lib/speedreader.c:535
 #, c-format
 msgid The file '%s' could not be loaded.
-msgstr 
+msgstr Ekki var hægt að hlaða inn skránni '%s'.
 
 #: ../lib/speedreader.c:561
 #, c-format
 msgid (display %d word at a time)
 msgid_plural (display %d words at a time)
-msgstr[0] 
-msgstr[1] 
+msgstr[0] (birta %d orð í einu)
+msgstr[1] (birta %d orð í einu)
 
 #: ../lib/speedreader.c:586
 msgid 
@@ -182,31 +184,30 @@ msgstr 
 
 #: ../lib/speedreader.c:589
 msgid _Words per Minute:
-msgstr 
+msgstr _Orð á mínútu:
 
 #: ../lib/speedreader.c:595
 msgid _Mark Paragraphs
-msgstr 
+msgstr _Merkja málsgreinar
 
 #: ../lib/speedreader.c:602
 msgid Word _Grouping:
-msgstr 
+msgstr _Hópun orða:
 
 #: ../lib/speedreader.c:618
 msgid _Font Size:
-msgstr 
+msgstr _Leturstærð:
 
 #: ../lib/speedreader.c:638
 msgid 
 Enter some text here you would like to read.\n
 \n
-Be relaxed and make yourself comfortable, then press Start to begin speed 
-reading.
+Be relaxed and make yourself comfortable, then press Start to begin speed 
reading.
 msgstr 
 
 #: ../lib/speedreader.c:654
 msgid Load the contents of a file
-msgstr 
+msgstr Hlaða inn innihaldi skráar
 
 #: ../lib/speedreader.c:663
 

[Xfce4-commits] orage:master I18n: Update translation ja (100%).

2013-12-03 Thread Transifex
Updating branch refs/heads/master
 to 848d403ec8b2f1cefb76fa7082fce3a8075183de (commit)
   from bf14ecade213b547f7423e40b3b7a7000e69fb79 (commit)

commit 848d403ec8b2f1cefb76fa7082fce3a8075183de
Author: Masato HASHIMOTO cabezon.hashim...@gmail.com
Date:   Tue Dec 3 12:30:53 2013 +0100

I18n: Update translation ja (100%).

1021 translated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).

 po/ja.po |  456 --
 1 file changed, 232 insertions(+), 224 deletions(-)

diff --git a/po/ja.po b/po/ja.po
index cfc30e2..bcce1dd 100644
--- a/po/ja.po
+++ b/po/ja.po
@@ -8,8 +8,8 @@ msgid 
 msgstr 
 Project-Id-Version: Xfce Apps\n
 Report-Msgid-Bugs-To: \n
-POT-Creation-Date: 2013-11-29 12:30+0100\n
-PO-Revision-Date: 2013-12-02 15:24+\n
+POT-Creation-Date: 2013-12-02 18:30+0100\n
+PO-Revision-Date: 2013-12-03 08:44+\n
 Last-Translator: Masato HASHIMOTO cabezon.hashim...@gmail.com\n
 Language-Team: Japanese 
(http://www.transifex.com/projects/p/xfce/language/ja/)\n
 MIME-Version: 1.0\n
@@ -2394,8 +2394,8 @@ msgid America/Argentina/Jujuy
 msgstr アメリカ/アルゼンチン/フフイ
 
 #: ../src/timezone_names.c:102
-msgid America/Argentina/La_Tioja
-msgstr 
+msgid America/Argentina/La_Rioja
+msgstr アメリカ/アルゼンチン/ラ・リオハ
 
 #: ../src/timezone_names.c:103
 msgid America/Argentina/Mendoza
@@ -2414,8 +2414,8 @@ msgid America/Argentina/San_Juan
 msgstr アメリカ/アルゼンチン/サン・フアン
 
 #: ../src/timezone_names.c:107
-msgid America/Argentina/San_Lois
-msgstr 
+msgid America/Argentina/San_Luis
+msgstr アメリカ/アルゼンチン/サン・ルイス
 
 #: ../src/timezone_names.c:108
 msgid America/Argentina/Tucuman
@@ -2939,7 +2939,7 @@ msgstr アメリカ/セント・バーセルミー
 
 #: ../src/timezone_names.c:238
 msgid America/St_Johns
-msgstr アメリカ/セント・ジョーンズ
+msgstr アメリカ/セント・ジョンズ
 
 #: ../src/timezone_names.c:239
 msgid America/St_Kitts
@@ -3439,7 +3439,7 @@ msgstr アジア/ヤクーツク
 
 #: ../src/timezone_names.c:363
 msgid Asia/Yekaterinburg
-msgstr アジア/エカテリンブルグ
+msgstr アジア/エカテリンブルク
 
 #: ../src/timezone_names.c:364
 msgid Asia/Yerevan
@@ -3455,11 +3455,11 @@ msgstr 大西洋/アゾレス諸島
 
 #: ../src/timezone_names.c:367
 msgid Atlantic/Bermuda
-msgstr 大西洋/バミューダ
+msgstr 大西洋/バミューダ諸島
 
 #: ../src/timezone_names.c:368
 msgid Atlantic/Canary
-msgstr 大西洋/カナリア
+msgstr 大西洋/カナリア諸島
 
 #: ../src/timezone_names.c:369
 msgid Atlantic/Cape_Verde
@@ -3483,7 +3483,7 @@ msgstr 大西洋/マディラ島
 
 #: ../src/timezone_names.c:374
 msgid Atlantic/Reykjavik
-msgstr 大西洋/レイキャビック
+msgstr 大西洋/レイキャビク
 
 #: ../src/timezone_names.c:375
 msgid Atlantic/South_Georgia
@@ -3495,7 +3495,7 @@ msgstr 大西洋/セント・ヘレナ島
 
 #: ../src/timezone_names.c:377
 msgid Atlantic/Stanley
-msgstr 大西洋/スタンレー
+msgstr 大西洋/スタンリー
 
 #: ../src/timezone_names.c:378
 msgid Australia
@@ -3518,850 +3518,858 @@ msgid Australia/Broken_Hill
 msgstr オーストラリア/ブロークン・ヒル
 
 #: ../src/timezone_names.c:383
+msgid Australia/Currie
+msgstr オーストラリア/カリー
+
+#: ../src/timezone_names.c:384
 msgid Australia/Darwin
 msgstr オーストラリア/ダーウィン
 
-#: ../src/timezone_names.c:384
+#: ../src/timezone_names.c:385
+msgid Australia/Eucla
+msgstr オーストラリア/ユークラ
+
+#: ../src/timezone_names.c:386
 msgid Australia/Hobart
 msgstr オーストラリア/ホバート
 
-#: ../src/timezone_names.c:385
+#: ../src/timezone_names.c:387
 msgid Australia/Lindeman
 msgstr オーストラリア/リンデマン島
 
-#: ../src/timezone_names.c:386
+#: ../src/timezone_names.c:388
 msgid Australia/Lord_Howe
 msgstr オーストラリア/ロード・ハウ島
 
-#: ../src/timezone_names.c:387
+#: ../src/timezone_names.c:389
 msgid Australia/Melbourne
 msgstr オーストラリア/メルボルン
 
-#: ../src/timezone_names.c:388
+#: ../src/timezone_names.c:390
 msgid Australia/Perth
 msgstr オーストラリア/パース
 
-#: ../src/timezone_names.c:389
+#: ../src/timezone_names.c:391
 msgid Australia/Sydney
 msgstr オーストラリア/シドニー
 
-#: ../src/timezone_names.c:390
+#: ../src/timezone_names.c:392
 msgid Brazil
 msgstr ブラジル
 
-#: ../src/timezone_names.c:391
+#: ../src/timezone_names.c:393
 msgid Brazil/Acre
 msgstr ブラジル/アクレ
 
-#: ../src/timezone_names.c:392
+#: ../src/timezone_names.c:394
 msgid Brazil/DeNoronha
 msgstr ブラジル/デ・ノローニャ
 
-#: ../src/timezone_names.c:393
+#: ../src/timezone_names.c:395
 msgid Brazil/East
 msgstr ブラジル/東部
 
-#: ../src/timezone_names.c:394
+#: ../src/timezone_names.c:396
 msgid Brazil/West
 msgstr ブラジル/西部
 
-#: ../src/timezone_names.c:395
+#: ../src/timezone_names.c:397
 msgid Canada
 msgstr カナダ
 
-#: ../src/timezone_names.c:396
+#: ../src/timezone_names.c:398
 msgid Canada/Atlantic
 msgstr カナダ/大西洋
 
-#: ../src/timezone_names.c:397
+#: ../src/timezone_names.c:399
 msgid Canada/Central
 msgstr カナダ/中部
 
-#: ../src/timezone_names.c:398
+#: ../src/timezone_names.c:400
 msgid Canada/East-Saskatchewan
 msgstr カナダ/東部サスカチュワン
 
-#: ../src/timezone_names.c:399
+#: ../src/timezone_names.c:401
 msgid Canada/Eastern
 msgstr カナダ/東部
 
-#: ../src/timezone_names.c:400
+#: ../src/timezone_names.c:402
 msgid Canada/Mountain
 msgstr カナダ/山岳部
 
-#: ../src/timezone_names.c:401
+#: ../src/timezone_names.c:403
 msgid Canada/Newfoundland
 msgstr カナダ/ニューファンドランド
 

[Xfce4-commits] xfce4-eyes-plugin:master I18n: Add new translation is (100%).

2013-12-03 Thread Transifex
Updating branch refs/heads/master
 to d51d1e0e4f235d38576cfa2b2d6d7326033c62a3 (commit)
   from f786372ce8fe1df7237bde1b2b69f8c0173b6b55 (commit)

commit d51d1e0e4f235d38576cfa2b2d6d7326033c62a3
Author: Sveinn í Felli svei...@nett.is
Date:   Tue Dec 3 12:31:25 2013 +0100

I18n: Add new translation is (100%).

4 translated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).

 po/{en_AU.po = is.po} |   18 +-
 1 file changed, 9 insertions(+), 9 deletions(-)

diff --git a/po/en_AU.po b/po/is.po
similarity index 66%
copy from po/en_AU.po
copy to po/is.po
index 111f175..87bc1d4 100644
--- a/po/en_AU.po
+++ b/po/is.po
@@ -3,33 +3,33 @@
 # This file is distributed under the same license as the PACKAGE package.
 # 
 # Translators:
-# k3lt01 keltoi...@gmail.com, 2013
+# Sveinn í Felli svei...@nett.is, 2013
 msgid 
 msgstr 
 Project-Id-Version: Xfce Panel Plugins\n
 Report-Msgid-Bugs-To: \n
 POT-Creation-Date: 2013-07-03 20:59+0200\n
-PO-Revision-Date: 2013-07-29 09:07+\n
-Last-Translator: k3lt01 keltoi...@gmail.com\n
-Language-Team: English (Australia) 
(http://www.transifex.com/projects/p/xfce/language/en_AU/)\n
+PO-Revision-Date: 2013-12-03 10:01+\n
+Last-Translator: Sveinn í Felli svei...@nett.is\n
+Language-Team: Icelandic 
(http://www.transifex.com/projects/p/xfce/language/is/)\n
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=UTF-8\n
 Content-Transfer-Encoding: 8bit\n
-Language: en_AU\n
+Language: is\n
 Plural-Forms: nplurals=2; plural=(n != 1);\n
 
 #: ../panel-plugin/eyes.c:332 ../panel-plugin/eyes.desktop.in.h:1
 msgid Eyes
-msgstr Eyes
+msgstr Augu
 
 #: ../panel-plugin/eyes.c:348
 msgid _Select a theme:
-msgstr _Select a theme:
+msgstr _Veldu þema:
 
 #: ../panel-plugin/eyes.c:385
 msgid Use single _row in multi-row panel
-msgstr Use single _row in multi-row panel
+msgstr Nota eina _röð í margraða stiku
 
 #: ../panel-plugin/eyes.desktop.in.h:2
 msgid Eyes that spy on you
-msgstr Eyes that spy on you
+msgstr Augu sem njósna um þig
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfce4-weather-plugin:master I18n: Update translation bg (96%).

2013-12-03 Thread Transifex
Updating branch refs/heads/master
 to 1ee78597599d3102ab1662e943c012055e9059f4 (commit)
   from ab426229cd2e95107efe50a9970280e099e0fe78 (commit)

commit 1ee78597599d3102ab1662e943c012055e9059f4
Author: Anonymous nore...@xfce.org
Date:   Tue Dec 3 12:31:53 2013 +0100

I18n: Update translation bg (96%).

308 translated messages, 11 untranslated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).

 po/bg.po |   77 +++---
 1 file changed, 39 insertions(+), 38 deletions(-)

diff --git a/po/bg.po b/po/bg.po
index 8d1a561..d75d81f 100644
--- a/po/bg.po
+++ b/po/bg.po
@@ -3,14 +3,15 @@
 # This file is distributed under the same license as the PACKAGE package.
 # 
 # Translators:
+# lyubomirv, 2013
 # gazarrr gaza...@gmail.com, 2013
 msgid 
 msgstr 
 Project-Id-Version: Xfce Panel Plugins\n
 Report-Msgid-Bugs-To: \n
 POT-Creation-Date: 2013-07-03 21:29+0200\n
-PO-Revision-Date: 2013-08-22 10:25+\n
-Last-Translator: gazarrr gaza...@gmail.com\n
+PO-Revision-Date: 2013-12-03 07:43+\n
+Last-Translator: lyubomirv\n
 Language-Team: Bulgarian 
(http://www.transifex.com/projects/p/xfce/language/bg/)\n
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=UTF-8\n
@@ -85,18 +86,18 @@ msgid 
  and the plugin needs to be adapted to use a newer version, or it will stop 
 working within a few month. Please file a bug on https://bugzilla.xfce.org 
 if no one else has done so yet.
-msgstr Липсата на данни за изгрева в API, може да означава, че тази версия на 
WebService е отхвърлена, и разширението трябва да бъде адаптирано за използване 
в по-нова версия, или ще спре да работи в рамките на няколко месеца. Моля, 
подайте сигнал за грешка на https://bugzilla.xfce.org ако никой друг вече не го 
е направил.
+msgstr Липсата на данни за sunrise API означава, че тази версия на webservice 
е отхвърлена и плъгина трябва да бъде адаптиран да използва по-нова версия, или 
ще спре да работи в рамките на няколко месеца. Моля, подайте сигнал за грешка 
на https://bugzilla.xfce.org ако никой друг не го е направил все още.
 
 #: ../panel-plugin/weather.c:483
 msgid Error parsing astronomical data!
-msgstr Грешка при анализа на астрономическите данни!
+msgstr Грешка при обработката на астрономическите данни!
 
 #: ../panel-plugin/weather.c:485
 #, c-format
 msgid 
 Download of astronomical data failed with HTTP Status Code %d, Reason 
 phrase: %s
-msgstr Неуспех при изтегляне на астрономичните данни с HTTP Състояние %d, 
Причина: %s
+msgstr Неуспех при изтегляне на астрономичните данни с HTTP Status Code %d, 
Причина: %s
 
 #: ../panel-plugin/weather.c:534
 msgid 
@@ -104,17 +105,17 @@ msgid 
  deprecated, and the plugin needs to be adapted to use a newer version, or 
 it will stop working within a few month. Please file a bug on 
 https://bugzilla.xfce.org if no one else has done so yet.
-msgstr Липсата на местоположение в API, може да означава, че тази версия на 
WebService е отхвърлена, и разширението трябва да бъде адаптирано за използване 
в по-нова версия, или ще спре да работи в рамките на няколко месеца. Моля, 
подайте сигнал за грешка на https://bugzilla.xfce.org ако никой друг вече не го 
е направил.
+msgstr Липсата на LocationforecastLTS API означава, че тази версия на 
webservice е отхвърлена и плъгина трябва да бъде адаптиран да използва по-нова 
версия, или ще спре да работи в рамките на няколко месеца. Моля, подайте сигнал 
за грешка на https://bugzilla.xfce.org ако никой друг вече не го е направил.
 
 #: ../panel-plugin/weather.c:552
 msgid Error parsing weather data!
-msgstr Грешка при получаване на данни за времето!
+msgstr Грешка при обаботката на данни за времето!
 
 #: ../panel-plugin/weather.c:555
 #, c-format
 msgid 
 Download of weather data failed with HTTP Status Code %d, Reason phrase: %s
-msgstr Неуспешно изтегляне на данни за времето с HTTP Състояние %d, Причина: 
%s
+msgstr Неуспешно изтегляне на данни за времето с HTTP Status Code %d, 
Причина: %s
 
 #. start receive thread
 #: ../panel-plugin/weather.c:609 ../panel-plugin/weather.c:627
@@ -131,11 +132,11 @@ msgstr Грешка при записване на кеширан файл %s!
 #: ../panel-plugin/weather.c:1520
 #, c-format
 msgid Unable to open the following url: %s
-msgstr Не може да бъде отворен следният url: %s
+msgstr Не може да бъде отворен следният адрес: %s
 
 #: ../panel-plugin/weather.c:1551 ../panel-plugin/weather.desktop.in.h:1
 msgid Weather Update
-msgstr Актуализиране на времето
+msgstr Актуализация на времето
 
 #: ../panel-plugin/weather.c:1588
 msgid Short-term forecast data unavailable.
@@ -143,11 +144,11 @@ msgstr Данните за краткосточните прогнози не 
 
 #: ../panel-plugin/weather.c:1600
 msgid The sun never rises today.
-msgstr Слънцето днес няма да изгрее.
+msgstr Слънцето днес не изгрява.
 
 #: ../panel-plugin/weather.c:1602
 msgid The sun never sets today.
-msgstr Слънцето днес няма да залезе.
+msgstr Слънцето днес не залязва.
 
 #: 

[Xfce4-commits] xfce4-fsguard-plugin:master I18n: Add new translation is (100%).

2013-12-03 Thread Transifex
Updating branch refs/heads/master
 to a4bc36876f8ee723daa0bb450dd16fb83ea7d845 (commit)
   from 174467eaf8bd52c5cf2598e79729712d64357e6c (commit)

commit a4bc36876f8ee723daa0bb450dd16fb83ea7d845
Author: Sveinn í Felli svei...@nett.is
Date:   Tue Dec 3 12:31:28 2013 +0100

I18n: Add new translation is (100%).

19 translated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).

 po/{en_AU.po = is.po} |   44 ++--
 1 file changed, 22 insertions(+), 22 deletions(-)

diff --git a/po/en_AU.po b/po/is.po
similarity index 69%
copy from po/en_AU.po
copy to po/is.po
index ce68836..f93a404 100644
--- a/po/en_AU.po
+++ b/po/is.po
@@ -3,24 +3,24 @@
 # This file is distributed under the same license as the PACKAGE package.
 # 
 # Translators:
-# k3lt01 keltoi...@gmail.com, 2013
+# Sveinn í Felli svei...@nett.is, 2013
 msgid 
 msgstr 
 Project-Id-Version: Xfce Panel Plugins\n
 Report-Msgid-Bugs-To: \n
 POT-Creation-Date: 2013-07-03 21:00+0200\n
-PO-Revision-Date: 2013-07-29 09:10+\n
-Last-Translator: k3lt01 keltoi...@gmail.com\n
-Language-Team: English (Australia) 
(http://www.transifex.com/projects/p/xfce/language/en_AU/)\n
+PO-Revision-Date: 2013-12-03 10:01+\n
+Last-Translator: Sveinn í Felli svei...@nett.is\n
+Language-Team: Icelandic 
(http://www.transifex.com/projects/p/xfce/language/is/)\n
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=UTF-8\n
 Content-Transfer-Encoding: 8bit\n
-Language: en_AU\n
+Language: is\n
 Plural-Forms: nplurals=2; plural=(n != 1);\n
 
 #: ../panel-plugin/fsguard.c:252
 msgid Unable to find an appropriate application to open the mount point
-msgstr Unable to find an appropriate application to open the mount point
+msgstr Tókst ekki að finna viðeigandi forrit til að opna tengipunktinn
 
 #: ../panel-plugin/fsguard.c:288 ../panel-plugin/fsguard.c:289
 #, c-format
@@ -30,12 +30,12 @@ msgstr %.2f GB
 #: ../panel-plugin/fsguard.c:292
 #, c-format
 msgid %s/%s space left on %s (%s)
-msgstr %s/%s space left on %s (%s)
+msgstr %s/%s pláss eftir á %s (%s)
 
 #: ../panel-plugin/fsguard.c:292
 #, c-format
 msgid %s/%s space left on %s
-msgstr %s/%s space left on %s
+msgstr %s/%s pláss eftir á %s
 
 #: ../panel-plugin/fsguard.c:295 ../panel-plugin/fsguard.c:296
 #, c-format
@@ -45,60 +45,60 @@ msgstr %.0f MB
 #: ../panel-plugin/fsguard.c:298
 #, c-format
 msgid could not check mountpoint %s, please check your config
-msgstr could not check mountpoint %s, please check your config
+msgstr gate kki skoðað tengipunkt %s, athugaðu stillingaskrárnar þínar
 
 #: ../panel-plugin/fsguard.c:318
 #, c-format
 msgid Only %s space left on %s (%s)!
-msgstr Only %s space left on %s (%s)!
+msgstr Aðeins %s pláss eftir á %s (%s)!
 
 #: ../panel-plugin/fsguard.c:321
 #, c-format
 msgid Only %s space left on %s!
-msgstr Only %s space left on %s!
+msgstr Aðeins %s pláss eftir á %s!
 
 #. }}}
 #. vim600: set foldmethod=marker: foldmarker={{{,}}}
 #: ../panel-plugin/fsguard.c:635 ../panel-plugin/fsguard.desktop.in.h:1
 msgid Free Space Checker
-msgstr Free Space Checker
+msgstr Athugun á lausu diskplássi
 
 #: ../panel-plugin/fsguard.c:646
 msgid Configuration
-msgstr Configuration
+msgstr Stillingar
 
 #: ../panel-plugin/fsguard.c:653
 msgid Mount point
-msgstr Mount point
+msgstr Tengipunktur
 
 #: ../panel-plugin/fsguard.c:659
 msgid Warning limit (%)
-msgstr Warning limit (%)
+msgstr Mörk viðvörunar (%)
 
 #: ../panel-plugin/fsguard.c:664
 msgid Urgent limit (%)
-msgstr Urgent limit (%)
+msgstr Hættumörk (%)
 
 #: ../panel-plugin/fsguard.c:684
 msgid User Interface
-msgstr User Interface
+msgstr Notandaviðmót
 
 #: ../panel-plugin/fsguard.c:691
 msgid Name
-msgstr Name
+msgstr Heiti
 
 #: ../panel-plugin/fsguard.c:699
 msgid Display size
-msgstr Display size
+msgstr Skjástærð
 
 #: ../panel-plugin/fsguard.c:703
 msgid Display meter
-msgstr Display metre
+msgstr Skjámælir
 
 #: ../panel-plugin/fsguard.c:707
 msgid Display button
-msgstr Display button
+msgstr Skjáhnappur
 
 #: ../panel-plugin/fsguard.desktop.in.h:2
 msgid Monitor free disk space
-msgstr Monitor free disk space
+msgstr Fylgjast með lausu diskplássi
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfce4-xfapplet-plugin:master I18n: Add new translation sl (100%).

2013-12-03 Thread Transifex
Updating branch refs/heads/master
 to 4cd5ed3b90add50ed4df2093217f403adf9b9c4f (commit)
   from c86b88ee5769053382dd4f6b201050cafdd5e521 (commit)

commit 4cd5ed3b90add50ed4df2093217f403adf9b9c4f
Author: anthonmanix anthon.ma...@gmail.com
Date:   Tue Dec 3 12:31:58 2013 +0100

I18n: Add new translation sl (100%).

14 translated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).

 po/{en_AU.po = sl.po} |   38 +++---
 1 file changed, 19 insertions(+), 19 deletions(-)

diff --git a/po/en_AU.po b/po/sl.po
similarity index 63%
copy from po/en_AU.po
copy to po/sl.po
index 738947b..5af5a73 100644
--- a/po/en_AU.po
+++ b/po/sl.po
@@ -3,20 +3,20 @@
 # This file is distributed under the same license as the PACKAGE package.
 # 
 # Translators:
-# k3lt01 keltoi...@gmail.com, 2013
+# anthonmanix anthon.ma...@gmail.com, 2013
 msgid 
 msgstr 
 Project-Id-Version: Xfce Panel Plugins\n
 Report-Msgid-Bugs-To: \n
 POT-Creation-Date: 2006-09-10 21:12+0200\n
-PO-Revision-Date: 2013-07-29 09:46+\n
-Last-Translator: k3lt01 keltoi...@gmail.com\n
-Language-Team: English (Australia) 
(http://www.transifex.com/projects/p/xfce/language/en_AU/)\n
+PO-Revision-Date: 2013-12-03 07:56+\n
+Last-Translator: anthonmanix anthon.ma...@gmail.com\n
+Language-Team: Slovenian 
(http://www.transifex.com/projects/p/xfce/language/sl/)\n
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=UTF-8\n
 Content-Transfer-Encoding: 8bit\n
-Language: en_AU\n
-Plural-Forms: nplurals=2; plural=(n != 1);\n
+Language: sl\n
+Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || 
n%100==4 ? 2 : 3);\n
 
 #. creation of the dialog
 #: ../panel-plugin/chooser.c:444 ../panel-plugin/xfapplet.desktop.in.in.h:2
@@ -25,59 +25,59 @@ msgstr XfApplet
 
 #: ../panel-plugin/chooser.c:465
 msgid Choose an applet
-msgstr Choose an applet
+msgstr Izberi aplet
 
 #: ../panel-plugin/chooser.c:474
 msgid 
 Choose an applet from the list. If you have already chosen an applet 
 previously, it will be substituted by the one you choose.
-msgstr Choose an applet from the list. If you have already chosen an applet 
previously, it will be substituted by the one you choose.
+msgstr Izberite aplet iz seznama. Če ste v preteklosti že izbrali aplet, bo 
tega zamenjal aplet, ki ga izberete.
 
 #: ../panel-plugin/chooser.c:486
 msgid Available applets
-msgstr Available applets
+msgstr Razpoložljivi apleti
 
 #: ../panel-plugin/xfapplet.c:148
 #, c-format
 msgid '%s' has quit unexpectedly.
-msgstr '%s' has quit unexpectedly.
+msgstr '%s' je nepričakovano končal.
 
 #: ../panel-plugin/xfapplet.c:151
 msgid 
 If you don't reload the applet, XfApplet plugin will go back to its initial 
 empty state.
-msgstr If you don't reload the applet, XfApplet plugin will go back to its 
initial empty state.
+msgstr Če apleta ne naložite znova, se bo XfApplet vrnil v prvotno prazno 
stanje.
 
 #: ../panel-plugin/xfapplet.c:153
 msgid Don't Reload
-msgstr Don't Reload
+msgstr Ne naloži znova
 
 #: ../panel-plugin/xfapplet.c:154
 msgid Reload
-msgstr Reload
+msgstr Znova naloži
 
 #: ../panel-plugin/xfapplet.c:477
 msgid Display Gnome applets on the Xfce4 Panel
-msgstr Display Gnome applets on the Xfce4 Panel
+msgstr Pokaži Gnome aplete na Xfce4 pladnju
 
 #: ../panel-plugin/xfapplet.c:480
 msgid Author/Maintainer
-msgstr Author/Maintainer
+msgstr Avtor/Vzdrževalec
 
 #: ../panel-plugin/xfapplet.c:484
 #, c-format
 msgid Translator (%s)
-msgstr Translator (%s)
+msgstr Prevajalci (%s)
 
 #: ../panel-plugin/xfapplet.c:574
 #, c-format
 msgid '%s' could not be loaded.
-msgstr '%s' could not be loaded.
+msgstr '%s' ni bilo mogoče naložiti.
 
 #: ../panel-plugin/xfapplet.c:577
 msgid An internal error occurred and the applet could not be loaded.
-msgstr An internal error occurred and the applet could not be loaded.
+msgstr Prišlo je do notranje napake, apleta ni bilo mogoče naložiti.
 
 #: ../panel-plugin/xfapplet.desktop.in.in.h:1
 msgid Display Gnome applets in the panel
-msgstr Display Gnome applets in the panel
+msgstr Pokaži Gnome aplete na tem pladnju
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfce4-stopwatch-plugin:master I18n: Add new translation sl (100%).

2013-12-03 Thread Transifex
Updating branch refs/heads/master
 to ef70515f914ae44f9e0f3d76a8feb692520eda41 (commit)
   from 6916798c4f56949843b85c36bdb2987389c9627f (commit)

commit ef70515f914ae44f9e0f3d76a8feb692520eda41
Author: anthonmanix anthon.ma...@gmail.com
Date:   Tue Dec 3 12:31:44 2013 +0100

I18n: Add new translation sl (100%).

2 translated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).

 po/{en_AU.po = sl.po} |   16 
 1 file changed, 8 insertions(+), 8 deletions(-)

diff --git a/po/en_AU.po b/po/sl.po
similarity index 59%
copy from po/en_AU.po
copy to po/sl.po
index 54fa89b..4468d26 100644
--- a/po/en_AU.po
+++ b/po/sl.po
@@ -3,25 +3,25 @@
 # This file is distributed under the same license as the PACKAGE package.
 # 
 # Translators:
-# k3lt01 keltoi...@gmail.com, 2013
+# anthonmanix anthon.ma...@gmail.com, 2013
 msgid 
 msgstr 
 Project-Id-Version: Xfce Panel Plugins\n
 Report-Msgid-Bugs-To: \n
 POT-Creation-Date: 2013-07-03 21:19+0200\n
-PO-Revision-Date: 2013-07-29 09:33+\n
-Last-Translator: k3lt01 keltoi...@gmail.com\n
-Language-Team: English (Australia) 
(http://www.transifex.com/projects/p/xfce/language/en_AU/)\n
+PO-Revision-Date: 2013-12-03 08:51+\n
+Last-Translator: anthonmanix anthon.ma...@gmail.com\n
+Language-Team: Slovenian 
(http://www.transifex.com/projects/p/xfce/language/sl/)\n
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=UTF-8\n
 Content-Transfer-Encoding: 8bit\n
-Language: en_AU\n
-Plural-Forms: nplurals=2; plural=(n != 1);\n
+Language: sl\n
+Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || 
n%100==4 ? 2 : 3);\n
 
 #: ../panel-plugin/xfce4-stopwatch-plugin.desktop.in.in.h:1
 msgid Stopwatch
-msgstr Stopwatch
+msgstr Štoparica
 
 #: ../panel-plugin/xfce4-stopwatch-plugin.desktop.in.in.h:2
 msgid Time yourself
-msgstr Time yourself
+msgstr Štopajte sebe
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] libxfce4ui:xfce-4.10 I18n: Add new translation oc (100%).

2013-12-03 Thread Transifex
Updating branch refs/heads/xfce-4.10
 to 6898eca0d4f2be53b69ba5da664409046cf40bec (commit)
   from 9dd33c0e64e8afda7e36cf79839c47b973c51f8d (commit)

commit 6898eca0d4f2be53b69ba5da664409046cf40bec
Author: Cedric31 cvalm...@yahoo.fr
Date:   Tue Dec 3 12:30:16 2013 +0100

I18n: Add new translation oc (100%).

90 translated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).

 po/{ca.po = oc.po} |  175 ++-
 1 file changed, 88 insertions(+), 87 deletions(-)

diff --git a/po/ca.po b/po/oc.po
similarity index 63%
copy from po/ca.po
copy to po/oc.po
index 00205dc..0f1071a 100644
--- a/po/ca.po
+++ b/po/oc.po
@@ -3,58 +3,59 @@
 # This file is distributed under the same license as the PACKAGE package.
 # 
 # Translators:
+# Cedric31 cvalm...@yahoo.fr, 2013
 msgid 
 msgstr 
 Project-Id-Version: Libxfce4ui\n
 Report-Msgid-Bugs-To: \n
 POT-Creation-Date: 2013-07-02 22:59+0200\n
-PO-Revision-Date: 2013-11-19 15:13+\n
-Last-Translator: Nick n...@xfce.org\n
-Language-Team: Catalan 
(http://www.transifex.com/projects/p/xfce/language/ca/)\n
+PO-Revision-Date: 2013-12-03 07:09+\n
+Last-Translator: Cedric31 cvalm...@yahoo.fr\n
+Language-Team: Occitan (post 1500) 
(http://www.transifex.com/projects/p/xfce/language/oc/)\n
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=UTF-8\n
 Content-Transfer-Encoding: 8bit\n
-Language: ca\n
-Plural-Forms: nplurals=2; plural=(n != 1);\n
+Language: oc\n
+Plural-Forms: nplurals=2; plural=(n  1);\n
 
 #: ../libxfce4ui/xfce-dialogs.c:98
 msgid Failed to open web browser for online documentation
-msgstr No s'ha pogut obrir el navegador web per veure la documentació en 
línia
+msgstr Impossible de dobrir lo navigador web per la documentacion en linha
 
 #: ../libxfce4ui/xfce-dialogs.c:213
 #, c-format
 msgid Do you want to read the %s manual online?
-msgstr Voleu llegir el manual %s en línia?
+msgstr Volètz consultar lo manual %s en linha ?
 
 #: ../libxfce4ui/xfce-dialogs.c:215
 msgid Do you want to read the manual online?
-msgstr Voleu llegir el manual en línia?
+msgstr Volètz consultar lo manual en linha ?
 
 #: ../libxfce4ui/xfce-dialogs.c:218
 msgid Online Documentation
-msgstr Documentació en línia
+msgstr Documentacion en linha
 
 #: ../libxfce4ui/xfce-dialogs.c:221
 msgid 
 You will be redirected to the documentation website where the help pages are
  maintained and translated.
-msgstr Sereu redirigit a la lloc web de documentació on es mantenen i 
tradueixen les pàgines d'ajuda.
+msgstr Seretz redirigit cap al site de documentacion en linha ont las paginas 
d'ajuda son mantengudas e traduchas.
 
 #: ../libxfce4ui/xfce-dialogs.c:225
 msgid _Read Online
-msgstr _Llegir en línia
+msgstr _Legir en linha
 
 #: ../libxfce4ui/xfce-dialogs.c:237
 msgid _Always go directly to the online documentation
-msgstr _Anar sempre a la documentació en línia directament
+msgstr Anar _totjorn dirèctament sus la documentacion en linha
 
 #: ../libxfce4ui/xfce-dialogs.c:281
 msgid Information
-msgstr Informació
+msgstr Informacion
 
 #: ../libxfce4ui/xfce-dialogs.c:314
 msgid Warning
-msgstr Advertència
+msgstr Avertiment
 
 #: ../libxfce4ui/xfce-dialogs.c:348
 msgid Error
@@ -62,11 +63,11 @@ msgstr Error
 
 #: ../libxfce4ui/xfce-dialogs.c:399
 msgid Question
-msgstr Pregunta
+msgstr Question
 
 #: ../libxfce4ui/xfce-sm-client.c:1402
 msgid Session management client ID
-msgstr ID del client de gestió de sessions
+msgstr ID client del gestionari de sesilha
 
 #: ../libxfce4ui/xfce-sm-client.c:1402
 msgid ID
@@ -74,25 +75,25 @@ msgstr ID
 
 #: ../libxfce4ui/xfce-sm-client.c:1403
 msgid Disable session management
-msgstr Deshabilita la gestió de sessions
+msgstr Desactivar lo gestionari de sesilha
 
 #: ../libxfce4ui/xfce-sm-client.c:1413
 msgid Session management options
-msgstr Opcions de gestió de sessions
+msgstr Opcions del gestionari de sesilha
 
 #: ../libxfce4ui/xfce-sm-client.c:1414
 msgid Show session management options
-msgstr Mostra les opcions de gestió de sessions
+msgstr Afichar las opcions del gestionari de sesilha
 
 #: ../libxfce4ui/xfce-sm-client.c:1590
 #, c-format
 msgid Failed to connect to the session manager: %s
-msgstr No es pot connectar al gestor de sessions: %s
+msgstr Impossible de se connectar al gestionari de sesilha : %s
 
 #: ../libxfce4ui/xfce-sm-client.c:1597
 #, c-format
 msgid Session manager did not return a valid client id
-msgstr El gestor de sessions no ha tornat una ID vàlida de client
+msgstr Lo gestionari de sesilha a pas tornar un id client valable
 
 #. print warning for user
 #: ../libxfce4ui/xfce-spawn.c:406
@@ -100,13 +101,13 @@ msgstr El gestor de sessions no ha tornat una ID vàlida 
de client
 msgid 
 Working directory \%s\ does not exist. It won't be used when spawning 
 \%s\.
-msgstr El directori de treball «%s» no existeix. No s'utilitzarà al generar 
«%s».
+msgstr Lo dorsièr de trabalh « %s » existís pas. Serà pas utilizat a la 
redobertura de \%s\.

[Xfce4-commits] transd:master I18n: Add new translation is (100%).

2013-12-03 Thread Transifex
Updating branch refs/heads/master
 to 1c64ff48a0a2f7915156fb02da4b42274fc34df1 (commit)
   from 49ed6644c1f62f97324d7b9f048ddefdaa25e47a (commit)

commit 1c64ff48a0a2f7915156fb02da4b42274fc34df1
Author: Sveinn í Felli svei...@nett.is
Date:   Tue Dec 3 12:31:00 2013 +0100

I18n: Add new translation is (100%).

3 translated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).

 po/{nl.po = is.po} |   15 ---
 1 file changed, 8 insertions(+), 7 deletions(-)

diff --git a/po/nl.po b/po/is.po
similarity index 59%
copy from po/nl.po
copy to po/is.po
index be4b8db..e7959d7 100644
--- a/po/nl.po
+++ b/po/is.po
@@ -3,30 +3,31 @@
 # This file is distributed under the same license as the PACKAGE package.
 # 
 # Translators:
+# Sveinn í Felli svei...@nett.is, 2013
 msgid 
 msgstr 
 Project-Id-Version: Xfce Apps\n
 Report-Msgid-Bugs-To: \n
 POT-Creation-Date: 2013-07-03 20:33+0200\n
-PO-Revision-Date: 2013-09-19 14:27+\n
-Last-Translator: Pjotr123 pjotrverta...@gmail.com\n
-Language-Team: Dutch 
(http://www.transifex.com/projects/p/xfce/language/nl/)\n
+PO-Revision-Date: 2013-12-03 09:23+\n
+Last-Translator: Sveinn í Felli svei...@nett.is\n
+Language-Team: Icelandic 
(http://www.transifex.com/projects/p/xfce/language/is/)\n
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=UTF-8\n
 Content-Transfer-Encoding: 8bit\n
-Language: nl\n
+Language: is\n
 Plural-Forms: nplurals=2; plural=(n != 1);\n
 
 #: ../src/transd.c:192
 msgid 
 Transd now uses a new configuration file format.  Please see the README for 
 details.  Transd will now exit.
-msgstr Transd gebruikt nu een nieuwe opmaak voor configuratiebestanden. 
Gelieve het LEESMIJ-bestand (README) te raadplegen voor details. Transd zal nu 
afsluiten.
+msgstr Transd notar núna nýtt skrásnið fyrir stillingaskrár.  Skoðaðu README 
skrána til að sjá nánar um þetta.  Transd hættir núna.
 
 #: ../transd.desktop.in.h:1
 msgid Transparency Daemon
-msgstr Achtergronddienst voor transparantie
+msgstr Gegnsæispúki
 
 #: ../transd.desktop.in.h:2
 msgid Daemon which monitors windows and sets transparency based on rulesets
-msgstr Achtergronddienst die vensters bewaakt en transparantie instelt op 
basis van regels.
+msgstr Vöktunarpúki sem fylgist með gluggum og stillir gegnsæi eftir settum 
reglum
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfswitch-plugin:master I18n: Add new translation sl (100%).

2013-12-03 Thread Transifex
Updating branch refs/heads/master
 to 718647bf18e5b92bc28f1990f2fe8fea9fe605bf (commit)
   from 7e2344aeec42aca5d40312ea2f76021a52668538 (commit)

commit 718647bf18e5b92bc28f1990f2fe8fea9fe605bf
Author: anthonmanix anthon.ma...@gmail.com
Date:   Tue Dec 3 12:32:03 2013 +0100

I18n: Add new translation sl (100%).

3 translated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).

 po/{en_AU.po = sl.po} |   18 +-
 1 file changed, 9 insertions(+), 9 deletions(-)

diff --git a/po/en_AU.po b/po/sl.po
similarity index 58%
copy from po/en_AU.po
copy to po/sl.po
index 627ae97..971aa23 100644
--- a/po/en_AU.po
+++ b/po/sl.po
@@ -3,30 +3,30 @@
 # This file is distributed under the same license as the PACKAGE package.
 # 
 # Translators:
-# k3lt01 keltoi...@gmail.com, 2013
+# anthonmanix anthon.ma...@gmail.com, 2013
 msgid 
 msgstr 
 Project-Id-Version: Xfce Panel Plugins\n
 Report-Msgid-Bugs-To: \n
 POT-Creation-Date: 2009-02-08 10:26+0100\n
-PO-Revision-Date: 2013-07-29 09:51+\n
-Last-Translator: k3lt01 keltoi...@gmail.com\n
-Language-Team: English (Australia) 
(http://www.transifex.com/projects/p/xfce/language/en_AU/)\n
+PO-Revision-Date: 2013-12-03 07:37+\n
+Last-Translator: anthonmanix anthon.ma...@gmail.com\n
+Language-Team: Slovenian 
(http://www.transifex.com/projects/p/xfce/language/sl/)\n
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=UTF-8\n
 Content-Transfer-Encoding: 8bit\n
-Language: en_AU\n
-Plural-Forms: nplurals=2; plural=(n != 1);\n
+Language: sl\n
+Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || 
n%100==4 ? 2 : 3);\n
 
 #: ../panel-plugin/main.c:141
 msgid Do you really want to switch to another user?
-msgstr Do you really want to switch to another user?
+msgstr Resnično želiš preklopiti na drugega uporabnika?
 
 #: ../panel-plugin/main.c:187
 #: ../panel-plugin/xfswitch-plugin.desktop.in.in.h:1
 msgid Switch to another user without closing the current session
-msgstr Switch to another user without closing the current session
+msgstr Preklopi na drugega uporabnika brez zapiranja trenutne seje
 
 #: ../panel-plugin/xfswitch-plugin.desktop.in.in.h:2
 msgid User switching
-msgstr User switching
+msgstr Preklapljanje uporabnikov
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfce4-power-manager:xfce-4.10 I18n: Add new translation oc (99%).

2013-12-03 Thread Transifex
Updating branch refs/heads/xfce-4.10
 to 7ee7efa81276816a983562d801c1fc69f8d898cf (commit)
   from 94e5b4b437a8a3258096cf8bcfbeb036e2ead1fd (commit)

commit 7ee7efa81276816a983562d801c1fc69f8d898cf
Author: Cedric31 cvalm...@yahoo.fr
Date:   Tue Dec 3 18:30:39 2013 +0100

I18n: Add new translation oc (99%).

212 translated messages, 1 untranslated message.

Transifex (https://www.transifex.com/projects/p/xfce/).

 po/{ca.po = oc.po} |  413 ++-
 1 file changed, 207 insertions(+), 206 deletions(-)

diff --git a/po/ca.po b/po/oc.po
similarity index 70%
copy from po/ca.po
copy to po/oc.po
index f6a6fe5..9ca1c68 100644
--- a/po/ca.po
+++ b/po/oc.po
@@ -3,75 +3,76 @@
 # This file is distributed under the same license as the PACKAGE package.
 # 
 # Translators:
+# Cedric31 cvalm...@yahoo.fr, 2013
 msgid 
 msgstr 
 Project-Id-Version: Xfce4-power-manager\n
 Report-Msgid-Bugs-To: \n
 POT-Creation-Date: 2013-07-02 23:12+0200\n
-PO-Revision-Date: 2013-11-19 14:35+\n
-Last-Translator: Nick n...@xfce.org\n
-Language-Team: Catalan 
(http://www.transifex.com/projects/p/xfce/language/ca/)\n
+PO-Revision-Date: 2013-12-03 16:59+\n
+Last-Translator: Cedric31 cvalm...@yahoo.fr\n
+Language-Team: Occitan (post 1500) 
(http://www.transifex.com/projects/p/xfce/language/oc/)\n
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=UTF-8\n
 Content-Transfer-Encoding: 8bit\n
-Language: ca\n
-Plural-Forms: nplurals=2; plural=(n != 1);\n
+Language: oc\n
+Plural-Forms: nplurals=2; plural=(n  1);\n
 
 #: ../data/interfaces/xfpm-settings.ui.h:1 ../settings/xfpm-settings.c:809
 #: ../settings/xfpm-settings.c:877 ../settings/xfpm-settings.c:1026
 #: ../settings/xfpm-settings.c:1203 ../settings/xfpm-settings.c:1260
 #: ../settings/xfpm-settings.c:1312
 msgid Nothing
-msgstr Res
+msgstr Pas res
 
 #: ../data/interfaces/xfpm-settings.ui.h:2
 #: ../settings/xfpm-settings-main.c:121 ../src/xfpm-main.c:413
 msgid Xfce Power Manager
-msgstr Gestor d'energia de Xfce
+msgstr Gestionari d'alimentacion Xfce
 
 #: ../data/interfaces/xfpm-settings.ui.h:3
 msgid Power manager settings
-msgstr Ajustament del gestor d'energia
+msgstr Configuracion del gestionari d'alimentacion
 
 #: ../data/interfaces/xfpm-settings.ui.h:4
 msgid When sleep button is pressed:
-msgstr Quan es pitja el botó d'adormiment:
+msgstr Quand lo boton de la mesa en velha es quichat :
 
 #: ../data/interfaces/xfpm-settings.ui.h:5
 msgid When hibernate button is pressed:
-msgstr Quan es pitja el botó d'hivernar:
+msgstr Quand lo boton ivernacion es quichat :
 
 #: ../data/interfaces/xfpm-settings.ui.h:6
 msgid When power button is pressed:
-msgstr Quan es pitja el botó d'encesa:
+msgstr Quand lo boton alimentacion es quichat :
 
 #: ../data/interfaces/xfpm-settings.ui.h:7
 msgid System tray icon: 
-msgstr Icona d'estat:
+msgstr Icòna de la zòna de notificacion :
 
 #: ../data/interfaces/xfpm-settings.ui.h:8
 msgid Monitor power management control
-msgstr Controlador de gestió d'energia de la pantalla
+msgstr Contraròtla la gestion de l'alimentacion de l'ecran
 
 #: ../data/interfaces/xfpm-settings.ui.h:9
 msgid Show notifications to notify about the battery state
-msgstr Mostra notificacions per informar-vos de l'estat de la bateria
+msgstr Afichar de notificacions per vos informar de l'estat de la batariá
 
 #: ../data/interfaces/xfpm-settings.ui.h:10
 msgid bGeneral Options/b
-msgstr bOpcions generals/b
+msgstr bOpcions generalas/b
 
 #: ../data/interfaces/xfpm-settings.ui.h:11
 msgid When laptop lid is closed:
-msgstr Quan es tanca la tapa del portàtil:
+msgstr Tampadura del cobertor del portable :
 
 #: ../data/interfaces/xfpm-settings.ui.h:12
 msgid Put the computer to sleep when inactive for:
-msgstr Deixa l'ordinador adormit quan l'ordinador està inactiu durant:
+msgstr Metre la maquina en velha se inactiva dempuèi :
 
 #: ../data/interfaces/xfpm-settings.ui.h:13
 msgid Spin down hard disks
-msgstr Baixa les revolucions dels discs
+msgstr Arrestar los disques durs
 
 #: ../data/interfaces/xfpm-settings.ui.h:14
 msgid bActions/b
@@ -83,39 +84,39 @@ msgstr Accions
 
 #: ../data/interfaces/xfpm-settings.ui.h:16
 msgid Put display to sleep when computer is inactive for:
-msgstr Deixa la pantalla adormida quan l'ordinador està inactiu durant:
+msgstr Metre l'ecran en velha se la maquina es inactiva dempuèi :
 
 #: ../data/interfaces/xfpm-settings.ui.h:17
 msgid Switch off display when computer is inactive for:
-msgstr Apaga la pantalla quan l'ordinador estigui inactiu durant:
+msgstr Atudar l'ecran se la maquina es inactiva dempuèi :
 
 #: ../data/interfaces/xfpm-settings.ui.h:18
 msgid bMonitor/b
-msgstr bPantalla/b
+msgstr bMonitor/b
 
 #: ../data/interfaces/xfpm-settings.ui.h:19
 msgid Reduce screen brightness when computer is inactive for:
-msgstr Disminueix la brillantor de la pantalla quan estigui inactiva durant:
+msgstr Redusir la luminositat de l'ecran se la maquina es inactiva dempuèi 

[Xfce4-commits] orage:master I18n: Update translation fr (100%).

2013-12-03 Thread Transifex
Updating branch refs/heads/master
 to bd6dd6b61424fbb7d535e67c25c9921693b1bac4 (commit)
   from a514b32c42cfeace378e72cf1c20b0156d14ba9e (commit)

commit bd6dd6b61424fbb7d535e67c25c9921693b1bac4
Author: Pingax pin...@frugalware.org
Date:   Tue Dec 3 18:30:52 2013 +0100

I18n: Update translation fr (100%).

1021 translated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).

 po/fr.po |  445 --
 1 file changed, 227 insertions(+), 218 deletions(-)

diff --git a/po/fr.po b/po/fr.po
index 7c7e0d1..debe515 100644
--- a/po/fr.po
+++ b/po/fr.po
@@ -3,6 +3,7 @@
 # This file is distributed under the same license as the PACKAGE package.
 # 
 # Translators:
+# Pingax pin...@frugalware.org, 2013
 # Gérald Barré g.ba...@free.fr, 2006
 # jc1 jc1.quebe...@gmail.com, 2013
 # jc1 jc1.quebe...@gmail.com, 2013
@@ -13,9 +14,9 @@ msgid 
 msgstr 
 Project-Id-Version: Xfce Apps\n
 Report-Msgid-Bugs-To: \n
-POT-Creation-Date: 2013-11-29 12:30+0100\n
-PO-Revision-Date: 2013-11-30 17:27+\n
-Last-Translator: jc1 jc1.quebe...@gmail.com\n
+POT-Creation-Date: 2013-12-02 18:30+0100\n
+PO-Revision-Date: 2013-12-03 15:27+\n
+Last-Translator: Pingax pin...@frugalware.org\n
 Language-Team: French 
(http://www.transifex.com/projects/p/xfce/language/fr/)\n
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=UTF-8\n
@@ -2399,8 +2400,8 @@ msgid America/Argentina/Jujuy
 msgstr Amérique/Argentine/Jujuy
 
 #: ../src/timezone_names.c:102
-msgid America/Argentina/La_Tioja
-msgstr Amérique/Argentine/La_Tioja
+msgid America/Argentina/La_Rioja
+msgstr Amérique/Argentine/La_Rioja
 
 #: ../src/timezone_names.c:103
 msgid America/Argentina/Mendoza
@@ -2419,8 +2420,8 @@ msgid America/Argentina/San_Juan
 msgstr Amérique/Argentine/San_Juan
 
 #: ../src/timezone_names.c:107
-msgid America/Argentina/San_Lois
-msgstr Amérique/Argentine/San_Lois
+msgid America/Argentina/San_Luis
+msgstr Amérique/Argentine/San_Luis
 
 #: ../src/timezone_names.c:108
 msgid America/Argentina/Tucuman
@@ -3523,850 +3524,858 @@ msgid Australia/Broken_Hill
 msgstr Australie/Broken_Hill
 
 #: ../src/timezone_names.c:383
+msgid Australia/Currie
+msgstr Australie/Currie
+
+#: ../src/timezone_names.c:384
 msgid Australia/Darwin
 msgstr Australie/Darwin
 
-#: ../src/timezone_names.c:384
+#: ../src/timezone_names.c:385
+msgid Australia/Eucla
+msgstr Australie/Eucla
+
+#: ../src/timezone_names.c:386
 msgid Australia/Hobart
 msgstr Australie/Hobart
 
-#: ../src/timezone_names.c:385
+#: ../src/timezone_names.c:387
 msgid Australia/Lindeman
 msgstr Australie/Lindeman
 
-#: ../src/timezone_names.c:386
+#: ../src/timezone_names.c:388
 msgid Australia/Lord_Howe
 msgstr Australie/Lord_Howe
 
-#: ../src/timezone_names.c:387
+#: ../src/timezone_names.c:389
 msgid Australia/Melbourne
 msgstr Australie/Melbourne
 
-#: ../src/timezone_names.c:388
+#: ../src/timezone_names.c:390
 msgid Australia/Perth
 msgstr Australie/Perth
 
-#: ../src/timezone_names.c:389
+#: ../src/timezone_names.c:391
 msgid Australia/Sydney
 msgstr Australie/Sydney
 
-#: ../src/timezone_names.c:390
+#: ../src/timezone_names.c:392
 msgid Brazil
 msgstr Brésil
 
-#: ../src/timezone_names.c:391
+#: ../src/timezone_names.c:393
 msgid Brazil/Acre
 msgstr Brésil/Acre
 
-#: ../src/timezone_names.c:392
+#: ../src/timezone_names.c:394
 msgid Brazil/DeNoronha
 msgstr Brésil/DeNoronha
 
-#: ../src/timezone_names.c:393
+#: ../src/timezone_names.c:395
 msgid Brazil/East
 msgstr Brésil/Est
 
-#: ../src/timezone_names.c:394
+#: ../src/timezone_names.c:396
 msgid Brazil/West
 msgstr Brésil/Ouest
 
-#: ../src/timezone_names.c:395
+#: ../src/timezone_names.c:397
 msgid Canada
 msgstr Canada
 
-#: ../src/timezone_names.c:396
+#: ../src/timezone_names.c:398
 msgid Canada/Atlantic
 msgstr Canada/Atlantique
 
-#: ../src/timezone_names.c:397
+#: ../src/timezone_names.c:399
 msgid Canada/Central
 msgstr Canada/Central
 
-#: ../src/timezone_names.c:398
+#: ../src/timezone_names.c:400
 msgid Canada/East-Saskatchewan
 msgstr Canada/Est-Saskatchewan
 
-#: ../src/timezone_names.c:399
+#: ../src/timezone_names.c:401
 msgid Canada/Eastern
 msgstr Canada/Est
 
-#: ../src/timezone_names.c:400
+#: ../src/timezone_names.c:402
 msgid Canada/Mountain
 msgstr Canada/Montagne
 
-#: ../src/timezone_names.c:401
+#: ../src/timezone_names.c:403
 msgid Canada/Newfoundland
 msgstr Canada/Terre-Neuve
 
-#: ../src/timezone_names.c:402
+#: ../src/timezone_names.c:404
 msgid Canada/Pacific
 msgstr Canada/Pacifique
 
-#: ../src/timezone_names.c:403
+#: ../src/timezone_names.c:405
 msgid Canada/Saskatchewan
 msgstr Canada/Saskatchewan
 
-#: ../src/timezone_names.c:404
+#: ../src/timezone_names.c:406
 msgid Canada/Yukon
 msgstr Canada/Yukon
 
-#: ../src/timezone_names.c:405
+#: ../src/timezone_names.c:407
 msgid Chile
 msgstr Chili
 
-#: ../src/timezone_names.c:406
+#: ../src/timezone_names.c:408
 msgid Chile/Continental
 msgstr Chili/Continent
 
-#: 

[Xfce4-commits] orage:master I18n: Update translation nl (100%).

2013-12-03 Thread Transifex
Updating branch refs/heads/master
 to 425b55774b27673825a95cf5696e15e24745dcde (commit)
   from bd6dd6b61424fbb7d535e67c25c9921693b1bac4 (commit)

commit 425b55774b27673825a95cf5696e15e24745dcde
Author: Pjotr123 pjotrverta...@gmail.com
Date:   Tue Dec 3 18:30:52 2013 +0100

I18n: Update translation nl (100%).

1021 translated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).

 po/nl.po |  442 --
 1 file changed, 225 insertions(+), 217 deletions(-)

diff --git a/po/nl.po b/po/nl.po
index 57e4055..695b2db 100644
--- a/po/nl.po
+++ b/po/nl.po
@@ -11,8 +11,8 @@ msgid 
 msgstr 
 Project-Id-Version: Xfce Apps\n
 Report-Msgid-Bugs-To: \n
-POT-Creation-Date: 2013-11-29 12:30+0100\n
-PO-Revision-Date: 2013-11-30 11:25+\n
+POT-Creation-Date: 2013-12-02 18:30+0100\n
+PO-Revision-Date: 2013-12-03 12:06+\n
 Last-Translator: Pjotr123 pjotrverta...@gmail.com\n
 Language-Team: Dutch 
(http://www.transifex.com/projects/p/xfce/language/nl/)\n
 MIME-Version: 1.0\n
@@ -2397,8 +2397,8 @@ msgid America/Argentina/Jujuy
 msgstr Amerika/Argentinië/Jujuy
 
 #: ../src/timezone_names.c:102
-msgid America/Argentina/La_Tioja
-msgstr Amerika/Argentinië/La_Tioja
+msgid America/Argentina/La_Rioja
+msgstr Amerika/Argentinië/La_Rioja
 
 #: ../src/timezone_names.c:103
 msgid America/Argentina/Mendoza
@@ -2417,8 +2417,8 @@ msgid America/Argentina/San_Juan
 msgstr Amerika/Argentinië/San_Juan
 
 #: ../src/timezone_names.c:107
-msgid America/Argentina/San_Lois
-msgstr Amerika/Argentinië/San_Lois 
+msgid America/Argentina/San_Luis
+msgstr /San_Luis
 
 #: ../src/timezone_names.c:108
 msgid America/Argentina/Tucuman
@@ -3521,850 +3521,858 @@ msgid Australia/Broken_Hill
 msgstr Australië/Broken Hill
 
 #: ../src/timezone_names.c:383
+msgid Australia/Currie
+msgstr Australië/Currie
+
+#: ../src/timezone_names.c:384
 msgid Australia/Darwin
 msgstr Australië/Darwin
 
-#: ../src/timezone_names.c:384
+#: ../src/timezone_names.c:385
+msgid Australia/Eucla
+msgstr Australië/Eucla
+
+#: ../src/timezone_names.c:386
 msgid Australia/Hobart
 msgstr Australië/Hobart
 
-#: ../src/timezone_names.c:385
+#: ../src/timezone_names.c:387
 msgid Australia/Lindeman
 msgstr Australië/Lindeman
 
-#: ../src/timezone_names.c:386
+#: ../src/timezone_names.c:388
 msgid Australia/Lord_Howe
 msgstr Australië/Lord Howe
 
-#: ../src/timezone_names.c:387
+#: ../src/timezone_names.c:389
 msgid Australia/Melbourne
 msgstr Australië/Melbourne
 
-#: ../src/timezone_names.c:388
+#: ../src/timezone_names.c:390
 msgid Australia/Perth
 msgstr Australië/Perth
 
-#: ../src/timezone_names.c:389
+#: ../src/timezone_names.c:391
 msgid Australia/Sydney
 msgstr Australië/Sydney
 
-#: ../src/timezone_names.c:390
+#: ../src/timezone_names.c:392
 msgid Brazil
 msgstr Brazilië
 
-#: ../src/timezone_names.c:391
+#: ../src/timezone_names.c:393
 msgid Brazil/Acre
 msgstr Brazilië/Acre
 
-#: ../src/timezone_names.c:392
+#: ../src/timezone_names.c:394
 msgid Brazil/DeNoronha
 msgstr Brazilië/DeNoronha
 
-#: ../src/timezone_names.c:393
+#: ../src/timezone_names.c:395
 msgid Brazil/East
 msgstr Brazilië/Oost
 
-#: ../src/timezone_names.c:394
+#: ../src/timezone_names.c:396
 msgid Brazil/West
 msgstr Brazilië/West
 
-#: ../src/timezone_names.c:395
+#: ../src/timezone_names.c:397
 msgid Canada
 msgstr Canada
 
-#: ../src/timezone_names.c:396
+#: ../src/timezone_names.c:398
 msgid Canada/Atlantic
 msgstr Canada/Atlantische_kust
 
-#: ../src/timezone_names.c:397
+#: ../src/timezone_names.c:399
 msgid Canada/Central
 msgstr Canada/Midden
 
-#: ../src/timezone_names.c:398
+#: ../src/timezone_names.c:400
 msgid Canada/East-Saskatchewan
 msgstr Canada/East-Saskatchewan
 
-#: ../src/timezone_names.c:399
+#: ../src/timezone_names.c:401
 msgid Canada/Eastern
 msgstr Canada/Oosten
 
-#: ../src/timezone_names.c:400
+#: ../src/timezone_names.c:402
 msgid Canada/Mountain
 msgstr Canada/Bergen
 
-#: ../src/timezone_names.c:401
+#: ../src/timezone_names.c:403
 msgid Canada/Newfoundland
 msgstr Canada/Newfoundland
 
-#: ../src/timezone_names.c:402
+#: ../src/timezone_names.c:404
 msgid Canada/Pacific
 msgstr Canada/Stille_oceaankust
 
-#: ../src/timezone_names.c:403
+#: ../src/timezone_names.c:405
 msgid Canada/Saskatchewan
 msgstr Canada/Saskatchewan
 
-#: ../src/timezone_names.c:404
+#: ../src/timezone_names.c:406
 msgid Canada/Yukon
 msgstr Canada/Yukon
 
-#: ../src/timezone_names.c:405
+#: ../src/timezone_names.c:407
 msgid Chile
 msgstr Chili
 
-#: ../src/timezone_names.c:406
+#: ../src/timezone_names.c:408
 msgid Chile/Continental
 msgstr Chili/Continentaal
 
-#: ../src/timezone_names.c:407
+#: ../src/timezone_names.c:409
 msgid Chile/EasterIsland
 msgstr Chili/Paaseiland
 
-#: ../src/timezone_names.c:408
+#: ../src/timezone_names.c:410
 msgid Etc
 msgstr Etc
 
-#: ../src/timezone_names.c:409
+#: ../src/timezone_names.c:411
 msgid Etc/GMT
 msgstr Etc/GMT
 
-#: ../src/timezone_names.c:410
+#: 

[Xfce4-commits] xfce4-xfapplet-plugin:master I18n: Add new translation ms (100%).

2013-12-03 Thread Transifex
Updating branch refs/heads/master
 to 4db3b69f5ce341b0a656d5eb0cb62630eaa8ec73 (commit)
   from 4cd5ed3b90add50ed4df2093217f403adf9b9c4f (commit)

commit 4db3b69f5ce341b0a656d5eb0cb62630eaa8ec73
Author: abuyop abu...@gmail.com
Date:   Tue Dec 3 18:31:49 2013 +0100

I18n: Add new translation ms (100%).

14 translated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).

 po/{en_AU.po = ms.po} |   38 +++---
 1 file changed, 19 insertions(+), 19 deletions(-)

diff --git a/po/en_AU.po b/po/ms.po
similarity index 64%
copy from po/en_AU.po
copy to po/ms.po
index 738947b..17ad753 100644
--- a/po/en_AU.po
+++ b/po/ms.po
@@ -3,20 +3,20 @@
 # This file is distributed under the same license as the PACKAGE package.
 # 
 # Translators:
-# k3lt01 keltoi...@gmail.com, 2013
+# abuyop abu...@gmail.com, 2013
 msgid 
 msgstr 
 Project-Id-Version: Xfce Panel Plugins\n
 Report-Msgid-Bugs-To: \n
 POT-Creation-Date: 2006-09-10 21:12+0200\n
-PO-Revision-Date: 2013-07-29 09:46+\n
-Last-Translator: k3lt01 keltoi...@gmail.com\n
-Language-Team: English (Australia) 
(http://www.transifex.com/projects/p/xfce/language/en_AU/)\n
+PO-Revision-Date: 2013-12-03 12:52+\n
+Last-Translator: abuyop abu...@gmail.com\n
+Language-Team: Malay 
(http://www.transifex.com/projects/p/xfce/language/ms/)\n
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=UTF-8\n
 Content-Transfer-Encoding: 8bit\n
-Language: en_AU\n
-Plural-Forms: nplurals=2; plural=(n != 1);\n
+Language: ms\n
+Plural-Forms: nplurals=1; plural=0;\n
 
 #. creation of the dialog
 #: ../panel-plugin/chooser.c:444 ../panel-plugin/xfapplet.desktop.in.in.h:2
@@ -25,59 +25,59 @@ msgstr XfApplet
 
 #: ../panel-plugin/chooser.c:465
 msgid Choose an applet
-msgstr Choose an applet
+msgstr Pilih satu aplet
 
 #: ../panel-plugin/chooser.c:474
 msgid 
 Choose an applet from the list. If you have already chosen an applet 
 previously, it will be substituted by the one you choose.
-msgstr Choose an applet from the list. If you have already chosen an applet 
previously, it will be substituted by the one you choose.
+msgstr Pilih  satu aplet dari senarai. Jika anda sudah memilih aplet sebelum 
ini, ia akan diganti dengan yang anda pilih.
 
 #: ../panel-plugin/chooser.c:486
 msgid Available applets
-msgstr Available applets
+msgstr Aplet tersedia
 
 #: ../panel-plugin/xfapplet.c:148
 #, c-format
 msgid '%s' has quit unexpectedly.
-msgstr '%s' has quit unexpectedly.
+msgstr '%s' telah keluar tanpa dijangka.
 
 #: ../panel-plugin/xfapplet.c:151
 msgid 
 If you don't reload the applet, XfApplet plugin will go back to its initial 
 empty state.
-msgstr If you don't reload the applet, XfApplet plugin will go back to its 
initial empty state.
+msgstr Jika anda tidak muat semula aplet, pemalam XfApplet akan kembali ke 
keadaan kosong asalnya.
 
 #: ../panel-plugin/xfapplet.c:153
 msgid Don't Reload
-msgstr Don't Reload
+msgstr Jangan Muat Semula
 
 #: ../panel-plugin/xfapplet.c:154
 msgid Reload
-msgstr Reload
+msgstr Muat Semula
 
 #: ../panel-plugin/xfapplet.c:477
 msgid Display Gnome applets on the Xfce4 Panel
-msgstr Display Gnome applets on the Xfce4 Panel
+msgstr Papar aplet Gnome pada Panel Xfce4
 
 #: ../panel-plugin/xfapplet.c:480
 msgid Author/Maintainer
-msgstr Author/Maintainer
+msgstr Pengarang/Penyelenggara
 
 #: ../panel-plugin/xfapplet.c:484
 #, c-format
 msgid Translator (%s)
-msgstr Translator (%s)
+msgstr Penterjemah (%s)
 
 #: ../panel-plugin/xfapplet.c:574
 #, c-format
 msgid '%s' could not be loaded.
-msgstr '%s' could not be loaded.
+msgstr '%s' tidak dapat dimuatkan.
 
 #: ../panel-plugin/xfapplet.c:577
 msgid An internal error occurred and the applet could not be loaded.
-msgstr An internal error occurred and the applet could not be loaded.
+msgstr Ralat dalaman berlaku dan aplet tidak dapat dimuatkan.
 
 #: ../panel-plugin/xfapplet.desktop.in.in.h:1
 msgid Display Gnome applets in the panel
-msgstr Display Gnome applets in the panel
+msgstr Papar aplet Gnome di dalam panel
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] thunar-shares-plugin:master I18n: Add new translation oc (100%).

2013-12-03 Thread Transifex
Updating branch refs/heads/master
 to 58e46bba9eb1ae0a7725cdff9f3cb85b93329240 (commit)
   from dd25b42720b828d93abad8cd56e438917acd19fe (commit)

commit 58e46bba9eb1ae0a7725cdff9f3cb85b93329240
Author: Cedric31 cvalm...@yahoo.fr
Date:   Tue Dec 3 18:30:21 2013 +0100

I18n: Add new translation oc (100%).

28 translated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).

 po/{tr.po = oc.po} |   65 ++-
 1 file changed, 33 insertions(+), 32 deletions(-)

diff --git a/po/tr.po b/po/oc.po
similarity index 60%
copy from po/tr.po
copy to po/oc.po
index c3ba87a..2d64012 100644
--- a/po/tr.po
+++ b/po/oc.po
@@ -3,153 +3,154 @@
 # This file is distributed under the same license as the PACKAGE package.
 # 
 # Translators:
+# Cedric31 cvalm...@yahoo.fr, 2013
 msgid 
 msgstr 
 Project-Id-Version: Thunar Plugins\n
 Report-Msgid-Bugs-To: \n
 POT-Creation-Date: 2013-07-03 20:10+0200\n
-PO-Revision-Date: 2013-11-19 16:13+\n
-Last-Translator: Nick n...@xfce.org\n
-Language-Team: Turkish 
(http://www.transifex.com/projects/p/xfce/language/tr/)\n
+PO-Revision-Date: 2013-12-03 17:00+\n
+Last-Translator: Cedric31 cvalm...@yahoo.fr\n
+Language-Team: Occitan (post 1500) 
(http://www.transifex.com/projects/p/xfce/language/oc/)\n
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=UTF-8\n
 Content-Transfer-Encoding: 8bit\n
-Language: tr\n
+Language: oc\n
 Plural-Forms: nplurals=2; plural=(n  1);\n
 
 #: ../libshares/libshares-util.c:161
 msgid Please, write a name.
-msgstr Lütfen bir isim yazın.
+msgstr Se vos plai, escrivètz un nom.
 
 #. Warn the user
 #: ../libshares/libshares-util.c:169
 msgid 
 Share name too long. Some old clients may have problems to access it, 
 continue anyway?
-msgstr Paylaşım ismi çok uzun. Bazı eski istemciler erişimde sıkıntı 
yaşayabilir, devam etmek istiyor musunuz?
+msgstr Lo nom de partiment es tròp long. D'unes clients ancians poirián aver 
de problèmas en volent i accedir, contunhar malgrat tot ?
 
 #: ../libshares/libshares-util.c:182
 #, c-format
 msgid Error while getting share information: %s
-msgstr Paylaşım bilgisi alınırken hata oluştu: %s
+msgstr Error al moment de l'obtencion de las informacions del partiment : %s
 
 #: ../libshares/libshares-util.c:192
 msgid Another share has the same name
-msgstr Aynı isimde başka bir paylaşım bulunuyor
+msgstr Un autre partiment a lo meteis nom
 
 #: ../libshares/libshares-util.c:246
 msgid Cannot modify the share:
-msgstr Paylaşım değiştirilemiyor:
+msgstr Impossible de modificar lo partiment :
 
 #: ../libshares/libshares-util.c:345
 msgid 
 Thunar needs to add some permissions to your folder in order to share it. Do
  you agree?
-msgstr Thunar paylaşım için dizin izinlerin değiştirilmesine ihtiyaç duyuyor. 
Kabul ediyor musunuz?
+msgstr Thunar a besonh d'apondre de permissions a vòstre dorsièr per tal de 
lo partejar. Sètz d'acòrdi ?
 
 #: ../libshares/libshares-util.c:384
 msgid Error when changing folder permissions.
-msgstr Dizin izinleri değiştirilirken hata oluştu.
+msgstr Error al moment del cambiament de permissions del dorsièr.
 
 #: ../libshares/shares.c:165
 #, c-format
 msgid %s %s %s returned with signal %d
-msgstr %s %s %s %d sinyali döndürdü
+msgstr %s %s %s a renviat un senhal %d
 
 #: ../libshares/shares.c:174
 #, c-format
 msgid %s %s %s failed for an unknown reason
-msgstr %s %s %s bilinmeyen bir nedenden dolayı gerçekleştirilemedi
+msgstr %s %s %s a fracassat per una rason desconeguda
 
 #: ../libshares/shares.c:195
 #, c-format
 msgid 'net usershare' returned error %d: %s
-msgstr 'net usershare' %d hatası döndürdü: %s
+msgstr 'net usershare' a renviat una error %d : %s
 
 #: ../libshares/shares.c:197
 #, c-format
 msgid 'net usershare' returned error %d
-msgstr 'net usershare' %d hatası döndürdü
+msgstr 'net usershare' a renviat una error %d
 
 #: ../libshares/shares.c:231
 #, c-format
 msgid the output of 'net usershare' is not in valid UTF-8 encoding
-msgstr 'net usershare' çıktısı UTF-8 kodlamasına göre geçerli değil
+msgstr la sortida de 'net usershare' es pas dins un encodatge UTF-8 valid
 
 #: ../libshares/shares.c:490 ../libshares/shares.c:702
 #, c-format
 msgid Failed
-msgstr Başarısız
+msgstr Fracàs
 
 #: ../libshares/shares.c:592
 #, c-format
 msgid Samba's testparm returned with signal %d
-msgstr Samba testparm işlemi %d sinyali döndürdü
+msgstr Lo testparm de Samba a renviat un senhal %d
 
 #: ../libshares/shares.c:598
 #, c-format
 msgid Samba's testparm failed for an unknown reason
-msgstr Samba testparm işlemi bilinmeyen bir nedenden ötürü başarısız oldu
+msgstr Lo testparm de Samba a fracassat per una rason desconeguda
 
 #: ../libshares/shares.c:613
 #, c-format
 msgid Samba's testparm returned error %d: %s
-msgstr Samba testparm işlemi %d hatası döndürdü: %s
+msgstr Lo testparm de Samba a renviat una error %d : %s
 
 #: ../libshares/shares.c:615
 #, c-format
 msgid Samba's testparm returned error %d

[Xfce4-commits] parole:master I18n: Update translation zh_TW (100%).

2013-12-03 Thread Transifex
Updating branch refs/heads/master
 to 6c8f5999dedb380d28908545678b9d3e85108e01 (commit)
   from be01f0217333ef9e6d127d5965dbc16512eb4fa4 (commit)

commit 6c8f5999dedb380d28908545678b9d3e85108e01
Author: Cheng-Chia Tseng pswo10...@gmail.com
Date:   Tue Dec 3 18:30:54 2013 +0100

I18n: Update translation zh_TW (100%).

256 translated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).

 po/zh_TW.po |   24 ++--
 1 file changed, 10 insertions(+), 14 deletions(-)

diff --git a/po/zh_TW.po b/po/zh_TW.po
index 19b300a..cd4e42f 100644
--- a/po/zh_TW.po
+++ b/po/zh_TW.po
@@ -9,9 +9,9 @@ msgid 
 msgstr 
 Project-Id-Version: Xfce Apps\n
 Report-Msgid-Bugs-To: \n
-POT-Creation-Date: 2013-11-13 06:30+0100\n
-PO-Revision-Date: 2013-11-19 16:28+\n
-Last-Translator: Xfce transi...@xfce.org\n
+POT-Creation-Date: 2013-12-02 12:30+0100\n
+PO-Revision-Date: 2013-12-03 15:06+\n
+Last-Translator: Cheng-Chia Tseng pswo10...@gmail.com\n
 Language-Team: Chinese (Taiwan) 
(http://www.transifex.com/projects/p/xfce/language/zh_TW/)\n
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=UTF-8\n
@@ -31,7 +31,7 @@ msgstr 媒體(_M)
 
 #: ../data/interfaces/parole.ui.h:3
 msgid _Open…
-msgstr 
+msgstr 開啟(_O)...
 
 #: ../data/interfaces/parole.ui.h:4
 msgid Open _Location…
@@ -176,7 +176,7 @@ msgstr 插件(_L)
 
 #: ../data/interfaces/parole.ui.h:38
 msgid _Preferences
-msgstr 
+msgstr 偏好設定(_P)
 
 #: ../data/interfaces/parole.ui.h:39
 msgid _Help
@@ -188,7 +188,7 @@ msgstr 報告錯誤(_R)…
 
 #: ../data/interfaces/parole.ui.h:41
 msgid _About
-msgstr 
+msgstr 關於(_A)
 
 #: ../data/interfaces/parole.ui.h:42
 msgid span color='#F4F4F4'bbigUnknown Song/big/b/span
@@ -498,12 +498,12 @@ msgstr 確定
 msgid 
 Parole needs b%s/b to play this file.\n
 It can be installed automatically.
-msgstr 
+msgstr Parole 需要有 b%s/b 才能播放這類檔案。\n它可以自動安裝。
 
 #: ../src/gst/parole-gst.c:1512
 #, c-format
 msgid Parole needs b%s/b to play this file.
-msgstr 
+msgstr Parole 需要有 b%s/b 才能播放這類檔案。
 
 #: ../src/gst/parole-gst.c:1922
 msgid The stream is taking too much time to load
@@ -642,11 +642,7 @@ msgstr 鍵入 %s --help 列出所有可用的指令列選項\n
 msgid Parole is already running, use -i to open a new instance\n
 msgstr Parole 已經在執行中,使用 -i 來開啟新的實體\n
 
-#: ../src/parole-mediachooser.c:234
-msgid Supported files
-msgstr 支援的檔案
-
-#: ../src/parole-mediachooser.c:241 ../src/parole-player.c:1013
+#: ../src/parole-mediachooser.c:247 ../src/parole-player.c:1013
 msgid All files
 msgstr 所有檔案
 
@@ -689,7 +685,7 @@ msgstr 未知的播放清單格式
 
 #: ../src/parole-medialist.c:715
 msgid Please choose a supported playlist format
-msgstr 
+msgstr 請選擇支援的播放清單格式
 
 #: ../src/parole-medialist.c:769 ../src/parole-plugins-manager.c:369
 msgid Unknown
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfce4-xkb-plugin:master I18n: Add new translation ms (100%).

2013-12-03 Thread Transifex
Updating branch refs/heads/master
 to 061912e43e356ab8598116fe52a81a34a921f6d8 (commit)
   from fc9757b9f248ee7ee358e0b5d63cb6d329e2fea6 (commit)

commit 061912e43e356ab8598116fe52a81a34a921f6d8
Author: abuyop abu...@gmail.com
Date:   Tue Dec 3 18:31:51 2013 +0100

I18n: Add new translation ms (100%).

17 translated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).

 po/{id.po = ms.po} |   37 ++---
 1 file changed, 18 insertions(+), 19 deletions(-)

diff --git a/po/id.po b/po/ms.po
similarity index 70%
copy from po/id.po
copy to po/ms.po
index 6dec7b5..f90cfee 100644
--- a/po/id.po
+++ b/po/ms.po
@@ -3,35 +3,34 @@
 # This file is distributed under the same license as the PACKAGE package.
 # 
 # Translators:
-# Andhika Padmawan andhika.padma...@gmail.com, 2008
-# Ardjuna asyur...@gmail.com, 2013
+# abuyop abu...@gmail.com, 2013
 msgid 
 msgstr 
 Project-Id-Version: Xfce Panel Plugins\n
 Report-Msgid-Bugs-To: \n
 POT-Creation-Date: 2013-07-03 21:34+0200\n
-PO-Revision-Date: 2013-07-06 09:24+\n
-Last-Translator: Ardjuna asyur...@gmail.com\n
-Language-Team: Indonesian 
(http://www.transifex.com/projects/p/xfce/language/id/)\n
+PO-Revision-Date: 2013-12-03 12:49+\n
+Last-Translator: abuyop abu...@gmail.com\n
+Language-Team: Malay 
(http://www.transifex.com/projects/p/xfce/language/ms/)\n
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=UTF-8\n
 Content-Transfer-Encoding: 8bit\n
-Language: id\n
+Language: ms\n
 Plural-Forms: nplurals=1; plural=0;\n
 
 #: ../panel-plugin/xkb-settings-dialog.c:112
 #: ../panel-plugin/xkb-plugin.desktop.in.in.h:1
 msgid Keyboard Layouts
-msgstr Tata Letak Papan Ketik
+msgstr Bentangan Papan Kekunci
 
 #. ***
 #: ../panel-plugin/xkb-settings-dialog.c:122
 msgid Show layout as:
-msgstr Tampilkan tata letak sebagai:
+msgstr Tunjuk bentangan sebagai:
 
 #: ../panel-plugin/xkb-settings-dialog.c:127
 msgid image
-msgstr gambar
+msgstr imej
 
 #: ../panel-plugin/xkb-settings-dialog.c:128
 msgid text
@@ -40,7 +39,7 @@ msgstr teks
 #. text size option
 #: ../panel-plugin/xkb-settings-dialog.c:133
 msgid Text size:
-msgstr Ukuran teks:
+msgstr Saiz teks:
 
 #: ../panel-plugin/xkb-settings-dialog.c:138
 msgid small
@@ -48,7 +47,7 @@ msgstr kecil
 
 #: ../panel-plugin/xkb-settings-dialog.c:139
 msgid medium
-msgstr sedang
+msgstr sederhana
 
 #: ../panel-plugin/xkb-settings-dialog.c:140
 msgid large
@@ -56,15 +55,15 @@ msgstr besar
 
 #: ../panel-plugin/xkb-settings-dialog.c:144
 msgid Manage layout:
-msgstr Atur tata letak:
+msgstr Urus bentangan:
 
 #: ../panel-plugin/xkb-settings-dialog.c:149
 msgid globally
-msgstr secara global
+msgstr secara sejagat
 
 #: ../panel-plugin/xkb-settings-dialog.c:150
 msgid per window
-msgstr per jendela
+msgstr per tetingkap
 
 #: ../panel-plugin/xkb-settings-dialog.c:151
 msgid per application
@@ -72,20 +71,20 @@ msgstr per aplikasi
 
 #: ../panel-plugin/xkb-settings-dialog.c:185
 msgid Keyboard Layouts Plugin
-msgstr Plugin Tata Letak Papan Ketik
+msgstr Pemalam Bentangan Papan Kekunci
 
 #: ../panel-plugin/xkb-settings-dialog.c:195
 msgid Allows you to configure and use multiple keyboard layouts.
-msgstr Memungkinkan anda untuk menyesuaikan berbagai tata letak papan ketik.
+msgstr Membolehkan anda konfigur dan guna bentangan papan kekunci berbilang
 
 #: ../panel-plugin/xkb-settings-dialog.c:199
 msgid Other plugins available here
-msgstr Plugin lainnya tersedia di sini
+msgstr Lain-lain pemalam tersedia di sini
 
 #: ../panel-plugin/xfce4-xkb-plugin.c:128
 msgid Keyboard settings
-msgstr Pengaturan papan ketik
+msgstr Tetapan papan kekunci
 
 #: ../panel-plugin/xkb-plugin.desktop.in.in.h:2
 msgid Keyboard layouts setup and switch plugin
-msgstr Pengaturan tata letak papan ketik dan pengalih plugin
+msgstr Pemalam persediaan bentangan dan pertukaran papan kekunci
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfswitch-plugin:master I18n: Add new translation ms (100%).

2013-12-03 Thread Transifex
Updating branch refs/heads/master
 to 808bee7b71dbfc0890dbd1b3d0a1e57ef959c943 (commit)
   from 718647bf18e5b92bc28f1990f2fe8fea9fe605bf (commit)

commit 808bee7b71dbfc0890dbd1b3d0a1e57ef959c943
Author: abuyop abu...@gmail.com
Date:   Tue Dec 3 18:31:58 2013 +0100

I18n: Add new translation ms (100%).

3 translated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).

 po/{is.po = ms.po} |   18 +-
 1 file changed, 9 insertions(+), 9 deletions(-)

diff --git a/po/is.po b/po/ms.po
similarity index 62%
copy from po/is.po
copy to po/ms.po
index 95c3502..fc4b380 100644
--- a/po/is.po
+++ b/po/ms.po
@@ -3,30 +3,30 @@
 # This file is distributed under the same license as the PACKAGE package.
 # 
 # Translators:
-# Sveinn í Felli svei...@nett.is, 2013
+# abuyop abu...@gmail.com, 2013
 msgid 
 msgstr 
 Project-Id-Version: Xfce Panel Plugins\n
 Report-Msgid-Bugs-To: \n
 POT-Creation-Date: 2009-02-08 10:26+0100\n
-PO-Revision-Date: 2013-09-25 09:47+\n
-Last-Translator: Sveinn í Felli svei...@nett.is\n
-Language-Team: Icelandic 
(http://www.transifex.com/projects/p/xfce/language/is/)\n
+PO-Revision-Date: 2013-12-03 12:34+\n
+Last-Translator: abuyop abu...@gmail.com\n
+Language-Team: Malay 
(http://www.transifex.com/projects/p/xfce/language/ms/)\n
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=UTF-8\n
 Content-Transfer-Encoding: 8bit\n
-Language: is\n
-Plural-Forms: nplurals=2; plural=(n != 1);\n
+Language: ms\n
+Plural-Forms: nplurals=1; plural=0;\n
 
 #: ../panel-plugin/main.c:141
 msgid Do you really want to switch to another user?
-msgstr Viltu í alvörunni skipta yfir í annan notanda?
+msgstr Anda pasti mahu tukar ke pengguna lain?
 
 #: ../panel-plugin/main.c:187
 #: ../panel-plugin/xfswitch-plugin.desktop.in.in.h:1
 msgid Switch to another user without closing the current session
-msgstr Skipta um notanda ál þess að loka núverandi setu
+msgstr Tukar ke pengguna lain tanpa menutup sesi semasa
 
 #: ../panel-plugin/xfswitch-plugin.desktop.in.in.h:2
 msgid User switching
-msgstr Skipta um notanda
+msgstr Pengguna menukar
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfmedia-remote-plugin:master I18n: Add new translation ms (100%).

2013-12-03 Thread Transifex
Updating branch refs/heads/master
 to 890307ce5bd51d4ed451accd5f7debb932daffa8 (commit)
   from a3ebd151f0ceadc9048d00ec39ab93edb7f31b57 (commit)

commit 890307ce5bd51d4ed451accd5f7debb932daffa8
Author: abuyop abu...@gmail.com
Date:   Tue Dec 3 18:31:56 2013 +0100

I18n: Add new translation ms (100%).

27 translated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).

 po/{en_AU.po = ms.po} |   66 
 1 file changed, 33 insertions(+), 33 deletions(-)

diff --git a/po/en_AU.po b/po/ms.po
similarity index 73%
copy from po/en_AU.po
copy to po/ms.po
index dd74212..493daa4 100644
--- a/po/en_AU.po
+++ b/po/ms.po
@@ -3,115 +3,115 @@
 # This file is distributed under the same license as the PACKAGE package.
 # 
 # Translators:
-# k3lt01 keltoi...@gmail.com, 2013
+# abuyop abu...@gmail.com, 2013
 msgid 
 msgstr 
 Project-Id-Version: Xfce Panel Plugins\n
 Report-Msgid-Bugs-To: \n
 POT-Creation-Date: 2008-05-14 17:32-0400\n
-PO-Revision-Date: 2013-07-29 09:50+\n
-Last-Translator: k3lt01 keltoi...@gmail.com\n
-Language-Team: English (Australia) 
(http://www.transifex.com/projects/p/xfce/language/en_AU/)\n
+PO-Revision-Date: 2013-12-03 12:40+\n
+Last-Translator: abuyop abu...@gmail.com\n
+Language-Team: Malay 
(http://www.transifex.com/projects/p/xfce/language/ms/)\n
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=UTF-8\n
 Content-Transfer-Encoding: 8bit\n
-Language: en_AU\n
-Plural-Forms: nplurals=2; plural=(n != 1);\n
+Language: ms\n
+Plural-Forms: nplurals=1; plural=0;\n
 
 #: ../panel-plugin/xfmedia-remote-plugin.c:245
 msgid Choose playlist to load
-msgstr Choose playlist to load
+msgstr Pilih senarai main untuk dimuatkan
 
 #: ../panel-plugin/xfmedia-remote-plugin.c:280
 msgid Save playlist
-msgstr Save playlist
+msgstr Simpan senarai main
 
 #: ../panel-plugin/xfmedia-remote-plugin.c:301
 msgid Failed to save playlist
-msgstr Failed to save playlist
+msgstr Gagal menyimpan senarai main
 
 #: ../panel-plugin/xfmedia-remote-plugin.c:370
 msgid Please wait until the previous add operation completes.
-msgstr Please wait until the previous add operation completes.
+msgstr Tunggu sebentar sehingga operasi tambah terdahulu selesai.
 
 #: ../panel-plugin/xfmedia-remote-plugin.c:374
 msgid Add track(s) to playlist
-msgstr Add track(s) to playlist
+msgstr Tambah trek(s) ke senarai main
 
 #. Play
 #: ../panel-plugin/xfmedia-remote-plugin.c:509
 #: ../panel-plugin/xfmedia-remote-plugin.c:601
 msgid _Play
-msgstr _Play
+msgstr _Main
 
 #. Remove
 #: ../panel-plugin/xfmedia-remote-plugin.c:521
 msgid _Remove
-msgstr _Remove
+msgstr _Buang
 
 #: ../panel-plugin/xfmedia-remote-plugin.c:569
 #, c-format
 msgid Failed to execute xfmedia: %s
-msgstr Failed to execute xfmedia: %s
+msgstr Gagal lakukan xfmedia: %s
 
 #. Prev
 #: ../panel-plugin/xfmedia-remote-plugin.c:590
 msgid P_rev
-msgstr P_rev
+msgstr Te_rd
 
 #. Pause
 #: ../panel-plugin/xfmedia-remote-plugin.c:612
 msgid P_ause
-msgstr P_ause
+msgstr J_eda
 
 #. Stop
 #: ../panel-plugin/xfmedia-remote-plugin.c:623
 msgid _Stop
-msgstr _Stop
+msgstr _Henti
 
 #. Next
 #: ../panel-plugin/xfmedia-remote-plugin.c:634
 msgid _Next
-msgstr _Next
+msgstr _Berikutnya
 
 #. Playlist
 #: ../panel-plugin/xfmedia-remote-plugin.c:651
 msgid P_laylist
-msgstr P_laylist
+msgstr Se_narai Main
 
 #: ../panel-plugin/xfmedia-remote-plugin.c:672
 msgid Playlist
-msgstr Playlist
+msgstr Senarai Main
 
 #. Load Playlist
 #: ../panel-plugin/xfmedia-remote-plugin.c:679
 msgid _Load...
-msgstr _Load...
+msgstr _Muat...
 
 #. Save Playlist
 #: ../panel-plugin/xfmedia-remote-plugin.c:690
 msgid _Save...
-msgstr _Save...
+msgstr _Simpan...
 
 #. Clear Playlist
 #: ../panel-plugin/xfmedia-remote-plugin.c:701
 msgid _Clear
-msgstr _Clear
+msgstr _Kosongkan
 
 #. Add Track
 #: ../panel-plugin/xfmedia-remote-plugin.c:712
 msgid _Add track(s)...
-msgstr _Add track(s)...
+msgstr T_ambah trek(s)...
 
 #. Quit
 #: ../panel-plugin/xfmedia-remote-plugin.c:729
 msgid _Quit
-msgstr _Quit
+msgstr K_eluar
 
 #. Start Xfmedia
 #: ../panel-plugin/xfmedia-remote-plugin.c:800
 msgid Start _Xfmedia
-msgstr Start _Xfmedia
+msgstr Mula _Xfmedia
 
 #. Header
 #: ../panel-plugin/xfmedia-remote-plugin.c:817
@@ -119,29 +119,29 @@ msgstr Start _Xfmedia
 #: ../panel-plugin/xfmedia-remote-plugin.c:1292
 #: ../panel-plugin/xfmedia-remote.desktop.in.in.h:2
 msgid Xfmedia Remote
-msgstr Xfmedia Remote
+msgstr Xfmedia Jauh
 
 #: ../panel-plugin/xfmedia-remote-plugin.c:942
 msgid Stopped
-msgstr Stopped
+msgstr Dihentikan
 
 #: ../panel-plugin/xfmedia-remote-plugin.c:960
 msgid No Xfmedia instances running
-msgstr No Xfmedia instances running
+msgstr Tiada kejadian Xfmedia berjalan
 
 #: ../panel-plugin/xfmedia-remote-plugin.c:1117
 #: ../panel-plugin/xfmedia-remote-plugin.c:1119
 msgid Popup menu
-msgstr Popup menu
+msgstr Menu timbul
 
 #: ../panel-plugin/xfmedia-remote-plugin.c:1131
 msgid Show _playlist
-msgstr Show 

[Xfce4-commits] xfce4-notifyd:master I18n: Add new translation sl (82%).

2013-12-03 Thread Transifex
Updating branch refs/heads/master
 to 21b0f5c9bac3594d338c1eab32104c5658415633 (commit)
   from be149bb454b90e0220c25afef5b9f08ccde074a3 (commit)

commit 21b0f5c9bac3594d338c1eab32104c5658415633
Author: anthonmanix anthon.ma...@gmail.com
Date:   Tue Dec 3 18:31:05 2013 +0100

I18n: Add new translation sl (82%).

24 translated messages, 5 untranslated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).

 po/{hr.po = sl.po} |   67 +--
 1 file changed, 33 insertions(+), 34 deletions(-)

diff --git a/po/hr.po b/po/sl.po
similarity index 70%
copy from po/hr.po
copy to po/sl.po
index fc966e6..22a408c 100644
--- a/po/hr.po
+++ b/po/sl.po
@@ -3,40 +3,39 @@
 # This file is distributed under the same license as the PACKAGE package.
 # 
 # Translators:
-# Ivica  Kolić ik...@yahoo.com, 2013
-# Ivica  Kolić ik...@yahoo.com, 2013
+# anthonmanix anthon.ma...@gmail.com, 2013
 msgid 
 msgstr 
 Project-Id-Version: Xfce Apps\n
 Report-Msgid-Bugs-To: \n
-POT-Creation-Date: 2013-07-03 20:38+0200\n
-PO-Revision-Date: 2013-10-19 21:45+\n
-Last-Translator: Ivica  Kolić ik...@yahoo.com\n
-Language-Team: Croatian 
(http://www.transifex.com/projects/p/xfce/language/hr/)\n
+POT-Creation-Date: 2013-10-27 18:31+0100\n
+PO-Revision-Date: 2013-12-03 13:40+\n
+Last-Translator: anthonmanix anthon.ma...@gmail.com\n
+Language-Team: Slovenian 
(http://www.transifex.com/projects/p/xfce/language/sl/)\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%10010 || n%100=20) ? 1 : 2;\n
+Language: sl\n
+Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || 
n%100==4 ? 2 : 3);\n
 
 #: ../xfce4-notifyd/main.c:74 ../xfce4-notifyd/main.c:84
 #: ../xfce4-notifyd-config/main.c:258
 msgid Xfce Notify Daemon
-msgstr 
+msgstr Xfce ozadni program za obvestila
 
 #: ../xfce4-notifyd/main.c:77
 #, c-format
 msgid Unknown option \%s\\n
-msgstr Nepoznata opcija \%s\\n
+msgstr Neznana možnost \%s\\n
 
 #: ../xfce4-notifyd/main.c:86
 msgid Unable to start notification daemon
-msgstr 
+msgstr Ozadnega programa za obvestila ni mogoče zagnati
 
 #: ../xfce4-notifyd/xfce-notify-daemon.c:1142
 #: ../xfce4-notifyd/xfce-notify-daemon.c:1162
 msgid Failed to set new theme
-msgstr Neuspjelo postavljanje nove teme
+msgstr Nastavljanje nove teme ni uspelo
 
 #: ../xfce4-notifyd/xfce-notify-daemon.c:1215
 #, c-format
@@ -50,27 +49,27 @@ msgstr 
 
 #: ../xfce4-notifyd-config/main.c:57
 msgid Notification Preview
-msgstr Pregled obavijesti
+msgstr Predogled obvestila
 
 #: ../xfce4-notifyd-config/main.c:58
-msgid This is how notifications will look like
-msgstr Ovako će obavijesti izgledati
+msgid This is what notifications will look like
+msgstr Tako bodo prikazana obvestila
 
 #: ../xfce4-notifyd-config/main.c:63
 msgid Button
-msgstr Dugme
+msgstr Gumb
 
 #: ../xfce4-notifyd-config/main.c:70
 msgid Notification preview failed
-msgstr Neuspjeli pregled obavijesti
+msgstr Predogled obvestil ni uspel
 
 #: ../xfce4-notifyd-config/main.c:260
 msgid Settings daemon is unavailable
-msgstr 
+msgstr Ozadni program za nastavitve ni na voljo
 
 #: ../xfce4-notifyd-config/main.c:310
 msgid Display version information
-msgstr Prikaži informaciju o verziji
+msgstr Pokaži podatke o različici
 
 #: ../xfce4-notifyd-config/main.c:311
 msgid Settings manager socket
@@ -78,59 +77,59 @@ msgstr 
 
 #: ../xfce4-notifyd-config/main.c:311
 msgid SOCKET_ID
-msgstr SOCKET_ID
+msgstr 
 
 #: ../xfce4-notifyd-config/main.c:321
 #, c-format
 msgid Type '%s --help' for usage.
-msgstr Upišite '%s --help' za upotrebu.
+msgstr 
 
 #: ../xfce4-notifyd-config/main.c:334
 #, c-format
 msgid Released under the terms of the GNU General Public License, version 2\n
-msgstr Objavljeno pod uvjetima GNU General Public License, verzija 2\n
+msgstr Izdano pod pogoji splošnega dovoljenja GNU, različica 2\n
 
 #: ../xfce4-notifyd-config/main.c:335
 #, c-format
 msgid Please report bugs to %s.\n
-msgstr Molim prijavite probleme  %s.\n\n\n
+msgstr Poročajte hrošče na %s.\n
 
 #: ../xfce4-notifyd-config/xfce4-notifyd-config.glade.h:1
 msgid Top left
-msgstr Gore lijevo
+msgstr Zgoraj levo
 
 #: ../xfce4-notifyd-config/xfce4-notifyd-config.glade.h:2
 msgid Bottom left
-msgstr Dolje lijevo
+msgstr Spodaj levo
 
 #: ../xfce4-notifyd-config/xfce4-notifyd-config.glade.h:3
 msgid Top right
-msgstr Gore desno
+msgstr Zgoraj desno
 
 #: ../xfce4-notifyd-config/xfce4-notifyd-config.glade.h:4
 msgid Bottom right
-msgstr Dolje desno
+msgstr Spodaj desno
 
 #: ../xfce4-notifyd-config/xfce4-notifyd-config.glade.h:5
 #: ../xfce4-notifyd-config/xfce4-notifyd-config.desktop.in.h:1
 msgid Notifications
-msgstr Obavijesti
+msgstr Obvestila
 
 #: ../xfce4-notifyd-config/xfce4-notifyd-config.glade.h:6
 msgid _Preview
-msgstr _Pregled
+msgstr _Predogled
 
 #: 

[Xfce4-commits] xfce4-xmms-plugin:master I18n: Add new translation ms (100%).

2013-12-03 Thread Transifex
Updating branch refs/heads/master
 to 8e71e166d774692073377424f5f7e1678d0f58eb (commit)
   from 011d5531123f12c3231f71858088ad25fa900e0e (commit)

commit 8e71e166d774692073377424f5f7e1678d0f58eb
Author: abuyop abu...@gmail.com
Date:   Tue Dec 3 18:31:54 2013 +0100

I18n: Add new translation ms (100%).

35 translated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).

 po/{zh_TW.po = ms.po} |   80 
 1 file changed, 40 insertions(+), 40 deletions(-)

diff --git a/po/zh_TW.po b/po/ms.po
similarity index 70%
copy from po/zh_TW.po
copy to po/ms.po
index 03e98f1..b04d936 100644
--- a/po/zh_TW.po
+++ b/po/ms.po
@@ -3,177 +3,177 @@
 # This file is distributed under the same license as the PACKAGE package.
 # 
 # Translators:
-# Walter Cheuk wwych...@gmail.com, 2013
+# abuyop abu...@gmail.com, 2013
 msgid 
 msgstr 
 Project-Id-Version: Xfce Panel Plugins\n
 Report-Msgid-Bugs-To: \n
 POT-Creation-Date: 2013-07-13 22:15+0200\n
-PO-Revision-Date: 2013-10-13 00:55+\n
-Last-Translator: Walter Cheuk wwych...@gmail.com\n
-Language-Team: Chinese (Taiwan) 
(http://www.transifex.com/projects/p/xfce/language/zh_TW/)\n
+PO-Revision-Date: 2013-12-03 12:47+\n
+Last-Translator: abuyop abu...@gmail.com\n
+Language-Team: Malay 
(http://www.transifex.com/projects/p/xfce/language/ms/)\n
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=UTF-8\n
 Content-Transfer-Encoding: 8bit\n
-Language: zh_TW\n
+Language: ms\n
 Plural-Forms: nplurals=1; plural=0;\n
 
 #: ../panel-plugin/popupmenu.c:85
 msgid Add files
-msgstr 添加檔案
+msgstr Tambah fail
 
 #: ../panel-plugin/popupmenu.c:96
 msgid Audio files
-msgstr 音訊檔案
+msgstr Fail audio
 
 #: ../panel-plugin/popupmenu.c:97
 msgid Playlist files
-msgstr 播放清單檔案
+msgstr Fail senarai main
 
 #: ../panel-plugin/popupmenu.c:98
 msgid All files
-msgstr 所有檔案
+msgstr Semua fail
 
 #. open files button
 #: ../panel-plugin/popupmenu.c:252
 msgid _Open files
-msgstr 開啟檔案(_O)
+msgstr _Buka fail
 
 #. add files button
 #: ../panel-plugin/popupmenu.c:256
 msgid _Add files
-msgstr 添加檔案(_A)
+msgstr T_ambah fail
 
 #: ../panel-plugin/popupmenu.c:261
 msgid _Jump to File
-msgstr 跳至檔案(_J)
+msgstr _Lompat ke Fail
 
 #. clear pl button
 #: ../panel-plugin/popupmenu.c:265
 msgid _Clear Playlist
-msgstr 清除播放清單(_C)
+msgstr K_osongkan Senarai Main
 
 #. repeate button
 #: ../panel-plugin/popupmenu.c:269
 msgid _Repeat
-msgstr 
+msgstr _Ulang
 
 #. shuffle button
 #: ../panel-plugin/popupmenu.c:273
 msgid _Shuffle
-msgstr 
+msgstr Ko_cok
 
 #. main window button
 #: ../panel-plugin/popupmenu.c:281
 msgid _Main Window
-msgstr 主視窗(_M)
+msgstr Tetingkap _Utama
 
 #. playlist button
 #: ../panel-plugin/popupmenu.c:285
 msgid _Playlist
-msgstr 播放清單(_P)
+msgstr Senara_i Main
 
 #. equalizer button
 #: ../panel-plugin/popupmenu.c:289
 msgid _Equalizer
-msgstr 均衡器(_E)
+msgstr P_enyama
 
 #: ../panel-plugin/popupmenu.c:292
 msgid _View
-msgstr 檢視(_V)
+msgstr _Lihat
 
 #. preference button
 #: ../panel-plugin/popupmenu.c:303
 msgid _Preferences
-msgstr 偏好設定(_P)
+msgstr _Keutamaan
 
 #: ../panel-plugin/popupmenu.c:307
 msgid Power _Off
-msgstr 
+msgstr Kuasa _Mati
 
 #: ../panel-plugin/popupmenu.c:310
 msgid Power _On
-msgstr 
+msgstr Kuasa _Hidup
 
 #: ../panel-plugin/preferences.c:280
 msgid 
 Notice:\n
 Do not change this property from XMMS or BeepMediaPlayer to the other one 
when either one of these is running. It will crash because they use same socket 
address. For the same reason, you cannot run the other player when this plugin 
is running.
-msgstr 
+msgstr Perhatian:\nJangan ubah sifat ini dari XMMS atau Pemain Media Beep ke 
lain-lain bila salah satu darinya berjalan. Ia akan rosak kerana menggunakan 
alamat soket yang sama. Atas sebab yang sama, anda tidak dapat jalankan pemain 
lain bila pemalam ini berjalan.
 
 #: ../panel-plugin/preferences.c:315
 msgid Properties
-msgstr 屬性
+msgstr Sifat
 
 #: ../panel-plugin/preferences.c:327
 msgid Xfce4 XMMS Plugin Options
-msgstr Xfce4 XMMS 插件選項
+msgstr Pilihan Pemalam XMMS Xfce4
 
 #: ../panel-plugin/preferences.c:340
 msgid Media Player
-msgstr 媒體播放器
+msgstr Pemain Media
 
 #. put labels into the left column of our table
 #: ../panel-plugin/preferences.c:354
 msgid Font Size
-msgstr 字型大小
+msgstr Saiz Fon
 
 #: ../panel-plugin/preferences.c:355
 msgid Scroll Speed
-msgstr 捲動速度
+msgstr Kelajuan Tatal
 
 #: ../panel-plugin/preferences.c:356
 msgid Scroll Stepwidth
-msgstr 捲動步幅
+msgstr Lebar Langkah Tatal
 
 #: ../panel-plugin/preferences.c:357
 msgid Scroll Delay
-msgstr 捲動延遲
+msgstr Lengah Tatal
 
 #. add check buttons for the scrolled title, progressbar and volume bar
 #: ../panel-plugin/preferences.c:369
 msgid Show scrolled song title
-msgstr 顯示捲動的歌曲標題
+msgstr Tunjuk tajuk lagu bertatal
 
 #: ../panel-plugin/preferences.c:370
 msgid Show track position
-msgstr 顯示曲目位置
+msgstr Tunjuk kedudukan trek
 
 #: ../panel-plugin/preferences.c:371
 msgid Show volume level
-msgstr 

[Xfce4-commits] xfdesktop:master I18n: Update translation pt_BR (93%).

2013-12-03 Thread Transifex
Updating branch refs/heads/master
 to 7b1cd1a37aa086b7416ec75a3853c3ca28cbac87 (commit)
   from d7242671fc1efb3f7c7f9adad31709d4ac577eab (commit)

commit 7b1cd1a37aa086b7416ec75a3853c3ca28cbac87
Author: Rafael Ferreira rafael.f...@gmail.com
Date:   Tue Dec 3 18:32:05 2013 +0100

I18n: Update translation pt_BR (93%).

201 translated messages, 14 untranslated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).

 po/pt_BR.po |   14 +++---
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/po/pt_BR.po b/po/pt_BR.po
index 57e0208..786ab45 100644
--- a/po/pt_BR.po
+++ b/po/pt_BR.po
@@ -16,8 +16,8 @@ msgstr 
 Project-Id-Version: Xfdesktop\n
 Report-Msgid-Bugs-To: \n
 POT-Creation-Date: 2013-11-15 00:31+0100\n
-PO-Revision-Date: 2013-11-19 13:41+\n
-Last-Translator: Xfce transi...@xfce.org\n
+PO-Revision-Date: 2013-12-03 13:19+\n
+Last-Translator: Rafael Ferreira rafael.f...@gmail.com\n
 Language-Team: Portuguese (Brazil) 
(http://www.transifex.com/projects/p/xfce/language/pt_BR/)\n
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=UTF-8\n
@@ -77,7 +77,7 @@ msgstr Papel de parede do monitor %d
 msgid 
 You are using more than one display, move this dialog to the display you 
 want to edit the settings for.
-msgstr 
+msgstr Você está usando mais de uma tela, mova este diálogo para a tela a 
qual você deseja editar as configurações.
 
 #: ../settings/main.c:697
 #, c-format
@@ -93,7 +93,7 @@ msgstr Papel de parede para %s no monitor %d
 msgid 
 You are using more than one display, move this dialog to the display and 
 workspace you want to edit the settings for.
-msgstr 
+msgstr Você está usando mais de uma tela, mova este diálogo para a tela e 
espaço de trabalho que você deseja editar as configurações.
 
 #. Single monitor and single workspace
 #: ../settings/main.c:716
@@ -109,7 +109,7 @@ msgstr Papel de parede de %s
 
 #: ../settings/main.c:727
 msgid Move this dialog to the workspace you want to edit the settings for.
-msgstr 
+msgstr Mova este diálogo para o espaço de trabalho que você deseja editar as 
configurações.
 
 #: ../settings/main.c:1130
 msgid Image selection is unavailable while the image style is set to None.
@@ -518,11 +518,11 @@ msgstr _Remover espaço de trabalho '%s'
 
 #: ../src/xfdesktop-application.c:773
 msgid Display version information
-msgstr 
+msgstr Exibir informação da versão
 
 #: ../src/xfdesktop-application.c:774
 msgid Reload all settings
-msgstr 
+msgstr Recarregar todas as configurações
 
 #: ../src/xfdesktop-application.c:775
 msgid Pop up the menu (at the current mouse position)
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfdesktop:master I18n: Update translation pt (100%).

2013-12-03 Thread Transifex
Updating branch refs/heads/master
 to 22ff44a71dccaff29521df61cbfe8933bd96b8ec (commit)
   from 7b1cd1a37aa086b7416ec75a3853c3ca28cbac87 (commit)

commit 22ff44a71dccaff29521df61cbfe8933bd96b8ec
Author: Sérgio Marques smarque...@gmail.com
Date:   Tue Dec 3 18:32:05 2013 +0100

I18n: Update translation pt (100%).

215 translated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).

 po/pt.po |   43 ++-
 1 file changed, 22 insertions(+), 21 deletions(-)

diff --git a/po/pt.po b/po/pt.po
index ee93364..84bc803 100644
--- a/po/pt.po
+++ b/po/pt.po
@@ -5,14 +5,15 @@
 # Translators:
 # Nuno Donato nunodon...@gmail.com, 2004
 # nunom nunom...@gmail.com, 2013
+# nunom nunom...@gmail.com, 2013
 # Sérgio Marques smarque...@gmail.com, 2013
 msgid 
 msgstr 
 Project-Id-Version: Xfdesktop\n
 Report-Msgid-Bugs-To: \n
 POT-Creation-Date: 2013-11-15 00:31+0100\n
-PO-Revision-Date: 2013-11-19 13:41+\n
-Last-Translator: Xfce transi...@xfce.org\n
+PO-Revision-Date: 2013-12-03 14:18+\n
+Last-Translator: Sérgio Marques smarque...@gmail.com\n
 Language-Team: Portuguese 
(http://www.transifex.com/projects/p/xfce/language/pt/)\n
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=UTF-8\n
@@ -72,7 +73,7 @@ msgstr Papel de parede do ecrã %d
 msgid 
 You are using more than one display, move this dialog to the display you 
 want to edit the settings for.
-msgstr 
+msgstr Está a utilizar mais do que um ecrã. Mova este diálogo para o ecrã que 
pretende editar as definições.
 
 #: ../settings/main.c:697
 #, c-format
@@ -88,7 +89,7 @@ msgstr Papel de parede para %s no monitor %d
 msgid 
 You are using more than one display, move this dialog to the display and 
 workspace you want to edit the settings for.
-msgstr 
+msgstr Está a utilizar mais do que um ecrã. Mova este diálogo para o ecrã e 
área de trabalho que pretende editar as definições.
 
 #. Single monitor and single workspace
 #: ../settings/main.c:716
@@ -104,7 +105,7 @@ msgstr Papel de parede para %s
 
 #: ../settings/main.c:727
 msgid Move this dialog to the workspace you want to edit the settings for.
-msgstr 
+msgstr Mova este diálogo para o ecrã e área de trabalho que pretende editar 
as definições.
 
 #: ../settings/main.c:1130
 msgid Image selection is unavailable while the image style is set to None.
@@ -513,76 +514,76 @@ msgstr _Remover área de trabalho \%s\
 
 #: ../src/xfdesktop-application.c:773
 msgid Display version information
-msgstr 
+msgstr Mostrar informações da versão
 
 #: ../src/xfdesktop-application.c:774
 msgid Reload all settings
-msgstr 
+msgstr Recarregar todas as definições
 
 #: ../src/xfdesktop-application.c:775
 msgid Pop up the menu (at the current mouse position)
-msgstr 
+msgstr Mostrar menu (na posição do rato)
 
 #: ../src/xfdesktop-application.c:776
 msgid Pop up the window list (at the current mouse position)
-msgstr 
+msgstr Mostrar lista de janelas (na posição do rato)
 
 #: ../src/xfdesktop-application.c:778
 msgid Automatically arrange all the icons on the desktop
-msgstr 
+msgstr Dispor automaticamente os ícones no ecrã
 
 #: ../src/xfdesktop-application.c:780
 msgid Do not wait for a window manager on startup
-msgstr 
+msgstr Não esperar pelo gestor de janelas ao arrancar
 
 #: ../src/xfdesktop-application.c:781
 msgid Cause xfdesktop to quit
-msgstr 
+msgstr Obrigar ao fecho do xfdesktop
 
 #: ../src/xfdesktop-application.c:796
 #, c-format
 msgid Failed to parse arguments: %s\n
-msgstr 
+msgstr Falha ao processar argumentos: %s\n
 
 #: ../src/xfdesktop-application.c:807
 #, c-format
 msgid This is %s version %s, running on Xfce %s.\n
-msgstr 
+msgstr Este é o %s versão %s, executado no Xfce %s.\n
 
 #: ../src/xfdesktop-application.c:809
 #, c-format
 msgid Built with GTK+ %d.%d.%d, linked with GTK+ %d.%d.%d.
-msgstr 
+msgstr Criado com GTK+ %d.%d.%d, vinculado ao GTK+ %d.%d.%d.
 
 #: ../src/xfdesktop-application.c:813
 #, c-format
 msgid Build options:\n
-msgstr 
+msgstr Opções da versão:\n
 
 #: ../src/xfdesktop-application.c:814
 #, c-format
 msgid Desktop Menu:%s\n
-msgstr 
+msgstr Menu do ambiente de trabalho:%s\n
 
 #: ../src/xfdesktop-application.c:816 ../src/xfdesktop-application.c:823
 #: ../src/xfdesktop-application.c:830
 msgid enabled
-msgstr 
+msgstr ativo
 
 #: ../src/xfdesktop-application.c:818 ../src/xfdesktop-application.c:825
 #: ../src/xfdesktop-application.c:832
 msgid disabled
-msgstr 
+msgstr inativo
 
 #: ../src/xfdesktop-application.c:821
 #, c-format
 msgid Desktop Icons:   %s\n
-msgstr 
+msgstr Ícones do ambiente de trabalho:   %s\n
 
 #: ../src/xfdesktop-application.c:828
 #, c-format
 msgid Desktop File Icons:  %s\n
-msgstr 
+msgstr Ícones do ficheiro do ambiente de trabalho:  %s\n
 
 #: ../src/xfdesktop-file-icon-manager.c:578
 #: ../src/xfdesktop-file-icon-manager.c:595
___
Xfce4-commits mailing list

[Xfce4-commits] xfdesktop:xfce-4.10 I18n: Update translation sl (84%).

2013-12-03 Thread Transifex
Updating branch refs/heads/xfce-4.10
 to 102d8a9a5e23da2b62f56752b92c3f1c2847369d (commit)
   from ceb377afcc1c815db56d8b5043dcee2b0d4223a6 (commit)

commit 102d8a9a5e23da2b62f56752b92c3f1c2847369d
Author: anthonmanix anthon.ma...@gmail.com
Date:   Tue Dec 3 18:32:16 2013 +0100

I18n: Update translation sl (84%).

180 translated messages, 33 untranslated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).

 po/sl.po |   28 ++--
 1 file changed, 14 insertions(+), 14 deletions(-)

diff --git a/po/sl.po b/po/sl.po
index 26ea034..89ce30a 100644
--- a/po/sl.po
+++ b/po/sl.po
@@ -9,7 +9,7 @@ msgstr 
 Project-Id-Version: Xfdesktop\n
 Report-Msgid-Bugs-To: \n
 POT-Creation-Date: 2013-07-02 23:19+0200\n
-PO-Revision-Date: 2013-11-28 21:34+\n
+PO-Revision-Date: 2013-12-03 12:55+\n
 Last-Translator: anthonmanix anthon.ma...@gmail.com\n
 Language-Team: Slovenian 
(http://www.transifex.com/projects/p/xfce/language/sl/)\n
 MIME-Version: 1.0\n
@@ -69,7 +69,7 @@ msgstr 
 
 #: ../settings/main.c:543
 msgid Invalid List File
-msgstr 
+msgstr Neveljavna datoteka s seznamom
 
 #: ../settings/main.c:546
 msgid Overwriting the file will cause its contents to be lost.
@@ -86,7 +86,7 @@ msgstr 
 
 #: ../settings/main.c:898
 msgid Add Image File(s)
-msgstr 
+msgstr Dodaj slikovno datoteko(e)
 
 #: ../settings/main.c:907
 msgid Image files
@@ -215,11 +215,11 @@ msgstr Prozorno
 
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:11
 msgid Add an image to the list
-msgstr 
+msgstr Dodaj sliko na seznam
 
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:12
 msgid Remove the selected image(s) from the list
-msgstr 
+msgstr Odstrani izbrano sliko(e) s seznama
 
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:13
 msgid Create a new list, or load an existing one
@@ -247,7 +247,7 @@ msgstr 
 
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:19
 msgid Automatically pick a random image from a list file
-msgstr 
+msgstr Samodejno izberi naključno sliko iz seznama v datoteki
 
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:20
 msgid Image _list
@@ -255,7 +255,7 @@ msgstr Seznam s_lik
 
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:21
 msgid Don't display an image at all
-msgstr 
+msgstr Sploh ne prikaži slike
 
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:22
 msgid _None
@@ -291,19 +291,19 @@ msgstr bBarve/b
 
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:30
 msgid B_rightness:
-msgstr 
+msgstr _Svetlost:
 
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:31
 msgid Increase or decrease the brightness of the final image
-msgstr 
+msgstr Poveča ali zmanjša svetlost končne slike
 
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:32
 msgid Sa_turation:
-msgstr 
+msgstr _Nasičenost:
 
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:33
 msgid Increase or decrease the color saturation of the final image
-msgstr 
+msgstr Poveča ali zmanjša barvno nasičenost končne slike
 
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:34
 msgid bAdjustments/b
@@ -311,7 +311,7 @@ msgstr 
 
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:35
 msgid _Change the background (in minutes):
-msgstr 
+msgstr _Zamenjaj ozadje (v minutah):
 
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:36
 msgid 
@@ -327,7 +327,7 @@ msgstr 
 
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:38
 msgid St_retch this background across all monitors.
-msgstr 
+msgstr _Raztegni to ozadje čez vse zaslone
 
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:39
 msgid 
@@ -471,7 +471,7 @@ msgstr Uporabi _pisavo po meri:
 
 #: ../settings/xfdesktop-settings-ui.glade.h:44
 msgid Label trans_parency:
-msgstr 
+msgstr _Prozornost oznake:
 
 #: ../settings/xfdesktop-settings-ui.glade.h:45
 msgid 
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfce4-cellmodem-plugin:master I18n: Add new translation oc (100%).

2013-12-03 Thread Transifex
Updating branch refs/heads/master
 to 2bddd2b090ae8e559c49ca60324675019d8b0d44 (commit)
   from f2c34d037b0774ce5b804dc2d55e9dde919fb294 (commit)

commit 2bddd2b090ae8e559c49ca60324675019d8b0d44
Author: Cedric31 cvalm...@yahoo.fr
Date:   Wed Dec 4 00:31:07 2013 +0100

I18n: Add new translation oc (100%).

63 translated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).

 po/{pt_BR.po = oc.po} |  137 
 1 file changed, 68 insertions(+), 69 deletions(-)

diff --git a/po/pt_BR.po b/po/oc.po
similarity index 65%
copy from po/pt_BR.po
copy to po/oc.po
index bb693ac..d904786 100644
--- a/po/pt_BR.po
+++ b/po/oc.po
@@ -3,296 +3,295 @@
 # This file is distributed under the same license as the PACKAGE package.
 # 
 # Translators:
-# Fábio Nogueira deb-user...@ubuntu.com, 2008
-# Og Maciel ogmac...@gnome.org, 2008
+# Cedric31 cvalm...@yahoo.fr, 2013
 msgid 
 msgstr 
 Project-Id-Version: Xfce Panel Plugins\n
 Report-Msgid-Bugs-To: \n
 POT-Creation-Date: 2013-07-03 20:50+0200\n
-PO-Revision-Date: 2013-11-19 15:53+\n
-Last-Translator: Rafael Ferreira rafael.f...@gmail.com\n
-Language-Team: Portuguese (Brazil) 
(http://www.transifex.com/projects/p/xfce/language/pt_BR/)\n
+PO-Revision-Date: 2013-12-03 19:38+\n
+Last-Translator: Cedric31 cvalm...@yahoo.fr\n
+Language-Team: Occitan (post 1500) 
(http://www.transifex.com/projects/p/xfce/language/oc/)\n
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=UTF-8\n
 Content-Transfer-Encoding: 8bit\n
-Language: pt_BR\n
+Language: oc\n
 Plural-Forms: nplurals=2; plural=(n  1);\n
 
 #: ../panel-plugin/cellmodem.c:579
 msgid Initializing plugin now
-msgstr Inicializando o plug-in
+msgstr Inicializar l'empeuton ara
 
 #: ../panel-plugin/cellmodem.c:603
 #, c-format
 msgid 
 Error detected:\n
 %s
-msgstr Erro detectado:\n%s
+msgstr Error detectada :\n%s
 
 #: ../panel-plugin/cellmodem.c:611
 #, c-format
 msgid Not registered
-msgstr Não registrado
+msgstr Pas enregistrat
 
 #: ../panel-plugin/cellmodem.c:614
 #, c-format
 msgid Modem needs PIN
-msgstr O modem necessita de um PIN
+msgstr Lo modèm requerís lo còde PIN
 
 #: ../panel-plugin/cellmodem.c:617
 #, c-format
 msgid Registering
-msgstr Registrando
+msgstr Enregistrament
 
 #: ../panel-plugin/cellmodem.c:622
 #, c-format
 msgid 
 Registered [GPRS] to %s\n
 Quality: %d (%d%%)
-msgstr Registrado [GPRS] em %s\nQualidade: %d (%d%%)
+msgstr Enregistrat [GPRS] a %s\nQualitat : %d (%d%%)
 
 #: ../panel-plugin/cellmodem.c:628
 #, c-format
 msgid 
 Registered [UMTS] to %s\n
 Quality: %d (%d%%)
-msgstr Registrado [UMTS] em %s\nQualidade: %d (%d%%)
+msgstr Enregistrat [UMTS] a %s\nQualitat : %d (%d%%)
 
 #: ../panel-plugin/cellmodem.c:634
 #, c-format
 msgid 
 Registered [HSDPA] to %s\n
 Quality: %d (%d%%)
-msgstr Registrado [HSDPA] em %s\nQualidade: %d (%d%%)
+msgstr Enregistrat [HSDPA] a %s\nQualitat : %d (%d%%)
 
 #: ../panel-plugin/cellmodem.c:640
 #, c-format
 msgid 
 Registered to %s\n
 Quality: %d (%d%%)
-msgstr Registrado em %s\nQualidade: %d (%d%%)
+msgstr Enregistrat a %s\nQualitat : %d (%d%%)
 
 #: ../panel-plugin/cellmodem.c:649
 #, c-format
 msgid 
 \n
 No SMS support
-msgstr \nSem suporte a SMS
+msgstr \nPas de supòrt SMS
 
 #: ../panel-plugin/cellmodem.c:669
 #, c-format
 msgid 
 \n
 SMS not checked yet
-msgstr \nSMS não verificado ainda
+msgstr \nSMS pas encara verificat
 
 #: ../panel-plugin/cellmodem.c:849
 msgid Error in modem reply to CREG
-msgstr Erro na resposta CREG do modem
+msgstr Error dins la responsa del modèm al CREG
 
 #: ../panel-plugin/cellmodem.c:862
 msgid Invalid reply to +CREG
-msgstr Resposta inválida a +CREG
+msgstr Responsa invalida a +CREG
 
 #: ../panel-plugin/cellmodem.c:893
 msgid Invalid CREG reply from modem
-msgstr Resposta CREG inválida do modem
+msgstr Responsa CREG invalida del modèm
 
 #: ../panel-plugin/cellmodem.c:940
 msgid Error in modem reply to COPS
-msgstr Erro na resposta COPS do modem
+msgstr Error dins la responsa del modèm al COPS
 
 #: ../panel-plugin/cellmodem.c:1012
 msgid Invalid COPS reply from modem
-msgstr Resposta COPS inválida do modem
+msgstr Responsa COPS invalida del modèm
 
 #: ../panel-plugin/cellmodem.c:1068
 msgid Error in modem reply to CPIN
-msgstr Erro na resposta CPIN do modem
+msgstr Error dins la responsa del modèm al CPIN
 
 #: ../panel-plugin/cellmodem.c:1105
 msgid Invalid CPIN reply from modem
-msgstr Resposta CPIN inválida do modem
+msgstr Responsa CPIN invalida del modèm
 
 #: ../panel-plugin/cellmodem.c:1112
 msgid Unsupportted CPIN reply from modem
-msgstr Resposta CPIN não suportada do modem
+msgstr Responsa CPIN pas suportada pel modèm
 
 #: ../panel-plugin/cellmodem.c:1165
 msgid Invalid OHCIP reply from modem
-msgstr Resposta OHCIP inválida do modem
+msgstr Responsa OHCIP invalida del modèm
 
 #: ../panel-plugin/cellmodem.c:1172
 msgid Unsupportted OHCIP reply from modem
-msgstr Resposta OHCIP não suportada do modem
+msgstr Responsa OCHIP 

[Xfce4-commits] xfce4-appfinder:xfce-4.10 I18n: Add new translation oc (100%).

2013-12-03 Thread Transifex
Updating branch refs/heads/xfce-4.10
 to e88f02d17b67a06cd2fef5e1171fab74e012c4bc (commit)
   from beedaeb1cdad761f4cdd963d1c47e5d7903b7b67 (commit)

commit e88f02d17b67a06cd2fef5e1171fab74e012c4bc
Author: Cedric31 cvalm...@yahoo.fr
Date:   Wed Dec 4 00:30:31 2013 +0100

I18n: Add new translation oc (100%).

68 translated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).

 po/{ca.po = oc.po} |  140 +--
 1 file changed, 70 insertions(+), 70 deletions(-)

diff --git a/po/ca.po b/po/oc.po
similarity index 63%
copy from po/ca.po
copy to po/oc.po
index bac51bd..35d4974 100644
--- a/po/ca.po
+++ b/po/oc.po
@@ -3,24 +3,24 @@
 # This file is distributed under the same license as the PACKAGE package.
 # 
 # Translators:
-# Pau Rul·lan Ferragut paurul...@bulma.net, 2005-2006
+# Cedric31 cvalm...@yahoo.fr, 2013
 msgid 
 msgstr 
 Project-Id-Version: Xfce4-appfinder\n
 Report-Msgid-Bugs-To: \n
 POT-Creation-Date: 2013-07-02 23:08+0200\n
-PO-Revision-Date: 2013-11-19 14:53+\n
-Last-Translator: Nick n...@xfce.org\n
-Language-Team: Catalan 
(http://www.transifex.com/projects/p/xfce/language/ca/)\n
+PO-Revision-Date: 2013-12-03 19:21+\n
+Last-Translator: Cedric31 cvalm...@yahoo.fr\n
+Language-Team: Occitan (post 1500) 
(http://www.transifex.com/projects/p/xfce/language/oc/)\n
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=UTF-8\n
 Content-Transfer-Encoding: 8bit\n
-Language: ca\n
-Plural-Forms: nplurals=2; plural=(n != 1);\n
+Language: oc\n
+Plural-Forms: nplurals=2; plural=(n  1);\n
 
 #: ../src/appfinder-category-model.c:146
 msgid All Applications
-msgstr Totes les aplicacions
+msgstr Totas las aplicacions
 
 #: ../src/appfinder-model.c:549
 msgid Name
@@ -32,77 +32,77 @@ msgstr Comentari
 
 #: ../src/appfinder-model.c:551
 msgid Command
-msgstr Ordre
+msgstr Comanda
 
 #: ../src/appfinder-model.c:552
 msgid Categories
-msgstr Categories
+msgstr Categorias
 
 #: ../src/appfinder-model.c:553
 msgid Filename
-msgstr Nom de fitxer
+msgstr Nom del fichièr
 
 #: ../src/appfinder-model.c:1833
 msgid Application has no command
-msgstr L'aplicació no té cap ordre
+msgstr L'aplicacion a pas de comanda
 
 #: ../src/appfinder-model.c:2157
 msgid Commands History
-msgstr Historial d'ordres
+msgstr Istoric de las comandas
 
 #: ../src/appfinder-preferences.c:221
 msgid C_lear
-msgstr _Neteja
+msgstr _Escafar
 
 #: ../src/appfinder-preferences.c:222
 msgid This will permanently clear the custom command history.
-msgstr Això netejarà l'historia d'ordres personal de forma permanent.
+msgstr Aquò escafarà l'istoric de las comandas d'un biais permanent.
 
 #: ../src/appfinder-preferences.c:223
 msgid Are you sure you want to clear the command history?
-msgstr Voleu netejar l'historial d'ordres?
+msgstr Sètz segur que volètz escafar l'istoric de las comandas ?
 
 #: ../src/appfinder-preferences.c:333
 msgid The custom action will be deleted permanently.
-msgstr L'acció personalitzada s'esborrarà de forma permanent.
+msgstr Aquò suprimirà l'accion personalizada d'un biais permanent.
 
 #: ../src/appfinder-preferences.c:334
 #, c-format
 msgid Are you sure you want to delete pattern \%s\?
-msgstr Voleu esborrar el patró «%s»?
+msgstr Sètz segur que volètz suprimir lo motiu « %s » ?
 
 #: ../src/appfinder-window.c:220 ../src/main.c:446
 #: ../src/appfinder-preferences.glade.h:10
 #: ../data/xfce4-appfinder.desktop.in.h:1
 msgid Application Finder
-msgstr Cercador d'aplicacions
+msgstr Lista de las aplicacions
 
 #: ../src/appfinder-window.c:272
 msgid Toggle view mode
-msgstr Canvia el mode de vista
+msgstr Bascuolar cap al mòde vista
 
 #: ../src/appfinder-window.c:364
 msgid La_unch
-msgstr Exec_uta
+msgstr A_viar
 
 #: ../src/appfinder-window.c:805
 msgid Failed to launch desktop item editor
-msgstr No s'ha pogut executar l'editor d'elements de l'escriptori
+msgstr Impossible d'aviar l'editor d'elements de burèu
 
 #: ../src/appfinder-window.c:831
 msgid 
 This will permanently remove the custom desktop file from your home 
 directory.
-msgstr Això esborrarà permanentment el fitxer d'escriptori personalitzar del 
vostre directori personal.
+msgstr Aquò escafarà definitivament lo fichièr del burèu personalizat de 
vòstre dorsièr personal.
 
 #: ../src/appfinder-window.c:832
 #, c-format
 msgid Are you sure you want to revert \%s\?
-msgstr Voleu revertir «%s»?
+msgstr Sètz segur que volètz anullar las modificacions dins « %s » ?
 
 #: ../src/appfinder-window.c:842
 msgid Failed to remove desktop file
-msgstr No s'ha pogut treure el fitxer d'escriptori
+msgstr Impossible de suprimir un fichièr del burèu
 
 #. I18N: the first %s will be replace with users' applications directory, the
 #. * second with Hidden=true
@@ -111,118 +111,118 @@ msgstr No s'ha pogut treure el fitxer d'escriptori
 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 

[Xfce4-commits] xfce4-indicator-plugin:master I18n: Update translation sl (100%).

2013-12-03 Thread Transifex
Updating branch refs/heads/master
 to 887fe33e686542fa47410374f8cb5483348ea1b8 (commit)
   from 7f1fd246b8f6d0a8d450803883c65dda97fbba9b (commit)

commit 887fe33e686542fa47410374f8cb5483348ea1b8
Author: anthonmanix anthon.ma...@gmail.com
Date:   Wed Dec 4 00:31:18 2013 +0100

I18n: Update translation sl (100%).

37 translated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).

 po/sl.po |   12 ++--
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/po/sl.po b/po/sl.po
index ccfb3d2..02df5e3 100644
--- a/po/sl.po
+++ b/po/sl.po
@@ -9,7 +9,7 @@ msgstr 
 Project-Id-Version: Xfce Panel Plugins\n
 Report-Msgid-Bugs-To: \n
 POT-Creation-Date: 2013-09-06 00:31+0200\n
-PO-Revision-Date: 2013-12-02 21:47+\n
+PO-Revision-Date: 2013-12-03 18:45+\n
 Last-Translator: anthonmanix anthon.ma...@gmail.com\n
 Language-Team: Slovenian 
(http://www.transifex.com/projects/p/xfce/language/sl/)\n
 MIME-Version: 1.0\n
@@ -26,7 +26,7 @@ msgstr Vstavek kazalnika
 msgid 
 Provides a panel area for Unity indicators. Indicators allow applications 
 and system services to display their status and interact with the user.
-msgstr 
+msgstr Zagotavlja področje na pultu za Unity kazalnike. Kazalniki aplikacijam 
in sistemskim storitvam omogočajo prikazovanje svojega statusa in interakcijo z 
uporabnikom.
 
 #: ../panel-plugin/indicator.c:176
 msgid Copyright (c) 2009-2013\n
@@ -76,7 +76,7 @@ msgstr Bluetooth
 
 #: ../panel-plugin/indicator-dialog.c:72
 msgid Sync Menu
-msgstr 
+msgstr Meni usklajevanja
 
 #: ../panel-plugin/indicator-dialog.c:73
 msgid Keyboard
@@ -92,7 +92,7 @@ msgstr Omrežje
 
 #: ../panel-plugin/indicator-dialog.c:76
 msgid Workrave
-msgstr 
+msgstr Workrave
 
 #: ../panel-plugin/indicator-dialog.c:450
 msgid Are you sure you want to clear the list of known indicators?
@@ -119,13 +119,13 @@ msgstr Omogočeno zagotavlja, da so kazalniki postavljeni 
v eno vrstico ali sto
 
 #: ../panel-plugin/indicator-dialog.glade.h:4
 msgid Align left in deskbar mode
-msgstr 
+msgstr Levo poravnaj v načinu namizne vrstice
 
 #: ../panel-plugin/indicator-dialog.glade.h:5
 msgid 
 Controls the indicator button layout when the panel is in a Deskbar mode. 
 Possible choices are \centered\ or \aligned left\.
-msgstr 
+msgstr Nadzoruje razpored gumbov kazalnikov, ko je pult v načinu namizne 
vrstice. Možni izbiri sta \sredinsko\ ali \levo poravnano\.
 
 #: ../panel-plugin/indicator-dialog.glade.h:6
 msgid Appearance
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] parole:master Fix debug build on older platforms

2013-12-03 Thread Sean Davis
Updating branch refs/heads/master
 to 75c1bea7977cc73335745ef9ff33fb869ba4f14f (commit)
   from 6c8f5999dedb380d28908545678b9d3e85108e01 (commit)

commit 75c1bea7977cc73335745ef9ff33fb869ba4f14f
Author: Sean Davis smd.seanda...@gmail.com
Date:   Tue Dec 3 20:33:06 2013 -0500

Fix debug build on older platforms

 src/misc/parole-pl-parser.c |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/misc/parole-pl-parser.c b/src/misc/parole-pl-parser.c
index 456fec1..4054ff2 100644
--- a/src/misc/parole-pl-parser.c
+++ b/src/misc/parole-pl-parser.c
@@ -64,13 +64,13 @@ gchar *g_substr (const gchar* string, gint start, gint end);
 static gchar*
 parole_filename_to_utf8(const gchar* filename)
 {
-gsize read, written;
+gsize read_size, written;
 
 gchar *utf8;
 gchar *tmp = g_strdup(filename);
 tmp = g_strconcat(tmp, \0, NULL);
 
-utf8 = g_filename_to_utf8(tmp, -1, read, written, NULL);
+utf8 = g_filename_to_utf8(tmp, -1, read_size, written, NULL);
 g_free(tmp);
 return utf8;
 }
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits