[Xfce4-commits] [xfce/xfwm4] 02/07: setting-dialog: Add keywords to .desktop files

2020-04-05 Thread noreply
This is an automated email from the git hooks/post-receive script.

olivier pushed a 
commit to branch 
master
in repository xfce/xfwm4.

commit 8dd22120b4c4d97259bf5f35cd0eb08d6226a3a3
Author: Yousuf Philips 
Date:   Tue Mar 3 21:28:43 2020 +0400

setting-dialog: Add keywords to .desktop files

Bug: 16621

Add keywords to the desktop definition files.
---
 settings-dialogs/xfce-wm-settings.desktop.in | 1 +
 settings-dialogs/xfce-wmtweaks-settings.desktop.in   | 1 +
 settings-dialogs/xfce-workspaces-settings.desktop.in | 1 +
 3 files changed, 3 insertions(+)

diff --git a/settings-dialogs/xfce-wm-settings.desktop.in 
b/settings-dialogs/xfce-wm-settings.desktop.in
index 45ee795..875c38f 100644
--- a/settings-dialogs/xfce-wm-settings.desktop.in
+++ b/settings-dialogs/xfce-wm-settings.desktop.in
@@ -2,6 +2,7 @@
 Version=1.0
 _Name=Window Manager
 _Comment=Configure window behavior and shortcuts
+_Keywords=windows;management;settings;preferences;themes;styles;decorations;title
 bar;font;buttons;menu;minimize;maximize;shade;roll up;layout;keyboard 
shortcuts;focus;snapping;screen;workspaces;edges;corner;hide 
content;move;resize;moving;resizing;double click;
 Exec=xfwm4-settings
 Icon=xfwm4
 Terminal=false
diff --git a/settings-dialogs/xfce-wmtweaks-settings.desktop.in 
b/settings-dialogs/xfce-wmtweaks-settings.desktop.in
index 0dde0ef..2057cca 100644
--- a/settings-dialogs/xfce-wmtweaks-settings.desktop.in
+++ b/settings-dialogs/xfce-wmtweaks-settings.desktop.in
@@ -2,6 +2,7 @@
 Version=1.0
 _Name=Window Manager Tweaks
 _Comment=Fine-tune window behaviour and effects
+_Keywords=windows;behavior;settings;preferences;cycling;cycle;switching;focus;raises;accessibility;key;dragging;move;moving;hide;frame;title
 bar;maximized;tile;screen;edge;hot corner;snapping;mouse wheel;roll 
up;workspaces;placement;compositor;compositing;enable;disable;shadows;decorations;opacity;resize;inactive;preview;compiz;transitions;
 Exec=xfwm4-tweaks-settings
 Icon=wmtweaks
 Terminal=false
diff --git a/settings-dialogs/xfce-workspaces-settings.desktop.in 
b/settings-dialogs/xfce-workspaces-settings.desktop.in
index 7f5292e..cc929a1 100644
--- a/settings-dialogs/xfce-workspaces-settings.desktop.in
+++ b/settings-dialogs/xfce-workspaces-settings.desktop.in
@@ -2,6 +2,7 @@
 Version=1.0
 _Name=Workspaces
 _Comment=Configure layout, names and margins
+_Keywords=workspaces;settings;preferences;virtual 
desktops;number;windows;screen;margins;
 Exec=xfwm4-workspace-settings
 Icon=xfce4-workspaces
 Terminal=false

-- 
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/xfwm4] 04/07: compositor: Blacklist SVGA3D renderer

2020-04-05 Thread noreply
This is an automated email from the git hooks/post-receive script.

olivier pushed a 
commit to branch 
master
in repository xfce/xfwm4.

commit 53bf7bab95f17897d5282de094888ef63696451b
Author: Olivier Fourdan 
Date:   Sun Apr 5 16:55:41 2020 +0200

compositor: Blacklist SVGA3D renderer

Bug: 16274

Blacklist the GL renderer "SVGA3D" to disable GL on Virtualbox.

Signed-off-by: Olivier Fourdan 
---
 src/compositor.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/src/compositor.c b/src/compositor.c
index 087dc0e..cb3ad94 100644
--- a/src/compositor.c
+++ b/src/compositor.c
@@ -1061,6 +1061,7 @@ check_glx_renderer (ScreenInfo *screen_info)
 "Software Rasterizer",
 "Mesa X11",
 "llvmpipe",
+"SVGA3D",
 NULL
 };
 int i;

-- 
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/xfwm4] 01/07: compositor: Don't draw shadow on maximized windows

2020-04-05 Thread noreply
This is an automated email from the git hooks/post-receive script.

olivier pushed a 
commit to branch 
master
in repository xfce/xfwm4.

commit a74651cb53aa0f0cebfea1bd1fd2d361fdcd789f
Author: Simon Steinbeiss 
Date:   Wed Jan 15 22:03:14 2020 +0100

compositor: Don't draw shadow on maximized windows

Bug: 16381

This can lead to misleading situations, e.g. if you have >1 display and
the edge of the next display is blurry/dark for no obvious reason.
---
 src/compositor.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/src/compositor.c b/src/compositor.c
index 1ba6b0d..087dc0e 100644
--- a/src/compositor.c
+++ b/src/compositor.c
@@ -91,6 +91,7 @@
(cw->attr.height + 2 * 
cw->attr.border_width >= cw->screen_info->height))
 #define WIN_IS_SHAPED(cw)   ((WIN_HAS_CLIENT(cw) && FLAG_TEST 
(cw->c->flags, CLIENT_FLAG_HAS_SHAPE)) || \
(WIN_IS_OVERRIDE(cw) && 
(cw->shaped)))
+#define WIN_IS_MAXIMIZED(cw)(WIN_HAS_CLIENT(cw) && FLAG_TEST_ALL 
(cw->c->flags, CLIENT_FLAG_MAXIMIZED))
 #define WIN_IS_VIEWABLE(cw) (cw->viewable)
 #define WIN_HAS_DAMAGE(cw)  (cw->damage)
 #define WIN_IS_VISIBLE(cw)  (WIN_IS_VIEWABLE(cw) && 
WIN_HAS_DAMAGE(cw))
@@ -1768,6 +1769,7 @@ win_extents (CWindow *cw)
   !WIN_IS_OVERRIDE(cw) &&
   !WIN_NO_SHADOW(cw) &&
   !WIN_IS_DOCK(cw) &&
+  !WIN_IS_MAXIMIZED(cw) &&
   (WIN_HAS_FRAME(cw) || !(WIN_IS_ARGB(cw) || WIN_IS_SHAPED(cw 
||
   (screen_info->params->show_dock_shadow &&
   WIN_IS_DOCK(cw) &&

-- 
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/xfwm4] branch master updated (4cceb83 -> aa3e3ca)

2020-04-05 Thread noreply
This is an automated email from the git hooks/post-receive script.

olivier pushed a 
change to branch 
master
in repository xfce/xfwm4.

  from  4cceb83   I18n: Update translation pl (100%).
   new  a74651c   compositor: Don't draw shadow on maximized windows
   new  8dd2212   setting-dialog: Add keywords to .desktop files
   new  1e3dd9c   settings-dialog: Fix drag and drop of buttons
   new  53bf7ba   compositor: Blacklist SVGA3D renderer
   new  34a31e2   frame: Fix title align
   new  f399430   moveresize: Restore window state on move
   new  aa3e3ca   device: Use standard grabs for passive button grabs

The 7 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:
 settings-dialogs/xfce-wm-settings.desktop.in   |  1 +
 settings-dialogs/xfce-wmtweaks-settings.desktop.in |  1 +
 .../xfce-workspaces-settings.desktop.in|  1 +
 settings-dialogs/xfwm4-settings.c  | 18 
 src/compositor.c   |  4 ++
 src/device.c   | 51 +++---
 src/events.c   |  1 -
 src/frame.c|  9 +---
 src/moveresize.c   | 11 ++---
 src/screen.c   | 51 --
 src/screen.h   |  2 -
 src/settings.c |  2 -
 12 files changed, 30 insertions(+), 122 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-genmon-plugin] 01/01: Enable multi-row support

2020-04-05 Thread noreply
This is an automated email from the git hooks/post-receive script.

ToZ pushed a commit 
to branch master
in repository panel-plugins/xfce4-genmon-plugin.

commit 3259babcaefba47235c550718e1422598878acdc
Author: ToZ 
Date:   Sun Apr 5 09:06:18 2020 -0400

Enable multi-row support
---
 panel-plugin/main.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/panel-plugin/main.c b/panel-plugin/main.c
index 810a5cb..0380b20 100644
--- a/panel-plugin/main.c
+++ b/panel-plugin/main.c
@@ -1055,6 +1055,8 @@ static void genmon_construct (XfcePanelPlugin *plugin)
 
 g_signal_connect (G_OBJECT (genmon->oMonitor.wValButton), "clicked",
 G_CALLBACK (ExecOnValClickCmd), genmon);
+
+xfce_panel_plugin_set_small (plugin, TRUE);
 }
 
 XFCE_PANEL_PLUGIN_REGISTER (genmon_construct)

-- 
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-genmon-plugin] branch master updated (3a2404d -> 3259bab)

2020-04-05 Thread noreply
This is an automated email from the git hooks/post-receive script.

ToZ pushed a change 
to branch master
in repository panel-plugins/xfce4-genmon-plugin.

  from  3a2404d   Remove unused variables and code
   new  3259bab   Enable multi-row support

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:
 panel-plugin/main.c | 2 ++
 1 file changed, 2 insertions(+)

-- 
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-genmon-plugin] branch master updated (feb97ca -> 3a2404d)

2020-04-05 Thread noreply
This is an automated email from the git hooks/post-receive script.

ToZ pushed a change 
to branch master
in repository panel-plugins/xfce4-genmon-plugin.

  from  feb97ca   Fix indentation
   new  3a2404d   Remove unused variables and code

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:
 panel-plugin/config_gui.c | 1 -
 panel-plugin/main.c   | 8 ++--
 2 files changed, 2 insertions(+), 7 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-genmon-plugin] 01/01: Remove unused variables and code

2020-04-05 Thread noreply
This is an automated email from the git hooks/post-receive script.

ToZ pushed a commit 
to branch master
in repository panel-plugins/xfce4-genmon-plugin.

commit 3a2404d97f79ad793b486591575357af802cad2a
Author: ToZ 
Date:   Sun Apr 5 08:20:10 2020 -0400

Remove unused variables and code
---
 panel-plugin/config_gui.c | 1 -
 panel-plugin/main.c   | 8 ++--
 2 files changed, 2 insertions(+), 7 deletions(-)

diff --git a/panel-plugin/config_gui.c b/panel-plugin/config_gui.c
index bd0eb25..5fdb863 100644
--- a/panel-plugin/config_gui.c
+++ b/panel-plugin/config_gui.c
@@ -65,7 +65,6 @@ int genmon_CreateConfigGUI (GtkWidget *vbox1,
 GtkWidget  *wTF_Title;
 GtkWidget  *hseparator10;
 GtkWidget  *wPB_Font;
-GtkWidget  *hbox4;
 
 table1 = gtk_grid_new ();
 gtk_grid_set_column_spacing(GTK_GRID (table1), 12);
diff --git a/panel-plugin/main.c b/panel-plugin/main.c
index 6b8f8f5..810a5cb 100644
--- a/panel-plugin/main.c
+++ b/panel-plugin/main.c
@@ -712,16 +712,12 @@ static void ToggleTitle (GtkWidget *p_w, void *p_pvPlugin)
 struct genmon_t *poPlugin = (genmon_t *) p_pvPlugin;
 struct param_t *poConf = &(poPlugin->oConf.oParam);
 struct gui_t   *poGUI = &(poPlugin->oConf.oGUI);
-struct monitor_t *poMonitor = &(poPlugin->oMonitor);
-
+
 poConf->fTitleDisplayedtmp =
 gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (p_w));
 gtk_widget_set_sensitive (GTK_WIDGET (poGUI->wTF_Title),
 poConf->fTitleDisplayedtmp);
-/*if (poConf->fTitleDisplayedtmp)
-gtk_widget_show (GTK_WIDGET (poMonitor->wTitle));
-else
-gtk_widget_hide (GTK_WIDGET (poMonitor->wTitle));*/
+
 }/* ToggleTitle() */
 
 /**/

-- 
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] branch master updated (33cae35 -> d547fad)

2020-04-05 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  33cae35   Fix unprintable character in summary subtitle (bug #16394)
   new  d547fad   I18n: Update translation el (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/el.po | 26 +-
 1 file changed, 13 insertions(+), 13 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 el (100%).

2020-04-05 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 d547fad5fdc495de9e145c11be030690231ff715
Author: Anonymous 
Date:   Sun Apr 5 12:32:28 2020 +0200

I18n: Update translation el (100%).

337 translated messages.

Transifex (https://www.transifex.com/xfce/public/).
---
 po/el.po | 26 +-
 1 file changed, 13 insertions(+), 13 deletions(-)

diff --git a/po/el.po b/po/el.po
index 257c5df..9c4ef56 100644
--- a/po/el.po
+++ b/po/el.po
@@ -11,7 +11,7 @@ msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2020-03-01 06:32+0100\n"
-"PO-Revision-Date: 2020-03-17 10:17+\n"
+"PO-Revision-Date: 2020-04-05 10:09+\n"
 "Last-Translator: Ioannis LM\n"
 "Language-Team: Greek 
(http://www.transifex.com/xfce/xfce-panel-plugins/language/el/)\n"
 "MIME-Version: 1.0\n"
@@ -72,7 +72,7 @@ msgid ""
 "Latitude specifies the north-south position of a point on the Earth's "
 "surface. If you change this value manually, you need to provide altitude and"
 " timezone manually too."
-msgstr "Το γεωγραφικό πλάτος καθορίζει την θέση βορρά-νότου ενός σημείου στην 
επιφάνεια της Γης. Εάν αλλάξετε χειροκίνητα αυτή την τιμή, πρέπει να παρέχετε 
επίσης το υψόμετρο και την ζώνη ώρας."
+msgstr "Το γεωγραφικό πλάτος καθορίζει την θέση βορρά-νότου ενός σημείου στην 
επιφάνεια της Γης. Εάν αλλάξετε χειροκίνητα αυτή την τιμή, πρέπει επίσης να 
παρέχετε το υψόμετρο και την ζώνη ώρας."
 
 #. TRANSLATORS: The degree sign is used like a unit for
 #. latitude, longitude, wind direction
@@ -85,7 +85,7 @@ msgid ""
 "Longitude specifies the east-west position of a point on the Earth's "
 "surface. If you change this value manually, you need to provide altitude and"
 " timezone manually too."
-msgstr "Το γεωγραφικό μήκος καθορίζει την θέση ανατολής-δύσης ενός σημείου 
στην επιφάνεια της Γης. Εάν αλλάξετε χειροκίνητα αυτή την τιμή, πρέπει να 
παρέχετε επίσης το υψόμετρο και την ζώνη ώρας."
+msgstr "Το γεωγραφικό μήκος καθορίζει την θέση ανατολής-δύσης ενός σημείου 
στην επιφάνεια της Γης. Εάν αλλάξετε χειροκίνητα αυτή την τιμή, πρέπει επίσης 
να παρέχετε το υψόμετρο και την ζώνη ώρας."
 
 #: ../panel-plugin/weather-config.ui.h:14
 msgid ""
@@ -104,7 +104,7 @@ msgstr "πόδια"
 msgid ""
 "If the chosen location is not in your current timezone, then it is necessary 
to put the plugin into that other timezone for the times to be shown 
correctly. The proper timezone will be auto-detected via the GeoNames web 
service, but you might want to correct it if necessary.\n"
 "Leave this field empty to use the timezone set by your system. Invalid 
entries will cause the use of UTC time, but that may also depend on your 
system."
-msgstr "Αν η επιλεγμένη τοποθεσία δεν είναι στη ζώνη ώρας σας τότε, είναι 
απαραίτητο να αλλάξετε εδώ τη ζώνη ώρας, για να εμφανίζονται σωστά οι 
χρόνοι. Η ζώνη ώρας ανιχνεύεται αυτόματα μέσω της υπηρεσίας GeoNames, αλλά αν 
το κρίνετε απαραίτητο ίσως χρειαστεί να την αλλάξετε.\nΑφήστε το πεδίο άδειο 
για να χρησιμοποιηθεί η ζώνη ώρας του συστήματος σας. Λάθος καταχωρήσεις θα 
προκαλέσουν χρήση της ώρας UTC, αλλά αυτό θα εξαρτηθεί και από το σύστημα σας."
+msgstr "Αν η επιλεγμένη τοποθεσία δεν είναι στη ζώνη ώρας σας είναι απαραίτητο 
να την αλλάξετε εδώ, για να εμφανίζονται σωστά οι χρόνοι. Η ζώνη ώρας 
ανιχνεύεται αυτόματα μέσω της υπηρεσίας GeoNames, αλλά αν το κρίνετε απαραίτητο 
ίσως χρειαστεί να την αλλάξετε.\nΑφήστε το πεδίο κενό για να χρησιμοποιηθεί η 
ζώνη ώρας του συστήματος σας. Οι λάθος καταχωρήσεις θα προκαλέσουν τη χρήση της 
ώρας UTC, αλλά αυτό θα εξαρτηθεί και από το σύστημα σας."
 
 #: ../panel-plugin/weather-config.ui.h:22
 msgid ""
@@ -231,7 +231,7 @@ msgid ""
 "system). Information about how to create or use icon themes can be found in "
 "the README file. New icon themes will be detected everytime you open this "
 "config dialog."
-msgstr "Τα διαθέσιμα θέματα εικονιδίων φαίνονται εδώ. Μπορείτε να προσθέσετε 
θέματα εικονιδίων στον κατάλογο $HOME/.config/xfce4/weather/icons (ή στον 
ισοδύναμο κατάλογο του συστήματός σας). Πληροφορίες σχετικά με το πως να 
δημιουργήσετε ή να χρησιμοποιήσετε θέματα εικονιδίων βρίσκονται στο αρχείο 
README. Νέα θέματα εικονιδίων θα ανιχνεύονται κάθε φορά που ανοίγετε αυτόν τον 
διάλογο."
+msgstr "Εδώ φαίνονται τα διαθέσιμα θέματα των εικονιδίων. Μπορείτε να 
προσθέσετε θέματα στον κατάλογο $HOME/.config/xfce4/weather/icons (ή στον 
ισοδύναμο κατάλογο του συστήματός σας). Οι πληροφορίες σχετικά με τη δημιουργία 
ή τη χρήση των θεμάτων εικονιδίων βρίσκονται στο αρχείο README. Τα νέα θέματα 
εικονιδίων θα ανιχνεύονται κάθε φορά που ανοίγετε αυτόν τον διάλογο."
 
 #: ../panel-plugin/weather-config.ui.h:52
 msgid "_Icon theme:"
@@ -261,7 +261,7 @@ msgstr 

[Xfce4-commits] [xfce/xfce4-power-manager] 01/01: I18n: Update translation fr (100%).

2020-04-05 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-power-manager.

commit 335dda94c87294675aec3edb6c44936a7d0055d4
Author: Yannick Le Guen 
Date:   Sun Apr 5 12:30:59 2020 +0200

I18n: Update translation fr (100%).

214 translated messages.

Transifex (https://www.transifex.com/xfce/public/).
---
 po/fr.po | 26 +-
 1 file changed, 13 insertions(+), 13 deletions(-)

diff --git a/po/fr.po b/po/fr.po
index aed0b94..47738ca 100644
--- a/po/fr.po
+++ b/po/fr.po
@@ -15,8 +15,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Xfce4-power-manager\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-01-06 06:31+0100\n"
-"PO-Revision-Date: 2020-01-08 09:49+\n"
+"POT-Creation-Date: 2020-04-01 00:31+0200\n"
+"PO-Revision-Date: 2020-04-05 09:07+\n"
 "Last-Translator: Yannick Le Guen \n"
 "Language-Team: French 
(http://www.transifex.com/xfce/xfce4-power-manager/language/fr/)\n"
 "MIME-Version: 1.0\n"
@@ -52,9 +52,7 @@ msgstr "Gestionnaire d’alimentation Xfce"
 msgid "Power manager settings"
 msgstr "Configuration du gestionnaire d’alimentation"
 
-#. help dialog
 #: ../data/interfaces/xfpm-settings.ui.h:7
-#: ../panel-plugins/power-manager-plugin/power-manager-button.c:1233
 #: ../panel-plugins/power-manager-plugin/xfce/xfce-power-manager-plugin.c:161
 msgid "_Help"
 msgstr "Aid_e"
@@ -468,6 +466,12 @@ msgstr "Gestionnaire d’alimentation"
 msgid "Settings for the Xfce Power Manager"
 msgstr "Paramètres du gestionnaire d’alimentation Xfce"
 
+#: ../settings/xfce4-power-manager-settings.desktop.in.h:3
+msgid ""
+"settings;preferences;buttons;sleep;hibernate;battery;suspend;shutdown;brightness;laptop"
+" lid;lock screen;plugged in;saving;critical;"
+msgstr 
"paramètres;préférences;boutons;veille;hiberner;batterie;suspendre;arrêt;luminosité;couvercle
 de portable;verrouillage;branché;économie;critique;"
+
 #: ../common/xfpm-common.c:116
 msgid "translator-credits"
 msgstr "L’équipe de traduction francophone de Xfce"
@@ -929,29 +933,25 @@ msgstr "Gestion d’alimentation pour l’environnement de 
bureau Xfce"
 msgid "Display battery levels for attached devices"
 msgstr "Afficher les niveaux de batterie pour les périphériques connectés"
 
-#. about dialog
-#: ../panel-plugins/power-manager-plugin/power-manager-button.c:1239
-msgid "_About"
-msgstr "À _propos"
-
 #. Translators this is to display which app is inhibiting
 #. * power in the plugin menu. Example:
 #. * VLC is currently inhibiting power management
-#: ../panel-plugins/power-manager-plugin/power-manager-button.c:1442
+#: ../panel-plugins/power-manager-plugin/power-manager-button.c:1425
 #, c-format
 msgid "%s is currently inhibiting power management"
 msgstr "%s inhibe actuellement la gestion de l’alimentation"
 
-#: ../panel-plugins/power-manager-plugin/power-manager-button.c:1739
+#: ../panel-plugins/power-manager-plugin/power-manager-button.c:1722
 msgid "Display brightness"
 msgstr "Luminosité de l’écran"
 
-#: ../panel-plugins/power-manager-plugin/power-manager-button.c:1765
+#: ../panel-plugins/power-manager-plugin/power-manager-button.c:1749
+#: ../panel-plugins/power-manager-plugin/power-manager-button.c:1760
 msgid "Presentation _mode"
 msgstr "_Mode présentation"
 
 #. Power manager settings
-#: ../panel-plugins/power-manager-plugin/power-manager-button.c:1782
+#: ../panel-plugins/power-manager-plugin/power-manager-button.c:1773
 msgid "_Power manager settings..."
 msgstr "_Paramètres du gestionnaire d’alimentation…"
 

-- 
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-panel] 01/01: I18n: Update translation fr (100%).

2020-04-05 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-panel.

commit 00e3a0b4ce2a6ef69ee8ca379cc6480eb0aa4b19
Author: Yannick Le Guen 
Date:   Sun Apr 5 12:30:40 2020 +0200

I18n: Update translation fr (100%).

429 translated messages.

Transifex (https://www.transifex.com/xfce/public/).
---
 po/fr.po | 52 +---
 1 file changed, 29 insertions(+), 23 deletions(-)

diff --git a/po/fr.po b/po/fr.po
index edf935d..0742471 100644
--- a/po/fr.po
+++ b/po/fr.po
@@ -17,8 +17,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Xfce4-panel\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-01-30 00:30+0100\n"
-"PO-Revision-Date: 2020-01-30 10:39+\n"
+"POT-Creation-Date: 2020-04-01 00:30+0200\n"
+"PO-Revision-Date: 2020-04-05 08:59+\n"
 "Last-Translator: Yannick Le Guen \n"
 "Language-Team: French 
(http://www.transifex.com/xfce/xfce4-panel/language/fr/)\n"
 "MIME-Version: 1.0\n"
@@ -37,11 +37,17 @@ msgid ""
 "file"
 msgstr "Ajouter un nouveau lanceur dans le tableau de bord avec les 
informations de ce fichier desktop"
 
-#: ../panel-preferences.desktop.in.h:1 ../panel/panel-window.c:2871
+#: ../panel-preferences.desktop.in.h:1
+msgid ""
+"panels;settings;preferences;taskbar;autohide;application "
+"menu;start;buttons;launcher;notification area;status;icons;plugins;"
+msgstr "tableaux de bord;paramètres;préférences;barre des tâches;masquage 
automatique;menu des applications;démarrer;boutons;lanceur;zone de 
notification;état;icônes;greffons;"
+
+#: ../panel-preferences.desktop.in.h:2 ../panel/panel-window.c:2934
 msgid "Panel"
 msgstr "Tableau de bord"
 
-#: ../panel-preferences.desktop.in.h:2
+#: ../panel-preferences.desktop.in.h:3
 msgid "Customize the panel"
 msgstr "Personnaliser le tableau de bord"
 
@@ -78,7 +84,7 @@ msgstr "_Supprimer"
 msgid "_Properties"
 msgstr "_Propriétés"
 
-#: ../libxfce4panel/xfce-panel-plugin.c:1268 ../panel/panel-window.c:2959
+#: ../libxfce4panel/xfce-panel-plugin.c:1268 ../panel/panel-window.c:3022
 msgid "_About"
 msgstr "À _propos"
 
@@ -90,20 +96,20 @@ msgstr "_Déplacer"
 msgid "Pane_l"
 msgstr "Tableau de _bord"
 
-#: ../libxfce4panel/xfce-panel-plugin.c:1337 ../panel/panel-window.c:2884
+#: ../libxfce4panel/xfce-panel-plugin.c:1337 ../panel/panel-window.c:2947
 msgid "Add _New Items..."
 msgstr "Ajouter de _nouveaux éléments…"
 
-#: ../libxfce4panel/xfce-panel-plugin.c:1352 ../panel/panel-window.c:2899
+#: ../libxfce4panel/xfce-panel-plugin.c:1352 ../panel/panel-window.c:2962
 msgid "Panel Pr_eferences..."
 msgstr "Pr_éférences du tableau de bord…"
 
-#: ../libxfce4panel/xfce-panel-plugin.c:1373 ../panel/panel-window.c:2931
+#: ../libxfce4panel/xfce-panel-plugin.c:1373 ../panel/panel-window.c:2994
 msgid "Log _Out"
 msgstr "Dé_connexion"
 
 #: ../libxfce4panel/xfce-panel-plugin.c:1393 ../panel/panel-item-dialog.c:207
-#: ../panel/panel-preferences-dialog.glade.h:12 ../panel/panel-window.c:2950
+#: ../panel/panel-preferences-dialog.glade.h:12 ../panel/panel-window.c:3013
 #: ../plugins/actions/actions-dialog.glade.h:4
 #: ../plugins/applicationsmenu/applicationsmenu-dialog.glade.h:2
 #: ../plugins/clock/clock-dialog.glade.h:8
@@ -244,38 +250,38 @@ msgstr "Aucune instance de %s n’a été trouvée"
 msgid "Failed to launch the migration application"
 msgstr "Impossible de lancer la procédure de migration"
 
-#: ../panel/panel-application.c:976
+#: ../panel/panel-application.c:977
 msgid "Create _Launcher"
 msgstr "Créer un _lanceur"
 
-#: ../panel/panel-application.c:977
+#: ../panel/panel-application.c:978
 msgid ""
 "This will create a new launcher plugin on the panel and inserts the dropped "
 "files as menu items."
 msgstr "Un nouveau greffon « Lanceur » va être créé sur le tableau de bord et 
un élément de menu y sera inséré pour chaque fichier déposé."
 
-#: ../panel/panel-application.c:979
+#: ../panel/panel-application.c:980
 #, c-format
 msgid "Create new launcher from %d desktop file"
 msgid_plural "Create new launcher from %d desktop files"
 msgstr[0] "Créer un lanceur à partir de %d fichier desktop"
 msgstr[1] "Créer un lanceur à partir de %d fichiers desktop"
 
-#: ../panel/panel-application.c:1719
+#: ../panel/panel-application.c:1720
 msgid "Quit"
 msgstr "Quitter"
 
-#: ../panel/panel-application.c:1720
+#: ../panel/panel-application.c:1721
 msgid ""
 "You have started X without session manager. Clicking Quit will close the X "
 "server."
 msgstr "Vous avez démarré le serveur X sans gestionnaire de session. Cliquer 
sur Quitter fermera le serveur X."
 
-#: ../panel/panel-application.c:1721
+#: ../panel/panel-application.c:1722
 msgid "Are you sure you want to quit the panel?"
 msgstr "Voulez-vous vraiment quitter le tableau de bord ?"
 
-#: ../panel/panel-application.c:1729
+#: 

[Xfce4-commits] [xfce/xfce4-power-manager] branch master updated (fee761d -> 335dda9)

2020-04-05 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-power-manager.

  from  fee761d   I18n: Update translation da (100%).
   new  335dda9   I18n: Update translation fr (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/fr.po | 26 +-
 1 file changed, 13 insertions(+), 13 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-session] branch master updated (6c5a81e -> 18be2dc)

2020-04-05 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-session.

  from  6c5a81e   I18n: Update translation da (100%).
   new  18be2dc   I18n: Update translation fr (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/fr.po | 10 --
 1 file changed, 8 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] [xfce/xfce4-session] 01/01: I18n: Update translation fr (100%).

2020-04-05 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-session.

commit 18be2dc032c597e990f33733edc78e95da5daa02
Author: Yannick Le Guen 
Date:   Sun Apr 5 12:31:07 2020 +0200

I18n: Update translation fr (100%).

163 translated messages.

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

diff --git a/po/fr.po b/po/fr.po
index a21d7aa..bddbdb4 100644
--- a/po/fr.po
+++ b/po/fr.po
@@ -17,8 +17,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Xfce4-session\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-01-14 06:31+0100\n"
-"PO-Revision-Date: 2020-01-17 09:47+\n"
+"POT-Creation-Date: 2020-04-01 00:31+0200\n"
+"PO-Revision-Date: 2020-04-05 09:08+\n"
 "Last-Translator: Yannick Le Guen \n"
 "Language-Team: French 
(http://www.transifex.com/xfce/xfce4-session/language/fr/)\n"
 "MIME-Version: 1.0\n"
@@ -601,6 +601,12 @@ msgstr "Session et démarrage"
 msgid "Customize desktop startup"
 msgstr "Personnaliser le démarrage du bureau"
 
+#: ../settings/xfce-session-settings.desktop.in.h:3
+msgid ""
+"session;settings;preferences;manager;startup;login;logout;shutdown;lock "
+"screen;application;autostart;launch;services;daemon;agent;"
+msgstr 
"session;paramètres;préférences;gestionnaire;démarrage;connexion;déconnexion;arrêt;verrouillage;application;démarrage
 automatique;lancer;services;démon;agent;"
+
 #: ../settings/xfce4-session-settings.ui.h:2
 msgid "_Help"
 msgstr "Aid_e"

-- 
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-panel] branch master updated (f71cbe4 -> 00e3a0b)

2020-04-05 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-panel.

  from  f71cbe4   Update docstring
   new  00e3a0b   I18n: Update translation fr (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/fr.po | 52 +---
 1 file changed, 29 insertions(+), 23 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-clipman-plugin] branch master updated (bf99d4e -> 6d255fe)

2020-04-04 Thread noreply
This is an automated email from the git hooks/post-receive script.

ochosi pushed a 
change to branch 
master
in repository panel-plugins/xfce4-clipman-plugin.

  from  bf99d4e   Updates for release
   new  6d255fe   Back to development

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:
 configure.ac.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

-- 
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-clipman-plugin] 01/01: Back to development

2020-04-04 Thread noreply
This is an automated email from the git hooks/post-receive script.

ochosi pushed a 
commit to branch 
master
in repository panel-plugins/xfce4-clipman-plugin.

commit 6d255fe913c46ec406fe0b86f2113a23aa0f2489
Author: Simon Steinbeiss 
Date:   Sun Apr 5 00:44:55 2020 +0200

Back to development
---
 configure.ac.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/configure.ac.in b/configure.ac.in
index 4307d9e..d7adfd8 100644
--- a/configure.ac.in
+++ b/configure.ac.in
@@ -13,7 +13,7 @@ m4_define([project_version_major], [1])
 m4_define([project_version_minor], [6])
 m4_define([project_version_micro], [1])
 m4_define([project_version_build], [@REVISION@])
-m4_define([project_version_tag], []) # leave empty for release
+m4_define([project_version_tag], [git]) # leave empty for release
 m4_define([project_version], 
[project_version_major().project_version_minor().project_version_micro()ifelse(project_version_tag(),
 [git], [project_version_tag()-project_version_build()], 
[project_version_tag()])])
 
 dnl ***

-- 
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-clipman-plugin] 01/01: Updates for release

2020-04-04 Thread noreply
This is an automated email from the git hooks/post-receive script.

ochosi pushed a 
commit to branch 
master
in repository panel-plugins/xfce4-clipman-plugin.

commit bf99d4ebc7b85e0024119b02a261002742eb6f43
Author: Simon Steinbeiss 
Date:   Sun Apr 5 00:43:04 2020 +0200

Updates for release
---
 NEWS| 9 +
 configure.ac.in | 4 ++--
 2 files changed, 11 insertions(+), 2 deletions(-)

diff --git a/NEWS b/NEWS
index 2ce773c..720d8a9 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,12 @@
+1.6.1
+==
+- Add translateable files to POTFILES (Bug #16608)
+- Bump libxfce4ui ifdef to 4.15.1
+- Translation Updates:
+  Albanian, Bulgarian, Catalan, Chinese (China), Danish, Dutch, French,
+  Galician, German, Italian, Japanese, Lithuanian, Norwegian Bokmål,
+  Polish, Portuguese, Russian, Spanish
+
 1.6.0
 ==
 - Add standalone dialog to search history: xfce4-clipman-history
diff --git a/configure.ac.in b/configure.ac.in
index efe099d..4307d9e 100644
--- a/configure.ac.in
+++ b/configure.ac.in
@@ -11,9 +11,9 @@ dnl *** Version information ***
 dnl ***
 m4_define([project_version_major], [1])
 m4_define([project_version_minor], [6])
-m4_define([project_version_micro], [0])
+m4_define([project_version_micro], [1])
 m4_define([project_version_build], [@REVISION@])
-m4_define([project_version_tag], [git]) # leave empty for release
+m4_define([project_version_tag], []) # leave empty for release
 m4_define([project_version], 
[project_version_major().project_version_minor().project_version_micro()ifelse(project_version_tag(),
 [git], [project_version_tag()-project_version_build()], 
[project_version_tag()])])
 
 dnl ***

-- 
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-clipman-plugin] annotated tag xfce4-clipman-plugin-1.6.1 created (now 121ca9d)

2020-04-04 Thread noreply
This is an automated email from the git hooks/post-receive script.

ochosi pushed a 
change to annotated 
tag 
xfce4-clipman-plugin-1.6.1
in repository panel-plugins/xfce4-clipman-plugin.

at  121ca9d   (tag)
   tagging  bf99d4ebc7b85e0024119b02a261002742eb6f43 (commit)
  replaces  xfce4-clipman-plugin-1.6.0
 tagged by  Simon Steinbeiss
on  Sun Apr 5 00:43:07 2020 +0200

- Log -
1.6.1

- Add translateable files to POTFILES (Bug #16608)
- Bump libxfce4ui ifdef to 4.15.1
- Translation Updates:
  Albanian, Bulgarian, Catalan, Chinese (China), Danish, Dutch, French,
  Galician, German, Italian, Japanese, Lithuanian, Norwegian Bokmål,
  Polish, Portuguese, Russian, Spanish
---

No new revisions were added by this update.

-- 
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-clipman-plugin] branch master updated (7fe4d25 -> bf99d4e)

2020-04-04 Thread noreply
This is an automated email from the git hooks/post-receive script.

ochosi pushed a 
change to branch 
master
in repository panel-plugins/xfce4-clipman-plugin.

  from  7fe4d25   I18n: Update translation nb (100%).
   new  bf99d4e   Updates for release

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:
 NEWS| 9 +
 configure.ac.in | 4 ++--
 2 files changed, 11 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-genmon-plugin] 01/01: Fix indentation

2020-04-04 Thread noreply
This is an automated email from the git hooks/post-receive script.

ToZ pushed a commit 
to branch master
in repository panel-plugins/xfce4-genmon-plugin.

commit feb97ca86adfaced2806e03fc03823328232d376
Author: ToZ 
Date:   Sat Apr 4 18:17:28 2020 -0400

Fix indentation
---
 panel-plugin/main.c | 14 +++---
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/panel-plugin/main.c b/panel-plugin/main.c
index bb0fad7..6b8f8f5 100644
--- a/panel-plugin/main.c
+++ b/panel-plugin/main.c
@@ -47,12 +47,12 @@ typedef struct param_t {
 /* Configurable parameters */
 char   *acCmd; /* Commandline to spawn */
 int fTitleDisplayed;
-intfTitleDisplayedtmp;
+int fTitleDisplayedtmp;
 char   *acTitle;
 uint32_tiPeriod_ms;
-uint32_t   iPeriod_mstmp;
+uint32_tiPeriod_mstmp;
 char   *acFont;
-char  *acFonttmp;
+char   *acFonttmp;
 } param_t;
 
 typedef struct conf_t {
@@ -79,11 +79,11 @@ typedef struct monitor_t {
 } monitor_t;
 
 typedef struct genmon_t {
-XfcePanelPlugin *plugin;
-unsigned intiTimerId; /* Cyclic update */
-struct conf_t   oConf;
+XfcePanelPlugin*plugin;
+unsigned intiTimerId; /* Cyclic update */
+struct conf_t   oConf;
 struct monitor_toMonitor;
-char*acValue; /* Commandline resulting string */
+char   *acValue; /* Commandline resulting string */
 } genmon_t;
 
 /**/

-- 
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-genmon-plugin] branch master updated (837cbc0 -> feb97ca)

2020-04-04 Thread noreply
This is an automated email from the git hooks/post-receive script.

ToZ pushed a change 
to branch master
in repository panel-plugins/xfce4-genmon-plugin.

  from  837cbc0   Catch some edge cases
   new  feb97ca   Fix indentation

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:
 panel-plugin/main.c | 14 +++---
 1 file changed, 7 insertions(+), 7 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/libxfce4ui] branch master updated (2f8f5e1 -> 7dc7fbd)

2020-04-04 Thread noreply
This is an automated email from the git hooks/post-receive script.

ochosi pushed a 
change to branch 
master
in repository xfce/libxfce4ui.

  from  2f8f5e1   Updates for release
   new  7dc7fbd   Back to development

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:
 configure.ac.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

-- 
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/libxfce4ui] 01/01: Back to development

2020-04-04 Thread noreply
This is an automated email from the git hooks/post-receive script.

ochosi pushed a 
commit to branch 
master
in repository xfce/libxfce4ui.

commit 7dc7fbd5e7e0c5f453b22d9619a17c49de1dffe6
Author: Simon Steinbeiss 
Date:   Sun Apr 5 00:04:20 2020 +0200

Back to development
---
 configure.ac.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/configure.ac.in b/configure.ac.in
index 20af60f..544791c 100644
--- a/configure.ac.in
+++ b/configure.ac.in
@@ -12,7 +12,7 @@ m4_define([libxfce4ui_version_minor], [15])
 m4_define([libxfce4ui_version_micro], [2])
 m4_define([libxfce4ui_version_nano], []) dnl leave this empty to have no nano 
version
 m4_define([libxfce4ui_version_build], [@REVISION@])
-m4_define([libxfce4ui_version_tag], [])
+m4_define([libxfce4ui_version_tag], [git])
 m4_define([libxfce4ui_version], 
[libxfce4ui_version_major().libxfce4ui_version_minor().libxfce4ui_version_micro()ifelse(libxfce4ui_version_nano(),
 [], [], [.libxfce4ui_version_nano()])ifelse(libxfce4ui_version_tag(), [git], 
[libxfce4ui_version_tag()-libxfce4ui_version_build()], 
[libxfce4ui_version_tag()])])
 
 m4_define([libxfce4kbd_private_verinfo], [0:0:0])

-- 
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/libxfce4ui] branch master updated (b45139f -> 2f8f5e1)

2020-04-04 Thread noreply
This is an automated email from the git hooks/post-receive script.

ochosi pushed a 
change to branch 
master
in repository xfce/libxfce4ui.

  from  b45139f   Forgot to add new methods to libxfce4ui.symbols. Folowup 
of 231e57daccb5946379f413ed440629c32025f6f3
   new  2f8f5e1   Updates for release

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:
 NEWS | 12 +---
 1 file changed, 9 insertions(+), 3 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/libxfce4ui] 01/01: Updates for release

2020-04-04 Thread noreply
This is an automated email from the git hooks/post-receive script.

ochosi pushed a 
commit to branch 
master
in repository xfce/libxfce4ui.

commit 2f8f5e113a07f3b9e010062770bd09882600ae8f
Author: Simon Steinbeiss 
Date:   Sun Apr 5 00:00:19 2020 +0200

Updates for release
---
 NEWS | 12 +---
 1 file changed, 9 insertions(+), 3 deletions(-)

diff --git a/NEWS b/NEWS
index 2ffa596..7008e27 100644
--- a/NEWS
+++ b/NEWS
@@ -1,8 +1,14 @@
 4.15.2
 ==
-- Added methods to replace deprecated GtkAction, GtkActionEntry and 
-  GtkUiManager in order to keep simple menu creation
-  (xfce_gtk_menu_item*, etc.)
+- Introduced 'XfceGtkActionEntry' as replacement for the deprecated 
'GtkAction',
+  'GtkActionEntry' in order to keep simple menu creation. This includes various
+  support methods, like:
+  'xfce_gtk_translate_action_entries' to to translate a list of 
XfceGtkActionEntrys
+  'xfce_gtk_accel_group_append' to register the provided accelerators of the 
entries
+  'xfce_gtk_get_action_entry_by_id' to find a single XfceGtkActionEntry, e.g. 
by
+   using a enumeration
+  'xfce_gtk_***_new_from_action_entry' to create the specific menu- or
+   tool-items from an XfceGtkActionEntry
 - Add a widget for filename input (Bug #16542)
 - Enabled doc generation for XfceGtkActionEntry and related methods
 - Enabled doc generation for new widget 'xfce-filename-input'

-- 
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/libxfce4ui] annotated tag libxfce4ui-4.15.2 created (now 0e8b44e)

2020-04-04 Thread noreply
This is an automated email from the git hooks/post-receive script.

ochosi pushed a 
change to annotated 
tag 
libxfce4ui-4.15.2
in repository xfce/libxfce4ui.

at  0e8b44e   (tag)
   tagging  2f8f5e113a07f3b9e010062770bd09882600ae8f (commit)
  replaces  libxfce4ui-4.15.1
 tagged by  Simon Steinbeiss
on  Sun Apr 5 00:00:21 2020 +0200

- Log -
4.15.2

- Introduced 'XfceGtkActionEntry' as replacement for the deprecated
  'GtkAction', 'GtkActionEntry' in order to keep simple menu creation.
  This includes various support methods, like:
  'xfce_gtk_translate_action_entries' to to translate a list of
 XfceGtkActionEntrys
  'xfce_gtk_accel_group_append' to register the provided accelerators of
 the entries
  'xfce_gtk_get_action_entry_by_id' to find a single XfceGtkActionEntry,
 e.g. by using a enumeration
  'xfce_gtk_***_new_from_action_entry' to create the specific menu- or
 tool-items from an XfceGtkActionEntry
- Add a widget for filename input (Bug #16542)
- Enabled doc generation for XfceGtkActionEntry and related methods
- Enabled doc generation for new widget 'xfce-filename-input'
- Switch Ctrl+Alt+Del to xfce4-session-logout (Bug #11979)
- Add more default keyboard shortcuts (Bug #16470)
- shortcuts: Replace xfrun4 by xfce4-appfinder
- shortcuts: Also map Homepage to browser
- shortcuts: Remove calculator shortcut
- Update gitignore
- Translation Updates:
  Albanian, Basque, Belarusian, Chinese (China), Chinese (Taiwan),
  Croatian, Danish, Dutch, French, Galician, German, Hebrew, Hungarian,
  Kazakh, Malay, Norwegian Bokmål, Portuguese, Portuguese (Brazil),
  Russian, Serbian, Slovenian, Swedish, Ukrainian
---

No new revisions were added by this update.

-- 
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/libxfce4ui] 01/01: Forgot to add new methods to libxfce4ui.symbols. Folowup of 231e57daccb5946379f413ed440629c32025f6f3

2020-04-04 Thread noreply
This is an automated email from the git hooks/post-receive script.

alex pushed a 
commit to branch 
master
in repository xfce/libxfce4ui.

commit b45139f5730785dc0ccac32ec26686ba0bca0038
Author: Alexander Schwinn 
Date:   Sat Apr 4 23:48:59 2020 +0200

Forgot to add new methods to libxfce4ui.symbols.
Folowup of 231e57daccb5946379f413ed440629c32025f6f3
---
 libxfce4ui/libxfce4ui.symbols | 12 
 1 file changed, 12 insertions(+)

diff --git a/libxfce4ui/libxfce4ui.symbols b/libxfce4ui/libxfce4ui.symbols
index 169362f..7b4b55e 100644
--- a/libxfce4ui/libxfce4ui.symbols
+++ b/libxfce4ui/libxfce4ui.symbols
@@ -81,6 +81,18 @@ xfce_gdk_screen_get_geometry
 /* xfce-gtk-extensions functions */
 #if IN_HEADER(__XFCE_GTK_EXTENSIONS_H__)
 #if IN_SOURCE(__XFCE_GTK_EXTENSIONS_C__)
+xfce_gtk_menu_item_new
+xfce_gtk_image_menu_item_new
+xfce_gtk_image_menu_item_new_from_icon_name
+xfce_gtk_check_menu_item_new
+xfce_gtk_radio_menu_item_new
+xfce_gtk_menu_item_new_from_action_entry
+xfce_gtk_toggle_menu_item_new_from_action_entry
+xfce_gtk_tool_button_new_from_action_entry
+xfce_gtk_accel_group_append
+xfce_gtk_get_action_entry_by_id
+xfce_gtk_translate_action_entries
+xfce_gtk_menu_append_seperator
 xfce_gtk_button_new_mixed G_GNUC_MALLOC
 xfce_gtk_frame_box_new G_GNUC_MALLOC
 xfce_gtk_frame_box_new_with_content G_GNUC_MALLOC

-- 
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/libxfce4ui] branch master updated (3db1569 -> b45139f)

2020-04-04 Thread noreply
This is an automated email from the git hooks/post-receive script.

alex pushed a 
change to branch 
master
in repository xfce/libxfce4ui.

  from  3db1569   Updates for release
   new  b45139f   Forgot to add new methods to libxfce4ui.symbols. Folowup 
of 231e57daccb5946379f413ed440629c32025f6f3

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:
 libxfce4ui/libxfce4ui.symbols | 12 
 1 file changed, 12 insertions(+)

-- 
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-panel] 02/02: Update docstring

2020-04-04 Thread noreply
This is an automated email from the git hooks/post-receive script.

ochosi pushed a 
commit to branch 
master
in repository xfce/xfce4-panel.

commit f71cbe4cb858756c0d82a28abde37de9047a6711
Author: Simon Steinbeiss 
Date:   Sat Apr 4 23:46:42 2020 +0200

Update docstring
---
 libxfce4panel/xfce-panel-plugin.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/libxfce4panel/xfce-panel-plugin.c 
b/libxfce4panel/xfce-panel-plugin.c
index 56be944..5adc02a 100644
--- a/libxfce4panel/xfce-panel-plugin.c
+++ b/libxfce4panel/xfce-panel-plugin.c
@@ -2296,7 +2296,8 @@ xfce_panel_plugin_add_action_widget (XfcePanelPlugin 
*plugin,
  * @item   : a #GtkMenuItem.
  *
  * Insert a custom menu item to the plugin's right click menu. This item
- * is packed below the "Move" menu item.
+ * is packed below the first item in the menu, which displays the plugin's
+ * name.
  **/
 void
 xfce_panel_plugin_menu_insert_item (XfcePanelPlugin *plugin,

-- 
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-panel] 01/02: Update libxfce4panel symbols

2020-04-04 Thread noreply
This is an automated email from the git hooks/post-receive script.

ochosi pushed a 
commit to branch 
master
in repository xfce/xfce4-panel.

commit aa276a295a8bdc9e9ac1ef1f039ed3a49df44820
Author: Simon Steinbeiss 
Date:   Sat Apr 4 23:45:33 2020 +0200

Update libxfce4panel symbols
---
 libxfce4panel/libxfce4panel.symbols | 1 +
 1 file changed, 1 insertion(+)

diff --git a/libxfce4panel/libxfce4panel.symbols 
b/libxfce4panel/libxfce4panel.symbols
index d690e5e..a09f6b6 100644
--- a/libxfce4panel/libxfce4panel.symbols
+++ b/libxfce4panel/libxfce4panel.symbols
@@ -115,6 +115,7 @@ xfce_panel_plugin_add_action_widget
 xfce_panel_plugin_menu_insert_item
 xfce_panel_plugin_menu_show_configure
 xfce_panel_plugin_menu_show_about
+xfce_panel_plugin_menu_destroy
 xfce_panel_plugin_block_menu
 xfce_panel_plugin_unblock_menu
 xfce_panel_plugin_register_menu

-- 
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-panel] branch master updated (0a59e41 -> f71cbe4)

2020-04-04 Thread noreply
This is an automated email from the git hooks/post-receive script.

ochosi pushed a 
change to branch 
master
in repository xfce/xfce4-panel.

  from  0a59e41   plugin: Show custom menu items below plugin name
   new  aa276a2   Update libxfce4panel symbols
   new  f71cbe4   Update docstring

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:
 libxfce4panel/libxfce4panel.symbols | 1 +
 libxfce4panel/xfce-panel-plugin.c   | 3 ++-
 2 files changed, 3 insertions(+), 1 deletion(-)

-- 
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] branch master updated (4f5e278 -> 33cae35)

2020-04-04 Thread noreply
This is an automated email from the git hooks/post-receive script.

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

  from  4f5e278   I18n: Update translation pt_BR (100%).
   new  33cae35   Fix unprintable character in summary subtitle (bug #16394)

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:
 panel-plugin/weather-summary.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

-- 
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: Fix unprintable character in summary subtitle (bug #16394)

2020-04-04 Thread noreply
This is an automated email from the git hooks/post-receive script.

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

commit 33cae35fd68cd27a9e9873222d73386c70558d43
Author: Harald Judt 
Date:   Sat Apr 4 23:26:09 2020 +0200

Fix unprintable character in summary subtitle (bug #16394)

Due to the CSD changes, the subtitle will now no longer be split into
two lines, and an unprintable character will be shown instead of the
newline. Let's just separate location and date a bit using simple
spaces.
---
 panel-plugin/weather-summary.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/panel-plugin/weather-summary.c b/panel-plugin/weather-summary.c
index afce939..a8da723 100644
--- a/panel-plugin/weather-summary.c
+++ b/panel-plugin/weather-summary.c
@@ -1140,7 +1140,7 @@ update_summary_subtitle(plugin_data *data)
 
 time(_t);
 date = format_date(now_t, "%Y-%m-%d %H:%M:%S (%Z)", TRUE);
-title = g_strdup_printf("%s\n%s", data->location_name, date);
+title = g_strdup_printf("%s   %s", data->location_name, date);
 g_free(date);
 xfce_titled_dialog_set_subtitle(XFCE_TITLED_DIALOG(data->summary_window),
 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] [xfce/libxfce4ui] annotated tag libxfce4ui-4.15.2 deleted (was 58342e5)

2020-04-04 Thread noreply
This is an automated email from the git hooks/post-receive script.

ochosi pushed a 
change to annotated 
tag 
libxfce4ui-4.15.2
in repository xfce/libxfce4ui.

*** WARNING: tag libxfce4ui-4.15.2 was deleted! ***

   tag was  58342e5

The revisions that were on this annotated tag are still contained in
other references; therefore, this change does not discard any commits
from the repository.

-- 
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/libxfce4ui] annotated tag libxfce4ui-4.15.2 created (now 58342e5)

2020-04-04 Thread noreply
This is an automated email from the git hooks/post-receive script.

ochosi pushed a 
change to annotated 
tag 
libxfce4ui-4.15.2
in repository xfce/libxfce4ui.

at  58342e5   (tag)
   tagging  3db1569ffa08b76bc262cdc4da4ba3e1ebdedefa (commit)
  replaces  libxfce4ui-4.15.1
 tagged by  Simon Steinbeiss
on  Sat Apr 4 23:27:14 2020 +0200

- Log -
4.15.2

- Added methods to replace deprecated GtkAction, GtkActionEntry and
  GtkUiManager in order to keep simple menu creation
  (xfce_gtk_menu_item*, etc.)
- Add a widget for filename input (Bug #16542)
- Enabled doc generation for XfceGtkActionEntry and related methods
- Enabled doc generation for new widget 'xfce-filename-input'
- Switch Ctrl+Alt+Del to xfce4-session-logout (Bug #11979)
- Add more default keyboard shortcuts (Bug #16470)
- shortcuts: Replace xfrun4 by xfce4-appfinder
- shortcuts: Also map Homepage to browser
- shortcuts: Remove calculator shortcut
- Update gitignore
- Translation Updates:
  Albanian, Basque, Belarusian, Chinese (China), Chinese (Taiwan),
  Croatian, Danish, Dutch, French, Galician, German, Hebrew, Hungarian,
  Kazakh, Malay, Norwegian Bokmål, Portuguese, Portuguese (Brazil),
  Russian, Serbian, Slovenian, Swedish, Ukrainian
---

No new revisions were added by this update.

-- 
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/libxfce4ui] 01/01: Updates for release

2020-04-04 Thread noreply
This is an automated email from the git hooks/post-receive script.

ochosi pushed a 
commit to branch 
master
in repository xfce/libxfce4ui.

commit 3db1569ffa08b76bc262cdc4da4ba3e1ebdedefa
Author: Simon Steinbeiss 
Date:   Sat Apr 4 23:27:12 2020 +0200

Updates for release
---
 NEWS| 20 
 configure.ac.in |  4 ++--
 2 files changed, 22 insertions(+), 2 deletions(-)

diff --git a/NEWS b/NEWS
index efe2970..2ffa596 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,23 @@
+4.15.2
+==
+- Added methods to replace deprecated GtkAction, GtkActionEntry and 
+  GtkUiManager in order to keep simple menu creation
+  (xfce_gtk_menu_item*, etc.)
+- Add a widget for filename input (Bug #16542)
+- Enabled doc generation for XfceGtkActionEntry and related methods
+- Enabled doc generation for new widget 'xfce-filename-input'
+- Switch Ctrl+Alt+Del to xfce4-session-logout (Bug #11979)
+- Add more default keyboard shortcuts (Bug #16470)
+- shortcuts: Replace xfrun4 by xfce4-appfinder
+- shortcuts: Also map Homepage to browser
+- shortcuts: Remove calculator shortcut
+- Update gitignore
+- Translation Updates:
+  Albanian, Basque, Belarusian, Chinese (China), Chinese (Taiwan),
+  Croatian, Danish, Dutch, French, Galician, German, Hebrew, Hungarian,
+  Kazakh, Malay, Norwegian Bokmål, Portuguese, Portuguese (Brazil),
+  Russian, Serbian, Slovenian, Swedish, Ukrainian
+
 4.15.1
 ==
 - Switch XfceTitledDialog to headerbar layout
diff --git a/configure.ac.in b/configure.ac.in
index 0786d7f..20af60f 100644
--- a/configure.ac.in
+++ b/configure.ac.in
@@ -9,10 +9,10 @@ m4_define([libxfce4ui_verinfo], [0:0:0])
 m4_define([libxfce4ui_version_api], [2])
 m4_define([libxfce4ui_version_major], [4])
 m4_define([libxfce4ui_version_minor], [15])
-m4_define([libxfce4ui_version_micro], [1])
+m4_define([libxfce4ui_version_micro], [2])
 m4_define([libxfce4ui_version_nano], []) dnl leave this empty to have no nano 
version
 m4_define([libxfce4ui_version_build], [@REVISION@])
-m4_define([libxfce4ui_version_tag], [git])
+m4_define([libxfce4ui_version_tag], [])
 m4_define([libxfce4ui_version], 
[libxfce4ui_version_major().libxfce4ui_version_minor().libxfce4ui_version_micro()ifelse(libxfce4ui_version_nano(),
 [], [], [.libxfce4ui_version_nano()])ifelse(libxfce4ui_version_tag(), [git], 
[libxfce4ui_version_tag()-libxfce4ui_version_build()], 
[libxfce4ui_version_tag()])])
 
 m4_define([libxfce4kbd_private_verinfo], [0:0:0])

-- 
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/libxfce4ui] branch master updated (24cb119 -> 3db1569)

2020-04-04 Thread noreply
This is an automated email from the git hooks/post-receive script.

ochosi pushed a 
change to branch 
master
in repository xfce/libxfce4ui.

  from  24cb119   I18n: Update translation eu (97%).
   new  3db1569   Updates for release

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:
 NEWS| 20 
 configure.ac.in |  4 ++--
 2 files changed, 22 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-genmon-plugin] branch master updated (66229c4 -> 837cbc0)

2020-04-04 Thread noreply
This is an automated email from the git hooks/post-receive script.

ToZ pushed a change 
to branch master
in repository panel-plugins/xfce4-genmon-plugin.

  from  66229c4   Set tmp variable default values
   new  837cbc0   Catch some edge cases

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:
 panel-plugin/main.c | 6 ++
 1 file changed, 6 insertions(+)

-- 
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-genmon-plugin] 01/01: Catch some edge cases

2020-04-04 Thread noreply
This is an automated email from the git hooks/post-receive script.

ToZ pushed a commit 
to branch master
in repository panel-plugins/xfce4-genmon-plugin.

commit 837cbc00a4df82cbf76db5cd86e0972f42657459
Author: ToZ 
Date:   Sat Apr 4 16:50:51 2020 -0400

Catch some edge cases
---
 panel-plugin/main.c | 6 ++
 1 file changed, 6 insertions(+)

diff --git a/panel-plugin/main.c b/panel-plugin/main.c
index 2977fa2..bb0fad7 100644
--- a/panel-plugin/main.c
+++ b/panel-plugin/main.c
@@ -860,6 +860,12 @@ static void genmon_dialog_response (GtkWidget *dlg, int 
response,
/* Do not wait the next timer to update display */
DisplayCmdOutput (genmon);
}
+   else {
+   poConf->acFonttmp = g_strdup (poConf->acFont);
+   poConf->fTitleDisplayedtmp = poConf->fTitleDisplayed;
+   poConf->iPeriod_mstmp = poConf->iPeriod_ms;
+   }
+   
gtk_widget_destroy (dlg);
xfce_panel_plugin_unblock_menu (genmon->plugin);
 }

-- 
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-panel] branch master updated (7f3dd44 -> 0a59e41)

2020-04-04 Thread noreply
This is an automated email from the git hooks/post-receive script.

ochosi pushed a 
change to branch 
master
in repository xfce/xfce4-panel.

  from  7f3dd44   launcher: Show desktop actions in context menu
   new  0a59e41   plugin: Show custom menu items below plugin name

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:
 libxfce4panel/xfce-panel-plugin.c | 8 
 1 file changed, 4 insertions(+), 4 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-panel] 01/01: plugin: Show custom menu items below plugin name

2020-04-04 Thread noreply
This is an automated email from the git hooks/post-receive script.

ochosi pushed a 
commit to branch 
master
in repository xfce/xfce4-panel.

commit 0a59e41de031e204eb2b83cd2813542537143783
Author: Simon Steinbeiss 
Date:   Sat Apr 4 21:38:17 2020 +0200

plugin: Show custom menu items below plugin name

Previously all custom panel menu items were shown below the "Move"
context menu item.
---
 libxfce4panel/xfce-panel-plugin.c | 8 
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/libxfce4panel/xfce-panel-plugin.c 
b/libxfce4panel/xfce-panel-plugin.c
index 52159ee..56be944 100644
--- a/libxfce4panel/xfce-panel-plugin.c
+++ b/libxfce4panel/xfce-panel-plugin.c
@@ -1221,6 +1221,10 @@ xfce_panel_plugin_menu_get (XfcePanelPlugin *plugin)
   gtk_widget_set_sensitive (item, FALSE);
   gtk_widget_show (item);
 
+  /* add custom menu items */
+  for (li = plugin->priv->menu_items; li != NULL; li = li->next)
+gtk_menu_shell_append (GTK_MENU_SHELL (menu), GTK_WIDGET (li->data));
+
   /* separator */
   item = gtk_separator_menu_item_new ();
   gtk_menu_shell_append (GTK_MENU_SHELL (menu), item);
@@ -1273,10 +1277,6 @@ G_GNUC_BEGIN_IGNORE_DEPRECATIONS
 G_GNUC_END_IGNORE_DEPRECATIONS
   gtk_widget_show (image);
 
-  /* add custom menu items */
-  for (li = plugin->priv->menu_items; li != NULL; li = li->next)
-gtk_menu_shell_append (GTK_MENU_SHELL (menu), GTK_WIDGET 
(li->data));
-
   /* separator */
   item = gtk_separator_menu_item_new ();
   gtk_menu_shell_append (GTK_MENU_SHELL (menu), item);

-- 
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-panel] branch master updated (ae19e00 -> 7f3dd44)

2020-04-04 Thread noreply
This is an automated email from the git hooks/post-receive script.

ochosi pushed a 
change to branch 
master
in repository xfce/xfce4-panel.

  from  ae19e00   I18n: Update translation pt_BR (99%).
   new  fb37ad2   Add xfce_panel_plugin_menu_destroy to plugin API
   new  7f3dd44   launcher: Show desktop actions in context menu

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:
 docs/references/libxfce4panel-sections.txt |  1 +
 libxfce4panel/xfce-panel-plugin.c  | 57 +
 libxfce4panel/xfce-panel-plugin.h  |  2 +
 plugins/launcher/Makefile.am   |  2 +
 plugins/launcher/launcher.c| 82 +-
 5 files changed, 123 insertions(+), 21 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-panel] 01/02: Add xfce_panel_plugin_menu_destroy to plugin API

2020-04-04 Thread noreply
This is an automated email from the git hooks/post-receive script.

ochosi pushed a 
commit to branch 
master
in repository xfce/xfce4-panel.

commit fb37ad2c35b7903c22f8c4e1de9238783937be36
Author: Simon Steinbeiss 
Date:   Sat Apr 4 20:47:36 2020 +0200

Add xfce_panel_plugin_menu_destroy to plugin API

This call allows plugins to destroy and recreate the plugin's
context menu. This is not necessary for most plugins, as the
xfce_panel_plugin_menu_insert_item refreshes the menu.
In the case of the launcher's action menu we need to more frequently
refresh the menu and also be able to remove all custom icons at once.
---
 docs/references/libxfce4panel-sections.txt |  1 +
 libxfce4panel/xfce-panel-plugin.c  | 57 +++---
 libxfce4panel/xfce-panel-plugin.h  |  2 ++
 3 files changed, 40 insertions(+), 20 deletions(-)

diff --git a/docs/references/libxfce4panel-sections.txt 
b/docs/references/libxfce4panel-sections.txt
index c2d59b3..58e832e 100644
--- a/docs/references/libxfce4panel-sections.txt
+++ b/docs/references/libxfce4panel-sections.txt
@@ -103,6 +103,7 @@ xfce_panel_plugin_add_action_widget
 xfce_panel_plugin_menu_insert_item
 xfce_panel_plugin_menu_show_configure
 xfce_panel_plugin_menu_show_about
+xfce_panel_plugin_menu_destroy
 xfce_panel_plugin_remove
 xfce_panel_plugin_block_menu
 xfce_panel_plugin_unblock_menu
diff --git a/libxfce4panel/xfce-panel-plugin.c 
b/libxfce4panel/xfce-panel-plugin.c
index 1e11b6e..52159ee 100644
--- a/libxfce4panel/xfce-panel-plugin.c
+++ b/libxfce4panel/xfce-panel-plugin.c
@@ -1197,26 +1197,6 @@ xfce_panel_plugin_menu_panel_help (XfcePanelPlugin 
*plugin)
 
 
 
-static void
-xfce_panel_plugin_menu_destroy (XfcePanelPlugin *plugin)
-{
-  GSList *li;
-
-  panel_return_if_fail (XFCE_IS_PANEL_PLUGIN (plugin));
-
-  if (plugin->priv->menu != NULL)
-{
-  /* remove custom items before they get destroyed */
-  for (li = plugin->priv->menu_items; li != NULL; li = li->next)
-gtk_container_remove (GTK_CONTAINER (plugin->priv->menu), GTK_WIDGET 
(li->data));
-
-  gtk_menu_detach (GTK_MENU (plugin->priv->menu));
-  plugin->priv->menu = NULL;
-}
-}
-
-
-
 static GtkMenu *
 xfce_panel_plugin_menu_get (XfcePanelPlugin *plugin)
 {
@@ -2408,6 +2388,43 @@ xfce_panel_plugin_menu_show_about (XfcePanelPlugin 
*plugin)
 
 
 /**
+ * xfce_panel_plugin_menu_destroy:
+ * @plugin : an #XfcePanelPlugin.
+ *
+ * Remove all custom menu items added through 
#xfce_panel_plugin_menu_insert_item
+ * from the menu.
+ **/
+ void
+ xfce_panel_plugin_menu_destroy (XfcePanelPlugin *plugin)
+ {
+   GSList *li;
+
+   panel_return_if_fail (XFCE_IS_PANEL_PLUGIN (plugin));
+   panel_return_if_fail (XFCE_PANEL_PLUGIN_CONSTRUCTED (plugin));
+
+   if (plugin->priv->menu != NULL)
+ {
+   /* remove custom items before they get destroyed */
+   for (li = plugin->priv->menu_items; li != NULL; li = li->next)
+ {
+   if (GTK_IS_WIDGET (li->data))
+ {
+   gtk_container_remove (GTK_CONTAINER (plugin->priv->menu), 
GTK_WIDGET (li->data));
+   g_object_unref (li->data);
+ }
+   xfce_panel_plugin_menu_item_destroy (GTK_WIDGET (li->data), plugin);
+ }
+   g_slist_free (li);
+
+   gtk_menu_detach (GTK_MENU (plugin->priv->menu));
+   plugin->priv->menu = NULL;
+ }
+ }
+
+
+
+
+/**
  * xfce_panel_plugin_get_locked:
  * @plugin : an #XfcePanelPlugin.
  *
diff --git a/libxfce4panel/xfce-panel-plugin.h 
b/libxfce4panel/xfce-panel-plugin.h
index 6cfe47c..dee7539 100644
--- a/libxfce4panel/xfce-panel-plugin.h
+++ b/libxfce4panel/xfce-panel-plugin.h
@@ -209,6 +209,8 @@ void  xfce_panel_plugin_menu_show_configure 
(XfcePanelPlugin   *
 
 void  xfce_panel_plugin_menu_show_about (XfcePanelPlugin   
*plugin);
 
+void  xfce_panel_plugin_menu_destroy(XfcePanelPlugin   
*plugin);
+
 gboolean  xfce_panel_plugin_get_locked  (XfcePanelPlugin   
*plugin);
 
 void  xfce_panel_plugin_remove  (XfcePanelPlugin   
*plugin);

-- 
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-panel] 02/02: launcher: Show desktop actions in context menu

2020-04-04 Thread noreply
This is an automated email from the git hooks/post-receive script.

ochosi pushed a 
commit to branch 
master
in repository xfce/xfce4-panel.

commit 7f3dd44de951a74dc1adb446e2b2f643043b1100
Author: Simon Steinbeiss 
Date:   Sat Apr 4 21:11:37 2020 +0200

launcher: Show desktop actions in context menu

So e.g. for Firefox this includes "Open a New Window" and
"Open a New Private Window".
This feature is only available for launchers holding a single
application (as opposed to launcher menus).
This feature depends on garcon >= 0.7.0.
---
 plugins/launcher/Makefile.am |  2 ++
 plugins/launcher/launcher.c  | 82 +++-
 2 files changed, 83 insertions(+), 1 deletion(-)

diff --git a/plugins/launcher/Makefile.am b/plugins/launcher/Makefile.am
index 2ce91b3..973d25d 100644
--- a/plugins/launcher/Makefile.am
+++ b/plugins/launcher/Makefile.am
@@ -25,6 +25,7 @@ liblauncher_la_CFLAGS = \
$(LIBXFCE4UTIL_CFLAGS) \
$(LIBXFCE4UI_CFLAGS) \
$(GARCON_CFLAGS) \
+   $(GARCON_GTK3_CFLAGS) \
$(GIO_CFLAGS) \
$(XFCONF_CFLAGS) \
$(PLATFORM_CFLAGS)
@@ -43,6 +44,7 @@ liblauncher_la_LIBADD = \
$(LIBXFCE4UTIL_LIBS) \
$(LIBXFCE4UI_LIBS) \
$(GARCON_LIBS) \
+   $(GARCON_GTK3_LIBS) \
$(GIO_LIBS) \
$(XFCONF_LIBS)
 
diff --git a/plugins/launcher/launcher.c b/plugins/launcher/launcher.c
index 5731aca..531fc3e 100644
--- a/plugins/launcher/launcher.c
+++ b/plugins/launcher/launcher.c
@@ -28,6 +28,7 @@
 #include 
 #include 
 #include 
+#include 
 #include 
 
 #include 
@@ -93,6 +94,9 @@ static void   
launcher_plugin_menu_popup_destroyed  (gpointe
 static gboolean   launcher_plugin_menu_popup
(gpointer  user_data);
 static void   launcher_plugin_menu_destroy  
(LauncherPlugin   *plugin);
 static void   launcher_plugin_button_update 
(LauncherPlugin   *plugin);
+#if GARCON_CHECK_VERSION(0,7,0)
+static void   launcher_plugin_button_update_action_menu 
(LauncherPlugin   *plugin);
+#endif
 static void   launcher_plugin_button_state_changed  
(GtkWidget*button_a,
  
GtkStateType state,
  
GtkWidget*button_b);
@@ -191,6 +195,9 @@ struct _LauncherPlugin
   GtkWidget *arrow;
   GtkWidget *child;
   GtkWidget *menu;
+#if GARCON_CHECK_VERSION(0,7,0)
+  GtkWidget *action_menu;
+#endif
 
   GSList*items;
 
@@ -336,6 +343,9 @@ launcher_plugin_init (LauncherPlugin *plugin)
   plugin->show_label = FALSE;
   plugin->arrow_position = LAUNCHER_ARROW_DEFAULT;
   plugin->menu = NULL;
+#if GARCON_CHECK_VERSION(0,7,0)
+  plugin->action_menu = NULL;
+#endif
   plugin->items = NULL;
   plugin->child = NULL;
   plugin->tooltip_cache = NULL;
@@ -501,7 +511,12 @@ launcher_plugin_item_changed (GarconMenuItem *item,
 {
   /* update the button or destroy the menu */
   if (plugin->items == li)
-launcher_plugin_button_update (plugin);
+{
+  launcher_plugin_button_update (plugin);
+#if GARCON_CHECK_VERSION(0,7,0)
+  launcher_plugin_button_update_action_menu (plugin);
+#endif
+}
   else
 launcher_plugin_menu_destroy (plugin);
 }
@@ -862,6 +877,9 @@ launcher_plugin_set_property (GObject  *object,
 
   /* update the button */
   launcher_plugin_button_update (plugin);
+#if GARCON_CHECK_VERSION(0,7,0)
+  launcher_plugin_button_update_action_menu (plugin);
+#endif
 
   /* update the widget packing */
   goto update_arrow;
@@ -1003,6 +1021,9 @@ launcher_plugin_file_changed (GFileMonitor  *monitor,
 {
   launcher_plugin_button_update (plugin);
   launcher_plugin_menu_destroy (plugin);
+#if GARCON_CHECK_VERSION(0,7,0)
+  launcher_plugin_button_update_action_menu (plugin);
+#endif
 
   /* save the new config */
   launcher_plugin_save_delayed (plugin);
@@ -1835,6 +1856,65 @@ launcher_plugin_button_update (LauncherPlugin *plugin)
 
 
 
+#if GARCON_CHECK_VERSION(0,7,0)
+static void
+launcher_plugin_add_desktop_actions (GtkWidget *widget, gpointer user_data)
+{
+  LauncherPlugin *plugin = XFCE_LAUNCHER_PLUGIN (user_data);
+
+  panel_return_if_fail (GTK_IS_WIDGET (widget));
+  panel_return_if_fail (GTK_IS_MENU (plugin->action_menu));
+  panel_return_if_fail (XFCE_IS_LAUNCHER_PLUGIN (plugin));
+
+  /* Pack the action menu item into the plugin's context menu */
+  g_object_ref (widget);
+  gtk_container_remove (GTK_CONTAINER (plugin->action_menu), widget);
+  xfce_panel_plugin_menu_insert_item (XFCE_PANEL_PLUGIN 

[Xfce4-commits] [xfce/garcon] branch master updated (c78e7fe -> 541c4c0)

2020-04-04 Thread noreply
This is an automated email from the git hooks/post-receive script.

ochosi pushed a 
change to branch 
master
in repository xfce/garcon.

  from  c78e7fe   Updates for release
   new  541c4c0   Back to development

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:
 configure.ac.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

-- 
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/garcon] 01/01: Back to development

2020-04-04 Thread noreply
This is an automated email from the git hooks/post-receive script.

ochosi pushed a 
commit to branch 
master
in repository xfce/garcon.

commit 541c4c044154978cfc37c10a91b0d52fa5bf0f98
Author: Simon Steinbeiss 
Date:   Sat Apr 4 21:03:42 2020 +0200

Back to development
---
 configure.ac.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/configure.ac.in b/configure.ac.in
index 8d89768..66f06ec 100644
--- a/configure.ac.in
+++ b/configure.ac.in
@@ -27,7 +27,7 @@ m4_define([garcon_version_major], [0])
 m4_define([garcon_version_minor], [7])
 m4_define([garcon_version_micro], [0])
 m4_define([garcon_version_build], [@REVISION@])
-m4_define([garcon_version_tag], [])
+m4_define([garcon_version_tag], [git])
 m4_define([garcon_version], 
[garcon_version_major().garcon_version_minor().garcon_version_micro()ifelse(garcon_version_tag(),
 [git], [garcon_version_tag()-garcon_version_build()], [garcon_version_tag()])])
 
 dnl 

-- 
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/garcon] annotated tag garcon-0.7.0 created (now 5e936ef)

2020-04-04 Thread noreply
This is an automated email from the git hooks/post-receive script.

ochosi pushed a 
change to annotated 
tag garcon-0.7.0
in repository xfce/garcon.

at  5e936ef   (tag)
   tagging  c78e7fedd97af0faf0cd49fec93f72f7609db403 (commit)
  replaces  xfce-4.14.0
 tagged by  Simon Steinbeiss
on  Sat Apr 4 21:01:28 2020 +0200

- Log -
0.7.0

- Add garcon_menu_item_[g|s]et_keywords to docs
- Add garcon_gtk_menu_get_desktop_actions_menu
- Improve docstrings
- Translation Updates:
  Albanian, Asturian, Belarusian, Chinese (Taiwan), Galician, Georgian,
  Hindi, Spanish
---

No new revisions were added by this update.

-- 
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/garcon] branch master updated (f08cc6f -> c78e7fe)

2020-04-04 Thread noreply
This is an automated email from the git hooks/post-receive script.

ochosi pushed a 
change to branch 
master
in repository xfce/garcon.

  from  f08cc6f   I18n: Update translation ast (100%).
   new  c78e7fe   Updates for release

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:
 NEWS| 9 +
 configure.ac.in | 6 +++---
 2 files changed, 12 insertions(+), 3 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/garcon] 01/01: Updates for release

2020-04-04 Thread noreply
This is an automated email from the git hooks/post-receive script.

ochosi pushed a 
commit to branch 
master
in repository xfce/garcon.

commit c78e7fedd97af0faf0cd49fec93f72f7609db403
Author: Simon Steinbeiss 
Date:   Sat Apr 4 21:01:19 2020 +0200

Updates for release
---
 NEWS| 9 +
 configure.ac.in | 6 +++---
 2 files changed, 12 insertions(+), 3 deletions(-)

diff --git a/NEWS b/NEWS
index 20faaac..63162dc 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,12 @@
+0.7.0
+==
+- Add garcon_menu_item_[g|s]et_keywords to docs
+- Add garcon_gtk_menu_get_desktop_actions_menu
+- Improve docstrings
+- Translation Updates:
+  Albanian, Asturian, Belarusian, Chinese (Taiwan), Galician, Georgian,
+  Hindi, Spanish
+
 0.6.4
 ==
  - Update gitignore
diff --git a/configure.ac.in b/configure.ac.in
index 637d406..8d89768 100644
--- a/configure.ac.in
+++ b/configure.ac.in
@@ -24,10 +24,10 @@ dnl ***
 m4_define([garcon_verinfo], [0:0:0])
 m4_define([garcon_version_api_major], [1])
 m4_define([garcon_version_major], [0])
-m4_define([garcon_version_minor], [6])
-m4_define([garcon_version_micro], [4])
+m4_define([garcon_version_minor], [7])
+m4_define([garcon_version_micro], [0])
 m4_define([garcon_version_build], [@REVISION@])
-m4_define([garcon_version_tag], [git])
+m4_define([garcon_version_tag], [])
 m4_define([garcon_version], 
[garcon_version_major().garcon_version_minor().garcon_version_micro()ifelse(garcon_version_tag(),
 [git], [garcon_version_tag()-garcon_version_build()], [garcon_version_tag()])])
 
 dnl 

-- 
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-genmon-plugin] 04/08: Support new libxfce4ui API

2020-04-04 Thread noreply
This is an automated email from the git hooks/post-receive script.

ToZ pushed a commit 
to branch master
in repository panel-plugins/xfce4-genmon-plugin.

commit 6fe22377873f180a8ee344f3ada71243ed001c19
Author: ToZ 
Date:   Sat Apr 4 13:20:25 2020 -0400

Support new libxfce4ui API
---
 panel-plugin/main.c | 8 
 1 file changed, 8 insertions(+)

diff --git a/panel-plugin/main.c b/panel-plugin/main.c
index 160558a..e68527d 100644
--- a/panel-plugin/main.c
+++ b/panel-plugin/main.c
@@ -854,11 +854,19 @@ static void genmon_create_options (XfcePanelPlugin 
*plugin,
 
 xfce_panel_plugin_block_menu (plugin);
 
+#if LIBXFCE4UI_CHECK_VERSION (4, 15, 1)
+dlg = xfce_titled_dialog_new_with_mixed_buttons (_("Generic Monitor"),
+ GTK_WINDOW (gtk_widget_get_toplevel (GTK_WIDGET (plugin))),
+ GTK_DIALOG_DESTROY_WITH_PARENT,
+ "gtk-save", "_Save", GTK_RESPONSE_OK,
+ NULL);
+#else
 dlg = xfce_titled_dialog_new_with_buttons (_("Generic Monitor"),
 GTK_WINDOW (gtk_widget_get_toplevel (GTK_WIDGET (plugin))),
 GTK_DIALOG_DESTROY_WITH_PARENT,
 "gtk-save", GTK_RESPONSE_OK,
 NULL);
+#endif
 
 gtk_window_set_resizable (GTK_WINDOW (dlg), FALSE);
 gtk_window_set_icon_name (GTK_WINDOW (dlg), "utilities-system-monitor");

-- 
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-genmon-plugin] 07/08: Fix period spinner display when cancelled

2020-04-04 Thread noreply
This is an automated email from the git hooks/post-receive script.

ToZ pushed a commit 
to branch master
in repository panel-plugins/xfce4-genmon-plugin.

commit f1614157d10c29fddfc5ca320657a3af7aabab24
Author: ToZ 
Date:   Sat Apr 4 13:21:34 2020 -0400

Fix period spinner display when cancelled
---
 panel-plugin/main.c | 5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/panel-plugin/main.c b/panel-plugin/main.c
index fcb59c5..6f74014 100644
--- a/panel-plugin/main.c
+++ b/panel-plugin/main.c
@@ -50,6 +50,7 @@ typedef struct param_t {
 intfTitleDisplayedtmp;
 char   *acTitle;
 uint32_tiPeriod_ms;
+uint32_t   iPeriod_mstmp;
 char   *acFont;
 char  *acFonttmp;
 } param_t;
@@ -747,7 +748,7 @@ static void SetPeriod (GtkWidget *p_wSc, void *p_pvPlugin)
 
 TRACE ("SetPeriod()\n");
 r = gtk_spin_button_get_value (GTK_SPIN_BUTTON (p_wSc));
-poConf->iPeriod_ms = (r * 1000);
+poConf->iPeriod_mstmp = (r * 1000);
 }/* SetPeriod() */
 
 /**/
@@ -849,6 +850,8 @@ static void genmon_dialog_response (GtkWidget *dlg, int 
response,
gtk_widget_show (GTK_WIDGET (poMonitor->wTitle));
else
gtk_widget_hide (GTK_WIDGET (poMonitor->wTitle));
+   
+   poConf->iPeriod_ms = poConf->iPeriod_mstmp;

UpdateConf (genmon);
genmon_write_config (genmon->plugin, genmon);

-- 
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-genmon-plugin] 02/08: Closing config window cancels changes

2020-04-04 Thread noreply
This is an automated email from the git hooks/post-receive script.

ToZ pushed a commit 
to branch master
in repository panel-plugins/xfce4-genmon-plugin.

commit 9bf41971898c20fddefc6fd336478100ac069f56
Author: ToZ 
Date:   Sat Apr 4 13:19:37 2020 -0400

Closing config window cancels changes
---
 panel-plugin/main.c | 14 --
 1 file changed, 8 insertions(+), 6 deletions(-)

diff --git a/panel-plugin/main.c b/panel-plugin/main.c
index 203c72f..2077c09 100644
--- a/panel-plugin/main.c
+++ b/panel-plugin/main.c
@@ -831,12 +831,14 @@ static void ChooseFont (GtkWidget *p_wPB, void 
*p_pvPlugin)
 static void genmon_dialog_response (GtkWidget *dlg, int response,
 genmon_t *genmon)
 {
-UpdateConf (genmon);
-gtk_widget_destroy (dlg);
-xfce_panel_plugin_unblock_menu (genmon->plugin);
-genmon_write_config (genmon->plugin, genmon);
-/* Do not wait the next timer to update display */
-DisplayCmdOutput (genmon);
+   if (response == GTK_RESPONSE_OK) {
+   UpdateConf (genmon);
+   genmon_write_config (genmon->plugin, genmon);
+   /* Do not wait the next timer to update display */
+   DisplayCmdOutput (genmon);
+   }
+   gtk_widget_destroy (dlg);
+   xfce_panel_plugin_unblock_menu (genmon->plugin);
 }
 
 static void genmon_create_options (XfcePanelPlugin *plugin,

-- 
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-genmon-plugin] 06/08: Fix label toggle display when cancelled

2020-04-04 Thread noreply
This is an automated email from the git hooks/post-receive script.

ToZ pushed a commit 
to branch master
in repository panel-plugins/xfce4-genmon-plugin.

commit a944334e50ad8c343077000bfdf1257d618d3e16
Author: ToZ 
Date:   Sat Apr 4 13:21:02 2020 -0400

Fix label toggle display when cancelled
---
 panel-plugin/main.c | 17 +
 1 file changed, 13 insertions(+), 4 deletions(-)

diff --git a/panel-plugin/main.c b/panel-plugin/main.c
index d41f094..fcb59c5 100644
--- a/panel-plugin/main.c
+++ b/panel-plugin/main.c
@@ -47,6 +47,7 @@ typedef struct param_t {
 /* Configurable parameters */
 char   *acCmd; /* Commandline to spawn */
 int fTitleDisplayed;
+intfTitleDisplayedtmp;
 char   *acTitle;
 uint32_tiPeriod_ms;
 char   *acFont;
@@ -710,14 +711,14 @@ static void ToggleTitle (GtkWidget *p_w, void *p_pvPlugin)
 struct gui_t   *poGUI = &(poPlugin->oConf.oGUI);
 struct monitor_t *poMonitor = &(poPlugin->oMonitor);
 
-poConf->fTitleDisplayed =
+poConf->fTitleDisplayedtmp =
 gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (p_w));
 gtk_widget_set_sensitive (GTK_WIDGET (poGUI->wTF_Title),
-poConf->fTitleDisplayed);
-if (poConf->fTitleDisplayed)
+poConf->fTitleDisplayedtmp);
+/*if (poConf->fTitleDisplayedtmp)
 gtk_widget_show (GTK_WIDGET (poMonitor->wTitle));
 else
-gtk_widget_hide (GTK_WIDGET (poMonitor->wTitle));
+gtk_widget_hide (GTK_WIDGET (poMonitor->wTitle));*/
 }/* ToggleTitle() */
 
 /**/
@@ -834,6 +835,7 @@ static void genmon_dialog_response (GtkWidget *dlg, int 
response,
 genmon_t *genmon)
 {
struct param_t *poConf = &(genmon->oConf.oParam);
+struct monitor_t *poMonitor = &(genmon->oMonitor);

if (response == GTK_RESPONSE_OK) {
if (poConf->acFonttmp)
@@ -841,6 +843,13 @@ static void genmon_dialog_response (GtkWidget *dlg, int 
response,
g_free (poConf->acFont);
poConf->acFont = g_strdup (poConf->acFonttmp);
}
+   
+   poConf->fTitleDisplayed = poConf->fTitleDisplayedtmp;
+   if (poConf->fTitleDisplayed)
+   gtk_widget_show (GTK_WIDGET (poMonitor->wTitle));
+   else
+   gtk_widget_hide (GTK_WIDGET (poMonitor->wTitle));
+   
UpdateConf (genmon);
genmon_write_config (genmon->plugin, genmon);
/* Do not wait the next timer to update display */

-- 
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-genmon-plugin] 08/08: Set tmp variable default values

2020-04-04 Thread noreply
This is an automated email from the git hooks/post-receive script.

ToZ pushed a commit 
to branch master
in repository panel-plugins/xfce4-genmon-plugin.

commit 66229c4e8b3cd6e82dcc9f28b1e0d31ec7f3e786
Author: ToZ 
Date:   Sat Apr 4 13:21:55 2020 -0400

Set tmp variable default values
---
 panel-plugin/main.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/panel-plugin/main.c b/panel-plugin/main.c
index 6f74014..2977fa2 100644
--- a/panel-plugin/main.c
+++ b/panel-plugin/main.c
@@ -334,8 +334,10 @@ static genmon_t *genmon_create_control (XfcePanelPlugin 
*plugin)
 poConf->acTitle = g_strdup ("(genmon)");
 
 poConf->fTitleDisplayed = 1;
+poConf->fTitleDisplayedtmp = 1;
 
 poConf->iPeriod_ms = 30 * 1000;
+poConf->iPeriod_mstmp = 30 * 1000;
 poPlugin->iTimerId = 0;
 
 // PangoFontDescription needs a font and we can't use "(Default)" anymore.

-- 
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-genmon-plugin] 01/08: Change layout of config dialog

2020-04-04 Thread noreply
This is an automated email from the git hooks/post-receive script.

ToZ pushed a commit 
to branch master
in repository panel-plugins/xfce4-genmon-plugin.

commit 8f9f9bee0fa1ca91bf8283799a4f2006b01847df
Author: ToZ 
Date:   Sat Apr 4 13:18:38 2020 -0400

Change layout of config dialog
---
 panel-plugin/config_gui.c | 15 ---
 1 file changed, 8 insertions(+), 7 deletions(-)

diff --git a/panel-plugin/config_gui.c b/panel-plugin/config_gui.c
index e43cdeb..bd0eb25 100644
--- a/panel-plugin/config_gui.c
+++ b/panel-plugin/config_gui.c
@@ -120,16 +120,17 @@ int genmon_CreateConfigGUI (GtkWidget *vbox1,
 gtk_widget_set_tooltip_text (wSc_Period, _("Interval between 2 consecutive 
spawns"));
 gtk_spin_button_set_numeric (GTK_SPIN_BUTTON (wSc_Period), TRUE);
 
-hseparator10 = gtk_separator_new(GTK_ORIENTATION_HORIZONTAL);
-gtk_widget_set_margin_top (GTK_WIDGET (hseparator10), 6);
-gtk_widget_set_margin_bottom (GTK_WIDGET (hseparator10), 6);
-gtk_widget_show (hseparator10);
-gtk_grid_attach (GTK_GRID (table1), hseparator10, 0, 3, 2, 1);
-
 wPB_Font = gtk_button_new_with_label (_("Select the display font..."));
+gtk_widget_set_margin_top (GTK_WIDGET (wPB_Font), 6);
 gtk_widget_show (wPB_Font);
-gtk_grid_attach (GTK_GRID (table1), wPB_Font, 0, 4, 2, 1);
+gtk_grid_attach (GTK_GRID (table1), wPB_Font, 0, 3, 2, 1);
 gtk_widget_set_tooltip_text (wPB_Font, _("Press to change font..."));
+
+hseparator10 = gtk_separator_new(GTK_ORIENTATION_HORIZONTAL);
+gtk_widget_set_margin_top (GTK_WIDGET (hseparator10), 6);
+gtk_widget_set_margin_bottom (GTK_WIDGET (hseparator10), 0);
+gtk_widget_show (hseparator10);
+gtk_grid_attach (GTK_GRID (table1), hseparator10, 0, 4, 2, 1);
 
 if (p_poGUI) {
 COPYVAL (p_poGUI, wTF_Cmd);

-- 
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-genmon-plugin] 03/08: Change close to save

2020-04-04 Thread noreply
This is an automated email from the git hooks/post-receive script.

ToZ pushed a commit 
to branch master
in repository panel-plugins/xfce4-genmon-plugin.

commit 63350dd36b453b428c4dc8dfc2a135e6f11429c9
Author: ToZ 
Date:   Sat Apr 4 13:19:58 2020 -0400

Change close to save
---
 panel-plugin/main.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/panel-plugin/main.c b/panel-plugin/main.c
index 2077c09..160558a 100644
--- a/panel-plugin/main.c
+++ b/panel-plugin/main.c
@@ -857,7 +857,7 @@ static void genmon_create_options (XfcePanelPlugin *plugin,
 dlg = xfce_titled_dialog_new_with_buttons (_("Generic Monitor"),
 GTK_WINDOW (gtk_widget_get_toplevel (GTK_WIDGET (plugin))),
 GTK_DIALOG_DESTROY_WITH_PARENT,
-"gtk-close", GTK_RESPONSE_OK,
+"gtk-save", GTK_RESPONSE_OK,
 NULL);
 
 gtk_window_set_resizable (GTK_WINDOW (dlg), FALSE);

-- 
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-genmon-plugin] 05/08: Fix font display when cancelled

2020-04-04 Thread noreply
This is an automated email from the git hooks/post-receive script.

ToZ pushed a commit 
to branch master
in repository panel-plugins/xfce4-genmon-plugin.

commit 659f16d8648fe2d90120570f3b6e53835ecbfe8d
Author: ToZ 
Date:   Sat Apr 4 13:20:46 2020 -0400

Fix font display when cancelled
---
 panel-plugin/main.c | 15 ---
 1 file changed, 12 insertions(+), 3 deletions(-)

diff --git a/panel-plugin/main.c b/panel-plugin/main.c
index e68527d..d41f094 100644
--- a/panel-plugin/main.c
+++ b/panel-plugin/main.c
@@ -50,6 +50,7 @@ typedef struct param_t {
 char   *acTitle;
 uint32_tiPeriod_ms;
 char   *acFont;
+char  *acFonttmp;
 } param_t;
 
 typedef struct conf_t {
@@ -516,6 +517,7 @@ static void genmon_free (XfcePanelPlugin *plugin, genmon_t 
*poPlugin)
 g_free (poPlugin->oConf.oParam.acCmd);
 g_free (poPlugin->oConf.oParam.acTitle);
 g_free (poPlugin->oConf.oParam.acFont);
+g_free (poPlugin->oConf.oParam.acFonttmp);
 g_free (poPlugin->oMonitor.onClickCmd);
 g_free (poPlugin->acValue);
 g_free (poPlugin);
@@ -818,9 +820,9 @@ static void ChooseFont (GtkWidget *p_wPB, void *p_pvPlugin)
 if (iResponse == GTK_RESPONSE_OK) {
 pcFont = gtk_font_chooser_get_font (GTK_FONT_CHOOSER (wDialog));
 if (pcFont) {
-g_free (poConf->acFont);
-poConf->acFont = g_strdup (pcFont);
-gtk_button_set_label (GTK_BUTTON (p_wPB), poConf->acFont);
+g_free (poConf->acFonttmp);
+poConf->acFonttmp = g_strdup (pcFont);
+gtk_button_set_label (GTK_BUTTON (p_wPB), poConf->acFonttmp);
 }
 }
 gtk_widget_destroy (wDialog);
@@ -831,7 +833,14 @@ static void ChooseFont (GtkWidget *p_wPB, void *p_pvPlugin)
 static void genmon_dialog_response (GtkWidget *dlg, int response,
 genmon_t *genmon)
 {
+   struct param_t *poConf = &(genmon->oConf.oParam);
+   
if (response == GTK_RESPONSE_OK) {
+   if (poConf->acFonttmp)
+   {
+   g_free (poConf->acFont);
+   poConf->acFont = g_strdup (poConf->acFonttmp);
+   }
UpdateConf (genmon);
genmon_write_config (genmon->plugin, genmon);
/* Do not wait the next timer to update display */

-- 
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-genmon-plugin] branch master updated (c2edbab -> 66229c4)

2020-04-04 Thread noreply
This is an automated email from the git hooks/post-receive script.

ToZ pushed a change 
to branch master
in repository panel-plugins/xfce4-genmon-plugin.

  from  c2edbab   I18n: Update translation be (100%).
   new  8f9f9be   Change layout of config dialog
   new  9bf4197   Closing config window cancels changes
   new  63350dd   Change close to save
   new  6fe2237   Support new libxfce4ui API
   new  659f16d   Fix font display when cancelled
   new  a944334   Fix label toggle display when cancelled
   new  f161415   Fix period spinner display when cancelled
   new  66229c4   Set tmp variable default values

The 8 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/config_gui.c | 15 +--
 panel-plugin/main.c   | 63 ---
 2 files changed, 56 insertions(+), 22 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-pulseaudio-plugin] branch master updated (6888fd6 -> f787d47)

2020-04-04 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-pulseaudio-plugin.

  from  6888fd6   I18n: Update translation da (100%).
   new  f787d47   I18n: Update translation nb (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/nb.po | 30 +++---
 1 file changed, 15 insertions(+), 15 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-pulseaudio-plugin] 01/01: I18n: Update translation nb (100%).

2020-04-04 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-pulseaudio-plugin.

commit f787d47a0b2eb1e7ae8b832a863c6a5286908969
Author: Kjell Cato Heskjestad 
Date:   Sat Apr 4 18:32:21 2020 +0200

I18n: Update translation nb (100%).

35 translated messages.

Transifex (https://www.transifex.com/xfce/public/).
---
 po/nb.po | 30 +++---
 1 file changed, 15 insertions(+), 15 deletions(-)

diff --git a/po/nb.po b/po/nb.po
index 202505f..c8458d4 100644
--- a/po/nb.po
+++ b/po/nb.po
@@ -8,13 +8,13 @@
 # Erlend Østlie , 2018
 # Harald H. , 2015
 # Harald H. , 2016
-# Kjell Cato Heskjestad , 2019
+# Kjell Cato Heskjestad , 2019-2020
 msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-02-25 18:32+0100\n"
-"PO-Revision-Date: 2019-08-11 05:42+\n"
+"POT-Creation-Date: 2020-03-29 18:32+0200\n"
+"PO-Revision-Date: 2020-04-04 12:16+\n"
 "Last-Translator: Kjell Cato Heskjestad \n"
 "Language-Team: Norwegian Bokmål 
(http://www.transifex.com/xfce/xfce-panel-plugins/language/nb/)\n"
 "MIME-Version: 1.0\n"
@@ -28,7 +28,7 @@ msgid "PulseAudio Plugin"
 msgstr "PulseAudio-tillegg"
 
 #: ../panel-plugin/pulseaudio.desktop.in.in.h:2
-#: ../panel-plugin/pulseaudio-plugin.c:241
+#: ../panel-plugin/pulseaudio-plugin.c:242
 msgid "Adjust the audio volume of the PulseAudio sound system"
 msgstr "Juster lydstyrken på PulseAudio-lydsystemet"
 
@@ -117,11 +117,11 @@ msgstr "Kjente mediespillere"
 msgid "Media Players"
 msgstr "Mediespillere"
 
-#: ../panel-plugin/pulseaudio-plugin.c:243
-msgid "Copyright © 2014-2017 Andrzej Radecki et al.\n"
-msgstr "Kopirett © 2014-2017 Andrzej Radecki et al.\n"
+#: ../panel-plugin/pulseaudio-plugin.c:244
+msgid "Copyright © 2014-2020 Andrzej Radecki et al.\n"
+msgstr "Opphavsrett © 2014-2020 Andrzej Radecki m.fl.\n"
 
-#: ../panel-plugin/pulseaudio-dialog.c:139
+#: ../panel-plugin/pulseaudio-dialog.c:142
 #: ../panel-plugin/pulseaudio-menu.c:264
 #, c-format
 msgid ""
@@ -130,7 +130,7 @@ msgid ""
 "%s"
 msgstr "Klarte ikke å utføre kommando «%s».\n\n%s"
 
-#: ../panel-plugin/pulseaudio-dialog.c:142
+#: ../panel-plugin/pulseaudio-dialog.c:145
 #: ../panel-plugin/pulseaudio-menu.c:267
 msgid "Error"
 msgstr "Feil"
@@ -151,20 +151,20 @@ msgstr "Volum %d%% (dempet)"
 msgid "Volume %d%%"
 msgstr "Volum %d%%"
 
-#: ../panel-plugin/pulseaudio-menu.c:501
+#: ../panel-plugin/pulseaudio-menu.c:507
 msgid "Output"
 msgstr "Utdata"
 
-#: ../panel-plugin/pulseaudio-menu.c:540
+#: ../panel-plugin/pulseaudio-menu.c:546
 msgid "Input"
 msgstr "Inndata"
 
-#: ../panel-plugin/pulseaudio-menu.c:628
+#: ../panel-plugin/pulseaudio-menu.c:634
 msgid "Choose Playlist"
 msgstr "Velg spilleliste"
 
 #. Audio mixers
-#: ../panel-plugin/pulseaudio-menu.c:665
+#: ../panel-plugin/pulseaudio-menu.c:671
 msgid "_Audio mixer..."
 msgstr "Lydmikser …"
 
@@ -178,7 +178,7 @@ msgstr "Volum %d%c (dempet)"
 msgid "Volume %d%c"
 msgstr "Volum %d%c"
 
-#: ../panel-plugin/mprismenuitem.c:373 ../panel-plugin/mprismenuitem.c:446
-#: ../panel-plugin/mprismenuitem.c:822
+#: ../panel-plugin/mprismenuitem.c:363 ../panel-plugin/mprismenuitem.c:436
+#: ../panel-plugin/mprismenuitem.c:810
 msgid "Not currently playing"
 msgstr "Ingen avspilling for øyeblikket"

-- 
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-clipman-plugin] 01/01: I18n: Update translation nb (100%).

2020-04-04 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-clipman-plugin.

commit 7fe4d25083741a57afbdc38ff8d34f3b9dfc3b44
Author: Kjell Cato Heskjestad 
Date:   Sat Apr 4 18:31:52 2020 +0200

I18n: Update translation nb (100%).

91 translated messages.

Transifex (https://www.transifex.com/xfce/public/).
---
 po/nb.po | 135 +--
 1 file changed, 96 insertions(+), 39 deletions(-)

diff --git a/po/nb.po b/po/nb.po
index 776d33b..0f6c3aa 100644
--- a/po/nb.po
+++ b/po/nb.po
@@ -12,8 +12,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-03-27 06:31+0100\n"
-"PO-Revision-Date: 2020-03-28 12:34+\n"
+"POT-Creation-Date: 2020-04-02 00:31+0200\n"
+"PO-Revision-Date: 2020-04-04 12:16+\n"
 "Last-Translator: Kjell Cato Heskjestad \n"
 "Language-Team: Norwegian Bokmål 
(http://www.transifex.com/xfce/xfce-panel-plugins/language/nb/)\n"
 "MIME-Version: 1.0\n"
@@ -74,7 +74,7 @@ msgstr "Forkort URL"
 #: ../panel-plugin/xfce4-clipman-plugin-autostart.desktop.in.h:1
 #: ../panel-plugin/main-panel-plugin.c:77
 #: ../panel-plugin/main-status-icon.c:81 ../panel-plugin/plugin.c:95
-#: ../panel-plugin/plugin.c:334
+#: ../panel-plugin/plugin.c:333
 msgid "Clipman"
 msgstr "Clipman"
 
@@ -83,30 +83,32 @@ msgstr "Clipman"
 msgid "Clipboard manager"
 msgstr "Utklippsbehandler"
 
-#: ../panel-plugin/xfce4-clipman-settings.c:91
+#: ../panel-plugin/xfce4-clipman-settings.c:97
 msgid "None"
 msgstr "Ingen"
 
 #. TRANSLATORS: Keyboard shortcut
-#: ../panel-plugin/xfce4-clipman-settings.c:93
+#: ../panel-plugin/xfce4-clipman-settings.c:99
 msgid "Ctrl+V"
 msgstr "Ctrl + V"
 
 #. TRANSLATORS: Keyboard shortcut
-#: ../panel-plugin/xfce4-clipman-settings.c:95
+#: ../panel-plugin/xfce4-clipman-settings.c:101
 msgid "Shift+Insert"
 msgstr "Shift + Insert"
 
-#: ../panel-plugin/xfce4-clipman-settings.c:527
+#: ../panel-plugin/xfce4-clipman-settings.c:535
 msgid "Reset actions"
 msgstr "Tilbakestill handlinger"
 
-#: ../panel-plugin/xfce4-clipman-settings.c:529
+#: ../panel-plugin/xfce4-clipman-settings.c:537
 msgid ""
 "Are you sure you want to reset the actions to the system default values?"
 msgstr "Er du sikker på at du ønsker å tilbakestille handlingene til standard 
systemverdier?"
 
 #: ../panel-plugin/settings-dialog.ui.h:1
+#: ../panel-plugin/xfce4-clipman-history.c:450
+#: ../panel-plugin/xfce4-clipman-history.c:452
 msgid "_Help"
 msgstr "_Hjelp"
 
@@ -169,8 +171,8 @@ msgid "_Behavior"
 msgstr "_Oppførsel"
 
 #: ../panel-plugin/settings-dialog.ui.h:15
-msgid "_Enable automatic actions"
-msgstr "_Slå på automatiske valg"
+msgid "_Enable automatic actions"
+msgstr "_Slå på automatiske handlinger"
 
 #: ../panel-plugin/settings-dialog.ui.h:16
 msgid ""
@@ -273,52 +275,47 @@ msgid "Edit Action"
 msgstr "Rediger handling"
 
 #: ../panel-plugin/settings-dialog.ui.h:40
-msgid ""
-"You can use the substitution parameters \"\\1\", \"\\2\" and so on in the "
-"commands. The parameter \"\\0\" represents the complete text. If you don't "
-"know regular expressions, have a look at the documentation of Clipman that "
-"has an introdution for them."
-msgstr "Du kan bruke alternative parametere «\\1», «\\2» osv. i kommandoene. 
Parameteren «\\0» representerer hele teksten. Dokumentasjonen til Clipman har 
en innføring i regulære uttrykk."
-
-#: ../panel-plugin/settings-dialog.ui.h:41
 msgid "Name:"
 msgstr "Navn:"
 
-#: ../panel-plugin/settings-dialog.ui.h:42
+#: ../panel-plugin/settings-dialog.ui.h:41
 msgid "Pattern:"
 msgstr "Mønster:"
 
-#: ../panel-plugin/settings-dialog.ui.h:43
-msgid "The pattern is always anchored within the special characters ^$"
-msgstr "Mønsteret er alltid forankret innenfor spesialtegnene ^$"
+#: ../panel-plugin/settings-dialog.ui.h:42
+msgid ""
+"You can use the substitution parameters \"\\1\", \"\\2\" and so on in the "
+"commands. The parameter \"\\0\" represents the complete text. The pattern is"
+" always anchored within the special characters ^$"
+msgstr "Man kan bruke alternative parametere «\\1», «\\2» osv. i kommandoene. 
Parameteren «\\0» står for hele teksten. Mønsteret forankres mellom 
spesialtegnene ^$."
 
-#: ../panel-plugin/settings-dialog.ui.h:44
+#: ../panel-plugin/settings-dialog.ui.h:43
 msgid "Activate only on manual copy"
 msgstr "Aktiver kun ved manuell kopiering"
 
-#: ../panel-plugin/settings-dialog.ui.h:45
+#: ../panel-plugin/settings-dialog.ui.h:44
 msgid ""
 "By default the action is triggerred by a selection, check this option to "
 "trigger the action only when you make a manual copy"
 msgstr "Forvalgt handlingsmønster er at handling blir utløst av et utvalg, huk 
av dette valget for å sette i verk en handling bare når 

[Xfce4-commits] [panel-plugins/xfce4-clipman-plugin] branch master updated (4c12d6c -> 7fe4d25)

2020-04-04 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-clipman-plugin.

  from  4c12d6c   I18n: Update translation fr (92%).
   new  7fe4d25   I18n: Update translation nb (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/nb.po | 135 +--
 1 file changed, 96 insertions(+), 39 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 nb (98%).

2020-04-04 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 ad404e7b8ca387af22b0a15ce9863ac7c5639a33
Author: Kjell Cato Heskjestad 
Date:   Sat Apr 4 18:31:04 2020 +0200

I18n: Update translation nb (98%).

452 translated messages, 9 untranslated messages.

Transifex (https://www.transifex.com/xfce/public/).
---
 po/nb.po | 190 ++-
 1 file changed, 116 insertions(+), 74 deletions(-)

diff --git a/po/nb.po b/po/nb.po
index f77111b..bbb4695 100644
--- a/po/nb.po
+++ b/po/nb.po
@@ -8,14 +8,14 @@
 # Eirik Dekko , 2018
 # Erlend Østlie , 2018-2019
 # Harald H. , 2014
-# Kjell Cato Heskjestad , 2019
+# Kjell Cato Heskjestad , 2019-2020
 # Terje Uriansrud , 2008-2009
 msgid ""
 msgstr ""
 "Project-Id-Version: Xfce4-settings\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-11-16 00:30+0100\n"
-"PO-Revision-Date: 2019-11-30 14:30+\n"
+"POT-Creation-Date: 2020-04-01 12:31+0200\n"
+"PO-Revision-Date: 2020-04-04 12:18+\n"
 "Last-Translator: Kjell Cato Heskjestad \n"
 "Language-Team: Norwegian Bokmål 
(http://www.transifex.com/xfce/xfce4-settings/language/nb/)\n"
 "MIME-Version: 1.0\n"
@@ -32,7 +32,7 @@ msgctxt "Monitor vendor"
 msgid "Unknown"
 msgstr "Ukjent"
 
-#: ../common/xfce-randr.c:286 ../dialogs/display-settings/main.c:3927
+#: ../common/xfce-randr.c:286 ../dialogs/display-settings/main.c:4101
 #, c-format
 msgid "Unable to query the version of the RandR extension being used"
 msgstr "Klarte ikke slå opp versjonen av RandR-utvidelsen som benyttes"
@@ -78,11 +78,11 @@ msgstr "Sett opp tilgjengelighet for tastatur og mus"
 #: ../dialogs/display-settings/display-dialog.glade.h:9
 #: ../dialogs/display-settings/minimal-display-dialog.glade.h:8
 #: ../dialogs/display-settings/profile-changed-dialog.glade.h:2
-#: ../dialogs/display-settings/main.c:3967
+#: ../dialogs/display-settings/main.c:4141
 #: ../dialogs/keyboard-settings/keyboard-dialog.glade.h:7
 #: ../dialogs/mouse-settings/mouse-dialog.glade.h:14
 #: ../xfce4-settings-editor/main.c:166
-#: ../xfce4-settings-manager/xfce-settings-manager-dialog.c:265
+#: ../xfce4-settings-manager/xfce-settings-manager-dialog.c:260
 msgid "_Close"
 msgstr "_Lukk"
 
@@ -93,7 +93,7 @@ msgstr "_Lukk"
 #: ../dialogs/keyboard-settings/keyboard-dialog.glade.h:8
 #: ../dialogs/mouse-settings/mouse-dialog.glade.h:13
 #: ../xfce4-settings-editor/main.c:165
-#: ../xfce4-settings-manager/xfce-settings-manager-dialog.c:262
+#: ../xfce4-settings-manager/xfce-settings-manager-dialog.c:249
 msgid "_Help"
 msgstr "_Hjelp"
 
@@ -298,7 +298,7 @@ msgstr "_Mus"
 
 #: ../dialogs/accessibility-settings/main.c:46
 #: ../dialogs/appearance-settings/main.c:109
-#: ../dialogs/color-settings/main.c:48 ../dialogs/display-settings/main.c:131
+#: ../dialogs/color-settings/main.c:48 ../dialogs/display-settings/main.c:139
 #: ../dialogs/keyboard-settings/main.c:40 ../dialogs/mime-settings/main.c:43
 #: ../dialogs/mouse-settings/main.c:84 ../xfce4-settings-editor/main.c:49
 msgid "Settings manager socket"
@@ -306,7 +306,7 @@ msgstr "Innstillingsbehandlersokkel"
 
 #: ../dialogs/accessibility-settings/main.c:46
 #: ../dialogs/appearance-settings/main.c:109
-#: ../dialogs/color-settings/main.c:48 ../dialogs/display-settings/main.c:131
+#: ../dialogs/color-settings/main.c:48 ../dialogs/display-settings/main.c:139
 #: ../dialogs/keyboard-settings/main.c:40 ../dialogs/mime-settings/main.c:43
 #: ../dialogs/mouse-settings/main.c:84 ../xfce4-settings-editor/main.c:49
 msgid "SOCKET ID"
@@ -314,21 +314,21 @@ msgstr "SOKKEL-ID"
 
 #: ../dialogs/accessibility-settings/main.c:47
 #: ../dialogs/appearance-settings/main.c:110
-#: ../dialogs/color-settings/main.c:49 ../dialogs/display-settings/main.c:132
+#: ../dialogs/color-settings/main.c:49 ../dialogs/display-settings/main.c:140
 #: ../dialogs/keyboard-settings/main.c:41 ../dialogs/mime-settings/main.c:44
 #: ../dialogs/mouse-settings/main.c:85 ../xfce4-settings-editor/main.c:50
-#: ../xfce4-settings-manager/main.c:43 ../xfsettingsd/main.c:101
+#: ../xfce4-settings-manager/main.c:43 ../xfsettingsd/main.c:102
 msgid "Version information"
 msgstr "Versjonsinformasjon"
 
 #: ../dialogs/accessibility-settings/main.c:200
 #: ../dialogs/appearance-settings/main.c:1166
 #: ../dialogs/color-settings/main.c:1390
-#: ../dialogs/display-settings/main.c:3895
+#: ../dialogs/display-settings/main.c:4069
 #: ../dialogs/keyboard-settings/main.c:78 ../dialogs/mime-settings/main.c:78
 #: ../dialogs/mouse-settings/main.c:1872 ../xfce4-settings-editor/main.c:120
-#: ../xfce4-settings-manager/main.c:64 ../xfsettingsd/main.c:237
-#: ../xfsettingsd/main.c:275
+#: ../xfce4-settings-manager/main.c:64 ../xfsettingsd/main.c:242
+#: ../xfsettingsd/main.c:280
 #, c-format
 msgid 

[Xfce4-commits] [xfce/xfce4-panel] 01/01: I18n: Update translation pt_BR (99%).

2020-04-04 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-panel.

commit ae19e0036c81425ec4d3c11c07806e0d9c3862a8
Author: Michael Martins 
Date:   Sat Apr 4 18:30:40 2020 +0200

I18n: Update translation pt_BR (99%).

428 translated messages, 1 untranslated message.

Transifex (https://www.transifex.com/xfce/public/).
---
 po/pt_BR.po | 52 +---
 1 file changed, 29 insertions(+), 23 deletions(-)

diff --git a/po/pt_BR.po b/po/pt_BR.po
index deeb8d0..4931d82 100644
--- a/po/pt_BR.po
+++ b/po/pt_BR.po
@@ -20,9 +20,9 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Xfce4-panel\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-01-30 00:30+0100\n"
-"PO-Revision-Date: 2020-03-29 01:36+\n"
-"Last-Translator: C. E.\n"
+"POT-Creation-Date: 2020-04-01 00:30+0200\n"
+"PO-Revision-Date: 2020-04-04 13:25+\n"
+"Last-Translator: Michael Martins \n"
 "Language-Team: Portuguese (Brazil) 
(http://www.transifex.com/xfce/xfce4-panel/language/pt_BR/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -40,11 +40,17 @@ msgid ""
 "file"
 msgstr "Adicionar um novo lançador ao painel baseado na informação deste 
arquivo de área de trabalho"
 
-#: ../panel-preferences.desktop.in.h:1 ../panel/panel-window.c:2871
+#: ../panel-preferences.desktop.in.h:1
+msgid ""
+"panels;settings;preferences;taskbar;autohide;application "
+"menu;start;buttons;launcher;notification area;status;icons;plugins;"
+msgstr ""
+
+#: ../panel-preferences.desktop.in.h:2 ../panel/panel-window.c:2934
 msgid "Panel"
 msgstr "Painel"
 
-#: ../panel-preferences.desktop.in.h:2
+#: ../panel-preferences.desktop.in.h:3
 msgid "Customize the panel"
 msgstr "Personalizar o painel"
 
@@ -81,7 +87,7 @@ msgstr "_Remover"
 msgid "_Properties"
 msgstr "_Propriedades"
 
-#: ../libxfce4panel/xfce-panel-plugin.c:1268 ../panel/panel-window.c:2959
+#: ../libxfce4panel/xfce-panel-plugin.c:1268 ../panel/panel-window.c:3022
 msgid "_About"
 msgstr "_Sobre"
 
@@ -93,20 +99,20 @@ msgstr "_Mover"
 msgid "Pane_l"
 msgstr "Paine_l"
 
-#: ../libxfce4panel/xfce-panel-plugin.c:1337 ../panel/panel-window.c:2884
+#: ../libxfce4panel/xfce-panel-plugin.c:1337 ../panel/panel-window.c:2947
 msgid "Add _New Items..."
 msgstr "Adicionar _novos itens..."
 
-#: ../libxfce4panel/xfce-panel-plugin.c:1352 ../panel/panel-window.c:2899
+#: ../libxfce4panel/xfce-panel-plugin.c:1352 ../panel/panel-window.c:2962
 msgid "Panel Pr_eferences..."
 msgstr "Pr_eferências do painel"
 
-#: ../libxfce4panel/xfce-panel-plugin.c:1373 ../panel/panel-window.c:2931
+#: ../libxfce4panel/xfce-panel-plugin.c:1373 ../panel/panel-window.c:2994
 msgid "Log _Out"
 msgstr "Encerrar sessã_o"
 
 #: ../libxfce4panel/xfce-panel-plugin.c:1393 ../panel/panel-item-dialog.c:207
-#: ../panel/panel-preferences-dialog.glade.h:12 ../panel/panel-window.c:2950
+#: ../panel/panel-preferences-dialog.glade.h:12 ../panel/panel-window.c:3013
 #: ../plugins/actions/actions-dialog.glade.h:4
 #: ../plugins/applicationsmenu/applicationsmenu-dialog.glade.h:2
 #: ../plugins/clock/clock-dialog.glade.h:8
@@ -247,38 +253,38 @@ msgstr "Nenhuma instância em execução do %s foi 
encontrada"
 msgid "Failed to launch the migration application"
 msgstr "Falhou ao lançar o aplicativo de migração"
 
-#: ../panel/panel-application.c:976
+#: ../panel/panel-application.c:977
 msgid "Create _Launcher"
 msgstr "Criar _lançador"
 
-#: ../panel/panel-application.c:977
+#: ../panel/panel-application.c:978
 msgid ""
 "This will create a new launcher plugin on the panel and inserts the dropped "
 "files as menu items."
 msgstr "Isto irá criar um novo plug-in lançador no painel e inserir os 
arquivos soltos como itens de menu."
 
-#: ../panel/panel-application.c:979
+#: ../panel/panel-application.c:980
 #, c-format
 msgid "Create new launcher from %d desktop file"
 msgid_plural "Create new launcher from %d desktop files"
 msgstr[0] "Criar um novo lançador a partir de %d arquivo desktop"
 msgstr[1] "Criar um novo lançador de %d arquivos desktop"
 
-#: ../panel/panel-application.c:1719
+#: ../panel/panel-application.c:1720
 msgid "Quit"
 msgstr "Sair"
 
-#: ../panel/panel-application.c:1720
+#: ../panel/panel-application.c:1721
 msgid ""
 "You have started X without session manager. Clicking Quit will close the X "
 "server."
 msgstr "Você iniciou X sem um gerenciador de sessão. Ao clicar em Sair, você 
fechará o servidor X."
 
-#: ../panel/panel-application.c:1721
+#: ../panel/panel-application.c:1722
 msgid "Are you sure you want to quit the panel?"
 msgstr "Você tem certeza que deseja fechar o painel?"
 
-#: ../panel/panel-application.c:1729
+#: ../panel/panel-application.c:1730
 #, c-format
 msgid "Failed to execute command \"%s\""
 msgstr "Não foi possível executar o 

[Xfce4-commits] [xfce/xfce4-settings] branch master updated (7048f6e -> ad404e7)

2020-04-04 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  7048f6e   I18n: Update translation da (100%).
   new  ad404e7   I18n: Update translation nb (98%).

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/nb.po | 190 ++-
 1 file changed, 116 insertions(+), 74 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-panel] branch master updated (81eb5b5 -> ae19e00)

2020-04-04 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-panel.

  from  81eb5b5   I18n: Update translation da (100%).
   new  ae19e00   I18n: Update translation pt_BR (99%).

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/pt_BR.po | 52 +---
 1 file changed, 29 insertions(+), 23 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] [www/www.xfce.org] branch master updated (f1161bb -> 91f8433)

2020-04-04 Thread noreply
This is an automated email from the git hooks/post-receive script.

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

  from  f1161bb   I18n: Update translation sr (100%).
   new  91f8433   I18n: Update translation ja (95%).

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:
 lib/po/ja.po | 12 ++--
 1 file changed, 6 insertions(+), 6 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] [www/www.xfce.org] 01/01: I18n: Update translation ja (95%).

2020-04-04 Thread noreply
This is an automated email from the git hooks/post-receive script.

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

commit 91f84335cdddf7e5897e1119c91d7f82df0cee5c
Author: Nobuhiro Iwamatsu 
Date:   Sat Apr 4 12:33:00 2020 +0200

I18n: Update translation ja (95%).

652 translated messages, 28 untranslated messages.

Transifex (https://www.transifex.com/xfce/public/).
---
 lib/po/ja.po | 12 ++--
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/lib/po/ja.po b/lib/po/ja.po
index ec61e3c..23c8bce 100644
--- a/lib/po/ja.po
+++ b/lib/po/ja.po
@@ -4,15 +4,15 @@
 # 
 # Translators:
 # Nobuhiro Iwamatsu , 2016
-# Nobuhiro Iwamatsu , 2016
+# Nobuhiro Iwamatsu , 2016,2020
 # UTUMI Hirosi , 2019-2020
 msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Websites\n"
 "Report-Msgid-Bugs-To: https://bugzilla.xfce.org\n;
 "POT-Creation-Date: 2017-05-24 12:49+0200\n"
-"PO-Revision-Date: 2020-01-03 10:16+\n"
-"Last-Translator: UTUMI Hirosi \n"
+"PO-Revision-Date: 2020-04-04 06:26+\n"
+"Last-Translator: Nobuhiro Iwamatsu \n"
 "Language-Team: Japanese 
(http://www.transifex.com/xfce/xfce-www/language/ja/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -3442,7 +3442,7 @@ msgid ""
 "transparency, item and launcher management. It also introduces a new menu "
 "plugin to view directories. Its plugin framework remains compatible with 4.6"
 " plugins."
-msgstr ""
+msgstr 
"パネルアプリケーションが書き直され、位置調整、透明度、アイテムとランチャーの管理が改善されました。また、ディレクトリを表示するための新しいメニュープラグインも導入されています。
 プラグインフレームワークは、Xfce 4.6 プラグインとの互換性を維持しています。"
 
 #: news-array.php:121
 msgid ""
@@ -3452,7 +3452,7 @@ msgid ""
 "configured to either work in clone mode or be placed next to each other. "
 "Keyboard selection has become easier and more user-friendly. Also, the "
 "manual settings editor has been updated to be more functional."
-msgstr ""
+msgstr "設定ダイアログも改善しました。 ディスプレイ構成ダイアログは RandR 1.2 
をサポートし、画面を自動的に検出し、ユーザーが好みの解像度、リフレッシュレート、回転を選択可能になります。 
画面は、クローンモードで動作するように構成することも、互いに隣接して配置するように構成することもできます。 
キーボードの選択が簡単になり、よりユーザーフレンドリーになりました。 また手動設定エディターがより機能的になるように更新されました。"
 
 #: news-array.php:122
 msgid ""
@@ -3465,7 +3465,7 @@ msgid ""
 "server. Something else you will hopefully notice is that our server and "
 "mirroring infrastructure has been improved so that our servers hopefully "
 "will not suddenly surrender shortly after this release announcement."
-msgstr ""
+msgstr "Xfce に実装されていた機能の他に、バージョン 4.8 の開発サイクルには他にもたくさんの便利な機能が取り込まれました。 2009 年 5 
月の Ubuntu デスクトップサミットで考案された「Xfce リリースおよび開発モデル」の後に本格的なリリース戦略が初めて策定されました。新しい Web 
アプリケーションにより、リリース管理が大幅に容易になりました。 Xfce 翻訳者の状況を改善するために懸命に取り組み、独自の Transifex 
サーバーをセットアップしました。 
サーバーとミラーリングのインフラストラクチャーが改善され、このリリースの発表後すぐにサーバーが突然ダウンしないようになっていることを期待できます。"
 
 #: news-array.php:123
 msgid ""

-- 
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-clipman-plugin] branch master updated (31f57d6 -> 4c12d6c)

2020-04-04 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-clipman-plugin.

  from  31f57d6   I18n: Update translation pt (100%).
   new  bbd88dc   I18n: Update translation da (100%).
   new  4c12d6c   I18n: Update translation fr (92%).

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/da.po | 16 
 po/fr.po | 56 +---
 2 files changed, 61 insertions(+), 11 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-clipman-plugin] 02/02: I18n: Update translation fr (92%).

2020-04-04 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-clipman-plugin.

commit 4c12d6ca527ea7959ea827ddcaecf3dd1b3264c5
Author: Yannick Le Guen 
Date:   Sat Apr 4 12:32:11 2020 +0200

I18n: Update translation fr (92%).

84 translated messages, 7 untranslated messages.

Transifex (https://www.transifex.com/xfce/public/).
---
 po/fr.po | 56 +---
 1 file changed, 53 insertions(+), 3 deletions(-)

diff --git a/po/fr.po b/po/fr.po
index 9779fa6..b39bc5e 100644
--- a/po/fr.po
+++ b/po/fr.po
@@ -13,8 +13,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-03-30 00:31+0200\n"
-"PO-Revision-Date: 2020-03-31 09:23+\n"
+"POT-Creation-Date: 2020-04-02 00:31+0200\n"
+"PO-Revision-Date: 2020-04-04 10:21+\n"
 "Last-Translator: Yannick Le Guen \n"
 "Language-Team: French 
(http://www.transifex.com/xfce/xfce-panel-plugins/language/fr/)\n"
 "MIME-Version: 1.0\n"
@@ -108,6 +108,8 @@ msgid ""
 msgstr "Voulez-vous vraiment réinitialiser les actions aux valeurs par défaut 
du système ?"
 
 #: ../panel-plugin/settings-dialog.ui.h:1
+#: ../panel-plugin/xfce4-clipman-history.c:450
+#: ../panel-plugin/xfce4-clipman-history.c:452
 msgid "_Help"
 msgstr "Aid_e"
 
@@ -348,7 +350,7 @@ msgid "Could not generate QR-Code."
 msgstr "Impossible de générer le code QR."
 
 #. Insert empty menu item
-#: ../panel-plugin/menu.c:425
+#: ../panel-plugin/menu.c:425 ../panel-plugin/xfce4-clipman-history.c:327
 msgid "Clipboard is empty"
 msgstr "Le presse-papiers est vide"
 
@@ -379,3 +381,51 @@ msgstr "L’équipe de traduction francophone de Xfce"
 #: ../panel-plugin/plugin.c:357
 msgid "Unable to open the settings dialog"
 msgstr "Échec à l’ouverture de la fenêtre des paramètres"
+
+#: ../panel-plugin/common.c:29
+msgid ""
+"Could not start the Clipboard Manager Daemon because it is already running."
+msgstr "Impossible de démarrer le démon du gestionnaire de presse-papiers car 
il est déjà en cours d’exécution."
+
+#: ../panel-plugin/common.c:30
+msgid "The Xfce Clipboard Manager is already running."
+msgstr "Le gestionnaire de presse-papiers Xfce est déjà en cours d’exécution."
+
+#: ../panel-plugin/common.c:37
+msgid "You can launch it with 'xfce4-clipman'."
+msgstr "Vous pouvez le lancer avec « xfce4-clipman »."
+
+#: ../panel-plugin/common.c:39
+msgid "The Clipboard Manager Daemon is not running."
+msgstr "Le démon du gestionnaire de presse-papiers n’est pas en cours 
d’exécution."
+
+#: ../panel-plugin/xfce4-clipman-history.c:249
+msgid "Enter search phrase here"
+msgstr ""
+
+#: ../panel-plugin/xfce4-clipman-history.c:423
+#, c-format
+msgid "_Paste"
+msgstr ""
+
+#: ../panel-plugin/xfce4-clipman-history.c:428
+#, c-format
+msgid "_Copy"
+msgstr ""
+
+#: ../panel-plugin/xfce4-clipman-history.c:444
+msgid "Clipman History"
+msgstr "Historique du presse-papiers"
+
+#: ../panel-plugin/xfce4-clipman-history.c:458
+#: ../panel-plugin/xfce4-clipman-history.c:460
+msgid "_Settings"
+msgstr ""
+
+#: ../panel-plugin/xfce4-clipman-settings.desktop.in.h:1
+msgid "Clipboard Manager Settings"
+msgstr "Paramètres du gestionnaire de presse-papiers"
+
+#: ../panel-plugin/xfce4-clipman-settings.desktop.in.h:2
+msgid "Customize your clipboard"
+msgstr "Personnaliser votre presse-papiers"

-- 
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-session] branch xfce-4.14 updated (e8bbbe7 -> c6bf1c3)

2020-04-04 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/xfce4-session.

  from  e8bbbe7   Back to development
   new  c6bf1c3   I18n: Update translation da (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/da.po | 9 +
 1 file changed, 5 insertions(+), 4 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-session] 01/01: I18n: Update translation da (100%).

2020-04-04 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/xfce4-session.

commit c6bf1c352432404ade2139dd4fc1346f9bda15ec
Author: Anonymous 
Date:   Sat Apr 4 12:31:14 2020 +0200

I18n: Update translation da (100%).

163 translated messages.

Transifex (https://www.transifex.com/xfce/public/).
---
 po/da.po | 9 +
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/po/da.po b/po/da.po
index 3d21c16..82ee836 100644
--- a/po/da.po
+++ b/po/da.po
@@ -5,15 +5,16 @@
 # 
 # Translators:
 # Xfce Bot , 2019
+# scootergrisen, 2020
 # 
 #, fuzzy
 msgid ""
 msgstr ""
-"Project-Id-Version: xfce4-session\n"
+"Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-10-20 18:37+0200\n"
+"POT-Creation-Date: 2019-10-21 00:31+0200\n"
 "PO-Revision-Date: 2019-10-20 16:38+\n"
-"Last-Translator: Xfce Bot , 2019\n"
+"Last-Translator: scootergrisen, 2020\n"
 "Language-Team: Danish (https://www.transifex.com/xfce/teams/16840/da/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -79,7 +80,7 @@ msgstr "Kunne ikke forbinde til indstillingsserver"
 
 #: ../settings/main.c:152
 msgid "Unable to create user interface from embedded definition data"
-msgstr "Kunne ikke oprette brugergrænseflade fra indbyggede definitionsdata"
+msgstr "Kunne ikke oprette brugerflade fra indlejrede definitionsdata"
 
 #: ../settings/main.c:165
 msgid "App_lication Autostart"

-- 
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-clipman-plugin] 01/02: I18n: Update translation da (100%).

2020-04-04 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-clipman-plugin.

commit bbd88dcbfb75f457ba10a6cb234565871007547c
Author: Anonymous 
Date:   Sat Apr 4 12:32:11 2020 +0200

I18n: Update translation da (100%).

91 translated messages.

Transifex (https://www.transifex.com/xfce/public/).
---
 po/da.po | 16 
 1 file changed, 8 insertions(+), 8 deletions(-)

diff --git a/po/da.po b/po/da.po
index 09d3e16..115301a 100644
--- a/po/da.po
+++ b/po/da.po
@@ -12,7 +12,7 @@ msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2020-04-02 00:31+0200\n"
-"PO-Revision-Date: 2020-04-02 14:04+\n"
+"PO-Revision-Date: 2020-04-04 09:04+\n"
 "Last-Translator: scootergrisen\n"
 "Language-Team: Danish 
(http://www.transifex.com/xfce/xfce-panel-plugins/language/da/)\n"
 "MIME-Version: 1.0\n"
@@ -286,7 +286,7 @@ msgid ""
 "You can use the substitution parameters \"\\1\", \"\\2\" and so on in the "
 "commands. The parameter \"\\0\" represents the complete text. The pattern is"
 " always anchored within the special characters ^$"
-msgstr ""
+msgstr "Du kan bruge erstatningsparametrene \"\\1\", \"\\2\" osv. i 
kommandoerne. Parameteren \"\\0\" repræsenterer den fulde tekst. Mønsteret er 
altid forankeret i specialtegnet ^$"
 
 #: ../panel-plugin/settings-dialog.ui.h:43
 msgid "Activate only on manual copy"
@@ -341,7 +341,7 @@ msgstr "Spørg ikke igen"
 
 #: ../panel-plugin/menu.c:297
 msgid "Unable to open the clipman history dialog"
-msgstr ""
+msgstr "Kan ikke åbne dialogen clipman-historik"
 
 #: ../panel-plugin/menu.c:411
 msgid "Could not generate QR-Code."
@@ -383,7 +383,7 @@ msgstr "Kan ikke åbne indstillingsdialogen"
 #: ../panel-plugin/common.c:29
 msgid ""
 "Could not start the Clipboard Manager Daemon because it is already running."
-msgstr ""
+msgstr "Kunne ikke starte udklipsholderhåndteringsdæmonen da den allerede 
kører."
 
 #: ../panel-plugin/common.c:30
 msgid "The Xfce Clipboard Manager is already running."
@@ -395,11 +395,11 @@ msgstr "Du kan starte den med 'xfce4-clipman'."
 
 #: ../panel-plugin/common.c:39
 msgid "The Clipboard Manager Daemon is not running."
-msgstr ""
+msgstr "Udklipsholderhåndteringsdæmonen kører ikke."
 
 #: ../panel-plugin/xfce4-clipman-history.c:249
 msgid "Enter search phrase here"
-msgstr ""
+msgstr "Indtast søgefrase her"
 
 #: ../panel-plugin/xfce4-clipman-history.c:423
 #, c-format
@@ -413,7 +413,7 @@ msgstr "_Kopiér"
 
 #: ../panel-plugin/xfce4-clipman-history.c:444
 msgid "Clipman History"
-msgstr ""
+msgstr "Clipman-historik"
 
 #: ../panel-plugin/xfce4-clipman-history.c:458
 #: ../panel-plugin/xfce4-clipman-history.c:460
@@ -422,7 +422,7 @@ msgstr "_Indstillinger"
 
 #: ../panel-plugin/xfce4-clipman-settings.desktop.in.h:1
 msgid "Clipboard Manager Settings"
-msgstr ""
+msgstr "Indstillinger for udklipsholderhåndtering"
 
 #: ../panel-plugin/xfce4-clipman-settings.desktop.in.h:2
 msgid "Customize your clipboard"

-- 
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 da (100%).

2020-04-04 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 7048f6eb776ceafa01d7cc54fda0623c9a0d6efe
Author: Anonymous 
Date:   Sat Apr 4 12:31:24 2020 +0200

I18n: Update translation da (100%).

461 translated messages.

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

diff --git a/po/da.po b/po/da.po
index 86585bd..6712622 100644
--- a/po/da.po
+++ b/po/da.po
@@ -12,7 +12,7 @@ msgstr ""
 "Project-Id-Version: Xfce4-settings\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2020-04-01 12:31+0200\n"
-"PO-Revision-Date: 2020-04-03 21:43+\n"
+"PO-Revision-Date: 2020-04-04 08:57+\n"
 "Last-Translator: scootergrisen\n"
 "Language-Team: Danish 
(http://www.transifex.com/xfce/xfce4-settings/language/da/)\n"
 "MIME-Version: 1.0\n"
@@ -359,7 +359,7 @@ msgstr "Forbedr tilgængeligheden med tastatur og mus"
 msgid ""
 "assistive;technologies;keys;sticky;bounce;emulation;screen "
 "readers;magnifiers;a11y;i18n;l10n;AT-SPI;ATK;impairment;"
-msgstr ""
+msgstr 
"hjælpeteknologier;taster;klæbe;ryste;emulering;skærmlæsere;forstørrelsesglas;a11y;i18n;l10n;AT-SPI;ATK;hæmmet;"
 
 #: ../dialogs/appearance-settings/appearance-dialog.glade.h:1
 #: ../dialogs/appearance-settings/main.c:1041
@@ -628,7 +628,7 @@ msgid ""
 "themes;user interface;styles;icons;fonts;anti-aliasing;hinting;sub-"
 "pixel;subpixel;rendering;ClearType;DPI;RGB;BGR;menu accelerators;keyboard "
 "shortcuts;event;sounds;window scaling;HiDPI;Retina display;"
-msgstr ""
+msgstr 
"temaer;brugerflade;stile;ikoner;skrifttyper;anti-aliasing;udjævning;hinting;underpixel;gengivelse;ClearType;DPI;RGB;BGR;menugenveje;tastaturgenveje;hændelse;lyde;vinduesskalering;HiDPI;Retina-skærm;"
 
 #. TRANSLATORS: a flatbed scanner device, e.g. 'Epson Scanner'
 #: ../dialogs/color-settings/color-device.c:68
@@ -861,7 +861,7 @@ msgstr "Indstil farveprofiler"
 
 #: ../dialogs/color-settings/xfce4-color-settings.desktop.in.h:3
 msgid "color;settings;management;display;monitors;printers;webcams;scanners;"
-msgstr ""
+msgstr 
"farve;indstillinger;styring;skærm;skærme;printere;webcams;webkameraer;scannere;skannere;"
 
 #: ../dialogs/display-settings/confirmation-dialog.glade.h:1
 msgid "Confirmation"
@@ -1199,7 +1199,7 @@ msgstr "Kan ikke opstarte de proprietære 
driverindstillinger"
 #: ../dialogs/display-settings/xfce-display-settings.desktop.in.h:3
 msgid ""
 
"display;settings;screen;resolution;refresh;rate;rotation;external;projectors;monitors;LCD;CRT;HiDPI;"
-msgstr ""
+msgstr 
"skærm;indstillinger;skærm;opløsning;opdateringshastighed;rotation;ekstern;projektorer;skærme;LCD;CRT;HiDPI;"
 
 #. Set dialog title and icon
 #: ../dialogs/keyboard-settings/command-dialog.c:107
@@ -1458,7 +1458,7 @@ msgstr "Advarsel"
 
 #: ../dialogs/keyboard-settings/xfce-keyboard-settings.desktop.in.h:3
 msgid "numlock;keyboard;layout;shortcuts;"
-msgstr ""
+msgstr "numerisk lås;tastatur;layout;genveje;"
 
 #: ../dialogs/mime-settings/main.c:115
 msgid "Could not create the mime dialog."
@@ -1594,7 +1594,7 @@ msgstr "Vælg program ..."
 
 #: ../dialogs/mime-settings/xfce4-mime-settings.desktop.in.h:3
 msgid "file;type;extension;association;open with;"
-msgstr ""
+msgstr "fil;type;endelse;tilknytning;åbn med;"
 
 #: ../dialogs/mouse-settings/main.c:83
 msgid "Active device in the dialog"
@@ -1843,7 +1843,7 @@ msgstr "_Tema"
 #: ../dialogs/mouse-settings/xfce-mouse-settings.desktop.in.h:3
 msgid ""
 "settings;buttons;scroll;direction;pointer;speed;double click;theme;wheel;"
-msgstr ""
+msgstr 
"indstillinger;knapper;rul;retning;markør;hastighed;dobbeltklik;tema;hjul;"
 
 #: ../xfce4-settings-editor/main.c:163
 #: ../xfce4-settings-editor/xfce4-settings-editor.desktop.in.h:1
@@ -2056,7 +2056,7 @@ msgstr "Grafisk indstillingsredigering til Xfconf"
 
 #: ../xfce4-settings-editor/xfce4-settings-editor.desktop.in.h:3
 msgid "registry;regedit;configuration file;"
-msgstr ""
+msgstr "register;regedit;registerredigering;konfigurationsfil;"
 
 #: ../xfce4-settings-manager/main.c:44
 msgid "Settings dialog to show"
@@ -2090,7 +2090,7 @@ msgstr "Grafisk indstillingshåndtering til Xfce"
 
 #: ../xfce4-settings-manager/xfce-settings-manager.desktop.in.h:3
 msgid "control;panel;center;system;settings;personalize;hardware;"
-msgstr ""
+msgstr "kontrol;panel;center;system;indstillinger;personliggør;hardware;"
 
 #: ../xfsettingsd/accessibility.c:412
 msgid "Sticky keys are enabled"

-- 
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-panel] 01/01: I18n: Update translation da (100%).

2020-04-04 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-panel.

commit 81eb5b54ec5ca4125edb5fb9bff099b15f2950fd
Author: Anonymous 
Date:   Sat Apr 4 12:30:40 2020 +0200

I18n: Update translation da (100%).

429 translated messages.

Transifex (https://www.transifex.com/xfce/public/).
---
 po/da.po | 50 --
 1 file changed, 28 insertions(+), 22 deletions(-)

diff --git a/po/da.po b/po/da.po
index 0b35f65..8d6509e 100644
--- a/po/da.po
+++ b/po/da.po
@@ -13,8 +13,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Xfce4-panel\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-01-30 00:30+0100\n"
-"PO-Revision-Date: 2020-02-01 15:37+\n"
+"POT-Creation-Date: 2020-04-01 00:30+0200\n"
+"PO-Revision-Date: 2020-04-04 09:27+\n"
 "Last-Translator: scootergrisen\n"
 "Language-Team: Danish 
(http://www.transifex.com/xfce/xfce4-panel/language/da/)\n"
 "MIME-Version: 1.0\n"
@@ -33,11 +33,17 @@ msgid ""
 "file"
 msgstr "Tilføj en ny starter til panelet baseret på informationen fra denne 
skrivebordsfil"
 
-#: ../panel-preferences.desktop.in.h:1 ../panel/panel-window.c:2871
+#: ../panel-preferences.desktop.in.h:1
+msgid ""
+"panels;settings;preferences;taskbar;autohide;application "
+"menu;start;buttons;launcher;notification area;status;icons;plugins;"
+msgstr "paneler;indstillinger;præferencer;opgavelinje;skjul 
automatisk;programmenu;start;knapper;starter;underretningsområde;status;ikoner;plugins;"
+
+#: ../panel-preferences.desktop.in.h:2 ../panel/panel-window.c:2934
 msgid "Panel"
 msgstr "Panel"
 
-#: ../panel-preferences.desktop.in.h:2
+#: ../panel-preferences.desktop.in.h:3
 msgid "Customize the panel"
 msgstr "Tilpas panelet"
 
@@ -74,7 +80,7 @@ msgstr "F_jern"
 msgid "_Properties"
 msgstr "_Egenskaber"
 
-#: ../libxfce4panel/xfce-panel-plugin.c:1268 ../panel/panel-window.c:2959
+#: ../libxfce4panel/xfce-panel-plugin.c:1268 ../panel/panel-window.c:3022
 msgid "_About"
 msgstr "_Om"
 
@@ -86,20 +92,20 @@ msgstr "_Flyt"
 msgid "Pane_l"
 msgstr "Pane_l"
 
-#: ../libxfce4panel/xfce-panel-plugin.c:1337 ../panel/panel-window.c:2884
+#: ../libxfce4panel/xfce-panel-plugin.c:1337 ../panel/panel-window.c:2947
 msgid "Add _New Items..."
 msgstr "Tilføj _nye elementer ..."
 
-#: ../libxfce4panel/xfce-panel-plugin.c:1352 ../panel/panel-window.c:2899
+#: ../libxfce4panel/xfce-panel-plugin.c:1352 ../panel/panel-window.c:2962
 msgid "Panel Pr_eferences..."
 msgstr "Panel_præferencer ..."
 
-#: ../libxfce4panel/xfce-panel-plugin.c:1373 ../panel/panel-window.c:2931
+#: ../libxfce4panel/xfce-panel-plugin.c:1373 ../panel/panel-window.c:2994
 msgid "Log _Out"
 msgstr "_Log ud"
 
 #: ../libxfce4panel/xfce-panel-plugin.c:1393 ../panel/panel-item-dialog.c:207
-#: ../panel/panel-preferences-dialog.glade.h:12 ../panel/panel-window.c:2950
+#: ../panel/panel-preferences-dialog.glade.h:12 ../panel/panel-window.c:3013
 #: ../plugins/actions/actions-dialog.glade.h:4
 #: ../plugins/applicationsmenu/applicationsmenu-dialog.glade.h:2
 #: ../plugins/clock/clock-dialog.glade.h:8
@@ -240,38 +246,38 @@ msgstr "Ingen kørende instans af %s blev fundet"
 msgid "Failed to launch the migration application"
 msgstr "Kunne ikke starte overførselsprogrammet"
 
-#: ../panel/panel-application.c:976
+#: ../panel/panel-application.c:977
 msgid "Create _Launcher"
 msgstr "Opret op_starter"
 
-#: ../panel/panel-application.c:977
+#: ../panel/panel-application.c:978
 msgid ""
 "This will create a new launcher plugin on the panel and inserts the dropped "
 "files as menu items."
 msgstr "Dette vil oprette et plugin for opstart på panelet og indsætter dine 
flyttede filer som menuelementer."
 
-#: ../panel/panel-application.c:979
+#: ../panel/panel-application.c:980
 #, c-format
 msgid "Create new launcher from %d desktop file"
 msgid_plural "Create new launcher from %d desktop files"
 msgstr[0] "Opret en ny opstarter fra %d skrivebordsfilen"
 msgstr[1] "Opret en ny starter fra %d skrivebordsfilerne"
 
-#: ../panel/panel-application.c:1719
+#: ../panel/panel-application.c:1720
 msgid "Quit"
 msgstr "Afslut"
 
-#: ../panel/panel-application.c:1720
+#: ../panel/panel-application.c:1721
 msgid ""
 "You have started X without session manager. Clicking Quit will close the X "
 "server."
 msgstr "Hvis du har startet X uden sessionshåndteringen vil dette lukke 
X-serveren ned."
 
-#: ../panel/panel-application.c:1721
+#: ../panel/panel-application.c:1722
 msgid "Are you sure you want to quit the panel?"
 msgstr "Er du sikker på, at du vil afslutte panelet?"
 
-#: ../panel/panel-application.c:1729
+#: ../panel/panel-application.c:1730
 #, c-format
 msgid "Failed to execute command \"%s\""
 msgstr "Kunne ikke køre kommandoen \"%s\""
@@ -699,7 +705,7 @@ msgstr "Øvet"
 msgid "Expert"
 msgstr 

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

2020-04-04 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-session.

commit 6c5a81e421891807a27420e18e95516f95359ec3
Author: Anonymous 
Date:   Sat Apr 4 12:31:05 2020 +0200

I18n: Update translation da (100%).

163 translated messages.

Transifex (https://www.transifex.com/xfce/public/).
---
 po/da.po | 12 +---
 1 file changed, 9 insertions(+), 3 deletions(-)

diff --git a/po/da.po b/po/da.po
index 0ec14e1..f1b82ce 100644
--- a/po/da.po
+++ b/po/da.po
@@ -10,8 +10,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Xfce4-session\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-01-14 06:31+0100\n"
-"PO-Revision-Date: 2020-01-14 14:16+\n"
+"POT-Creation-Date: 2020-04-01 00:31+0200\n"
+"PO-Revision-Date: 2020-04-04 08:58+\n"
 "Last-Translator: scootergrisen\n"
 "Language-Team: Danish 
(http://www.transifex.com/xfce/xfce4-session/language/da/)\n"
 "MIME-Version: 1.0\n"
@@ -78,7 +78,7 @@ msgstr "Kunne ikke forbinde til indstillingsserver"
 
 #: ../settings/main.c:152
 msgid "Unable to create user interface from embedded definition data"
-msgstr "Kunne ikke oprette brugergrænseflade fra indbyggede definitionsdata"
+msgstr "Kunne ikke oprette brugerflade fra indlejrede definitionsdata"
 
 #: ../settings/main.c:165
 msgid "App_lication Autostart"
@@ -594,6 +594,12 @@ msgstr "Session og opstart"
 msgid "Customize desktop startup"
 msgstr "Tilpas skrivebordsopstart"
 
+#: ../settings/xfce-session-settings.desktop.in.h:3
+msgid ""
+"session;settings;preferences;manager;startup;login;logout;shutdown;lock "
+"screen;application;autostart;launch;services;daemon;agent;"
+msgstr "session;indstillinger;præferencer;håndtering;opstart;indlogning;log 
ind;udlogning;log ud;luk ned;sluk;lås 
skærm;låseskærm;program;autostart;automatisk start;start;tjenester;dæmon;agent;"
+
 #: ../settings/xfce4-session-settings.ui.h:2
 msgid "_Help"
 msgstr "_Hjælp"

-- 
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-power-manager] branch master updated (8928191 -> fee761d)

2020-04-04 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-power-manager.

  from  8928191   I18n: Update translation pt (100%).
   new  fee761d   I18n: Update translation da (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/da.po | 30 +++---
 1 file changed, 15 insertions(+), 15 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] branch master updated (7c87bcd -> 7048f6e)

2020-04-04 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  7c87bcd   I18n: Update translation ja (100%).
   new  7048f6e   I18n: Update translation da (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/da.po | 20 ++--
 1 file changed, 10 insertions(+), 10 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-power-manager] 01/01: I18n: Update translation da (100%).

2020-04-04 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-power-manager.

commit fee761d849e092398e2105d9036570d13a882f72
Author: Anonymous 
Date:   Sat Apr 4 12:30:57 2020 +0200

I18n: Update translation da (100%).

214 translated messages.

Transifex (https://www.transifex.com/xfce/public/).
---
 po/da.po | 30 +++---
 1 file changed, 15 insertions(+), 15 deletions(-)

diff --git a/po/da.po b/po/da.po
index 2e39f3a..379f6ed 100644
--- a/po/da.po
+++ b/po/da.po
@@ -11,8 +11,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Xfce4-power-manager\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-01-06 06:31+0100\n"
-"PO-Revision-Date: 2020-01-09 19:57+\n"
+"POT-Creation-Date: 2020-04-01 00:31+0200\n"
+"PO-Revision-Date: 2020-04-04 10:07+\n"
 "Last-Translator: scootergrisen\n"
 "Language-Team: Danish 
(http://www.transifex.com/xfce/xfce4-power-manager/language/da/)\n"
 "MIME-Version: 1.0\n"
@@ -48,9 +48,7 @@ msgstr "Xfce Strømstyring"
 msgid "Power manager settings"
 msgstr "Strømstyringsindstillinger"
 
-#. help dialog
 #: ../data/interfaces/xfpm-settings.ui.h:7
-#: ../panel-plugins/power-manager-plugin/power-manager-button.c:1233
 #: ../panel-plugins/power-manager-plugin/xfce/xfce-power-manager-plugin.c:161
 msgid "_Help"
 msgstr "_Hjælp"
@@ -122,11 +120,11 @@ msgstr "Strømbesparelse for systemet"
 
 #: ../data/interfaces/xfpm-settings.ui.h:24
 msgid "Laptop Lid"
-msgstr "Låget på en bærbar"
+msgstr "Låget på bærbar"
 
 #: ../data/interfaces/xfpm-settings.ui.h:25
 msgid "When laptop lid is closed:"
-msgstr "Når låget på en bærbar lukkes:"
+msgstr "Når låget på bærbar lukkes:"
 
 #: ../data/interfaces/xfpm-settings.ui.h:26
 msgid "On battery"
@@ -464,6 +462,12 @@ msgstr "Strømstyring"
 msgid "Settings for the Xfce Power Manager"
 msgstr "Indstillinger for Xfce Strømstyringen"
 
+#: ../settings/xfce4-power-manager-settings.desktop.in.h:3
+msgid ""
+"settings;preferences;buttons;sleep;hibernate;battery;suspend;shutdown;brightness;laptop"
+" lid;lock screen;plugged in;saving;critical;"
+msgstr 
"indstillinger;præferencer;knapper;søvn;hvile;dvale;batteri;suspender;luk 
ned;sluk;lysstyrke;låget på bærbar;låseskærm;tilsluttet;besparelse;kritisk;"
+
 #: ../common/xfpm-common.c:116
 msgid "translator-credits"
 msgstr "Per Kongstad \n\nDansk-gruppen\nWebsted 
http://dansk-gruppen.dk\nE-mail "
@@ -925,29 +929,25 @@ msgstr "Strømstyring til Xfce-skrivebordsmiljøet"
 msgid "Display battery levels for attached devices"
 msgstr "Vis batteriniveauerne for tilkoblede enheder"
 
-#. about dialog
-#: ../panel-plugins/power-manager-plugin/power-manager-button.c:1239
-msgid "_About"
-msgstr "_Om"
-
 #. Translators this is to display which app is inhibiting
 #. * power in the plugin menu. Example:
 #. * VLC is currently inhibiting power management
-#: ../panel-plugins/power-manager-plugin/power-manager-button.c:1442
+#: ../panel-plugins/power-manager-plugin/power-manager-button.c:1425
 #, c-format
 msgid "%s is currently inhibiting power management"
 msgstr "%s hæmmer i øjeblikket strømstyringen"
 
-#: ../panel-plugins/power-manager-plugin/power-manager-button.c:1739
+#: ../panel-plugins/power-manager-plugin/power-manager-button.c:1722
 msgid "Display brightness"
 msgstr "Lysstyrke for skærm"
 
-#: ../panel-plugins/power-manager-plugin/power-manager-button.c:1765
+#: ../panel-plugins/power-manager-plugin/power-manager-button.c:1749
+#: ../panel-plugins/power-manager-plugin/power-manager-button.c:1760
 msgid "Presentation _mode"
 msgstr "Præsentations_tilstand"
 
 #. Power manager settings
-#: ../panel-plugins/power-manager-plugin/power-manager-button.c:1782
+#: ../panel-plugins/power-manager-plugin/power-manager-button.c:1773
 msgid "_Power manager settings..."
 msgstr "_Strømstyringsindstillinger ..."
 

-- 
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-session] branch master updated (fdcfb56 -> 6c5a81e)

2020-04-04 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-session.

  from  fdcfb56   I18n: Update translation sr (100%).
   new  6c5a81e   I18n: Update translation da (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/da.po | 12 +---
 1 file changed, 9 insertions(+), 3 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-panel] branch master updated (9dde362 -> 81eb5b5)

2020-04-04 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-panel.

  from  9dde362   I18n: Update translation sr (100%).
   new  81eb5b5   I18n: Update translation da (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/da.po | 50 --
 1 file changed, 28 insertions(+), 22 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 ja (100%).

2020-04-03 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 7c87bcd4b65499d4f637a1e88cae45093cb4d18d
Author: Nobuhiro Iwamatsu 
Date:   Sat Apr 4 06:30:56 2020 +0200

I18n: Update translation ja (100%).

461 translated messages.

Transifex (https://www.transifex.com/xfce/public/).
---
 po/ja.po | 191 ++-
 1 file changed, 117 insertions(+), 74 deletions(-)

diff --git a/po/ja.po b/po/ja.po
index 03ecd9c..faac3bc 100644
--- a/po/ja.po
+++ b/po/ja.po
@@ -3,13 +3,14 @@
 # This file is distributed under the same license as the PACKAGE package.
 # 
 # Translators:
-# Nobuhiro Iwamatsu , 2008,2016-2019
+# Nobuhiro Iwamatsu , 2008,2016-2020
+# UTUMI Hirosi , 2020
 msgid ""
 msgstr ""
 "Project-Id-Version: Xfce4-settings\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-11-16 00:30+0100\n"
-"PO-Revision-Date: 2019-11-20 08:58+\n"
+"POT-Creation-Date: 2020-04-01 12:31+0200\n"
+"PO-Revision-Date: 2020-04-04 01:57+\n"
 "Last-Translator: Nobuhiro Iwamatsu \n"
 "Language-Team: Japanese 
(http://www.transifex.com/xfce/xfce4-settings/language/ja/)\n"
 "MIME-Version: 1.0\n"
@@ -26,7 +27,7 @@ msgctxt "Monitor vendor"
 msgid "Unknown"
 msgstr "不明"
 
-#: ../common/xfce-randr.c:286 ../dialogs/display-settings/main.c:3927
+#: ../common/xfce-randr.c:286 ../dialogs/display-settings/main.c:4101
 #, c-format
 msgid "Unable to query the version of the RandR extension being used"
 msgstr "使用している RandR エクステンションのバージョンを問い合わせることができません"
@@ -72,11 +73,11 @@ msgstr "キーボードおよびマウスのアクセシビリティを設定し
 #: ../dialogs/display-settings/display-dialog.glade.h:9
 #: ../dialogs/display-settings/minimal-display-dialog.glade.h:8
 #: ../dialogs/display-settings/profile-changed-dialog.glade.h:2
-#: ../dialogs/display-settings/main.c:3967
+#: ../dialogs/display-settings/main.c:4141
 #: ../dialogs/keyboard-settings/keyboard-dialog.glade.h:7
 #: ../dialogs/mouse-settings/mouse-dialog.glade.h:14
 #: ../xfce4-settings-editor/main.c:166
-#: ../xfce4-settings-manager/xfce-settings-manager-dialog.c:265
+#: ../xfce4-settings-manager/xfce-settings-manager-dialog.c:260
 msgid "_Close"
 msgstr "閉じる(_C)"
 
@@ -87,7 +88,7 @@ msgstr "閉じる(_C)"
 #: ../dialogs/keyboard-settings/keyboard-dialog.glade.h:8
 #: ../dialogs/mouse-settings/mouse-dialog.glade.h:13
 #: ../xfce4-settings-editor/main.c:165
-#: ../xfce4-settings-manager/xfce-settings-manager-dialog.c:262
+#: ../xfce4-settings-manager/xfce-settings-manager-dialog.c:249
 msgid "_Help"
 msgstr "ヘルプ(_H)"
 
@@ -292,7 +293,7 @@ msgstr "マウス(_M)"
 
 #: ../dialogs/accessibility-settings/main.c:46
 #: ../dialogs/appearance-settings/main.c:109
-#: ../dialogs/color-settings/main.c:48 ../dialogs/display-settings/main.c:131
+#: ../dialogs/color-settings/main.c:48 ../dialogs/display-settings/main.c:139
 #: ../dialogs/keyboard-settings/main.c:40 ../dialogs/mime-settings/main.c:43
 #: ../dialogs/mouse-settings/main.c:84 ../xfce4-settings-editor/main.c:49
 msgid "Settings manager socket"
@@ -300,7 +301,7 @@ msgstr "設定マネージャーソケット"
 
 #: ../dialogs/accessibility-settings/main.c:46
 #: ../dialogs/appearance-settings/main.c:109
-#: ../dialogs/color-settings/main.c:48 ../dialogs/display-settings/main.c:131
+#: ../dialogs/color-settings/main.c:48 ../dialogs/display-settings/main.c:139
 #: ../dialogs/keyboard-settings/main.c:40 ../dialogs/mime-settings/main.c:43
 #: ../dialogs/mouse-settings/main.c:84 ../xfce4-settings-editor/main.c:49
 msgid "SOCKET ID"
@@ -308,21 +309,21 @@ msgstr "SOCKET ID"
 
 #: ../dialogs/accessibility-settings/main.c:47
 #: ../dialogs/appearance-settings/main.c:110
-#: ../dialogs/color-settings/main.c:49 ../dialogs/display-settings/main.c:132
+#: ../dialogs/color-settings/main.c:49 ../dialogs/display-settings/main.c:140
 #: ../dialogs/keyboard-settings/main.c:41 ../dialogs/mime-settings/main.c:44
 #: ../dialogs/mouse-settings/main.c:85 ../xfce4-settings-editor/main.c:50
-#: ../xfce4-settings-manager/main.c:43 ../xfsettingsd/main.c:101
+#: ../xfce4-settings-manager/main.c:43 ../xfsettingsd/main.c:102
 msgid "Version information"
 msgstr "バージョン情報を表示する"
 
 #: ../dialogs/accessibility-settings/main.c:200
 #: ../dialogs/appearance-settings/main.c:1166
 #: ../dialogs/color-settings/main.c:1390
-#: ../dialogs/display-settings/main.c:3895
+#: ../dialogs/display-settings/main.c:4069
 #: ../dialogs/keyboard-settings/main.c:78 ../dialogs/mime-settings/main.c:78
 #: ../dialogs/mouse-settings/main.c:1872 ../xfce4-settings-editor/main.c:120
-#: ../xfce4-settings-manager/main.c:64 ../xfsettingsd/main.c:237
-#: ../xfsettingsd/main.c:275
+#: ../xfce4-settings-manager/main.c:64 ../xfsettingsd/main.c:242
+#: ../xfsettingsd/main.c:280
 #, c-format
 msgid "Type '%s --help' for usage."
 msgstr "'%s --help' と入力すると使用方法が表示されます。"
@@ 

[Xfce4-commits] [xfce/xfce4-settings] branch master updated (8e1fdd7 -> 7c87bcd)

2020-04-03 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  8e1fdd7   I18n: Update translation pt (98%).
   new  7c87bcd   I18n: Update translation ja (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/ja.po | 191 ++-
 1 file changed, 117 insertions(+), 74 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-clipman-plugin] 01/01: I18n: Update translation pt (100%).

2020-04-03 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-clipman-plugin.

commit 31f57d61689b08e35c049b34c081e10e4b84d45b
Author: Hugo Carvalho 
Date:   Sat Apr 4 00:31:47 2020 +0200

I18n: Update translation pt (100%).

91 translated messages.

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

diff --git a/po/pt.po b/po/pt.po
index 61df312..bf74b08 100644
--- a/po/pt.po
+++ b/po/pt.po
@@ -14,8 +14,8 @@ msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2020-04-02 00:31+0200\n"
-"PO-Revision-Date: 2020-04-02 09:48+\n"
-"Last-Translator: José Vieira \n"
+"PO-Revision-Date: 2020-04-03 21:23+\n"
+"Last-Translator: Hugo Carvalho \n"
 "Language-Team: Portuguese 
(http://www.transifex.com/xfce/xfce-panel-plugins/language/pt/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -397,7 +397,7 @@ msgstr "Pode ser lançado com 'xfce4-clipman'."
 
 #: ../panel-plugin/common.c:39
 msgid "The Clipboard Manager Daemon is not running."
-msgstr ""
+msgstr "O daemon do gestor da área de transferência não está em execução."
 
 #: ../panel-plugin/xfce4-clipman-history.c:249
 msgid "Enter search phrase here"
@@ -415,7 +415,7 @@ msgstr "_Copiar"
 
 #: ../panel-plugin/xfce4-clipman-history.c:444
 msgid "Clipman History"
-msgstr ""
+msgstr "Histórico do Clipman"
 
 #: ../panel-plugin/xfce4-clipman-history.c:458
 #: ../panel-plugin/xfce4-clipman-history.c:460
@@ -424,8 +424,8 @@ msgstr "_Definições"
 
 #: ../panel-plugin/xfce4-clipman-settings.desktop.in.h:1
 msgid "Clipboard Manager Settings"
-msgstr ""
+msgstr "Definições do gestor de área de transferência"
 
 #: ../panel-plugin/xfce4-clipman-settings.desktop.in.h:2
 msgid "Customize your clipboard"
-msgstr ""
+msgstr "Personalize a sua área de transferência"

-- 
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/02: I18n: Update translation da (98%).

2020-04-03 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 1822ee467a18578f13e9b4a2b380ea4754d13703
Author: Anonymous 
Date:   Sat Apr 4 00:30:56 2020 +0200

I18n: Update translation da (98%).

452 translated messages, 9 untranslated messages.

Transifex (https://www.transifex.com/xfce/public/).
---
 po/da.po | 281 ---
 1 file changed, 159 insertions(+), 122 deletions(-)

diff --git a/po/da.po b/po/da.po
index 8bf3589..86585bd 100644
--- a/po/da.po
+++ b/po/da.po
@@ -6,13 +6,13 @@
 # Aputsiak Niels Janussen , 2013-2014
 # Chris Darnell , 2013
 # Per Kongstad , 2015
-# scootergrisen, 2016-2019
+# scootergrisen, 2016-2020
 msgid ""
 msgstr ""
 "Project-Id-Version: Xfce4-settings\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-20 06:31+0200\n"
-"PO-Revision-Date: 2019-09-16 10:52+\n"
+"POT-Creation-Date: 2020-04-01 12:31+0200\n"
+"PO-Revision-Date: 2020-04-03 21:43+\n"
 "Last-Translator: scootergrisen\n"
 "Language-Team: Danish 
(http://www.transifex.com/xfce/xfce4-settings/language/da/)\n"
 "MIME-Version: 1.0\n"
@@ -29,7 +29,7 @@ msgctxt "Monitor vendor"
 msgid "Unknown"
 msgstr "Ukendt"
 
-#: ../common/xfce-randr.c:286 ../dialogs/display-settings/main.c:3927
+#: ../common/xfce-randr.c:286 ../dialogs/display-settings/main.c:4101
 #, c-format
 msgid "Unable to query the version of the RandR extension being used"
 msgstr "Kan ikke forespørge hvilken version af RandR-udvidelsen som anvendes"
@@ -75,11 +75,11 @@ msgstr "Konfigurer tilgængeligheden for tastatur og mus"
 #: ../dialogs/display-settings/display-dialog.glade.h:9
 #: ../dialogs/display-settings/minimal-display-dialog.glade.h:8
 #: ../dialogs/display-settings/profile-changed-dialog.glade.h:2
-#: ../dialogs/display-settings/main.c:3967
+#: ../dialogs/display-settings/main.c:4141
 #: ../dialogs/keyboard-settings/keyboard-dialog.glade.h:7
 #: ../dialogs/mouse-settings/mouse-dialog.glade.h:14
 #: ../xfce4-settings-editor/main.c:166
-#: ../xfce4-settings-manager/xfce-settings-manager-dialog.c:265
+#: ../xfce4-settings-manager/xfce-settings-manager-dialog.c:260
 msgid "_Close"
 msgstr "_Luk"
 
@@ -90,7 +90,7 @@ msgstr "_Luk"
 #: ../dialogs/keyboard-settings/keyboard-dialog.glade.h:8
 #: ../dialogs/mouse-settings/mouse-dialog.glade.h:13
 #: ../xfce4-settings-editor/main.c:165
-#: ../xfce4-settings-manager/xfce-settings-manager-dialog.c:262
+#: ../xfce4-settings-manager/xfce-settings-manager-dialog.c:249
 msgid "_Help"
 msgstr "_Hjælp"
 
@@ -295,7 +295,7 @@ msgstr "_Mus"
 
 #: ../dialogs/accessibility-settings/main.c:46
 #: ../dialogs/appearance-settings/main.c:109
-#: ../dialogs/color-settings/main.c:48 ../dialogs/display-settings/main.c:131
+#: ../dialogs/color-settings/main.c:48 ../dialogs/display-settings/main.c:139
 #: ../dialogs/keyboard-settings/main.c:40 ../dialogs/mime-settings/main.c:43
 #: ../dialogs/mouse-settings/main.c:84 ../xfce4-settings-editor/main.c:49
 msgid "Settings manager socket"
@@ -303,7 +303,7 @@ msgstr "Sokkel til indstillingshåndtering"
 
 #: ../dialogs/accessibility-settings/main.c:46
 #: ../dialogs/appearance-settings/main.c:109
-#: ../dialogs/color-settings/main.c:48 ../dialogs/display-settings/main.c:131
+#: ../dialogs/color-settings/main.c:48 ../dialogs/display-settings/main.c:139
 #: ../dialogs/keyboard-settings/main.c:40 ../dialogs/mime-settings/main.c:43
 #: ../dialogs/mouse-settings/main.c:84 ../xfce4-settings-editor/main.c:49
 msgid "SOCKET ID"
@@ -311,42 +311,42 @@ msgstr "SOKKEL-ID"
 
 #: ../dialogs/accessibility-settings/main.c:47
 #: ../dialogs/appearance-settings/main.c:110
-#: ../dialogs/color-settings/main.c:49 ../dialogs/display-settings/main.c:132
+#: ../dialogs/color-settings/main.c:49 ../dialogs/display-settings/main.c:140
 #: ../dialogs/keyboard-settings/main.c:41 ../dialogs/mime-settings/main.c:44
 #: ../dialogs/mouse-settings/main.c:85 ../xfce4-settings-editor/main.c:50
-#: ../xfce4-settings-manager/main.c:43 ../xfsettingsd/main.c:101
+#: ../xfce4-settings-manager/main.c:43 ../xfsettingsd/main.c:102
 msgid "Version information"
 msgstr "Versionsinformation"
 
 #: ../dialogs/accessibility-settings/main.c:200
 #: ../dialogs/appearance-settings/main.c:1166
-#: ../dialogs/color-settings/main.c:1385
-#: ../dialogs/display-settings/main.c:3895
+#: ../dialogs/color-settings/main.c:1390
+#: ../dialogs/display-settings/main.c:4069
 #: ../dialogs/keyboard-settings/main.c:78 ../dialogs/mime-settings/main.c:78
 #: ../dialogs/mouse-settings/main.c:1872 ../xfce4-settings-editor/main.c:120
-#: ../xfce4-settings-manager/main.c:64 ../xfsettingsd/main.c:237
-#: ../xfsettingsd/main.c:275
+#: ../xfce4-settings-manager/main.c:64 ../xfsettingsd/main.c:242
+#: ../xfsettingsd/main.c:280
 #, c-format
 msgid "Type 

[Xfce4-commits] [xfce/xfce4-settings] branch master updated (d6b3cac -> 8e1fdd7)

2020-04-03 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  d6b3cac   I18n: Update translation nl (98%).
   new  1822ee4   I18n: Update translation da (98%).
   new  8e1fdd7   I18n: Update translation pt (98%).

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/da.po | 281 ---
 po/pt.po | 192 ++-
 2 files changed, 276 insertions(+), 197 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-clipman-plugin] branch master updated (60feaac -> 31f57d6)

2020-04-03 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-clipman-plugin.

  from  60feaac   I18n: Update translation nl (100%).
   new  31f57d6   I18n: Update translation pt (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/pt.po | 12 ++--
 1 file changed, 6 insertions(+), 6 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] 02/02: I18n: Update translation pt (98%).

2020-04-03 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 8e1fdd79b8158a6484293223699aabe2d3d781a3
Author: Hugo Carvalho 
Date:   Sat Apr 4 00:30:56 2020 +0200

I18n: Update translation pt (98%).

452 translated messages, 9 untranslated messages.

Transifex (https://www.transifex.com/xfce/public/).
---
 po/pt.po | 192 ++-
 1 file changed, 117 insertions(+), 75 deletions(-)

diff --git a/po/pt.po b/po/pt.po
index 9eeea72..6126bfe 100644
--- a/po/pt.po
+++ b/po/pt.po
@@ -4,7 +4,7 @@
 # 
 # Translators:
 # Alexandre Fidalgo , 2014
-# Hugo Carvalho , 2019
+# Hugo Carvalho , 2019-2020
 # José Vieira , 2017-2020
 # Nuno Miguel , 2014-2019
 # Rui , 2019
@@ -13,9 +13,9 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Xfce4-settings\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-11-16 00:30+0100\n"
-"PO-Revision-Date: 2020-01-20 11:24+\n"
-"Last-Translator: José Vieira \n"
+"POT-Creation-Date: 2020-04-01 12:31+0200\n"
+"PO-Revision-Date: 2020-04-03 21:26+\n"
+"Last-Translator: Hugo Carvalho \n"
 "Language-Team: Portuguese 
(http://www.transifex.com/xfce/xfce4-settings/language/pt/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -31,7 +31,7 @@ msgctxt "Monitor vendor"
 msgid "Unknown"
 msgstr "Desconhecido"
 
-#: ../common/xfce-randr.c:286 ../dialogs/display-settings/main.c:3927
+#: ../common/xfce-randr.c:286 ../dialogs/display-settings/main.c:4101
 #, c-format
 msgid "Unable to query the version of the RandR extension being used"
 msgstr "Incapaz de consultar a versão da extensão RandR em utilização"
@@ -77,11 +77,11 @@ msgstr "Configurar a acessibilidade do teclado e do rato"
 #: ../dialogs/display-settings/display-dialog.glade.h:9
 #: ../dialogs/display-settings/minimal-display-dialog.glade.h:8
 #: ../dialogs/display-settings/profile-changed-dialog.glade.h:2
-#: ../dialogs/display-settings/main.c:3967
+#: ../dialogs/display-settings/main.c:4141
 #: ../dialogs/keyboard-settings/keyboard-dialog.glade.h:7
 #: ../dialogs/mouse-settings/mouse-dialog.glade.h:14
 #: ../xfce4-settings-editor/main.c:166
-#: ../xfce4-settings-manager/xfce-settings-manager-dialog.c:265
+#: ../xfce4-settings-manager/xfce-settings-manager-dialog.c:260
 msgid "_Close"
 msgstr "_Fechar"
 
@@ -92,7 +92,7 @@ msgstr "_Fechar"
 #: ../dialogs/keyboard-settings/keyboard-dialog.glade.h:8
 #: ../dialogs/mouse-settings/mouse-dialog.glade.h:13
 #: ../xfce4-settings-editor/main.c:165
-#: ../xfce4-settings-manager/xfce-settings-manager-dialog.c:262
+#: ../xfce4-settings-manager/xfce-settings-manager-dialog.c:249
 msgid "_Help"
 msgstr "_Ajuda"
 
@@ -297,7 +297,7 @@ msgstr "_Rato"
 
 #: ../dialogs/accessibility-settings/main.c:46
 #: ../dialogs/appearance-settings/main.c:109
-#: ../dialogs/color-settings/main.c:48 ../dialogs/display-settings/main.c:131
+#: ../dialogs/color-settings/main.c:48 ../dialogs/display-settings/main.c:139
 #: ../dialogs/keyboard-settings/main.c:40 ../dialogs/mime-settings/main.c:43
 #: ../dialogs/mouse-settings/main.c:84 ../xfce4-settings-editor/main.c:49
 msgid "Settings manager socket"
@@ -305,7 +305,7 @@ msgstr "Socket do gestor de definições"
 
 #: ../dialogs/accessibility-settings/main.c:46
 #: ../dialogs/appearance-settings/main.c:109
-#: ../dialogs/color-settings/main.c:48 ../dialogs/display-settings/main.c:131
+#: ../dialogs/color-settings/main.c:48 ../dialogs/display-settings/main.c:139
 #: ../dialogs/keyboard-settings/main.c:40 ../dialogs/mime-settings/main.c:43
 #: ../dialogs/mouse-settings/main.c:84 ../xfce4-settings-editor/main.c:49
 msgid "SOCKET ID"
@@ -313,21 +313,21 @@ msgstr "ID de SOCKET"
 
 #: ../dialogs/accessibility-settings/main.c:47
 #: ../dialogs/appearance-settings/main.c:110
-#: ../dialogs/color-settings/main.c:49 ../dialogs/display-settings/main.c:132
+#: ../dialogs/color-settings/main.c:49 ../dialogs/display-settings/main.c:140
 #: ../dialogs/keyboard-settings/main.c:41 ../dialogs/mime-settings/main.c:44
 #: ../dialogs/mouse-settings/main.c:85 ../xfce4-settings-editor/main.c:50
-#: ../xfce4-settings-manager/main.c:43 ../xfsettingsd/main.c:101
+#: ../xfce4-settings-manager/main.c:43 ../xfsettingsd/main.c:102
 msgid "Version information"
 msgstr "Informações da versão"
 
 #: ../dialogs/accessibility-settings/main.c:200
 #: ../dialogs/appearance-settings/main.c:1166
 #: ../dialogs/color-settings/main.c:1390
-#: ../dialogs/display-settings/main.c:3895
+#: ../dialogs/display-settings/main.c:4069
 #: ../dialogs/keyboard-settings/main.c:78 ../dialogs/mime-settings/main.c:78
 #: ../dialogs/mouse-settings/main.c:1872 ../xfce4-settings-editor/main.c:120
-#: ../xfce4-settings-manager/main.c:64 ../xfsettingsd/main.c:237
-#: ../xfsettingsd/main.c:275
+#: 

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

2020-04-03 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-clipman-plugin.

commit 60feaaceb7ac81c00a33def0f13c22febf450bf1
Author: Pjotr 
Date:   Fri Apr 3 18:31:50 2020 +0200

I18n: Update translation nl (100%).

91 translated messages.

Transifex (https://www.transifex.com/xfce/public/).
---
 po/nl.po | 56 +---
 1 file changed, 53 insertions(+), 3 deletions(-)

diff --git a/po/nl.po b/po/nl.po
index 07e8bdb..5defc06 100644
--- a/po/nl.po
+++ b/po/nl.po
@@ -8,8 +8,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-03-30 00:31+0200\n"
-"PO-Revision-Date: 2020-03-30 09:23+\n"
+"POT-Creation-Date: 2020-04-02 00:31+0200\n"
+"PO-Revision-Date: 2020-04-03 15:30+\n"
 "Last-Translator: Pjotr \n"
 "Language-Team: Dutch 
(http://www.transifex.com/xfce/xfce-panel-plugins/language/nl/)\n"
 "MIME-Version: 1.0\n"
@@ -103,6 +103,8 @@ msgid ""
 msgstr "Weet u zeker dat u de acties wilt terugzetten op de standaardwaarden?"
 
 #: ../panel-plugin/settings-dialog.ui.h:1
+#: ../panel-plugin/xfce4-clipman-history.c:450
+#: ../panel-plugin/xfce4-clipman-history.c:452
 msgid "_Help"
 msgstr "_Hulp"
 
@@ -343,7 +345,7 @@ msgid "Could not generate QR-Code."
 msgstr "Kon geen QR-code genereren."
 
 #. Insert empty menu item
-#: ../panel-plugin/menu.c:425
+#: ../panel-plugin/menu.c:425 ../panel-plugin/xfce4-clipman-history.c:327
 msgid "Clipboard is empty"
 msgstr "Klembord is leeg"
 
@@ -374,3 +376,51 @@ msgstr "Vincent Tunru\nPjotr "
 #: ../panel-plugin/plugin.c:357
 msgid "Unable to open the settings dialog"
 msgstr "Kan het instellingenvenster niet openen"
+
+#: ../panel-plugin/common.c:29
+msgid ""
+"Could not start the Clipboard Manager Daemon because it is already running."
+msgstr "Kon de achtergronddienst voor Klembordbeheer niet starten omdat die 
reeds draait."
+
+#: ../panel-plugin/common.c:30
+msgid "The Xfce Clipboard Manager is already running."
+msgstr "Het Klembordbeheer van Xfce draait reeds."
+
+#: ../panel-plugin/common.c:37
+msgid "You can launch it with 'xfce4-clipman'."
+msgstr "U kunt het starten met 'xfce4-clipman'."
+
+#: ../panel-plugin/common.c:39
+msgid "The Clipboard Manager Daemon is not running."
+msgstr "De achtergronddienst voor Klembordbeheer draait niet."
+
+#: ../panel-plugin/xfce4-clipman-history.c:249
+msgid "Enter search phrase here"
+msgstr "Voer zoekterm hier in"
+
+#: ../panel-plugin/xfce4-clipman-history.c:423
+#, c-format
+msgid "_Paste"
+msgstr "_Plakken"
+
+#: ../panel-plugin/xfce4-clipman-history.c:428
+#, c-format
+msgid "_Copy"
+msgstr "_Kopiëren"
+
+#: ../panel-plugin/xfce4-clipman-history.c:444
+msgid "Clipman History"
+msgstr "Geschiedenis van Klembordbeheer"
+
+#: ../panel-plugin/xfce4-clipman-history.c:458
+#: ../panel-plugin/xfce4-clipman-history.c:460
+msgid "_Settings"
+msgstr "_Instellingen"
+
+#: ../panel-plugin/xfce4-clipman-settings.desktop.in.h:1
+msgid "Clipboard Manager Settings"
+msgstr "Instellingen van Klembordbeheer"
+
+#: ../panel-plugin/xfce4-clipman-settings.desktop.in.h:2
+msgid "Customize your clipboard"
+msgstr "Pas uw klembord aan"

-- 
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-clipman-plugin] branch master updated (7b42319 -> 60feaac)

2020-04-03 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-clipman-plugin.

  from  7b42319   I18n: Update translation de (100%).
   new  57da913   I18n: Update translation ja (100%).
   new  60feaac   I18n: Update translation nl (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/ja.po | 58 ++
 po/nl.po | 56 +---
 2 files changed, 107 insertions(+), 7 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-clipman-plugin] 01/02: I18n: Update translation ja (100%).

2020-04-03 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-clipman-plugin.

commit 57da913fe52ddd2addd386bd9ce69b0693d149db
Author: Nobuhiro Iwamatsu 
Date:   Fri Apr 3 18:31:50 2020 +0200

I18n: Update translation ja (100%).

91 translated messages.

Transifex (https://www.transifex.com/xfce/public/).
---
 po/ja.po | 58 ++
 1 file changed, 54 insertions(+), 4 deletions(-)

diff --git a/po/ja.po b/po/ja.po
index 2c15cbc..8597103 100644
--- a/po/ja.po
+++ b/po/ja.po
@@ -10,9 +10,9 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-03-30 00:31+0200\n"
-"PO-Revision-Date: 2020-03-31 23:02+\n"
-"Last-Translator: UTUMI Hirosi \n"
+"POT-Creation-Date: 2020-04-02 00:31+0200\n"
+"PO-Revision-Date: 2020-04-03 12:29+\n"
+"Last-Translator: Nobuhiro Iwamatsu \n"
 "Language-Team: Japanese 
(http://www.transifex.com/xfce/xfce-panel-plugins/language/ja/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -105,6 +105,8 @@ msgid ""
 msgstr "アクションをシステムデフォルトにリセットしてもよろしいですか?"
 
 #: ../panel-plugin/settings-dialog.ui.h:1
+#: ../panel-plugin/xfce4-clipman-history.c:450
+#: ../panel-plugin/xfce4-clipman-history.c:452
 msgid "_Help"
 msgstr "ヘルプ(_H)"
 
@@ -345,7 +347,7 @@ msgid "Could not generate QR-Code."
 msgstr "QR-Code を生成できませんでした。"
 
 #. Insert empty menu item
-#: ../panel-plugin/menu.c:425
+#: ../panel-plugin/menu.c:425 ../panel-plugin/xfce4-clipman-history.c:327
 msgid "Clipboard is empty"
 msgstr "クリップボードは空です"
 
@@ -376,3 +378,51 @@ msgstr "Daichi Kawahata\nNobuhiro Iwamatsu\nMasato 
Hashimoto"
 #: ../panel-plugin/plugin.c:357
 msgid "Unable to open the settings dialog"
 msgstr "設定ダイアログを開けません"
+
+#: ../panel-plugin/common.c:29
+msgid ""
+"Could not start the Clipboard Manager Daemon because it is already running."
+msgstr "クリップボードマネージャーデーモンは既に実行されているため、開始できませんでした。"
+
+#: ../panel-plugin/common.c:30
+msgid "The Xfce Clipboard Manager is already running."
+msgstr "Xfce クリップボードマネージャーは既に実行しています。"
+
+#: ../panel-plugin/common.c:37
+msgid "You can launch it with 'xfce4-clipman'."
+msgstr "'xfce4-clipman' で起動できます。"
+
+#: ../panel-plugin/common.c:39
+msgid "The Clipboard Manager Daemon is not running."
+msgstr "クリップボードマネージャーデーモンは実行していません。"
+
+#: ../panel-plugin/xfce4-clipman-history.c:249
+msgid "Enter search phrase here"
+msgstr "ここに検索フレーズを入力してください"
+
+#: ../panel-plugin/xfce4-clipman-history.c:423
+#, c-format
+msgid "_Paste"
+msgstr "ペースト(_P)"
+
+#: ../panel-plugin/xfce4-clipman-history.c:428
+#, c-format
+msgid "_Copy"
+msgstr "コピー(_C)"
+
+#: ../panel-plugin/xfce4-clipman-history.c:444
+msgid "Clipman History"
+msgstr "Clipman の履歴"
+
+#: ../panel-plugin/xfce4-clipman-history.c:458
+#: ../panel-plugin/xfce4-clipman-history.c:460
+msgid "_Settings"
+msgstr "設定(_S)"
+
+#: ../panel-plugin/xfce4-clipman-settings.desktop.in.h:1
+msgid "Clipboard Manager Settings"
+msgstr "クリップボードマネージャー設定"
+
+#: ../panel-plugin/xfce4-clipman-settings.desktop.in.h:2
+msgid "Customize your clipboard"
+msgstr "クリップボードのカスタマイズ"

-- 
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 nl (98%).

2020-04-03 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 d6b3cac50edf219d1167767e6a256ee7f00b5e95
Author: Pjotr 
Date:   Fri Apr 3 18:31:01 2020 +0200

I18n: Update translation nl (98%).

452 translated messages, 9 untranslated messages.

Transifex (https://www.transifex.com/xfce/public/).
---
 po/nl.po | 192 ++-
 1 file changed, 117 insertions(+), 75 deletions(-)

diff --git a/po/nl.po b/po/nl.po
index dd33bec..7cb4586 100644
--- a/po/nl.po
+++ b/po/nl.po
@@ -4,15 +4,15 @@
 # 
 # Translators:
 # Balaam's Miracle , 2008
-# Pjotr , 2014-2019
+# Pjotr , 2014-2020
 # Pjotr pjotrverta...@gmail.com , 2011,2013
 # Stephan Arts , 2008
 msgid ""
 msgstr ""
 "Project-Id-Version: Xfce4-settings\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-11-16 00:30+0100\n"
-"PO-Revision-Date: 2019-11-17 18:25+\n"
+"POT-Creation-Date: 2020-04-01 12:31+0200\n"
+"PO-Revision-Date: 2020-04-03 15:31+\n"
 "Last-Translator: Pjotr \n"
 "Language-Team: Dutch 
(http://www.transifex.com/xfce/xfce4-settings/language/nl/)\n"
 "MIME-Version: 1.0\n"
@@ -29,7 +29,7 @@ msgctxt "Monitor vendor"
 msgid "Unknown"
 msgstr "Onbekend"
 
-#: ../common/xfce-randr.c:286 ../dialogs/display-settings/main.c:3927
+#: ../common/xfce-randr.c:286 ../dialogs/display-settings/main.c:4101
 #, c-format
 msgid "Unable to query the version of the RandR extension being used"
 msgstr "Kan de versie van de gebruikte RandR-extensie niet bepalen"
@@ -50,7 +50,7 @@ msgstr "Laptop"
 #. * model, vendor or ID, e.g. 'LP2480zx Monitor'
 #: ../common/xfce-randr.c:587 ../dialogs/color-settings/color-device.c:65
 msgid "Monitor"
-msgstr "Monitor"
+msgstr "Beeldscherm"
 
 #: ../common/xfce-randr.c:590
 msgid "Television"
@@ -75,11 +75,11 @@ msgstr "Toegankelijkheid voor toetsenbord en muis instellen"
 #: ../dialogs/display-settings/display-dialog.glade.h:9
 #: ../dialogs/display-settings/minimal-display-dialog.glade.h:8
 #: ../dialogs/display-settings/profile-changed-dialog.glade.h:2
-#: ../dialogs/display-settings/main.c:3967
+#: ../dialogs/display-settings/main.c:4141
 #: ../dialogs/keyboard-settings/keyboard-dialog.glade.h:7
 #: ../dialogs/mouse-settings/mouse-dialog.glade.h:14
 #: ../xfce4-settings-editor/main.c:166
-#: ../xfce4-settings-manager/xfce-settings-manager-dialog.c:265
+#: ../xfce4-settings-manager/xfce-settings-manager-dialog.c:260
 msgid "_Close"
 msgstr "_Sluiten"
 
@@ -90,7 +90,7 @@ msgstr "_Sluiten"
 #: ../dialogs/keyboard-settings/keyboard-dialog.glade.h:8
 #: ../dialogs/mouse-settings/mouse-dialog.glade.h:13
 #: ../xfce4-settings-editor/main.c:165
-#: ../xfce4-settings-manager/xfce-settings-manager-dialog.c:262
+#: ../xfce4-settings-manager/xfce-settings-manager-dialog.c:249
 msgid "_Help"
 msgstr "_Hulp"
 
@@ -295,7 +295,7 @@ msgstr "_Muis"
 
 #: ../dialogs/accessibility-settings/main.c:46
 #: ../dialogs/appearance-settings/main.c:109
-#: ../dialogs/color-settings/main.c:48 ../dialogs/display-settings/main.c:131
+#: ../dialogs/color-settings/main.c:48 ../dialogs/display-settings/main.c:139
 #: ../dialogs/keyboard-settings/main.c:40 ../dialogs/mime-settings/main.c:43
 #: ../dialogs/mouse-settings/main.c:84 ../xfce4-settings-editor/main.c:49
 msgid "Settings manager socket"
@@ -303,7 +303,7 @@ msgstr "Contactpunt voor instellingenbeheer"
 
 #: ../dialogs/accessibility-settings/main.c:46
 #: ../dialogs/appearance-settings/main.c:109
-#: ../dialogs/color-settings/main.c:48 ../dialogs/display-settings/main.c:131
+#: ../dialogs/color-settings/main.c:48 ../dialogs/display-settings/main.c:139
 #: ../dialogs/keyboard-settings/main.c:40 ../dialogs/mime-settings/main.c:43
 #: ../dialogs/mouse-settings/main.c:84 ../xfce4-settings-editor/main.c:49
 msgid "SOCKET ID"
@@ -311,21 +311,21 @@ msgstr "CONTACTPUNT ID"
 
 #: ../dialogs/accessibility-settings/main.c:47
 #: ../dialogs/appearance-settings/main.c:110
-#: ../dialogs/color-settings/main.c:49 ../dialogs/display-settings/main.c:132
+#: ../dialogs/color-settings/main.c:49 ../dialogs/display-settings/main.c:140
 #: ../dialogs/keyboard-settings/main.c:41 ../dialogs/mime-settings/main.c:44
 #: ../dialogs/mouse-settings/main.c:85 ../xfce4-settings-editor/main.c:50
-#: ../xfce4-settings-manager/main.c:43 ../xfsettingsd/main.c:101
+#: ../xfce4-settings-manager/main.c:43 ../xfsettingsd/main.c:102
 msgid "Version information"
 msgstr "Versie-informatie"
 
 #: ../dialogs/accessibility-settings/main.c:200
 #: ../dialogs/appearance-settings/main.c:1166
 #: ../dialogs/color-settings/main.c:1390
-#: ../dialogs/display-settings/main.c:3895
+#: ../dialogs/display-settings/main.c:4069
 #: ../dialogs/keyboard-settings/main.c:78 ../dialogs/mime-settings/main.c:78
 #: ../dialogs/mouse-settings/main.c:1872 

[Xfce4-commits] [xfce/xfce4-settings] branch master updated (4464c47 -> d6b3cac)

2020-04-03 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  4464c47   I18n: Update translation fr (98%).
   new  d6b3cac   I18n: Update translation nl (98%).

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/nl.po | 192 ++-
 1 file changed, 117 insertions(+), 75 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 fr (98%).

2020-04-03 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 4464c470973442d9f728a2231c93e6cda9e2e3ec
Author: Yannick Le Guen 
Date:   Fri Apr 3 12:31:06 2020 +0200

I18n: Update translation fr (98%).

452 translated messages, 9 untranslated messages.

Transifex (https://www.transifex.com/xfce/public/).
---
 po/fr.po | 190 ++-
 1 file changed, 116 insertions(+), 74 deletions(-)

diff --git a/po/fr.po b/po/fr.po
index e81d817..e0e4dad 100644
--- a/po/fr.po
+++ b/po/fr.po
@@ -14,13 +14,13 @@
 # Mike Massonnet , 2009
 # Silvère Latchurié , 2017
 # Urien Desterres , 2014
-# Yannick Le Guen , 2014-2019
+# Yannick Le Guen , 2014-2020
 msgid ""
 msgstr ""
 "Project-Id-Version: Xfce4-settings\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-11-16 00:30+0100\n"
-"PO-Revision-Date: 2019-12-08 10:24+\n"
+"POT-Creation-Date: 2020-04-01 12:31+0200\n"
+"PO-Revision-Date: 2020-04-03 10:14+\n"
 "Last-Translator: Yannick Le Guen \n"
 "Language-Team: French 
(http://www.transifex.com/xfce/xfce4-settings/language/fr/)\n"
 "MIME-Version: 1.0\n"
@@ -37,7 +37,7 @@ msgctxt "Monitor vendor"
 msgid "Unknown"
 msgstr "Inconnu"
 
-#: ../common/xfce-randr.c:286 ../dialogs/display-settings/main.c:3927
+#: ../common/xfce-randr.c:286 ../dialogs/display-settings/main.c:4101
 #, c-format
 msgid "Unable to query the version of the RandR extension being used"
 msgstr "Impossible de déterminer la version de l’extension RandR utilisée"
@@ -83,11 +83,11 @@ msgstr "Configurer l’accessibilité du clavier et de la 
souris"
 #: ../dialogs/display-settings/display-dialog.glade.h:9
 #: ../dialogs/display-settings/minimal-display-dialog.glade.h:8
 #: ../dialogs/display-settings/profile-changed-dialog.glade.h:2
-#: ../dialogs/display-settings/main.c:3967
+#: ../dialogs/display-settings/main.c:4141
 #: ../dialogs/keyboard-settings/keyboard-dialog.glade.h:7
 #: ../dialogs/mouse-settings/mouse-dialog.glade.h:14
 #: ../xfce4-settings-editor/main.c:166
-#: ../xfce4-settings-manager/xfce-settings-manager-dialog.c:265
+#: ../xfce4-settings-manager/xfce-settings-manager-dialog.c:260
 msgid "_Close"
 msgstr "_Fermer"
 
@@ -98,7 +98,7 @@ msgstr "_Fermer"
 #: ../dialogs/keyboard-settings/keyboard-dialog.glade.h:8
 #: ../dialogs/mouse-settings/mouse-dialog.glade.h:13
 #: ../xfce4-settings-editor/main.c:165
-#: ../xfce4-settings-manager/xfce-settings-manager-dialog.c:262
+#: ../xfce4-settings-manager/xfce-settings-manager-dialog.c:249
 msgid "_Help"
 msgstr "Aid_e"
 
@@ -303,7 +303,7 @@ msgstr "_Souris"
 
 #: ../dialogs/accessibility-settings/main.c:46
 #: ../dialogs/appearance-settings/main.c:109
-#: ../dialogs/color-settings/main.c:48 ../dialogs/display-settings/main.c:131
+#: ../dialogs/color-settings/main.c:48 ../dialogs/display-settings/main.c:139
 #: ../dialogs/keyboard-settings/main.c:40 ../dialogs/mime-settings/main.c:43
 #: ../dialogs/mouse-settings/main.c:84 ../xfce4-settings-editor/main.c:49
 msgid "Settings manager socket"
@@ -311,7 +311,7 @@ msgstr "Socket du gestionnaire de paramètres"
 
 #: ../dialogs/accessibility-settings/main.c:46
 #: ../dialogs/appearance-settings/main.c:109
-#: ../dialogs/color-settings/main.c:48 ../dialogs/display-settings/main.c:131
+#: ../dialogs/color-settings/main.c:48 ../dialogs/display-settings/main.c:139
 #: ../dialogs/keyboard-settings/main.c:40 ../dialogs/mime-settings/main.c:43
 #: ../dialogs/mouse-settings/main.c:84 ../xfce4-settings-editor/main.c:49
 msgid "SOCKET ID"
@@ -319,21 +319,21 @@ msgstr "ID SOCKET"
 
 #: ../dialogs/accessibility-settings/main.c:47
 #: ../dialogs/appearance-settings/main.c:110
-#: ../dialogs/color-settings/main.c:49 ../dialogs/display-settings/main.c:132
+#: ../dialogs/color-settings/main.c:49 ../dialogs/display-settings/main.c:140
 #: ../dialogs/keyboard-settings/main.c:41 ../dialogs/mime-settings/main.c:44
 #: ../dialogs/mouse-settings/main.c:85 ../xfce4-settings-editor/main.c:50
-#: ../xfce4-settings-manager/main.c:43 ../xfsettingsd/main.c:101
+#: ../xfce4-settings-manager/main.c:43 ../xfsettingsd/main.c:102
 msgid "Version information"
 msgstr "Informations sur la version"
 
 #: ../dialogs/accessibility-settings/main.c:200
 #: ../dialogs/appearance-settings/main.c:1166
 #: ../dialogs/color-settings/main.c:1390
-#: ../dialogs/display-settings/main.c:3895
+#: ../dialogs/display-settings/main.c:4069
 #: ../dialogs/keyboard-settings/main.c:78 ../dialogs/mime-settings/main.c:78
 #: ../dialogs/mouse-settings/main.c:1872 ../xfce4-settings-editor/main.c:120
-#: ../xfce4-settings-manager/main.c:64 ../xfsettingsd/main.c:237
-#: ../xfsettingsd/main.c:275
+#: ../xfce4-settings-manager/main.c:64 ../xfsettingsd/main.c:242
+#: ../xfsettingsd/main.c:280
 #, c-format
 msgid "Type '%s 

[Xfce4-commits] [xfce/xfce4-settings] branch master updated (96c4366 -> 4464c47)

2020-04-03 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  96c4366   I18n: Update translation ru (98%).
   new  4464c47   I18n: Update translation fr (98%).

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/fr.po | 190 ++-
 1 file changed, 116 insertions(+), 74 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 fr (100%).

2020-04-03 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 2315a4e480c77d7cda9a78ae668f6518eb08444b
Author: Yannick Le Guen 
Date:   Fri Apr 3 12:30:15 2020 +0200

I18n: Update translation fr (100%).

772 translated messages.

Transifex (https://www.transifex.com/xfce/public/).
---
 po/fr.po | 536 ++-
 1 file changed, 287 insertions(+), 249 deletions(-)

diff --git a/po/fr.po b/po/fr.po
index 634a9ea..a06b72d 100644
--- a/po/fr.po
+++ b/po/fr.po
@@ -31,8 +31,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Thunar\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-02-28 00:30+0100\n"
-"PO-Revision-Date: 2020-02-28 09:41+\n"
+"POT-Creation-Date: 2020-03-24 12:30+0100\n"
+"PO-Revision-Date: 2020-04-03 10:11+\n"
 "Last-Translator: Yannick Le Guen \n"
 "Language-Team: French (http://www.transifex.com/xfce/thunar/language/fr/)\n"
 "MIME-Version: 1.0\n"
@@ -149,10 +149,10 @@ msgstr "Impossible de lancer l’opération"
 
 #. tell the user that we were unable to launch the file specified
 #: ../thunar/thunar-application.c:1508 ../thunar/thunar-application.c:1640
-#: ../thunar/thunar-launcher.c:1227 ../thunar/thunar-location-entry.c:356
-#: ../thunar/thunar-location-entry.c:384
-#: ../thunar/thunar-shortcuts-view.c:1719
-#: ../thunar/thunar-shortcuts-view.c:1747 ../thunar/thunar-window.c:2414
+#: ../thunar/thunar-launcher.c:1227 ../thunar/thunar-location-entry.c:366
+#: ../thunar/thunar-location-entry.c:394
+#: ../thunar/thunar-shortcuts-view.c:1696
+#: ../thunar/thunar-shortcuts-view.c:1724 ../thunar/thunar-window.c:2440
 #, c-format
 msgid "Failed to open \"%s\""
 msgstr "Impossible d’ouvrir « %s »"
@@ -165,7 +165,7 @@ msgstr "Impossible d’ouvrir « %s » : %s"
 #. display an error message
 #: ../thunar/thunar-application.c:1699
 #: ../thunar/thunar-properties-dialog.c:731
-#: ../thunar/thunar-standard-view.c:2881 ../thunar/thunar-tree-view.c:1899
+#: ../thunar/thunar-standard-view.c:2900 ../thunar/thunar-tree-view.c:1899
 #, c-format
 msgid "Failed to rename \"%s\""
 msgstr "Impossible de renommer « %s »"
@@ -240,8 +240,8 @@ msgstr[1] "Voulez-vous vraiment supprimer de 
manière\npermanente les %u fichier
 #: ../thunar/thunar-application.c:2168 ../thunar/thunar-application.c:2347
 #: ../thunar/thunar-chooser-dialog.c:288 ../thunar/thunar-chooser-dialog.c:705
 #: ../thunar/thunar-chooser-dialog.c:753 ../thunar/thunar-create-dialog.c:141
-#: ../thunar/thunar-dialogs.c:105 ../thunar/thunar-dialogs.c:492
-#: ../thunar/thunar-dialogs.c:603 ../thunar/thunar-dialogs.c:861
+#: ../thunar/thunar-dialogs.c:105 ../thunar/thunar-dialogs.c:497
+#: ../thunar/thunar-dialogs.c:608 ../thunar/thunar-dialogs.c:866
 #: ../thunar/thunar-dnd.c:169 ../thunar/thunar-launcher.c:736
 #: ../thunar/thunar-permissions-chooser.c:535
 #: ../thunar/thunar-permissions-chooser.c:1143
@@ -250,7 +250,7 @@ msgstr[1] "Voulez-vous vraiment supprimer de 
manière\npermanente les %u fichier
 #: ../thunar/thunar-renamer-dialog.c:1053
 #: ../thunar/thunar-renamer-progress.c:198
 #: ../thunar/thunar-renamer-progress.c:208
-#: ../thunar/thunar-standard-view.c:2712
+#: ../thunar/thunar-standard-view.c:2714
 #: ../plugins/thunar-sendto-email/main.c:219
 #: ../plugins/thunar-sendto-email/main.c:238
 #: ../plugins/thunar-sendto-email/main.c:293
@@ -294,8 +294,8 @@ msgstr "Supprimer tous les fichiers et dossiers de la 
corbeille ?"
 #. append the "Empty Trash" menu action
 #. prepare the menu item
 #: ../thunar/thunar-application.c:2348 ../thunar/thunar-location-buttons.c:188
-#: ../thunar/thunar-shortcuts-view.c:1239 ../thunar/thunar-tree-view.c:1370
-#: ../thunar/thunar-window.c:360 ../plugins/thunar-tpa/thunar-tpa.c:175
+#: ../thunar/thunar-shortcuts-view.c:1220 ../thunar/thunar-tree-view.c:1370
+#: ../thunar/thunar-window.c:361 ../plugins/thunar-tpa/thunar-tpa.c:175
 msgid "_Empty Trash"
 msgstr "_Vider la corbeille"
 
@@ -372,7 +372,7 @@ msgstr "Utiliser cette action par _défaut pour ce type de 
fichier"
 #. 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:3166
+#: ../thunar/thunar-properties-dialog.c:820 ../thunar/thunar-window.c:3192
 #: ../plugins/thunar-uca/thunar-uca-editor.c:142
 #: ../plugins/thunar-uca/thunar-uca-editor.c:435
 msgid "_OK"
@@ -508,7 +508,7 @@ msgstr "Il n’y a rien à coller dans le presse-papiers"
 #. setup the dialog
 #. add the "Close" button
 #. add a regular close button, the header bar already provides one
-#: ../thunar/thunar-column-editor.c:120 ../thunar/thunar-dialogs.c:806
+#: ../thunar/thunar-column-editor.c:120 ../thunar/thunar-dialogs.c:811
 #: ../thunar/thunar-preferences-dialog.c:253
 #: 

[Xfce4-commits] [xfce/thunar] branch master updated (2d1bbe5 -> 2315a4e)

2020-04-03 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  2d1bbe5   Support libxfce4ui XfceTitledDialog new API (Bug #16616)
   new  2315a4e   I18n: Update translation fr (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/fr.po | 536 ++-
 1 file changed, 287 insertions(+), 249 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 ru (98%).

2020-04-02 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 96c436647cd78220f13c996dc8f5a901976b4007
Author: Igor 
Date:   Fri Apr 3 06:31:00 2020 +0200

I18n: Update translation ru (98%).

452 translated messages, 9 untranslated messages.

Transifex (https://www.transifex.com/xfce/public/).
---
 po/ru.po | 190 ++-
 1 file changed, 116 insertions(+), 74 deletions(-)

diff --git a/po/ru.po b/po/ru.po
index cfad072..e2da5fb 100644
--- a/po/ru.po
+++ b/po/ru.po
@@ -8,15 +8,15 @@
 # Artem Zolochevskiy , 2011
 # Denis Koryavov  2009, 2010
 # Dmitrij Smirnov , 2011
-# Igor , 2016-2019
+# Igor , 2016-2020
 # Ilya Shestopalov , 2009
 # Sergey Alyoshin , 2013-2016,2018
 msgid ""
 msgstr ""
 "Project-Id-Version: Xfce4-settings\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-11-16 00:30+0100\n"
-"PO-Revision-Date: 2019-11-16 17:11+\n"
+"POT-Creation-Date: 2020-04-01 12:31+0200\n"
+"PO-Revision-Date: 2020-04-02 23:50+\n"
 "Last-Translator: Igor \n"
 "Language-Team: Russian 
(http://www.transifex.com/xfce/xfce4-settings/language/ru/)\n"
 "MIME-Version: 1.0\n"
@@ -33,7 +33,7 @@ msgctxt "Monitor vendor"
 msgid "Unknown"
 msgstr "Неизвестно"
 
-#: ../common/xfce-randr.c:286 ../dialogs/display-settings/main.c:3927
+#: ../common/xfce-randr.c:286 ../dialogs/display-settings/main.c:4101
 #, c-format
 msgid "Unable to query the version of the RandR extension being used"
 msgstr "Невозможно запросить версию используемого расширения RandR"
@@ -79,11 +79,11 @@ msgstr "Настройка специальных возможностей кл
 #: ../dialogs/display-settings/display-dialog.glade.h:9
 #: ../dialogs/display-settings/minimal-display-dialog.glade.h:8
 #: ../dialogs/display-settings/profile-changed-dialog.glade.h:2
-#: ../dialogs/display-settings/main.c:3967
+#: ../dialogs/display-settings/main.c:4141
 #: ../dialogs/keyboard-settings/keyboard-dialog.glade.h:7
 #: ../dialogs/mouse-settings/mouse-dialog.glade.h:14
 #: ../xfce4-settings-editor/main.c:166
-#: ../xfce4-settings-manager/xfce-settings-manager-dialog.c:265
+#: ../xfce4-settings-manager/xfce-settings-manager-dialog.c:260
 msgid "_Close"
 msgstr "_Закрыть"
 
@@ -94,7 +94,7 @@ msgstr "_Закрыть"
 #: ../dialogs/keyboard-settings/keyboard-dialog.glade.h:8
 #: ../dialogs/mouse-settings/mouse-dialog.glade.h:13
 #: ../xfce4-settings-editor/main.c:165
-#: ../xfce4-settings-manager/xfce-settings-manager-dialog.c:262
+#: ../xfce4-settings-manager/xfce-settings-manager-dialog.c:249
 msgid "_Help"
 msgstr "_Справка"
 
@@ -299,7 +299,7 @@ msgstr "_Мышь"
 
 #: ../dialogs/accessibility-settings/main.c:46
 #: ../dialogs/appearance-settings/main.c:109
-#: ../dialogs/color-settings/main.c:48 ../dialogs/display-settings/main.c:131
+#: ../dialogs/color-settings/main.c:48 ../dialogs/display-settings/main.c:139
 #: ../dialogs/keyboard-settings/main.c:40 ../dialogs/mime-settings/main.c:43
 #: ../dialogs/mouse-settings/main.c:84 ../xfce4-settings-editor/main.c:49
 msgid "Settings manager socket"
@@ -307,7 +307,7 @@ msgstr "Сокет диспетчера настроек"
 
 #: ../dialogs/accessibility-settings/main.c:46
 #: ../dialogs/appearance-settings/main.c:109
-#: ../dialogs/color-settings/main.c:48 ../dialogs/display-settings/main.c:131
+#: ../dialogs/color-settings/main.c:48 ../dialogs/display-settings/main.c:139
 #: ../dialogs/keyboard-settings/main.c:40 ../dialogs/mime-settings/main.c:43
 #: ../dialogs/mouse-settings/main.c:84 ../xfce4-settings-editor/main.c:49
 msgid "SOCKET ID"
@@ -315,21 +315,21 @@ msgstr "ID сокета"
 
 #: ../dialogs/accessibility-settings/main.c:47
 #: ../dialogs/appearance-settings/main.c:110
-#: ../dialogs/color-settings/main.c:49 ../dialogs/display-settings/main.c:132
+#: ../dialogs/color-settings/main.c:49 ../dialogs/display-settings/main.c:140
 #: ../dialogs/keyboard-settings/main.c:41 ../dialogs/mime-settings/main.c:44
 #: ../dialogs/mouse-settings/main.c:85 ../xfce4-settings-editor/main.c:50
-#: ../xfce4-settings-manager/main.c:43 ../xfsettingsd/main.c:101
+#: ../xfce4-settings-manager/main.c:43 ../xfsettingsd/main.c:102
 msgid "Version information"
 msgstr "Информация о версии"
 
 #: ../dialogs/accessibility-settings/main.c:200
 #: ../dialogs/appearance-settings/main.c:1166
 #: ../dialogs/color-settings/main.c:1390
-#: ../dialogs/display-settings/main.c:3895
+#: ../dialogs/display-settings/main.c:4069
 #: ../dialogs/keyboard-settings/main.c:78 ../dialogs/mime-settings/main.c:78
 #: ../dialogs/mouse-settings/main.c:1872 ../xfce4-settings-editor/main.c:120
-#: ../xfce4-settings-manager/main.c:64 ../xfsettingsd/main.c:237
-#: ../xfsettingsd/main.c:275
+#: ../xfce4-settings-manager/main.c:64 ../xfsettingsd/main.c:242
+#: ../xfsettingsd/main.c:280
 #, c-format
 msgid "Type '%s --help' for 

<    4   5   6   7   8   9   10   11   12   13   >