[Xfce4-commits] [xfce/xfce4-panel] 02/02: tic-tac-toe: Add mnemonic to Close button

2019-07-03 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 4ec999b31da9ce742557ae29822fca68d773454f
Author: Simon Steinbeiss 
Date:   Wed Jul 3 23:05:40 2019 +0200

tic-tac-toe: Add mnemonic to Close button
---
 panel/panel-tic-tac-toe.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/panel/panel-tic-tac-toe.c b/panel/panel-tic-tac-toe.c
index 9606ebd..f1af86f 100644
--- a/panel/panel-tic-tac-toe.c
+++ b/panel/panel-tic-tac-toe.c
@@ -120,7 +120,7 @@ panel_tic_tac_toe_init (PanelTicTacToe *dialog)
 
   button = xfce_gtk_button_new_mixed ("document-new", _("_New Game"));
   gtk_dialog_add_action_widget (GTK_DIALOG (dialog), button, 
GTK_RESPONSE_ACCEPT);
-  gtk_dialog_add_button (GTK_DIALOG (dialog), _("Close"), GTK_RESPONSE_CLOSE);
+  gtk_dialog_add_button (GTK_DIALOG (dialog), _("_Close"), GTK_RESPONSE_CLOSE);
 
   vbox = gtk_box_new (GTK_ORIENTATION_VERTICAL, 6);
   gtk_box_pack_start (GTK_BOX (gtk_dialog_get_content_area (GTK_DIALOG 
(dialog))), vbox, TRUE, TRUE, 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/xfce4-panel] 01/02: tic-tac-toe: Avoid use-after-free/double-free (Bug #15649)

2019-07-03 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 d04a412c072ee94a29fa14894cf46cfada2c60a2
Author: Olivier Fourdan 
Date:   Mon Jul 1 14:52:26 2019 +0200

tic-tac-toe: Avoid use-after-free/double-free (Bug #15649)

Clicking on the easter egg “tic-tac-toe” would crash the panel.

Avoid the use-after-free/double-free by not destroying the dialog in
the email hook.

Signed-off-by: Olivier Fourdan 
---
 panel/panel-dialogs.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/panel/panel-dialogs.c b/panel/panel-dialogs.c
index 84dd27e..2349dbb 100644
--- a/panel/panel-dialogs.c
+++ b/panel/panel-dialogs.c
@@ -48,7 +48,7 @@ panel_dialogs_show_about_email_hook (GtkAboutDialog *dialog,
   /* open tic-tac-toe */
   panel_tic_tac_toe_show ();
   /* close the about dialog as its modality will otherwise prevent you 
from playing */
-  gtk_widget_destroy (GTK_WIDGET (dialog));
+  gtk_widget_hide (GTK_WIDGET (dialog));
   return TRUE;
 }
   else if (!gtk_show_uri_on_window (GTK_WINDOW (dialog),

-- 
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 (d379262 -> 4ec999b)

2019-07-03 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  d379262   I18n: Update translation hy_AM (100%).
   new  d04a412   tic-tac-toe: Avoid use-after-free/double-free (Bug #15649)
   new  4ec999b   tic-tac-toe: Add mnemonic to Close button

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:
 panel/panel-dialogs.c | 2 +-
 panel/panel-tic-tac-toe.c | 2 +-
 2 files changed, 2 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/xfwm4] branch master updated (d08a6e5 -> 9b37f45)

2019-07-03 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  d08a6e5   I18n: Update translation hy_AM (100%).
   new  9b37f45   compositor: Timeout repaint in no longer optional

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:
 src/compositor.c | 34 --
 1 file changed, 4 insertions(+), 30 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/xfwm4] 01/01: compositor: Timeout repaint in no longer optional

2019-07-03 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 9b37f453ee6bf6dc1698fa330cef79876f698fc1
Author: Olivier Fourdan 
Date:   Wed Jul 3 21:25:01 2019 +0200

compositor: Timeout repaint in no longer optional

Also increase the timeout value to be just above the default priority.

Suggested-by: 
Signed-off-by: Olivier Fourdan 
---
 src/compositor.c | 34 --
 1 file changed, 4 insertions(+), 30 deletions(-)

diff --git a/src/compositor.c b/src/compositor.c
index 4ebbf9a..984 100644
--- a/src/compositor.c
+++ b/src/compositor.c
@@ -97,7 +97,9 @@
 #define WIN_IS_DAMAGED(cw)  (cw->damaged)
 #define WIN_IS_REDIRECTED(cw)   (cw->redirected)
 
-#define TIMEOUT_REPAINT
+#ifndef TIMEOUT_REPAINT_PRIORITY
+#define TIMEOUT_REPAINT_PRIORITY   1
+#endif /* TIMEOUT_REPAINT_PRIORITY */
 
 #ifndef MONITOR_ROOT_PIXMAP
 #define MONITOR_ROOT_PIXMAP   1
@@ -2360,13 +2362,11 @@ paint_all (ScreenInfo *screen_info, XserverRegion 
region, gushort buffer)
 static void
 remove_timeouts (ScreenInfo *screen_info)
 {
-#ifdef TIMEOUT_REPAINT
 if (screen_info->compositor_timeout_id != 0)
 {
 g_source_remove (screen_info->compositor_timeout_id);
 screen_info->compositor_timeout_id = 0;
 }
-#endif /* TIMEOUT_REPAINT */
 }
 
 static gboolean
@@ -2433,7 +2433,6 @@ repair_screen (ScreenInfo *screen_info)
 return FALSE;
 }
 
-#ifdef TIMEOUT_REPAINT
 static gboolean
 compositor_timeout_cb (gpointer data)
 {
@@ -2443,37 +2442,18 @@ compositor_timeout_cb (gpointer data)
 screen_info->compositor_timeout_id = 0;
 return repair_screen (screen_info);
 }
-#endif /* TIMEOUT_REPAINT */
 
 static void
 add_repair (ScreenInfo *screen_info)
 {
-#ifdef TIMEOUT_REPAINT
 if (screen_info->compositor_timeout_id == 0)
 {
 screen_info->compositor_timeout_id =
-g_timeout_add (G_PRIORITY_DEFAULT,
+g_timeout_add (G_PRIORITY_DEFAULT + TIMEOUT_REPAINT_PRIORITY,
compositor_timeout_cb, screen_info);
 }
-#endif /* TIMEOUT_REPAINT */
 }
 
-#ifndef TIMEOUT_REPAINT
-static void
-repair_display (DisplayInfo *display_info)
-{
-GSList *screens;
-
-g_return_if_fail (display_info);
-TRACE ("entering");
-
-for (screens = display_info->screens; screens; screens = g_slist_next 
(screens))
-{
-repair_screen ((ScreenInfo *) screens->data);
-}
-}
-#endif /* TIMEOUT_REPAINT */
-
 static void
 add_damage (ScreenInfo *screen_info, XserverRegion damage)
 {
@@ -4182,10 +4162,6 @@ compositorHandleEvent (DisplayInfo *display_info, XEvent 
*ev)
 }
 #endif /* HAVE_PRESENT_EXTENSION */
 
-#ifndef TIMEOUT_REPAINT
-repair_display (display_info);
-#endif /* TIMEOUT_REPAINT */
-
 #endif /* HAVE_COMPOSITOR */
 }
 
@@ -4587,9 +4563,7 @@ compositorUnmanageScreen (ScreenInfo *screen_info)
 }
 screen_info->compositor_active = FALSE;
 
-#ifdef TIMEOUT_REPAINT
 remove_timeouts (screen_info);
-#endif /* TIMEOUT_REPAINT */
 
 i = 0;
 for (list = screen_info->cwindows; list; list = g_list_next (list))

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


[Xfce4-commits] [apps/xfce4-dict] 01/01: I18n: Add new translation hy_AM (100%).

2019-07-03 Thread noreply
This is an automated email from the git hooks/post-receive script.

transifex pushed a 
commit to branch 
master
in repository apps/xfce4-dict.

commit 2b3a93978eccfb7a57214d7dc8fd5bb45c82776b
Author: Real School 
Date:   Wed Jul 3 18:31:23 2019 +0200

I18n: Add new translation hy_AM (100%).

119 translated messages.

Transifex (https://www.transifex.com/xfce/public/).
---
 po/hy_AM.po | 540 
 1 file changed, 540 insertions(+)

diff --git a/po/hy_AM.po b/po/hy_AM.po
new file mode 100644
index 000..b9c467d
--- /dev/null
+++ b/po/hy_AM.po
@@ -0,0 +1,540 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+# 
+# Translators:
+# Hayk Andreasyan , 2019
+# Real School , 2019
+msgid ""
+msgstr ""
+"Project-Id-Version: Xfce Apps\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2019-06-09 18:31+0200\n"
+"PO-Revision-Date: 2019-07-03 12:31+\n"
+"Last-Translator: Real School \n"
+"Language-Team: Armenian (Armenia) 
(http://www.transifex.com/xfce/xfce-apps/language/hy_AM/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Language: hy_AM\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#: ../panel-plugin/xfce4-dict-plugin.desktop.in.h:1
+#: ../src/xfce4-dict.desktop.in.h:1 ../lib/gui.c:783 ../lib/prefs.c:265
+msgid "Dictionary"
+msgstr "Բառարան"
+
+#: ../panel-plugin/xfce4-dict-plugin.desktop.in.h:2
+msgid "A plugin to query different dictionaries."
+msgstr "Տարբեր բառարաններ հայցելու ներդրաւն"
+
+#: ../panel-plugin/xfce4-dict-plugin.c:269
+#: ../panel-plugin/xfce4-dict-plugin.c:397 ../src/xfce4-dict.c:196
+#: ../lib/spell.c:241 ../lib/gui.c:539
+msgid "Ready"
+msgstr "Պատրաստ է"
+
+#: ../panel-plugin/xfce4-dict-plugin.c:331
+msgid "Look up a word"
+msgstr "Որոնել բառ"
+
+#: ../panel-plugin/xfce4-dict-plugin.c:370 ../lib/gui.c:814
+msgid "Search term"
+msgstr "Որոնել եզրոյթ"
+
+#: ../src/xfce4-dict.c:49
+msgid "Search the given text using a Dict server(RFC 2229)"
+msgstr "Որոնել տրուած եզրոյթը Dict սպասարկչով (RFC 2229)"
+
+#: ../src/xfce4-dict.c:50
+msgid "Search the given text using a web-based search engine"
+msgstr "Որոնել տրուած եզրոյթը ցանցի աւգնութեամբ"
+
+#: ../src/xfce4-dict.c:51
+msgid "Check the given text with a spell checker"
+msgstr "Ստուգել բառի ուղղագրութիւնը ստուգիչով"
+
+#: ../src/xfce4-dict.c:52
+msgid "Grab the focus on the text field in the panel"
+msgstr "Կենտրոնացնել գրոյթի դաշտը, ընտրացանկում"
+
+#: ../src/xfce4-dict.c:53
+msgid "Start stand-alone application even if the panel plugin is loaded"
+msgstr "Միացնել յաւելուածն առանձին, եթե նոյնիսկ ընտրացանկի ներդրաւնը բեռնուած 
է"
+
+#: ../src/xfce4-dict.c:54
+msgid "Grabs the PRIMARY selection content and uses it as search text"
+msgstr "Գրաւում է ԱՌԱՋՆԱՅԻՆ ընտրութեան պարունակութիւնը եւ աւգտագործում է որպէս 
որոնուող գրոյթ "
+
+#: ../src/xfce4-dict.c:55
+msgid "Be verbose"
+msgstr "Մանրամասն"
+
+#: ../src/xfce4-dict.c:56
+msgid "Show version information"
+msgstr "Ցուցադրել տարբերակի մասին տեղեկութիւն"
+
+#: ../src/xfce4-dict.c:129
+msgid "[TEXT]"
+msgstr "[Գրոյթ]"
+
+#: ../src/xfce4-dict.c:145
+#, c-format
+msgid "Please report bugs to <%s>."
+msgstr "Սխալի դէպքում կարող էք դիմել՝ <%s> հասցէով։"
+
+#: ../src/xfce4-dict.desktop.in.h:2
+msgid "Dictionary Client"
+msgstr "Բառարանի հաճախորդ"
+
+#: ../src/xfce4-dict.desktop.in.h:3 ../lib/gui.c:997
+msgid "A client program to query different dictionaries."
+msgstr "Հաճախորդի ծրագիր  տարբեր բառարաններ հարցելու համար։"
+
+#: ../lib/spell.c:73
+msgid "Spell Checker Results:"
+msgstr "Ուղղարութեան ստուգիչի արդիւնքները․"
+
+#: ../lib/spell.c:99
+#, c-format
+msgid "%d suggestion found."
+msgid_plural "%d suggestions found."
+msgstr[0] "%d առաջարկութիւն է գտնուել։"
+msgstr[1] "%d առաջարկութիւններ են գտնուել։"
+
+#: ../lib/spell.c:103
+#, c-format
+msgid "Suggestions for \"%s\" (%s):"
+msgstr "Առաջարկութիւններ \"%s\" (%s)․ "
+
+#: ../lib/spell.c:120
+#, c-format
+msgid "\"%s\" is spelled correctly (%s)."
+msgstr "\"%s\" ֊ը գրուած է ճիշտ (%s)։"
+
+#: ../lib/spell.c:132
+#, c-format
+msgid "No suggestions could be found for \"%s\" (%s)."
+msgstr " \"%s\" (%s) ֊ի համար առաջարկութիւններ չեն գտնուել։"
+
+#. translation hint:
+#. * Error while executing  ()
+#: ../lib/spell.c:162
+#, c-format
+msgid "Error while executing \"%s\" (%s)."
+msgstr "Հարցման ընթացքում առաջացած սխալ \"%s\" (%s)։"
+
+#: ../lib/spell.c:200
+msgid "Please set the spell check command in the preferences dialog."
+msgstr "Սահմանեք ուղղագրութեան ստուգիչի հրամանը երկխոսութեան 
նախընտրութիւններում։"
+
+#: ../lib/spell.c:206
+msgid "Invalid input"
+msgstr "Անվաւեր ներածում"
+
+#: ../lib/spell.c:245
+#, c-format
+msgid "Process failed (%s)"
+msgstr "(%s) գործընթացը 

[Xfce4-commits] [apps/squeeze] branch master updated (f1389ad -> 210e1ba)

2019-07-03 Thread noreply
This is an automated email from the git hooks/post-receive script.

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

  from  f1389ad   I18n: Update translation da (100%).
   new  210e1ba   I18n: Add new translation hy_AM (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/{it.po => hy_AM.po} | 198 -
 1 file changed, 98 insertions(+), 100 deletions(-)
 copy po/{it.po => hy_AM.po} (56%)

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


[Xfce4-commits] [apps/squeeze] 01/01: I18n: Add new translation hy_AM (100%).

2019-07-03 Thread noreply
This is an automated email from the git hooks/post-receive script.

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

commit 210e1ba8234778e635c89e2f302a3b8720f2d370
Author: Real School 
Date:   Wed Jul 3 18:31:12 2019 +0200

I18n: Add new translation hy_AM (100%).

93 translated messages.

Transifex (https://www.transifex.com/xfce/public/).
---
 po/hy_AM.po | 426 
 1 file changed, 426 insertions(+)

diff --git a/po/hy_AM.po b/po/hy_AM.po
new file mode 100644
index 000..1033d54
--- /dev/null
+++ b/po/hy_AM.po
@@ -0,0 +1,426 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+# 
+# Translators:
+# Real School , 2019
+msgid ""
+msgstr ""
+"Project-Id-Version: Xfce Apps\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2014-10-31 18:30+0100\n"
+"PO-Revision-Date: 2019-07-03 13:18+\n"
+"Last-Translator: Real School \n"
+"Language-Team: Armenian (Armenia) 
(http://www.transifex.com/xfce/xfce-apps/language/hy_AM/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Language: hy_AM\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#: ../libsqueeze/archive.c:191
+msgid "Content-Type could not be detected"
+msgstr "Հնարաւոր չէ ջնջել պարունակութեան տեսակը"
+
+#: ../libsqueeze/archive.c:207
+#, c-format
+msgid "Content-Type '%s' is not supported"
+msgstr "Պարունակութեան տեսակ  '%s' ֊ը չի ապահովուում"
+
+#: ../libsqueeze/archive.c:294
+msgid "Name"
+msgstr "Անուն"
+
+#: ../libsqueeze/archive.c:297
+msgid "Mime type"
+msgstr "Mime տեսակ"
+
+#: ../libsqueeze/archive.c:558
+msgid "Operation not supported"
+msgstr "Գործընթացը չի ապահովուում"
+
+#: ../squeeze.desktop.in.h:1
+msgid "Squeeze Archive Manager"
+msgstr "Squeeze Պահոցի կառավարիչ"
+
+#: ../squeeze.desktop.in.h:2
+msgid "Create and manage archives with the archive manager"
+msgstr "Ստեղծել եւ կառավարել պահոցներ աւգտուելով պահոցների կառավարչից"
+
+#: ../squeeze.desktop.in.h:3
+msgid "Archive Manager"
+msgstr "Պահոցի Կառավարիչ"
+
+#. * Could not open archive (mime type not supported or file did not exist)
+#. * Should be a more specific error message.
+#: ../src/application.c:163 ../src/application.c:259
+msgid "Could not open archive, MIME-type unsupported or file did not exist"
+msgstr "Չյաջողուեց բացել պահոցը,  MIME տեսակը չի ապահովուում կամ նիշը 
գոյութիւն չունի"
+
+#: ../src/application.c:194 ../src/main_window.c:842 ../src/main_window.c:1318
+msgid ""
+"Squeeze cannot extract this archive type,\n"
+"the application to support this is missing."
+msgstr "Squeeze֊ը չի կարող բացել պահոցի այս տեսակը,\nապահովմոն ծրագիրը գտնուած 
չէ։"
+
+#. * Could not create archive (mime type unsupported)
+#: ../src/application.c:241
+msgid "Could not create archive, MIME-type unsupported"
+msgstr "Հնարաւոր չէ ստեղծել պահոց, MIME տեսակը ապահովուած չէ"
+
+#: ../src/application.c:278 ../src/main_window.c:898
+msgid ""
+"Squeeze cannot add files to this archive type,\n"
+"the application to support this is missing."
+msgstr "Squeeze֊ը չի կարող աւելացնել նիշեր պահոցի այս տեսակում,\nապահովմոն 
ծրագիրը գտնուած չէ։"
+
+#: ../src/archive_store.c:250 ../src/notebook.c:181
+msgid "Show full path"
+msgstr "Ցուցադրել ամբողջսական ուղին"
+
+#: ../src/archive_store.c:251 ../src/notebook.c:182
+msgid "Show the full path strings for each entry"
+msgstr "Ցուցադրել ամբողջական ուղու տողերը իւրաքանչիւր մասնիկի համար "
+
+#: ../src/archive_store.c:257 ../src/notebook.c:188
+msgid "Show mime icons"
+msgstr "Ցուցադրել mime պատկերակները"
+
+#: ../src/archive_store.c:258 ../src/notebook.c:189
+msgid "Show the mime type icons for each entry"
+msgstr "Ցուցադրել mime տեսակի պատկերակները իւրաքանչիւր մասնիկի համար"
+
+#: ../src/archive_store.c:264
+msgid "Show up dir entry"
+msgstr "Ցուցադրել նշարանի մասերը"
+
+#: ../src/archive_store.c:265
+msgid "Show '..' to go to the parent directory"
+msgstr "Ցուցադրել '..' ծնողական նշարանի անցնելու համար"
+
+#: ../src/archive_store.c:271 ../src/notebook.c:195
+msgid "Sort folders before files"
+msgstr "Տեսակաւորել պանակները նիշերից առաջ"
+
+#: ../src/archive_store.c:272 ../src/notebook.c:196
+msgid "The folders will be put at the top of the list"
+msgstr "Պանակները կտեղադրուեն ցուցակի վերեւում"
+
+#: ../src/archive_store.c:278 ../src/archive_store.c:279 ../src/notebook.c:202
+#: ../src/notebook.c:203
+msgid "Sort text case sensitive"
+msgstr "Տեսակաւորել գրոյթի տառաշարի զգայունութիւնը"
+
+#: ../src/button_drag_box.c:85
+msgid "Visible:"
+msgstr "Տեսանելի․"
+
+#: ../src/button_drag_box.c:96
+msgid "Available:"
+msgstr "Հասանելի․"
+
+#: ../src/extract_dialog.c:77
+msgid "Extract files:"
+msgstr "Արտահանել նիշեր․"
+
+#: ../src/extract_dialog.c:78
+msgid "Options:"

[Xfce4-commits] [apps/xfce4-dict] branch master updated (8f7d982 -> 2b3a939)

2019-07-03 Thread noreply
This is an automated email from the git hooks/post-receive script.

transifex pushed a 
change to branch 
master
in repository apps/xfce4-dict.

  from  8f7d982   I18n: Update translation pt_BR (100%).
   new  2b3a939   I18n: Add new translation hy_AM (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 => hy_AM.po} | 253 -
 1 file changed, 126 insertions(+), 127 deletions(-)
 copy po/{pt.po => hy_AM.po} (52%)

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


[Xfce4-commits] [apps/parole] 01/01: I18n: Add new translation hy_AM (58%).

2019-07-03 Thread noreply
This is an automated email from the git hooks/post-receive script.

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

commit e00d5919882124e47be03cb3f18f336a31e04d84
Author: Real School 
Date:   Wed Jul 3 18:31:00 2019 +0200

I18n: Add new translation hy_AM (58%).

176 translated messages, 125 untranslated messages.

Transifex (https://www.transifex.com/xfce/public/).
---
 po/hy_AM.po | 1342 +++
 1 file changed, 1342 insertions(+)

diff --git a/po/hy_AM.po b/po/hy_AM.po
new file mode 100644
index 000..50ea3b7
--- /dev/null
+++ b/po/hy_AM.po
@@ -0,0 +1,1342 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+# 
+# Translators:
+# Hayk Andreasyan , 2019
+# Real School , 2019
+msgid ""
+msgstr ""
+"Project-Id-Version: Xfce Apps\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2018-08-25 12:31+0200\n"
+"PO-Revision-Date: 2019-07-03 13:50+\n"
+"Last-Translator: Real School \n"
+"Language-Team: Armenian (Armenia) 
(http://www.transifex.com/xfce/xfce-apps/language/hy_AM/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Language: hy_AM\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#: ../data/interfaces/parole.ui.h:1
+#: ../data/desktop/org.xfce.Parole.desktop.in.in.h:1
+#: ../src/parole-player.c:593 ../src/parole-player.c:1438
+#: ../src/parole-player.c:1789 ../src/parole-about.c:68
+#: ../src/plugins/mpris2/mpris2-provider.c:187
+msgid "Parole Media Player"
+msgstr "Parole նուագարկիչ"
+
+#: ../data/interfaces/parole.ui.h:2
+msgid "_Media"
+msgstr "_Միջավայր"
+
+#: ../data/interfaces/parole.ui.h:3
+msgid "_Open…"
+msgstr "_Բացել․․․"
+
+#: ../data/interfaces/parole.ui.h:4
+msgid "Open _Location…"
+msgstr "Բացել _տեղադրութիւնը․․․"
+
+#: ../data/interfaces/parole.ui.h:5
+msgid "Open _Recent"
+msgstr "Բացել _վերջիններից․․․"
+
+#: ../data/interfaces/parole.ui.h:6
+msgid "_Save Playlist…"
+msgstr "_Պահել նուագացուցակը…"
+
+#: ../data/interfaces/parole.ui.h:7 ../src/parole-disc.c:108
+#: ../src/parole-disc.c:143
+msgid "Insert Disc"
+msgstr "Ներդնել սկաւառակ"
+
+#. * Exit
+#: ../data/interfaces/parole.ui.h:8 ../src/plugins/tray/tray-provider.c:168
+msgid "_Quit"
+msgstr "_Դուրս գալ"
+
+#: ../data/interfaces/parole.ui.h:9
+msgid "_Playback"
+msgstr "_Նուագարկում"
+
+#: ../data/interfaces/parole.ui.h:10
+msgid "_Repeat"
+msgstr "_Կրկնել"
+
+#: ../data/interfaces/parole.ui.h:11
+msgid "_Shuffle"
+msgstr "_Խառնել"
+
+#. Create dialog
+#: ../data/interfaces/parole.ui.h:12 ../src/parole-player.c:2811
+msgid "Go to position"
+msgstr "Գնալ"
+
+#: ../data/interfaces/parole.ui.h:13
+msgid "_DVD"
+msgstr "_DVD"
+
+#: ../data/interfaces/parole.ui.h:14
+msgid "_DVD Menu"
+msgstr "_DVD ցանկ"
+
+#: ../data/interfaces/parole.ui.h:15
+msgid "_Title Menu"
+msgstr "_Անուան ցանկ"
+
+#: ../data/interfaces/parole.ui.h:16
+msgid "_Audio Menu"
+msgstr "_Ձայնային ցանկ"
+
+#: ../data/interfaces/parole.ui.h:17
+msgid "A_ngle Menu"
+msgstr "Ա_նկեան ցանկ"
+
+#: ../data/interfaces/parole.ui.h:18
+msgid "_Chapters"
+msgstr "_Գլուխներ"
+
+#: ../data/interfaces/parole.ui.h:19
+msgid "_Chapter Menu"
+msgstr "_Գլուխների ցանկ"
+
+#: ../data/interfaces/parole.ui.h:20
+msgid "_Audio"
+msgstr "_Ձայն"
+
+#: ../data/interfaces/parole.ui.h:21
+msgid "_Audio Track"
+msgstr "_Շաւիղ"
+
+#: ../data/interfaces/parole.ui.h:22 ../src/parole-player.c:799
+msgid "Empty"
+msgstr "Դատարկ"
+
+#: ../data/interfaces/parole.ui.h:23
+msgid "Volume _Up"
+msgstr "_Բարձրացնել"
+
+#: ../data/interfaces/parole.ui.h:24
+msgid "Volume _Down"
+msgstr "Իջեց_նել"
+
+#: ../data/interfaces/parole.ui.h:25
+msgid "_Mute"
+msgstr "_Լռեցնել"
+
+#: ../data/interfaces/parole.ui.h:26
+msgid "_Video"
+msgstr "_Տեսանիւթ"
+
+#: ../data/interfaces/parole.ui.h:27 ../src/parole-player.c:1982
+#: ../src/parole-player.c:2135
+msgid "_Fullscreen"
+msgstr "_Ամբողջական ցուցադրիչ"
+
+#: ../data/interfaces/parole.ui.h:28
+msgid "_Aspect Ratio"
+msgstr "_Կողմերի հարաբերութիւն"
+
+#: ../data/interfaces/parole.ui.h:29 ../src/parole-player.c:730
+msgid "None"
+msgstr "Ոչ մեկը"
+
+#: ../data/interfaces/parole.ui.h:30
+msgid "Auto"
+msgstr "Ինքնա"
+
+#: ../data/interfaces/parole.ui.h:31
+msgid "Square"
+msgstr "Քառակուսի"
+
+#: ../data/interfaces/parole.ui.h:32
+msgid "4:3 (TV)"
+msgstr "4:3 (Հեռ․)"
+
+#: ../data/interfaces/parole.ui.h:33
+msgid "16:9 (Widescreen)"
+msgstr "16:9 (Լայն ցուցադրիչ)"
+
+#: ../data/interfaces/parole.ui.h:34
+msgid "20:9 (DVB)"
+msgstr "20:9 (DVB)"
+
+#: ../data/interfaces/parole.ui.h:35
+msgid "_Subtitles"
+msgstr "_Սուբտիտրեր"
+
+#: ../data/interfaces/parole.ui.h:36
+msgid "Select Text Subtitles…"
+msgstr "Ընտրել գրոյթի սուբրիտրերը․․․"
+
+#: ../data/interfaces/parole.ui.h:37

[Xfce4-commits] [apps/parole] branch master updated (36bf211 -> e00d591)

2019-07-03 Thread noreply
This is an automated email from the git hooks/post-receive script.

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

  from  36bf211   I18n: Update translation da (100%).
   new  e00d591   I18n: Add new translation hy_AM (58%).

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/{sl.po => hy_AM.po} | 451 -
 1 file changed, 224 insertions(+), 227 deletions(-)
 copy po/{sl.po => hy_AM.po} (79%)

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

2019-07-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 87cc09115a15a777cb4fe571f44caa340d0ee57b
Author: Real School 
Date:   Wed Jul 3 18:30:39 2019 +0200

I18n: Update translation hy_AM (100%).

451 translated messages.

Transifex (https://www.transifex.com/xfce/public/).
---
 po/hy_AM.po | 160 ++--
 1 file changed, 80 insertions(+), 80 deletions(-)

diff --git a/po/hy_AM.po b/po/hy_AM.po
index c35ff7a..8fdf2b5 100644
--- a/po/hy_AM.po
+++ b/po/hy_AM.po
@@ -10,7 +10,7 @@ msgstr ""
 "Project-Id-Version: Xfce4-settings\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2019-05-29 00:31+0200\n"
-"PO-Revision-Date: 2019-07-03 10:30+\n"
+"PO-Revision-Date: 2019-07-03 11:08+\n"
 "Last-Translator: Real School \n"
 "Language-Team: Armenian (Armenia) 
(http://www.transifex.com/xfce/xfce4-settings/language/hy_AM/)\n"
 "MIME-Version: 1.0\n"
@@ -71,7 +71,7 @@ msgstr "Կարգաւորել ստեղնաշարի եւ մկնիկի մատչել
 msgid ""
 "When enabled, the session manager will start the required applications for "
 "screen readers and magnifiers."
-msgstr ""
+msgstr "Երբ միացուած է, նիստի կառավարիչը կմիացնի պահանջուած ծրագիրը էկրանի 
ընթերցողների եւ խոշորացոյցների համար"
 
 #: ../dialogs/accessibility-settings/accessibility-dialog.glade.h:4
 msgid "_Enable assistive technologies"
@@ -79,11 +79,11 @@ msgstr "Մի_ացնել աւժանդակ տեխնոլոգիաները"
 
 #: ../dialogs/accessibility-settings/accessibility-dialog.glade.h:5
 msgid "Start With Session"
-msgstr ""
+msgstr "Միացնելով նիստ"
 
 #: ../dialogs/accessibility-settings/accessibility-dialog.glade.h:6
 msgid "Assistive technologies will be available the next time you login"
-msgstr ""
+msgstr "Աջակցող տեխնոլոգիաները հասանելի կլինեն հաջորդ մուտքի ժամանակ"
 
 #: ../dialogs/accessibility-settings/accessibility-dialog.glade.h:7
 msgid "No AT-SPI provider was found on your system"
@@ -98,7 +98,7 @@ msgid ""
 "When enabled, modifier keys (such as Control, Alt, and Shift) do not need to"
 " be held down (they can be pressed and then released) when multiple keys "
 "would normally need to be pressed at the same time."
-msgstr ""
+msgstr "Երբ միացուած է, ձեւափոխիչ ստեղները (ինչպիսիք են Control, Alt, եւ Shift 
֊ը) կարիք չեն ունենա սեղմուել պահուել, (դրանք կարող են սեղմուել, ինչից յետոյ 
թողարկուել) երբ ձեւափոխիչ ստեղները հասարակ կերպով միարժամանակ սեղմուեն։"
 
 #: ../dialogs/accessibility-settings/accessibility-dialog.glade.h:10
 msgid "_Use sticky keys"
@@ -132,7 +132,7 @@ msgstr "Կպչուն ստեղներ"
 msgid ""
 "To help prevent accidental keystrokes, slow keys requires that a key is held"
 " for a certain minimum amount of time before the keystroke will be accepted."
-msgstr ""
+msgstr "Արգելուած անակնկալ ստեղնահարուածին աւգնելու համար, դանդաղ ստեղները 
պահանջում են սեղմած պահել որոշ ամենափոքր ժամանակահատուածով ստեղնահարուածը 
ընդունելուց առաջ։"
 
 #: ../dialogs/accessibility-settings/accessibility-dialog.glade.h:17
 msgid "Use slow _keys"
@@ -156,7 +156,7 @@ msgstr "Հատուկ ստեղներ"
 msgid ""
 "To help prevent accidental multiple keystrokes, bounce keys imposes a "
 "minimum delay between keystrokes."
-msgstr ""
+msgstr "Արգելուած անակնկալ բազմակի ստեղնահարվածներին աւգնելու համար, ցատկանկող 
ստեղները նախատեսում են նուազագոյն յապաղումը ստեղնահարվածների միջեւ։"
 
 #: ../dialogs/accessibility-settings/accessibility-dialog.glade.h:22
 msgid "Use _bounce keys"
@@ -182,7 +182,7 @@ msgstr "Ստեղնա_շար"
 msgid ""
 "When enabled, the mouse pointer can be controlled using the keyboard number "
 "pad."
-msgstr ""
+msgstr "Երբ միացուած է՝ մկնիկի նշիչը հսկուում է։"
 
 #: ../dialogs/accessibility-settings/accessibility-dialog.glade.h:28
 msgid "_Use mouse emulation"
@@ -252,7 +252,7 @@ msgstr "Մկնիկի նմանակում"
 msgid ""
 "Bind a keyboard shortcut to xfce4-find-cursor to get visual feedback of the "
 "mouse pointer's current location."
-msgstr ""
+msgstr "Կապել ստեղնաշարի դիւրացնումը xfce4-find-cursor ֊ին մկնիկի ցուցչի 
ընթացիկ դիրքի մասին տեսողական արձագանք ստանալու համար։"
 
 #: ../dialogs/accessibility-settings/accessibility-dialog.glade.h:44
 msgid "Show location of pointer on keypress"
@@ -260,7 +260,7 @@ msgstr "Ցուցադրել ցուցիչի դիրքը ստեղներում"
 
 #: ../dialogs/accessibility-settings/accessibility-dialog.glade.h:45
 msgid "Find Cursor"
-msgstr ""
+msgstr "Գտնել ցուցիչը"
 
 #: ../dialogs/accessibility-settings/accessibility-dialog.glade.h:46
 msgid "_Mouse"
@@ -365,11 +365,11 @@ msgstr "Գրոյթ պատկերակների կողքին"
 
 #: ../dialogs/appearance-settings/appearance-dialog.glade.h:9
 msgid "1x (no scaling)"
-msgstr ""
+msgstr "1x (առանց սանդղակի)"
 
 #: ../dialogs/appearance-settings/appearance-dialog.glade.h:10
 msgid "2x"
-msgstr ""
+msgstr "2x"
 
 #: ../dialogs/appearance-settings/appearance-dialog.glade.h:11
 

[Xfce4-commits] [xfce/xfce4-settings] branch master updated (e7a30bd -> 87cc091)

2019-07-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  e7a30bd   I18n: Update translation hy_AM (82%).
   new  87cc091   I18n: Update translation hy_AM (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/hy_AM.po | 160 ++--
 1 file changed, 80 insertions(+), 80 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/xfwm4] 01/01: I18n: Update translation hy_AM (100%).

2019-07-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/xfwm4.

commit d08a6e56575667ed4e52edb61e08a2c0d36dfe5e
Author: Real School 
Date:   Wed Jul 3 12:32:44 2019 +0200

I18n: Update translation hy_AM (100%).

168 translated messages.

Transifex (https://www.transifex.com/xfce/public/).
---
 po/hy_AM.po | 94 +
 1 file changed, 45 insertions(+), 49 deletions(-)

diff --git a/po/hy_AM.po b/po/hy_AM.po
index 5b9c8a4..5f4318b 100644
--- a/po/hy_AM.po
+++ b/po/hy_AM.po
@@ -8,8 +8,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Xfwm4\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-04-28 00:36+0200\n"
-"PO-Revision-Date: 2019-06-12 10:49+\n"
+"POT-Creation-Date: 2019-06-25 00:32+0200\n"
+"PO-Revision-Date: 2019-07-03 07:54+\n"
 "Last-Translator: Real School \n"
 "Language-Team: Armenian (Armenia) 
(http://www.transifex.com/xfce/xfwm4/language/hy_AM/)\n"
 "MIME-Version: 1.0\n"
@@ -38,25 +38,25 @@ msgstr "Նիստի կառավարչի բնիկ"
 
 #: ../settings-dialogs/tweaks-settings.c:472
 #: ../settings-dialogs/workspace-settings.c:398
-#: ../settings-dialogs/xfwm4-settings.c:244
+#: ../settings-dialogs/xfwm4-settings.c:248
 msgid "SOCKET ID"
 msgstr "ԲՆԻԿԻ ID"
 
 #: ../settings-dialogs/tweaks-settings.c:473
 #: ../settings-dialogs/workspace-settings.c:399
-#: ../settings-dialogs/xfwm4-settings.c:246
+#: ../settings-dialogs/xfwm4-settings.c:250
 msgid "Version information"
 msgstr "Տարբերակի վերաբերեալ տեղեկոյթ"
 
 #: ../settings-dialogs/tweaks-settings.c:491
 #: ../settings-dialogs/workspace-settings.c:416
-#: ../settings-dialogs/xfwm4-settings.c:903
+#: ../settings-dialogs/xfwm4-settings.c:907
 msgid "."
 msgstr "."
 
 #: ../settings-dialogs/tweaks-settings.c:495
 #: ../settings-dialogs/workspace-settings.c:420
-#: ../settings-dialogs/xfwm4-settings.c:907
+#: ../settings-dialogs/xfwm4-settings.c:911
 #, c-format
 msgid ""
 "%s: %s\n"
@@ -74,7 +74,7 @@ msgid "Workspace Name"
 msgstr "Աշխատատարածքի Անուն"
 
 #: ../settings-dialogs/workspace-settings.c:398
-#: ../settings-dialogs/xfwm4-settings.c:244
+#: ../settings-dialogs/xfwm4-settings.c:248
 msgid "Settings manager socket"
 msgstr "Կարգաւորումների կառավարչի բնիկ"
 
@@ -311,66 +311,66 @@ msgstr "Կրկնահպման _գործողութիւն"
 msgid "Ad_vanced"
 msgstr "Յառ_աջացած "
 
-#: ../settings-dialogs/xfwm4-settings.c:223
+#: ../settings-dialogs/xfwm4-settings.c:227
 msgid "Shade window"
 msgstr "Մգեցնել պատուհանը"
 
-#: ../settings-dialogs/xfwm4-settings.c:224
+#: ../settings-dialogs/xfwm4-settings.c:228
 msgid "Hide window"
 msgstr "Թաքցնել պատուհանը"
 
-#: ../settings-dialogs/xfwm4-settings.c:225
+#: ../settings-dialogs/xfwm4-settings.c:229
 msgid "Maximize window"
 msgstr "Մեծացնել պատուհանը"
 
-#: ../settings-dialogs/xfwm4-settings.c:226
+#: ../settings-dialogs/xfwm4-settings.c:230
 msgid "Fill window"
 msgstr "Լցնել պատուհանը"
 
-#: ../settings-dialogs/xfwm4-settings.c:227
+#: ../settings-dialogs/xfwm4-settings.c:231
 msgid "Nothing"
 msgstr "Ոչինչ"
 
-#: ../settings-dialogs/xfwm4-settings.c:232
+#: ../settings-dialogs/xfwm4-settings.c:236
 msgid "Left"
 msgstr "Ձախ"
 
-#: ../settings-dialogs/xfwm4-settings.c:233
+#: ../settings-dialogs/xfwm4-settings.c:237
 msgid "Center"
 msgstr "Կենտրոն"
 
-#: ../settings-dialogs/xfwm4-settings.c:234
+#: ../settings-dialogs/xfwm4-settings.c:238
 msgid "Right"
 msgstr "Աջ"
 
-#: ../settings-dialogs/xfwm4-settings.c:383
+#: ../settings-dialogs/xfwm4-settings.c:387
 msgid "Theme"
 msgstr "Ոճապնակ"
 
-#: ../settings-dialogs/xfwm4-settings.c:538
+#: ../settings-dialogs/xfwm4-settings.c:542
 msgid "Action"
 msgstr "Գործողութիւն"
 
-#: ../settings-dialogs/xfwm4-settings.c:543
+#: ../settings-dialogs/xfwm4-settings.c:547
 msgid "Shortcut"
 msgstr "Դիւրանցում"
 
-#: ../settings-dialogs/xfwm4-settings.c:932
+#: ../settings-dialogs/xfwm4-settings.c:936
 #, c-format
 msgid "Failed to initialize xfconf. Reason: %s"
 msgstr "Չյաջողուեց սկզբնաւորել xfconf֊ը։ %s֊ի պատճառով"
 
-#: ../settings-dialogs/xfwm4-settings.c:943
+#: ../settings-dialogs/xfwm4-settings.c:947
 msgid "Could not create the settings dialog."
 msgstr "Կարգաւորումների երկխաւսութիւն չի ստեղծուել։"
 
-#: ../settings-dialogs/xfwm4-settings.c:1941
+#: ../settings-dialogs/xfwm4-settings.c:1946
 msgid ""
 "This will reset all shortcuts to their default values. Do you really want to"
 " do this?"
 msgstr "Կարգաւորումների երկխաւսութիւն չի ստեղծուել։"
 
-#: ../settings-dialogs/xfwm4-settings.c:1943
+#: ../settings-dialogs/xfwm4-settings.c:1948
 msgid "Reset to Defaults"
 msgstr "Կարգաւորումների երկխաւսութիւն չի ստեղծուել։"
 
@@ -389,8 +389,8 @@ msgid "Cycle _through windows on all workspaces"
 msgstr "Շրջան՝ բոլոր աշխատատարածքների պատուհանների _միջեւ"
 
 #: ../settings-dialogs/xfwm4-tweaks-dialog.glade.h:7

[Xfce4-commits] [xfce/xfwm4] branch master updated (5235f6c -> d08a6e5)

2019-07-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/xfwm4.

  from  5235f6c   Post release tag bump
   new  d08a6e5   I18n: Update translation hy_AM (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/hy_AM.po | 94 +
 1 file changed, 45 insertions(+), 49 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 (21fea0c -> f2096dd)

2019-07-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-session.

  from  21fea0c   Back to development
   new  ee0371c   I18n: Update translation da (100%).
   new  f2096dd   I18n: Update translation hy_AM (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/da.po|  4 ++--
 po/hy_AM.po | 22 +++---
 2 files 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] 01/02: I18n: Update translation da (100%).

2019-07-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-session.

commit ee0371c7e0f5369e25a9b472c8d642fe0256ba5e
Author: Anonymous 
Date:   Wed Jul 3 12:31:04 2019 +0200

I18n: Update translation da (100%).

162 translated messages.

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

diff --git a/po/da.po b/po/da.po
index 7d5e0ed..5df0812 100644
--- a/po/da.po
+++ b/po/da.po
@@ -11,7 +11,7 @@ msgstr ""
 "Project-Id-Version: Xfce4-session\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2019-05-14 00:31+0200\n"
-"PO-Revision-Date: 2019-06-19 20:45+\n"
+"PO-Revision-Date: 2019-07-03 10:07+\n"
 "Last-Translator: scootergrisen\n"
 "Language-Team: Danish 
(http://www.transifex.com/xfce/xfce4-session/language/da/)\n"
 "MIME-Version: 1.0\n"
@@ -366,7 +366,7 @@ msgstr "Slet en gemt session."
 #: ../xfce4-session/xfsm-chooser.c:202
 #: ../xfce4-session-logout/xfce4-session-logout.desktop.in.h:1
 msgid "Log Out"
-msgstr "Udlogning"
+msgstr "Log ud"
 
 #: ../xfce4-session/xfsm-chooser.c:204
 msgid "Cancel the login attempt and return to the login screen."

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

2019-07-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-power-manager.

commit 10a5bee0b2dfb9cc7b8d37156811cc64bb717cfa
Author: Real School 
Date:   Wed Jul 3 12:30:56 2019 +0200

I18n: Update translation hy_AM (100%).

210 translated messages.

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

diff --git a/po/hy_AM.po b/po/hy_AM.po
index fbf8caa..66e0028 100644
--- a/po/hy_AM.po
+++ b/po/hy_AM.po
@@ -4,12 +4,13 @@
 # 
 # Translators:
 # E-Hayq LLC , 2018
+# Real School , 2019
 msgid ""
 msgstr ""
 "Project-Id-Version: Xfce4-power-manager\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2019-04-25 18:31+0200\n"
-"PO-Revision-Date: 2019-06-12 10:47+\n"
+"PO-Revision-Date: 2019-07-03 07:49+\n"
 "Last-Translator: Real School \n"
 "Language-Team: Armenian (Armenia) 
(http://www.transifex.com/xfce/xfce4-power-manager/language/hy_AM/)\n"
 "MIME-Version: 1.0\n"
@@ -137,7 +138,7 @@ msgstr "Մարտկոցի նուազագույն մակարդակ"
 
 #: ../data/interfaces/xfpm-settings.ui.h:29
 msgid "Lock screen when system is going to sleep"
-msgstr ""
+msgstr "Կողպել ցուցադրիչը երբ համակարգը քնում է"
 
 #: ../data/interfaces/xfpm-settings.ui.h:30
 msgid "Security"
@@ -306,8 +307,8 @@ msgstr "Երբ համակարգչի բոլոր հոսանքի աղբյուրնե
 #: ../settings/xfpm-settings.c:1653 ../common/xfpm-power-common.c:139
 msgid "minute"
 msgid_plural "minutes"
-msgstr[0] ""
-msgstr[1] ""
+msgstr[0] "րոպե"
+msgstr[1] "րոպե"
 
 #: ../settings/xfpm-settings.c:1995
 msgid "Device"
@@ -527,15 +528,15 @@ msgstr "Անյայտ ժամանակ"
 #, c-format
 msgid "%i minute"
 msgid_plural "%i minutes"
-msgstr[0] ""
-msgstr[1] ""
+msgstr[0] "%i րոպե"
+msgstr[1] "%i րոպե"
 
 #: ../common/xfpm-power-common.c:131
 #, c-format
 msgid "%i hour"
 msgid_plural "%i hours"
-msgstr[0] ""
-msgstr[1] ""
+msgstr[0] "%i ժամ"
+msgstr[1] "%i ժամ"
 
 #. TRANSLATOR: "%i %s %i %s" are "%i hours %i minutes"
 #. * Swap order with "%2$s %2$i %1$s %1$i if needed
@@ -547,8 +548,8 @@ msgstr "%i %s %i %s"
 #: ../common/xfpm-power-common.c:138
 msgid "hour"
 msgid_plural "hours"
-msgstr[0] ""
-msgstr[1] ""
+msgstr[0] "ժամ"
+msgstr[1] "ժամ"
 
 #: ../common/xfpm-power-common.c:295
 #, c-format
@@ -618,7 +619,7 @@ msgstr "%s %s\nդատարկ է"
 msgid ""
 "%s %s\n"
 "Current charge: %0.0f%%"
-msgstr ""
+msgstr "%s %s\nԸնթացիկ լիցք․ %0.0f%%"
 
 #. On the 2nd line we want to know if the power cord is plugged
 #. * in or not

-- 
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 (01b4847 -> e7a30bd)

2019-07-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  01b4847   Back to development
   new  e7a30bd   I18n: Update translation hy_AM (82%).

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/hy_AM.po | 28 ++--
 1 file changed, 14 insertions(+), 14 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] branch master updated (357fbb9 -> 10a5bee)

2019-07-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-power-manager.

  from  357fbb9   I18n: Update translation gl (100%).
   new  10a5bee   I18n: Update translation hy_AM (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/hy_AM.po | 23 ---
 1 file changed, 12 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] [xfce/xfce4-settings] branch xfce-4.12 updated (04f000a -> c205e42)

2019-07-03 Thread noreply
This is an automated email from the git hooks/post-receive script.

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

  from  04f000a   I18n: Update translation id (99%).
   new  c205e42   I18n: Update translation hy_AM (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/hy_AM.po | 38 --
 1 file changed, 28 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-settings] 01/01: I18n: Update translation hy_AM (82%).

2019-07-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 e7a30bdde79d49857e70e442abe8c99f76f2c60e
Author: Real School 
Date:   Wed Jul 3 12:31:12 2019 +0200

I18n: Update translation hy_AM (82%).

372 translated messages, 79 untranslated messages.

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

diff --git a/po/hy_AM.po b/po/hy_AM.po
index 0a001cd..c35ff7a 100644
--- a/po/hy_AM.po
+++ b/po/hy_AM.po
@@ -10,7 +10,7 @@ msgstr ""
 "Project-Id-Version: Xfce4-settings\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2019-05-29 00:31+0200\n"
-"PO-Revision-Date: 2019-06-18 08:53+\n"
+"PO-Revision-Date: 2019-07-03 10:30+\n"
 "Last-Translator: Real School \n"
 "Language-Team: Armenian (Armenia) 
(http://www.transifex.com/xfce/xfce4-settings/language/hy_AM/)\n"
 "MIME-Version: 1.0\n"
@@ -256,7 +256,7 @@ msgstr ""
 
 #: ../dialogs/accessibility-settings/accessibility-dialog.glade.h:44
 msgid "Show location of pointer on keypress"
-msgstr ""
+msgstr "Ցուցադրել ցուցիչի դիրքը ստեղներում"
 
 #: ../dialogs/accessibility-settings/accessibility-dialog.glade.h:45
 msgid "Find Cursor"
@@ -407,15 +407,15 @@ msgstr "Լռելեայն տառատե_սակ"
 msgid ""
 "This font will be used as the default monospace font, for example by "
 "terminal emulators."
-msgstr ""
+msgstr "Այս տառատեսակը կաւգտագործուի որպէս լռելեայն մենատարածք տառատեսակ, 
աւրինակ վահանակի նմանակչով։"
 
 #: ../dialogs/appearance-settings/appearance-dialog.glade.h:19
 msgid "Select a default monospace font"
-msgstr ""
+msgstr "Ընտրեք լռելեայն մենատարածք տառատեսակը"
 
 #: ../dialogs/appearance-settings/appearance-dialog.glade.h:20
 msgid "Default _Monospace Font"
-msgstr ""
+msgstr "Լռելեայն _մենատարածք տառատեսակ"
 
 #: ../dialogs/appearance-settings/appearance-dialog.glade.h:21
 msgid "_Enable anti-aliasing"
@@ -603,44 +603,44 @@ msgstr ""
 #. TRANSLATORS: a printer device, e.g. 'Epson Photosmart Printer'
 #: ../dialogs/color-settings/color-device.c:74
 msgid "Printer"
-msgstr ""
+msgstr "Տպիչ"
 
 #. TRANSLATORS: a webcam device, e.g. 'Philips HiDef Camera'
 #: ../dialogs/color-settings/color-device.c:77
 msgid "Webcam"
-msgstr ""
+msgstr "Վեբխցիկ"
 
 #. TRANSLATORS: This refers to the TFT display on a laptop
 #: ../dialogs/color-settings/color-device.c:94
 msgid "Laptop Screen"
-msgstr ""
+msgstr "Ծնկադրի ցուցադրիչ"
 
 #. TRANSLATORS: This refers to the embedded webcam on a laptop
 #: ../dialogs/color-settings/color-device.c:102
 msgid "Built-in Webcam"
-msgstr ""
+msgstr "Ներկառուցուած վեբխցիկ"
 
 #: ../dialogs/color-settings/color-device.c:195
 #, c-format
 msgid "Enable color management for %s"
-msgstr ""
+msgstr "Թոյլատրել գունային կառավարում %s ֊ի համար"
 
 #: ../dialogs/color-settings/color-dialog.glade.h:1
 #: ../dialogs/color-settings/xfce4-color-settings.desktop.in.h:1
 msgid "Color Profiles"
-msgstr ""
+msgstr "Գունային յատկագրեր"
 
 #: ../dialogs/color-settings/color-dialog.glade.h:2
 msgid "Configure color profiles for your devices"
-msgstr ""
+msgstr "Կազմաձեւել գունային յատկագրեր Ձեր սարքերի համար"
 
 #: ../dialogs/color-settings/color-dialog.glade.h:3
 msgid "No devices found."
-msgstr ""
+msgstr "Սարքեր չեն գտնուել։"
 
 #: ../dialogs/color-settings/color-dialog.glade.h:4
 msgid "Model:"
-msgstr ""
+msgstr "Տեսակ․"
 
 #: ../dialogs/color-settings/color-dialog.glade.h:5
 msgid "Colorspace:"

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

2019-07-03 Thread noreply
This is an automated email from the git hooks/post-receive script.

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

commit c205e42d4e4569d12c60711be7665f5571904cc2
Author: Real School 
Date:   Wed Jul 3 12:31:29 2019 +0200

I18n: Update translation hy_AM (100%).

359 translated messages.

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

diff --git a/po/hy_AM.po b/po/hy_AM.po
index 6748f61..5cc758b 100644
--- a/po/hy_AM.po
+++ b/po/hy_AM.po
@@ -40,12 +40,16 @@ msgid ""
 "If enabled, the session manager will start the required applications for "
 "screen readers and magnifiers"
 msgstr ""
+"Եթե միացուած է, նիստի կառավարիչը կմիացնի պահանջուած ծրագիրը էկրանի "
+"ընթերցողների եւ խոշորացոյցների համար"
 
 #: ../dialogs/accessibility-settings/accessibility-dialog.glade.h:5
 msgid ""
 "Assistive technologies will be available the\n"
 "next time you login"
 msgstr ""
+"Աջակցող տեխնոլոգիաները հասանելի կլինեն\n"
+"հաջորդ մուտքի ժամանակ"
 
 #: ../dialogs/accessibility-settings/accessibility-dialog.glade.h:7
 msgid "No AT-SPI provider was found on your system"
@@ -65,6 +69,9 @@ msgid ""
 "to be held down (they can be pressed and then released) when multiple keys "
 "would normally need to be pressed at the same time"
 msgstr ""
+"Երբ ընտրուած է, ձեւափոխիչ ստեղները (ինչպիսիք են Control, Alt, եւ Shift ֊ը) "
+"կարիք չեն ունենա սեղմուել պահուել, (դրանք կարող են սեղմուել, ինչից յետոյ "
+"թողարկուել) երբ ձեւափոխիչ ստեղները հասարակ կերպով միարժամանակ սեղմուեն"
 
 #: ../dialogs/accessibility-settings/accessibility-dialog.glade.h:11
 msgid "_Lock sticky keys"
@@ -103,6 +110,9 @@ msgid ""
 "To help prevent accidental keystrokes, slow keys requires that a key is held"
 " for a certain minimum amount of time before the keystroke will be accepted"
 msgstr ""
+"Արգելուած անակնկալ ստեղնահարուածին աւգնելու համար, դանդաղ ստեղները պահանջում"
+" են սեղմած պահել որոշ ամենափոքր ժամանակահատուածով ստեղնահարուածը ընդունելուց"
+" առաջ"
 
 #: ../dialogs/accessibility-settings/accessibility-dialog.glade.h:18
 msgid "Acceptance _delay:"
@@ -127,6 +137,8 @@ msgid ""
 "To help prevent accidental multiple keystrokes, bounce keys imposes a "
 "minimum delay between keystrokes"
 msgstr ""
+"Արգելուած անակնկալ բազմակի ստեղնահարվածներին աւգնելու համար, ցատկանկող "
+"ստեղները նախատեսում են նուազագոյն յապաղումը ստեղնահարվածների միջեւ։"
 
 #: ../dialogs/accessibility-settings/accessibility-dialog.glade.h:23
 msgid "K_eystroke delay:"
@@ -209,13 +221,15 @@ msgstr "Միլիվայրկեաններով ժամանակը, առաւելագո
 
 #: ../dialogs/accessibility-settings/accessibility-dialog.glade.h:41
 msgid "Show location of pointer on keypress"
-msgstr ""
+msgstr "Ցուցադրել ցուցիչի դիրքը ստեղներում"
 
 #: ../dialogs/accessibility-settings/accessibility-dialog.glade.h:42
 msgid ""
 "Bind a keyboard shortcut to xfce4-find-cursor to get visual feedback of the "
 "mouse pointer's current location"
 msgstr ""
+"Կապել ստեղնաշարի դիւրացնումը xfce4-find-cursor ֊ին մկնիկի ցուցչի ընթացիկ "
+"դիրքի մասին տեսողական արձագանք ստանալու համար"
 
 #: ../dialogs/accessibility-settings/accessibility-dialog.glade.h:43
 msgid "Mouse Emulation"
@@ -323,14 +337,16 @@ msgid ""
 "This font will be used as the default monospace font, for example by "
 "terminal emulators."
 msgstr ""
+"Այս տառատեսակը կաւգտագործուի որպէս լռելեայն մենատարածք տառատեսակ, աւրինակ "
+"վահանակի նմանակչով։"
 
 #: ../dialogs/appearance-settings/appearance-dialog.glade.h:9
 msgid "Select a default monospace font"
-msgstr ""
+msgstr "Ընտրեք լռելեայն մենատարածք տառատեսակը"
 
 #: ../dialogs/appearance-settings/appearance-dialog.glade.h:10
 msgid "Default _Monospace Font"
-msgstr ""
+msgstr "Լռելեայն _մենատարածք տառատեսակ"
 
 #: ../dialogs/appearance-settings/appearance-dialog.glade.h:11
 msgid ""
@@ -602,7 +618,7 @@ msgstr "Կ_էտայնացում․"
 
 #: ../dialogs/display-settings/display-dialog.glade.h:7
 msgid "_Use this display"
-msgstr ""
+msgstr "_Աւգտագործել այս ցուցադրիչը"
 
 #: ../dialogs/display-settings/display-dialog.glade.h:8
 msgid "_Mirror displays"
@@ -610,21 +626,23 @@ msgstr "_Հայելային ցուցադրիչներ"
 
 #: ../dialogs/display-settings/display-dialog.glade.h:9
 msgid "_Primary display"
-msgstr ""
+msgstr "_Առաջնային ցուցադրիչ"
 
 #: ../dialogs/display-settings/display-dialog.glade.h:10
 msgid ""
 "This is a hint for panels, docks and desktop to show on this display "
 "preferably."
 msgstr ""
+"Սա յուշում է վահանակների համար, յարակցիչներին եւ աշխատանքային սեղանին այս "
+"ցուցադրիչում բավարար ցուցադրելու համար։"
 
 #: ../dialogs/display-settings/display-dialog.glade.h:11
 msgid "Configure _new displays when connected"
-msgstr ""
+msgstr "Կազմաձեւել _նոր ցուցադրիչներ միացման ժամանակ"
 
 #: 

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

2019-07-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-session.

commit f2096dd4fef17ef9423f0fe6116309d59812f9c1
Author: Real School 
Date:   Wed Jul 3 12:31:04 2019 +0200

I18n: Update translation hy_AM (100%).

162 translated messages.

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

diff --git a/po/hy_AM.po b/po/hy_AM.po
index 4976829..9c63786 100644
--- a/po/hy_AM.po
+++ b/po/hy_AM.po
@@ -10,7 +10,7 @@ msgstr ""
 "Project-Id-Version: Xfce4-session\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2019-05-14 00:31+0200\n"
-"PO-Revision-Date: 2019-06-13 07:57+\n"
+"PO-Revision-Date: 2019-07-03 08:44+\n"
 "Last-Translator: Real School \n"
 "Language-Team: Armenian (Armenia) 
(http://www.transifex.com/xfce/xfce4-session/language/hy_AM/)\n"
 "MIME-Version: 1.0\n"
@@ -288,7 +288,7 @@ msgstr "Չյաջողուեց բացել %s նիշը ընթերցման համա
 
 #: ../settings/xfae-window.c:98
 msgid "Failed to set run hook"
-msgstr ""
+msgstr "Չյաջողուեց սահմանել բեռնման կեռիկը"
 
 #: ../settings/xfae-window.c:139
 msgid ""
@@ -299,7 +299,7 @@ msgstr "Ներքեւում՝ ինքնագործարկուող ծրագրերի 
 
 #: ../settings/xfae-window.c:197
 msgid "Trigger"
-msgstr ""
+msgstr "Շնիկ"
 
 #: ../settings/xfae-window.c:238 ../settings/xfae-window.c:324
 msgid "Add"
@@ -478,7 +478,7 @@ msgstr "Նիստի կառավարիչը պէտք չգործի, անջատման
 
 #: ../xfce4-session/xfsm-manager.c:2358
 msgid "Session manager must be in idle state when requesting a restart"
-msgstr ""
+msgstr "Նիստի կառավարիչը պէտք չգործի, վերագործարկման հրամանի հարցման ժամանակ"
 
 #: ../xfce4-session/xfsm-logout-dialog.c:186
 #, c-format
@@ -584,7 +584,7 @@ msgstr "Սխալ՝ անջատման փորձի ժամանակ"
 #: ../xfce4-session-logout/main.c:244
 #, c-format
 msgid "Received error while trying to log out, error was %s"
-msgstr ""
+msgstr "%s -ը անջատման փորձի ժամանակ հայտնուած սխալն է"
 
 #: ../xfce4-session-logout/xfce4-session-logout.desktop.in.h:2
 msgid "Log out of the Xfce Desktop"
@@ -597,7 +597,7 @@ msgstr "Նիստ եւ մեկնարկ"
 
 #: ../settings/xfce-session-settings.desktop.in.h:2
 msgid "Customize desktop startup"
-msgstr ""
+msgstr "Յարմարեցնել աշխատասեղանի մեկնարկումը"
 
 #: ../settings/xfce4-session-settings.ui.h:2
 msgid "_Display chooser on login"
@@ -637,7 +637,7 @@ msgstr "_Ընդհանուր"
 
 #: ../settings/xfce4-session-settings.ui.h:11
 msgid "Currently active session: Default"
-msgstr ""
+msgstr "Ներկայումս գործուն նիստ․ Լռելեայն"
 
 #: ../settings/xfce4-session-settings.ui.h:12
 msgid "Save Sess_ion"
@@ -652,19 +652,19 @@ msgstr "Այս ծրագրերը կազմում են ներկայումս գոր
 
 #: ../settings/xfce4-session-settings.ui.h:15
 msgid "Current Sessio_n"
-msgstr ""
+msgstr "Ներկայումս  նիս_տ"
 
 #: ../settings/xfce4-session-settings.ui.h:16
 msgid "Delete the selected session"
-msgstr ""
+msgstr "Ջնջել ընտրուած նիստը"
 
 #: ../settings/xfce4-session-settings.ui.h:17
 msgid "Clear Save_d Sessions"
-msgstr ""
+msgstr "Մաքրել պահու_ած նիստերը"
 
 #: ../settings/xfce4-session-settings.ui.h:18
 msgid "Saved _Sessions"
-msgstr ""
+msgstr "Պահուած _նիստեր"
 
 #: ../settings/xfce4-session-settings.ui.h:19
 msgid "Launch GN_OME services on startup"

-- 
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 (8d4a46f -> d379262)

2019-07-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-panel.

  from  8d4a46f   I18n: Update translation ms (100%).
   new  d379262   I18n: Update translation hy_AM (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/hy_AM.po | 115 +++-
 1 file changed, 59 insertions(+), 56 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-appfinder] branch master updated (2583fbb -> a807a6a)

2019-07-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-appfinder.

  from  2583fbb   I18n: Update translation tr (100%).
   new  a807a6a   I18n: Update translation hy_AM (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/hy_AM.po | 40 
 1 file changed, 20 insertions(+), 20 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: I18n: Update translation hy_AM (100%).

2019-07-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-panel.

commit d37926251642e9850b581a211ecd02d29d052d99
Author: Real School 
Date:   Wed Jul 3 12:30:43 2019 +0200

I18n: Update translation hy_AM (100%).

411 translated messages.

Transifex (https://www.transifex.com/xfce/public/).
---
 po/hy_AM.po | 115 +++-
 1 file changed, 59 insertions(+), 56 deletions(-)

diff --git a/po/hy_AM.po b/po/hy_AM.po
index 2a2599d..9f9ab29 100644
--- a/po/hy_AM.po
+++ b/po/hy_AM.po
@@ -8,8 +8,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Xfce4-panel\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-05-29 00:30+0200\n"
-"PO-Revision-Date: 2019-06-20 08:16+\n"
+"POT-Creation-Date: 2019-07-01 00:30+0200\n"
+"PO-Revision-Date: 2019-07-03 05:37+\n"
 "Last-Translator: Real School \n"
 "Language-Team: Armenian (Armenia) 
(http://www.transifex.com/xfce/xfce4-panel/language/hy_AM/)\n"
 "MIME-Version: 1.0\n"
@@ -28,8 +28,7 @@ msgid ""
 "file"
 msgstr "Յաւելել նոր գործարկիչ վահանակում՝ հիմնուած աշխատասեղանի նիշի տեղեկոյթի 
վրայ։"
 
-#: ../panel-preferences.desktop.in.h:1
-#: ../panel/panel-preferences-dialog.glade.h:10 ../panel/panel-window.c:2699
+#: ../panel-preferences.desktop.in.h:1 ../panel/panel-window.c:2699
 msgid "Panel"
 msgstr "Ընտրացանկ"
 
@@ -38,26 +37,26 @@ msgid "Customize the panel"
 msgstr "Ընտրացանկի կարգաւորումներ"
 
 #. I18N: %s is the name of the plugin
-#: ../libxfce4panel/xfce-panel-plugin.c:1078
+#: ../libxfce4panel/xfce-panel-plugin.c:1081
 #: ../panel/panel-preferences-dialog.c:1308
 #, c-format
 msgid "Are you sure that you want to remove \"%s\"?"
 msgstr "Հեռացնե՞լ %s֊ը։"
 
-#: ../libxfce4panel/xfce-panel-plugin.c:1083
+#: ../libxfce4panel/xfce-panel-plugin.c:1086
 #: ../panel/panel-preferences-dialog.c:1311
 msgid "If you remove the item from the panel, it is permanently lost."
 msgstr "Տարրի հեռացման դէպքում՝ այն կը կորի անվերադարձ։"
 
-#: ../libxfce4panel/xfce-panel-plugin.c:1084 ../panel/panel-dialogs.c:163
+#: ../libxfce4panel/xfce-panel-plugin.c:1087 ../panel/panel-dialogs.c:163
 #: ../panel/panel-preferences-dialog.c:1313
 #: ../plugins/applicationsmenu/applicationsmenu.c:593
 #: ../plugins/directorymenu/directorymenu.c:394
 msgid "_Cancel"
 msgstr "_Չեղարկել"
 
-#: ../libxfce4panel/xfce-panel-plugin.c:1085
-#: ../libxfce4panel/xfce-panel-plugin.c:1280
+#: ../libxfce4panel/xfce-panel-plugin.c:1088
+#: ../libxfce4panel/xfce-panel-plugin.c:1283
 #: ../panel/panel-plugin-external.c:441
 #: ../panel/panel-preferences-dialog.c:956
 #: ../panel/panel-preferences-dialog.c:1314
@@ -65,35 +64,35 @@ msgstr "_Չեղարկել"
 msgid "_Remove"
 msgstr "_Հեռացնել"
 
-#: ../libxfce4panel/xfce-panel-plugin.c:1226
+#: ../libxfce4panel/xfce-panel-plugin.c:1229
 msgid "_Properties"
 msgstr "_Յատկութիւններ"
 
-#: ../libxfce4panel/xfce-panel-plugin.c:1241 ../panel/panel-window.c:2787
+#: ../libxfce4panel/xfce-panel-plugin.c:1244 ../panel/panel-window.c:2787
 msgid "_About"
 msgstr "_Ձեռնարկ"
 
-#: ../libxfce4panel/xfce-panel-plugin.c:1256
+#: ../libxfce4panel/xfce-panel-plugin.c:1259
 msgid "_Move"
 msgstr "_Շարժ"
 
-#: ../libxfce4panel/xfce-panel-plugin.c:1301
+#: ../libxfce4panel/xfce-panel-plugin.c:1304
 msgid "Pane_l"
 msgstr "Ընտրացան_կ"
 
-#: ../libxfce4panel/xfce-panel-plugin.c:1310 ../panel/panel-window.c:2712
+#: ../libxfce4panel/xfce-panel-plugin.c:1313 ../panel/panel-window.c:2712
 msgid "Add _New Items..."
 msgstr "Աւելացներ _Նոր Տարրեր..."
 
-#: ../libxfce4panel/xfce-panel-plugin.c:1325 ../panel/panel-window.c:2727
+#: ../libxfce4panel/xfce-panel-plugin.c:1328 ../panel/panel-window.c:2727
 msgid "Panel Pr_eferences..."
 msgstr "Վահանակի Կար_գաւորումներ..."
 
-#: ../libxfce4panel/xfce-panel-plugin.c:1346 ../panel/panel-window.c:2759
+#: ../libxfce4panel/xfce-panel-plugin.c:1349 ../panel/panel-window.c:2759
 msgid "Log _Out"
 msgstr "Աւարտել _Նիստը"
 
-#: ../libxfce4panel/xfce-panel-plugin.c:1366 ../panel/panel-item-dialog.c:208
+#: ../libxfce4panel/xfce-panel-plugin.c:1369 ../panel/panel-item-dialog.c:208
 #: ../panel/panel-preferences-dialog.glade.h:12 ../panel/panel-window.c:2778
 #: ../plugins/actions/actions-dialog.glade.h:4
 #: ../plugins/applicationsmenu/applicationsmenu-dialog.glade.h:2
@@ -107,7 +106,7 @@ msgstr "Աւարտել _Նիստը"
 msgid "_Help"
 msgstr "_Աջակցութիւն"
 
-#: ../libxfce4panel/xfce-panel-plugin.c:1381
+#: ../libxfce4panel/xfce-panel-plugin.c:1384
 msgid "About"
 msgstr "Ձեռնարկ"
 
@@ -160,72 +159,72 @@ msgid "Name %s lost on the message dbus, exiting."
 msgstr "Անուն %s ֊ը կորել է dbus հաղորդագրութիւնում, ելք։"
 
 #. parse context options
-#: ../panel/main.c:262
+#: ../panel/main.c:268
 msgid "[ARGUMENTS...]"
 msgstr "[ՅԵՆԱՐԿՆԵՐ...]"
 
-#: ../panel/main.c:269
+#: ../panel/main.c:275
 #, 

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

2019-07-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-appfinder.

commit a807a6a04ad7f6c75616343bcafefc8344d661f0
Author: Real School 
Date:   Wed Jul 3 12:30:36 2019 +0200

I18n: Update translation hy_AM (100%).

81 translated messages.

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

diff --git a/po/hy_AM.po b/po/hy_AM.po
index 50f7131..be8e831 100644
--- a/po/hy_AM.po
+++ b/po/hy_AM.po
@@ -9,8 +9,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Xfce4-appfinder\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-11-25 00:30+0100\n"
-"PO-Revision-Date: 2019-06-13 06:40+\n"
+"POT-Creation-Date: 2019-06-24 00:30+0200\n"
+"PO-Revision-Date: 2019-07-03 07:46+\n"
 "Last-Translator: Real School \n"
 "Language-Team: Armenian (Armenia) 
(http://www.transifex.com/xfce/xfce4-appfinder/language/hy_AM/)\n"
 "MIME-Version: 1.0\n"
@@ -85,78 +85,78 @@ msgstr "Գործողութիւնն անվերադարձ կը ջնջուի։"
 msgid "Are you sure you want to delete pattern \"%s\"?"
 msgstr "Ջնջե՞լ «%s» նշանը։"
 
-#: ../src/appfinder-window.c:228 ../src/appfinder-preferences.glade.h:10
+#: ../src/appfinder-window.c:226 ../src/appfinder-preferences.glade.h:10
 #: ../data/xfce4-appfinder.desktop.in.h:1
 #: ../data/org.xfce.xfce4-appfinder.appdata.xml.in.h:1
 msgid "Application Finder"
 msgstr "Յաւելուածների Որոնում"
 
-#: ../src/appfinder-window.c:276
+#: ../src/appfinder-window.c:272
 msgid "Toggle view mode"
 msgstr "Փոխել ցուցադրման եղանակը"
 
-#: ../src/appfinder-window.c:355
+#: ../src/appfinder-window.c:343
 msgid "_Preferences"
 msgstr "_Նախընտրանք"
 
-#: ../src/appfinder-window.c:372
+#: ../src/appfinder-window.c:360
 msgid "Close"
 msgstr "Փակել"
 
-#: ../src/appfinder-window.c:382 ../src/appfinder-window.c:1075
+#: ../src/appfinder-window.c:370 ../src/appfinder-window.c:1082
 msgid "La_unch"
 msgstr "Գոր_ծարկել"
 
-#: ../src/appfinder-window.c:889
+#: ../src/appfinder-window.c:896
 msgid "Failed to launch desktop item editor"
 msgstr "Չյաջողուեց գործարկել աշխատասեղանի տարրերի խմբագրիչը"
 
-#: ../src/appfinder-window.c:915
+#: ../src/appfinder-window.c:922
 msgid ""
 "This will permanently remove the custom desktop file from your home "
 "directory."
 msgstr "Յարմարեցուած ․desktop նիշը անվերադարձ կը հեռացուի տնային նշարանից։"
 
-#: ../src/appfinder-window.c:916
+#: ../src/appfinder-window.c:923
 #, c-format
 msgid "Are you sure you want to revert \"%s\"?"
 msgstr "Վերադարձնե՞լ «%s»֊ը։"
 
-#: ../src/appfinder-window.c:926
+#: ../src/appfinder-window.c:933
 msgid "Failed to remove desktop file"
 msgstr "Չյաջողուեց հեռացնել .desktop նիշը"
 
 #. I18N: the first %s will be replace with users' applications directory, the
 #. * second with Hidden=true
-#: ../src/appfinder-window.c:959
+#: ../src/appfinder-window.c:966
 #, c-format
 msgid ""
 "To unhide the item you have to manually remove the desktop file from \"%s\" "
 "or open the file in the same directory and remove the line \"%s\"."
 msgstr "Տարրը թաքցնելու համար պէտք է ձեռքով հեռացնել ․desktop նիշը «%s»֊ից, 
կամ բացել նիշը նոյն նշարանում եւ հեռացնել «%s» տողը։"
 
-#: ../src/appfinder-window.c:964 ../src/appfinder-window.c:1112
+#: ../src/appfinder-window.c:971 ../src/appfinder-window.c:1119
 msgid "_Hide"
 msgstr "_Թաքցնել"
 
-#: ../src/appfinder-window.c:965
+#: ../src/appfinder-window.c:972
 #, c-format
 msgid "Are you sure you want to hide \"%s\"?"
 msgstr "Թաքցնե՞լ «%s»֊ը։"
 
-#: ../src/appfinder-window.c:1059
+#: ../src/appfinder-window.c:1066
 msgid "Remove From Bookmarks"
 msgstr "Հեռացնել էջանիշերից"
 
-#: ../src/appfinder-window.c:1059
+#: ../src/appfinder-window.c:1066
 msgid "Add to Bookmarks"
 msgstr "Աւելացնել էջանիշերում"
 
-#: ../src/appfinder-window.c:1088
+#: ../src/appfinder-window.c:1095
 msgid "_Edit"
 msgstr "_Խմբագրում"
 
-#: ../src/appfinder-window.c:1105
+#: ../src/appfinder-window.c:1112
 msgid "_Revert"
 msgstr "_Վերադարձ"
 
@@ -356,8 +356,8 @@ msgid "Run Program..."
 msgstr "Գործարկել..."
 
 #: ../data/xfce4-run.desktop.in.h:2
-msgid "Run a program"
-msgstr "Գործարկել ծրագրեր"
+msgid "Enter a command you want to launch"
+msgstr "Ներմուծեք հրամանը, որը ցանկանում եք թողարկել"
 
 #: ../data/org.xfce.xfce4-appfinder.appdata.xml.in.h:2
 msgid "Application to quickly run applications and commands"

-- 
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] [thunar-plugins/thunar-vcs-plugin] 01/01: I18n: Update translation hy_AM (100%).

2019-07-03 Thread noreply
This is an automated email from the git hooks/post-receive script.

transifex pushed a 
commit to branch 
master
in repository thunar-plugins/thunar-vcs-plugin.

commit 51c93125c7f68d60b97fd689f0a6f75cf66ea617
Author: Real School 
Date:   Wed Jul 3 12:30:17 2019 +0200

I18n: Update translation hy_AM (100%).

307 translated messages.

Transifex (https://www.transifex.com/xfce/public/).
---
 po/hy_AM.po | 136 ++--
 1 file changed, 68 insertions(+), 68 deletions(-)

diff --git a/po/hy_AM.po b/po/hy_AM.po
index d4a37aa..f4684c4 100644
--- a/po/hy_AM.po
+++ b/po/hy_AM.po
@@ -10,7 +10,7 @@ msgstr ""
 "Project-Id-Version: Thunar Plugins\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2018-06-27 06:30+0200\n"
-"PO-Revision-Date: 2019-06-13 08:17+\n"
+"PO-Revision-Date: 2019-07-03 08:37+\n"
 "Last-Translator: Real School \n"
 "Language-Team: Armenian (Armenia) 
(http://www.transifex.com/xfce/thunar-plugins/language/hy_AM/)\n"
 "MIME-Version: 1.0\n"
@@ -1172,7 +1172,7 @@ msgstr "Ձուլել գրառման տեղեկութիւնը սկզբում"
 
 #: ../tvp-svn-helper/tsh-common.c:631
 msgid "Merge elide info"
-msgstr ""
+msgstr "Միաւորել չբարձրաձայնուած տեղեկոյթները"
 
 #: ../tvp-svn-helper/tsh-common.c:632
 msgid "Patch"
@@ -1180,122 +1180,122 @@ msgstr "Կարկատել"
 
 #: ../tvp-svn-helper/tsh-common.c:633
 msgid "Applied hunk"
-msgstr ""
+msgstr "Գործադրուած մաս"
 
 #: ../tvp-svn-helper/tsh-common.c:634
 msgid "Rejected hunk"
-msgstr ""
+msgstr "Մերժուած մաս"
 
 #: ../tvp-svn-helper/tsh-common.c:635
 msgid "Hunk already applied"
-msgstr ""
+msgstr "Մասը արդեն գործադրուած է"
 
 #: ../tvp-svn-helper/tsh-common.c:637
 msgid "Copied replaced"
-msgstr ""
+msgstr "Պատճենուած փոխարինուած"
 
 #: ../tvp-svn-helper/tsh-common.c:638
 msgid "URL redirect"
-msgstr ""
+msgstr "Վերաուղղորդել URL֊ը"
 
 #: ../tvp-svn-helper/tsh-common.c:639
 msgid "Path nonexistent"
-msgstr ""
+msgstr "Ուղին գոյութիւն չունի"
 
 #: ../tvp-svn-helper/tsh-common.c:641
 msgid "Conflict"
-msgstr ""
+msgstr "Բախում"
 
 #: ../tvp-svn-helper/tsh-common.c:642 ../tvp-svn-helper/tsh-common.c:741
 #: ../tvp-svn-helper/tsh-common.c:781
 msgid "Missing"
-msgstr ""
+msgstr "Բացակայող"
 
 #: ../tvp-svn-helper/tsh-common.c:643
 msgid "Out of date"
-msgstr ""
+msgstr "Ժամկետանց"
 
 #: ../tvp-svn-helper/tsh-common.c:644
 msgid "No parent"
-msgstr ""
+msgstr "Առանց ծնողի"
 
 #: ../tvp-svn-helper/tsh-common.c:646
 msgid "Forbidden by server"
-msgstr ""
+msgstr "Ագրելուած է սպասարկչի կողմից"
 
 #: ../tvp-svn-helper/tsh-common.c:647
 msgid "Skipped conflicted"
-msgstr ""
+msgstr "Զանցուած բախում"
 
 #: ../tvp-svn-helper/tsh-common.c:738
 msgid "Inapplicable"
-msgstr ""
+msgstr "Անկիրառելի"
 
 #: ../tvp-svn-helper/tsh-common.c:740
 msgid "Unchanged"
-msgstr ""
+msgstr "Անփոփոխ"
 
 #: ../tvp-svn-helper/tsh-common.c:742 ../tvp-svn-helper/tsh-common.c:788
 msgid "Obstructed"
-msgstr ""
+msgstr "Խոչընդոտ"
 
 #: ../tvp-svn-helper/tsh-common.c:743
 msgid "Changed"
-msgstr ""
+msgstr "Փոփոխուած"
 
 #: ../tvp-svn-helper/tsh-common.c:744 ../tvp-svn-helper/tsh-common.c:785
 msgid "Merged"
-msgstr ""
+msgstr "Միաձոյլ"
 
 #: ../tvp-svn-helper/tsh-common.c:745 ../tvp-svn-helper/tsh-common.c:786
 msgid "Conflicted"
-msgstr ""
+msgstr "Բախուած"
 
 #: ../tvp-svn-helper/tsh-common.c:747
 msgid "Source missing"
-msgstr ""
+msgstr "Աղբիւրը գտնուած չէ"
 
 #. N_("None"),
 #. N_("Unversioned"),
 #: ../tvp-svn-helper/tsh-common.c:779
 msgid "Normal"
-msgstr ""
+msgstr "Հասարակ"
 
 #: ../tvp-svn-helper/tsh-common.c:787
 msgid "Ignored"
-msgstr ""
+msgstr "Անտեսուած"
 
 #: ../tvp-svn-helper/tsh-common.c:790
 msgid "Incomplete"
-msgstr ""
+msgstr "Անաւարտ"
 
 #: ../tvp-svn-helper/tsh-common.c:1163
 msgid "Error"
-msgstr ""
+msgstr "Սխալ"
 
 #: ../tvp-svn-helper/tsh-common.c:1176
 msgid "Local action"
-msgstr ""
+msgstr "Տեղային գործողութիւն"
 
 #: ../tvp-svn-helper/tsh-copy.c:122
 msgid "Local copy"
-msgstr ""
+msgstr "Տեղային պատճէնում"
 
 #: ../tvp-svn-helper/tsh-copy.c:171
 msgid "Copy To"
-msgstr ""
+msgstr "Պատճէնել դեպի"
 
 #: ../tvp-svn-helper/tsh-delete.c:121
 msgid "Local delete"
-msgstr ""
+msgstr "Տեղային ջնջում"
 
 #: ../tvp-svn-helper/tsh-delete.c:163
 msgid "Delete Message"
-msgstr ""
+msgstr "Ջնջել հաղորդագրութիւնը"
 
 #: ../tvp-svn-helper/tsh-diff.c:207
 msgid "Diff failed"
-msgstr ""
+msgstr "Չյաջողուեց տարբերակել"
 
 #. Translators: svn recursion selection
 #. * Self means only this file/direcotry is shown
@@ -1307,7 +1307,7 @@ msgstr ""
 #: ../tvp-svn-helper/tsh-properties-dialog.c:191
 #: ../tvp-svn-helper/tsh-status-dialog.c:181
 msgid "Self"
-msgstr ""
+msgstr "Ինքնուրոյն"
 
 #. Translators: svn recursion selection
 #. * Immediate files means this file/direcotry and the files it contains are
@@ -1322,7 +1322,7 @@ msgstr ""
 #: ../tvp-svn-helper/tsh-properties-dialog.c:202
 #: 

[Xfce4-commits] [thunar-plugins/thunar-vcs-plugin] branch master updated (1149d80 -> 51c9312)

2019-07-03 Thread noreply
This is an automated email from the git hooks/post-receive script.

transifex pushed a 
change to branch 
master
in repository thunar-plugins/thunar-vcs-plugin.

  from  1149d80   I18n: Update translation da (100%).
   new  51c9312   I18n: Update translation hy_AM (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/hy_AM.po | 136 ++--
 1 file changed, 68 insertions(+), 68 deletions(-)

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


[Xfce4-commits] [apps/xfce4-screensaver] 01/01: floaters: Initialize draw_ops_pending, use gboolean where appropriate

2019-07-03 Thread noreply
This is an automated email from the git hooks/post-receive script.

bluesabre pushed a 
commit to branch 
master
in repository apps/xfce4-screensaver.

commit c2f7422492ea8be9492a62a47aa77ed98204a26f
Author: Sean Davis 
Date:   Wed Jul 3 06:18:37 2019 -0400

floaters: Initialize draw_ops_pending, use gboolean where appropriate
---
 savers/floaters.c | 7 ---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/savers/floaters.c b/savers/floaters.c
index 39c5216..17acd4c 100644
--- a/savers/floaters.c
+++ b/savers/floaters.c
@@ -197,9 +197,9 @@ struct _ScreenSaver {
 GList *floaters;
 gint max_floater_count;
 
-guint should_do_rotations: 1;
-guint should_show_paths : 1;
-guint draw_ops_pending : 1;
+gboolean should_do_rotations: 1;
+gboolean should_show_paths : 1;
+gboolean draw_ops_pending : 1;
 };
 
 static Path *path_new (Point *start_point,
@@ -827,6 +827,7 @@ screen_saver_new (GtkWidget   *drawing_area,
 
 screen_saver->should_show_paths = should_show_paths;
 screen_saver->should_do_rotations = should_do_rotations;
+screen_saver->draw_ops_pending = TRUE;
 
 screen_saver_get_initial_state (screen_saver);
 

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


[Xfce4-commits] [apps/xfce4-screensaver] branch master updated (2d8e1cb -> c2f7422)

2019-07-03 Thread noreply
This is an automated email from the git hooks/post-receive script.

bluesabre pushed a 
change to branch 
master
in repository apps/xfce4-screensaver.

  from  2d8e1cb   Fix confusion between saver and lock timeouts
   new  c2f7422   floaters: Initialize draw_ops_pending, use gboolean where 
appropriate

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:
 savers/floaters.c | 7 ---
 1 file changed, 4 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