[Xfce4-commits] [apps/xfce4-terminal] 01/01: I18n: Update translation nb (100%).

2018-06-29 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-terminal.

commit ec9a1050f2a7065396e4d51b9ac1b972b24bf7b6
Author: Anonymous 
Date:   Sat Jun 30 06:31:32 2018 +0200

I18n: Update translation nb (100%).

394 translated messages.

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

diff --git a/po/nb.po b/po/nb.po
index 6514d8f..7946c70 100644
--- a/po/nb.po
+++ b/po/nb.po
@@ -14,7 +14,7 @@ msgstr ""
 "Project-Id-Version: Xfce Apps\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2018-06-19 00:31+0200\n"
-"PO-Revision-Date: 2018-06-29 22:30+\n"
+"PO-Revision-Date: 2018-06-29 22:42+\n"
 "Last-Translator: Torkel Bjørnson-Langen\n"
 "Language-Team: Norwegian Bokmål 
(http://www.transifex.com/xfce/xfce-apps/language/nb/)\n"
 "MIME-Version: 1.0\n"
@@ -107,7 +107,7 @@ msgstr "modus"
 #. parameter of --color-bg
 #: ../terminal/main.c:136 ../terminal/main.c:138
 msgid "color"
-msgstr ""
+msgstr "farge"
 
 #: ../terminal/main.c:146
 msgid "Window Options"
@@ -354,7 +354,7 @@ msgstr "Valget \"--initial-title\" krever at man angir 
første tittel som argume
 #: ../terminal/terminal-options.c:349 ../terminal/terminal-options.c:368
 #, c-format
 msgid "Option \"%s\" requires specifying the color as its parameter"
-msgstr ""
+msgstr "Valget \"%s\" krever at man angir farge som dets argument"
 
 #: ../terminal/terminal-options.c:356 ../terminal/terminal-options.c:375
 #, c-format
@@ -658,7 +658,7 @@ msgstr "Velg _alt"
 
 #: ../terminal/terminal-window.c:334
 msgid "Copy _Input To All Tabs..."
-msgstr ""
+msgstr "Kopier _Inndata Til Alle Faner …"
 
 #: ../terminal/terminal-window.c:335
 msgid "Pr_eferences..."
@@ -706,7 +706,7 @@ msgstr "_Sett tittel…"
 
 #: ../terminal/terminal-window.c:342
 msgid "Set Title Co_lor..."
-msgstr ""
+msgstr "Set tittelfarge"
 
 #: ../terminal/terminal-window.c:343
 msgid "_Find..."
@@ -888,7 +888,7 @@ msgstr "Lukk vindu?"
 
 #: ../terminal/terminal-window.c:1822
 msgid "Copy _Input:"
-msgstr ""
+msgstr "Kopier _Inndata:"
 
 #: ../terminal/terminal-window.c:1826
 msgid "Enter the text to be copied to all tabs"
@@ -896,7 +896,7 @@ msgstr "Skriv inn teksten som skal kopieres til alle fanene"
 
 #: ../terminal/terminal-window.c:1834
 msgid "Copy input"
-msgstr ""
+msgstr "Kopier inndata"
 
 #: ../terminal/terminal-window.c:2178
 msgid "_Title:"

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


[Xfce4-commits] [apps/xfce4-terminal] branch master updated (622f48f -> ec9a105)

2018-06-29 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-terminal.

  from  622f48f   I18n: Update translation nb (98%).
   new  ec9a105   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 | 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] [apps/catfish] 01/01: Handle exceptions encountered while opening settings (bug #14491)

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

bluesabre pushed a 
commit to branch 
master
in repository apps/catfish.

commit 741e4c56d9e88a0a81e681a1e7d3d23bb200cac4
Author: Sean Davis 
Date:   Fri Jun 29 23:08:36 2018 -0400

Handle exceptions encountered while opening settings (bug #14491)
---
 catfish_lib/CatfishSettings.py | 23 +--
 po/catfish.pot |  2 +-
 2 files changed, 14 insertions(+), 11 deletions(-)

diff --git a/catfish_lib/CatfishSettings.py b/catfish_lib/CatfishSettings.py
index 7406a8a..597c929 100644
--- a/catfish_lib/CatfishSettings.py
+++ b/catfish_lib/CatfishSettings.py
@@ -60,16 +60,19 @@ class CatfishSettings:
 """Read the settings rc-file into this settings instance."""
 self.settings = default_settings.copy()
 if os.path.isfile(self.settings_file):
-for line in open(self.settings_file):
-if not line.startswith('#'):
-try:
-prop, value = line.split('=')
-if prop in self.settings:
-if value.strip().lower() in ['true', 'false']:
-value = value.strip().lower() == 'true'
-self.settings[prop] = value
-except Exception:
-pass
+try:
+for line in open(self.settings_file):
+if not line.startswith('#'):
+try:
+prop, value = line.split('=')
+if prop in self.settings:
+if value.strip().lower() in ['true', 'false']:
+value = value.strip().lower() == 'true'
+self.settings[prop] = value
+except Exception:
+pass
+except Exception:
+pass
 
 def write(self):
 """Write the current settings to the settings rc-file."""
diff --git a/po/catfish.pot b/po/catfish.pot
index 9e61816..be51d44 100644
--- a/po/catfish.pot
+++ b/po/catfish.pot
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-06-29 22:53-0400\n"
+"POT-Creation-Date: 2018-06-29 23:08-0400\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME \n"
 "Language-Team: LANGUAGE \n"

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


[Xfce4-commits] [apps/catfish] branch master updated (9198daf -> 741e4c5)

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

bluesabre pushed a 
change to branch 
master
in repository apps/catfish.

  from  9198daf   Enable launching executable AppImage files from Catfish 
(bug #14500)
   new  741e4c5   Handle exceptions encountered while opening settings (bug 
#14491)

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:
 catfish_lib/CatfishSettings.py | 23 +--
 po/catfish.pot |  2 +-
 2 files changed, 14 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] [apps/catfish] 01/01: Enable launching executable AppImage files from Catfish (bug #14500)

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

bluesabre pushed a 
commit to branch 
master
in repository apps/catfish.

commit 9198dafad1216dff4b78fb2992bc7c5414bd3db0
Author: Sean Davis 
Date:   Fri Jun 29 22:53:50 2018 -0400

Enable launching executable AppImage files from Catfish (bug #14500)
---
 catfish/CatfishWindow.py |  5 -
 po/catfish.pot   | 50 
 2 files changed, 29 insertions(+), 26 deletions(-)

diff --git a/catfish/CatfishWindow.py b/catfish/CatfishWindow.py
index b2d5ed0..a218a84 100644
--- a/catfish/CatfishWindow.py
+++ b/catfish/CatfishWindow.py
@@ -908,7 +908,10 @@ class CatfishWindow(Window):
 def open_file(self, filename):
 """Open the specified filename in its default application."""
 logger.debug("Opening %s" % filename)
-command = ['xdg-open', filename]
+if filename.endswith('.AppImage') and os.access(filename, os.X_OK):
+command = [filename]
+else:
+command = ['xdg-open', filename]
 try:
 subprocess.Popen(command, shell=False)
 return
diff --git a/po/catfish.pot b/po/catfish.pot
index 89f53d5..9e61816 100644
--- a/po/catfish.pot
+++ b/po/catfish.pot
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-06-29 22:37-0400\n"
+"POT-Creation-Date: 2018-06-29 22:53-0400\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME \n"
 "Language-Team: LANGUAGE \n"
@@ -137,7 +137,7 @@ msgstr ""
 msgid "File Type"
 msgstr ""
 
-#: ../data/ui/CatfishWindow.ui.h:27 ../catfish/CatfishWindow.py:1093
+#: ../data/ui/CatfishWindow.ui.h:27 ../catfish/CatfishWindow.py:1096
 msgid "Modified"
 msgstr ""
 
@@ -312,109 +312,109 @@ msgstr ""
 msgid "Begin Search"
 msgstr ""
 
-#: ../catfish/CatfishWindow.py:919
+#: ../catfish/CatfishWindow.py:922
 #, python-format
 msgid "\"%s\" could not be opened."
 msgstr ""
 
-#: ../catfish/CatfishWindow.py:965
+#: ../catfish/CatfishWindow.py:968
 #, python-format
 msgid "\"%s\" could not be saved."
 msgstr ""
 
-#: ../catfish/CatfishWindow.py:982
+#: ../catfish/CatfishWindow.py:985
 #, python-format
 msgid "\"%s\" could not be deleted."
 msgstr ""
 
-#: ../catfish/CatfishWindow.py:1022
+#: ../catfish/CatfishWindow.py:1025
 #, python-format
 msgid "Save \"%s\" as…"
 msgstr ""
 
-#: ../catfish/CatfishWindow.py:1057
+#: ../catfish/CatfishWindow.py:1060
 #, python-format
 msgid ""
 "Are you sure that you want to \n"
 "permanently delete \"%s\"?"
 msgstr ""
 
-#: ../catfish/CatfishWindow.py:1061
+#: ../catfish/CatfishWindow.py:1064
 #, python-format
 msgid ""
 "Are you sure that you want to \n"
 "permanently delete the %i selected files?"
 msgstr ""
 
-#: ../catfish/CatfishWindow.py:1064
+#: ../catfish/CatfishWindow.py:1067
 msgid "If you delete a file, it is permanently lost."
 msgstr ""
 
-#: ../catfish/CatfishWindow.py:1087
+#: ../catfish/CatfishWindow.py:1090
 msgid "Filename"
 msgstr ""
 
-#: ../catfish/CatfishWindow.py:1089
+#: ../catfish/CatfishWindow.py:1092
 msgid "Size"
 msgstr ""
 
-#: ../catfish/CatfishWindow.py:1091
+#: ../catfish/CatfishWindow.py:1094
 msgid "Location"
 msgstr ""
 
-#: ../catfish/CatfishWindow.py:1103
+#: ../catfish/CatfishWindow.py:1106
 msgid "Preview"
 msgstr ""
 
-#: ../catfish/CatfishWindow.py:
+#: ../catfish/CatfishWindow.py:1114
 msgid "Details"
 msgstr ""
 
-#: ../catfish/CatfishWindow.py:1330
+#: ../catfish/CatfishWindow.py:1333
 msgid "Today"
 msgstr ""
 
-#: ../catfish/CatfishWindow.py:1332
+#: ../catfish/CatfishWindow.py:1335
 msgid "Yesterday"
 msgstr ""
 
-#: ../catfish/CatfishWindow.py:1413
+#: ../catfish/CatfishWindow.py:1416
 msgid "No files found."
 msgstr ""
 
-#: ../catfish/CatfishWindow.py:1415
+#: ../catfish/CatfishWindow.py:1418
 msgid ""
 "Try making your search less specific\n"
 "or try another directory."
 msgstr ""
 
-#: ../catfish/CatfishWindow.py:1421
+#: ../catfish/CatfishWindow.py:1424
 msgid "1 file found."
 msgstr ""
 
-#: ../catfish/CatfishWindow.py:1423
+#: ../catfish/CatfishWindow.py:1426
 #, python-format
 msgid "%i files found."
 msgstr ""
 
-#: ../catfish/CatfishWindow.py:1429
+#: ../catfish/CatfishWindow.py:1432
 msgid "bytes"
 msgstr ""
 
-#: ../catfish/CatfishWindow.py:1537 ../catfish/CatfishWindow.py:1546
+#: ../catfish/CatfishWindow.py:1540 ../catfish/CatfishWindow.py:1549
 msgid "Searching…"
 msgstr ""
 
-#: ../catfish/CatfishWindow.py:1539
+#: ../catfish/CatfishWindow.py:1542
 msgid "Results will be displayed as soon as they are found."
 msgstr ""
 
-#: ../catfish/CatfishWindow.py:1544
+#: ../catfish/CatfishWindow.py:1547
 #, python-format
 msgid "Searching for \"%s\""
 msgstr ""
 
-#: ../catfish/CatfishWindow.py:1633
+#: ../catfish/CatfishWindow.py:1636
 #, python-format
 msgid "Search 

[Xfce4-commits] [apps/catfish] branch master updated (7acb5b2 -> 9198daf)

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

bluesabre pushed a 
change to branch 
master
in repository apps/catfish.

  from  7acb5b2   Handle permission errors in settings handler (bug #14488)
   new  9198daf   Enable launching executable AppImage files from Catfish 
(bug #14500)

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:
 catfish/CatfishWindow.py |  5 -
 po/catfish.pot   | 50 
 2 files changed, 29 insertions(+), 26 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/catfish] branch master updated (3ef5984 -> 7acb5b2)

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

bluesabre pushed a 
change to branch 
master
in repository apps/catfish.

  from  3ef5984   Replace unicode decode errors in external search method 
(bug #14490)
   new  7acb5b2   Handle permission errors in settings handler (bug #14488)

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:
 catfish_lib/CatfishSettings.py | 21 -
 po/catfish.pot |  2 +-
 2 files changed, 13 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] [apps/catfish] 01/01: Handle permission errors in settings handler (bug #14488)

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

bluesabre pushed a 
commit to branch 
master
in repository apps/catfish.

commit 7acb5b2863eab7d620b4401b64776bedf91b7839
Author: Sean Davis 
Date:   Fri Jun 29 22:38:11 2018 -0400

Handle permission errors in settings handler (bug #14488)
---
 catfish_lib/CatfishSettings.py | 21 -
 po/catfish.pot |  2 +-
 2 files changed, 13 insertions(+), 10 deletions(-)

diff --git a/catfish_lib/CatfishSettings.py b/catfish_lib/CatfishSettings.py
index ce2c6b0..7406a8a 100644
--- a/catfish_lib/CatfishSettings.py
+++ b/catfish_lib/CatfishSettings.py
@@ -74,12 +74,15 @@ class CatfishSettings:
 def write(self):
 """Write the current settings to the settings rc-file."""
 if self.settings_file:
-write_file = open(self.settings_file, 'w')
-for key in list(self.settings.keys()):
-value = self.settings[key]
-if isinstance(value, bool):
-value = str(value).lower()
-else:
-value = str(value)
-write_file.write('%s=%s\n' % (key, value))
-write_file.close()
+try:
+write_file = open(self.settings_file, 'w')
+for key in list(self.settings.keys()):
+value = self.settings[key]
+if isinstance(value, bool):
+value = str(value).lower()
+else:
+value = str(value)
+write_file.write('%s=%s\n' % (key, value))
+write_file.close()
+except PermissionError:
+pass
diff --git a/po/catfish.pot b/po/catfish.pot
index cc199d7..89f53d5 100644
--- a/po/catfish.pot
+++ b/po/catfish.pot
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-06-29 22:28-0400\n"
+"POT-Creation-Date: 2018-06-29 22:37-0400\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME \n"
 "Language-Team: LANGUAGE \n"

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


[Xfce4-commits] [apps/catfish] branch master updated (8b3fe11 -> 3ef5984)

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

bluesabre pushed a 
change to branch 
master
in repository apps/catfish.

  from  8b3fe11   Improve hidden file logic (bug #14497)
   new  3ef5984   Replace unicode decode errors in external search method 
(bug #14490)

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:
 catfish/CatfishSearchEngine.py | 2 +-
 po/catfish.pot | 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] [apps/catfish] 01/01: Replace unicode decode errors in external search method (bug #14490)

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

bluesabre pushed a 
commit to branch 
master
in repository apps/catfish.

commit 3ef59849c3bd9982da5bf11bee038583560660d6
Author: Sean Davis 
Date:   Fri Jun 29 22:33:00 2018 -0400

Replace unicode decode errors in external search method (bug #14490)
---
 catfish/CatfishSearchEngine.py | 2 +-
 po/catfish.pot | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/catfish/CatfishSearchEngine.py b/catfish/CatfishSearchEngine.py
index 6709295..a9fef19 100644
--- a/catfish/CatfishSearchEngine.py
+++ b/catfish/CatfishSearchEngine.py
@@ -502,7 +502,7 @@ class CatfishSearchMethodExternal(CatfishSearchMethod):
 def process_output(self, output):
 """Return the output text."""
 if isinstance(output, io.BufferedReader):
-return map(lambda s: s.decode(encoding='UTF8').strip(),
+return map(lambda s: s.decode(encoding='UTF8', 
errors='replace').strip(),
output.readlines())
 else:
 return output
diff --git a/po/catfish.pot b/po/catfish.pot
index c9232aa..cc199d7 100644
--- a/po/catfish.pot
+++ b/po/catfish.pot
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-06-29 22:09-0400\n"
+"POT-Creation-Date: 2018-06-29 22:28-0400\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME \n"
 "Language-Team: LANGUAGE \n"

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


[Xfce4-commits] [apps/catfish] 01/01: Improve hidden file logic (bug #14497)

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

bluesabre pushed a 
commit to branch 
master
in repository apps/catfish.

commit 8b3fe1149562195b33f73825db21e231caa5aea7
Author: Sean Davis 
Date:   Fri Jun 29 22:10:23 2018 -0400

Improve hidden file logic (bug #14497)
---
 catfish/CatfishWindow.py | 10 +-
 po/catfish.pot   |  2 +-
 2 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/catfish/CatfishWindow.py b/catfish/CatfishWindow.py
index 99d0fe3..b2d5ed0 100644
--- a/catfish/CatfishWindow.py
+++ b/catfish/CatfishWindow.py
@@ -61,12 +61,12 @@ def application_in_PATH(application_name):
 
 def is_file_hidden(folder, filename):
 """Return TRUE if file is hidden or in a hidden directory."""
-relative = filename.lstrip(folder)
-splitpath = os.path.split(relative)
-while splitpath[1] != '':
-if splitpath[1][0] == '.':
+folder = os.path.abspath(folder)
+filename = os.path.abspath(filename)
+relpath = os.path.relpath(filename, folder)
+for piece in relpath.split(os.sep):
+if piece.startswith("."):
 return True
-splitpath = os.path.split(splitpath[0])
 return False
 
 
diff --git a/po/catfish.pot b/po/catfish.pot
index ce14cb3..c9232aa 100644
--- a/po/catfish.pot
+++ b/po/catfish.pot
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-06-29 21:38-0400\n"
+"POT-Creation-Date: 2018-06-29 22:09-0400\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME \n"
 "Language-Team: LANGUAGE \n"

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


[Xfce4-commits] [apps/catfish] branch master updated (46593ce -> 8b3fe11)

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

bluesabre pushed a 
change to branch 
master
in repository apps/catfish.

  from  46593ce   Fix invalid date in appdata (bug #14502)
   new  8b3fe11   Improve hidden file logic (bug #14497)

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:
 catfish/CatfishWindow.py | 10 +-
 po/catfish.pot   |  2 +-
 2 files 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] [apps/catfish] branch master updated (9700da4 -> 46593ce)

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

bluesabre pushed a 
change to branch 
master
in repository apps/catfish.

  from  9700da4   Replace stock icons, use standard MIME icons (bug #14503)
   new  46593ce   Fix invalid date in appdata (bug #14502)

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:
 data/metainfo/catfish.appdata.xml.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] [apps/catfish] 01/01: Fix invalid date in appdata (bug #14502)

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

bluesabre pushed a 
commit to branch 
master
in repository apps/catfish.

commit 46593ce5d2f07345fd423bbe59ea8b8d0d8d14a3
Author: Sean Davis 
Date:   Fri Jun 29 21:47:45 2018 -0400

Fix invalid date in appdata (bug #14502)
---
 data/metainfo/catfish.appdata.xml.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/data/metainfo/catfish.appdata.xml.in 
b/data/metainfo/catfish.appdata.xml.in
index 30a8a83..68ec3f7 100644
--- a/data/metainfo/catfish.appdata.xml.in
+++ b/data/metainfo/catfish.appdata.xml.in
@@ -93,7 +93,7 @@
 
   
 
-
+
   
 <_p>This release fixes a regression where multiple search terms were
 no longer supported. An InfoBar is now displayed when the search

-- 
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/catfish] 01/01: Replace stock icons, use standard MIME icons (bug #14503)

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

bluesabre pushed a 
commit to branch 
master
in repository apps/catfish.

commit 9700da485005d98996873a8713e784386a69ec23
Author: Sean Davis 
Date:   Fri Jun 29 21:44:42 2018 -0400

Replace stock icons, use standard MIME icons (bug #14503)
---
 catfish/CatfishWindow.py | 14 ++
 po/catfish.pot   | 10 +-
 2 files changed, 15 insertions(+), 9 deletions(-)

diff --git a/catfish/CatfishWindow.py b/catfish/CatfishWindow.py
index 2387da1..99d0fe3 100644
--- a/catfish/CatfishWindow.py
+++ b/catfish/CatfishWindow.py
@@ -1496,17 +1496,23 @@ class CatfishWindow(Window):
 """Retrieve the file icon."""
 if mime_type:
 if mime_type == 'inode/directory':
-return Gtk.STOCK_DIRECTORY
+return "folder"
 else:
 mime_type = mime_type.split('/')
 if mime_type is not None:
 # Get icon from mimetype
 media, subtype = mime_type
-for icon_name in ['gnome-mime-%s-%s' % (media, subtype),
-  'gnome-mime-%s' % media]:
+
+variations = ['%s-%s' % (media, subtype),
+  '%s-x-%s' % (media, subtype)]
+if media == "application":
+variations.append('application-x-executable')
+variations.append('%s-x-generic' % media)
+
+for icon_name in variations:
 if self.icon_theme.has_icon(icon_name):
 return icon_name
-return Gtk.STOCK_FILE
+return "text-x-generic"
 
 def python_three_size_sort_func(self, model, row1, row2, user_data):
 """Sort function used in Python 3."""
diff --git a/po/catfish.pot b/po/catfish.pot
index a270542..ce14cb3 100644
--- a/po/catfish.pot
+++ b/po/catfish.pot
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-06-27 22:02-0400\n"
+"POT-Creation-Date: 2018-06-29 21:38-0400\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME \n"
 "Language-Team: LANGUAGE \n"
@@ -401,20 +401,20 @@ msgstr ""
 msgid "bytes"
 msgstr ""
 
-#: ../catfish/CatfishWindow.py:1531 ../catfish/CatfishWindow.py:1540
+#: ../catfish/CatfishWindow.py:1537 ../catfish/CatfishWindow.py:1546
 msgid "Searching…"
 msgstr ""
 
-#: ../catfish/CatfishWindow.py:1533
+#: ../catfish/CatfishWindow.py:1539
 msgid "Results will be displayed as soon as they are found."
 msgstr ""
 
-#: ../catfish/CatfishWindow.py:1538
+#: ../catfish/CatfishWindow.py:1544
 #, python-format
 msgid "Searching for \"%s\""
 msgstr ""
 
-#: ../catfish/CatfishWindow.py:1627
+#: ../catfish/CatfishWindow.py:1633
 #, python-format
 msgid "Search results for \"%s\""
 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] [apps/catfish] branch master updated (b6a30dd -> 9700da4)

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

bluesabre pushed a 
change to branch 
master
in repository apps/catfish.

  from  b6a30dd   desktop: add inode/directory mimetype (bug #14505)
   new  9700da4   Replace stock icons, use standard MIME icons (bug #14503)

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:
 catfish/CatfishWindow.py | 14 ++
 po/catfish.pot   | 10 +-
 2 files changed, 15 insertions(+), 9 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/catfish] 01/01: desktop: add inode/directory mimetype (bug #14505)

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

bluesabre pushed a 
commit to branch 
master
in repository apps/catfish.

commit b6a30dd88dbf6c97774330327d9ab186b8a7e6cb
Author: Pavel Rehak 
Date:   Sun Jun 10 21:39:56 2018 +0200

desktop: add inode/directory mimetype (bug #14505)

Right click on a folder and choose open by another app - catfish.

Signed-off-by: Sean Davis 
---
 catfish.desktop.in | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/catfish.desktop.in b/catfish.desktop.in
index 21ed688..740e34c 100644
--- a/catfish.desktop.in
+++ b/catfish.desktop.in
@@ -5,7 +5,8 @@ _Comment=Search the file system
 # TRANSLATORS: Search terms to find this application. Do NOT translate or 
localize the semicolons! The list MUST also end with a semicolon!
 _Keywords=files;find;locate;lookup;search;
 Categories=GNOME;GTK;Utility;
-Exec=catfish
+Exec=catfish %f
 Icon=catfish
 Terminal=false
 Type=Application
+MimeType=inode/directory;

-- 
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/catfish] branch master updated (2eed889 -> b6a30dd)

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

bluesabre pushed a 
change to branch 
master
in repository apps/catfish.

  from  2eed889   Add .gitignore
   new  b6a30dd   desktop: add inode/directory mimetype (bug #14505)

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:
 catfish.desktop.in | 3 ++-
 1 file changed, 2 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-pulseaudio-plugin] branch master updated (dfa942a -> 5b33082)

2018-06-29 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  dfa942a   I18n: Update translation pt (100%).
   new  5b33082   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 | 4 ++--
 1 file 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] [panel-plugins/xfce4-pulseaudio-plugin] 01/01: I18n: Update translation pt (100%).

2018-06-29 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 5b330824e89f9625fd57002702632460f7320bd2
Author: Alexandre Fidalgo 
Date:   Sat Jun 30 00:32:57 2018 +0200

I18n: Update translation pt (100%).

35 translated messages.

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

diff --git a/po/pt.po b/po/pt.po
index 1f3cef3..44e430a 100644
--- a/po/pt.po
+++ b/po/pt.po
@@ -11,7 +11,7 @@ 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: 2018-06-29 16:31+\n"
+"PO-Revision-Date: 2018-06-29 16:33+\n"
 "Last-Translator: Alexandre Fidalgo \n"
 "Language-Team: Portuguese 
(http://www.transifex.com/xfce/xfce-panel-plugins/language/pt/)\n"
 "MIME-Version: 1.0\n"
@@ -116,7 +116,7 @@ msgstr "Reprodutores de media"
 
 #: ../panel-plugin/pulseaudio-plugin.c:243
 msgid "Copyright © 2014-2017 Andrzej Radecki et al.\n"
-msgstr "Copyright © 2014-2017 Andrzej Radecki e outros\n"
+msgstr "Copyright © 2014-2017 Andrzej Radecki et al.\n"
 
 #: ../panel-plugin/pulseaudio-dialog.c:139
 #: ../panel-plugin/pulseaudio-menu.c:264

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

2018-06-29 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-terminal.

commit 622f48f25009d6f7f0666fbac9777a2448d45902
Author: Anonymous 
Date:   Sat Jun 30 00:32:15 2018 +0200

I18n: Update translation nb (98%).

388 translated messages, 6 untranslated messages.

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

diff --git a/po/nb.po b/po/nb.po
index 568aeac..6514d8f 100644
--- a/po/nb.po
+++ b/po/nb.po
@@ -8,13 +8,14 @@
 # Erlend Østlie , 2018
 # Harald H. , 2014
 # Terje Uriansrud , 2010
+# Torkel Bjørnson-Langen, 2018
 msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Apps\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-01-20 18:31+0100\n"
-"PO-Revision-Date: 2018-03-12 12:30+\n"
-"Last-Translator: Erlend Østlie \n"
+"POT-Creation-Date: 2018-06-19 00:31+0200\n"
+"PO-Revision-Date: 2018-06-29 22:30+\n"
+"Last-Translator: Torkel Bjørnson-Langen\n"
 "Language-Team: Norwegian Bokmål 
(http://www.transifex.com/xfce/xfce-apps/language/nb/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -68,13 +69,13 @@ msgstr "Generelle innstillinger"
 
 #. parameter of --default-display
 #. parameter of --display
-#: ../terminal/main.c:111 ../terminal/main.c:143
+#: ../terminal/main.c:111 ../terminal/main.c:148
 msgid "display"
 msgstr "skjerm"
 
 #. parameter of --default-working-directory
 #. parameter of --working-directory
-#: ../terminal/main.c:113 ../terminal/main.c:133
+#: ../terminal/main.c:113 ../terminal/main.c:134
 msgid "directory"
 msgstr "mappe"
 
@@ -82,101 +83,108 @@ msgstr "mappe"
 msgid "Window or Tab Separators"
 msgstr "Vindu eller fanedelere"
 
-#: ../terminal/main.c:123
+#: ../terminal/main.c:124
 msgid "Tab Options"
 msgstr "Faneinnstillinger"
 
 #. parameter of --command
-#: ../terminal/main.c:125
+#: ../terminal/main.c:126
 msgid "command"
 msgstr "commando"
 
 #. parameter of --title
 #. parameter of --initial-title
-#: ../terminal/main.c:127 ../terminal/main.c:131
+#: ../terminal/main.c:128 ../terminal/main.c:132
 msgid "title"
 msgstr "tittel"
 
 #. parameter of --dynamic-title-mode
-#: ../terminal/main.c:129
+#: ../terminal/main.c:130
 msgid "mode"
 msgstr "modus"
 
-#: ../terminal/main.c:141
+#. parameter of --color-text
+#. parameter of --color-bg
+#: ../terminal/main.c:136 ../terminal/main.c:138
+msgid "color"
+msgstr ""
+
+#: ../terminal/main.c:146
 msgid "Window Options"
 msgstr "Vindusinnstillinger"
 
 #. parameter of --geometry
-#: ../terminal/main.c:145
+#: ../terminal/main.c:150
 msgid "geometry"
 msgstr "geometri"
 
 #. parameter of --role
-#: ../terminal/main.c:147
+#: ../terminal/main.c:152
 msgid "role"
 msgstr "rolle"
 
 #. parameter of --startup-id
-#: ../terminal/main.c:149
+#: ../terminal/main.c:154
 msgid "string"
 msgstr "streng"
 
 #. parameter of --icon
-#: ../terminal/main.c:151
+#: ../terminal/main.c:156
 msgid "icon"
 msgstr "ikon"
 
 #. parameter of --font
-#: ../terminal/main.c:153
+#: ../terminal/main.c:158
 msgid "font"
 msgstr "skrift"
 
 #. parameter of --zoom
-#: ../terminal/main.c:155
+#: ../terminal/main.c:160
 msgid "zoom"
 msgstr "forstørrelsesnivå"
 
-#: ../terminal/main.c:157
+#: ../terminal/main.c:162
 #, c-format
 msgid "See the %s man page for full explanation of the options above."
 msgstr "Se %s man side for fullstendig forklaring på opsjonene."
 
-#: ../terminal/main.c:190 ../xfce4-terminal.desktop.in.h:1
+#: ../terminal/main.c:196 ../xfce4-terminal.desktop.in.h:1
+#: ../xfce4-terminal-settings.desktop.in.h:1
 msgid "Xfce Terminal"
 msgstr "Xfce-terminal"
 
-#: ../terminal/main.c:206
+#: ../terminal/main.c:212
 msgid "The Xfce development team. All rights reserved."
 msgstr "Xfce utviklingsgemenskap. Alle rettigheter reservert."
 
-#: ../terminal/main.c:207
+#: ../terminal/main.c:213
 msgid "Written by Benedikt Meurer ,"
 msgstr "Skrevet av Benedikt Meurer ,"
 
-#: ../terminal/main.c:208
+#: ../terminal/main.c:214
 msgid "Nick Schermer "
 msgstr "Nick Schermer "
 
-#: ../terminal/main.c:209
+#: ../terminal/main.c:215
 msgid "and Igor Zakharov ."
 msgstr "og Igor Zakharov ."
 
-#: ../terminal/main.c:210
+#: ../terminal/main.c:216
 #, c-format
 msgid "Please report bugs to <%s>."
 msgstr "Meld inn feil til <%s>."
 
-#: ../terminal/main.c:317
+#: ../terminal/main.c:334
 #, c-format
 msgid "Unable to register terminal service: %s\n"
 msgstr "Klarte ikke registerer terminaltjeneste: %s\n"
 
-#: ../terminal/terminal-app.c:872
+#: ../terminal/terminal-app.c:883
 #, c-format
 msgid "Invalid geometry string \"%s\"\n"
 msgstr "Ugyldig geomtriangivelse «%s»\n"
 
-#: ../terminal/terminal-app.c:951
+#: ../terminal/terminal-app.c:962
 #, c-format
 msgid "Failed to 

[Xfce4-commits] [apps/xfce4-dict] branch master updated (a5e0ecb -> ef4a007)

2018-06-29 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  a5e0ecb   I18n: Update translation gl (100%).
   new  ef4a007   I18n: Add new translation be (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/{ru.po => be.po} | 253 ++--
 1 file changed, 127 insertions(+), 126 deletions(-)
 copy po/{ru.po => be.po} (53%)

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


[Xfce4-commits] [apps/xfburn] branch master updated (fa68b10 -> a949724)

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

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

  from  fa68b10   I18n: Update translation it (100%).
   new  a949724   I18n: Add new translation be (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 => be.po} | 624 ++--
 1 file changed, 311 insertions(+), 313 deletions(-)
 copy po/{nb.po => be.po} (61%)

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

2018-06-29 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 ef4a0070cebcd1e2ce276dab01212731fafde4f0
Author: Zmicer Turok 
Date:   Sat Jun 30 00:31:57 2018 +0200

I18n: Add new translation be (100%).

119 translated messages.

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

diff --git a/po/be.po b/po/be.po
new file mode 100644
index 000..5421646
--- /dev/null
+++ b/po/be.po
@@ -0,0 +1,547 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+# 
+# Translators:
+# Sergey Alyoshin , 2015,2017
+# Zmicer Turok , 2018
+# Zmicer Turok , 2018
+msgid ""
+msgstr ""
+"Project-Id-Version: Xfce Apps\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2017-05-07 00:31+0200\n"
+"PO-Revision-Date: 2018-06-29 21:08+\n"
+"Last-Translator: Zmicer Turok \n"
+"Language-Team: Belarusian 
(http://www.transifex.com/xfce/xfce-apps/language/be/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Language: be\n"
+"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && 
n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || 
(n%100>=11 && n%100<=14)? 2 : 3);\n"
+
+#: ../panel-plugin/xfce4-dict-plugin.desktop.in.h:1
+#: ../src/xfce4-dict.desktop.in.h:1 ../lib/gui.c:805 ../lib/prefs.c:266
+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:263
+#: ../panel-plugin/xfce4-dict-plugin.c:391 ../src/xfce4-dict.c:196
+#: ../lib/spell.c:241 ../lib/gui.c:540
+msgid "Ready"
+msgstr "Завершана"
+
+#: ../panel-plugin/xfce4-dict-plugin.c:325
+msgid "Look up a word"
+msgstr "Знайсці слова"
+
+#: ../panel-plugin/xfce4-dict-plugin.c:364 ../lib/gui.c:836
+msgid "Search term"
+msgstr "Пошук тэрміна"
+
+#: ../src/xfce4-dict.c:49
+msgid "Search the given text using a Dict server(RFC 2229)"
+msgstr "Шукаць дадзены тэкст пры дапамозе сервера слоўнікаў (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 "Шукаць першаснае змесціва буферу абмену (PRIMARY)"
+
+#: ../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:1019
+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 прапановы."
+msgstr[2] "Знойдзена %d прапаноў."
+msgstr[3] "Знойдзена %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 "Калі ласка, прызначце праграму праверкі арфаграфіі ў дыялогу налад."
+

[Xfce4-commits] [apps/xfce4-terminal] branch master updated (d44e64c -> 622f48f)

2018-06-29 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-terminal.

  from  d44e64c   When detaching a tab from a drop-down window, resize the 
new window to the default geometry
   new  622f48f   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 | 400 +++
 1 file changed, 223 insertions(+), 177 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/gigolo] 01/01: I18n: Add new translation be (100%).

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

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

commit a0987f3345425a353cd8ced3f4d25e6ee93f9dad
Author: Zmicer Turok 
Date:   Sat Jun 30 00:31:22 2018 +0200

I18n: Add new translation be (100%).

142 translated messages.

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

diff --git a/po/be.po b/po/be.po
new file mode 100644
index 000..80255fe
--- /dev/null
+++ b/po/be.po
@@ -0,0 +1,623 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+# 
+# Translators:
+# Igor , 2016
+# Sergey Alyoshin , 2013,2016
+# Zmicer Turok , 2018
+msgid ""
+msgstr ""
+"Project-Id-Version: Xfce Apps\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-07-03 20:23+0200\n"
+"PO-Revision-Date: 2018-06-29 21:03+\n"
+"Last-Translator: Zmicer Turok \n"
+"Language-Team: Belarusian 
(http://www.transifex.com/xfce/xfce-apps/language/be/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Language: be\n"
+"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && 
n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || 
(n%100>=11 && n%100<=14)? 2 : 3);\n"
+
+#: ../src/main.c:47
+msgid "Connect all bookmarks marked as 'auto connect' and exit"
+msgstr "Падлучыць усе аўтаматычна падлучаемыя закладкі і выйсці"
+
+#: ../src/main.c:48
+msgid "Ignore running instances, enforce opening a new instance"
+msgstr "Не зважаць на запушчаныя асобнікі, запусціць новы асобнік"
+
+#: ../src/main.c:49
+msgid "Print a list of supported URI schemes"
+msgstr "Вывесці спіс падтрымліваемых схем URI"
+
+#: ../src/main.c:50
+msgid "Be verbose"
+msgstr "Падрабязны вывад"
+
+#: ../src/main.c:51
+msgid "Show version information"
+msgstr "Інфармацыя аб версіі"
+
+#: ../src/main.c:112
+msgid "- a simple frontend to easily connect to remote filesystems"
+msgstr "- просты інтэрфейс для падлучэння адлеглых файлавых сістэм"
+
+#: ../src/common.c:77
+msgid "Unix Device"
+msgstr "Прылада Unix"
+
+#: ../src/common.c:79
+msgid "Windows Share"
+msgstr "Агульны рэсурс Windows"
+
+#: ../src/common.c:81
+msgid "FTP"
+msgstr "FTP"
+
+#: ../src/common.c:83
+msgid "HTTP"
+msgstr "HTTP"
+
+#: ../src/common.c:85
+msgid "SSH"
+msgstr "SSH"
+
+#: ../src/common.c:87
+msgid "Obex"
+msgstr "Obex"
+
+#: ../src/common.c:89
+msgid "WebDAV"
+msgstr "WebDAV"
+
+#: ../src/common.c:91
+msgid "WebDAV (secure)"
+msgstr "WebDAV (абаронены)"
+
+#: ../src/common.c:93 ../src/window.c:1508
+msgid "Network"
+msgstr "Сетка"
+
+#: ../src/common.c:95
+msgid "Archive"
+msgstr "Архіў"
+
+#: ../src/common.c:97
+msgid "Photos"
+msgstr "Фотаздымкі"
+
+#: ../src/common.c:99
+msgid "Custom Location"
+msgstr "Адвольнае размяшчэнне"
+
+#: ../src/window.c:262
+#, c-format
+msgid "Connecting to \"%s\""
+msgstr "Злучэнне з \"%s\""
+
+#: ../src/window.c:430
+msgid ""
+"A simple frontend to easily connect/mount to local and remote filesystems"
+msgstr "Просты інтэрфейс для зручнага падлучэння/прымантавання лакальных і 
адлеглых файлавых сістэм"
+
+#: ../src/window.c:431
+msgid "Copyright 2008-2011 Enrico Tröger"
+msgstr "Copyright © 2008—2011 Энрыка Трогер"
+
+#: ../src/window.c:434
+msgid "translator-credits"
+msgstr "Zmicer Turok zmicertu...@gmail.com"
+
+#: ../src/window.c:466
+msgid "Gigolo can use the following protocols provided by GVfs:"
+msgstr "Gigolo можа выкарыстоўваць наступныя пратаколы GVfs:"
+
+#: ../src/window.c:579 ../src/window.c:638
+#, c-format
+msgid "The command '%s' failed"
+msgstr "Загад \"%s\" схібіў"
+
+#: ../src/window.c:580 ../src/window.c:613 ../src/window.c:626
+#: ../src/window.c:639 ../src/window.c:797 ../src/bookmarkeditdialog.c:233
+#: ../src/bookmarkeditdialog.c:252 ../src/bookmarkeditdialog.c:265
+#: ../src/bookmarkeditdialog.c:276 ../src/bookmarkeditdialog.c:287
+msgid "Error"
+msgstr "Памылка"
+
+#: ../src/window.c:613
+msgid "Invalid terminal command"
+msgstr "Хібны загад тэрмінала"
+
+#: ../src/window.c:625
+#, c-format
+msgid "No default location available for \"%s\""
+msgstr "Прадвызначанае месцазнаходжанне для \"%s\" адсутнічае"
+
+#: ../src/window.c:705
+msgid "Edit _Bookmark"
+msgstr "Рэдагаваць _закладку"
+
+#: ../src/window.c:707 ../src/window.c:1289 ../src/browsenetworkpanel.c:453
+#: ../src/browsenetworkpanel.c:497
+msgid "Create _Bookmark"
+msgstr "Стварыць _закладку"
+
+#: ../src/window.c:1281
+msgid "_File"
+msgstr "_Файл"
+
+#: ../src/window.c:1282
+msgid "_Edit"
+msgstr "_Рэдагаваць"
+
+#: ../src/window.c:1283
+msgid "_Actions"
+msgstr "_Дзеянні"
+
+#: ../src/window.c:1284
+msgid "_View"
+msgstr "_Выгляд"

[Xfce4-commits] [apps/squeeze] branch master updated (1735895 -> b5e84ec)

2018-06-29 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  1735895   I18n: Update translation it (100%).
   new  b5e84ec   I18n: Update translation be (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/be.po | 135 ---
 1 file changed, 68 insertions(+), 67 deletions(-)

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


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

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

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

commit a9497240d800fe61ca23c9a928173a83718704c1
Author: Zmicer Turok 
Date:   Sat Jun 30 00:31:48 2018 +0200

I18n: Add new translation be (100%).

306 translated messages.

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

diff --git a/po/be.po b/po/be.po
new file mode 100644
index 000..aa74599
--- /dev/null
+++ b/po/be.po
@@ -0,0 +1,1427 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+# 
+# Translators:
+# Andrey Fedoseev , 2006
+# Sergey Fedoseev , 2006
+# Zmicer Turok , 2018
+msgid ""
+msgstr ""
+"Project-Id-Version: Xfce Apps\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2017-11-21 00:31+0100\n"
+"PO-Revision-Date: 2018-06-29 21:04+\n"
+"Last-Translator: Zmicer Turok \n"
+"Language-Team: Belarusian 
(http://www.transifex.com/xfce/xfce-apps/language/be/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Language: be\n"
+"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && 
n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || 
(n%100>=11 && n%100<=14)? 2 : 3);\n"
+
+#: ../xfburn/xfburn-global.h:28
+msgid "Capacity:"
+msgstr "Умяшчальнасць:"
+
+#: ../xfburn/xfburn-global.h:29
+msgid "addr:"
+msgstr "адрас:"
+
+#: ../xfburn/xfburn-global.h:30
+msgid "Time total:"
+msgstr "Часу агулам:"
+
+#: ../xfburn/xfburn-global.h:32
+msgid "length"
+msgstr "працягласць"
+
+#: ../xfburn/xfburn-global.h:33 ../xfburn/xfburn-copy-cd-progress-dialog.c:93
+msgid "Flushing cache..."
+msgstr "Захаванне кэшу..."
+
+#: ../xfburn/xfburn-global.h:34
+msgid "Please insert a recordable disc and hit enter"
+msgstr "Калі ласка, ўстаўце запісвальны дыск і націсніце Enter"
+
+#: ../xfburn/xfburn-global.h:35
+msgid "Cannot determine disc status - hit enter to try again."
+msgstr "Не атрымалася вызначыць стан дыска. Націсніце Enter, каб паспрабаваць 
зноў."
+
+#: ../xfburn/xfburn-global.h:36
+msgid "CD copying finished successfully."
+msgstr "CD паспяхова скапіраваны."
+
+#: ../xfburn/xfburn-global.h:43
+msgid "Data composition"
+msgstr "Праект з данымі"
+
+#: ../xfburn/xfburn-adding-progress.c:112
+msgid "Adding files to the composition"
+msgstr "Дадаць файлы ў праект"
+
+#: ../xfburn/xfburn-adding-progress.c:125
+msgid "Cancel"
+msgstr "Скасаваць"
+
+#: ../xfburn/xfburn-blank-dialog.c:71
+msgid "Quick Blank"
+msgstr "Хуткая ачыстка"
+
+#: ../xfburn/xfburn-blank-dialog.c:72
+msgid "Full Blank (slow)"
+msgstr "Поўная ачыстка (павольна)"
+
+#: ../xfburn/xfburn-blank-dialog.c:73
+msgid "Quick Format"
+msgstr "Хуткае фарматаванне"
+
+#: ../xfburn/xfburn-blank-dialog.c:74
+msgid "Full Format"
+msgstr "Поўнае дэфарматаванне"
+
+#: ../xfburn/xfburn-blank-dialog.c:75
+msgid "Quick Deformat"
+msgstr "Хуткае дэфарматаванне"
+
+#: ../xfburn/xfburn-blank-dialog.c:76
+msgid "Full Deformat (slow)"
+msgstr "Поўнае дэфарматаванне (павольна)"
+
+#: ../xfburn/xfburn-blank-dialog.c:149
+msgid "Eject the disc"
+msgstr "Выняць дыск"
+
+#: ../xfburn/xfburn-blank-dialog.c:150
+msgid "Default value for eject checkbox"
+msgstr "Прадвызначанае значэнне параметра вымання"
+
+#: ../xfburn/xfburn-blank-dialog.c:197
+msgid "Blank Disc"
+msgstr "Ачыстка дыска"
+
+#: ../xfburn/xfburn-blank-dialog.c:209
+#: ../xfburn/xfburn-burn-data-composition-base-dialog.c:196
+#: ../xfburn/xfburn-burn-image-dialog.c:202
+#: ../xfburn/xfburn-copy-cd-dialog.c:131
+#: ../xfburn/xfburn-copy-dvd-dialog.c:131
+#: ../xfburn/xfburn-burn-audio-cd-composition-dialog.c:160
+msgid "Burning device"
+msgstr "Прылада запісу"
+
+#: ../xfburn/xfburn-blank-dialog.c:222 ../xfburn/xfburn-device-box.c:185
+msgid "Blank mode"
+msgstr "Рэжым ачысткі"
+
+#: ../xfburn/xfburn-blank-dialog.c:230
+#: ../xfburn/xfburn-burn-data-composition-base-dialog.c:228
+#: ../xfburn/xfburn-burn-image-dialog.c:210
+#: ../xfburn/xfburn-copy-cd-dialog.c:139
+#: ../xfburn/xfburn-copy-dvd-dialog.c:139
+#: ../xfburn/xfburn-burn-audio-cd-composition-dialog.c:194
+msgid "Options"
+msgstr "Параметры"
+
+#: ../xfburn/xfburn-blank-dialog.c:234
+#: ../xfburn/xfburn-burn-data-composition-base-dialog.c:232
+#: ../xfburn/xfburn-burn-image-dialog.c:214
+#: ../xfburn/xfburn-copy-cd-dialog.c:143
+#: ../xfburn/xfburn-copy-dvd-dialog.c:143
+#: ../xfburn/xfburn-burn-audio-cd-composition-dialog.c:198
+msgid "E_ject disk"
+msgstr "_Выняць дыск"
+
+#: ../xfburn/xfburn-blank-dialog.c:244
+msgid "_Blank"
+msgstr "_Ачысціць"
+
+#. blanking can only be performed on blank discs, format and deformat are
+#. allowed to be 

[Xfce4-commits] [apps/squeeze] 01/01: I18n: Update translation be (100%).

2018-06-29 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 b5e84ec9670385fef3ef07e7413ef75c3dafbee9
Author: Zmicer Turok 
Date:   Sat Jun 30 00:31:40 2018 +0200

I18n: Update translation be (100%).

93 translated messages.

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

diff --git a/po/be.po b/po/be.po
index b93e883..9ab98ef 100644
--- a/po/be.po
+++ b/po/be.po
@@ -4,13 +4,14 @@
 # 
 # Translators:
 # Alexander Nyakhaychyk , 2007
+# Zmicer Turok , 2018
 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: 2017-09-19 18:05+\n"
-"Last-Translator: Xfce Bot \n"
+"PO-Revision-Date: 2018-06-29 21:03+\n"
+"Last-Translator: Zmicer Turok \n"
 "Language-Team: Belarusian 
(http://www.transifex.com/xfce/xfce-apps/language/be/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -20,12 +21,12 @@ msgstr ""
 
 #: ../libsqueeze/archive.c:191
 msgid "Content-Type could not be detected"
-msgstr ""
+msgstr "Тып змесціва не вызначаны"
 
 #: ../libsqueeze/archive.c:207
 #, c-format
 msgid "Content-Type '%s' is not supported"
-msgstr ""
+msgstr "Тып змесціва \"%s\" не падтрымліваецца"
 
 #: ../libsqueeze/archive.c:294
 msgid "Name"
@@ -37,7 +38,7 @@ msgstr "Тып MIME"
 
 #: ../libsqueeze/archive.c:558
 msgid "Operation not supported"
-msgstr ""
+msgstr "Аперацыя не падтрымліваецца"
 
 #: ../squeeze.desktop.in.h:1
 msgid "Squeeze Archive Manager"
@@ -45,7 +46,7 @@ msgstr "Кіраўнік архіваў Squeeze"
 
 #: ../squeeze.desktop.in.h:2
 msgid "Create and manage archives with the archive manager"
-msgstr "Стварэньне й кірваньне архівамі"
+msgstr "Стварэнне і кірванне архівамі"
 
 #: ../squeeze.desktop.in.h:3
 msgid "Archive Manager"
@@ -61,7 +62,7 @@ msgstr "Немагчыма адкрыць архіў: MIME-тып не падт
 msgid ""
 "Squeeze cannot extract this archive type,\n"
 "the application to support this is missing."
-msgstr "Squeeze ня можа распакоўваць архівы гэтага тыпу,\nадсутнічае 
дастасаваньне для яго падтрымкі."
+msgstr "Squeeze не можа распакоўваць архівы гэтага тыпу,\nnпраграмы, што яго 
падтрымліваюць, адсутнічаюць."
 
 #. * Could not create archive (mime type unsupported)
 #: ../src/application.c:241
@@ -72,15 +73,15 @@ msgstr "Немагчыма стварыць архіў, MIME-тып не пад
 msgid ""
 "Squeeze cannot add files to this archive type,\n"
 "the application to support this is missing."
-msgstr "Squeeze ня можа дадаць файлы ў архіў гэтага тыпу:\nадсутнічае 
дастасаваньня для яго падтрымкі."
+msgstr "Squeeze не можа дадаць файлы ў архівы гэтага тыпу:\nnпраграмы, што яго 
падтрымліваюць, адсутнічаюць."
 
 #: ../src/archive_store.c:250 ../src/notebook.c:181
 msgid "Show full path"
-msgstr "Паказаць поўны шлях"
+msgstr "Паказваць поўны шлях"
 
 #: ../src/archive_store.c:251 ../src/notebook.c:182
 msgid "Show the full path strings for each entry"
-msgstr "Паказваць радок поўнага шляху для кожнага пункта"
+msgstr "Паказваць радок поўнага шляху для кожнага пункту"
 
 #: ../src/archive_store.c:257 ../src/notebook.c:188
 msgid "Show mime icons"
@@ -88,23 +89,23 @@ msgstr "Паказваць значкі mime-тыпаў"
 
 #: ../src/archive_store.c:258 ../src/notebook.c:189
 msgid "Show the mime type icons for each entry"
-msgstr "Паказваць значку MIME-тыпу для кожнага файла"
+msgstr "Паказваць значок MIME-тыпу для кожнага файла"
 
 #: ../src/archive_store.c:264
 msgid "Show up dir entry"
-msgstr "Паказваць бацькоўскую тэчку"
+msgstr "Паказваць бацькоўскі каталог"
 
 #: ../src/archive_store.c:265
 msgid "Show '..' to go to the parent directory"
-msgstr "Паказваць \"..\" для пераходу ў бацькоўскую тэчку"
+msgstr "Паказваць \"..\" для пераходу ў бацькоўскі каталог"
 
 #: ../src/archive_store.c:271 ../src/notebook.c:195
 msgid "Sort folders before files"
-msgstr "Зьмяшчаць тэчкі перад файламі"
+msgstr "Размяшчаць каталогі перад файламі"
 
 #: ../src/archive_store.c:272 ../src/notebook.c:196
 msgid "The folders will be put at the top of the list"
-msgstr "Тэчкі будуць зьмяшчацца перад файламі"
+msgstr "Каталогі будуць размяшчацца перад файламі"
 
 #: ../src/archive_store.c:278 ../src/archive_store.c:279 ../src/notebook.c:202
 #: ../src/notebook.c:203
@@ -113,19 +114,19 @@ msgstr "Упарадкаваць згодна з рэгістрам"
 
 #: ../src/button_drag_box.c:85
 msgid "Visible:"
-msgstr "Бачны:"
+msgstr "Бачна:"
 
 #: ../src/button_drag_box.c:96
 msgid "Available:"
-msgstr "Даступны:"
+msgstr "Даступна:"
 
 #: ../src/extract_dialog.c:77
 msgid "Extract files:"
-msgstr "Распакоўка файлаў:"
+msgstr "Выманне файлаў:"
 
 #: ../src/extract_dialog.c:78
 msgid "Options:"
-msgstr "Опцыі:"
+msgstr "Параметры:"
 

[Xfce4-commits] [apps/gigolo] branch master updated (7bcb081 -> a0987f3)

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

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

  from  7bcb081   I18n: Update translation it (100%).
   new  a0987f3   I18n: Add new translation be (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/{ru.po => be.po} | 269 ++--
 1 file changed, 135 insertions(+), 134 deletions(-)
 copy po/{ru.po => be.po} (57%)

-- 
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] branch master updated (03cc1b1 -> 916afbc)

2018-06-29 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  03cc1b1   I18n: Update translation he (100%).
   new  916afbc   I18n: Update translation fr (93%).

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 | 444 ++-
 1 file changed, 156 insertions(+), 288 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] [thunar-plugins/thunar-vcs-plugin] 01/01: I18n: Update translation fr (93%).

2018-06-29 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 916afbcdda526b715da5a024b29f13e14fb7ccf4
Author: Charles Monzat 
Date:   Sat Jun 30 00:30:27 2018 +0200

I18n: Update translation fr (93%).

287 translated messages, 20 untranslated messages.

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

diff --git a/po/fr.po b/po/fr.po
index b737eb4..8e0421d 100644
--- a/po/fr.po
+++ b/po/fr.po
@@ -15,8 +15,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Thunar Plugins\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-06-25 00:30+0200\n"
-"PO-Revision-Date: 2018-06-26 14:49+\n"
+"POT-Creation-Date: 2018-06-27 06:30+0200\n"
+"PO-Revision-Date: 2018-06-29 17:47+\n"
 "Last-Translator: Charles Monzat \n"
 "Language-Team: French 
(http://www.transifex.com/xfce/thunar-plugins/language/fr/)\n"
 "MIME-Version: 1.0\n"
@@ -25,245 +25,118 @@ msgstr ""
 "Language: fr\n"
 "Plural-Forms: nplurals=2; plural=(n > 1);\n"
 
-#: ../thunar-vcs-plugin/tvp-git-action.c:235
-#: ../thunar-vcs-plugin/tvp-svn-action.c:273
-msgctxt "Menu"
-msgid "Add"
-msgstr "Ajouter"
-
-#: ../thunar-vcs-plugin/tvp-git-action.c:235
-#: ../thunar-vcs-plugin/tvp-svn-action.c:273 ../tvp-git-helper/main.c:153
+#: ../thunar-vcs-plugin/tvp-git-action.c:222
+#: ../thunar-vcs-plugin/tvp-svn-action.c:260 ../tvp-git-helper/main.c:153
 #: ../tvp-git-helper/tgh-add.c:108 ../tvp-git-helper/tgh-add.c:121
 #: ../tvp-svn-helper/main.c:257 ../tvp-svn-helper/tsh-add.c:141
 #: ../tvp-svn-helper/tsh-add.c:154
 msgid "Add"
 msgstr "Ajouter"
 
-#: ../thunar-vcs-plugin/tvp-git-action.c:236
-msgctxt "Menu"
-msgid "Bisect"
-msgstr "Diviser"
+#: ../thunar-vcs-plugin/tvp-git-action.c:222
+msgid "Add file contents to the index"
+msgstr "Ajouter le contenu du fichier à l’index"
 
-#: ../thunar-vcs-plugin/tvp-git-action.c:236
-msgid "Bisect"
-msgstr "Diviser"
-
-#: ../thunar-vcs-plugin/tvp-git-action.c:238
-#: ../thunar-vcs-plugin/tvp-svn-action.c:278
-msgctxt "Menu"
-msgid "Blame"
-msgstr ""
-
-#: ../thunar-vcs-plugin/tvp-git-action.c:238
-#: ../thunar-vcs-plugin/tvp-svn-action.c:278 ../tvp-git-helper/main.c:157
+#: ../thunar-vcs-plugin/tvp-git-action.c:225
+#: ../thunar-vcs-plugin/tvp-svn-action.c:265 ../tvp-git-helper/main.c:157
 #: ../tvp-git-helper/tgh-blame-dialog.c:129 ../tvp-svn-helper/main.c:261
 #: ../tvp-svn-helper/main.c:265 ../tvp-svn-helper/tsh-blame-dialog.c:132
 msgid "Blame"
 msgstr "Blame"
 
-#: ../thunar-vcs-plugin/tvp-git-action.c:240
-msgctxt "Menu"
-msgid "Branch"
-msgstr "Branche"
+#: ../thunar-vcs-plugin/tvp-git-action.c:225
+#: ../thunar-vcs-plugin/tvp-svn-action.c:265
+msgid "Show what revision and author last modified each line of a file"
+msgstr ""
 
-#: ../thunar-vcs-plugin/tvp-git-action.c:240 ../tvp-git-helper/main.c:161
+#: ../thunar-vcs-plugin/tvp-git-action.c:227 ../tvp-git-helper/main.c:161
 #: ../tvp-git-helper/tgh-branch-dialog.c:140
 #: ../tvp-git-helper/tgh-stash-dialog.c:166
 msgid "Branch"
 msgstr "Branch"
 
-#: ../thunar-vcs-plugin/tvp-git-action.c:241
-#: ../thunar-vcs-plugin/tvp-svn-action.c:295
-msgctxt "Menu"
-msgid "Checkout"
+#: ../thunar-vcs-plugin/tvp-git-action.c:227
+msgid "List, create or switch branches"
 msgstr ""
 
-#: ../thunar-vcs-plugin/tvp-git-action.c:241
-#: ../thunar-vcs-plugin/tvp-svn-action.c:295 ../tvp-svn-helper/main.c:269
-#: ../tvp-svn-helper/tsh-checkout.c:106 ../tvp-svn-helper/tsh-checkout.c:118
-msgid "Checkout"
-msgstr "Checkout"
-
-#: ../thunar-vcs-plugin/tvp-git-action.c:242
-msgctxt "Menu"
-msgid "Clean"
-msgstr "Nettoyer"
-
-#: ../thunar-vcs-plugin/tvp-git-action.c:242 ../tvp-git-helper/main.c:165
+#. unimplemented: add_subaction(item, menu, "tvp::git::checkout",
+#. _("Checkout"), _("Checkout"), "gtk-connect", _("Checkout"));
+#: ../thunar-vcs-plugin/tvp-git-action.c:229 ../tvp-git-helper/main.c:165
 #: ../tvp-git-helper/tgh-clean.c:152 ../tvp-git-helper/tgh-clean-dialog.c:95
 msgid "Clean"
 msgstr "Nettoyer"
 
-#: ../thunar-vcs-plugin/tvp-git-action.c:244
-msgctxt "Menu"
-msgid "Clone"
-msgstr "Cloner"
+#: ../thunar-vcs-plugin/tvp-git-action.c:229
+msgid "Remove untracked files from the working tree"
+msgstr ""
 
-#: ../thunar-vcs-plugin/tvp-git-action.c:244 ../tvp-git-helper/main.c:169
+#: ../thunar-vcs-plugin/tvp-git-action.c:231 ../tvp-git-helper/main.c:169
 #: ../tvp-git-helper/tgh-clone.c:115
 msgid "Clone"
-msgstr "Clone"
-
-#: ../thunar-vcs-plugin/tvp-git-action.c:245
-#: ../thunar-vcs-plugin/tvp-svn-action.c:305
-msgctxt "Menu"
-msgid "Commit"
-msgstr ""
-
-#: ../thunar-vcs-plugin/tvp-git-action.c:245
-#: ../thunar-vcs-plugin/tvp-svn-action.c:305
-#: ../tvp-git-helper/tgh-log-dialog.c:153

[Xfce4-commits] [apps/xfce4-terminal] branch master updated (ec31f21 -> d44e64c)

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

f2404 pushed a 
change to branch 
master
in repository apps/xfce4-terminal.

  from  ec31f21   I18n: Update translation he (100%).
   new  d44e64c   When detaching a tab from a drop-down window, resize the 
new window to the default geometry

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:
 terminal/terminal-app.c | 24 +---
 1 file changed, 21 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] [apps/xfce4-terminal] 01/01: When detaching a tab from a drop-down window, resize the new window to the default geometry

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

f2404 pushed a 
commit to branch 
master
in repository apps/xfce4-terminal.

commit d44e64c7f63e0f9209df8fb51fab203b6638c1f7
Author: Igor 
Date:   Fri Jun 29 15:16:21 2018 -0400

When detaching a tab from a drop-down window, resize the new window to the 
default geometry
---
 terminal/terminal-app.c | 24 +---
 1 file changed, 21 insertions(+), 3 deletions(-)

diff --git a/terminal/terminal-app.c b/terminal/terminal-app.c
index 4eef4f0..94eacba 100644
--- a/terminal/terminal-app.c
+++ b/terminal/terminal-app.c
@@ -500,9 +500,27 @@ terminal_app_new_window_with_terminal (TerminalWindow 
*existing,
 
   terminal_window_add (TERMINAL_WINDOW (window), terminal);
 
-  /* resize new window to the original terminal geometry */
-  terminal_screen_get_size (terminal, , );
-  terminal_screen_force_resize_window (terminal, GTK_WINDOW (window), width, 
height);
+  if (G_UNLIKELY (terminal_window_is_drop_down (existing)))
+{
+  /* resize new window to the default geometry */
+#ifdef GDK_WINDOWING_X11
+  gchar *geo;
+  guint  w, h;
+  g_object_get (G_OBJECT (app->preferences), "misc-default-geometry", 
, NULL);
+  if (G_LIKELY (geo != NULL))
+{
+  XParseGeometry (geo, NULL, NULL, , );
+  g_free (geo);
+  terminal_screen_force_resize_window (terminal, GTK_WINDOW (window), 
w, h);
+}
+#endif
+}
+  else
+{
+  /* resize new window to the original terminal geometry */
+  terminal_screen_get_size (terminal, , );
+  terminal_screen_force_resize_window (terminal, GTK_WINDOW (window), 
width, height);
+}
 
   gtk_widget_show (window);
 }

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

2018-06-29 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 dfa942aba6f448078030be97f9b48eeb5b4fb22c
Author: Alexandre Fidalgo 
Date:   Fri Jun 29 18:32:31 2018 +0200

I18n: Update translation pt (100%).

35 translated messages.

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

diff --git a/po/pt.po b/po/pt.po
index d700755..1f3cef3 100644
--- a/po/pt.po
+++ b/po/pt.po
@@ -3,6 +3,7 @@
 # This file is distributed under the same license as the PACKAGE package.
 # 
 # Translators:
+# Alexandre Fidalgo , 2018
 # José Vieira , 2017-2018
 # Nuno Miguel , 2015-2017
 msgid ""
@@ -10,8 +11,8 @@ 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: 2018-03-19 11:34+\n"
-"Last-Translator: José Vieira \n"
+"PO-Revision-Date: 2018-06-29 16:31+\n"
+"Last-Translator: Alexandre Fidalgo \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"
@@ -71,7 +72,7 @@ msgstr "Executar misturador áudio"
 
 #: ../panel-plugin/pulseaudio-dialog.glade.h:10
 msgid "Sound Settings"
-msgstr "Definições do Som"
+msgstr "Definições de Som"
 
 #: ../panel-plugin/pulseaudio-dialog.glade.h:11
 msgid "General"

-- 
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 (b65310b -> dfa942a)

2018-06-29 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  b65310b   I18n: Add new translation be (100%).
   new  dfa942a   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 | 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


[Xfce4-commits] [xfce/thunar] branch master updated (da68ef5 -> 0c1d9d6)

2018-06-29 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  da68ef5   I18n: Update translation de (100%).
   new  0c1d9d6   I18n: Update translation he (100%).

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


Summary of changes:
 po/he.po | 696 +++
 1 file changed, 342 insertions(+), 354 deletions(-)

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


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

2018-06-29 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 0c1d9d6f53db7459c142dc62d1e96cb24f7b4f28
Author: Elishai Eliyahu 
Date:   Fri Jun 29 18:30:34 2018 +0200

I18n: Update translation he (100%).

746 translated messages.

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

diff --git a/po/he.po b/po/he.po
index f673fa7..b7d2234 100644
--- a/po/he.po
+++ b/po/he.po
@@ -13,8 +13,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Thunar\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-05-06 00:30+0200\n"
-"PO-Revision-Date: 2018-05-21 10:01+\n"
+"POT-Creation-Date: 2018-06-25 00:30+0200\n"
+"PO-Revision-Date: 2018-06-29 10:31+\n"
 "Last-Translator: Elishai Eliyahu \n"
 "Language-Team: Hebrew (http://www.transifex.com/xfce/thunar/language/he/)\n"
 "MIME-Version: 1.0\n"
@@ -23,7 +23,7 @@ msgstr ""
 "Language: he\n"
 "Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 
1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;\n"
 
-#: ../thunar/main.c:90
+#: ../thunar/main.c:89
 msgid ""
 "Thunar could not be launched because an older instance of thunar is still 
running.\n"
 "Would you like to terminate the old thunar instance now?\n"
@@ -34,7 +34,7 @@ msgid ""
 msgstr "לא ניתן להפעיל את Thunar כי מופע ישן יותר של thunar עדיין פועל.\nהאם 
תרצה לסיים את מופע thunar הישן עכשיו?\n\nלפני אישור אנא וודא שאין פעולות בהמתנה 
(למשל העתקת קבצים) מכיוון שסיום שלהן עלול לפגוע בקבצים שלך.\n\nאנא אתחל את 
thunar לאחר מכן."
 
 #. setup application name
-#: ../thunar/main.c:126
+#: ../thunar/main.c:125
 msgid "Thunar"
 msgstr "Thunar"
 
@@ -141,10 +141,10 @@ msgstr "נכשל להפעיל תהליך"
 
 #. tell the user that we were unable to launch the file specified
 #: ../thunar/thunar-application.c:1442 ../thunar/thunar-application.c:1574
-#: ../thunar/thunar-launcher.c:1222 ../thunar/thunar-location-entry.c:356
+#: ../thunar/thunar-launcher.c:1216 ../thunar/thunar-location-entry.c:356
 #: ../thunar/thunar-location-entry.c:384
-#: ../thunar/thunar-shortcuts-view.c:1650
-#: ../thunar/thunar-shortcuts-view.c:1678 ../thunar/thunar-window.c:2274
+#: ../thunar/thunar-shortcuts-view.c:1680
+#: ../thunar/thunar-shortcuts-view.c:1708 ../thunar/thunar-window.c:2317
 #, c-format
 msgid "Failed to open \"%s\""
 msgstr "נכשל לפתוח את \"%s\""
@@ -157,20 +157,20 @@ msgstr "נכשל לפתוח את \"%s\": %s"
 #. display an error message
 #: ../thunar/thunar-application.c:1633
 #: ../thunar/thunar-properties-dialog.c:731
-#: ../thunar/thunar-standard-view.c:2773 ../thunar/thunar-tree-view.c:1927
+#: ../thunar/thunar-standard-view.c:2853 ../thunar/thunar-tree-view.c:1959
 #, c-format
 msgid "Failed to rename \"%s\""
 msgstr "נכשל לשנות שם של \"%s\""
 
 #: ../thunar/thunar-application.c:1735
-#: ../thunar/thunar-location-buttons.c:1339
-#: ../thunar/thunar-standard-view.c:2324 ../thunar/thunar-tree-view.c:1789
+#: ../thunar/thunar-location-buttons.c:1347
+#: ../thunar/thunar-standard-view.c:2378 ../thunar/thunar-tree-view.c:1821
 msgid "New Folder"
 msgstr "תיקייה חדשה"
 
 #: ../thunar/thunar-application.c:1736
-#: ../thunar/thunar-location-buttons.c:1340
-#: ../thunar/thunar-standard-view.c:2325 ../thunar/thunar-tree-view.c:1790
+#: ../thunar/thunar-location-buttons.c:1348
+#: ../thunar/thunar-standard-view.c:2379 ../thunar/thunar-tree-view.c:1822
 msgid "Create New Folder"
 msgstr "יצירת תיקייה חדשה"
 
@@ -183,7 +183,7 @@ msgid "Create New File"
 msgstr "צור קובץ חדש"
 
 #. generate a title for the create dialog
-#: ../thunar/thunar-application.c:1798 ../thunar/thunar-standard-view.c:2369
+#: ../thunar/thunar-application.c:1798 ../thunar/thunar-standard-view.c:2425
 #, c-format
 msgid "Create Document from template \"%s\""
 msgstr "יצירת מסמך מתוך תבנית \"%s\""
@@ -235,16 +235,16 @@ msgstr[3] "האם אתה בטוח כי ברצונך למחוק\nבאופן קב
 #: ../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:98 ../thunar/thunar-dialogs.c:481
-#: ../thunar/thunar-dialogs.c:552 ../thunar/thunar-dialogs.c:807
-#: ../thunar/thunar-dnd.c:165 ../thunar/thunar-launcher.c:728
+#: ../thunar/thunar-dialogs.c:552 ../thunar/thunar-dialogs.c:800
+#: ../thunar/thunar-dnd.c:169 ../thunar/thunar-launcher.c:725
 #: ../thunar/thunar-permissions-chooser.c:523
 #: ../thunar/thunar-permissions-chooser.c:1136
 #: ../thunar/thunar-properties-dialog.c:819
 #: ../thunar/thunar-renamer-dialog.c:354
-#: ../thunar/thunar-renamer-dialog.c:1042
-#: ../thunar/thunar-renamer-progress.c:197
-#: ../thunar/thunar-renamer-progress.c:207
-#: 

[Xfce4-commits] [www/www.xfce.org] 01/01: I18n: Update translation hu (59%).

2018-06-29 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 8a6f5d2e1aa4f543818020e8a22fb3e7e87ae109
Author: Anonymous 
Date:   Fri Jun 29 12:32:50 2018 +0200

I18n: Update translation hu (59%).

405 translated messages, 275 untranslated messages.

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

diff --git a/lib/po/hu.po b/lib/po/hu.po
index f08f36c..879b011 100644
--- a/lib/po/hu.po
+++ b/lib/po/hu.po
@@ -6,6 +6,7 @@
 # Balázs Meskó , 2017-2018
 # Benedek Imre , 2015
 # Gabor Kelemen , 2012-2013
+# Gábor P., 2018
 # gyeben , 2013
 # gyeben , 2013
 # Imre Benedek , 2012
@@ -16,8 +17,8 @@ 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: 2018-04-29 09:10+\n"
-"Last-Translator: Balázs Meskó \n"
+"PO-Revision-Date: 2018-06-29 09:52+\n"
+"Last-Translator: Gábor P.\n"
 "Language-Team: Hungarian 
(http://www.transifex.com/xfce/xfce-www/language/hu/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -1579,7 +1580,7 @@ msgstr ""
 
 #: about/tour44.php:9 about/tour44.php:15
 msgid "Desktop Icons"
-msgstr ""
+msgstr "Asztali ikonok"
 
 #: about/tour44.php:12
 msgid ""
@@ -1599,7 +1600,7 @@ msgstr ""
 
 #: about/tour44.php:21
 msgid "Desktop Settings"
-msgstr ""
+msgstr "Asztal beállításai"
 
 #: about/tour44.php:24
 msgid ""
@@ -2235,7 +2236,7 @@ msgstr ""
 
 #: about/tour46.php:164
 msgid "Mouse settings"
-msgstr ""
+msgstr "Egér beállításai"
 
 #: about/tour46.php:166
 msgid "Mouse settings dialog"
@@ -2250,7 +2251,7 @@ msgstr ""
 
 #: about/tour46.php:172
 msgid "Desktop settings"
-msgstr ""
+msgstr "Asztal beállításai"
 
 #: about/tour46.php:174
 msgid "Desktop settings 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] [www/www.xfce.org] branch master updated (aa8585c -> 8a6f5d2)

2018-06-29 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  aa8585c   I18n: Update translation sr (99%).
   new  8a6f5d2   I18n: Update translation hu (59%).

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/hu.po | 13 +++--
 1 file changed, 7 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] [apps/xfce4-terminal] 01/01: I18n: Update translation he (100%).

2018-06-29 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-terminal.

commit ec31f2105ded6a59c2f96f2d8d7d40fe0adc1c77
Author: Elishai Eliyahu 
Date:   Fri Jun 29 12:32:01 2018 +0200

I18n: Update translation he (100%).

394 translated messages.

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

diff --git a/po/he.po b/po/he.po
index 31c1688..b2e7e71 100644
--- a/po/he.po
+++ b/po/he.po
@@ -13,8 +13,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Apps\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-05-28 06:31+0200\n"
-"PO-Revision-Date: 2018-06-09 14:09+\n"
+"POT-Creation-Date: 2018-06-19 00:31+0200\n"
+"PO-Revision-Date: 2018-06-29 06:32+\n"
 "Last-Translator: Elishai Eliyahu \n"
 "Language-Team: Hebrew 
(http://www.transifex.com/xfce/xfce-apps/language/he/)\n"
 "MIME-Version: 1.0\n"
@@ -457,7 +457,7 @@ msgstr "תהליך הבן הופסק ע\"י סיגנל %d."
 msgid "The child process was aborted."
 msgstr "תהליך הבן הופסק."
 
-#: ../terminal/terminal-screen.c:1383 ../terminal/terminal-window.c:860
+#: ../terminal/terminal-screen.c:1383 ../terminal/terminal-window.c:861
 msgid "Do _not ask me again"
 msgstr "_אל תשאל אותי שוב"
 
@@ -580,361 +580,361 @@ msgstr "מסוף נפתח כלפי מטה"
 msgid "Toggle Drop-down Terminal"
 msgstr "החלף מסוף נפתח כלפי מטה"
 
-#: ../terminal/terminal-window.c:317
+#: ../terminal/terminal-window.c:318
 msgid "_File"
 msgstr "_קובץ"
 
-#: ../terminal/terminal-window.c:318
+#: ../terminal/terminal-window.c:319
 msgid "Open _Tab"
 msgstr "_פתח כרטיסייה"
 
-#: ../terminal/terminal-window.c:318
+#: ../terminal/terminal-window.c:319
 msgid "Open a new terminal tab"
 msgstr "פתח כרטיסיית מסוף חדשה"
 
-#: ../terminal/terminal-window.c:319
+#: ../terminal/terminal-window.c:320
 msgid "Open T_erminal"
 msgstr "פתח מ_סוף"
 
-#: ../terminal/terminal-window.c:319
+#: ../terminal/terminal-window.c:320
 msgid "Open a new terminal window"
 msgstr "פתח חלון מסוף חדש"
 
-#: ../terminal/terminal-window.c:320
+#: ../terminal/terminal-window.c:321
 msgid "_Undo Close Tab"
 msgstr "_בטל סגירת לשונית"
 
-#: ../terminal/terminal-window.c:321
+#: ../terminal/terminal-window.c:322
 msgid "_Detach Tab"
 msgstr "_נתק כרטיסיה"
 
-#: ../terminal/terminal-window.c:322 ../terminal/terminal-window.c:824
+#: ../terminal/terminal-window.c:323 ../terminal/terminal-window.c:825
 msgid "Close T_ab"
 msgstr "סגור _כרטיסייה"
 
-#: ../terminal/terminal-window.c:323
+#: ../terminal/terminal-window.c:324
 msgid "Close Other Ta_bs"
 msgstr "סגור לשו_ניות אחרות"
 
-#: ../terminal/terminal-window.c:324 ../terminal/terminal-window.c:831
+#: ../terminal/terminal-window.c:325 ../terminal/terminal-window.c:832
 msgid "Close _Window"
 msgstr "סגור _חלון"
 
-#: ../terminal/terminal-window.c:325
+#: ../terminal/terminal-window.c:326
 msgid "_Edit"
 msgstr "ע_ריכה"
 
-#: ../terminal/terminal-window.c:326
+#: ../terminal/terminal-window.c:327
 msgid "_Copy"
 msgstr "ה_עתק"
 
-#: ../terminal/terminal-window.c:326
+#: ../terminal/terminal-window.c:327
 msgid "Copy to clipboard"
 msgstr "העתק ללוח גזירה"
 
-#: ../terminal/terminal-window.c:328
+#: ../terminal/terminal-window.c:329
 msgid "Copy as _HTML"
 msgstr "העתק כ _HTML"
 
-#: ../terminal/terminal-window.c:328
+#: ../terminal/terminal-window.c:329
 msgid "Copy to clipboard as HTML"
 msgstr "העתק אל לוח גזירה כ HTML"
 
-#: ../terminal/terminal-window.c:330
+#: ../terminal/terminal-window.c:331
 msgid "_Paste"
 msgstr "ה_דבק"
 
-#: ../terminal/terminal-window.c:330
+#: ../terminal/terminal-window.c:331
 msgid "Paste from clipboard"
 msgstr "הדבק מלוח גזירה"
 
-#: ../terminal/terminal-window.c:331
+#: ../terminal/terminal-window.c:332
 msgid "Paste _Selection"
 msgstr "הדבק _בחירה"
 
-#: ../terminal/terminal-window.c:332
+#: ../terminal/terminal-window.c:333
 msgid "Select _All"
 msgstr "בחר _הכל"
 
-#: ../terminal/terminal-window.c:333
+#: ../terminal/terminal-window.c:334
 msgid "Copy _Input To All Tabs..."
 msgstr "העתק _קלט לכל הלשוניות..."
 
-#: ../terminal/terminal-window.c:334
+#: ../terminal/terminal-window.c:335
 msgid "Pr_eferences..."
 msgstr "_העדפות..."
 
-#: ../terminal/terminal-window.c:334
+#: ../terminal/terminal-window.c:335
 msgid "Open the preferences dialog"
 msgstr "פתח את דו שיח העדפות"
 
-#: ../terminal/terminal-window.c:335
+#: ../terminal/terminal-window.c:336
 msgid "_View"
 msgstr "_תצוגה"
 
-#: ../terminal/terminal-window.c:336
+#: ../terminal/terminal-window.c:337
 msgid "Zoom _In"
 msgstr "זום _פנימה"
 
-#: ../terminal/terminal-window.c:336
+#: ../terminal/terminal-window.c:337
 msgid "Zoom in with larger font"
 msgstr "זום פנימה עם גופן גדול יותר"
 
-#: ../terminal/terminal-window.c:337
+#: 

[Xfce4-commits] [apps/xfce4-terminal] branch master updated (7b495d3 -> ec31f21)

2018-06-29 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-terminal.

  from  7b495d3   Reset activity indicator for the active tab when focusing 
window
   new  ec31f21   I18n: Update translation he (100%).

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


Summary of changes:
 po/he.po | 184 ---
 1 file changed, 94 insertions(+), 90 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] [thunar-plugins/thunar-vcs-plugin] branch master updated (80ce306 -> 03cc1b1)

2018-06-29 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  80ce306   I18n: Update translation lt (100%).
   new  03cc1b1   I18n: Update translation he (100%).

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


Summary of changes:
 po/he.po | 1102 --
 1 file changed, 504 insertions(+), 598 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] branch master updated (eb930a1 -> da68ef5)

2018-06-29 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  eb930a1   I18n: Update translation tr (100%).
   new  da68ef5   I18n: Update translation de (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/de.po | 6 +++---
 1 file changed, 3 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] [thunar-plugins/thunar-vcs-plugin] 01/01: I18n: Update translation he (100%).

2018-06-29 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 03cc1b1d0066ce9d3f3cb1caa59ec927bb7e247d
Author: Elishai Eliyahu 
Date:   Fri Jun 29 12:30:36 2018 +0200

I18n: Update translation he (100%).

307 translated messages.

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

diff --git a/po/he.po b/po/he.po
index 1d0c7e2..9e92a11 100644
--- a/po/he.po
+++ b/po/he.po
@@ -8,8 +8,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Thunar Plugins\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-06-01 06:30+0200\n"
-"PO-Revision-Date: 2018-06-09 14:04+\n"
+"POT-Creation-Date: 2018-06-27 06:30+0200\n"
+"PO-Revision-Date: 2018-06-29 06:30+\n"
 "Last-Translator: Elishai Eliyahu \n"
 "Language-Team: Hebrew 
(http://www.transifex.com/xfce/thunar-plugins/language/he/)\n"
 "MIME-Version: 1.0\n"
@@ -18,239 +18,132 @@ msgstr ""
 "Language: he\n"
 "Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 
1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;\n"
 
-#: ../thunar-vcs-plugin/tvp-git-action.c:242
-#: ../thunar-vcs-plugin/tvp-svn-action.c:280
-msgid "Menu|Add"
-msgstr "תפריט|הוסף"
-
-#: ../thunar-vcs-plugin/tvp-git-action.c:242
-#: ../thunar-vcs-plugin/tvp-svn-action.c:280 ../tvp-git-helper/main.c:153
+#: ../thunar-vcs-plugin/tvp-git-action.c:222
+#: ../thunar-vcs-plugin/tvp-svn-action.c:260 ../tvp-git-helper/main.c:153
 #: ../tvp-git-helper/tgh-add.c:108 ../tvp-git-helper/tgh-add.c:121
-#: ../tvp-svn-helper/main.c:259 ../tvp-svn-helper/tsh-add.c:135
-#: ../tvp-svn-helper/tsh-add.c:148
+#: ../tvp-svn-helper/main.c:257 ../tvp-svn-helper/tsh-add.c:141
+#: ../tvp-svn-helper/tsh-add.c:154
 msgid "Add"
 msgstr "הוסף"
 
-#: ../thunar-vcs-plugin/tvp-git-action.c:243
-msgid "Menu|Bisect"
-msgstr "תפריט|חצה"
-
-#: ../thunar-vcs-plugin/tvp-git-action.c:243
-msgid "Bisect"
-msgstr "חצה"
-
-#: ../thunar-vcs-plugin/tvp-git-action.c:245
-#: ../thunar-vcs-plugin/tvp-svn-action.c:285
-msgid "Menu|Blame"
-msgstr "תפריט|האשם"
+#: ../thunar-vcs-plugin/tvp-git-action.c:222
+msgid "Add file contents to the index"
+msgstr "הוסף תכולת קובץ לאינדקס"
 
-#: ../thunar-vcs-plugin/tvp-git-action.c:245
-#: ../thunar-vcs-plugin/tvp-svn-action.c:285 ../tvp-git-helper/main.c:157
-#: ../tvp-git-helper/tgh-blame-dialog.c:129 ../tvp-svn-helper/main.c:263
-#: ../tvp-svn-helper/main.c:267 ../tvp-svn-helper/tsh-blame-dialog.c:132
+#: ../thunar-vcs-plugin/tvp-git-action.c:225
+#: ../thunar-vcs-plugin/tvp-svn-action.c:265 ../tvp-git-helper/main.c:157
+#: ../tvp-git-helper/tgh-blame-dialog.c:129 ../tvp-svn-helper/main.c:261
+#: ../tvp-svn-helper/main.c:265 ../tvp-svn-helper/tsh-blame-dialog.c:132
 msgid "Blame"
 msgstr "האשם"
 
-#: ../thunar-vcs-plugin/tvp-git-action.c:247
-msgid "Menu|Branch"
-msgstr "תפריט|הסתעף"
+#: ../thunar-vcs-plugin/tvp-git-action.c:225
+#: ../thunar-vcs-plugin/tvp-svn-action.c:265
+msgid "Show what revision and author last modified each line of a file"
+msgstr "הצג איזו גרסה ומי שינה לאחרונה כל שורה של קובץ"
 
-#: ../thunar-vcs-plugin/tvp-git-action.c:247 ../tvp-git-helper/main.c:161
+#: ../thunar-vcs-plugin/tvp-git-action.c:227 ../tvp-git-helper/main.c:161
 #: ../tvp-git-helper/tgh-branch-dialog.c:140
 #: ../tvp-git-helper/tgh-stash-dialog.c:166
 msgid "Branch"
 msgstr "הסתעף"
 
-#: ../thunar-vcs-plugin/tvp-git-action.c:248
-#: ../thunar-vcs-plugin/tvp-svn-action.c:302
-msgid "Menu|Checkout"
-msgstr "תפריט|בדוק"
-
-#: ../thunar-vcs-plugin/tvp-git-action.c:248
-#: ../thunar-vcs-plugin/tvp-svn-action.c:302 ../tvp-svn-helper/main.c:271
-#: ../tvp-svn-helper/tsh-checkout.c:100 ../tvp-svn-helper/tsh-checkout.c:112
-msgid "Checkout"
-msgstr "בדוק"
-
-#: ../thunar-vcs-plugin/tvp-git-action.c:249
-msgid "Menu|Clean"
-msgstr "תפריט|נקה"
+#: ../thunar-vcs-plugin/tvp-git-action.c:227
+msgid "List, create or switch branches"
+msgstr "רשום, צור או החלף ענפים"
 
-#: ../thunar-vcs-plugin/tvp-git-action.c:249 ../tvp-git-helper/main.c:165
-#: ../tvp-git-helper/tgh-clean.c:152 ../tvp-git-helper/tgh-clean-dialog.c:96
+#. unimplemented: add_subaction(item, menu, "tvp::git::checkout",
+#. _("Checkout"), _("Checkout"), "gtk-connect", _("Checkout"));
+#: ../thunar-vcs-plugin/tvp-git-action.c:229 ../tvp-git-helper/main.c:165
+#: ../tvp-git-helper/tgh-clean.c:152 ../tvp-git-helper/tgh-clean-dialog.c:95
 msgid "Clean"
 msgstr "נקה"
 
-#: ../thunar-vcs-plugin/tvp-git-action.c:251
-msgid "Menu|Clone"
-msgstr "תפריט|שכפל"
+#: ../thunar-vcs-plugin/tvp-git-action.c:229
+msgid "Remove untracked files from the working tree"
+msgstr "הסר קבצים לא עקיבים מהעץ עבודה"
 
-#: ../thunar-vcs-plugin/tvp-git-action.c:251 

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

2018-06-29 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 da68ef52b220d9f3e10f0fc82ed19486e460df6b
Author: Oliver Burkardt 
Date:   Fri Jun 29 12:30:23 2018 +0200

I18n: Update translation de (100%).

746 translated messages.

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

diff --git a/po/de.po b/po/de.po
index 97fbe8d..ca569cb 100644
--- a/po/de.po
+++ b/po/de.po
@@ -17,7 +17,7 @@ msgstr ""
 "Project-Id-Version: Thunar\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2018-06-25 00:30+0200\n"
-"PO-Revision-Date: 2018-06-25 13:55+\n"
+"PO-Revision-Date: 2018-06-29 08:13+\n"
 "Last-Translator: Oliver Burkardt \n"
 "Language-Team: German (http://www.transifex.com/xfce/thunar/language/de/)\n"
 "MIME-Version: 1.0\n"
@@ -1631,11 +1631,11 @@ msgstr "Immer"
 
 #: ../thunar/thunar-preferences-dialog.c:299
 msgid "Draw frames around thumbnails"
-msgstr ""
+msgstr "Rahmen um Vorschaubilder zeichnen"
 
 #: ../thunar/thunar-preferences-dialog.c:301
 msgid "Select this option to draw black frames around thumbnails."
-msgstr ""
+msgstr "Wähle diese Option, für schwarze Rahmen bei Vorschaubildern."
 
 #: ../thunar/thunar-preferences-dialog.c:306
 msgid "Sort _folders before files"

-- 
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