[Xfce4-commits] xfdesktop:master SVG images are no longer pixilated when scaled up

2013-01-25 Thread Eric Koegel
Updating branch refs/heads/master
 to 8672ff1f791a9801b9309052d053f8b12c4adab6 (commit)
   from 26b9e349bc3497922318bbc5940075d0c497cc8a (commit)

commit 8672ff1f791a9801b9309052d053f8b12c4adab6
Author: Matthew Harvey matthewharv...@yahoo.com
Date:   Tue Jan 1 09:26:47 2013 +0300

SVG images are no longer pixilated when scaled up

The code was rendering the svg image to a pixbuf and then scaling
it rather than requesting the image at the desired size when creating
the pixbuf.

 src/xfce-backdrop.c |   38 +-
 1 files changed, 21 insertions(+), 17 deletions(-)

diff --git a/src/xfce-backdrop.c b/src/xfce-backdrop.c
index 4ec88bf..58c98c8 100644
--- a/src/xfce-backdrop.c
+++ b/src/xfce-backdrop.c
@@ -933,17 +933,10 @@ xfce_backdrop_get_pixbuf(XfceBackdrop *backdrop)
 
 g_return_val_if_fail(XFCE_IS_BACKDROP(backdrop), NULL);
 
-if(backdrop-priv-show_image  backdrop-priv-image_path) {
-image = gdk_pixbuf_new_from_file(backdrop-priv-image_path, NULL);
-if(image) {
-iw = gdk_pixbuf_get_width(image);
-ih = gdk_pixbuf_get_height(image);
-}
-}
-
+if(backdrop-priv-show_image  backdrop-priv-image_path)
+gdk_pixbuf_get_file_info(backdrop-priv-image_path, iw, ih);
+
 if(backdrop-priv-width == 0 || backdrop-priv-height == 0) {
-if(!image)
-return NULL;
 w = iw;
 h = ih;
 } else {
@@ -963,7 +956,9 @@ xfce_backdrop_get_pixbuf(XfceBackdrop *backdrop)
 final_image = create_solid(backdrop-priv-color1, w, h, FALSE, 
0xff);
 }
 
-if(!image) {
+/*check if the file exists,
+ *and if it doesn't then make the background the single colour*/
+if(!g_file_test(backdrop-priv-image_path, G_FILE_TEST_EXISTS)) {
 if(backdrop-priv-brightness != 0)
 final_image = adjust_brightness(final_image, 
backdrop-priv-brightness);
 
@@ -1001,6 +996,7 @@ xfce_backdrop_get_pixbuf(XfceBackdrop *backdrop)
 
 switch(istyle) {
 case XFCE_BACKDROP_IMAGE_CENTERED:
+image = gdk_pixbuf_new_from_file(backdrop-priv-image_path, NULL);
 dx = MAX((w - iw) / 2, 0);
 dy = MAX((h - ih) / 2, 0);
 xo = MIN((w - iw) / 2, dx);
@@ -1011,6 +1007,7 @@ xfce_backdrop_get_pixbuf(XfceBackdrop *backdrop)
 break;
 
 case XFCE_BACKDROP_IMAGE_TILED:
+image = gdk_pixbuf_new_from_file(backdrop-priv-image_path, NULL);
 tmp = gdk_pixbuf_new(GDK_COLORSPACE_RGB, TRUE, 8, w, h);
 for(i = 0; (i * iw)  w; i++) {
 for(j = 0; (j * ih)  h; j++) {
@@ -1033,10 +1030,10 @@ xfce_backdrop_get_pixbuf(XfceBackdrop *backdrop)
 break;
 
 case XFCE_BACKDROP_IMAGE_STRETCHED:
-xscale = (gdouble)w / iw;
-yscale = (gdouble)h / ih;
+image = gdk_pixbuf_new_from_file_at_scale(
+backdrop-priv-image_path, w, h, FALSE, NULL);
 gdk_pixbuf_composite(image, final_image, 0, 0, w, h,
-0, 0, xscale, yscale, interp, 255);
+0, 0, 1, 1, interp, 255);
 break;
 
 case XFCE_BACKDROP_IMAGE_SCALED:
@@ -1053,9 +1050,12 @@ xfce_backdrop_get_pixbuf(XfceBackdrop *backdrop)
 }
 dx = xo;
 dy = yo;
-
+
+image = gdk_pixbuf_new_from_file_at_scale(
+backdrop-priv-image_path, iw * xscale,
+ih * yscale, TRUE, NULL);
 gdk_pixbuf_composite(image, final_image, dx, dy,
-iw * xscale, ih * yscale, xo, yo, xscale, yscale,
+iw * xscale, ih * yscale, xo, yo, 1, 1,
 interp, 255);
 break;
 
@@ -1071,8 +1071,12 @@ xfce_backdrop_get_pixbuf(XfceBackdrop *backdrop)
 xo = 0;
 yo = (h - (ih * yscale)) * 0.5;
 }
+
+image = gdk_pixbuf_new_from_file_at_scale(
+backdrop-priv-image_path, iw * xscale,
+ih * yscale, TRUE, NULL);
 gdk_pixbuf_composite(image, final_image, 0, 0,
-w, h, xo, yo, xscale, yscale, interp, 255);
+w, h, xo, yo, 1, 1, interp, 255);
 break;
 
 default:
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfdesktop:master Add an unmount option and notifications when a device is removed (Bug #7610)

2013-01-25 Thread Eric Koegel
Updating branch refs/heads/master
 to cad4ea4b789c4f67a40d333bc6120ee4d5d5 (commit)
   from 8672ff1f791a9801b9309052d053f8b12c4adab6 (commit)

commit cad4ea4b789c4f67a40d333bc6120ee4d5d5
Author: Eric Koegel eric.koe...@gmail.com
Date:   Tue Jan 1 11:40:47 2013 +0300

Add an unmount option and notifications when a device is removed (Bug #7610)

 src/xfdesktop-notify.c  |  106 +++-
 src/xfdesktop-volume-icon.c |  192 ---
 2 files changed, 228 insertions(+), 70 deletions(-)

diff --git a/src/xfdesktop-notify.c b/src/xfdesktop-notify.c
index 2cb7d34..1430e39 100644
--- a/src/xfdesktop-notify.c
+++ b/src/xfdesktop-notify.c
@@ -170,16 +170,67 @@ xfdesktop_notify_unmount (GMount *mount)
 void
 xfdesktop_notify_unmount_finish (GMount *mount)
 {
-  NotifyNotification *notification;
+  const gchar * const *icon_names;
+  NotifyNotification  *notification = NULL;
+  const gchar *summary;
+  GFile   *icon_file;
+  GIcon   *icon;
+  gchar   *icon_name = NULL;
+  gchar   *message;
+  gchar   *name;
 
   g_return_if_fail (G_IS_MOUNT (mount));
 
+  if (!xfdesktop_notify_init ())
+return;
+
+  name = g_mount_get_name (mount);
+
+  icon = g_mount_get_icon (mount);
+  if (G_IS_THEMED_ICON (icon))
+{
+  icon_names = g_themed_icon_get_names (G_THEMED_ICON (icon));
+  if (icon_names != NULL)
+icon_name = g_strdup (icon_names[0]);
+}
+  else if (G_IS_FILE_ICON (icon))
+{
+  icon_file = g_file_icon_get_file (G_FILE_ICON (icon));
+  if (icon_file != NULL)
+{
+  icon_name = g_file_get_path (icon_file);
+  g_object_unref (icon_file);
+}
+}
+  g_object_unref (icon);
+
+  if (icon_name == NULL)
+icon_name = g_strdup (drive-removable-media);
+
+  /* close any open notifications since the operation finished */
   notification = g_object_get_data (G_OBJECT (mount), 
xfdesktop-notification);
   if (notification != NULL)
 {
   notify_notification_close (notification, NULL);
   g_object_set_data (G_OBJECT (mount), xfdesktop-notification, NULL);
 }
+
+  summary = _(Unmount Finished);
+
+  message = g_strdup_printf (_(The device \%s\ has been safely removed from 
the system. ), name);
+
+#ifdef NOTIFY_CHECK_VERSION
+#if NOTIFY_CHECK_VERSION (0, 7, 0)
+  notification = notify_notification_new (summary, message, icon_name);
+#else
+  notification = notify_notification_new (summary, message, icon_name, NULL);
+#endif
+#else
+  notification = notify_notification_new (summary, message, icon_name, NULL);
+#endif
+  notify_notification_set_urgency (notification, NOTIFY_URGENCY_NORMAL);
+  notify_notification_set_timeout (notification, NOTIFY_EXPIRES_DEFAULT);
+  notify_notification_show (notification, NULL);
 }
 
 
@@ -294,16 +345,67 @@ xfdesktop_notify_eject (GVolume *volume)
 void
 xfdesktop_notify_eject_finish (GVolume *volume)
 {
-  NotifyNotification *notification;
+  const gchar * const *icon_names;
+  NotifyNotification  *notification = NULL;
+  const gchar *summary;
+  GFile   *icon_file;
+  GIcon   *icon;
+  gchar   *icon_name = NULL;
+  gchar   *message;
+  gchar   *name;
 
   g_return_if_fail (G_IS_VOLUME (volume));
 
+  if (!xfdesktop_notify_init ())
+return;
+
+  name = g_volume_get_name (volume);
+
+  icon = g_volume_get_icon (volume);
+  if (G_IS_THEMED_ICON (icon))
+{
+  icon_names = g_themed_icon_get_names (G_THEMED_ICON (icon));
+  if (icon_names != NULL)
+icon_name = g_strdup (icon_names[0]);
+}
+  else if (G_IS_FILE_ICON (icon))
+{
+  icon_file = g_file_icon_get_file (G_FILE_ICON (icon));
+  if (icon_file != NULL)
+{
+  icon_name = g_file_get_path (icon_file);
+  g_object_unref (icon_file);
+}
+}
+  g_object_unref (icon);
+
+  if (icon_name == NULL)
+icon_name = g_strdup (drive-removable-media);
+
+  /* close any open notifications since the operation finished */
   notification = g_object_get_data (G_OBJECT (volume), 
xfdesktop-notification);
   if (notification != NULL)
 {
   notify_notification_close (notification, NULL);
   g_object_set_data (G_OBJECT (volume), xfdesktop-notification, NULL);
 }
+
+  summary = _(Eject Finished);
+
+  message = g_strdup_printf (_(The device \%s\ has been safely removed from 
the system. ), name);
+
+#ifdef NOTIFY_CHECK_VERSION
+#if NOTIFY_CHECK_VERSION (0, 7, 0)
+  notification = notify_notification_new (summary, message, icon_name);
+#else
+  notification = notify_notification_new (summary, message, icon_name, NULL);
+#endif
+#else
+  notification = notify_notification_new (summary, message, icon_name, NULL);
+#endif
+  notify_notification_set_urgency (notification, NOTIFY_URGENCY_NORMAL);
+  notify_notification_set_timeout (notification, NOTIFY_EXPIRES_DEFAULT);
+  

[Xfce4-commits] xfdesktop:master Add a signal handler for removable devices to update the icon when the theme is changed (Bug #8977)

2013-01-25 Thread Eric Koegel
Updating branch refs/heads/master
 to 7d3a73bb593f34eef059b44d063285e0ffdada91 (commit)
   from cad4ea4b789c4f67a40d333bc6120ee4d5d5 (commit)

commit 7d3a73bb593f34eef059b44d063285e0ffdada91
Author: Brad Hermanson apeit...@gmail.com
Date:   Tue Jan 1 16:25:04 2013 +0300

Add a signal handler for removable devices to update the icon when the 
theme is changed (Bug #8977)

 src/xfdesktop-volume-icon.c |5 +
 1 files changed, 5 insertions(+), 0 deletions(-)

diff --git a/src/xfdesktop-volume-icon.c b/src/xfdesktop-volume-icon.c
index adcecc1..50bcc45 100644
--- a/src/xfdesktop-volume-icon.c
+++ b/src/xfdesktop-volume-icon.c
@@ -1048,6 +1048,11 @@ xfdesktop_volume_icon_new(GVolume *volume,
 g_object_unref(mount);
 }
 
+g_signal_connect_swapped(G_OBJECT(gtk_icon_theme_get_for_screen(screen)),
+ changed,
+ 
G_CALLBACK(xfdesktop_volume_icon_invalidate_pixbuf),
+ volume_icon);
+
 g_signal_connect(volume, changed, 
  G_CALLBACK(xfdesktop_volume_icon_changed), 
  volume_icon);
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfdesktop:master Add a tabs width of padding for tooltip text (Bug #9162)

2013-01-25 Thread Eric Koegel
Updating branch refs/heads/master
 to 969b882a7b9694b59ccf5568e889131747dcd827 (commit)
   from 7d3a73bb593f34eef059b44d063285e0ffdada91 (commit)

commit 969b882a7b9694b59ccf5568e889131747dcd827
Author: Eric Koegel eric.koe...@gmail.com
Date:   Fri Jan 18 05:35:47 2013 +0300

Add a tabs width of padding for tooltip text (Bug #9162)

 src/xfdesktop-icon-view.c |7 ++-
 1 files changed, 6 insertions(+), 1 deletions(-)

diff --git a/src/xfdesktop-icon-view.c b/src/xfdesktop-icon-view.c
index 5c62478..d7b3013 100644
--- a/src/xfdesktop-icon-view.c
+++ b/src/xfdesktop-icon-view.c
@@ -1040,6 +1040,7 @@ xfdesktop_icon_view_show_tooltip(GtkWidget *widget,
 {
 XfdesktopIconView *icon_view = XFDESKTOP_ICON_VIEW(widget);
 const gchar *tip_text;
+gchar *padded_tip_text = NULL;
 
 if(!icon_view-priv-item_under_pointer
|| icon_view-priv-definitely_dragging)
@@ -1051,13 +1052,17 @@ xfdesktop_icon_view_show_tooltip(GtkWidget *widget,
 if(!tip_text)
 return FALSE;
 
+padded_tip_text = g_strdup_printf(%s\t, tip_text);
+
 if(icon_view-priv-tooltip_size  0) {
 gtk_tooltip_set_icon(tooltip,
 xfdesktop_icon_peek_pixbuf(icon_view-priv-item_under_pointer,
icon_view-priv-tooltip_size));
 }
 
-gtk_tooltip_set_text(tooltip, tip_text);
+gtk_tooltip_set_text(tooltip, padded_tip_text);
+
+g_free(padded_tip_text);
 
 return TRUE;
 }
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfce4-panel:xfce-4.10 l10n: Updated Bulgarian (bg) translation to 100%

2013-01-25 Thread Transifex
Updating branch refs/heads/xfce-4.10
 to 90d3399882b374aab774789cdc028c1b01296f6b (commit)
   from 9b077efd55ee87c2081c2196acf38c08791a5edd (commit)

commit 90d3399882b374aab774789cdc028c1b01296f6b
Author: Kiril Kirilov cybercop_mont...@abv.bg
Date:   Fri Jan 25 16:10:45 2013 +0100

l10n: Updated Bulgarian (bg) translation to 100%

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

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

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

diff --git a/po/bg.po b/po/bg.po
index 17d7df4..c864df3 100644
--- a/po/bg.po
+++ b/po/bg.po
@@ -7,9 +7,9 @@ msgid 
 msgstr 
 Project-Id-Version: xfce4-panel\n
 Report-Msgid-Bugs-To: \n
-POT-Creation-Date: 2013-01-09 06:42+\n
-PO-Revision-Date: 2013-01-09 23:16+0200\n
-Last-Translator: Cybercop cybercop_mont...@abv.bg\n
+POT-Creation-Date: 2013-01-25 07:54+\n
+PO-Revision-Date: 2013-01-25 17:10+0200\n
+Last-Translator: Kiril Kirilov (Cybercop) cybercop_mont...@abv.bg\n
 Language-Team: Bulgarian\n
 Language: bg\n
 MIME-Version: 1.0\n
@@ -328,7 +328,7 @@ msgstr Наистина ли искате да премахнете панел
 #: ../panel/panel-preferences-dialog.c:958
 #, c-format
 msgid %s span color=\grey\ size=\small\(external)/span
-msgstr %s span цвят=\сив\ размер=\малък\(външен)/span
+msgstr %s span color=\grey\ size=\small\(external)/span
 
 #. I18N: tooltip in preferences dialog when hovering an item in the list
 #. * for external plugins
@@ -1739,8 +1739,12 @@ msgstr Превключване между отворените прозорц
 #~ msgid _Read Online
 #~ msgstr Четене в Интернет
 
-#~ msgid You can read the user manual online. This manual may however not 
exactly match your panel version.
-#~ msgstr Вие можетеда прочетете потребителското ръководство в интернет. 
Товаръководство може да не съорветства на вашата версия на панела.
+#~ msgid 
+#~ You can read the user manual online. This manual may however not exactly 
+#~ match your panel version.
+#~ msgstr 
+#~ Вие можетеда прочетете потребителското ръководство в интернет. 
+#~ Товаръководство може да не съорветства на вашата версия на панела.
 
 #~ msgid The user manual is not installed on your computer
 #~ msgstr Потребителското ръководство не е намерено на вашият компютър
@@ -1765,4 +1769,3 @@ msgstr Превключване между отворените прозорц
 
 #~ msgid Log Out Dialog
 #~ msgstr Диалог за изход
-
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfce4-weather-plugin:master l10n: Updated Serbian (sr) translation to 100%

2013-01-25 Thread Transifex
Updating branch refs/heads/master
 to b3dd2537e302c8f1b62fe0e7d93075db2d75b67e (commit)
   from bf92cfd0a1cd320897db21d86c8016e67b55bb70 (commit)

commit b3dd2537e302c8f1b62fe0e7d93075db2d75b67e
Author: Саша Петровић salepetron...@gmail.com
Date:   Fri Jan 25 17:14:11 2013 +0100

l10n: Updated Serbian (sr) translation to 100%

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

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

 po/sr.po |  177 +
 1 files changed, 142 insertions(+), 35 deletions(-)

diff --git a/po/sr.po b/po/sr.po
index 11a..688e369 100644
--- a/po/sr.po
+++ b/po/sr.po
@@ -1,7 +1,7 @@
 # Serbian translations for xfce4-weather-plugin package.
 # Copyright (C) 2012 THE xfce4-weather-plugin'S COPYRIGHT HOLDER
 # This file is distributed under the same license as the xfce4-weather-plugin 
package.
-#  h.j...@gmx.at, 2012.
+# h.j...@gmx.at, 2012.
 # Саша Петровић salepetron...@gmail.com, 2012, 2013.
 #
 msgid 
@@ -9,7 +9,7 @@ msgstr 
 Project-Id-Version: xfce4-weather-plugin 0.8.1git-9f0895e\n
 Report-Msgid-Bugs-To: \n
 POT-Creation-Date: 2013-01-14 17:10+0100\n
-PO-Revision-Date: 2013-01-21 19:54+0100\n
+PO-Revision-Date: 2013-01-25 17:09+0100\n
 Last-Translator: Саша Петровић salepetron...@gmail.com\n
 Language-Team: српски \n
 Language: sr\n
@@ -18,7 +18,7 @@ msgstr 
 Content-Transfer-Encoding: 8bit\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
-X-Generator: Gtranslator 2.91.6\n
+X-Generator: Virtaal 0.7.0\n
 
 #. TRANSLATORS: Keep in sync with labeloptions in weather-config.c
 #: ../panel-plugin/weather.c:116
@@ -127,7 +127,7 @@ msgstr Нисам успео расчланити податке о време
 msgid 
 Download of weather data failed with HTTP Status Code %d, Reason phrase: %s
 msgstr 
-Преузимање података прогнозе није успело уз шифру стања %d,  реченица 
+Преузимање података прогнозе није успело уз шифру стања %d, реченица 
 разлога: %s
 
 #: ../panel-plugin/weather.c:1366
@@ -174,13 +174,10 @@ msgstr 
 bspan size=\large\%s/span/b span size=\medium\(%s)/span\n
 bspan size=\large\%s/span/b\n
 \n
-\n
-bТемпература/b %s\t\n
+bТемпература/b %s\n
 bВетар:/b %s из правца %s\n
-bПритисак:/b %s \n
-   bВлажност:/b%s\n
-\n
-\n
+bПритисак:/b %s\n
+bВлажност:/b%s\n
 
 #.
 #. * TRANSLATORS: Re-arrange and align at will, optionally using
@@ -331,7 +328,7 @@ msgstr Изме_ни...
 
 #: ../panel-plugin/weather-config.c:483
 msgid Search for a new location and auto-detect its parameters.
-msgstr Тражи нови положај, и сам откриј одренице
+msgstr Тражи нови положај, и сам откриј одреднице.
 
 #: ../panel-plugin/weather-config.c:502
 msgid Latitud_e:
@@ -420,12 +417,12 @@ msgid 
 msgstr 
 Названа по астроному Андерсу Целзијусу, који је измислио изворну лествицу 
 1742, Целзијусова лествица је међународна стандардна јединица и данас је 
-одређена коришћењем Келвинове лествице. 0 °C одговара 273.15 K и 1 °C  
+одређена коришћењем Келвинове лествице. 0 °C одговара 273.15 K и 1 °C 
 разлике у температури је тачно као и разлика у 1 K. Одређена је тачком 
 кључања воде која је грубо 0 °C, и њеном тачком кључања на 100 °C на 
 уобичајеном ваздушном притиску од једне атмосфере (1 atm = 1013.5 hPa). До 
 1948, јединица је била позната као iцентиград/i (на Латинском icentum/
-i (100) и igradus/i (ступњи).
+i (100) и igradus/i (ступњеви).
 
 #: ../panel-plugin/weather-config.c:592
 msgid 
@@ -497,7 +494,7 @@ msgid 
 standard atmosphere (atm) equals 760 Torr.
 msgstr 
 Јединица тор (torr) је названа по физичару и математичару Евангелисти 
-Торичелију (Evangelista Torricelli) који је открио принцип барометра 1964 и 
+Торичелију (Evangelista Torricelli) који је открио принцип барометра 1644 и 
 показао први живин барометар општој јавности. Притисак од 1 тора је 
 приближно једнак једном милиметру живе, и једна стандардна атмосфера (atm) 
 је 760 тора.
@@ -536,7 +533,7 @@ msgid 
 msgstr 
 Метар по секунди је пореклом СИ (међународни систем јединица) јединица 
 брзине и убрзања, одређена растојањем у метрима подељеним на време по 
-секундама. ово је јединица коју метеоролози користе за бележење брзине ветра.
+секундама. Ово је јединица коју метеоролози користе за бележење брзине ветра.
 
 #: ../panel-plugin/weather-config.c:711
 msgid 
@@ -556,7 +553,7 @@ msgid 
 meteorology and in maritime and air navigation. A vessel travelling at 1 
 knot along a meridian travels one minute of geographic latitude in one hour.
 msgstr 
-Чвор је јединица брзине једнака међународној наутичкој миљи  (1.852 km) по 
+Чвор је јединица брзине једнака међународној наутичкој миљи (1.852 km) по 
 сату, или приближно 1.151 mph, и широко се примењује у метеорологији, 
 поморству и навигацији. Брод који путује 1 чвор дуж меридијана прелази један 
 минут географске ширине по једном сату.
@@ -618,9 +615,9 @@ msgid 
 msgstr 
 Стопа (foot, множина feet) је јединица мере дужине описана као тачно 

[Xfce4-commits] xfce4-weather-plugin:master l10n: Updated Korean (ko) translation to 95%

2013-01-25 Thread Transifex
Updating branch refs/heads/master
 to 2680f4d019363fe48624854289998b7af64baa2d (commit)
   from b3dd2537e302c8f1b62fe0e7d93075db2d75b67e (commit)

commit 2680f4d019363fe48624854289998b7af64baa2d
Author: Seong-ho Cho darkcircle.0...@gmail.com
Date:   Fri Jan 25 17:14:47 2013 +0100

l10n: Updated Korean (ko) translation to 95%

New status: 290 messages complete with 3 fuzzies and 11 untranslated.

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

 po/ko.po |  152 +-
 1 files changed, 91 insertions(+), 61 deletions(-)

diff --git a/po/ko.po b/po/ko.po
index 45134ae..1be7a38 100644
--- a/po/ko.po
+++ b/po/ko.po
@@ -8,7 +8,7 @@ msgstr 
 Project-Id-Version: xfce-weather-plugin.master\n
 Report-Msgid-Bugs-To: \n
 POT-Creation-Date: 2013-01-14 17:10+0100\n
-PO-Revision-Date: 2013-01-22 22:24+0900\n
+PO-Revision-Date: 2013-01-25 01:31+0900\n
 Last-Translator: Seong-ho Cho darkcircle.0...@gmail.com\n
 Language-Team: xfce-i18n xfce-i...@xfce.org\n
 Language: ko\n
@@ -49,7 +49,7 @@ msgstr 이슬점
 
 #: ../panel-plugin/weather.c:140
 msgid A
-msgstr 
+msgstr 겉보기 온도
 
 #: ../panel-plugin/weather.c:143
 msgid CL
@@ -82,20 +82,20 @@ msgstr 데이터 없음
 
 #: ../panel-plugin/weather.c:447
 msgid Met.no sunrise API states that this version of the webservice is 
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 
+msgstr Met.no sunrise API에서 이 버전의 웹서비스가 오래되었으며 플러그인을 새 버전에 맞출 필요가 있거나 몇 달 내로 
동작을 멈출 것임을 나타내고 있습니다. 아직 해결되지 않았다면 https://bugzilla.xfce.org에 버그를 제출해주시기 바랍니다.
 
 #: ../panel-plugin/weather.c:466
 msgid Error parsing astronomical data!
-msgstr 
+msgstr 천문 데이터를 해석하는데 오류!
 
 #: ../panel-plugin/weather.c:468
 #, c-format
 msgid Download of astronomical data failed with HTTP Status Code %d, Reason 
phrase: %s
-msgstr 
+msgstr HTTP 상태 코드 %d, 원인 구절 %s(으)로 인해 천문 데이터 다운로드에 실패했습니다
 
 #: ../panel-plugin/weather.c:503
 msgid Met.no LocationforecastLTS API states that this version of the 
webservice is 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 
+msgstr Met.no LocationforecastLTS API에서 이 버전의 웹서비스가 오래되었으며 플러그인을 새 버전에 맞출 필요가 
있거나 몇 달 내로 동작을 멈출 것임을 나타내고 있습니다. 아직 해결되지 않았다면 https://bugzilla.xfce.org에 버그를 
제출해주시기 바랍니다.
 
 #: ../panel-plugin/weather.c:521
 msgid Error parsing weather data!
@@ -104,7 +104,7 @@ msgstr 날씨 데이터 해석 중 오류!
 #: ../panel-plugin/weather.c:524
 #, c-format
 msgid Download of weather data failed with HTTP Status Code %d, Reason 
phrase: %s
-msgstr 
+msgstr HTTP 상태 코드 %d, 원인 구절 %s(으)로 인해 날씨 데이터 다운로드에 실패했습니다
 
 #: ../panel-plugin/weather.c:1366
 #, c-format
@@ -138,7 +138,7 @@ msgstr 해는 %s에 뜨고 %s에 집니다.
 #. * look at the verbose tooltip style further below ;-)
 #.
 #: ../panel-plugin/weather.c:1481
-#, fuzzy, c-format
+#, c-format
 msgid 
 bspan size=\large\%s/span/b span size=\medium\(%s)/span\n
 bspan size=\large\%s/span/b\n
@@ -150,14 +150,11 @@ msgid 
 msgstr 
 bspan size=\large\%1$s/span/b span size=\medium\(%2$s)/span\n
 bspan size=\large\%3$s/span/b\n
-span size=\smaller\%4$s부터 %5$s까지, 강수량 %6$s/span\n
 \n
-b기온:/b %7$s\t\tspan size=\smaller\(%8$s의 값)/span\n
-b바람:/b %11$s(%12$s)에서 %9$s (보포르 규모 단위 %10$s)\n
-b기압:/b %13$sb습도:/b %14$s\n
-b안개:/b %15$sb구름:/b %16$s\n
-\n
-span size=\smaller\%17$s/span
+b온도:/b %4$s\n
+b바람:/b %6$s 에서 %5$s(으)로\n
+b기압:/b %7$s\n
+b습도:/b %8$s\n
 
 #.
 #. * TRANSLATORS: Re-arrange and align at will, optionally using
@@ -168,7 +165,7 @@ msgstr 
 #. * good!
 #.
 #: ../panel-plugin/weather.c:1504
-#, fuzzy, c-format
+#, c-format
 msgid 
 bspan size=\large\%s/span/b span size=\medium\(%s)/span\n
 bspan size=\large\%s/span/b\n
@@ -188,7 +185,7 @@ msgstr 
 b기온:/b %7$s\t\tspan size=\smaller\(%8$s의 값)/span\n
 b바람:/b %11$s(%12$s)에서 %9$s (보포르 규모 단위 %10$s)\n
 b기압:/b %13$sb습도:/b %14$s\n
-b안개:/b %15$sb구름:/b %16$s\n
+b안개:/b %15$sb운량:/b %16$s\n
 \n
 span size=\smaller\%17$s/span
 
@@ -297,7 +294,7 @@ msgstr 지역 이름(_N):
 
 #: ../panel-plugin/weather-config.c:476
 msgid Change the name for the location to your liking. It is used for display 
and does not affect the location parameters in any way.
-msgstr 
+msgstr 여러분이 선호하는 지역에 대해 이름을 바꿉니다. 단지 표시하는데 사용하며 어떤 방법으로든 위치 매개변수에 영향을 주지 
않습니다.
 
 #: ../panel-plugin/weather-config.c:480
 msgid Chan_ge...
@@ -305,7 +302,7 @@ msgstr 바꾸기(_G)...
 
 #: ../panel-plugin/weather-config.c:483
 msgid Search for a new location and auto-detect its parameters.
-msgstr 
+msgstr 매개변수를 통해 새 위치를 검색하고 자동으로 감지합니다.
 
 #: ../panel-plugin/weather-config.c:502
 msgid Latitud_e:
@@ -313,7 +310,7 @@ msgstr 위도(_E):
 
 #: ../panel-plugin/weather-config.c:506
 msgid Latitude specifies the north-south position of a point on the Earth's 
surface. If you change this value manually, you 

[Xfce4-commits] xfce4-weather-plugin:master Config dialog: Shorten descriptions for wind speed units.

2013-01-25 Thread Harald Judt
Updating branch refs/heads/master
 to 690fbb915c7e87f935fca2a7cfe8120c2ae67161 (commit)
   from 2680f4d019363fe48624854289998b7af64baa2d (commit)

commit 690fbb915c7e87f935fca2a7cfe8120c2ae67161
Author: Harald Judt h.j...@gmx.at
Date:   Fri Jan 25 17:58:11 2013 +0100

Config dialog: Shorten descriptions for wind speed units.

Due to requests on the mailing list, I've shortened the descriptions
to contain only information relevant to the weather, which makes
them much easier to translate.

 panel-plugin/weather-config.c |   51 -
 1 files changed, 15 insertions(+), 36 deletions(-)

diff --git a/panel-plugin/weather-config.c b/panel-plugin/weather-config.c
index 20e14a2..66273a2 100644
--- a/panel-plugin/weather-config.c
+++ b/panel-plugin/weather-config.c
@@ -694,32 +694,21 @@ combo_unit_windspeed_set_tooltip(GtkWidget *combo)
 
 switch (value) {
 case KMH:
-text = _(Kilometer per hour is a unit of speed, expressing the number 

- of kilometers travelled in one hour. Worldwide, the km/h is 
- the most commonly used speed unit on road signs and car 
- speedometers. While meteorologists measure wind speed in 
- meters per second (m/s), wind speeds in TV or in the news 
- are often provided in km/h.);
+text = _(Wind speeds in TV or in the news are often provided in 
+ km/h.);
 break;
 case MPH:
 text = _(Miles per hour is an imperial unit of speed expressing the 
- number of statute miles covered in one hour. It is currently 

- the standard unit used for speed limits, and to express 
- speeds generally, on roads in the United Kingdom and the 
- United States.);
+ number of statute miles covered in one hour.);
 break;
 case MPS:
-text = _(Meter per second is a SI (International System of Units) 
- derived unit of both speed and velocity, defined by distance 

- in meters divided by time in seconds. This is the unit 
- meteorologists use to denote wind speeds.);
+text = _(Meter per second is ithe/i unit typically used by 
+ meteorologists to denote wind speeds.);
 break;
 case FTS:
-text = _(The foot per second (plural feet per second) is an imperial 
- unit of both speed and velocity. It expresses the distance 
in 
- feet traveled or displaced, divided by the time in seconds. 
- The corresponding unit in the International System of Units 
- is the meter per second.);
+text = _(The foot per second (pl. feet per second) in the imperial 
+ unit system is the counterpart to the meter per second in 
+ the International System of Units.);
 break;
 case KNOTS:
 text = _(The knot is a unit of speed equal to one international 
@@ -755,23 +744,16 @@ combo_unit_precipitations_set_tooltip(GtkWidget *combo)
 
 switch (value) {
 case MILLIMETERS:
-text = _(The meter is the fundamental unit of length in the 
- International System of Units. Originally intended 
- to be one ten-millionth of the distance from the Earth's 
- equator to the North Pole at sea level, its definition 
- has been periodically refined to reflect growing 
- knowledge of metrology (the science of measurement). 
- Since 1983, it has been defined as the length of the 
- path travelled by light in vacuum during a time interval 
- of 1/299,792,458 of a second. 1 millimeter is one 
- thousandth of a meter, or approximately 0.04 inches.);
+text = _(1 millimeter is one thousandth of a meter - the fundamental 
+ unit of length in the International System of Units -, or 
+ approximately 0.04 inches.);
 break;
 case INCHES:
 text = _(The English word iinch/i comes from Latin iuncia/i 
  meaning ione-twelfth part/i (in this case, one twelfth 
- of a foot). There have been many different standards of the 
- inch with varying sizes of measure. However, the current 
- internationally accepted value is exactly 25.4 
+ of a foot). In the past, there have been many different 
+ standards of the inch with varying sizes of measure, but 
+ the current internationally accepted value is exactly 25.4 
  millimeters.);
 break;
 }
@@ -805,10 +787,7 @@ combo_unit_altitude_set_tooltip(GtkWidget *combo)
  to be one ten-millionth of the distance from the Earth's 
  equator to the 

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

2013-01-25 Thread Transifex
Updating branch refs/heads/master
 to 5ce0575f81d4fb086978b8068aca34bebbc55edf (commit)
   from 969b882a7b9694b59ccf5568e889131747dcd827 (commit)

commit 5ce0575f81d4fb086978b8068aca34bebbc55edf
Author: Sergio Marques smarque...@gmail.com
Date:   Fri Jan 25 18:21:23 2013 +0100

l10n: Updated Portuguese (pt) translation to 100%

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

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

 po/pt.po |  361 +-
 1 files changed, 190 insertions(+), 171 deletions(-)

diff --git a/po/pt.po b/po/pt.po
index e737836..d2c1d6f 100644
--- a/po/pt.po
+++ b/po/pt.po
@@ -3,12 +3,12 @@
 # This file is distributed under the same license as the xfdesktop package.
 # Nuno Donato nunodon...@gmail.com, 2004.
 # Nuno Miguel nunom...@gmail.com, 2007-2012.
-#
+# 
 msgid 
 msgstr 
 Project-Id-Version: xfdesktop\n
 Report-Msgid-Bugs-To: \n
-POT-Creation-Date: 2012-04-14 09:36+\n
+POT-Creation-Date: 2013-01-25 15:00+\n
 PO-Revision-Date: 2012-04-27 19:40+0100\n
 Last-Translator: Nuno Miguel nunom...@gmail.com\n
 Language-Team: \n
@@ -19,14 +19,13 @@ msgstr 
 X-Poedit-Language: Portuguese\n
 X-Poedit-Country: PORTUGAL\n
 
-#: ../common/xfdesktop-common.c:96
-#: ../common/xfdesktop-common.c:200
+#: ../common/xfdesktop-common.c:96 ../common/xfdesktop-common.c:200
 #, c-format
 msgid Backdrop list file is not valid
 msgstr O ficheiro de lista de fundos é inválido
 
 #. no need to escape markup; it's already done for us
-#: ../settings/main.c:166
+#: ../settings/main.c:167
 #, c-format
 msgid 
 %s\n
@@ -35,128 +34,128 @@ msgstr 
 %s\n
 iTamanho: %dx%d/i
 
-#: ../settings/main.c:299
-#: ../src/xfdesktop-special-file-icon.c:271
+#: ../settings/main.c:300 ../src/xfdesktop-special-file-icon.c:271
 #: ../src/xfdesktop-special-file-icon.c:434
 msgid Home
 msgstr Pasta pessoal
 
-#: ../settings/main.c:301
+#: ../settings/main.c:302
 msgid Filesystem
 msgstr Sistema de ficheiros
 
-#: ../settings/main.c:303
+#: ../settings/main.c:304
 msgid Trash
 msgstr Lixo
 
-#: ../settings/main.c:305
+#: ../settings/main.c:306
 msgid Removable Devices
 msgstr Dispositivos amovíveis
 
-#: ../settings/main.c:485
+#: ../settings/main.c:486
 #, c-format
 msgid Cannot create backdrop list \%s\
 msgstr Não é possível criar a lista de fundos \%s\
 
-#: ../settings/main.c:489
-#: ../settings/main.c:862
+#: ../settings/main.c:490 ../settings/main.c:877
 msgid Backdrop List Error
 msgstr Erro na lista de fundos
 
-#: ../settings/main.c:514
+#: ../settings/main.c:515
 msgid Create/Load Backdrop List
 msgstr Criar/carregar lista de fundos
 
-#: ../settings/main.c:538
+#: ../settings/main.c:539
 #, c-format
-msgid File \%s\ is not a valid backdrop list file.  Do you wish to 
overwrite it?
-msgstr O ficheiro \%s\ não é um ficheiro de lista válido. Deseja 
substituí-lo?
+msgid 
+File \%s\ is not a valid backdrop list file.  Do you wish to overwrite it?
+msgstr 
+O ficheiro \%s\ não é um ficheiro de lista válido. Deseja substituí-lo?
 
-#: ../settings/main.c:543
+#: ../settings/main.c:544
 msgid Invalid List File
 msgstr O ficheiro da lista é inválido
 
-#: ../settings/main.c:546
+#: ../settings/main.c:547
 msgid Overwriting the file will cause its contents to be lost.
 msgstr Se substituir o ficheiro perderá o seu conteúdo.
 
-#: ../settings/main.c:548
+#: ../settings/main.c:549
 msgid Replace
 msgstr Substituir
 
-#: ../settings/main.c:858
+#: ../settings/main.c:873
 #, c-format
 msgid Failed to write backdrop list to \%s\
 msgstr Falha ao escrever a lista de fundos para \%s\
 
-#: ../settings/main.c:885
+#: ../settings/main.c:900
 msgid Add Image File(s)
 msgstr Adicionar ficheiro(s) de imagem
 
-#: ../settings/main.c:894
+#: ../settings/main.c:909
 msgid Image files
 msgstr Ficheiros de imagem
 
-#: ../settings/main.c:899
+#: ../settings/main.c:914
 msgid All files
 msgstr Todos os ficheiros
 
-#: ../settings/main.c:1356
+#: ../settings/main.c:1381
 #, c-format
 msgid Screen %d, Monitor %d (%s)
 msgstr Ecrã %d, Monitor %d (%s)
 
-#: ../settings/main.c:1360
+#: ../settings/main.c:1385
 #, c-format
 msgid Screen %d, Monitor %d
 msgstr Ecrã %d, Monitor %d
 
-#: ../settings/main.c:1363
+#: ../settings/main.c:1388
 #, c-format
 msgid Screen %d
 msgstr Ecrã %d
 
-#: ../settings/main.c:1368
+#: ../settings/main.c:1393
 #, c-format
 msgid Monitor %d (%s)
 msgstr Monitor %d (%s)
 
-#: ../settings/main.c:1372
+#: ../settings/main.c:1397
 #, c-format
 msgid Monitor %d
 msgstr Monitor %d
 
-#: ../settings/main.c:1631
+#: ../settings/main.c:1656
 msgid Settings manager socket
 msgstr Gestor de definições
 
-#: ../settings/main.c:1631
+#: ../settings/main.c:1656
 msgid SOCKET ID
 msgstr ID do SOCKET
 
-#: ../settings/main.c:1632
+#: ../settings/main.c:1657
 msgid Version information
 msgstr Informações de versão
 
-#: ../settings/main.c:1649
+#: ../settings/main.c:1674
 #, c-format
 msgid Type '%s --help' for usage.
 msgstr 

[Xfce4-commits] parole:master l10n: Updated Portuguese (pt) translation to 100%

2013-01-25 Thread Transifex
Updating branch refs/heads/master
 to a84453072d13f95752b30d1a896ee22251efd317 (commit)
   from fe6c456e36c1f9d3d774da7e88df94ae95d0504f (commit)

commit a84453072d13f95752b30d1a896ee22251efd317
Author: Sergio Marques smarque...@gmail.com
Date:   Fri Jan 25 18:22:36 2013 +0100

l10n: Updated Portuguese (pt) translation to 100%

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

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

 po/pt.po |  137 ++---
 1 files changed, 85 insertions(+), 52 deletions(-)

diff --git a/po/pt.po b/po/pt.po
index 75571b8..2a32d8d 100644
--- a/po/pt.po
+++ b/po/pt.po
@@ -6,7 +6,7 @@ msgid 
 msgstr 
 Project-Id-Version: parole\n
 Report-Msgid-Bugs-To: \n
-POT-Creation-Date: 2013-01-20 18:30+\n
+POT-Creation-Date: 2013-01-25 16:12+\n
 PO-Revision-Date: \n
 Last-Translator: Sérgio Marques smarque...@gmail.com\n
 Language-Team: Portuguese\n
@@ -70,96 +70,113 @@ msgstr A processar (0%)
 msgid Empty
 msgstr Vazio
 
-#: ../data/interfaces/parole.ui.h:13 ../src/parole-disc.c:110
+#: ../data/interfaces/parole.ui.h:13
+msgid Fullscreen
+msgstr Ecrã completo
+
+#: ../data/interfaces/parole.ui.h:14 ../src/parole-disc.c:110
 #: ../src/parole-disc.c:156
 msgid Insert Disc
 msgstr Insira o disco
 
-#: ../data/interfaces/parole.ui.h:14
+#: ../data/interfaces/parole.ui.h:15
 msgid Languages
 msgstr Idiomas
 
-#: ../data/interfaces/parole.ui.h:15
+#: ../data/interfaces/parole.ui.h:16
 msgid Media player
 msgstr Reprodutor multimédia
 
-#: ../data/interfaces/parole.ui.h:16
+#: ../data/interfaces/parole.ui.h:17
+msgid Next
+msgstr Seguinte
+
+#: ../data/interfaces/parole.ui.h:18
 msgid None
 msgstr Nenhum
 
-#: ../data/interfaces/parole.ui.h:17
+#: ../data/interfaces/parole.ui.h:19
 msgid Open Recent
 msgstr Abrir recente
 
-#: ../data/interfaces/parole.ui.h:18
+#: ../data/interfaces/parole.ui.h:20
 msgid Open _Location
 msgstr Abrir _localização
 
-#: ../data/interfaces/parole.ui.h:19 ../src/parole-about.c:68
+#: ../data/interfaces/parole.ui.h:21 ../src/parole-about.c:68
 msgid Parole Media Player
 msgstr Reprodutor multimédia Parole
 
-#: ../data/interfaces/parole.ui.h:20
+#: ../data/interfaces/parole.ui.h:22 ../src/parole-player.c:1398
+#: ../src/parole-player.c:1432
+msgid Play
+msgstr Reproduzir
+
+#: ../data/interfaces/parole.ui.h:23
 msgid Plugins
 msgstr Plugins
 
-#: ../data/interfaces/parole.ui.h:21
+#: ../data/interfaces/parole.ui.h:24
+msgid Previous
+msgstr Anterior
+
+#: ../data/interfaces/parole.ui.h:25
 msgid Select Text Subtitles...
 msgstr Esolha o texto das legendas...
 
-#: ../data/interfaces/parole.ui.h:22
+#: ../data/interfaces/parole.ui.h:26
 msgid Show _playlist
 msgstr Mostrar lista de re_produção
 
-#: ../data/interfaces/parole.ui.h:23
+#: ../data/interfaces/parole.ui.h:27
 msgid Square
 msgstr Quadrado
 
-#: ../data/interfaces/parole.ui.h:24
+#: ../data/interfaces/parole.ui.h:28
 msgid Subtitles
 msgstr Legendas
 
-#: ../data/interfaces/parole.ui.h:25
+#: ../data/interfaces/parole.ui.h:29
 msgid Subtitles:
 msgstr Legendas:
 
-#: ../data/interfaces/parole.ui.h:26
+#: ../data/interfaces/parole.ui.h:30
 msgid Volume _Down
 msgstr _Diminuir volume
 
-#: ../data/interfaces/parole.ui.h:27
+#: ../data/interfaces/parole.ui.h:31
 msgid Volume _Up
 msgstr A_umentar volume
 
-#: ../data/interfaces/parole.ui.h:28
+#: ../data/interfaces/parole.ui.h:32
 msgid _Aspect Ratio
 msgstr T_amanho do vídeo
 
-#: ../data/interfaces/parole.ui.h:29
+#: ../data/interfaces/parole.ui.h:33
 msgid _Edit
 msgstr _Editar
 
-#: ../data/interfaces/parole.ui.h:30
+#: ../data/interfaces/parole.ui.h:34
 msgid _Help
 msgstr Aj_uda
 
-#: ../data/interfaces/parole.ui.h:31
+#: ../data/interfaces/parole.ui.h:35
 msgid _Media
 msgstr _Multimédia
 
-#: ../data/interfaces/parole.ui.h:32
+#: ../data/interfaces/parole.ui.h:36
 msgid _Mute
 msgstr _Silenciar
 
-#: ../data/interfaces/parole.ui.h:33
+#: ../data/interfaces/parole.ui.h:37
 msgid _Repeat
 msgstr _Repetir
 
-#: ../data/interfaces/parole.ui.h:34
+#: ../data/interfaces/parole.ui.h:38
 msgid _Shuffle
 msgstr _Baralhar
 
-#: ../data/interfaces/parole.ui.h:35
+#: ../data/interfaces/parole.ui.h:39
 msgid _View
 msgstr _Ver
 
@@ -172,60 +189,72 @@ msgid _Open
 msgstr _Abrir
 
 #: ../data/interfaces/playlist.ui.h:1
+msgid Add…
+msgstr Adicionar...
+
+#: ../data/interfaces/playlist.ui.h:2
 msgid Angle Menu
 msgstr Menu ângulo
 
-#: ../data/interfaces/playlist.ui.h:2
+#: ../data/interfaces/playlist.ui.h:3
 msgid Audio Menu
 msgstr Menu áudio
 
-#: ../data/interfaces/playlist.ui.h:3
+#: ../data/interfaces/playlist.ui.h:4
 msgid Chapter Menu
 msgstr Menu de capítulos
 
-#: ../data/interfaces/playlist.ui.h:4
+#: ../data/interfaces/playlist.ui.h:5
 msgid Clear
 msgstr Limpar
 
-#: ../data/interfaces/playlist.ui.h:5
+#: ../data/interfaces/playlist.ui.h:6
 msgid DVD Menu
 msgstr Menu de DVD
 
-#: ../data/interfaces/playlist.ui.h:6
+#: 

[Xfce4-commits] xfce4-weather-plugin:master Config dialog: Set altitude to 0 when detection failed.

2013-01-25 Thread Harald Judt
Updating branch refs/heads/master
 to 5325e179a10517713a86fb579eaa8eee56fa3b8b (commit)
   from 690fbb915c7e87f935fca2a7cfe8120c2ae67161 (commit)

commit 5325e179a10517713a86fb579eaa8eee56fa3b8b
Author: Harald Judt h.j...@gmx.at
Date:   Fri Jan 25 19:10:34 2013 +0100

Config dialog: Set altitude to 0 when detection failed.

 panel-plugin/weather-config.c |   13 ++---
 1 files changed, 6 insertions(+), 7 deletions(-)

diff --git a/panel-plugin/weather-config.c b/panel-plugin/weather-config.c
index 66273a2..355c781 100644
--- a/panel-plugin/weather-config.c
+++ b/panel-plugin/weather-config.c
@@ -237,15 +237,14 @@ cb_lookup_altitude(SoupSession *session,
 
 if (altitude) {
 alt = string_to_double(altitude-altitude, -);
-weather_debug(Altitude returned by GeoNames: %.0f meters, alt);
-if (alt = -420) {
-if (dialog-pd-units-altitude == FEET)
-alt /= 0.3048;
-gtk_spin_button_set_value(GTK_SPIN_BUTTON(dialog-spin_alt),
-  alt);
-}
 xml_altitude_free(altitude);
 }
+weather_debug(Altitude returned by GeoNames: %.0f meters, alt);
+if (alt  -420)
+alt = 0;
+else if (dialog-pd-units-altitude == FEET)
+alt /= 0.3048;
+gtk_spin_button_set_value(GTK_SPIN_BUTTON(dialog-spin_alt), alt);
 }
 
 
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfce4-cellmodem-plugin:master l10n: Serbian translation

2013-01-25 Thread Transifex
Updating branch refs/heads/master
 to e6d0b16052b746a8f83f9ae1660f2a509be59d90 (commit)
   from 7c305d4352069e3e958d783a501cb0a25ecbb5ed (commit)

commit e6d0b16052b746a8f83f9ae1660f2a509be59d90
Author: Саша Петровић salepetron...@gmail.com
Date:   Fri Jan 25 19:52:45 2013 +0100

l10n: Serbian translation

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

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

 po/{lv.po = sr.po} |  119 +--
 1 files changed, 58 insertions(+), 61 deletions(-)

diff --git a/po/lv.po b/po/sr.po
similarity index 56%
copy from po/lv.po
copy to po/sr.po
index 9e8b65c..ed9cd90 100644
--- a/po/lv.po
+++ b/po/sr.po
@@ -1,26 +1,24 @@
-# Latvian translations for xfce4-cellmodem-plugin package.
 # Copyright (C) 2006 THE xfce4-cellmodem-plugin'S COPYRIGHT HOLDER
 # This file is distributed under the same license as the 
xfce4-cellmodem-plugin package.
+# Саша Петровић salepetron...@gmail.com, 2013.
 #
-# Rihards Prieditis rpriedi...@inbox.lv, 2007.
-# Rihards Prieditis rpriedi...@gmail.com, 2009.
 msgid 
 msgstr 
 Project-Id-Version: xfce4-cellmodem-plugin\n
 Report-Msgid-Bugs-To: \n
 POT-Creation-Date: 2008-07-22 19:01+0100\n
-PO-Revision-Date: 2009-09-18 21:37+0100\n
-Last-Translator: Rihards Prieditis rpriedi...@gmail.com\n
-Language-Team: Latvian translation-team...@lists.sourceforge.net\n
+PO-Revision-Date: 2013-01-25 19:27+0100\n
+Last-Translator:Саша Петровић salepetron...@gmail.com\n
+Language-Team:српски \n
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=UTF-8\n
 Content-Transfer-Encoding: 8bit\n
-Plural-Forms: nplurals=3; plural=n%10==1  n%100!=11 ? 0 : n != 0 ? 1 : 2;\n
-X-Generator: Lokalize 1.0\n
+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
 
 #: ../panel-plugin/cellmodem.c:482
 msgid Initializing plugin now
-msgstr Spraudņa inicializācija
+msgstr Покрећем прикључак сада
 
 #: ../panel-plugin/cellmodem.c:505
 #, c-format
@@ -28,20 +26,20 @@ msgid 
 Error detected:\n
 %s
 msgstr 
-Kļūda:\n
+Препознао сам грешку:\n
 %s
 
 #: ../panel-plugin/cellmodem.c:511
 msgid Not registered
-msgstr Nereģistrēts
+msgstr Није пријављен
 
 #: ../panel-plugin/cellmodem.c:514
 msgid Modem needs PIN
-msgstr Modēmam nepieciešams PIN
+msgstr Модем захтева PIN
 
 #: ../panel-plugin/cellmodem.c:517
 msgid Registering
-msgstr Reģistrēju
+msgstr Пријављивање
 
 #: ../panel-plugin/cellmodem.c:520
 #, c-format
@@ -49,8 +47,8 @@ msgid 
 Registered [GPRS] to %s\n
 Quality: %d (%d%%)
 msgstr 
-Reģistrēts [GPRS] uz %s\n
-Kvalitāte: %d (%d%%)
+Пријављен је [GPRS] на %s\n
+Квалитет: %d (%d%%)
 
 #: ../panel-plugin/cellmodem.c:523
 #, c-format
@@ -58,8 +56,8 @@ msgid 
 Registered [UMTS] to %s\n
 Quality: %d (%d%%)
 msgstr 
-Reģistrēts [UMTS] uz %s\n
-Kvalitāte:%d (%d%%)
+Пријављен је [UMTS] на %s\n
+Квалитет: %d (%d%%)
 
 #: ../panel-plugin/cellmodem.c:526
 #, c-format
@@ -67,8 +65,8 @@ msgid 
 Registered [HSDPA] to %s\n
 Quality: %d (%d%%)
 msgstr 
-Reģistrēts [HSDPA] uz %s\n
-Kvalitāte: %d (%d%%)
+Пријављен је [HSDPA] на %s\n
+Квалитет:%d (%d%%)
 
 #: ../panel-plugin/cellmodem.c:529
 #, c-format
@@ -76,166 +74,165 @@ msgid 
 Registered to %s\n
 Quality: %d (%d%%)
 msgstr 
-Reģistrēts uz %s\n
-Kvalitāte: %d (%d%%)
+Пријављен на %s\n
+Квалитет: %d (%d%%)
 
 #. Error
 #: ../panel-plugin/cellmodem.c:687
 msgid Error in modem reply to CREG
-msgstr Kļūda modēma CREG atbilde
+msgstr Грешка одговора модема на CREG
 
 #: ../panel-plugin/cellmodem.c:696
 msgid Invalid reply to +CREG
-msgstr Nederīga +CREG atbilde
+msgstr Неисправан одговор на +CREG
 
 #: ../panel-plugin/cellmodem.c:721
 msgid Invalid CREG reply from modem
-msgstr Nederīga +CREG atbilde no modēma
+msgstr Неисправан CREG одговор са модема
 
 #: ../panel-plugin/cellmodem.c:760
 msgid Error in modem reply to COPS
-msgstr Kļūda modēma COPS atbilde
+msgstr Грешка у одговору на COPS
 
 #: ../panel-plugin/cellmodem.c:816
 msgid Invalid COPS reply from modem
-msgstr Nederīga COPS atbilde no modēma
+msgstr Неисправан COPS одговор са модема
 
 #: ../panel-plugin/cellmodem.c:844
 msgid Error in modem reply to CPIN
-msgstr Kļūda modēma CPIN atbilde
+msgstr Грешка у одговору модема на CPIN
 
 #: ../panel-plugin/cellmodem.c:870
 msgid Invalid CPIN reply from modem
-msgstr Nederīga CPIN atbilde no modēma
+msgstr Неисправан CPIN одговор са модема
 
 #: ../panel-plugin/cellmodem.c:875
 msgid Unsupportted CPIN reply from modem
-msgstr Neatbalstīta CPIN atbilde no modēma
+msgstr Неподржан CPIN одговор са модема
 
 #: ../panel-plugin/cellmodem.c:919 ../panel-plugin/cellmodem.c:973
 msgid Invalid OHCIP reply from modem
-msgstr Nederīga OHCIP atbilde no modēma
+msgstr Неподржан OHCIP одговор са модема
 
 #: ../panel-plugin/cellmodem.c:923 ../panel-plugin/cellmodem.c:977
 msgid Unsupportted OHCIP reply from modem
-msgstr Neatbalstīta OHCIP atbilde no modēma
+msgstr Неподржан OHCIP одговор са модема
 
 #. 

[Xfce4-commits] xfce4-diskperf-plugin:master l10n: Serbian translations

2013-01-25 Thread Transifex
Updating branch refs/heads/master
 to b5a39c9fc5609607fefaa78e7a712eb5b3c4ac37 (commit)
   from f55c5baee337762404159cc82599cca88924f377 (commit)

commit b5a39c9fc5609607fefaa78e7a712eb5b3c4ac37
Author: Саша Петровић salepetron...@gmail.com
Date:   Fri Jan 25 20:48:49 2013 +0100

l10n: Serbian translations

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

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

 po/{lt.po = sr.po} |  126 ---
 1 files changed, 60 insertions(+), 66 deletions(-)

diff --git a/po/lt.po b/po/sr.po
similarity index 55%
copy from po/lt.po
copy to po/sr.po
index 571d940..58773a5 100644
--- a/po/lt.po
+++ b/po/sr.po
@@ -1,30 +1,28 @@
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR EMAIL@ADDRESS, YEAR.
-# Algimantas Margevičius margevicius.algiman...@gmail.com, 2012.
-# 
+# Copyright (C) 2007 Dmitry Nikitin
+# This file is distributed under the same license as the xfce4-diskperf-plugi 
package.
+# Саша Петровић salepetron...@gmail.com, 2013.
+#
 msgid 
 msgstr 
-Project-Id-Version: disk perf\n
+Project-Id-Version: master\n
 Report-Msgid-Bugs-To: \n
 POT-Creation-Date: 2012-05-04 16:57+0200\n
-PO-Revision-Date: 2012-04-21 13:00+0300\n
-Last-Translator: Algimantas Margevičius margevicius.algiman...@gmail.com\n
-Language-Team: Lietuvių \n
+PO-Revision-Date: 2013-01-25 20:47+0100\n
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=UTF-8\n
 Content-Transfer-Encoding: 8bit\n
-Language: \n
-Plural-Forms: nplurals=3; plural=(n%10==1  n%100!=11 ? 0 : n%10=2  
(n%10010 || n%100=20) ? 1 : 2)\n
+Last-Translator: Саша Петровић salepetron...@gmail.com\n
+Language-Team: српски \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
 
 #: ../panel-plugin/config_gui.c:101
 msgid Device
-msgstr Įrenginys
+msgstr Уређај
 
 #: ../panel-plugin/config_gui.c:115
 msgid Input the device name, then press Enter
-msgstr Įrašykite įrenginio vardą ir paspauskite Enter
+msgstr Унесите назив уређаја, затим притисните Врати
 
 #: ../panel-plugin/config_gui.c:118
 msgid /dev/sda1
@@ -32,23 +30,23 @@ msgstr /dev/sda1
 
 #: ../panel-plugin/config_gui.c:136
 msgid Data collection period
-msgstr Duomenų rinkimo periodas
+msgstr Учесталост сакупљања података
 
 #: ../panel-plugin/config_gui.c:139
 msgid Update interval (s) 
-msgstr Atnaujinimo intervalas
+msgstr Учесталост упита
 
 #: ../panel-plugin/config_gui.c:147
 msgid Label
-msgstr Antraštė
+msgstr Натпис
 
 #: ../panel-plugin/config_gui.c:152
 msgid Tick to display label
-msgstr Pažymėkite norėdami jog būtų rodoma antraštė
+msgstr Означи за приказ натписа
 
 #: ../panel-plugin/config_gui.c:161
 msgid Input the label, then press Enter
-msgstr Įrašykite antraštę ir paspauskite Enter
+msgstr Унесите натпис, затим притисните Врати
 
 #: ../panel-plugin/config_gui.c:163
 msgid hda1
@@ -56,33 +54,31 @@ msgstr hda1
 
 #: ../panel-plugin/config_gui.c:173
 msgid Monitor
-msgstr Stebėtojas
+msgstr Праћење
 
 #: ../panel-plugin/config_gui.c:178
 msgid I/O transfer
-msgstr I/O perdavimas
+msgstr У/И пренос
 
 #: ../panel-plugin/config_gui.c:181
 msgid MiB transferred / second
-msgstr perduota MB / per sekundę
+msgstr MiB пренесених / секунди
 
 #: ../panel-plugin/config_gui.c:187
 msgid Busy time
-msgstr Užimtumas
+msgstr Време заузећа
 
 #: ../panel-plugin/config_gui.c:191
 msgid Percentage of time the device is busy
-msgstr Kiek laiko(procentais) įrenginys užimtas
+msgstr Проценат времена заузећа диска
 
 #: ../panel-plugin/config_gui.c:202
 msgid Max. I/O rate (MiB/s) 
-msgstr Didž. I/O santykis (MB/s)
+msgstr Највећа У/И брзина (MiB/s) 
 
 #: ../panel-plugin/config_gui.c:213
 msgid Input the maximum I/O transfer rate of the device, then press Enter
-msgstr 
-Įveskite didžiausią šio įrenginio I/O perdavimo santykį ir paspauskite 
-Enter
+msgstr Унесите највећу У/И брзину преноса уређаја, затим притисните Врати
 
 #: ../panel-plugin/config_gui.c:216
 msgid 35
@@ -90,53 +86,53 @@ msgstr 35
 
 #: ../panel-plugin/config_gui.c:223
 msgid Combine Read/Write data
-msgstr Skaitymo/Rašymo duomenys kartu
+msgstr Обједини читање/упис података
 
 #: ../panel-plugin/config_gui.c:228
 msgid Combine Read/Write data into one single monitor?
-msgstr Rodyti Skaitymo/Rašymo duomenis vienoje stebyklėje?
+msgstr Обједини читање/упис података у једно праћење?
 
 #: ../panel-plugin/config_gui.c:235
 msgid Bar color 
-msgstr Juostos spalva
+msgstr Боја траке
 
 #: ../panel-plugin/config_gui.c:250 ../panel-plugin/config_gui.c:316
 #: ../panel-plugin/config_gui.c:325
 msgid Press to change color
-msgstr Paspauskite norėdami pakeisti spalvą
+msgstr Притисни за измену боје
 
 #: ../panel-plugin/config_gui.c:256
 msgid Read bar color 
-msgstr Skaitymo juostos spalva
+msgstr Боја траке читања
 
 #: 

[Xfce4-commits] gigolo:master l10n: Updated Slovenian (sl) translation to 99%

2013-01-25 Thread Transifex
Updating branch refs/heads/master
 to 47e3d31aa159ae237acd6ceb96766c28a4147fd5 (commit)
   from 6d7f25a45573b68391c97931933d775c40a4a7da (commit)

commit 47e3d31aa159ae237acd6ceb96766c28a4147fd5
Author: Uros Preloznik uro...@gmail.com
Date:   Fri Jan 25 21:56:37 2013 +0100

l10n: Updated Slovenian (sl) translation to 99%

New status: 141 messages complete with 0 fuzzies and 1 untranslated.

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

 po/sl.po |  100 ++---
 1 files changed, 49 insertions(+), 51 deletions(-)

diff --git a/po/sl.po b/po/sl.po
index 04fb8d4..1515b18 100644
--- a/po/sl.po
+++ b/po/sl.po
@@ -3,14 +3,13 @@
 # This file is distributed under the same license as the PACKAGE package.
 # FIRST AUTHOR EMAIL@ADDRESS, YEAR.
 #
-#, fuzzy
 msgid 
 msgstr 
 Project-Id-Version: PACKAGE VERSION\n
 Report-Msgid-Bugs-To: \n
-POT-Creation-Date: 2013-01-21 10:06+\n
-PO-Revision-Date: 2013-01-21 17:09+CET\n
-Last-Translator: Nenad Latinović nenadlatino...@lavabit.com\n
+POT-Creation-Date: 2013-01-25 15:45+\n
+PO-Revision-Date: 2013-01-25 21:46+0100\n
+Last-Translator: Nenad nenadlatino...@lavabit.com\n
 Language-Team: Slovenian\n
 Language: SL\n
 MIME-Version: 1.0\n
@@ -27,7 +26,7 @@ msgstr Ignoriraj zagnane predmete in vsili odprtje novega 
predmeta
 
 #: ../src/main.c:49
 msgid Print a list of supported URI schemes
-msgstr Natistni seznam podprtih URI shem
+msgstr Natisni seznam podprtih URI shem
 
 #: ../src/main.c:50
 msgid Be verbose
@@ -73,7 +72,8 @@ msgstr WebDAV
 msgid WebDAV (secure)
 msgstr WebDAV (varno)
 
-#: ../src/common.c:93 ../src/window.c:1508
+#: ../src/common.c:93
+#: ../src/window.c:1508
 msgid Network
 msgstr Omrežje
 
@@ -95,10 +95,8 @@ msgid Connecting to \%s\
 msgstr Povezujem z \%s\
 
 #: ../src/window.c:430
-msgid 
-A simple frontend to easily connect/mount to local and remote filesystems
-msgstr 
-Enostaven program za enostavno povezovanje/priklapljanje na lokalne in 
oddaljene datotečne sisteme
+msgid A simple frontend to easily connect/mount to local and remote 
filesystems
+msgstr Enostaven program za enostavno povezovanje/priklapljanje na lokalne in 
oddaljene datotečne sisteme
 
 #: ../src/window.c:431
 msgid Copyright 2008-2011 Enrico Tröger
@@ -112,15 +110,22 @@ msgstr nenadlatino...@lavabit.com
 msgid Gigolo can use the following protocols provided by GVfs:
 msgstr Gigolo lahko uporabi sledeče protokole, ki jih omogoča GVfs:
 
-#: ../src/window.c:579 ../src/window.c:638
+#: ../src/window.c:579
+#: ../src/window.c:638
 #, c-format
 msgid The command '%s' failed
 msgstr Ukaz '%s' je spodletel
 
-#: ../src/window.c:580 ../src/window.c:613 ../src/window.c:626
-#: ../src/window.c:639 ../src/window.c:797 ../src/bookmarkeditdialog.c:233
-#: ../src/bookmarkeditdialog.c:252 ../src/bookmarkeditdialog.c:265
-#: ../src/bookmarkeditdialog.c:276 ../src/bookmarkeditdialog.c:287
+#: ../src/window.c:580
+#: ../src/window.c:613
+#: ../src/window.c:626
+#: ../src/window.c:639
+#: ../src/window.c:797
+#: ../src/bookmarkeditdialog.c:233
+#: ../src/bookmarkeditdialog.c:252
+#: ../src/bookmarkeditdialog.c:265
+#: ../src/bookmarkeditdialog.c:276
+#: ../src/bookmarkeditdialog.c:287
 msgid Error
 msgstr Napaka
 
@@ -137,7 +142,9 @@ msgstr Ni nastavljene privzete lokacije za \%s\
 msgid Edit _Bookmark
 msgstr Uredi _zaznamek
 
-#: ../src/window.c:707 ../src/window.c:1289 ../src/browsenetworkpanel.c:453
+#: ../src/window.c:707
+#: ../src/window.c:1289
+#: ../src/browsenetworkpanel.c:453
 #: ../src/browsenetworkpanel.c:497
 msgid Create _Bookmark
 msgstr Ustvari _zaznamek
@@ -234,11 +241,13 @@ msgstr Izberi zaznamek za povezavo
 msgid Connected
 msgstr Povezan
 
-#: ../src/window.c:1421 ../src/bookmarkdialog.c:315
+#: ../src/window.c:1421
+#: ../src/bookmarkdialog.c:315
 msgid Service Type
 msgstr Vrsta storitve
 
-#: ../src/window.c:1429 ../src/bookmarkdialog.c:307
+#: ../src/window.c:1429
+#: ../src/bookmarkdialog.c:307
 msgid Name
 msgstr Ime
 
@@ -246,7 +255,9 @@ msgstr Ime
 msgid Bookmarks
 msgstr Zaznamki
 
-#: ../src/window.c:1556 ../src/window.c:1632 ../gigolo.desktop.in.h:2
+#: ../src/window.c:1556
+#: ../src/window.c:1632
+#: ../gigolo.desktop.in.h:2
 msgid Gigolo
 msgstr Gigolo
 
@@ -260,12 +271,8 @@ msgstr Gigolo mora premakniti vaše stare nastavitve 
preden začne.
 
 #: ../src/settings.c:703
 #, c-format
-msgid 
-Your old configuration directory \%s\ could not be moved to \%s\ (%s). 
-Please move manually the directory to the new location.
-msgstr 
-Vaš stari imenik nastavitev \%s\ ni bilo možno prestaviti v \%s\ (%s). 
-Prosim, ročno premaknite imenik na novo lokacijo.
+msgid Your old configuration directory \%s\ could not be moved to \%s\ 
(%s). Please move manually the directory to the new location.
+msgstr Vaš stari imenik nastavitev \%s\ ni bilo možno prestaviti v \%s\ 
(%s). Prosim, ročno premaknite imenik na novo lokacijo.
 
 #: ../src/settings.c:706
 msgid Warning
@@ -343,7 +350,8 

[Xfce4-commits] xfce4-panel:master Placing a clock widget (with frame) in a toggle button.

2013-01-25 Thread Andrzej
Updating branch refs/heads/master
 to eb7f419731ce953836def8d36650c967cc223298 (commit)
   from 2db0667c9c6bddb5b3b78b5a2c00a783b2330986 (commit)

commit eb7f419731ce953836def8d36650c967cc223298
Author: Andrzej ndrwr...@gmail.com
Date:   Mon Jan 21 00:10:24 2013 +

Placing a clock widget (with frame) in a toggle button.

A toggle button is used to trigger opening/closing of a calendar popup.
This is consistent with what other plugins do (e.g. app menu etc.).

This seems to work well with all clock widgets (digital, analog, etc.).

Had to rewire all events to the button, otherwise button's event handlers
were blocking them.

 plugins/clock/clock.c |   51 +++-
 1 files changed, 33 insertions(+), 18 deletions(-)

diff --git a/plugins/clock/clock.c b/plugins/clock/clock.c
index 85a9d76..aae6951 100644
--- a/plugins/clock/clock.c
+++ b/plugins/clock/clock.c
@@ -57,11 +57,14 @@ static void clock_plugin_set_property  
(GObject   *o
 const GValue  
*value,
 GParamSpec
*pspec);
 static gboolean clock_plugin_leave_notify_event(GtkWidget 
*widget,
-GdkEventCrossing  
*event);
+GdkEventCrossing  
*event,
+ClockPlugin   
*plugin);
 static gboolean clock_plugin_enter_notify_event(GtkWidget 
*widget,
-GdkEventCrossing  
*event);
+GdkEventCrossing  
*event,
+ClockPlugin   
*plugin);
 static gboolean clock_plugin_button_press_event(GtkWidget 
*widget,
-GdkEventButton
*event);
+GdkEventButton
*event,
+ClockPlugin   
*plugin);
 static void clock_plugin_construct (XfcePanelPlugin   
*panel_plugin);
 static void clock_plugin_free_data (XfcePanelPlugin   
*panel_plugin);
 static gboolean clock_plugin_size_changed  (XfcePanelPlugin   
*panel_plugin,
@@ -118,6 +121,7 @@ struct _ClockPlugin
   XfcePanelPlugin __parent__;
 
   GtkWidget  *clock;
+  GtkWidget  *button;
   GtkWidget  *frame;
 
   GtkWidget  *calendar_window;
@@ -189,18 +193,12 @@ static void
 clock_plugin_class_init (ClockPluginClass *klass)
 {
   GObjectClass *gobject_class;
-  GtkWidgetClass   *widget_class;
   XfcePanelPluginClass *plugin_class;
 
   gobject_class = G_OBJECT_CLASS (klass);
   gobject_class-set_property = clock_plugin_set_property;
   gobject_class-get_property = clock_plugin_get_property;
 
-  widget_class = GTK_WIDGET_CLASS (klass);
-  widget_class-leave_notify_event = clock_plugin_leave_notify_event;
-  widget_class-enter_notify_event = clock_plugin_enter_notify_event;
-  widget_class-button_press_event = clock_plugin_button_press_event;
-
   plugin_class = XFCE_PANEL_PLUGIN_CLASS (klass);
   plugin_class-construct = clock_plugin_construct;
   plugin_class-free_data = clock_plugin_free_data;
@@ -259,8 +257,23 @@ clock_plugin_init (ClockPlugin *plugin)
   plugin-command = NULL;
   plugin-rotate_vertically = TRUE;
 
+  plugin-button = xfce_panel_create_toggle_button ();
+  /* xfce_panel_plugin_add_action_widget (XFCE_PANEL_PLUGIN (plugin), 
plugin-button); */
+  gtk_container_add (GTK_CONTAINER (plugin), plugin-button);
+  gtk_widget_set_name (plugin-button, clock-button);
+  gtk_button_set_relief (GTK_BUTTON (plugin-button), GTK_RELIEF_NONE);
+  /* Have to handle all events in the button object rather than the plugin.
+   * Otherwise, default handlers will block the events. */
+  g_signal_connect (G_OBJECT (plugin-button), button-press-event,
+G_CALLBACK (clock_plugin_button_press_event), plugin);
+  g_signal_connect (G_OBJECT (plugin-button), enter-notify-event,
+G_CALLBACK (clock_plugin_enter_notify_event), plugin);
+  g_signal_connect (G_OBJECT (plugin-button), leave-notify-event,
+G_CALLBACK (clock_plugin_leave_notify_event), plugin);
+  gtk_widget_show (plugin-button);
+
   plugin-frame = gtk_frame_new (NULL);
-  gtk_container_add (GTK_CONTAINER (plugin), plugin-frame);
+  gtk_container_add (GTK_CONTAINER (plugin-button), plugin-frame);
   gtk_frame_set_shadow_type (GTK_FRAME (plugin-frame), GTK_SHADOW_ETCHED_IN);
   gtk_widget_show (plugin-frame);
 }
@@ -369,10 +382,9 @@ clock_plugin_set_property (GObject  

[Xfce4-commits] xfce4-panel:master Adding a possibility to close the calendar popup with Esc

2013-01-25 Thread Andrzej
Updating branch refs/heads/master
 to a672491a6d2d12264c7e2f823cdf271b7e3acf82 (commit)
   from eb7f419731ce953836def8d36650c967cc223298 (commit)

commit a672491a6d2d12264c7e2f823cdf271b7e3acf82
Author: Andrzej ndrwr...@gmail.com
Date:   Mon Jan 21 00:12:07 2013 +

Adding a possibility to close the calendar popup with Esc

Calendar popup can be closed with an Escape key, provided it
has a keyboard focus.

 plugins/clock/clock.c |   24 +++-
 1 files changed, 23 insertions(+), 1 deletions(-)

diff --git a/plugins/clock/clock.c b/plugins/clock/clock.c
index aae6951..46169bf 100644
--- a/plugins/clock/clock.c
+++ b/plugins/clock/clock.c
@@ -28,6 +28,7 @@
 #include math.h
 #endif
 
+#include gdk/gdkkeysyms.h
 #include gtk/gtk.h
 #include exo/exo.h
 #include libxfce4ui/libxfce4ui.h
@@ -76,7 +77,10 @@ static void clock_plugin_screen_position_changed   
(XfcePanelPlugin   *p
 XfceScreenPosition 
position);
 static void clock_plugin_configure_plugin  (XfcePanelPlugin   
*panel_plugin);
 static void clock_plugin_set_mode  (ClockPlugin   
*plugin);
-static void clock_plugin_reposition_calendar   (ClockPlugin  
*plugin);
+static void clock_plugin_reposition_calendar   (ClockPlugin   
*plugin);
+static gboolean clock_plugin_calendar_key_press_event  (GtkWidget 
*calendar_window,
+GdkEventKey   
*event,
+ClockPlugin   
*plugin);
 static void clock_plugin_popup_calendar(ClockPlugin   
*plugin);
 static void clock_plugin_hide_calendar (ClockPlugin   
*plugin);
 static gboolean clock_plugin_tooltip   (gpointer   
user_data);
@@ -975,6 +979,22 @@ clock_plugin_calendar_show_event (GtkWidget   
*calendar_window,
 
 
 
+static gboolean
+clock_plugin_calendar_key_press_event (GtkWidget  *calendar_window,
+   GdkEventKey*event,
+   ClockPlugin*plugin)
+{
+  if (event-type == GDK_KEY_PRESS  event-keyval == GDK_KEY_Escape)
+{
+  clock_plugin_hide_calendar (plugin);
+  return TRUE;
+}
+
+  return FALSE;
+}
+
+
+
 static void
 clock_plugin_popup_calendar (ClockPlugin *plugin)
 {
@@ -1004,6 +1024,8 @@ clock_plugin_popup_calendar (ClockPlugin *plugin)
 | GTK_CALENDAR_SHOW_WEEK_NUMBERS);
   g_signal_connect (G_OBJECT (plugin-calendar_window), show,
 G_CALLBACK (clock_plugin_calendar_show_event), plugin);
+  g_signal_connect (G_OBJECT (plugin-calendar_window), key-press-event,
+G_CALLBACK (clock_plugin_calendar_key_press_event), 
plugin);
   gtk_container_add (GTK_CONTAINER (calendar_frame), plugin-calendar);
   gtk_widget_show (plugin-calendar);
 }
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfce4-panel:master Removed frame object and all references to it.

2013-01-25 Thread Andrzej
Updating branch refs/heads/master
 to 422239beb277a6e534e25bcf627470ce552a4918 (commit)
   from a672491a6d2d12264c7e2f823cdf271b7e3acf82 (commit)

commit 422239beb277a6e534e25bcf627470ce552a4918
Author: Andrzej ndrwr...@gmail.com
Date:   Mon Jan 21 00:27:47 2013 +

Removed frame object and all references to it.

A frame looks bad inside a button and adds unnecessary padding
(on top of what the button has added).

The show-frame property is left unchanged but is nonfunctional.

 plugins/clock/clock.c |   21 +++--
 1 files changed, 3 insertions(+), 18 deletions(-)

diff --git a/plugins/clock/clock.c b/plugins/clock/clock.c
index 46169bf..b81af43 100644
--- a/plugins/clock/clock.c
+++ b/plugins/clock/clock.c
@@ -126,7 +126,6 @@ struct _ClockPlugin
 
   GtkWidget  *clock;
   GtkWidget  *button;
-  GtkWidget  *frame;
 
   GtkWidget  *calendar_window;
   GtkWidget  *calendar;
@@ -275,11 +274,6 @@ clock_plugin_init (ClockPlugin *plugin)
   g_signal_connect (G_OBJECT (plugin-button), leave-notify-event,
 G_CALLBACK (clock_plugin_leave_notify_event), plugin);
   gtk_widget_show (plugin-button);
-
-  plugin-frame = gtk_frame_new (NULL);
-  gtk_container_add (GTK_CONTAINER (plugin-button), plugin-frame);
-  gtk_frame_set_shadow_type (GTK_FRAME (plugin-frame), GTK_SHADOW_ETCHED_IN);
-  gtk_widget_show (plugin-frame);
 }
 
 
@@ -347,8 +341,6 @@ clock_plugin_set_property (GObject  *object,
   if (plugin-show_frame != show_frame)
 {
   plugin-show_frame = show_frame;
-  gtk_frame_set_shadow_type (GTK_FRAME (plugin-frame),
-  show_frame ? GTK_SHADOW_ETCHED_IN : GTK_SHADOW_NONE);
 }
   break;
 
@@ -517,24 +509,17 @@ clock_plugin_size_changed (XfcePanelPlugin *panel_plugin,
   ClockPlugin *plugin = XFCE_CLOCK_PLUGIN (panel_plugin);
   gdouble  ratio;
   gint ratio_size;
-  gint border = 0;
   gint offset;
 
   if (plugin-clock == NULL)
 return TRUE;
 
-  /* set the frame border */
-  if (plugin-show_frame  size  26)
-border = 1;
-  gtk_container_set_border_width (GTK_CONTAINER (plugin-frame), border);
-
   /* get the width:height ratio */
   g_object_get (G_OBJECT (plugin-clock), size-ratio, ratio, NULL);
   if (ratio  0)
 {
-  offset = MAX (plugin-frame-style-xthickness, 
plugin-frame-style-ythickness) + border;
-  offset *= 2;
-  ratio_size = size - offset;
+  ratio_size = size;
+  offset = 0;
 }
   else
 {
@@ -941,7 +926,7 @@ clock_plugin_set_mode (ClockPlugin *plugin)
  xfce_panel_plugin_get_property_base 
(XFCE_PANEL_PLUGIN (plugin)),
  properties[plugin-mode], FALSE);
 
-  gtk_container_add (GTK_CONTAINER (plugin-frame), plugin-clock);
+  gtk_container_add (GTK_CONTAINER (plugin-button), plugin-clock);
 
   gtk_widget_show (plugin-clock);
 }
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfce4-panel:master Removed show-frame property.

2013-01-25 Thread Andrzej
Updating branch refs/heads/master
 to 3d96560710786462f56f0c0d6a888922794d5a6a (commit)
   from 422239beb277a6e534e25bcf627470ce552a4918 (commit)

commit 3d96560710786462f56f0c0d6a888922794d5a6a
Author: Andrzej ndrwr...@gmail.com
Date:   Mon Jan 21 00:38:55 2013 +

Removed show-frame property.

 plugins/clock/clock-dialog.glade |   15 ---
 plugins/clock/clock.c|   28 
 2 files changed, 0 insertions(+), 43 deletions(-)

diff --git a/plugins/clock/clock-dialog.glade b/plugins/clock/clock-dialog.glade
index 68e9639..ea9c5a4 100644
--- a/plugins/clock/clock-dialog.glade
+++ b/plugins/clock/clock-dialog.glade
@@ -101,21 +101,6 @@
   /packing
 /child
 child
-  object class=GtkCheckButton id=show-frame
-property name=label translatable=yesShow 
_frame/property
-property name=visibleTrue/property
-property name=can_focusTrue/property
-property name=receives_defaultFalse/property
-property name=use_underlineTrue/property
-property name=draw_indicatorTrue/property
-  /object
-  packing
-property name=right_attach2/property
-property name=top_attach3/property
-property name=bottom_attach4/property
-  /packing
-/child
-child
   object class=GtkEntry id=tooltip-format
 property name=visibleTrue/property
 property name=can_focusTrue/property
diff --git a/plugins/clock/clock.c b/plugins/clock/clock.c
index b81af43..1022910 100644
--- a/plugins/clock/clock.c
+++ b/plugins/clock/clock.c
@@ -94,7 +94,6 @@ enum
 {
   PROP_0,
   PROP_MODE,
-  PROP_SHOW_FRAME,
   PROP_TOOLTIP_FORMAT,
   PROP_COMMAND,
   PROP_ROTATE_VERTICALLY
@@ -130,7 +129,6 @@ struct _ClockPlugin
   GtkWidget  *calendar_window;
   GtkWidget  *calendar;
 
-  guint   show_frame : 1;
   gchar  *command;
   ClockPluginMode mode;
   guint   rotate_vertically : 1;
@@ -220,13 +218,6 @@ clock_plugin_class_init (ClockPluginClass *klass)
   EXO_PARAM_READWRITE));
 
   g_object_class_install_property (gobject_class,
-   PROP_SHOW_FRAME,
-   g_param_spec_boolean (show-frame,
- NULL, NULL,
- TRUE,
- EXO_PARAM_READWRITE));
-
-  g_object_class_install_property (gobject_class,
PROP_TOOLTIP_FORMAT,
g_param_spec_string (tooltip-format,
 NULL, NULL,
@@ -254,7 +245,6 @@ clock_plugin_init (ClockPlugin *plugin)
 {
   plugin-mode = CLOCK_PLUGIN_MODE_DEFAULT;
   plugin-clock = NULL;
-  plugin-show_frame = TRUE;
   plugin-tooltip_format = g_strdup (DEFAULT_TOOLTIP_FORMAT);
   plugin-tooltip_timeout = NULL;
   plugin-command = NULL;
@@ -292,10 +282,6 @@ clock_plugin_get_property (GObject*object,
   g_value_set_uint (value, plugin-mode);
   break;
 
-case PROP_SHOW_FRAME:
-  g_value_set_boolean (value, plugin-show_frame);
-  break;
-
 case PROP_TOOLTIP_FORMAT:
   g_value_set_string (value, plugin-tooltip_format);
   break;
@@ -323,7 +309,6 @@ clock_plugin_set_property (GObject  *object,
GParamSpec   *pspec)
 {
   ClockPlugin *plugin = XFCE_CLOCK_PLUGIN (object);
-  gboolean show_frame;
   gboolean rotate_vertically;
 
   switch (prop_id)
@@ -336,14 +321,6 @@ clock_plugin_set_property (GObject  *object,
 }
   break;
 
-case PROP_SHOW_FRAME:
-  show_frame = g_value_get_boolean (value);
-  if (plugin-show_frame != show_frame)
-{
-  plugin-show_frame = show_frame;
-}
-  break;
-
 case PROP_TOOLTIP_FORMAT:
   g_free (plugin-tooltip_format);
   plugin-tooltip_format = g_value_dup_string (value);
@@ -463,7 +440,6 @@ clock_plugin_construct (XfcePanelPlugin *panel_plugin)
   const PanelProperty  properties[] =
   {
 { mode, G_TYPE_UINT },
-{ show-frame, G_TYPE_BOOLEAN },
 { tooltip-format, G_TYPE_STRING },
 { command, G_TYPE_STRING },
 { rotate-vertically, G_TYPE_BOOLEAN },
@@ -832,10 +808,6 @@ clock_plugin_configure_plugin (XfcePanelPlugin 
*panel_plugin)
   exo_mutual_binding_new (G_OBJECT (plugin), mode,
   G_OBJECT (object), active);
 
- 

[Xfce4-commits] xfce4-panel:master Merge branch 'andrzejr/clock'

2013-01-25 Thread Andrzej
Updating branch refs/heads/master
 to 6ae92167e2d971e841eba9724c159c554849a822 (commit)
   from 4a04a2f8cbf166147d632126408288fc58979c7b (commit)

commit 6ae92167e2d971e841eba9724c159c554849a822
Merge: 4a04a2f 3d96560
Author: Andrzej ndrwr...@gmail.com
Date:   Fri Jan 25 21:38:04 2013 +

Merge branch 'andrzejr/clock'

commit 3d96560710786462f56f0c0d6a888922794d5a6a
Author: Andrzej ndrwr...@gmail.com
Date:   Mon Jan 21 00:38:55 2013 +

Removed show-frame property.

commit 422239beb277a6e534e25bcf627470ce552a4918
Author: Andrzej ndrwr...@gmail.com
Date:   Mon Jan 21 00:27:47 2013 +

Removed frame object and all references to it.

A frame looks bad inside a button and adds unnecessary padding
(on top of what the button has added).

The show-frame property is left unchanged but is nonfunctional.

commit a672491a6d2d12264c7e2f823cdf271b7e3acf82
Author: Andrzej ndrwr...@gmail.com
Date:   Mon Jan 21 00:12:07 2013 +

Adding a possibility to close the calendar popup with Esc

Calendar popup can be closed with an Escape key, provided it
has a keyboard focus.

commit eb7f419731ce953836def8d36650c967cc223298
Author: Andrzej ndrwr...@gmail.com
Date:   Mon Jan 21 00:10:24 2013 +

Placing a clock widget (with frame) in a toggle button.

A toggle button is used to trigger opening/closing of a calendar popup.
This is consistent with what other plugins do (e.g. app menu etc.).

This seems to work well with all clock widgets (digital, analog, etc.).

Had to rewire all events to the button, otherwise button's event handlers
were blocking them.

 plugins/clock/clock-dialog.glade |   15 -
 plugins/clock/clock.c|  120 ++
 2 files changed, 57 insertions(+), 78 deletions(-)

diff --git a/plugins/clock/clock-dialog.glade b/plugins/clock/clock-dialog.glade
index 68e9639..ea9c5a4 100644
--- a/plugins/clock/clock-dialog.glade
+++ b/plugins/clock/clock-dialog.glade
@@ -101,21 +101,6 @@
   /packing
 /child
 child
-  object class=GtkCheckButton id=show-frame
-property name=label translatable=yesShow 
_frame/property
-property name=visibleTrue/property
-property name=can_focusTrue/property
-property name=receives_defaultFalse/property
-property name=use_underlineTrue/property
-property name=draw_indicatorTrue/property
-  /object
-  packing
-property name=right_attach2/property
-property name=top_attach3/property
-property name=bottom_attach4/property
-  /packing
-/child
-child
   object class=GtkEntry id=tooltip-format
 property name=visibleTrue/property
 property name=can_focusTrue/property
diff --git a/plugins/clock/clock.c b/plugins/clock/clock.c
index 85a9d76..1022910 100644
--- a/plugins/clock/clock.c
+++ b/plugins/clock/clock.c
@@ -28,6 +28,7 @@
 #include math.h
 #endif
 
+#include gdk/gdkkeysyms.h
 #include gtk/gtk.h
 #include exo/exo.h
 #include libxfce4ui/libxfce4ui.h
@@ -57,11 +58,14 @@ static void clock_plugin_set_property  
(GObject   *o
 const GValue  
*value,
 GParamSpec
*pspec);
 static gboolean clock_plugin_leave_notify_event(GtkWidget 
*widget,
-GdkEventCrossing  
*event);
+GdkEventCrossing  
*event,
+ClockPlugin   
*plugin);
 static gboolean clock_plugin_enter_notify_event(GtkWidget 
*widget,
-GdkEventCrossing  
*event);
+GdkEventCrossing  
*event,
+ClockPlugin   
*plugin);
 static gboolean clock_plugin_button_press_event(GtkWidget 
*widget,
-GdkEventButton
*event);
+GdkEventButton
*event,
+ClockPlugin   
*plugin);
 static void clock_plugin_construct (XfcePanelPlugin   
*panel_plugin);
 static void clock_plugin_free_data  

[Xfce4-commits] xfce4-panel:andrzejr/clock Deleting branch andrzejr/clock

2013-01-25 Thread well, not really
Deleting branch refs/heads/andrzejr/clock

___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfce4-terminal:master l10n: Updated Hebrew (he) translation to 54%

2013-01-25 Thread Transifex
Updating branch refs/heads/master
 to deb5f37c0f4ab39c006a9b7fec927c980e0007c6 (commit)
   from 35c39d448dae68bab126fa8c4c79fa9689ccbd1c (commit)

commit deb5f37c0f4ab39c006a9b7fec927c980e0007c6
Author: nick vurgaft slipperyg...@gmail.com
Date:   Fri Jan 25 23:02:58 2013 +0100

l10n: Updated Hebrew (he) translation to 54%

New status: 154 messages complete with 76 fuzzies and 52 untranslated.

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

 po/he.po |  729 +++---
 1 files changed, 368 insertions(+), 361 deletions(-)

diff --git a/po/he.po b/po/he.po
index 2ed1db7..1391dbb 100644
--- a/po/he.po
+++ b/po/he.po
@@ -2,46 +2,47 @@
 # Hebrew translations for Terminal package.
 # Copyright (C) 2003-2006 os-cillation e.K.
 # This file is distributed under the same license as the Terminal package.
-#
 # Dotan Kamber kamb...@yahoo.com, 2004, 2005, 2006.
 # Yuval Tanny ta...@int.gov.il, 2005, 2006.
+# koby vurgaft slipperyg...@gmail.com, 2013.
 msgid 
 msgstr 
 Project-Id-Version: Terminal 0.2.10\n
 Report-Msgid-Bugs-To: \n
-POT-Creation-Date: 2013-01-03 19:33+0100\n
-PO-Revision-Date: 2008-04-29 20:44+0200\n
-Last-Translator: Dotan Kamber kamb...@yahoo.com\n
-Language-Team: Hebrew\n
-Language: \n
+POT-Creation-Date: 2013-01-22 19:00+\n
+PO-Revision-Date: 2013-01-25 23:12+0300\n
+Last-Translator: koby vurgaft slipperyg...@gmail.com\n
+Language-Team: גזר\n
+Language: he\n
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=UTF-8\n
 Content-Transfer-Encoding: 8bit\n
-X-Generator: KBabel 1.11.4\n
+Plural-Forms: nplurals=2; plural=(n != 1);\n
+X-Generator: Virtaal 0.7.1\n
 
 #: ../colorschemes/black-on-white.theme.in.h:1
 msgid Black on White
-msgstr 
+msgstr שחור על גבי לבן
 
 #: ../colorschemes/dark-pastels.theme.in.h:1
 msgid Dark Pastels
-msgstr 
+msgstr פסטלים כהים
 
 #: ../colorschemes/green-on-black.theme.in.h:1
 msgid Green on Black
-msgstr 
+msgstr ירוק על גבי שחור
 
 #: ../colorschemes/solarized-dark.theme.in.h:1
 msgid Solarized
-msgstr 
+msgstr מכת שמש
 
 #: ../colorschemes/tango.theme.in.h:1
 msgid Tango
-msgstr 
+msgstr טנגו
 
 #: ../colorschemes/white-on-black.theme.in.h:1
 msgid White on Black
-msgstr 
+msgstr לבן על גבי שחור
 
 #: ../colorschemes/xterm.theme.in.h:1
 #, fuzzy
@@ -54,7 +55,7 @@ msgstr 
 
 #: ../terminal/main.c:104
 msgid OPTION
-msgstr 
+msgstr אפשרות
 
 #: ../terminal/main.c:109
 #, fuzzy
@@ -127,27 +128,27 @@ msgstr פעולה
 msgid See the %s man page for full explanation of the options above.
 msgstr 
 
-#: ../terminal/main.c:180 ../xfce4-terminal.desktop.in.h:1
+#: ../terminal/main.c:180 ../xfce4-terminal.desktop.in.h:2
 #, fuzzy
 msgid Xfce Terminal
 msgstr פתח מסוף
 
 #: ../terminal/main.c:196
 msgid The Xfce development team. All rights reserved.
-msgstr 
+msgstr צוות הפיתוח של Xfce. כל הזכויות שמורות.
 
 #: ../terminal/main.c:197
 msgid Written by Benedikt Meurer be...@xfce.org
-msgstr 
+msgstr נכתב על ידי בנדיקט מוירר (Benedikt Meurer)‏ be...@xfce.org
 
 #: ../terminal/main.c:198
 msgid and Nick Schermer n...@xfce.org.
-msgstr 
+msgstr ועל ידי ניק שרמר n...@xfce.org.
 
 #: ../terminal/main.c:199
 #, c-format
 msgid Please report bugs to %s.
-msgstr 
+msgstr נא לדווח על באגים אל %s.
 
 #: ../terminal/main.c:302
 #, c-format
@@ -221,7 +222,7 @@ msgstr 
 
 #: ../terminal/terminal-encoding-action.c:85
 msgid Unicode
-msgstr 
+msgstr יוניקוד
 
 #: ../terminal/terminal-encoding-action.c:86
 #, fuzzy
@@ -233,7 +234,7 @@ msgstr אחר...
 #: ../terminal/terminal-encoding-action.c:386
 #, c-format
 msgid Default (%s)
-msgstr 
+msgstr ברירת מחדל (%S)
 
 #: ../terminal/terminal-gdbus.c:80
 msgid User id mismatch
@@ -250,8 +251,8 @@ msgid 
 Option \--default-display\ requires specifying the default X display as 
 its parameter
 msgstr 
-Option \--default-display\ requires specifying the default X display as 
-its parameter
+Option \--default-display\ requires specifying the default X display as its 

+parameter
 
 #: ../terminal/terminal-options.c:228
 #, c-format
@@ -380,7 +381,7 @@ msgstr סגור כרטיסייה זו
 
 #: ../terminal/terminal-search-dialog.c:90
 msgid Find
-msgstr 
+msgstr מצא
 
 #: ../terminal/terminal-search-dialog.c:95
 #, fuzzy
@@ -544,7 +545,7 @@ msgstr הדבק _בחירה
 
 #: ../terminal/terminal-window.c:206
 msgid Select _All
-msgstr 
+msgstr בחר _הכל
 
 #: ../terminal/terminal-window.c:207
 msgid Pr_eferences...
@@ -568,12 +569,14 @@ msgid _Set Title...
 msgstr הגדר _כותרת
 
 #: ../terminal/terminal-window.c:211
+#, fuzzy
 msgid _Find...
-msgstr 
+msgstr _מצא...
 
 #: ../terminal/terminal-window.c:212
+#, fuzzy
 msgid Find Ne_xt
-msgstr 
+msgstr מצא ה_בא
 
 #: ../terminal/terminal-window.c:213
 #, fuzzy
@@ -591,7 +594,7 @@ msgstr גלול _לאחור:
 
 #: ../terminal/terminal-window.c:216
 msgid T_abs
-msgstr 
+msgstr ל_שוניות
 
 #: ../terminal/terminal-window.c:217
 msgid _Previous Tab
@@ -610,12 +613,13 @@ msgid Switch to next tab
 msgstr דלג לכרטיסייה הבאה
 
 #: 

[Xfce4-commits] xfburn:master l10n: Updated Hebrew (he) translation to 50%

2013-01-25 Thread Transifex
Updating branch refs/heads/master
 to 26657b61db34860c51759260ad6152a5f429c01b (commit)
   from 92cb0139ff55e74ff2c2a7cf32088eed4157c5bd (commit)

commit 26657b61db34860c51759260ad6152a5f429c01b
Author: nick vurgaft slipperyg...@gmail.com
Date:   Fri Jan 25 23:03:43 2013 +0100

l10n: Updated Hebrew (he) translation to 50%

New status: 141 messages complete with 53 fuzzies and 88 untranslated.

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

 po/he.po |   87 -
 1 files changed, 40 insertions(+), 47 deletions(-)

diff --git a/po/he.po b/po/he.po
index cdef327..7f738b0 100644
--- a/po/he.po
+++ b/po/he.po
@@ -1,22 +1,23 @@
 # translation of he.po to Hebrew
 # This file is distributed under the same license as the PACKAGE package.
 # Copyright (C) 2005-2006 Jean-François Wauthy.
-# 
 # Dotan Kamber kamb...@yahoo.com, 2006.
 # Yuval Tanny ta...@int.gov.il, 2006, 2007.
+# koby vurgaft slipperyg...@gmail.com, 2013.
 msgid 
 msgstr 
 Project-Id-Version: he\n
 Report-Msgid-Bugs-To: \n
-POT-Creation-Date: 2012-12-11 05:51+\n
-PO-Revision-Date: 2007-01-19 14:29+0200\n
-Last-Translator: Yuval Tanny ta...@int.gov.il\n
-Language-Team: Hebrew\n
+POT-Creation-Date: 2013-01-25 17:15+\n
+PO-Revision-Date: 2013-01-26 00:02+0300\n
+Last-Translator: koby vurgaft slipperyg...@gmail.com\n
+Language-Team: גזר\n
+Language: he\n
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=UTF-8\n
 Content-Transfer-Encoding: 8bit\n
-Language: \n
-X-Generator: KBabel 1.11.4\n
+Plural-Forms: nplurals=2; plural=(n != 1);\n
+X-Generator: Virtaal 0.7.1\n
 
 #: ../xfburn/xfburn-adding-progress.c:111
 msgid Adding files to the composition
@@ -93,8 +94,7 @@ msgstr הוצא _תקליטור
 msgid _Blank
 msgstr _מחיקה
 
-#. blanking can only be performed on blank discs, format and deformat are
-#. allowed to be blank ones
+#. blanking can only be performed on blank discs, format and deformat are 
allowed to be blank ones
 #: ../xfburn/xfburn-blank-dialog.c:356
 msgid The inserted disc is already blank.
 msgstr התקליטור שהוכנס כבר ריק.
@@ -258,7 +258,7 @@ msgstr 
 
 #: ../xfburn/xfburn-burn-image-dialog.c:356
 msgid Cannot open image.
-msgstr 
+msgstr לא ניתן לפתוח תמונה.
 
 #: ../xfburn/xfburn-burn-image-dialog.c:393
 #, fuzzy
@@ -406,8 +406,7 @@ msgstr נקה
 msgid Clear the content of the composition
 msgstr נקה את תוכן הפרויקט
 
-#. {import-session, xfburn-import-session, N_(Import), NULL, N_(Import
-#. existing session),},
+#. {import-session, xfburn-import-session, N_(Import), NULL, N_(Import 
existing session),},
 #: ../xfburn/xfburn-data-composition.c:198
 msgid Rename
 msgstr שנה שם
@@ -457,8 +456,7 @@ msgstr ספריה חדשה
 msgid File(s) to add to composition
 msgstr הוסף קבצים לפרויקט
 
-#. Note to translators: first %s is the date in i18n format (year-month-
-#. day), %d is a running number of compositions
+#. Note to translators: first %s is the date in i18n format 
(year-month-day), %d is a running number of compositions
 #: ../xfburn/xfburn-data-composition.c:1041
 #, c-format
 msgid Data %s~%d
@@ -580,11 +578,11 @@ msgstr 
 
 #: ../xfburn/xfburn-device-box.c:590
 msgid Drive can't burn on the inserted disc
-msgstr 
+msgstr הכונן אינו מסוגל לצרוב על התקליטור שהוכנס
 
 #: ../xfburn/xfburn-device-box.c:599 ../xfburn/xfburn-device-box.c:645
 msgid Drive is empty
-msgstr 
+msgstr הכונן ריק
 
 #: ../xfburn/xfburn-device-box.c:602
 msgid Sorry, multisession is not yet supported
@@ -592,15 +590,16 @@ msgstr 
 
 #: ../xfburn/xfburn-device-box.c:605
 msgid Inserted disc is full
-msgstr 
+msgstr התקליטור שהוכנס הינו מלא
 
 #: ../xfburn/xfburn-device-box.c:608 ../xfburn/xfburn-device-box.c:651
 msgid Inserted disc is unsuitable
-msgstr 
+msgstr התקליטור שהוכנס אינו תואם
 
 #: ../xfburn/xfburn-device-box.c:611 ../xfburn/xfburn-device-box.c:654
+#, fuzzy
 msgid Cannot access drive (it might be in use)
-msgstr 
+msgstr לא ניתן לגשת לכונן (הוא עלול להיות בשימוש)
 
 #: ../xfburn/xfburn-device-box.c:616 ../xfburn/xfburn-device-box.c:657
 msgid Error determining disc
@@ -625,15 +624,15 @@ msgstr _אודות
 
 #: ../xfburn/xfburn-device-list.c:206 ../xfburn/xfburn-device-list.c:207
 msgid Number of burners in the system
-msgstr 
+msgstr מספר הצורבים במערכת
 
 #: ../xfburn/xfburn-device-list.c:209
 msgid Number of drives in the system
-msgstr 
+msgstr מספר הכוננים במערכת
 
 #: ../xfburn/xfburn-device-list.c:210
 msgid Number of drives in the system (readers and writers)
-msgstr 
+msgstr מספר הכוננים במערכת (קוראים וכותבים)
 
 #: ../xfburn/xfburn-device-list.c:212 ../xfburn/xfburn-device-list.c:213
 #, fuzzy
@@ -713,10 +712,8 @@ msgstr 
 msgid _File
 msgstr _קובץ
 
-#. {new-composition, GTK_STOCK_NEW, N_(_New composition), , N_(Create a
-#. new composition),},
-#. {new-composition, GTK_STOCK_NEW, N_(_New composition), NULL, N_(Create
-#. a new composition),
+#. {new-composition, GTK_STOCK_NEW, N_(_New composition), , N_(Create a 
new composition),},
+#. 

[Xfce4-commits] xfce4-mixer:master l10n: Updated Hebrew (he) translation to None%

2013-01-25 Thread Transifex
Updating branch refs/heads/master
 to 8b5956486b1e4f69b80ef6a5b26eb0bddfa963a5 (commit)
   from 8110a50a75297c98bbece797eb6bda9b7c9cef4c (commit)

commit 8b5956486b1e4f69b80ef6a5b26eb0bddfa963a5
Author: nick vurgaft slipperyg...@gmail.com
Date:   Fri Jan 25 23:04:28 2013 +0100

l10n: Updated Hebrew (he) translation to None%

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

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

 po/he.po |   57 +++--
 1 files changed, 31 insertions(+), 26 deletions(-)

diff --git a/po/he.po b/po/he.po
index f7644e4..8470259 100644
--- a/po/he.po
+++ b/po/he.po
@@ -2,37 +2,39 @@
 # Copyright (C) 2006-2012 The Xfce development team
 # This file is distributed under the same license as the xfce4-mixer package.
 # Isratine Citizen genghisk...@gmx.ca, 2012.
-#
+# koby vurgaft slipperyg...@gmail.com, 2013.
 msgid 
 msgstr 
 Project-Id-Version: xfce4-mixer\n
 Report-Msgid-Bugs-To: \n
 POT-Creation-Date: 2012-09-29 13:30+\n
-PO-Revision-Date: 2012-08-20 10:43+0200\n
-Last-Translator: Isratine Citizen genghisk...@gmx.ca\n
-Language-Team:  xfce-i...@xfce.org\n
+PO-Revision-Date: 2013-01-25 23:43+0300\n
+Last-Translator: koby vurgaft slipperyg...@gmail.com\n
+Language-Team: גזר\n
 Language: he\n
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=utf-8\n
 Content-Transfer-Encoding: 8bit\n
+Plural-Forms: nplurals=2; plural=(n != 1);\n
+X-Generator: Virtaal 0.7.1\n
 X-Poedit-Language: Hebrew\n
 
 #. Add menu item for muting
 #: ../panel-plugin/xfce-mixer-plugin.c:306
 msgid Mu_te
-msgstr 
+msgstr הש_תק
 
 #: ../panel-plugin/xfce-mixer-plugin.c:314
 msgid Run Audio Mi_xer
-msgstr 
+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.
 msgstr 
-‏GStreamer לא יכול היה לאתר תקן קול כלשהו. ייתכן שחבילות מערכת קול סגוליות של 

-GStreamer חסרות. ייתכן ובעיה זו קשורה אל הרשאות.
+‏GStreamer לא יכול היה לאתר תקן קול כלשהו. ייתכן שחבילות מערכת קול סגוליות 
+של GStreamer חסרות. ייתכן ובעיה זו קשורה אל הרשאות.
 
 # I did not use ־ since the developer has used - already
 #: ../panel-plugin/xfce-mixer-plugin.c:931
@@ -73,13 +75,14 @@ msgid Mixer _track:
 msgstr ערוץ מערבל
 
 #: ../panel-plugin/xfce-volume-button.c:854
+#, fuzzy
 msgid No valid device and/or element.
-msgstr 
+msgstr אין התקן ו/או אלמנט תקף.
 
 #: ../panel-plugin/xfce-volume-button.c:859
 #, c-format
 msgid %s: muted
-msgstr 
+msgstr ‏%s: מושתק
 
 #: ../panel-plugin/xfce-volume-button.c:861
 #, c-format
@@ -94,12 +97,12 @@ msgstr ‫%s: ‫%i%%
 #: ../xfce4-mixer/xfce4-mixer.desktop.in.h:1
 #, fuzzy
 msgid Audio Mixer
-msgstr מערבל
+msgstr מערבל שמע
 
 #: ../panel-plugin/mixer.desktop.in.h:2
 #: ../xfce4-mixer/xfce4-mixer.desktop.in.h:2
 msgid Adjust volume levels
-msgstr 
+msgstr קבע את עוצמת השמע
 
 # מוכרת
 #: ../libxfce4mixer/libxfce4mixer.c:422
@@ -108,17 +111,18 @@ msgid Unknown Volume Control %d
 msgstr בקרת עוצמת שמע לא ידועה %d
 
 #: ../xfce4-mixer/main.c:86
+#, fuzzy
 msgid Enable debugging output
-msgstr 
+msgstr הפעל פלט של מצב ניפוי שגיאות
 
 #: ../xfce4-mixer/main.c:87
 msgid Show version and exit
-msgstr 
+msgstr הצג גרסא וצא
 
 #: ../xfce4-mixer/main.c:130
-#, fuzzy, c-format
+#, c-format
 msgid xfce4-mixer: Failed to initialize xfconf: %s\n
-msgstr כשל באתחול xfconf: ‫%s
+msgstr מערבל-xfce4: כשל באתחול xfconf: ‫%s
 
 #: ../xfce4-mixer/xfce-mixer-container.c:218
 #, fuzzy
@@ -132,14 +136,12 @@ msgstr לכידה
 
 # מפסקים
 #: ../xfce4-mixer/xfce-mixer-container.c:218
-#, fuzzy
 msgid S_witches
-msgstr מתגים
+msgstr מ_תגים
 
 #: ../xfce4-mixer/xfce-mixer-container.c:218
-#, fuzzy
 msgid _Options
-msgstr אפשרויות
+msgstr _אפשרויות
 
 #: ../xfce4-mixer/xfce-mixer-container.c:390
 msgid No controls visible
@@ -147,13 +149,16 @@ msgstr אין בקרים נראים
 
 #: ../xfce4-mixer/xfce-mixer-container.c:401
 msgid span weight=\bold\ size=\larger\No controls visible/span
-msgstr 
+msgstr span weight=\bold\ size=\larger\אין בקרים נראים/span
 
 #: ../xfce4-mixer/xfce-mixer-container.c:409
+#, fuzzy
 msgid 
 In order to toggle the visibility of mixer controls, open the b\Select 
 Controls\/b dialog.
 msgstr 
+על מנת להתאים את הראות של בקרי העירבול, יש לפתוח את דיאלוג b/\בחירת 
+הבקרים\b
 
 #: ../xfce4-mixer/xfce-mixer-controls-dialog.c:118
 msgid Select Controls
@@ -167,23 +172,23 @@ msgstr בחירה על אילו בקרים להיראות
 #: ../xfce4-mixer/xfce-mixer-track.c:257
 #, c-format
 msgid Volume of channel %d on %s
-msgstr 
+msgstr העצמה של ערוץ %s ב־%s
 
 #. Lock button
 #: ../xfce4-mixer/xfce-mixer-track.c:293
 #, c-format
 msgid Lock channels for %s together
-msgstr 
+msgstr נעל את הערוצים עבור %s ביחד
 
 #: ../xfce4-mixer/xfce-mixer-track.c:340
 #, c-format
 msgid Mute/unmute %s
-msgstr 
+msgstr השתק/בטל השתקה של %s
 
 #: 

[Xfce4-commits] xfce4-mixer:master l10n: Updated Hebrew (he) translation to None%

2013-01-25 Thread Transifex
Updating branch refs/heads/master
 to 9793a13ab877ecd39091cb9234dd24ecfea641ee (commit)
   from 8b5956486b1e4f69b80ef6a5b26eb0bddfa963a5 (commit)

commit 9793a13ab877ecd39091cb9234dd24ecfea641ee
Author: nick vurgaft slipperyg...@gmail.com
Date:   Fri Jan 25 23:10:17 2013 +0100

l10n: Updated Hebrew (he) translation to None%

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

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

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

diff --git a/po/he.po b/po/he.po
index 8470259..0305e43 100644
--- a/po/he.po
+++ b/po/he.po
@@ -8,7 +8,7 @@ msgstr 
 Project-Id-Version: xfce4-mixer\n
 Report-Msgid-Bugs-To: \n
 POT-Creation-Date: 2012-09-29 13:30+\n
-PO-Revision-Date: 2013-01-25 23:43+0300\n
+PO-Revision-Date: 2013-01-26 00:09+0300\n
 Last-Translator: koby vurgaft slipperyg...@gmail.com\n
 Language-Team: גזר\n
 Language: he\n
@@ -152,13 +152,10 @@ msgid span weight=\bold\ size=\larger\No controls 
visible/span
 msgstr span weight=\bold\ size=\larger\אין בקרים נראים/span
 
 #: ../xfce4-mixer/xfce-mixer-container.c:409
-#, fuzzy
 msgid 
 In order to toggle the visibility of mixer controls, open the b\Select 
 Controls\/b dialog.
 msgstr 
-על מנת להתאים את הראות של בקרי העירבול, יש לפתוח את דיאלוג b/\בחירת 
-הבקרים\b
 
 #: ../xfce4-mixer/xfce-mixer-controls-dialog.c:118
 msgid Select Controls
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfce4-mixer:master l10n: Updated Hebrew (he) translation to None%

2013-01-25 Thread Transifex
Updating branch refs/heads/master
 to 9e94edee9550503465a999fb0a85a2dc5329e130 (commit)
   from 9793a13ab877ecd39091cb9234dd24ecfea641ee (commit)

commit 9e94edee9550503465a999fb0a85a2dc5329e130
Author: nick vurgaft slipperyg...@gmail.com
Date:   Fri Jan 25 23:13:50 2013 +0100

l10n: Updated Hebrew (he) translation to None%

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

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

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

diff --git a/po/he.po b/po/he.po
index 0305e43..e6450f2 100644
--- a/po/he.po
+++ b/po/he.po
@@ -8,7 +8,7 @@ msgstr 
 Project-Id-Version: xfce4-mixer\n
 Report-Msgid-Bugs-To: \n
 POT-Creation-Date: 2012-09-29 13:30+\n
-PO-Revision-Date: 2013-01-26 00:09+0300\n
+PO-Revision-Date: 2013-01-26 00:12+0300\n
 Last-Translator: koby vurgaft slipperyg...@gmail.com\n
 Language-Team: גזר\n
 Language: he\n
@@ -127,7 +127,7 @@ msgstr מערבל-xfce4: כשל באתחול xfconf: ‫%s
 #: ../xfce4-mixer/xfce-mixer-container.c:218
 #, fuzzy
 msgid _Playback
-msgstr השמעה
+msgstr _השמעה
 
 #: ../xfce4-mixer/xfce-mixer-container.c:218
 #, fuzzy
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfce4-sensors-plugin:master l10n: Serbian translation

2013-01-25 Thread Transifex
Updating branch refs/heads/master
 to d0db10a6f94ada1727297211fa9330d86ce4cbd5 (commit)
   from 91f7572be99c043be6e3af858e194b9931b7f3f0 (commit)

commit d0db10a6f94ada1727297211fa9330d86ce4cbd5
Author: Саша Петровић salepetron...@gmail.com
Date:   Fri Jan 25 23:18:04 2013 +0100

l10n: Serbian translation

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

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

 po/{ko.po = sr.po} |  213 ++-
 1 files changed, 109 insertions(+), 104 deletions(-)

diff --git a/po/ko.po b/po/sr.po
similarity index 57%
copy from po/ko.po
copy to po/sr.po
index 9b21fba..7402c03 100644
--- a/po/ko.po
+++ b/po/sr.po
@@ -1,33 +1,33 @@
-# Korean translations for xfce4-sensors-plugin package.
-# Copyright (C) 2004-2005 Fabian Nowak.
-# This file is distributed under the same license as the xfce4-sensors-plugin 
package.
-# ByungHyun Choi byunghyun.c...@gmail.com, 2005.
-# Seong-ho Cho darkcircle.0...@gmail.com, 2012, 2013.
-#
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+# Саша Петровић salepetron...@gmail.com, 2013.
 msgid 
 msgstr 
-Project-Id-Version: xfce4-sensors-plugin 0.9.0\n
-Report-Msgid-Bugs-To: 
https://bugzilla.xfce.org/enter_bug.cgi?product=Xfce4-sensors-plugin\n;
-POT-Creation-Date: 2013-01-23 13:33+\n
-PO-Revision-Date: 2013-01-24 03:12+0900\n
-Last-Translator: Seong-ho Cho darkcircle.0...@gmail.com\n
-Language-Team: xfce-i18n xfce-i...@xfce.org\n
-Language: ko\n
+Project-Id-Version: master\n
+Report-Msgid-Bugs-To: \n
+POT-Creation-Date: 2013-01-25 19:03+\n
+PO-Revision-Date: 2013-01-25 23:16+0200\n
+Last-Translator: Саша Петровић salepetron...@gmail.com\n
+Language-Team: sr\n
+Language: sr\n
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=UTF-8\n
 Content-Transfer-Encoding: 8bit\n
-Plural-Forms: nplurals=1; plural=0;\n
+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
+X-Generator: Virtaal 0.7.0\n
 
 #: ../panel-plugin/sensors-plugin.c:287
 #: ../panel-plugin/sensors-plugin.c:384
 #: ../panel-plugin/sensors-plugin.c:977
 msgid span foreground=\#00\bSensors/b/span
-msgstr span foreground=\#00\b센서/b/span
+msgstr span foreground=\#00\bПријемници/b/span
 
 #. widget = sensors-eventbox;
 #: ../panel-plugin/sensors-plugin.c:783
 msgid No sensors selected!
-msgstr 센서를 선택하지 않았습니다!
+msgstr Нема изабраних пријемника!
 
 #. FIXME: either print nothing, or undertake appropriate action,
 #. * or pop up a message box.
@@ -38,100 +38,100 @@ msgid 
 Seems like there was a problem reading a sensor feature value.\n
 Proper proceeding cannot be guaranteed.\n
 msgstr 
-센서 플러그인:\n
-센서 기능 값을 읽어들이는데 문제가 있는 것 같습니다.\n
-따라서 정상적인 동작을 보장할 수 없습니다.\n
+Прикључак пријемника:\n
+Изгледа да се десио проблем читања вредности особина пријемника.\n
+Није могуће јемчити за правилан наставак.\n
 
 #: ../panel-plugin/sensors-plugin.c:1684
 msgid UI style:
-msgstr UI 형태:
+msgstr Изглед КС:
 
 #: ../panel-plugin/sensors-plugin.c:1685
 msgid _text
-msgstr 본문(_T)
+msgstr _текст
 
 #: ../panel-plugin/sensors-plugin.c:1687
 msgid _progress bars
-msgstr 진행 막대(_P)
+msgstr _траке напредака
 
 #: ../panel-plugin/sensors-plugin.c:1689
 msgid _tachos
-msgstr 타코(_T)
+msgstr _кружни мерачи
 
 #: ../panel-plugin/sensors-plugin.c:1734
 msgid Show _labels
-msgstr 레이블 표시(_L)
+msgstr Прикажи _натписе
 
 #: ../panel-plugin/sensors-plugin.c:1764
 msgid Show colored _bars
-msgstr 색깔있는 막대 표시(_B)
+msgstr Прикажи обојене _траке
 
 #: ../panel-plugin/sensors-plugin.c:1792
 msgid _Show title
-msgstr 제목 표시(_S)
+msgstr _Прикажи наслов
 
 #: ../panel-plugin/sensors-plugin.c:1816
 msgid _Number of text lines:
-msgstr 본문 줄 수(_N):
+msgstr _Број линија текста:
 
 #: ../panel-plugin/sensors-plugin.c:1851
 msgid F_ont size:
-msgstr 글꼴 크기(_O):
+msgstr Величина _словног лика:
 
 #. gtk_widget_set_sensitive(myFontBox, 
!sd-sensors-display_values_graphically);
 #: ../panel-plugin/sensors-plugin.c:1858
 msgid x-small
-msgstr 아주 작게
+msgstr икс-мали
 
 #: ../panel-plugin/sensors-plugin.c:1859
 msgid small
-msgstr 작게
+msgstr мали
 
 #: ../panel-plugin/sensors-plugin.c:1860
 msgid medium
-msgstr 중간
+msgstr средњи
 
 #: ../panel-plugin/sensors-plugin.c:1861
 msgid large
-msgstr 크게
+msgstr велики
 
 #: ../panel-plugin/sensors-plugin.c:1862
 msgid x-large
-msgstr 아주 크게
+msgstr икс-велики
 
 #: ../panel-plugin/sensors-plugin.c:1893
 msgid F_ont:
-msgstr 글꼴(_O):
+msgstr Сл_овни лик:
 
 #: ../panel-plugin/sensors-plugin.c:1927
 msgid Show _Units
-msgstr 단위 표시(_U)
+msgstr Прикажи _јединице
 
 #: ../panel-plugin/sensors-plugin.c:1948
 msgid Small horizontal s_pacing
-msgstr 좁은 수평 공간(_P)
+msgstr Мали водоравни р_азмаци
 
 #: ../panel-plugin/sensors-plugin.c:1970
 msgid Suppress messages
-msgstr 숨겨진 메시지
+msgstr Потисни поруке
 
 #: ../panel-plugin/sensors-plugin.c:1995
 

[Xfce4-commits] xfce4-eyes-plugin:master l10n: Serbian translation

2013-01-25 Thread Transifex
Updating branch refs/heads/master
 to e031b813881a7820d6af3e15568f4cdb8906bc30 (commit)
   from 42a74fb0ad17c5ff3ad7b639c35396912b651e08 (commit)

commit e031b813881a7820d6af3e15568f4cdb8906bc30
Author: Саша Петровић salepetron...@gmail.com
Date:   Fri Jan 25 23:36:53 2013 +0100

l10n: Serbian translation

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

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

 po/{fi.po = sr.po} |   18 +-
 1 files changed, 9 insertions(+), 9 deletions(-)

diff --git a/po/fi.po b/po/sr.po
similarity index 57%
copy from po/fi.po
copy to po/sr.po
index 5429f15..f586007 100644
--- a/po/fi.po
+++ b/po/sr.po
@@ -1,30 +1,30 @@
-# translation of Xfce4 toys to Finnish
 # This file is distributed under the same license as the xfce4-eyes package.
 # Copyright (C) YEAR THE xfce4-eyes'S COPYRIGHT HOLDER.
 #
-# Juha Kautto kautto.j...@kolumbus.fi, 2004.
-# Jari Rahkonen jari.rahko...@pp1.inet.fi, 2007.
+# Саша Петровић salepetron...@gmail.com, 2013.
 #
 msgid 
 msgstr 
 Project-Id-Version: xfce4-eyes 4.3.0\n
 Report-Msgid-Bugs-To: \n
 POT-Creation-Date: 2007-01-20 13:53+0200\n
-PO-Revision-Date: 2007-01-20 13:55+0200\n
-Last-Translator: Jari Rahkonen jari.rahko...@pp1.inet.fi\n
-Language-Team: \n
+PO-Revision-Date: 2013-01-25 23:35+0100\n
+Language-Team: српски \n
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=UTF-8\n
 Content-Transfer-Encoding: 8bit\n
+Last-Translator: Саша Петровић salepetron...@gmail.com\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
 
 #: ../panel-plugin/eyes.c:289 ../panel-plugin/eyes.desktop.in.in.h:1
 msgid Eyes
-msgstr Silmät
+msgstr Очи
 
 #: ../panel-plugin/eyes.c:305
 msgid _Select a theme:
-msgstr _Valitse teema:
+msgstr _Изаберите тему:
 
 #: ../panel-plugin/eyes.desktop.in.in.h:2
 msgid Eyes that spy on you
-msgstr Tuijottavat silmät
+msgstr Очи које Вас прате
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfdesktop:master Add tooltips to the settings iconview

2013-01-25 Thread Eric Koegel
Updating branch refs/heads/master
 to 71aa9c7b406faba49f51848e035c5d14cf9b6071 (commit)
   from 88a920697b22b0653f244ede15f8e645ae013139 (commit)

commit 71aa9c7b406faba49f51848e035c5d14cf9b6071
Author: Eric Koegel eric.koe...@gmail.com
Date:   Sat Jan 26 07:40:40 2013 +0300

Add tooltips to the settings iconview

 settings/main.c |1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/settings/main.c b/settings/main.c
index 7efba7e..441bcdc 100644
--- a/settings/main.c
+++ b/settings/main.c
@@ -873,6 +873,7 @@ xfdesktop_settings_setup_image_iconview(AppearancePanel 
*panel)
 g_object_set(G_OBJECT(iconview),
 pixbuf-column, COL_PIX,
 item-width, PREVIEW_WIDTH,
+tooltip-column, COL_NAME,
 NULL);
 
 g_signal_connect(G_OBJECT(iconview), selection-changed,
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits