[Xfce4-commits] [xfce/thunar] 02/02: added missing bug description to NEWS

2018-10-13 Thread noreply
This is an automated email from the git hooks/post-receive script.

alex pushed a 
commit to branch 
xfce-4.12
in repository xfce/thunar.

commit 870d6b0d3c4b31dfefb7e5afb0aba2ac2062c913
Author: Alexander Schwinn 
Date:   Sat Oct 13 21:09:19 2018 +0200

added missing bug description to NEWS
---
 NEWS | 1 +
 1 file changed, 1 insertion(+)

diff --git a/NEWS b/NEWS
index 8fa0247..ec05197 100644
--- a/NEWS
+++ b/NEWS
@@ -1,5 +1,6 @@
 1.6.15
 ==
+- Thunar confuses files (bug #12435)
 - Thunar User Configurable Actions do not work for remote locations (bug 
#7652), patch from (bug#7305)
 - replaced links to "http://thunar.xfce.org/; with 
"https://docs.xfce.org/xfce/thunar/Start/;
 - SIGSEGV when thumbnailer is under heavy load after opening many tabs (bug 
#13756)

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [xfce/thunar] 01/02: Crash in tree-view when multiple windows are open (Bug #14714)

2018-10-13 Thread noreply
This is an automated email from the git hooks/post-receive script.

alex pushed a 
commit to branch 
xfce-4.12
in repository xfce/thunar.

commit 42bfa0dc3be571cf8677ac350d115528597f899b
Author: Alexander Schwinn 
Date:   Tue Oct 2 22:05:52 2018 +0200

Crash in tree-view when multiple windows are open (Bug #14714)
---
 thunar/thunar-tree-model.c | 38 --
 thunar/thunar-tree-model.h |  2 --
 thunar/thunar-tree-view.c  | 11 ---
 3 files changed, 8 insertions(+), 43 deletions(-)

diff --git a/thunar/thunar-tree-model.c b/thunar/thunar-tree-model.c
index df06fd3..9eb652f 100644
--- a/thunar/thunar-tree-model.c
+++ b/thunar/thunar-tree-model.c
@@ -1778,44 +1778,6 @@ thunar_tree_model_node_traverse_visible (GNode*node,
 
 
 /**
- * thunar_tree_model_get_default:
- *
- * Returns the default, shared #ThunarTreeModel instance.
- *
- * The caller is responsible to free the returned instance
- * using g_object_unref() when no longer needed.
- *
- * Return value: a reference to the default #ThunarTreeModel.
- **/
-ThunarTreeModel*
-thunar_tree_model_get_default (void)
-{
-  static ThunarTreeModel *model = NULL;
-  ThunarPreferences  *preferences;
-
-  if (G_LIKELY (model == NULL))
-{
-  /* allocate the shared model on-demand */
-  model = g_object_new (THUNAR_TYPE_TREE_MODEL, NULL);
-  g_object_add_weak_pointer (G_OBJECT (model), (gpointer) );
-
-  /* synchronize the the global "misc-case-sensitive" preference */
-  preferences = thunar_preferences_get ();
-  g_object_set_data_full (G_OBJECT (model), I_("thunar-preferences"), 
preferences, g_object_unref);
-  exo_binding_new (G_OBJECT (preferences), "misc-case-sensitive", G_OBJECT 
(model), "case-sensitive");
-}
-  else
-{
-  /* take a reference for the caller */
-  g_object_ref (G_OBJECT (model));
-}
-
-  return model;
-}
-
-
-
-/**
  * thunar_tree_model_get_case_sensitive:
  * @model : a #ThunarTreeModel.
  *
diff --git a/thunar/thunar-tree-model.h b/thunar/thunar-tree-model.h
index 5c7f5f3..0bc0cf2 100644
--- a/thunar/thunar-tree-model.h
+++ b/thunar/thunar-tree-model.h
@@ -59,8 +59,6 @@ typedef enum
 
 GTypethunar_tree_model_get_type   (void) G_GNUC_CONST;
 
-ThunarTreeModel *thunar_tree_model_get_default(void);
-
 void thunar_tree_model_set_visible_func   (ThunarTreeModel 
   *model,

ThunarTreeModelVisibleFunc  func,
gpointer
data);
diff --git a/thunar/thunar-tree-view.c b/thunar/thunar-tree-view.c
index 2c1e068..7a61172 100644
--- a/thunar/thunar-tree-view.c
+++ b/thunar/thunar-tree-view.c
@@ -392,8 +392,13 @@ thunar_tree_view_init (ThunarTreeView *view)
   view->preferences = thunar_preferences_get ();
   g_signal_connect_swapped (G_OBJECT (view->preferences), 
"notify::tree-icon-emblems", G_CALLBACK (gtk_widget_queue_draw), view);
 
-  /* connect to the default tree model */
-  view->model = thunar_tree_model_get_default ();
+  /* Create a tree model for this tree view */
+  view->model = g_object_new (THUNAR_TYPE_TREE_MODEL, NULL);
+
+  /* synchronize the the global "misc-case-sensitive" preference */
+  g_object_set_data_full (G_OBJECT (view->model), I_("thunar-preferences"), 
view->preferences, g_object_unref);
+  exo_binding_new (G_OBJECT (view->preferences), "misc-case-sensitive", 
G_OBJECT (view->model), "case-sensitive");
+
   thunar_tree_model_set_visible_func (view->model, 
thunar_tree_view_visible_func, view);
   gtk_tree_view_set_model (GTK_TREE_VIEW (view), GTK_TREE_MODEL (view->model));
 
@@ -487,7 +492,7 @@ thunar_tree_view_finalize (GObject *object)
   /* release our reference on the preferences */
   g_object_unref (G_OBJECT (view->preferences));
 
-  /* disconnect from the default tree model */
+  /* free the tree model */
   g_object_unref (G_OBJECT (view->model));
 
   /* drop any existing "new-files" closure */

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [xfce/thunar] branch xfce-4.12 updated (c692469 -> 870d6b0)

2018-10-13 Thread noreply
This is an automated email from the git hooks/post-receive script.

alex pushed a 
change to branch 
xfce-4.12
in repository xfce/thunar.

  from  c692469   I18n: Update translation ru (100%).
   new  42bfa0d   Crash in tree-view when multiple windows are open (Bug 
#14714)
   new  870d6b0   added missing bug description to NEWS

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 NEWS   |  1 +
 thunar/thunar-tree-model.c | 38 --
 thunar/thunar-tree-model.h |  2 --
 thunar/thunar-tree-view.c  | 11 ---
 4 files changed, 9 insertions(+), 43 deletions(-)

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [panel-plugins/xfce4-weather-plugin] 01/01: I18n: Update translation he (100%).

2018-10-13 Thread noreply
This is an automated email from the git hooks/post-receive script.

transifex pushed a 
commit to branch 
master
in repository panel-plugins/xfce4-weather-plugin.

commit 694c83a5e7c568cb5a3a3a5c7fb1658dc49a3961
Author: Elishai Eliyahu 
Date:   Sat Oct 13 18:32:53 2018 +0200

I18n: Update translation he (100%).

335 translated messages.

Transifex (https://www.transifex.com/xfce/public/).
---
 po/he.po | 592 +--
 1 file changed, 466 insertions(+), 126 deletions(-)

diff --git a/po/he.po b/po/he.po
index 01d2efb..3d8ffa4 100644
--- a/po/he.po
+++ b/po/he.po
@@ -10,8 +10,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-09-17 00:32+0200\n"
-"PO-Revision-Date: 2018-09-18 11:46+\n"
+"POT-Creation-Date: 2018-09-23 18:32+0200\n"
+"PO-Revision-Date: 2018-10-13 15:09+\n"
 "Last-Translator: Elishai Eliyahu \n"
 "Language-Team: Hebrew 
(http://www.transifex.com/xfce/xfce-panel-plugins/language/he/)\n"
 "MIME-Version: 1.0\n"
@@ -201,63 +201,63 @@ msgstr "זכויות יוצרים (c)‏ 2003-2014\n"
 #. * read that up somewhere and decide whether you want to use them
 #. * or not. In general, though, you should just try to choose
 #. * letter(s) that make sense and don't use up too much space.
-#: ../panel-plugin/weather-config.c:96
+#: ../panel-plugin/weather-config.c:96 ../panel-plugin/weather-config.ui.h:72
 msgid "Temperature (T)"
 msgstr "טמפרטורה (T)"
 
-#: ../panel-plugin/weather-config.c:97
+#: ../panel-plugin/weather-config.c:97 ../panel-plugin/weather-config.ui.h:73
 msgid "Barometric pressure (P)"
 msgstr "לחץ ברומטרי (P)"
 
-#: ../panel-plugin/weather-config.c:98
+#: ../panel-plugin/weather-config.c:98 ../panel-plugin/weather-config.ui.h:74
 msgid "Wind speed (WS)"
 msgstr "מהירות משב (WS)"
 
-#: ../panel-plugin/weather-config.c:99
+#: ../panel-plugin/weather-config.c:99 ../panel-plugin/weather-config.ui.h:75
 msgid "Wind speed - Beaufort scale (WB)"
 msgstr "מהירות משב - סולם בופורט (WB)"
 
-#: ../panel-plugin/weather-config.c:100
+#: ../panel-plugin/weather-config.c:100 ../panel-plugin/weather-config.ui.h:76
 msgid "Wind direction (WD)"
 msgstr "כיוון משב (WD)"
 
-#: ../panel-plugin/weather-config.c:101
+#: ../panel-plugin/weather-config.c:101 ../panel-plugin/weather-config.ui.h:77
 msgid "Wind direction in degrees (WD)"
 msgstr "כיוון משב במעלות (WD)"
 
-#: ../panel-plugin/weather-config.c:102
+#: ../panel-plugin/weather-config.c:102 ../panel-plugin/weather-config.ui.h:78
 msgid "Humidity (H)"
 msgstr "לחות (H)"
 
-#: ../panel-plugin/weather-config.c:103
+#: ../panel-plugin/weather-config.c:103 ../panel-plugin/weather-config.ui.h:79
 msgid "Dew point (D)"
 msgstr "נקודת עיבוי (D)"
 
-#: ../panel-plugin/weather-config.c:104
+#: ../panel-plugin/weather-config.c:104 ../panel-plugin/weather-config.ui.h:80
 msgid "Apparent temperature (A)"
 msgstr "טמפרטורה גלויה (A)"
 
-#: ../panel-plugin/weather-config.c:105
+#: ../panel-plugin/weather-config.c:105 ../panel-plugin/weather-config.ui.h:81
 msgid "Low clouds (CL)"
 msgstr "עננים נמוכים (CL)"
 
-#: ../panel-plugin/weather-config.c:106
+#: ../panel-plugin/weather-config.c:106 ../panel-plugin/weather-config.ui.h:82
 msgid "Middle clouds (CM)"
 msgstr "עננים בינוניים (CM)"
 
-#: ../panel-plugin/weather-config.c:107
+#: ../panel-plugin/weather-config.c:107 ../panel-plugin/weather-config.ui.h:83
 msgid "High clouds (CH)"
 msgstr "עננים גבוהים (CH)"
 
-#: ../panel-plugin/weather-config.c:108
+#: ../panel-plugin/weather-config.c:108 ../panel-plugin/weather-config.ui.h:84
 msgid "Cloudiness (C)"
 msgstr "מעוננות (C)"
 
-#: ../panel-plugin/weather-config.c:109
+#: ../panel-plugin/weather-config.c:109 ../panel-plugin/weather-config.ui.h:85
 msgid "Fog (F)"
 msgstr "ערפל (F)"
 
-#: ../panel-plugin/weather-config.c:110
+#: ../panel-plugin/weather-config.c:110 ../panel-plugin/weather-config.ui.h:86
 msgid "Precipitation (R)"
 msgstr "משקעים (R)"
 
@@ -270,7 +270,7 @@ msgstr "לא נקבע"
 msgid "Detecting..."
 msgstr "כעת מאתר..."
 
-#: ../panel-plugin/weather-config.c:399
+#: ../panel-plugin/weather-config.c:399 ../panel-plugin/weather-config.ui.h:19
 msgid "feet"
 msgstr "רגל"
 
@@ -473,6 +473,7 @@ msgid ""
 msgstr "‏Met.no מספק נתוני תחזית עד למשך של %d ימים בעתיד. בחר כמה ימים יראו 
בלשונית התחזית בחלון הסיכום. במחשבים איטיים יותר, מספר נמוך יותר עשוי לעזור נגד 
השתהויות בעת פתיחת חלון. בכל אופן יש לשים לב לעובדה כי לרוב תחזיות אשר חוצות את 
התווך של שלושה ימים לעתיד אינן מהימנות לכל היותר ;-)"
 
 #: ../panel-plugin/weather-config.c:1131
+#: ../panel-plugin/weather-config.ui.h:98
 msgid "Select _font"
 msgstr "בחר _גופן"
 
@@ -743,7 +744,7 @@ msgstr "קשר"
 
 #. TRANSLATORS: The degree sign is used like a unit for
 #. latitude, longitude, wind direction
-#: ../panel-plugin/weather-data.c:519
+#: 

[Xfce4-commits] [panel-plugins/xfce4-weather-plugin] branch master updated (e4dcdbc -> 694c83a)

2018-10-13 Thread noreply
This is an automated email from the git hooks/post-receive script.

transifex pushed a 
change to branch 
master
in repository panel-plugins/xfce4-weather-plugin.

  from  e4dcdbc   I18n: Update translation pt_BR (100%).
   new  694c83a   I18n: Update translation he (100%).

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 po/he.po | 592 +--
 1 file changed, 466 insertions(+), 126 deletions(-)

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [panel-plugins/xfce4-mount-plugin] 01/01: I18n: Update translation he (100%).

2018-10-13 Thread noreply
This is an automated email from the git hooks/post-receive script.

transifex pushed a 
commit to branch 
master
in repository panel-plugins/xfce4-mount-plugin.

commit 6d5c90074f310d58080133c8e7baf6f27fa7f9e7
Author: Elishai Eliyahu 
Date:   Sat Oct 13 18:32:20 2018 +0200

I18n: Update translation he (100%).

57 translated messages.

Transifex (https://www.transifex.com/xfce/public/).
---
 po/he.po | 90 ++--
 1 file changed, 48 insertions(+), 42 deletions(-)

diff --git a/po/he.po b/po/he.po
index 1d5d24a..fdaf8cd 100644
--- a/po/he.po
+++ b/po/he.po
@@ -3,21 +3,21 @@
 # This file is distributed under the same license as the PACKAGE package.
 # 
 # Translators:
-# Elishai Eliyahu , 2016
+# Elishai Eliyahu , 2016,2018
 # GenghisKhan , 2016
 msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2016-06-08 00:31+0200\n"
-"PO-Revision-Date: 2017-09-23 19:03+\n"
+"POT-Creation-Date: 2018-10-02 00:31+0200\n"
+"PO-Revision-Date: 2018-10-13 15:05+\n"
 "Last-Translator: Elishai Eliyahu \n"
 "Language-Team: Hebrew 
(http://www.transifex.com/xfce/xfce-panel-plugins/language/he/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: he\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 
1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;\n"
 
 #: ../panel-plugin/devices.c:71
 #, c-format
@@ -86,7 +86,7 @@ msgstr "לא מוצב\n"
 
 #: ../panel-plugin/devices.c:293 ../panel-plugin/devices.c:316
 #: ../panel-plugin/devices.c:379 ../panel-plugin/devices.c:390
-#: ../panel-plugin/devices.c:400 ../panel-plugin/devices.c:487
+#: ../panel-plugin/devices.c:400 ../panel-plugin/devices.c:486
 msgid "Xfce 4 Mount Plugin"
 msgstr "תוסף עגינה Xfce 4 "
 
@@ -110,64 +110,70 @@ msgstr "ההתקן אמור עכשיו להיות ניתן להסרה בבטחה
 msgid "An error occurred. The device should not be removed:"
 msgstr "אירעה שגיאה. אין להסיר את ההתקן:"
 
-#: ../panel-plugin/devices.c:489
+#: ../panel-plugin/devices.c:488
 msgid ""
 "Your /etc/fstab could not be read. This will severely degrade the plugin's "
 "abilities."
 msgstr "הנתיב /etc/fstab שלך לא ניתן לקריאה. זה ידרדר באופן חמור את יכולות 
התוסף."
 
-#: ../panel-plugin/mount-plugin.c:177
+#: ../panel-plugin/mount-plugin.c:198
 msgid " -> "
 msgstr " -> "
 
-#: ../panel-plugin/mount-plugin.c:230
+#: ../panel-plugin/mount-plugin.c:257
 #, c-format
 msgid "[%s/%s] %s free"
 msgstr "[%s/%s] %s פנוי"
 
-#: ../panel-plugin/mount-plugin.c:249
+#: ../panel-plugin/mount-plugin.c:280
 msgid "not mounted"
 msgstr "לא מוצב"
 
-#: ../panel-plugin/mount-plugin.c:516
+#: ../panel-plugin/mount-plugin.c:355
+msgid ""
+"Xfce 4 Mount Plugin – Devices and Mount "
+"Points"
+msgstr "תוסף עגינה Xfce 4 - התקנים ונקודות 
עגינה"
+
+#: ../panel-plugin/mount-plugin.c:572
 msgid "devices"
 msgstr "התקנים"
 
-#: ../panel-plugin/mount-plugin.c:707
+#: ../panel-plugin/mount-plugin.c:763
 msgid "Mount Plugin"
 msgstr "תוסף הצבה"
 
-#: ../panel-plugin/mount-plugin.c:712
+#: ../panel-plugin/mount-plugin.c:768
 msgid "Properties"
 msgstr "מאפיינים"
 
-#: ../panel-plugin/mount-plugin.c:743
+#: ../panel-plugin/mount-plugin.c:799
 msgid ""
 "This is only useful and recommended if you specify \"sync\" as part of the "
 "\"unmount\" command string."
 msgstr "זה שימושי ומומלץ רק אם אתה מציין \"sync\" כחלק ממחרוזת הפקודה 
\"unmount\"."
 
-#: ../panel-plugin/mount-plugin.c:747
+#: ../panel-plugin/mount-plugin.c:803
 msgid "Show _message after unmount"
 msgstr "הצג _מסר לאחר ביטול הצבה"
 
-#: ../panel-plugin/mount-plugin.c:759
+#: ../panel-plugin/mount-plugin.c:815
 msgid "You can specify a distinct icon to be displayed in the panel."
 msgstr "אתה יכול לציין אייקון שונה להצגה בפאנל."
 
-#: ../panel-plugin/mount-plugin.c:765
+#: ../panel-plugin/mount-plugin.c:821
 msgid "Icon:"
 msgstr "אייקון:"
 
-#: ../panel-plugin/mount-plugin.c:769
+#: ../panel-plugin/mount-plugin.c:825
 msgid "Select an image"
 msgstr "בחר תמונה"
 
-#: ../panel-plugin/mount-plugin.c:776
+#: ../panel-plugin/mount-plugin.c:832
 msgid "_General"
 msgstr "_כללי"
 
-#: ../panel-plugin/mount-plugin.c:791
+#: ../panel-plugin/mount-plugin.c:847
 #, c-format
 msgid ""
 "This command will be executed after mounting the device with the mount point 
of the device as argument.\n"
@@ -175,82 +181,82 @@ msgid ""
 "'%d' can be used to specify the device, '%m' for the mountpoint."
 msgstr "פקודה זו תופעל לאחר הצבת ההתקן עם נקודת ההצבה של ההתקן כארגומנט.\nאם 
אתה לא בטוח מה להכניס, נסה \"exo-open %m\". \nניתן להשתמש ב-'%d' לציון ההתקן, 
וב-'%m' לנקודת ההצבה."
 
-#: ../panel-plugin/mount-plugin.c:800
+#: ../panel-plugin/mount-plugin.c:856
 msgid "_Execute after mounting:"
 

[Xfce4-commits] [apps/xfburn] 02/02: I18n: Update translation he (100%).

2018-10-13 Thread noreply
This is an automated email from the git hooks/post-receive script.

transifex pushed a 
commit to branch 
master
in repository apps/xfburn.

commit 828eab36d6b7368297d128e218d3e4e4252561ef
Author: Elishai Eliyahu 
Date:   Sat Oct 13 18:31:44 2018 +0200

I18n: Update translation he (100%).

306 translated messages.

Transifex (https://www.transifex.com/xfce/public/).
---
 po/he.po | 14 +++---
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/po/he.po b/po/he.po
index 301d690..03d3357 100644
--- a/po/he.po
+++ b/po/he.po
@@ -4,7 +4,7 @@
 # 
 # Translators:
 # Dotan Kamber , 2006
-# Elishai Eliyahu , 2016-2017
+# Elishai Eliyahu , 2016-2018
 # GenghisKhan , 2016
 # koby vurgaft , 2013
 # Yuval Tanny , 2006-2007
@@ -12,8 +12,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Apps\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2017-11-21 00:31+0100\n"
-"PO-Revision-Date: 2018-09-14 00:16+\n"
+"POT-Creation-Date: 2018-09-24 00:31+0200\n"
+"PO-Revision-Date: 2018-10-13 15:11+\n"
 "Last-Translator: Elishai Eliyahu \n"
 "Language-Team: Hebrew 
(http://www.transifex.com/xfce/xfce-apps/language/he/)\n"
 "MIME-Version: 1.0\n"
@@ -886,8 +886,8 @@ msgid "Toolbar Editor"
 msgstr "עורך סרגל כלים"
 
 #: ../xfburn/xfburn-main-window.c:538
-msgid "Another cd burning GUI"
-msgstr "עוד ממשק צריבת תקליטורים"
+msgid "Another CD burning GUI"
+msgstr "ממשק נוסף לצריבת תקליטור"
 
 #: ../xfburn/xfburn-notebook-tab.c:108
 msgid "Label"
@@ -1155,8 +1155,8 @@ msgid "Select command"
 msgstr "בחר פקודה"
 
 #: ../xfburn/xfburn-welcome-tab.c:129
-msgid "Welcome to xfburn!"
-msgstr "ברוכים הבאים לצורב Xfburn!"
+msgid "Welcome to Xfburn!"
+msgstr "ברוך הבא אל Xfburn !"
 
 #. buttons
 #: ../xfburn/xfburn-welcome-tab.c:140

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [panel-plugins/xfce4-mount-plugin] branch master updated (6001f83 -> 6d5c900)

2018-10-13 Thread noreply
This is an automated email from the git hooks/post-receive script.

transifex pushed a 
change to branch 
master
in repository panel-plugins/xfce4-mount-plugin.

  from  6001f83   Updated German translation
   new  6d5c900   I18n: Update translation he (100%).

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 po/he.po | 90 ++--
 1 file changed, 48 insertions(+), 42 deletions(-)

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [panel-plugins/xfce4-sensors-plugin] branch master updated (93347d5 -> bd79150)

2018-10-13 Thread noreply
This is an automated email from the git hooks/post-receive script.

transifex pushed a 
change to branch 
master
in repository panel-plugins/xfce4-sensors-plugin.

  from  93347d5   Try fixing bug 14398 by no longer using redundant 
information for accessing sensor features
   new  bd79150   I18n: Update translation he (100%).

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 po/he.po | 12 ++--
 1 file changed, 10 insertions(+), 2 deletions(-)

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [panel-plugins/xfce4-sensors-plugin] 01/01: I18n: Update translation he (100%).

2018-10-13 Thread noreply
This is an automated email from the git hooks/post-receive script.

transifex pushed a 
commit to branch 
master
in repository panel-plugins/xfce4-sensors-plugin.

commit bd791505fc9d460197bb007d93c98f04bc30c68d
Author: Elishai Eliyahu 
Date:   Sat Oct 13 18:32:38 2018 +0200

I18n: Update translation he (100%).

79 translated messages.

Transifex (https://www.transifex.com/xfce/public/).
---
 po/he.po | 12 ++--
 1 file changed, 10 insertions(+), 2 deletions(-)

diff --git a/po/he.po b/po/he.po
index 0bf8685..99097a6 100644
--- a/po/he.po
+++ b/po/he.po
@@ -8,8 +8,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-09-12 00:32+0200\n"
-"PO-Revision-Date: 2018-09-18 11:45+\n"
+"POT-Creation-Date: 2018-10-02 00:32+0200\n"
+"PO-Revision-Date: 2018-10-13 15:03+\n"
 "Last-Translator: Elishai Eliyahu \n"
 "Language-Team: Hebrew 
(http://www.transifex.com/xfce/xfce-panel-plugins/language/he/)\n"
 "MIME-Version: 1.0\n"
@@ -146,6 +146,14 @@ msgid ""
 "or selecting a different field."
 msgstr "אתה יכול לשנות תכונות מאפיין כמו שם, צבעים, ערכי מינימום/מקסימום ע\"י 
ביצוע קליק כפול בערך, עריכת התוכן, ולחיצה על \"חזור\" או בחירת שדה אחר."
 
+#: ../panel-plugin/sensors-plugin.c:2579
+msgid "Show sensor values from LM sensors, ACPI, hard disks, NVIDIA"
+msgstr "הצג ערכי חיישן מחיישני LM, ACPI, כוננים קשיחים, NVIDIA"
+
+#: ../panel-plugin/sensors-plugin.c:2581
+msgid "Copyright (c) 2004-2018\n"
+msgstr "זכויות יוצרים (c) 2004-2018\n"
+
 #. only use this if no hddtemp sensor
 #. or do only use this , if it is an lmsensors device. whatever.
 #. FIXME: compare strings, or also have hddtemp and acpi store numeric

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [xfce/thunar] branch xfce-4.14 updated (887c1a0 -> 9e8ede7)

2018-10-13 Thread noreply
This is an automated email from the git hooks/post-receive script.

transifex pushed a 
change to branch 
xfce-4.14
in repository xfce/thunar.

  from  887c1a0   I18n: Update translation ja (99%).
   new  9e8ede7   I18n: Update translation he (100%).

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 po/he.po | 228 ++-
 1 file changed, 122 insertions(+), 106 deletions(-)

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [xfce/xfce4-settings] 01/01: I18n: Update translation he (100%).

2018-10-13 Thread noreply
This is an automated email from the git hooks/post-receive script.

transifex pushed a 
commit to branch 
master
in repository xfce/xfce4-settings.

commit f00852be52be36cc1be7768b4aae4f81965c5b26
Author: Elishai Eliyahu 
Date:   Sat Oct 13 18:31:17 2018 +0200

I18n: Update translation he (100%).

396 translated messages.

Transifex (https://www.transifex.com/xfce/public/).
---
 po/he.po | 196 +++
 1 file changed, 134 insertions(+), 62 deletions(-)

diff --git a/po/he.po b/po/he.po
index 2754497..51d8eb9 100644
--- a/po/he.po
+++ b/po/he.po
@@ -13,8 +13,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Xfce4-settings\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-09-04 06:31+0200\n"
-"PO-Revision-Date: 2018-09-14 00:26+\n"
+"POT-Creation-Date: 2018-09-26 12:30+0200\n"
+"PO-Revision-Date: 2018-10-13 14:55+\n"
 "Last-Translator: Elishai Eliyahu \n"
 "Language-Team: Hebrew 
(http://www.transifex.com/xfce/xfce4-settings/language/he/)\n"
 "MIME-Version: 1.0\n"
@@ -258,7 +258,7 @@ msgstr "מידע גרסה"
 
 #: ../dialogs/accessibility-settings/main.c:200
 #: ../dialogs/appearance-settings/main.c:1166
-#: ../dialogs/display-settings/main.c:3115
+#: ../dialogs/display-settings/main.c:3646
 #: ../dialogs/keyboard-settings/main.c:78 ../dialogs/mime-settings/main.c:78
 #: ../dialogs/mouse-settings/main.c:1872 ../xfce4-settings-editor/main.c:120
 #: ../xfsettingsd/main.c:237 ../xfsettingsd/main.c:275
@@ -269,7 +269,7 @@ msgstr "הקלד '%s --help' לשימוש."
 
 #: ../dialogs/accessibility-settings/main.c:219
 #: ../dialogs/appearance-settings/main.c:1185
-#: ../dialogs/display-settings/main.c:3134
+#: ../dialogs/display-settings/main.c:3665
 #: ../dialogs/keyboard-settings/main.c:94 ../dialogs/mime-settings/main.c:97
 #: ../dialogs/mouse-settings/main.c:1891 ../xfce4-settings-editor/main.c:139
 #: ../xfsettingsd/main.c:253 ../xfce4-settings-manager/main.c:80
@@ -278,7 +278,7 @@ msgstr "קבוצת הפיתוח של Xfce. כל הזכויות שמורות."
 
 #: ../dialogs/accessibility-settings/main.c:220
 #: ../dialogs/appearance-settings/main.c:1186
-#: ../dialogs/display-settings/main.c:3135
+#: ../dialogs/display-settings/main.c:3666
 #: ../dialogs/keyboard-settings/main.c:95 ../dialogs/mime-settings/main.c:98
 #: ../dialogs/mouse-settings/main.c:1892 ../xfce4-settings-editor/main.c:140
 #: ../xfsettingsd/main.c:254 ../xfce4-settings-manager/main.c:81
@@ -584,46 +584,85 @@ msgid "Configure screen settings and layout"
 msgstr "הגדרת סידור והגדרות מסך"
 
 #: ../dialogs/display-settings/display-dialog.glade.h:3
-msgid "Ref_lection:"
-msgstr "ה_שתקפות:"
+msgid "R_esolution:"
+msgstr "_רזולוציה:"
 
 #: ../dialogs/display-settings/display-dialog.glade.h:4
-msgid "Ro_tation:"
-msgstr "_סיבוב:"
-
-#: ../dialogs/display-settings/display-dialog.glade.h:5
 msgid "Refresh _rate:"
 msgstr "קצב _רענון:"
 
+#: ../dialogs/display-settings/display-dialog.glade.h:5
+msgid "Ro_tation:"
+msgstr "_סיבוב:"
+
 #: ../dialogs/display-settings/display-dialog.glade.h:6
-msgid "R_esolution:"
-msgstr "_רזולוציה:"
+msgid "Ref_lection:"
+msgstr "ה_שתקפות:"
 
 #: ../dialogs/display-settings/display-dialog.glade.h:7
-msgid "_Use this display"
-msgstr "_השתמש בתצוגה זו"
+msgid "Primary Display:"
+msgstr "צג ראשי:"
 
 #: ../dialogs/display-settings/display-dialog.glade.h:8
 msgid "_Mirror displays"
 msgstr "_שקף תצוגות"
 
 #: ../dialogs/display-settings/display-dialog.glade.h:9
-msgid "_Primary display"
-msgstr "תצוגה _ראשית"
+msgid "_General"
+msgstr "_כללי"
 
 #: ../dialogs/display-settings/display-dialog.glade.h:10
-msgid ""
-"This is a hint for panels, docks and desktop to show on this display "
-"preferably."
-msgstr "זהו רמז עבור לוחות, סרגלים ושולחן עבודה להצגה בעדיפות בתצוגה זו."
+msgid "Profiles"
+msgstr "פרופילים"
 
 #: ../dialogs/display-settings/display-dialog.glade.h:11
-msgid "Configure _new displays when connected"
-msgstr "הגדר _תצוגות חדשות בעת חיבורן"
+msgid "Connecting Displays"
+msgstr "חיבור צגים"
 
 #: ../dialogs/display-settings/display-dialog.glade.h:12
-msgid "Identify Displays"
-msgstr "זהה תצוגות"
+msgid ""
+"Only profiles matching at least the currently connected displays are shown."
+msgstr "רק פרופילים התואמים לפחות את הצגים המחוברים כרגע מופיעים."
+
+#: ../dialogs/display-settings/display-dialog.glade.h:13
+msgid "Delete the currently selected display profile."
+msgstr "מחק את פרופיל הצג הנבחר כעת."
+
+#: ../dialogs/display-settings/display-dialog.glade.h:14
+msgid "Apply"
+msgstr "יישם"
+
+#: ../dialogs/display-settings/display-dialog.glade.h:15
+msgid "Apply the currently selected display profile."
+msgstr "יישם את פרופיל הצג הנבחר כעת."
+
+#: ../dialogs/display-settings/display-dialog.glade.h:16
+msgid "Create a new display profile."
+msgstr "צור פרופיל צג חדש."
+
+#: ../dialogs/display-settings/display-dialog.glade.h:17
+msgid 

[Xfce4-commits] [apps/xfburn] 01/02: I18n: Update translation fr (100%).

2018-10-13 Thread noreply
This is an automated email from the git hooks/post-receive script.

transifex pushed a 
commit to branch 
master
in repository apps/xfburn.

commit ffb67916d3f0793b4ca10dfa512ff7404ce2443f
Author: Charles Monzat 
Date:   Sat Oct 13 18:31:44 2018 +0200

I18n: Update translation fr (100%).

306 translated messages.

Transifex (https://www.transifex.com/xfce/public/).
---
 po/fr.po | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/po/fr.po b/po/fr.po
index e8b5b37..8e403ed 100644
--- a/po/fr.po
+++ b/po/fr.po
@@ -20,7 +20,7 @@ msgstr ""
 "Project-Id-Version: Xfce Apps\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2018-09-24 00:31+0200\n"
-"PO-Revision-Date: 2018-10-12 10:07+\n"
+"PO-Revision-Date: 2018-10-13 12:29+\n"
 "Last-Translator: Charles Monzat \n"
 "Language-Team: French 
(http://www.transifex.com/xfce/xfce-apps/language/fr/)\n"
 "MIME-Version: 1.0\n"

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [xfce/xfce4-settings] branch master updated (b2ced06 -> f00852b)

2018-10-13 Thread noreply
This is an automated email from the git hooks/post-receive script.

transifex pushed a 
change to branch 
master
in repository xfce/xfce4-settings.

  from  b2ced06   I18n: Update translation kk (100%).
   new  f00852b   I18n: Update translation he (100%).

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 po/he.po | 196 +++
 1 file changed, 134 insertions(+), 62 deletions(-)

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [apps/xfburn] branch master updated (c6fd45c -> 828eab3)

2018-10-13 Thread noreply
This is an automated email from the git hooks/post-receive script.

transifex pushed a 
change to branch 
master
in repository apps/xfburn.

  from  c6fd45c   I18n: Update translation fr (100%).
   new  ffb6791   I18n: Update translation fr (100%).
   new  828eab3   I18n: Update translation he (100%).

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 po/fr.po |  2 +-
 po/he.po | 14 +++---
 2 files changed, 8 insertions(+), 8 deletions(-)

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [xfce/thunar] 01/01: I18n: Update translation he (100%).

2018-10-13 Thread noreply
This is an automated email from the git hooks/post-receive script.

transifex pushed a 
commit to branch 
xfce-4.14
in repository xfce/thunar.

commit 9e8ede7caf2a250e23a6eaac7aaf0a4f0edbf58f
Author: Elishai Eliyahu 
Date:   Sat Oct 13 18:30:50 2018 +0200

I18n: Update translation he (100%).

762 translated messages.

Transifex (https://www.transifex.com/xfce/public/).
---
 po/he.po | 228 ++-
 1 file changed, 122 insertions(+), 106 deletions(-)

diff --git a/po/he.po b/po/he.po
index 1cbfcdc..98668bc 100644
--- a/po/he.po
+++ b/po/he.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-09-13 00:31+0200\n"
+"POT-Creation-Date: 2018-09-27 06:31+0200\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: Elishai Eliyahu , 2018\n"
 "Language-Team: Hebrew (https://www.transifex.com/xfce/teams/16840/he/)\n"
@@ -145,7 +145,7 @@ msgstr "נכשל להפעיל תהליך"
 #: ../thunar/thunar-launcher.c:1216 ../thunar/thunar-location-entry.c:356
 #: ../thunar/thunar-location-entry.c:384
 #: ../thunar/thunar-shortcuts-view.c:1680
-#: ../thunar/thunar-shortcuts-view.c:1708 ../thunar/thunar-window.c:2316
+#: ../thunar/thunar-shortcuts-view.c:1708 ../thunar/thunar-window.c:2360
 #, c-format
 msgid "Failed to open \"%s\""
 msgstr "נכשל לפתוח את \"%s\""
@@ -300,7 +300,7 @@ msgstr "להסיר את כל הקבצים והתיקיות מתוך האשפה?"
 #. prepare the menu item
 #: ../thunar/thunar-application.c:2306 ../thunar/thunar-location-buttons.c:188
 #: ../thunar/thunar-shortcuts-view.c:1226 ../thunar/thunar-tree-view.c:1356
-#: ../thunar/thunar-window.c:351 ../plugins/thunar-tpa/thunar-tpa.c:175
+#: ../thunar/thunar-window.c:355 ../plugins/thunar-tpa/thunar-tpa.c:175
 msgid "_Empty Trash"
 msgstr "_רוקן אשפה"
 
@@ -379,7 +379,7 @@ msgstr "השתמש כ_ברירת מחדל לסוג קובץ זה"
 #. add the "Ok"/"Open" button
 #: ../thunar/thunar-chooser-dialog.c:291
 #: ../thunar/thunar-chooser-dialog.c:1155
-#: ../thunar/thunar-properties-dialog.c:820 ../thunar/thunar-window.c:3034
+#: ../thunar/thunar-properties-dialog.c:820 ../thunar/thunar-window.c:3078
 #: ../plugins/thunar-uca/thunar-uca-editor.c:142
 #: ../plugins/thunar-uca/thunar-uca-editor.c:435
 msgid "_OK"
@@ -533,7 +533,7 @@ msgstr "הגדר עמודות בתצוגת הרשימה המפורטת"
 #. add the "Help" button
 #: ../thunar/thunar-column-editor.c:126
 #: ../thunar/thunar-preferences-dialog.c:254
-#: ../thunar/thunar-properties-dialog.c:253 ../thunar/thunar-window.c:374
+#: ../thunar/thunar-properties-dialog.c:253 ../thunar/thunar-window.c:380
 msgid "_Help"
 msgstr "_עזרה"
 
@@ -898,7 +898,7 @@ msgid "Trash"
 msgstr "אשפה"
 
 #: ../thunar/thunar-file.c:1078 ../thunar/thunar-gio-extensions.c:253
-#: ../thunar/thunar-shortcuts-model.c:928 ../thunar/thunar-window.c:370
+#: ../thunar/thunar-shortcuts-model.c:928 ../thunar/thunar-window.c:376
 msgid "File System"
 msgstr "מערכת קבצים"
 
@@ -1414,7 +1414,7 @@ msgstr "פתח בחלון חדש"
 msgid "Create _Folder..."
 msgstr "צור _תיקייה..."
 
-#: ../thunar/thunar-location-buttons.c:188 ../thunar/thunar-window.c:351
+#: ../thunar/thunar-location-buttons.c:188 ../thunar/thunar-window.c:355
 msgid "Delete all files and folders in the Trash"
 msgstr "מחק את כל הקבצים והתיקיות שבתוך אשפה"
 
@@ -1459,7 +1459,7 @@ msgstr "העבר או העתק את הקבצים שבחרת מקודם בעזר
 msgid "View the properties of the folder \"%s\""
 msgstr "הצג את המאפיינים של התיקייה \"%s\""
 
-#: ../thunar/thunar-location-entry.c:195 ../thunar/thunar-window.c:359
+#: ../thunar/thunar-location-entry.c:195 ../thunar/thunar-window.c:365
 msgid "Reload the current folder"
 msgstr "טען מחדש את התיקייה הנוכחית"
 
@@ -2049,7 +2049,7 @@ msgid "Cancel"
 msgstr "ביטול"
 
 #. update the status text
-#: ../thunar/thunar-progress-view.c:358
+#: ../thunar/thunar-progress-view.c:354
 msgid "Cancelling..."
 msgstr "כעת מבטל..."
 
@@ -2141,11 +2141,11 @@ msgstr "מאפיינים"
 msgid "mixed"
 msgstr "מעורב"
 
-#: ../thunar/thunar-renamer-dialog.c:189 ../thunar/thunar-window.c:347
+#: ../thunar/thunar-renamer-dialog.c:189 ../thunar/thunar-window.c:351
 msgid "_File"
 msgstr "_קובץ"
 
-#: ../thunar/thunar-renamer-dialog.c:190 ../thunar/thunar-window.c:350
+#: ../thunar/thunar-renamer-dialog.c:190 ../thunar/thunar-window.c:354
 msgid "_Send To"
 msgstr "_שלח אל"
 
@@ -2169,7 +2169,7 @@ msgstr "נקה"
 msgid "Clear the file list below"
 msgstr "נקה את רשימת הקבצים למטה"
 
-#: ../thunar/thunar-renamer-dialog.c:195 ../thunar/thunar-window.c:376
+#: ../thunar/thunar-renamer-dialog.c:195 ../thunar/thunar-window.c:382
 msgid "_About"
 msgstr "_אודות"
 
@@ -2503,7 +2503,7 @@ msgstr "בחר הכל ורק את הפריטים שלא נבחרים כרגע"
 msgid "Du_plicate"
 msgstr "ש_כפל"
 
-#: ../thunar/thunar-standard-view.c:417 ../thunar/thunar-standard-view.c:4554
+#: 

[Xfce4-commits] [xfce/thunar-volman] 01/01: I18n: Update translation he (100%).

2018-10-13 Thread noreply
This is an automated email from the git hooks/post-receive script.

transifex pushed a 
commit to branch 
master
in repository xfce/thunar-volman.

commit d66ac82c5c4957e284ba10d0ac12e0e3c1767e97
Author: Elishai Eliyahu 
Date:   Sat Oct 13 18:30:31 2018 +0200

I18n: Update translation he (100%).

120 translated messages.

Transifex (https://www.transifex.com/xfce/public/).
---
 po/he.po | 95 
 1 file changed, 53 insertions(+), 42 deletions(-)

diff --git a/po/he.po b/po/he.po
index f064f58..4008e10 100644
--- a/po/he.po
+++ b/po/he.po
@@ -11,9 +11,9 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Thunar-volman\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-09-03 00:30+0200\n"
-"PO-Revision-Date: 2018-09-14 00:16+\n"
-"Last-Translator: Xfce Bot \n"
+"POT-Creation-Date: 2018-09-26 06:30+0200\n"
+"PO-Revision-Date: 2018-10-13 14:45+\n"
+"Last-Translator: Elishai Eliyahu \n"
 "Language-Team: Hebrew 
(http://www.transifex.com/xfce/thunar-volman/language/he/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -74,10 +74,10 @@ msgstr "האם ברצונך לייבא את התצלומים או לנהל את
 
 #: ../thunar-volman/tvm-block-device.c:208
 #: ../thunar-volman/tvm-block-device.c:277
-#: ../thunar-volman/tvm-block-device.c:378
-#: ../thunar-volman/tvm-block-device.c:425
-#: ../thunar-volman/tvm-block-device.c:507
-#: ../thunar-volman/tvm-block-device.c:830 ../thunar-volman/tvm-run.c:192
+#: ../thunar-volman/tvm-block-device.c:379
+#: ../thunar-volman/tvm-block-device.c:426
+#: ../thunar-volman/tvm-block-device.c:508
+#: ../thunar-volman/tvm-block-device.c:838 ../thunar-volman/tvm-run.c:192
 #: ../thunar-volman/tvm-run.c:203
 msgid "Ig_nore"
 msgstr "הת_עלם"
@@ -108,111 +108,122 @@ msgstr "ישנם תצלומים על הכרטיס. האם ברצונך להוס
 
 #. prompt the user to execute the file
 #. prompt the user to execute this file
-#: ../thunar-volman/tvm-block-device.c:373
-#: ../thunar-volman/tvm-block-device.c:420
+#: ../thunar-volman/tvm-block-device.c:374
+#: ../thunar-volman/tvm-block-device.c:421
 #, c-format
 msgid "Would you like to allow \"%s\" to run?"
 msgstr "האם ברצונך לאפשר להריץ את \"%s\""
 
-#: ../thunar-volman/tvm-block-device.c:376
-#: ../thunar-volman/tvm-block-device.c:423
+#: ../thunar-volman/tvm-block-device.c:377
+#: ../thunar-volman/tvm-block-device.c:424
 msgid "Auto-Run Confirmation"
 msgstr "אישור הרצה אוטומטית"
 
-#: ../thunar-volman/tvm-block-device.c:377
-#: ../thunar-volman/tvm-block-device.c:424
+#: ../thunar-volman/tvm-block-device.c:378
+#: ../thunar-volman/tvm-block-device.c:425
 msgid "Auto-Run capability detected"
 msgstr "יכולת הרצה אוטומטית אותרה"
 
-#: ../thunar-volman/tvm-block-device.c:379
-#: ../thunar-volman/tvm-block-device.c:426
+#: ../thunar-volman/tvm-block-device.c:380
+#: ../thunar-volman/tvm-block-device.c:427
 msgid "_Allow Auto-Run"
 msgstr "_אפשר הרצה אוטומטית"
 
 #. prompt the user whether to autoopen this file
-#: ../thunar-volman/tvm-block-device.c:502
+#: ../thunar-volman/tvm-block-device.c:503
 #, c-format
 msgid "Would you like to open \"%s\"?"
 msgstr "האם ברצונך לפתוח את \"%s\"?"
 
-#: ../thunar-volman/tvm-block-device.c:505
+#: ../thunar-volman/tvm-block-device.c:506
 msgid "Auto-Open Confirmation"
 msgstr "אישור פתיחה אוטומטית"
 
-#: ../thunar-volman/tvm-block-device.c:506
+#: ../thunar-volman/tvm-block-device.c:507
 msgid "Auto-Open capability detected"
 msgstr "יכולת פתיחה אוטומטית אותרה"
 
-#: ../thunar-volman/tvm-block-device.c:508
+#: ../thunar-volman/tvm-block-device.c:509
 msgid "_Open"
 msgstr "_פתח"
 
-#: ../thunar-volman/tvm-block-device.c:619
+#. generate notification info
+#: ../thunar-volman/tvm-block-device.c:617
 msgid "CD mounted"
 msgstr "תקליטור מעוגן"
 
-#: ../thunar-volman/tvm-block-device.c:619
-msgid "DVD mounted"
-msgstr "‏DVD מעוגן"
-
-#: ../thunar-volman/tvm-block-device.c:621
+#: ../thunar-volman/tvm-block-device.c:618
 msgid "The CD was mounted automatically"
 msgstr "התקליטור עוגן אוטומטית"
 
-#: ../thunar-volman/tvm-block-device.c:622
+#. generate notification info
+#: ../thunar-volman/tvm-block-device.c:623
+msgid "DVD mounted"
+msgstr "‏DVD מעוגן"
+
+#: ../thunar-volman/tvm-block-device.c:624
 msgid "The DVD was mounted automatically"
 msgstr "ה־DVD עוגן אוטומטית"
 
-#: ../thunar-volman/tvm-block-device.c:632
+#. generate notification info
+#: ../thunar-volman/tvm-block-device.c:629
+msgid "Blu-ray mounted"
+msgstr "בלו-ריי מעוגן"
+
+#: ../thunar-volman/tvm-block-device.c:630
+msgid "The Blu-ray was mounted automatically"
+msgstr "הבלו-ריי עוגן אוטומטית"
+
+#: ../thunar-volman/tvm-block-device.c:640
 msgid "Volume mounted"
 msgstr "כרך עוגן"
 
-#: ../thunar-volman/tvm-block-device.c:635
+#: ../thunar-volman/tvm-block-device.c:643
 #, c-format
 msgid "The volume \"%s\" was mounted automatically"
 msgstr "הכרך \"%s\" 

[Xfce4-commits] [xfce/thunar-volman] branch master updated (226232e -> d66ac82)

2018-10-13 Thread noreply
This is an automated email from the git hooks/post-receive script.

transifex pushed a 
change to branch 
master
in repository xfce/thunar-volman.

  from  226232e   I18n: Update translation kk (100%).
   new  d66ac82   I18n: Update translation he (100%).

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 po/he.po | 95 
 1 file changed, 53 insertions(+), 42 deletions(-)

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [xfce/thunar] 01/01: I18n: Update translation he (100%).

2018-10-13 Thread noreply
This is an automated email from the git hooks/post-receive script.

transifex pushed a 
commit to branch 
master
in repository xfce/thunar.

commit 5cd6a47993390fa51a27aa0954e9923fc7e9e6c8
Author: Elishai Eliyahu 
Date:   Sat Oct 13 18:30:14 2018 +0200

I18n: Update translation he (100%).

763 translated messages.

Transifex (https://www.transifex.com/xfce/public/).
---
 po/he.po | 230 ++-
 1 file changed, 123 insertions(+), 107 deletions(-)

diff --git a/po/he.po b/po/he.po
index fb71aee..7ae3db7 100644
--- a/po/he.po
+++ b/po/he.po
@@ -13,8 +13,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Thunar\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-09-13 00:30+0200\n"
-"PO-Revision-Date: 2018-09-18 11:44+\n"
+"POT-Creation-Date: 2018-09-27 06:30+0200\n"
+"PO-Revision-Date: 2018-10-13 15:01+\n"
 "Last-Translator: Elishai Eliyahu \n"
 "Language-Team: Hebrew (http://www.transifex.com/xfce/thunar/language/he/)\n"
 "MIME-Version: 1.0\n"
@@ -144,7 +144,7 @@ msgstr "נכשל להפעיל תהליך"
 #: ../thunar/thunar-launcher.c:1216 ../thunar/thunar-location-entry.c:356
 #: ../thunar/thunar-location-entry.c:384
 #: ../thunar/thunar-shortcuts-view.c:1680
-#: ../thunar/thunar-shortcuts-view.c:1708 ../thunar/thunar-window.c:2316
+#: ../thunar/thunar-shortcuts-view.c:1708 ../thunar/thunar-window.c:2360
 #, c-format
 msgid "Failed to open \"%s\""
 msgstr "נכשל לפתוח את \"%s\""
@@ -289,7 +289,7 @@ msgstr "להסיר את כל הקבצים והתיקיות מתוך האשפה?"
 #. prepare the menu item
 #: ../thunar/thunar-application.c:2306 ../thunar/thunar-location-buttons.c:188
 #: ../thunar/thunar-shortcuts-view.c:1226 ../thunar/thunar-tree-view.c:1356
-#: ../thunar/thunar-window.c:351 ../plugins/thunar-tpa/thunar-tpa.c:175
+#: ../thunar/thunar-window.c:355 ../plugins/thunar-tpa/thunar-tpa.c:175
 msgid "_Empty Trash"
 msgstr "_רוקן אשפה"
 
@@ -366,7 +366,7 @@ msgstr "השתמש כ_ברירת מחדל לסוג קובץ זה"
 #. add the "Ok"/"Open" button
 #: ../thunar/thunar-chooser-dialog.c:291
 #: ../thunar/thunar-chooser-dialog.c:1155
-#: ../thunar/thunar-properties-dialog.c:820 ../thunar/thunar-window.c:3034
+#: ../thunar/thunar-properties-dialog.c:820 ../thunar/thunar-window.c:3078
 #: ../plugins/thunar-uca/thunar-uca-editor.c:142
 #: ../plugins/thunar-uca/thunar-uca-editor.c:435
 msgid "_OK"
@@ -517,7 +517,7 @@ msgstr "הגדר עמודות בתצוגת הרשימה המפורטת"
 #. add the "Help" button
 #: ../thunar/thunar-column-editor.c:126
 #: ../thunar/thunar-preferences-dialog.c:254
-#: ../thunar/thunar-properties-dialog.c:253 ../thunar/thunar-window.c:374
+#: ../thunar/thunar-properties-dialog.c:253 ../thunar/thunar-window.c:380
 msgid "_Help"
 msgstr "_עזרה"
 
@@ -877,7 +877,7 @@ msgid "Trash"
 msgstr "אשפה"
 
 #: ../thunar/thunar-file.c:1078 ../thunar/thunar-gio-extensions.c:253
-#: ../thunar/thunar-shortcuts-model.c:928 ../thunar/thunar-window.c:370
+#: ../thunar/thunar-shortcuts-model.c:928 ../thunar/thunar-window.c:376
 msgid "File System"
 msgstr "מערכת קבצים"
 
@@ -1367,7 +1367,7 @@ msgstr "פתח בחלון חדש"
 msgid "Create _Folder..."
 msgstr "צור _תיקייה..."
 
-#: ../thunar/thunar-location-buttons.c:188 ../thunar/thunar-window.c:351
+#: ../thunar/thunar-location-buttons.c:188 ../thunar/thunar-window.c:355
 msgid "Delete all files and folders in the Trash"
 msgstr "מחק את כל הקבצים והתיקיות שבתוך אשפה"
 
@@ -1412,7 +1412,7 @@ msgstr "העבר או העתק את הקבצים שבחרת מקודם בעזר
 msgid "View the properties of the folder \"%s\""
 msgstr "הצג את המאפיינים של התיקייה \"%s\""
 
-#: ../thunar/thunar-location-entry.c:195 ../thunar/thunar-window.c:359
+#: ../thunar/thunar-location-entry.c:195 ../thunar/thunar-window.c:365
 msgid "Reload the current folder"
 msgstr "טען מחדש את התיקייה הנוכחית"
 
@@ -1963,7 +1963,7 @@ msgid "Cancel"
 msgstr "ביטול"
 
 #. update the status text
-#: ../thunar/thunar-progress-view.c:358
+#: ../thunar/thunar-progress-view.c:354
 msgid "Cancelling..."
 msgstr "כעת מבטל..."
 
@@ -2055,11 +2055,11 @@ msgstr "מאפיינים"
 msgid "mixed"
 msgstr "מעורב"
 
-#: ../thunar/thunar-renamer-dialog.c:189 ../thunar/thunar-window.c:347
+#: ../thunar/thunar-renamer-dialog.c:189 ../thunar/thunar-window.c:351
 msgid "_File"
 msgstr "_קובץ"
 
-#: ../thunar/thunar-renamer-dialog.c:190 ../thunar/thunar-window.c:350
+#: ../thunar/thunar-renamer-dialog.c:190 ../thunar/thunar-window.c:354
 msgid "_Send To"
 msgstr "_שלח אל"
 
@@ -2083,7 +2083,7 @@ msgstr "נקה"
 msgid "Clear the file list below"
 msgstr "נקה את רשימת הקבצים למטה"
 
-#: ../thunar/thunar-renamer-dialog.c:195 ../thunar/thunar-window.c:376
+#: ../thunar/thunar-renamer-dialog.c:195 ../thunar/thunar-window.c:382
 msgid "_About"
 msgstr "_אודות"
 
@@ -2407,7 +2407,7 @@ msgstr "בחר הכל ורק את הפריטים שלא נבחרים כרגע"
 msgid "Du_plicate"
 msgstr "ש_כפל"
 
-#: ../thunar/thunar-standard-view.c:418 

[Xfce4-commits] [xfce/thunar] branch master updated (412fa18 -> 5cd6a47)

2018-10-13 Thread noreply
This is an automated email from the git hooks/post-receive script.

transifex pushed a 
change to branch 
master
in repository xfce/thunar.

  from  412fa18   I18n: Update translation ja (99%).
   new  5cd6a47   I18n: Update translation he (100%).

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 po/he.po | 230 ++-
 1 file changed, 123 insertions(+), 107 deletions(-)

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [panel-plugins/xfce4-whiskermenu-plugin] 04/04: I18n: Update translation el (98%).

2018-10-13 Thread noreply
This is an automated email from the git hooks/post-receive script.

gottcode pushed a 
commit to branch 
master
in repository panel-plugins/xfce4-whiskermenu-plugin.

commit 4c931323ebd1ebeaa9960ddd104803467ee03d12
Author: Graeme Gott 
Date:   Sat Oct 13 11:56:10 2018 -0400

I18n: Update translation el (98%).
---
 panel-plugin/whiskermenu.desktop |  2 +-
 po/el.po | 22 +++---
 2 files changed, 12 insertions(+), 12 deletions(-)

diff --git a/panel-plugin/whiskermenu.desktop b/panel-plugin/whiskermenu.desktop
index ab5189e..cb76fa2 100644
--- a/panel-plugin/whiskermenu.desktop
+++ b/panel-plugin/whiskermenu.desktop
@@ -65,7 +65,7 @@ Comment[cs]=Zobrazit nabídku snadného přístupu k 
nainstalovaným aplikacím
 Comment[cy]=Dewislen i gael hyd at eich rhaglenni yn hawdd
 Comment[da]=Vis en menu for hurtig adgang til installerede programmer
 Comment[de]=Zeigt ein Menü, um einfach auf installierte Anwendungen zuzugreifen
-Comment[el]=Εμφανίζει ένα μενού για εύκολη πρόσβαση στις εγκατεστημένες 
εφαρμογές
+Comment[el]=Εμφάνιση μενού για εύκολη πρόσβαση στις εγκατεστημένες εφαρμογές
 Comment[en_GB]=Show a menu to easily access installed applications
 Comment[es]=Mostrar un menú para acceder fácilmente a las aplicaciones 
instaladas
 Comment[fa]=نمایش یک منو برای دسترسی آسان به برنامه‌های نصب‌شده
diff --git a/po/el.po b/po/el.po
index 3ea8b26..690a37f 100644
--- a/po/el.po
+++ b/po/el.po
@@ -14,7 +14,7 @@ msgstr ""
 "Project-Id-Version: Whisker Menu\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2018-09-08 11:45-0400\n"
-"PO-Revision-Date: 2018-09-23 10:11+\n"
+"PO-Revision-Date: 2018-10-11 16:03+\n"
 "Last-Translator: Ioannis LM\n"
 "Language-Team: Greek (http://www.transifex.com/gottcode/xfce4-whiskermenu-;
 "plugin/language/el/)\n"
@@ -26,7 +26,7 @@ msgstr ""
 
 #: ../panel-plugin/configuration-dialog.cpp:862
 msgid "Add action"
-msgstr "Προσθήκη δράσης"
+msgstr "Προσθήκη ενέργειας"
 
 #: ../panel-plugin/page.cpp:258
 msgid "Add to Desktop"
@@ -94,7 +94,7 @@ msgstr "Εκκαθάριση Πρόσφατα χρησιμοποιημένων"
 
 #: ../panel-plugin/plugin.cpp:409
 msgid "Copyright © 2013-2018 Graeme Gott"
-msgstr ""
+msgstr "Πνευματικά δικαιώματα © 2013-2018 Graeme Gott"
 
 #: ../panel-plugin/configuration-dialog.cpp:890
 msgid "Details"
@@ -132,7 +132,7 @@ msgstr "Η επεξεργασία του προφίλ απέτυχε."
 #: ../panel-plugin/run-action.cpp:41 ../panel-plugin/search-action.cpp:188
 #, c-format
 msgid "Failed to execute command \"%s\"."
-msgstr "Αποτυχία εκτέλεσης της εντολής «%s»."
+msgstr "Αποτυχία εκτέλεσης της εντολής \"%s\"."
 
 #: ../panel-plugin/settings.cpp:166
 msgid "Failed to hibernate."
@@ -276,11 +276,11 @@ msgstr "Αφαίρεση από τα αγαπημένα"
 #: ../panel-plugin/configuration-dialog.cpp:459
 #, c-format
 msgid "Remove action \"%s\"?"
-msgstr "Αφαίρεση της δράσης \"%s\";"
+msgstr "Αφαίρεση της ενέργειας \"%s\";"
 
 #: ../panel-plugin/configuration-dialog.cpp:871
 msgid "Remove selected action"
-msgstr "Αφαίρεση της επιλεγμένης δράσης"
+msgstr "Αφαίρεση της επιλεγμένης ενέργειας"
 
 #: ../panel-plugin/settings.cpp:150
 #, c-format
@@ -298,11 +298,11 @@ msgstr "Εκτέλεση σε τερματικό"
 
 #: ../panel-plugin/configuration-dialog.cpp:102
 msgid "Search Actio_ns"
-msgstr "Αναζήτηση _δράσεων"
+msgstr "Ενέργειες ανα_ζήτησης"
 
 #: ../panel-plugin/search-action.cpp:259
 msgid "Search Action"
-msgstr "Αναζήτηση δράσης"
+msgstr "Αναζήτηση ενέργειας"
 
 #: ../panel-plugin/configuration-dialog.cpp:135
 msgid "Select An Icon"
@@ -314,11 +314,11 @@ msgstr "Επιλογή εντολής"
 
 #: ../panel-plugin/configuration-dialog.cpp:777
 msgid "Session Commands"
-msgstr ""
+msgstr "Εντολές συνεδρίας"
 
 #: ../panel-plugin/whiskermenu.desktop.in:6
 msgid "Show a menu to easily access installed applications"
-msgstr "Εμφανίζει ένα μενού για εύκολη πρόσβαση στις εγκατεστημένες εφαρμογές"
+msgstr "Εμφάνιση μενού για εύκολη πρόσβαση στις εγκατεστημένες εφαρμογές"
 
 #: ../panel-plugin/configuration-dialog.cpp:629
 msgid "Show application _descriptions"
@@ -387,7 +387,7 @@ msgstr "Αλλαγή κατηγοριών στο _πέρασμα του ποντ
 
 #: ../panel-plugin/configuration-dialog.cpp:458
 msgid "The action will be deleted permanently."
-msgstr "Η δράση αυτή θα διαγραφεί μόνιμα"
+msgstr "Αυτή η ενέργεια θα διαγραφεί μόνιμα"
 
 #: ../panel-plugin/configuration-dialog.cpp:565
 msgid "Title"

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [panel-plugins/xfce4-whiskermenu-plugin] 03/04: I18n: Update translation ru (100%).

2018-10-13 Thread noreply
This is an automated email from the git hooks/post-receive script.

gottcode pushed a 
commit to branch 
master
in repository panel-plugins/xfce4-whiskermenu-plugin.

commit f0921fa664f91e67a41ca1c9eef818541c372332
Author: Graeme Gott 
Date:   Sat Oct 13 11:55:22 2018 -0400

I18n: Update translation ru (100%).
---
 po/ru.po | 62 --
 1 file changed, 32 insertions(+), 30 deletions(-)

diff --git a/po/ru.po b/po/ru.po
index 52dd216..34b7fb7 100644
--- a/po/ru.po
+++ b/po/ru.po
@@ -7,13 +7,14 @@
 # Kyrill Detinov , 2013,2016
 # Sergey Alyoshin , 2013-2015,2017-2018
 # Sergey Shlyapugin , 2013
+# Владимир Пенчиков , 2018
 msgid ""
 msgstr ""
 "Project-Id-Version: Whisker Menu\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2018-09-08 11:45-0400\n"
-"PO-Revision-Date: 2018-07-22 07:04+\n"
-"Last-Translator: Sergey Alyoshin \n"
+"PO-Revision-Date: 2018-10-13 05:08+\n"
+"Last-Translator: Владимир Пенчиков \n"
 "Language-Team: Russian (http://www.transifex.com/gottcode/xfce4-whiskermenu-;
 "plugin/language/ru/)\n"
 "Language: ru\n"
@@ -54,7 +55,7 @@ msgstr "Альтернативное меню запуска приложени
 
 #: ../panel-plugin/configuration-dialog.cpp:751
 msgid "Amount of _items:"
-msgstr "Количество элементов:"
+msgstr "_Количество элементов:"
 
 #: ../panel-plugin/plugin.cpp:212
 msgid "Applications"
@@ -62,19 +63,19 @@ msgstr "Приложения"
 
 #: ../panel-plugin/settings.cpp:143
 msgid "Are you sure you want to log out?"
-msgstr ""
+msgstr "Действительно выйти?"
 
 #: ../panel-plugin/settings.cpp:149
 msgid "Are you sure you want to restart?"
-msgstr ""
+msgstr "Действительно перезагрузить?"
 
 #: ../panel-plugin/settings.cpp:155
 msgid "Are you sure you want to shut down?"
-msgstr ""
+msgstr "Действительно выключить?"
 
 #: ../panel-plugin/configuration-dialog.cpp:678
 msgid "Background opacit_y:"
-msgstr "Прозрачность фона:"
+msgstr "Прозрачность _фона:"
 
 #: ../panel-plugin/command-edit.cpp:49
 msgid "Browse the file system to choose a custom command."
@@ -106,15 +107,15 @@ msgstr "Показы_вать:"
 
 #: ../panel-plugin/configuration-dialog.cpp:768
 msgid "Display by _default"
-msgstr "Показывать по умолчанию"
+msgstr "Показывать по у_молчанию"
 
 #: ../panel-plugin/settings.cpp:161
 msgid "Do you want to suspend to RAM?"
-msgstr ""
+msgstr "Сохранить сессию в RAM?"
 
 #: ../panel-plugin/settings.cpp:167
 msgid "Do you want to suspend to disk?"
-msgstr ""
+msgstr "Сохранить сессию на диск?"
 
 #: ../panel-plugin/page.cpp:269
 msgid "Edit Application..."
@@ -122,7 +123,7 @@ msgstr "Изменить приложение..."
 
 #: ../panel-plugin/settings.cpp:178
 msgid "Edit _Profile"
-msgstr "Изменить профиль"
+msgstr "Изменить _профиль"
 
 #: ../panel-plugin/settings.cpp:180
 msgid "Failed to edit profile."
@@ -136,7 +137,7 @@ msgstr "Ошибка выполнения команды «%s»."
 
 #: ../panel-plugin/settings.cpp:166
 msgid "Failed to hibernate."
-msgstr ""
+msgstr "Ошибка включения режима гибернации"
 
 #: ../panel-plugin/settings.cpp:176
 msgid "Failed to launch menu editor."
@@ -156,15 +157,15 @@ msgstr "Не удалось открыть диспетчер настроек."
 
 #: ../panel-plugin/settings.cpp:148
 msgid "Failed to restart."
-msgstr ""
+msgstr "Ошибка при перезагрузке."
 
 #: ../panel-plugin/settings.cpp:154
 msgid "Failed to shut down."
-msgstr ""
+msgstr "Ошибка при выключении."
 
 #: ../panel-plugin/settings.cpp:160
 msgid "Failed to suspend."
-msgstr ""
+msgstr "Ошибка включения режима сна"
 
 #: ../panel-plugin/settings.cpp:138
 msgid "Failed to switch users."
@@ -177,7 +178,7 @@ msgstr "Избранное"
 #: ../panel-plugin/settings.cpp:168
 #, c-format
 msgid "Hibernating computer in %d seconds."
-msgstr ""
+msgstr "Включение режима гибернации через %d секунд."
 
 #: ../panel-plugin/configuration-dialog.cpp:564
 msgid "Icon"
@@ -205,7 +206,7 @@ msgstr "Большой"
 
 #: ../panel-plugin/settings.cpp:170
 msgid "Log Ou_t..."
-msgstr ""
+msgstr "_Выйти"
 
 #: ../panel-plugin/settings.cpp:140
 msgid "Log _Out"
@@ -214,7 +215,7 @@ msgstr "_Выйти"
 #: ../panel-plugin/settings.cpp:144
 #, c-format
 msgid "Logging out in %d seconds."
-msgstr ""
+msgstr "Выход через %d с"
 
 #: ../panel-plugin/settings.cpp:182
 msgid "Man Pages"
@@ -285,7 +286,7 @@ msgstr "Удалить выбранное действие"
 #: ../panel-plugin/settings.cpp:150
 #, c-format
 msgid "Restarting computer in %d seconds."
-msgstr ""
+msgstr "Перезагрузка компьютера через %d с"
 
 #: ../panel-plugin/run-action.cpp:71
 #, c-format
@@ -314,7 +315,7 @@ msgstr "Выбор команды"
 
 #: ../panel-plugin/configuration-dialog.cpp:777
 msgid "Session Commands"
-msgstr ""
+msgstr "Команды выхода"
 
 #: ../panel-plugin/whiskermenu.desktop.in:6
 msgid "Show a menu to easily access installed applications"
@@ -330,7 +331,7 @@ msgstr "Показывать всплывающие ко_мментарии к 
 
 #: ../panel-plugin/configuration-dialog.cpp:781
 msgid "Show 

[Xfce4-commits] [panel-plugins/xfce4-whiskermenu-plugin] 01/04: I18n: Update translation pl (100%).

2018-10-13 Thread noreply
This is an automated email from the git hooks/post-receive script.

gottcode pushed a 
commit to branch 
master
in repository panel-plugins/xfce4-whiskermenu-plugin.

commit bfd82d2c9e5ae83797b7d2b58e03fd954332d5d5
Author: Graeme Gott 
Date:   Thu Oct 4 13:46:04 2018 -0400

I18n: Update translation pl (100%).
---
 po/pl.po | 40 
 1 file changed, 20 insertions(+), 20 deletions(-)

diff --git a/po/pl.po b/po/pl.po
index 0e0b7cc..0a69844 100644
--- a/po/pl.po
+++ b/po/pl.po
@@ -21,7 +21,7 @@ msgstr ""
 "Project-Id-Version: Whisker Menu\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2018-09-08 11:45-0400\n"
-"PO-Revision-Date: 2018-09-11 10:17+\n"
+"PO-Revision-Date: 2018-10-03 18:17+\n"
 "Last-Translator: Michał Trzebiatowski \n"
 "Language-Team: Polish (http://www.transifex.com/gottcode/xfce4-whiskermenu-;
 "plugin/language/pl/)\n"
@@ -75,11 +75,11 @@ msgstr "Czy na pewno chcesz się wylogować?"
 
 #: ../panel-plugin/settings.cpp:149
 msgid "Are you sure you want to restart?"
-msgstr "Czy na pewno chcesz uruchomić ponownie system?"
+msgstr "Czy na pewno chcesz ponownie uruchomić komputer?"
 
 #: ../panel-plugin/settings.cpp:155
 msgid "Are you sure you want to shut down?"
-msgstr "Czy na pewno chcesz zamknąć system?"
+msgstr "Czy na pewno chcesz wyłączyć komputer?"
 
 #: ../panel-plugin/configuration-dialog.cpp:678
 msgid "Background opacit_y:"
@@ -119,11 +119,11 @@ msgstr "_Domyślnie wyświetlane"
 
 #: ../panel-plugin/settings.cpp:161
 msgid "Do you want to suspend to RAM?"
-msgstr ""
+msgstr "Czy chcesz wstrzymać działanie komputera?"
 
 #: ../panel-plugin/settings.cpp:167
 msgid "Do you want to suspend to disk?"
-msgstr ""
+msgstr "Czy chcesz zahibernować działanie komputera?"
 
 #: ../panel-plugin/page.cpp:269
 msgid "Edit Application..."
@@ -145,7 +145,7 @@ msgstr "Nie udało się uruchomić polecenia „%s”."
 
 #: ../panel-plugin/settings.cpp:166
 msgid "Failed to hibernate."
-msgstr ""
+msgstr "Nie udało się zahibernować."
 
 #: ../panel-plugin/settings.cpp:176
 msgid "Failed to launch menu editor."
@@ -169,11 +169,11 @@ msgstr "Nie udało się ponownie uruchomić."
 
 #: ../panel-plugin/settings.cpp:154
 msgid "Failed to shut down."
-msgstr ""
+msgstr "Nie udało się wyłączyć."
 
 #: ../panel-plugin/settings.cpp:160
 msgid "Failed to suspend."
-msgstr ""
+msgstr "Nie udało się wstrzymać."
 
 #: ../panel-plugin/settings.cpp:138
 msgid "Failed to switch users."
@@ -186,7 +186,7 @@ msgstr "Ulubione"
 #: ../panel-plugin/settings.cpp:168
 #, c-format
 msgid "Hibernating computer in %d seconds."
-msgstr ""
+msgstr "Działanie komputera zostanie zahibernowane za %d sekund."
 
 #: ../panel-plugin/configuration-dialog.cpp:564
 msgid "Icon"
@@ -214,7 +214,7 @@ msgstr "Większy"
 
 #: ../panel-plugin/settings.cpp:170
 msgid "Log Ou_t..."
-msgstr ""
+msgstr "Wy_loguj…"
 
 #: ../panel-plugin/settings.cpp:140
 msgid "Log _Out"
@@ -223,7 +223,7 @@ msgstr "_Wyloguj"
 #: ../panel-plugin/settings.cpp:144
 #, c-format
 msgid "Logging out in %d seconds."
-msgstr ""
+msgstr "Użytkownik zostanie wylogowany za %d sekund."
 
 #: ../panel-plugin/settings.cpp:182
 msgid "Man Pages"
@@ -294,7 +294,7 @@ msgstr "Usuwa wybraną czynność"
 #: ../panel-plugin/settings.cpp:150
 #, c-format
 msgid "Restarting computer in %d seconds."
-msgstr ""
+msgstr "Komputer zostanie ponownie uruchomiony za %d sekund."
 
 #: ../panel-plugin/run-action.cpp:71
 #, c-format
@@ -323,7 +323,7 @@ msgstr "Wybór polecenia"
 
 #: ../panel-plugin/configuration-dialog.cpp:777
 msgid "Session Commands"
-msgstr ""
+msgstr "Polecenia sesji"
 
 #: ../panel-plugin/whiskermenu.desktop.in:6
 msgid "Show a menu to easily access installed applications"
@@ -339,7 +339,7 @@ msgstr "Pokaż _podpowiedzi programów"
 
 #: ../panel-plugin/configuration-dialog.cpp:781
 msgid "Show c_onfirmation dialog"
-msgstr ""
+msgstr "Pokaż potwierdzenie czynności"
 
 #: ../panel-plugin/configuration-dialog.cpp:622
 msgid "Show cate_gory names"
@@ -355,7 +355,7 @@ msgstr "Zachowanie _hierarchii menu"
 
 #: ../panel-plugin/settings.cpp:152
 msgid "Shut _Down"
-msgstr ""
+msgstr "Wyłą_cz"
 
 #: ../panel-plugin/icon-size.cpp:52
 msgid "Small"
@@ -379,12 +379,12 @@ msgstr "Pozostań _widoczny po utracie ostrości"
 
 #: ../panel-plugin/settings.cpp:158
 msgid "Suspe_nd"
-msgstr ""
+msgstr "W_strzymaj"
 
 #: ../panel-plugin/settings.cpp:162
 #, c-format
 msgid "Suspending computer in %d seconds."
-msgstr ""
+msgstr "Działanie komputera zostanie wstrzymane za %d sekund."
 
 #: ../panel-plugin/settings.cpp:136
 msgid "Switch _Users"
@@ -405,7 +405,7 @@ msgstr "Etykieta"
 #: ../panel-plugin/settings.cpp:156
 #, c-format
 msgid "Turning off computer in %d seconds."
-msgstr ""
+msgstr "Komputer zostanie wyłączony za %d sekund."
 
 #: ../panel-plugin/page.cpp:334
 msgid "Unable to add launcher to desktop."
@@ -484,7 +484,7 @@ 

[Xfce4-commits] [panel-plugins/xfce4-whiskermenu-plugin] branch master updated (9a60b2f -> 4c93132)

2018-10-13 Thread noreply
This is an automated email from the git hooks/post-receive script.

gottcode pushed a 
change to branch 
master
in repository panel-plugins/xfce4-whiskermenu-plugin.

  from  9a60b2f   Add git version number.
   new  bfd82d2   I18n: Update translation pl (100%).
   new  9f86dca   I18n: Update translation ca (100%).
   new  f0921fa   I18n: Update translation ru (100%).
   new  4c93132   I18n: Update translation el (98%).

The 4 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 panel-plugin/whiskermenu.desktop |  2 +-
 po/ca.po |  8 +++---
 po/el.po | 22 +++---
 po/pl.po | 40 +-
 po/ru.po | 62 +---
 5 files changed, 68 insertions(+), 66 deletions(-)

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [panel-plugins/xfce4-whiskermenu-plugin] 02/04: I18n: Update translation ca (100%).

2018-10-13 Thread noreply
This is an automated email from the git hooks/post-receive script.

gottcode pushed a 
commit to branch 
master
in repository panel-plugins/xfce4-whiskermenu-plugin.

commit 9f86dca3fa4fd68e90f693393d208052e3346188
Author: Graeme Gott 
Date:   Sat Oct 13 11:54:07 2018 -0400

I18n: Update translation ca (100%).
---
 po/ca.po | 8 
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/po/ca.po b/po/ca.po
index b00ee51..876ca06 100644
--- a/po/ca.po
+++ b/po/ca.po
@@ -16,7 +16,7 @@ msgstr ""
 "Project-Id-Version: Whisker Menu\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2018-09-08 11:45-0400\n"
-"PO-Revision-Date: 2018-09-18 18:29+\n"
+"PO-Revision-Date: 2018-10-10 16:49+\n"
 "Last-Translator: Davidmp \n"
 "Language-Team: Catalan (http://www.transifex.com/gottcode/xfce4-whiskermenu-;
 "plugin/language/ca/)\n"
@@ -64,15 +64,15 @@ msgstr "Aplicacions"
 
 #: ../panel-plugin/settings.cpp:143
 msgid "Are you sure you want to log out?"
-msgstr "Esteu segur que voleu tancar la sessió?"
+msgstr "Segur que voleu tancar la sessió?"
 
 #: ../panel-plugin/settings.cpp:149
 msgid "Are you sure you want to restart?"
-msgstr "Esteu segur que voleu reiniciar?"
+msgstr "Segur que voleu reiniciar?"
 
 #: ../panel-plugin/settings.cpp:155
 msgid "Are you sure you want to shut down?"
-msgstr "Esteu segur que voleu apagar?"
+msgstr "Segur que voleu apagar?"
 
 #: ../panel-plugin/configuration-dialog.cpp:678
 msgid "Background opacit_y:"

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits