[Xfce4-commits] [apps/xfce4-screenshooter] branch master updated (c3f4fd9 -> ed5f894)

2014-12-20 Thread noreply
This is an automated email from the git hooks/post-receive script.

landry pushed a change to branch master
in repository apps/xfce4-screenshooter.

  from  c3f4fd9   I18n: Update translation es (100%).
   new  ed5f894   Use filename-friendly date format for saved files (bug 
8445)

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/screenshooter-dialogs.c |   11 ---
 lib/screenshooter-utils.c   |   74 ++-
 lib/screenshooter-utils.h   |3 +-
 lib/screenshooter-zimagez.c |4 +--
 4 files changed, 25 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/xfce4-screenshooter] 01/01: Use filename-friendly date format for saved files (bug 8445)

2014-12-20 Thread noreply
This is an automated email from the git hooks/post-receive script.

landry pushed a commit to branch master
in repository apps/xfce4-screenshooter.

commit ed5f8942ec4e4dd216a155b498bc34fed8a4e62d
Author: Jeff Shipley 
Date:   Sat Dec 20 11:05:47 2014 +0100

Use filename-friendly date format for saved files (bug 8445)
---
 lib/screenshooter-dialogs.c |   11 ---
 lib/screenshooter-utils.c   |   74 ++-
 lib/screenshooter-utils.h   |3 +-
 lib/screenshooter-zimagez.c |4 +--
 4 files changed, 25 insertions(+), 67 deletions(-)

diff --git a/lib/screenshooter-dialogs.c b/lib/screenshooter-dialogs.c
index 08f88e8..f3c2535 100644
--- a/lib/screenshooter-dialogs.c
+++ b/lib/screenshooter-dialogs.c
@@ -230,8 +230,9 @@ static gchar *generate_filename_for_uri (const gchar *uri,
   GFile *directory;
   GFile *file;
   gchar *base_name;
-  const gchar *date = screenshooter_get_date (TRUE);
-  const gchar *current_time = screenshooter_get_time ();
+  gchar *datetime;
+  const gchar *strftime_format = "%Y-%m-%d_%H-%M-%S";
+
   gint i;
 
   if (G_UNLIKELY (uri == NULL))
@@ -242,11 +243,12 @@ static gchar *generate_filename_for_uri (const gchar *uri,
 }
 
   TRACE ("Get the folder corresponding to the URI");
+  datetime = screenshooter_get_datetime (strftime_format);
   directory = g_file_new_for_uri (uri);
   if (!timestamp)
 base_name = g_strconcat (title, ".png", NULL);
   else
-base_name = g_strconcat (title, " - ", date, " - ", current_time, ".png", 
NULL);
+base_name = g_strconcat (title, "_", datetime, ".png", NULL);
 
   file = g_file_get_child (directory, base_name);
 
@@ -269,7 +271,7 @@ static gchar *generate_filename_for_uri (const gchar *uri,
   if (!timestamp)
  base_name = g_strconcat (title, extension, NULL);
else
- base_name = g_strconcat (title, " - ", date, " - ", current_time, 
extension, NULL);
+ base_name = g_strconcat (title, "_", datetime, extension, NULL);
 
   file = g_file_get_child (directory, base_name);
 
@@ -282,6 +284,7 @@ static gchar *generate_filename_for_uri (const gchar *uri,
   g_object_unref (file);
 }
 
+  g_free(datetime);
   g_object_unref (directory);
 
   return base_name;
diff --git a/lib/screenshooter-utils.c b/lib/screenshooter-utils.c
index 96f6bb8..e412182 100644
--- a/lib/screenshooter-utils.c
+++ b/lib/screenshooter-utils.c
@@ -280,65 +280,23 @@ void screenshooter_error (const gchar *format, ...)
   g_free (message);
 }
 
-gchar *screenshooter_get_time (void)
-{
-  time_t now = time (0);
-  const struct tm *tm;
-  gchar *result, *converted;
-  gsize length;
-  gchar buffer[512];
-
-  tm = localtime (&now);
-
-  converted = g_locale_from_utf8 ("%X", -1, NULL, NULL, NULL);
-  if (G_UNLIKELY (converted == NULL))
-converted = g_strdup ("");
-
-  length = strftime (buffer, sizeof (buffer), converted, tm);
-
-  if (G_UNLIKELY (length == 0))
-{
-  TRACE ("Buffer is NULL");
-  buffer[0] = '\0';
-}
-
-  result = g_locale_to_utf8 (buffer, -1, NULL, NULL, NULL);
-
-  g_free (converted);
-
-  return result;
-}
-
-gchar *screenshooter_get_date (gboolean strip_slashes)
+/**
+ * screenshooter_get_datetime
+ * @format - a date format string
+ *
+ * Builds a timestamp using local time.
+ * Returned string should be released with g_free()
+ **/
+gchar *screenshooter_get_datetime (const gchar *format)
 {
-  GDate *date = g_date_new ();
-  gchar *result;
-  gchar **split = NULL;
-  gchar buffer[512];
-  gsize length;
-
-  g_date_set_time_t (date, time (NULL));
-
-  length = g_date_strftime (buffer, sizeof (buffer), "%x", date);
-
-  if (G_UNLIKELY (length == 0))
-{
-  TRACE ("Buffer is NULL");
-  buffer[0] = '\0';
-}
-
-  if (strip_slashes)
-{
-  split = g_strsplit (buffer, "/", 0);
-  result = g_strjoinv (NULL, split);
-}
-  else
-result = g_strdup (buffer);
-
-  g_strfreev (split);
-  g_free (date);
-
-  return result;
+  gchar *timestamp;
+  GDateTime *now = g_date_time_new_now_local();
+  timestamp = g_date_time_format (now, format);
+
+  g_date_time_unref (now);
+  /* TODO: strip potential : and / if the format is configurable */
+  DBG("datetime is %s", timestamp);
+  return timestamp;
 }
 
 
diff --git a/lib/screenshooter-utils.h b/lib/screenshooter-utils.h
index 1646a8e..4453706 100644
--- a/lib/screenshooter-utils.h
+++ b/lib/screenshooter-utils.h
@@ -49,8 +49,7 @@ gboolean  screenshooter_is_remote_uri (const gchar
*uri);
 gchar*rot13   (gchar  *string);
 void  screenshooter_error (const gchar*format,
...);
-gchar*screenshooter_get_date  (gbooleanstrip_slashes);
-gchar*screenshooter_get_time  (void);
+gchar*screenshooter_get_datetime  (const gchar*format);
 void  screenshooter_open_help (GtkWindow  *parent);
 gboolea

[Xfce4-commits] [apps/xfce4-taskmanager] branch master updated (445b8a4 -> a6fc195)

2014-12-20 Thread noreply
This is an automated email from the git hooks/post-receive script.

landry pushed a change to branch master
in repository apps/xfce4-taskmanager.

  from  445b8a4   add tooltip to filter_entry
   new  a6fc195   remove unused variable

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


Summary of changes:
 src/task-manager-bsd.c |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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


[Xfce4-commits] [apps/xfce4-taskmanager] 01/01: remove unused variable

2014-12-20 Thread noreply
This is an automated email from the git hooks/post-receive script.

landry pushed a commit to branch master
in repository apps/xfce4-taskmanager.

commit a6fc1953925325fa1e13811ec4d5b9be0667b818
Author: Landry Breuil 
Date:   Sat Dec 20 11:25:02 2014 +0100

remove unused variable
---
 src/task-manager-bsd.c |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/task-manager-bsd.c b/src/task-manager-bsd.c
index 0539f85..79700a2 100644
--- a/src/task-manager-bsd.c
+++ b/src/task-manager-bsd.c
@@ -55,7 +55,7 @@ gboolean get_task_list (GArray *task_list)
 #endif
Task t;
struct passwd *passwdp;
-   char **args, **ptr;
+   char **args;
gchar* buf;
int nproc, i;
 

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


[Xfce4-commits] [apps/xfce4-taskmanager] branch master updated (a6fc195 -> 76e3ea7)

2014-12-20 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-taskmanager.

  from  a6fc195   remove unused variable
   new  76e3ea7   I18n: Update translation nl (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/nl.po |  156 +-
 1 file changed, 82 insertions(+), 74 deletions(-)

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


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

2014-12-20 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-taskmanager.

commit 76e3ea7e02d7e7c133c581e76eb477850bc9e38d
Author: Pjotr 
Date:   Sat Dec 20 12:31:08 2014 +0100

I18n: Update translation nl (100%).

75 translated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).
---
 po/nl.po |  156 +-
 1 file changed, 82 insertions(+), 74 deletions(-)

diff --git a/po/nl.po b/po/nl.po
index 4d724cb..1b6c201 100644
--- a/po/nl.po
+++ b/po/nl.po
@@ -10,8 +10,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Apps\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-12-05 00:31+0100\n"
-"PO-Revision-Date: 2014-12-05 12:25+\n"
+"POT-Creation-Date: 2014-12-20 00:31+0100\n"
+"PO-Revision-Date: 2014-12-20 10:54+\n"
 "Last-Translator: Pjotr \n"
 "Language-Team: Dutch 
(http://www.transifex.com/projects/p/xfce-apps/language/nl/)\n"
 "MIME-Version: 1.0\n"
@@ -20,44 +20,44 @@ msgstr ""
 "Language: nl\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-#: ../xfce4-taskmanager.desktop.in.h:1 ../src/exec-tool-button.c:89
-#: ../src/exec-tool-button.c:134 ../src/main.c:186
-#: ../src/process-tree-view.c:367 ../src/process-tree-view.c:382
-#: ../src/process-tree-view.c:410 ../src/process-window.c:353
-#: ../src/process-window.ui.h:1
+#: ../xfce4-taskmanager.desktop.in.h:1 ../src/exec-tool-button.c:106
+#: ../src/exec-tool-button.c:151 ../src/main.c:186
+#: ../src/process-tree-view.c:372 ../src/process-tree-view.c:387
+#: ../src/process-tree-view.c:415 ../src/process-window.c:389
+#: ../src/process-window.ui.h:1 ../src/process-window-gtk3.ui.h:1
 msgid "Task Manager"
 msgstr "Taakbeheerder"
 
-#: ../xfce4-taskmanager.desktop.in.h:2 ../src/process-window.c:358
+#: ../xfce4-taskmanager.desktop.in.h:2 ../src/process-window.c:396
 msgid "Easy to use task manager"
 msgstr "Gemakkelijk te gebruiken taakbeheerder"
 
-#: ../src/exec-tool-button.c:87 ../src/exec-tool-button.c:131
+#: ../src/exec-tool-button.c:104 ../src/exec-tool-button.c:148
 msgid "Execution error"
 msgstr "Uitvoeringsfout"
 
-#: ../src/exec-tool-button.c:133
+#: ../src/exec-tool-button.c:150
 msgid "Couldn't find any default command to run."
 msgstr "Kon geen standaardopdracht vinden om te draaien."
 
-#: ../src/exec-tool-button.c:164
+#: ../src/exec-tool-button.c:181
 msgid "Run Task Manager as root"
 msgstr "Draai Taakbeheerder als systeembeheerder (root)"
 
-#: ../src/exec-tool-button.c:175 ../src/exec-tool-button.c:177
-#: ../src/exec-tool-button.c:179
+#: ../src/exec-tool-button.c:192 ../src/exec-tool-button.c:194
+#: ../src/exec-tool-button.c:196
 msgid "Run Program..."
 msgstr "Draai programma..."
 
-#: ../src/exec-tool-button.c:182
+#: ../src/exec-tool-button.c:199
 msgid "Application Finder"
 msgstr "Toepassingenzoeker"
 
-#: ../src/exec-tool-button.c:185
+#: ../src/exec-tool-button.c:202
 msgid "Terminal emulator"
 msgstr "Terminalvenster"
 
-#: ../src/exec-tool-button.c:187
+#: ../src/exec-tool-button.c:204
 msgid "XTerm"
 msgstr "XTerm"
 
@@ -79,224 +79,232 @@ msgid ""
 "Swap: %s"
 msgstr "Processen: %u\nCPU: %.0f%%\nGeheugen: %s\nWisselgeheugen: %s"
 
-#: ../src/process-statusbar.c:148 ../src/process-window.c:423
+#: ../src/process-statusbar.c:147 ../src/process-window.c:461
 #, c-format
 msgid "CPU: %s%%"
 msgstr "CPU: %s%%"
 
-#: ../src/process-statusbar.c:156 ../src/process-window.c:427
+#: ../src/process-statusbar.c:162 ../src/process-window.c:465
 #, c-format
 msgid "Memory: %s"
 msgstr "Geheugen: %s"
 
-#: ../src/process-statusbar.c:163
+#: ../src/process-statusbar.c:176
 #, c-format
 msgid "Swap: %s"
 msgstr "Wisselgeheugen: %s"
 
-#: ../src/process-statusbar.c:177
+#: ../src/process-statusbar.c:190
 #, c-format
 msgid "Processes: %d"
 msgstr "Processen: %d"
 
-#: ../src/process-tree-view.c:131
+#: ../src/process-tree-view.c:136
 msgid "Task"
 msgstr "Taak"
 
-#: ../src/process-tree-view.c:142 ../src/settings-tool-button.c:175
+#: ../src/process-tree-view.c:147 ../src/settings-tool-button.c:175
 msgid "PID"
 msgstr "PID"
 
-#: ../src/process-tree-view.c:150 ../src/settings-tool-button.c:176
+#: ../src/process-tree-view.c:155 ../src/settings-tool-button.c:176
 msgid "PPID"
 msgstr "PPID"
 
-#: ../src/process-tree-view.c:158 ../src/settings-tool-button.c:177
+#: ../src/process-tree-view.c:163 ../src/settings-tool-button.c:177
 msgid "State"
 msgstr "Status"
 
-#: ../src/process-tree-view.c:167
+#: ../src/process-tree-view.c:172
 msgid "VSZ"
 msgstr "VSZ"
 
-#: ../src/process-tree-view.c:175
+#: ../src/process-tree-view.c:180
 msgid "RSS"
 msgstr "RSS"
 
-#: ../src/process-tree-view.c:183 ../src/settings-tool-button.c:180
+#: ../src/process-tree-view.c:188 ../src/settings-tool-button.c:180
 msgid "UID"
 msgstr "UID"
 
-#: ../src/process-tree-view.c:191 ../src/settings-tool-button.c:181
+#: ../src/process-tree-view.c:196 ../src/settings-tool-button.c:181
 msgid "

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

2014-12-20 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 6efacaf0f5fbf16db40fce16966330d4b7398fbe
Author: Urien Desterres 
Date:   Sat Dec 20 18:30:18 2014 +0100

I18n: Update translation fr (100%).

739 translated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).
---
 po/fr.po |  279 --
 1 file changed, 144 insertions(+), 135 deletions(-)

diff --git a/po/fr.po b/po/fr.po
index be644cd..dc70194 100644
--- a/po/fr.po
+++ b/po/fr.po
@@ -20,8 +20,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Thunar\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-11-05 18:30+0100\n"
-"PO-Revision-Date: 2014-11-24 18:49+\n"
+"POT-Creation-Date: 2014-12-20 06:30+0100\n"
+"PO-Revision-Date: 2014-12-20 17:28+\n"
 "Last-Translator: Urien Desterres \n"
 "Language-Team: French 
(http://www.transifex.com/projects/p/thunar/language/fr/)\n"
 "MIME-Version: 1.0\n"
@@ -163,20 +163,20 @@ msgstr "Impossible d’ouvrir « %s » : %s"
 #. display an error message
 #: ../thunar/thunar-application.c:1362
 #: ../thunar/thunar-properties-dialog.c:672
-#: ../thunar/thunar-standard-view.c:2746 ../thunar/thunar-tree-view.c:1760
+#: ../thunar/thunar-standard-view.c:2747 ../thunar/thunar-tree-view.c:1760
 #, c-format
 msgid "Failed to rename \"%s\""
 msgstr "Impossible de renommer « %s »"
 
 #: ../thunar/thunar-application.c:1464
 #: ../thunar/thunar-location-buttons.c:1308
-#: ../thunar/thunar-standard-view.c:2296 ../thunar/thunar-tree-view.c:1622
+#: ../thunar/thunar-standard-view.c:2297 ../thunar/thunar-tree-view.c:1622
 msgid "New Folder"
 msgstr "Nouveau dossier"
 
 #: ../thunar/thunar-application.c:1465
 #: ../thunar/thunar-location-buttons.c:1309
-#: ../thunar/thunar-standard-view.c:2297 ../thunar/thunar-tree-view.c:1623
+#: ../thunar/thunar-standard-view.c:2298 ../thunar/thunar-tree-view.c:1623
 msgid "Create New Folder"
 msgstr "Créer un nouveau dossier"
 
@@ -189,7 +189,7 @@ msgid "Create New File"
 msgstr "Créer un nouveau fichier"
 
 #. generate a title for the create dialog
-#: ../thunar/thunar-application.c:1527 ../thunar/thunar-standard-view.c:2341
+#: ../thunar/thunar-application.c:1527 ../thunar/thunar-standard-view.c:2342
 #, c-format
 msgid "Create Document from template \"%s\""
 msgstr "Créer un document avec le modèle « %s »"
@@ -326,7 +326,7 @@ msgstr "Utilisez une commande personnalisée pour une 
application qui n'est pas
 #. create the "Custom command" button
 #: ../thunar/thunar-chooser-dialog.c:277
 msgid "_Browse..."
-msgstr "_Naviguer..."
+msgstr "_Parcourir..."
 
 #. create the "Use as default for this kind of file" button
 #: ../thunar/thunar-chooser-dialog.c:283
@@ -506,8 +506,8 @@ msgstr "Élargir automatiquement les colonnes si nécessaire"
 #. the file_time is invalid
 #. reset page title
 #. tell the user that we're unable to determine the file info
-#: ../thunar/thunar-column-model.c:858 ../thunar/thunar-list-model.c:680
-#: ../thunar/thunar-list-model.c:708
+#: ../thunar/thunar-column-model.c:858 ../thunar/thunar-list-model.c:705
+#: ../thunar/thunar-list-model.c:733
 #: ../thunar/thunar-permissions-chooser.c:229 ../thunar/thunar-util.c:454
 #: ../plugins/thunar-apr/thunar-apr-desktop-page.c:503
 #: ../plugins/thunar-apr/thunar-apr-image-page.c:285
@@ -634,88 +634,88 @@ msgid "_Cancel"
 msgstr "_Annuler"
 
 #. setup the confirmation dialog
-#: ../thunar/thunar-dialogs.c:533
+#: ../thunar/thunar-dialogs.c:535
 msgid "Confirm to replace files"
 msgstr "Confirmer le remplacement des fichiers"
 
-#: ../thunar/thunar-dialogs.c:539
+#: ../thunar/thunar-dialogs.c:541
 msgid "S_kip All"
 msgstr "Om_ettre tout"
 
-#: ../thunar/thunar-dialogs.c:540
+#: ../thunar/thunar-dialogs.c:542
 msgid "_Skip"
 msgstr "O_mettre"
 
-#: ../thunar/thunar-dialogs.c:541
+#: ../thunar/thunar-dialogs.c:543
 msgid "Replace _All"
 msgstr "Remplacer _tout"
 
-#: ../thunar/thunar-dialogs.c:542
+#: ../thunar/thunar-dialogs.c:544
 msgid "_Replace"
 msgstr "_Remplacer"
 
-#: ../thunar/thunar-dialogs.c:575
+#: ../thunar/thunar-dialogs.c:577
 #, c-format
 msgid "This folder already contains a symbolic link \"%s\"."
 msgstr "Ce dossier contient déjà un lien symbolique « %s »."
 
-#: ../thunar/thunar-dialogs.c:580
+#: ../thunar/thunar-dialogs.c:582
 #, c-format
 msgid "This folder already contains a folder \"%s\"."
 msgstr "Ce dossier contient déjà un dossier « %s »."
 
-#: ../thunar/thunar-dialogs.c:585
+#: ../thunar/thunar-dialogs.c:587
 #, c-format
 msgid "This folder already contains a file \"%s\"."
 msgstr "Ce dossier contient déjà un fichier « %s »."
 
-#: ../thunar/thunar-dialogs.c:597
+#: ../thunar/thunar-dialogs.c:599
 msgid "ReplaceDialogPart1|Do you want to replace the link"
 msgstr "ReplaceDialogPart1|Voulez-vous remplacer le lien existant"
 
-#: ../thunar/thunar-dialogs.c:599
+#: ../thunar/thunar-dialogs.c:601
 msgid "ReplaceDialogPart1|Do you wan

[Xfce4-commits] [xfce/thunar] branch master updated (f96608c -> 1f25776)

2014-12-20 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  f96608c   Merge branch 'master' of 
https://github.com/andreldm/thunar
   new  6efacaf   I18n: Update translation fr (100%).
   new  1f25776   I18n: Update translation pt (100%).

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


Summary of changes:
 po/fr.po |  279 +
 po/pt.po |  348 --
 2 files changed, 326 insertions(+), 301 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] 02/02: I18n: Update translation pt (100%).

2014-12-20 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 1f257768c3a9facc87e3109db89b462f90470895
Author: Nuno Miguel 
Date:   Sat Dec 20 18:30:18 2014 +0100

I18n: Update translation pt (100%).

739 translated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).
---
 po/pt.po |  348 --
 1 file changed, 182 insertions(+), 166 deletions(-)

diff --git a/po/pt.po b/po/pt.po
index a07fc08..128bb93 100644
--- a/po/pt.po
+++ b/po/pt.po
@@ -3,15 +3,16 @@
 # This file is distributed under the same license as the PACKAGE package.
 # 
 # Translators:
+# Nuno Miguel , 2014
 # Sérgio Marques , 2013
 msgid ""
 msgstr ""
 "Project-Id-Version: Thunar\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-07-30 00:30+0200\n"
-"PO-Revision-Date: 2013-08-29 16:31+\n"
-"Last-Translator: Sérgio Marques \n"
-"Language-Team: Portuguese 
(http://www.transifex.com/projects/p/xfce/language/pt/)\n"
+"POT-Creation-Date: 2014-12-20 06:30+0100\n"
+"PO-Revision-Date: 2014-12-20 16:57+\n"
+"Last-Translator: Nuno Miguel \n"
+"Language-Team: Portuguese 
(http://www.transifex.com/projects/p/thunar/language/pt/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
@@ -151,20 +152,20 @@ msgstr "Ocorreu um erro ao abrir \"%s\": %s"
 #. display an error message
 #: ../thunar/thunar-application.c:1362
 #: ../thunar/thunar-properties-dialog.c:672
-#: ../thunar/thunar-standard-view.c:2746 ../thunar/thunar-tree-view.c:1760
+#: ../thunar/thunar-standard-view.c:2747 ../thunar/thunar-tree-view.c:1760
 #, c-format
 msgid "Failed to rename \"%s\""
 msgstr "Ocorreu um erro ao renomear \"%s\""
 
 #: ../thunar/thunar-application.c:1464
 #: ../thunar/thunar-location-buttons.c:1308
-#: ../thunar/thunar-standard-view.c:2296 ../thunar/thunar-tree-view.c:1622
+#: ../thunar/thunar-standard-view.c:2297 ../thunar/thunar-tree-view.c:1622
 msgid "New Folder"
 msgstr "Nova pasta"
 
 #: ../thunar/thunar-application.c:1465
 #: ../thunar/thunar-location-buttons.c:1309
-#: ../thunar/thunar-standard-view.c:2297 ../thunar/thunar-tree-view.c:1623
+#: ../thunar/thunar-standard-view.c:2298 ../thunar/thunar-tree-view.c:1623
 msgid "Create New Folder"
 msgstr "Criar nova pasta"
 
@@ -177,7 +178,7 @@ msgid "Create New File"
 msgstr "Criar novo ficheiro"
 
 #. generate a title for the create dialog
-#: ../thunar/thunar-application.c:1527 ../thunar/thunar-standard-view.c:2341
+#: ../thunar/thunar-application.c:1527 ../thunar/thunar-standard-view.c:2342
 #, c-format
 msgid "Create Document from template \"%s\""
 msgstr "Criar documento a partir do modelo \"%s\""
@@ -247,7 +248,7 @@ msgstr "Remover todos os ficheiros e pastas no lixo?"
 #. prepare the menu item
 #: ../thunar/thunar-application.c:2008 ../thunar/thunar-location-buttons.c:179
 #: ../thunar/thunar-shortcuts-view.c:1191 ../thunar/thunar-tree-view.c:1183
-#: ../thunar/thunar-window.c:351 ../plugins/thunar-tpa/thunar-tpa.c:189
+#: ../thunar/thunar-window.c:351 ../plugins/thunar-tpa/thunar-tpa.c:191
 msgid "_Empty Trash"
 msgstr "_Esvaziar lixo"
 
@@ -494,9 +495,9 @@ msgstr "_Expandir automaticamente as colunas (se 
necessário)"
 #. the file_time is invalid
 #. reset page title
 #. tell the user that we're unable to determine the file info
-#: ../thunar/thunar-column-model.c:858 ../thunar/thunar-list-model.c:680
-#: ../thunar/thunar-list-model.c:708
-#: ../thunar/thunar-permissions-chooser.c:229 ../thunar/thunar-util.c:446
+#: ../thunar/thunar-column-model.c:858 ../thunar/thunar-list-model.c:705
+#: ../thunar/thunar-list-model.c:733
+#: ../thunar/thunar-permissions-chooser.c:229 ../thunar/thunar-util.c:454
 #: ../plugins/thunar-apr/thunar-apr-desktop-page.c:503
 #: ../plugins/thunar-apr/thunar-apr-image-page.c:285
 #: ../plugins/thunar-apr/thunar-apr-image-page.c:286
@@ -622,89 +623,88 @@ msgid "_Cancel"
 msgstr "_Cancelar"
 
 #. setup the confirmation dialog
-#: ../thunar/thunar-dialogs.c:533
+#: ../thunar/thunar-dialogs.c:535
 msgid "Confirm to replace files"
 msgstr "Confirmar substituição de ficheiros"
 
-#: ../thunar/thunar-dialogs.c:539
+#: ../thunar/thunar-dialogs.c:541
 msgid "S_kip All"
 msgstr "Ig_norar tudo"
 
-#: ../thunar/thunar-dialogs.c:540
+#: ../thunar/thunar-dialogs.c:542
 msgid "_Skip"
 msgstr "_Ignorar"
 
-#: ../thunar/thunar-dialogs.c:541
+#: ../thunar/thunar-dialogs.c:543
 msgid "Replace _All"
 msgstr "Substituir _tudo"
 
-#: ../thunar/thunar-dialogs.c:542
+#: ../thunar/thunar-dialogs.c:544
 msgid "_Replace"
 msgstr "_Substituir"
 
-#: ../thunar/thunar-dialogs.c:575
+#: ../thunar/thunar-dialogs.c:577
 #, c-format
 msgid "This folder already contains a symbolic link \"%s\"."
 msgstr "Esta pasta já possui a ligação simbólica \"%s\"."
 
-#: ../thunar/thunar-dialogs.c:580
+#: ../thunar/thunar-dialogs.c:582
 #, c-format
 msgid "This folder already contains a fol

[Xfce4-commits] [apps/orage] branch master updated (54382cb -> b412c6b)

2014-12-20 Thread noreply
This is an automated email from the git hooks/post-receive script.

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

  from  54382cb   I18n: Update translation ar (80%).
   new  b412c6b   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 |  103 +-
 1 file changed, 68 insertions(+), 35 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/orage] 01/01: I18n: Update translation pt (100%).

2014-12-20 Thread noreply
This is an automated email from the git hooks/post-receive script.

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

commit b412c6bea948b8f612ab7ce395af24af99d0959d
Author: Nuno Miguel 
Date:   Sat Dec 20 18:31:03 2014 +0100

I18n: Update translation pt (100%).

1030 translated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).
---
 po/pt.po |  103 +-
 1 file changed, 68 insertions(+), 35 deletions(-)

diff --git a/po/pt.po b/po/pt.po
index f34b6e2..ea6316a 100644
--- a/po/pt.po
+++ b/po/pt.po
@@ -4,22 +4,38 @@
 # 
 # Translators:
 # Nuno Donato , 2004
-# nunom , 2013
+# Nuno Miguel , 2013-2014
 # Sérgio Marques , 2013
 msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Apps\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-12-02 18:30+0100\n"
-"PO-Revision-Date: 2013-12-14 16:30+\n"
-"Last-Translator: nunom \n"
-"Language-Team: Portuguese 
(http://www.transifex.com/projects/p/xfce/language/pt/)\n"
+"POT-Creation-Date: 2014-09-23 12:30+0200\n"
+"PO-Revision-Date: 2014-12-20 17:23+\n"
+"Last-Translator: Nuno Miguel \n"
+"Language-Team: Portuguese 
(http://www.transifex.com/projects/p/xfce-apps/language/pt/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Language: pt\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
+#: ../globaltime/globaltime.c:58
+msgid "no underline"
+msgstr "sem sublinhado"
+
+#: ../globaltime/globaltime.c:58
+msgid "single"
+msgstr "simples"
+
+#: ../globaltime/globaltime.c:58
+msgid "double"
+msgstr "duplo"
+
+#: ../globaltime/globaltime.c:58
+msgid "low"
+msgstr "baixo"
+
 #: ../globaltime/globaltime.c:100
 msgid "Raising GlobalTime window..."
 msgstr "Subindo a janela Horário global..."
@@ -55,6 +71,10 @@ msgid ""
 "adjust to change minute. Click arrows with button 2 to change only 1 minute."
 msgstr "ajuste para mudar os minutos. Clique nas setas com o botão 2 para 
mudar 1 minuto."
 
+#: ../globaltime/globaltime.c:548
+msgid "Global Time"
+msgstr "Horário Global"
+
 #: ../globaltime/gt_prefs.c:265 ../globaltime/gt_prefs.c:266
 msgid "NEW"
 msgstr "NOVO"
@@ -236,7 +256,7 @@ msgstr "atualizar preferências"
 
 #: ../globaltime/gt_prefs.c:1062
 msgid "Globaltime Preferences"
-msgstr "Preferências da Hora global"
+msgstr "Preferências do horário global"
 
 #. ---HEADING--
 #: ../globaltime/gt_prefs.c:1073
@@ -255,6 +275,10 @@ msgstr "Padrão"
 msgid "Use normal decorations"
 msgstr "Utilizar decorações normais"
 
+#: ../globaltime/gt_prefs.c:1089 ../src/appointment.c:3290
+msgid "None"
+msgstr "Nenhum"
+
 #: ../globaltime/gt_prefs.c:1094
 msgid "Do not show window decorations (borders)"
 msgstr "Não mostrar decorações de janela (contornos)"
@@ -393,7 +417,7 @@ msgstr "flutuar"
 
 #: ../globaltime/globaltime.desktop.in.h:1
 msgid "Orage Globaltime"
-msgstr "Hora global Orage"
+msgstr "Horário global Orage"
 
 #: ../globaltime/globaltime.desktop.in.h:2
 msgid "Show clocks from different countries"
@@ -401,73 +425,89 @@ msgstr "Mostrar relógios de outros países"
 
 #: ../globaltime/globaltime.desktop.in.h:3 ../src/tray_icon.c:500
 msgid "Globaltime"
-msgstr "Hora global"
+msgstr "Horário global"
+
+#: ../panel-plugin/oc_config.c:239
+msgid "No rotation"
+msgstr "Sem rotação"
+
+#: ../panel-plugin/oc_config.c:239
+msgid "Rotate left"
+msgstr "Rodar para a esquerda"
+
+#: ../panel-plugin/oc_config.c:240
+msgid "Rotate right"
+msgstr "Rodar para a direita"
 
-#: ../panel-plugin/oc_config.c:224
+#: ../panel-plugin/oc_config.c:248
 msgid "Appearance"
 msgstr "Aparência"
 
 #. show frame
-#: ../panel-plugin/oc_config.c:229
+#: ../panel-plugin/oc_config.c:257
 msgid "Show _frame"
 msgstr "Mostrar _janela"
 
 #. foreground color
-#: ../panel-plugin/oc_config.c:239
+#: ../panel-plugin/oc_config.c:263
 msgid "set foreground _color:"
 msgstr "definir _cor principal:"
 
 #. background color
-#: ../panel-plugin/oc_config.c:253
+#: ../panel-plugin/oc_config.c:277
 msgid "set _background color:"
 msgstr "definir cor _secundária:"
 
-#. clock size (=vbox size): height and width
-#: ../panel-plugin/oc_config.c:267
+#. clock size (=mbox size): height and width
+#: ../panel-plugin/oc_config.c:291
 msgid "set _height:"
 msgstr "definir _altura:"
 
-#: ../panel-plugin/oc_config.c:277
+#: ../panel-plugin/oc_config.c:301
 msgid "Note that you can not change the height of horizontal panels"
 msgstr "Tenha em atenção que não pode alterar a altura dos painéis horizontais"
 
-#: ../panel-plugin/oc_config.c:282
+#: ../panel-plugin/oc_config.c:306
 msgid "set _width:"
 msgstr "definir _largura:"
 
-#: ../panel-plugin/oc_config.c:293
+#: ../panel-plugin/oc_config.c:316
 msgid "Note that you can not change the width of vertical panels"
 msgstr "Tenha em atenção que não pode alterar a largura dos painéis verticais"
 
-#: ../panel-plugin/oc_config.c:316
+#: ../panel-plugin/oc_

[Xfce4-commits] [apps/xfce4-taskmanager] branch master updated (76e3ea7 -> e965c2a)

2014-12-20 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-taskmanager.

  from  76e3ea7   I18n: Update translation nl (100%).
   new  72696ac   I18n: Update translation fr (100%).
   new  e965c2a   I18n: Update translation pt (100%).

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


Summary of changes:
 po/fr.po |  165 +-
 po/pt.po |  156 ++
 2 files changed, 169 insertions(+), 152 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-taskmanager] 01/02: I18n: Update translation fr (100%).

2014-12-20 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-taskmanager.

commit 72696ac61b90bb44e871174281ba30c7168c22f9
Author: Urien Desterres 
Date:   Sat Dec 20 18:31:20 2014 +0100

I18n: Update translation fr (100%).

75 translated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).
---
 po/fr.po |  165 +-
 1 file changed, 87 insertions(+), 78 deletions(-)

diff --git a/po/fr.po b/po/fr.po
index 9577abf..d36ea01 100644
--- a/po/fr.po
+++ b/po/fr.po
@@ -5,14 +5,15 @@
 # Translators:
 # jc1 , 2013
 # Louis Moureaux , 2014
+# Urien Desterres , 2014
 # Yannick Le Guen , 2014
 msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Apps\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-12-05 00:31+0100\n"
-"PO-Revision-Date: 2014-12-06 08:57+\n"
-"Last-Translator: Yannick Le Guen \n"
+"POT-Creation-Date: 2014-12-20 00:31+0100\n"
+"PO-Revision-Date: 2014-12-20 17:19+\n"
+"Last-Translator: Urien Desterres \n"
 "Language-Team: French 
(http://www.transifex.com/projects/p/xfce-apps/language/fr/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -20,44 +21,44 @@ msgstr ""
 "Language: fr\n"
 "Plural-Forms: nplurals=2; plural=(n > 1);\n"
 
-#: ../xfce4-taskmanager.desktop.in.h:1 ../src/exec-tool-button.c:89
-#: ../src/exec-tool-button.c:134 ../src/main.c:186
-#: ../src/process-tree-view.c:367 ../src/process-tree-view.c:382
-#: ../src/process-tree-view.c:410 ../src/process-window.c:353
-#: ../src/process-window.ui.h:1
+#: ../xfce4-taskmanager.desktop.in.h:1 ../src/exec-tool-button.c:106
+#: ../src/exec-tool-button.c:151 ../src/main.c:186
+#: ../src/process-tree-view.c:372 ../src/process-tree-view.c:387
+#: ../src/process-tree-view.c:415 ../src/process-window.c:389
+#: ../src/process-window.ui.h:1 ../src/process-window-gtk3.ui.h:1
 msgid "Task Manager"
 msgstr "Gestionnaire de tâches"
 
-#: ../xfce4-taskmanager.desktop.in.h:2 ../src/process-window.c:358
+#: ../xfce4-taskmanager.desktop.in.h:2 ../src/process-window.c:396
 msgid "Easy to use task manager"
 msgstr "Gestionnaire de tâches simple d'utilisation"
 
-#: ../src/exec-tool-button.c:87 ../src/exec-tool-button.c:131
+#: ../src/exec-tool-button.c:104 ../src/exec-tool-button.c:148
 msgid "Execution error"
 msgstr "Erreur d'exécution"
 
-#: ../src/exec-tool-button.c:133
+#: ../src/exec-tool-button.c:150
 msgid "Couldn't find any default command to run."
 msgstr "Impossible de trouver une commande par défaut à exécuter."
 
-#: ../src/exec-tool-button.c:164
+#: ../src/exec-tool-button.c:181
 msgid "Run Task Manager as root"
 msgstr "Exécuter le gestionnaire de tâches en tant que root"
 
-#: ../src/exec-tool-button.c:175 ../src/exec-tool-button.c:177
-#: ../src/exec-tool-button.c:179
+#: ../src/exec-tool-button.c:192 ../src/exec-tool-button.c:194
+#: ../src/exec-tool-button.c:196
 msgid "Run Program..."
-msgstr "Exécuter le programme ..."
+msgstr "Exécuter le programme..."
 
-#: ../src/exec-tool-button.c:182
+#: ../src/exec-tool-button.c:199
 msgid "Application Finder"
-msgstr "Liste des applications"
+msgstr "Chercheur d’application"
 
-#: ../src/exec-tool-button.c:185
+#: ../src/exec-tool-button.c:202
 msgid "Terminal emulator"
 msgstr "Émulateur de terminal"
 
-#: ../src/exec-tool-button.c:187
+#: ../src/exec-tool-button.c:204
 msgid "XTerm"
 msgstr "XTerm"
 
@@ -79,224 +80,232 @@ msgid ""
 "Swap: %s"
 msgstr "Processus : %u\nCPU : %.0f%%\nMémoire : %s\nFichier d'échange : %s"
 
-#: ../src/process-statusbar.c:148 ../src/process-window.c:423
+#: ../src/process-statusbar.c:147 ../src/process-window.c:461
 #, c-format
 msgid "CPU: %s%%"
 msgstr "Processeur : %s%%"
 
-#: ../src/process-statusbar.c:156 ../src/process-window.c:427
+#: ../src/process-statusbar.c:162 ../src/process-window.c:465
 #, c-format
 msgid "Memory: %s"
 msgstr "Mémoire : %s"
 
-#: ../src/process-statusbar.c:163
+#: ../src/process-statusbar.c:176
 #, c-format
 msgid "Swap: %s"
 msgstr "Fichier d'échange : %s"
 
-#: ../src/process-statusbar.c:177
+#: ../src/process-statusbar.c:190
 #, c-format
 msgid "Processes: %d"
 msgstr "Processus : %d"
 
-#: ../src/process-tree-view.c:131
+#: ../src/process-tree-view.c:136
 msgid "Task"
 msgstr "Tâche"
 
-#: ../src/process-tree-view.c:142 ../src/settings-tool-button.c:175
+#: ../src/process-tree-view.c:147 ../src/settings-tool-button.c:175
 msgid "PID"
 msgstr "PID"
 
-#: ../src/process-tree-view.c:150 ../src/settings-tool-button.c:176
+#: ../src/process-tree-view.c:155 ../src/settings-tool-button.c:176
 msgid "PPID"
 msgstr "PPID"
 
-#: ../src/process-tree-view.c:158 ../src/settings-tool-button.c:177
+#: ../src/process-tree-view.c:163 ../src/settings-tool-button.c:177
 msgid "State"
 msgstr "État"
 
-#: ../src/process-tree-view.c:167
+#: ../src/process-tree-view.c:172
 msgid "VSZ"
 msgstr "VSZ"
 
-#: ../src/process-tree-view.c:175
+#: ../src/process-tree-view.c:

[Xfce4-commits] [apps/xfce4-taskmanager] 02/02: I18n: Update translation pt (100%).

2014-12-20 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-taskmanager.

commit e965c2a833a1834644651d7999679391213a4d06
Author: Nuno Miguel 
Date:   Sat Dec 20 18:31:20 2014 +0100

I18n: Update translation pt (100%).

75 translated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).
---
 po/pt.po |  156 +-
 1 file changed, 82 insertions(+), 74 deletions(-)

diff --git a/po/pt.po b/po/pt.po
index d0374a1..0b42aa9 100644
--- a/po/pt.po
+++ b/po/pt.po
@@ -9,8 +9,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Apps\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-12-05 00:31+0100\n"
-"PO-Revision-Date: 2014-12-05 12:37+\n"
+"POT-Creation-Date: 2014-12-20 00:31+0100\n"
+"PO-Revision-Date: 2014-12-20 17:07+\n"
 "Last-Translator: Nuno Miguel \n"
 "Language-Team: Portuguese 
(http://www.transifex.com/projects/p/xfce-apps/language/pt/)\n"
 "MIME-Version: 1.0\n"
@@ -19,44 +19,44 @@ msgstr ""
 "Language: pt\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-#: ../xfce4-taskmanager.desktop.in.h:1 ../src/exec-tool-button.c:89
-#: ../src/exec-tool-button.c:134 ../src/main.c:186
-#: ../src/process-tree-view.c:367 ../src/process-tree-view.c:382
-#: ../src/process-tree-view.c:410 ../src/process-window.c:353
-#: ../src/process-window.ui.h:1
+#: ../xfce4-taskmanager.desktop.in.h:1 ../src/exec-tool-button.c:106
+#: ../src/exec-tool-button.c:151 ../src/main.c:186
+#: ../src/process-tree-view.c:372 ../src/process-tree-view.c:387
+#: ../src/process-tree-view.c:415 ../src/process-window.c:389
+#: ../src/process-window.ui.h:1 ../src/process-window-gtk3.ui.h:1
 msgid "Task Manager"
 msgstr "Gestor de tarefas"
 
-#: ../xfce4-taskmanager.desktop.in.h:2 ../src/process-window.c:358
+#: ../xfce4-taskmanager.desktop.in.h:2 ../src/process-window.c:396
 msgid "Easy to use task manager"
 msgstr "Gestor de tarefas fácil de usar"
 
-#: ../src/exec-tool-button.c:87 ../src/exec-tool-button.c:131
+#: ../src/exec-tool-button.c:104 ../src/exec-tool-button.c:148
 msgid "Execution error"
 msgstr "Erro de execução"
 
-#: ../src/exec-tool-button.c:133
+#: ../src/exec-tool-button.c:150
 msgid "Couldn't find any default command to run."
 msgstr "O comando de execução não foi encontrado."
 
-#: ../src/exec-tool-button.c:164
+#: ../src/exec-tool-button.c:181
 msgid "Run Task Manager as root"
 msgstr "Executar gestor de tarefas como root"
 
-#: ../src/exec-tool-button.c:175 ../src/exec-tool-button.c:177
-#: ../src/exec-tool-button.c:179
+#: ../src/exec-tool-button.c:192 ../src/exec-tool-button.c:194
+#: ../src/exec-tool-button.c:196
 msgid "Run Program..."
 msgstr "Executar programa..."
 
-#: ../src/exec-tool-button.c:182
+#: ../src/exec-tool-button.c:199
 msgid "Application Finder"
 msgstr "Localizar aplicações"
 
-#: ../src/exec-tool-button.c:185
+#: ../src/exec-tool-button.c:202
 msgid "Terminal emulator"
 msgstr "Emulador de terminal"
 
-#: ../src/exec-tool-button.c:187
+#: ../src/exec-tool-button.c:204
 msgid "XTerm"
 msgstr "XTerm"
 
@@ -78,224 +78,232 @@ msgid ""
 "Swap: %s"
 msgstr "Processos: %u\nCPU: %.0f%%\nMemória: %s\nSwap: %s"
 
-#: ../src/process-statusbar.c:148 ../src/process-window.c:423
+#: ../src/process-statusbar.c:147 ../src/process-window.c:461
 #, c-format
 msgid "CPU: %s%%"
 msgstr "CPU: %s%%"
 
-#: ../src/process-statusbar.c:156 ../src/process-window.c:427
+#: ../src/process-statusbar.c:162 ../src/process-window.c:465
 #, c-format
 msgid "Memory: %s"
 msgstr "Memória: %s"
 
-#: ../src/process-statusbar.c:163
+#: ../src/process-statusbar.c:176
 #, c-format
 msgid "Swap: %s"
 msgstr "Swap: %s"
 
-#: ../src/process-statusbar.c:177
+#: ../src/process-statusbar.c:190
 #, c-format
 msgid "Processes: %d"
 msgstr "Processos: %d"
 
-#: ../src/process-tree-view.c:131
+#: ../src/process-tree-view.c:136
 msgid "Task"
 msgstr "Tarefa"
 
-#: ../src/process-tree-view.c:142 ../src/settings-tool-button.c:175
+#: ../src/process-tree-view.c:147 ../src/settings-tool-button.c:175
 msgid "PID"
 msgstr "PID"
 
-#: ../src/process-tree-view.c:150 ../src/settings-tool-button.c:176
+#: ../src/process-tree-view.c:155 ../src/settings-tool-button.c:176
 msgid "PPID"
 msgstr "PPID"
 
-#: ../src/process-tree-view.c:158 ../src/settings-tool-button.c:177
+#: ../src/process-tree-view.c:163 ../src/settings-tool-button.c:177
 msgid "State"
 msgstr "Estado"
 
-#: ../src/process-tree-view.c:167
+#: ../src/process-tree-view.c:172
 msgid "VSZ"
 msgstr "VSZ"
 
-#: ../src/process-tree-view.c:175
+#: ../src/process-tree-view.c:180
 msgid "RSS"
 msgstr "RSS"
 
-#: ../src/process-tree-view.c:183 ../src/settings-tool-button.c:180
+#: ../src/process-tree-view.c:188 ../src/settings-tool-button.c:180
 msgid "UID"
 msgstr "UID"
 
-#: ../src/process-tree-view.c:191 ../src/settings-tool-button.c:181
+#: ../src/process-tree-view.c:196 ../src/settings-tool-button.c:181
 msgid "CPU"
 msgstr "CP

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

2014-12-20 Thread noreply
This is an automated email from the git hooks/post-receive script.

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

commit d864499a1cf6544500ee15d3b322aad436c439f4
Author: Nuno Miguel 
Date:   Sat Dec 20 18:32:13 2014 +0100

I18n: Update translation pt (100%).

67 translated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).
---
 po/pt.po |   88 --
 1 file changed, 45 insertions(+), 43 deletions(-)

diff --git a/po/pt.po b/po/pt.po
index 4f75afd..280ed1a 100644
--- a/po/pt.po
+++ b/po/pt.po
@@ -3,14 +3,15 @@
 # This file is distributed under the same license as the PACKAGE package.
 # 
 # Translators:
+# Nuno Miguel , 2014
 msgid ""
 msgstr ""
 "Project-Id-Version: Xfconf\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-07-02 22:48+0200\n"
-"PO-Revision-Date: 2013-11-19 10:53+\n"
-"Last-Translator: Nick \n"
-"Language-Team: Portuguese 
(http://www.transifex.com/projects/p/xfce/language/pt/)\n"
+"POT-Creation-Date: 2014-07-27 18:32+0200\n"
+"PO-Revision-Date: 2014-12-20 17:02+\n"
+"Last-Translator: Nuno Miguel \n"
+"Language-Team: Portuguese 
(http://www.transifex.com/projects/p/xfconf/language/pt/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
@@ -36,7 +37,7 @@ msgstr "Permissão negada ao modificar a propriedade \"%s\" no 
canal \"%s\""
 #: ../xfconfd/xfconf-backend-perchannel-xml.c:387
 #: ../xfconfd/xfconf-backend-perchannel-xml.c:469
 #: ../xfconfd/xfconf-backend-perchannel-xml.c:634
-#: ../xfconfd/xfconf-backend-perchannel-xml.c:654 ../xfconf-query/main.c:341
+#: ../xfconfd/xfconf-backend-perchannel-xml.c:654 ../xfconf-query/main.c:344
 #, c-format
 msgid "Property \"%s\" does not exist on channel \"%s\""
 msgstr "A propriedade \"%s\" não existe no canal \"%s\""
@@ -93,36 +94,37 @@ msgstr "Os nomes das propriedades devem começar com o 
carácter '/'"
 msgid "The root element ('/') is not a valid property name"
 msgstr "O elemento root ('/') não é um nome de propriedade válido"
 
-#: ../xfconfd/xfconf-backend.c:126
+#: ../xfconfd/xfconf-backend.c:127
 #, c-format
 msgid ""
 "Property names can only include the ASCII characters A-Z, a-z, 0-9, '_', "
-"'-', '<' and '>', as well as '/' as a separator"
-msgstr "Os nomes de propriedades só podem incluir os caracteres ASCII A-Z, 
a-z, 0-9, '_', '-', '<' e '>' e '/' como separador"
+"'-', ':', '.', ',', '[', ']', '{', '}', '<' and '>', as well as '/' as a "
+"separator"
+msgstr "Nomes de propriedades apenas podem incluir carateres ASCII A-Z, a-z, 
0-9, '_', '-', ':', '.', ',', '[', ']', '{', '}', '<' e '>', assim como '/' 
como separador"
 
-#: ../xfconfd/xfconf-backend.c:135
+#: ../xfconfd/xfconf-backend.c:136
 #, c-format
 msgid "Property names cannot have two or more consecutive '/' characters"
 msgstr "Os nomes de propriedades não podem ter dois ou mais caracteres '/' 
sequenciais"
 
-#: ../xfconfd/xfconf-backend.c:146
+#: ../xfconfd/xfconf-backend.c:147
 #, c-format
 msgid "Property names cannot end with a '/' character"
 msgstr "Os nomes de propriedades não podem terminar com o carácter '/'"
 
-#: ../xfconfd/xfconf-backend.c:163
+#: ../xfconfd/xfconf-backend.c:164
 #, c-format
 msgid "Channel name cannot be an empty string"
 msgstr "O nome do canal não pode estar vazio"
 
-#: ../xfconfd/xfconf-backend.c:176
+#: ../xfconfd/xfconf-backend.c:179
 #, c-format
 msgid ""
-"Channel names can only include the ASCII characters A-Z, a-z, 0-9, '_', and "
-"'-'"
-msgstr "Os nomes de canais só podem incluir os caracteres ASCII A-Z, a-z, 0-9, 
'_' e '-'"
+"Channel names can only include the ASCII characters A-Z, a-z, 0-9, '{', '}',"
+" '|', ']', '[', ':', ',', '.', '_', and '-'"
+msgstr "Nomes de canal podem incluir apenas carateres ASCII A-Z, a-z, 0-9, 
'{', '}', '|', ']', '[', ':', ',', '.', '_', e '-'"
 
-#: ../xfconfd/xfconf-backend.c:398
+#: ../xfconfd/xfconf-backend.c:401
 #, c-format
 msgid ""
 "The property name can only be empty or \"/\" if a recursive reset was "
@@ -147,15 +149,15 @@ msgstr "Ao iniciar, enviar para segundo plano. Só útil 
para testes"
 msgid "Xfce Configuration Daemon"
 msgstr "Serviço de configurações do Xfce"
 
-#: ../xfconfd/main.c:165
+#: ../xfconfd/main.c:168
 msgid "Xfce configuration daemon"
 msgstr "Serviço de configurações do Xfce"
 
-#: ../xfconfd/main.c:167
+#: ../xfconfd/main.c:170
 msgid "Report bugs to http://bugs.xfce.org/\n";
 msgstr "Reporte os erros em http://bugs.xfce.org/\n";
 
-#: ../xfconfd/main.c:170
+#: ../xfconfd/main.c:173
 #, c-format
 msgid "Error parsing options: %s\n"
 msgstr "Erro ao processar as opções: %s\n"
@@ -230,107 +232,107 @@ msgstr "Inverter a propriedade booleana existente"
 msgid "Monitor a channel for property changes"
 msgstr "Monitorizar um canal por mudanças de propriedades"
 
-#: ../xfconf-query/main.c:246
+#: ../xfconf-query/main.c:249
 #, c-format
 msgid "Failed to init libxfconf: %s"
 msgstr "Falha 

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

2014-12-20 Thread noreply
This is an automated email from the git hooks/post-receive script.

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

commit ad59e094d44849073554c8d10fcfdc63f5c2d5b2
Author: Nuno Miguel 
Date:   Sat Dec 20 18:32:19 2014 +0100

I18n: Update translation pt (100%).

220 translated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).
---
 po/pt.po |   62 +++---
 1 file changed, 31 insertions(+), 31 deletions(-)

diff --git a/po/pt.po b/po/pt.po
index 1d0ac82..bef3bc7 100644
--- a/po/pt.po
+++ b/po/pt.po
@@ -11,8 +11,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Xfdesktop\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-08-03 12:32+0200\n"
-"PO-Revision-Date: 2014-10-01 13:42+\n"
+"POT-Creation-Date: 2014-11-11 18:32+0100\n"
+"PO-Revision-Date: 2014-12-20 16:48+\n"
 "Last-Translator: Nuno Miguel \n"
 "Language-Team: Portuguese 
(http://www.transifex.com/projects/p/xfdesktop/language/pt/)\n"
 "MIME-Version: 1.0\n"
@@ -59,95 +59,99 @@ msgid ""
 "Size: %s"
 msgstr "%s\nTipo: %s\nTamanho: %s"
 
-#: ../settings/main.c:715
+#: ../settings/main.c:716
 #, c-format
 msgid "Wallpaper for Monitor %d (%s)"
 msgstr "Papel de parede do ecrã %d (%s)"
 
-#: ../settings/main.c:718
+#: ../settings/main.c:719
 #, c-format
 msgid "Wallpaper for Monitor %d"
 msgstr "Papel de parede do ecrã %d"
 
-#: ../settings/main.c:724
+#: ../settings/main.c:725
 msgid "Move this dialog to the display you want to edit the settings for."
 msgstr "Mova este diálogo para o ecrã que pretende editar as definições."
 
-#: ../settings/main.c:731
+#: ../settings/main.c:732
 #, c-format
 msgid "Wallpaper for %s on Monitor %d (%s)"
 msgstr "Papel de parede para %s no monitor %d (%s)"
 
-#: ../settings/main.c:735
+#: ../settings/main.c:736
 #, c-format
 msgid "Wallpaper for %s on Monitor %d"
 msgstr "Papel de parede para %s no monitor %d"
 
-#: ../settings/main.c:742
+#: ../settings/main.c:743
 msgid ""
 "Move this dialog to the display and workspace you want to edit the settings "
 "for."
 msgstr "Mova este diálogo para o ecrã e área de trabalho que pretende editar 
as definições."
 
 #. Single monitor and single workspace
-#: ../settings/main.c:749
+#: ../settings/main.c:751
 #, c-format
 msgid "Wallpaper for my desktop"
 msgstr "Papel de parede do ambiente de trabalho"
 
 #. Single monitor and per workspace wallpaper
-#: ../settings/main.c:755
+#: ../settings/main.c:757
 #, c-format
 msgid "Wallpaper for %s"
 msgstr "Papel de parede para %s"
 
-#: ../settings/main.c:760
+#: ../settings/main.c:762
 msgid "Move this dialog to the workspace you want to edit the settings for."
 msgstr "Mova este diálogo para o ecrã e área de trabalho que pretende editar 
as definições."
 
-#: ../settings/main.c:1174
+#: ../settings/main.c:1176
 msgid "Image selection is unavailable while the image style is set to None."
 msgstr "A seleção de imagens não está disponível se o estilo de imagem for 
Nenhum."
 
-#: ../settings/main.c:1524
+#: ../settings/main.c:1526
 msgid "Spanning screens"
 msgstr "Expandir ecrãs"
 
-#: ../settings/main.c:1831
+#: ../settings/main.c:1836
 msgid "Image files"
 msgstr "Ficheiros de imagem"
 
-#: ../settings/main.c:2010
+#: ../settings/main.c:2016
 msgid "Settings manager socket"
 msgstr "Gestor de definições"
 
-#: ../settings/main.c:2010
+#: ../settings/main.c:2016
 msgid "SOCKET ID"
 msgstr "ID do SOCKET"
 
-#: ../settings/main.c:2011
+#: ../settings/main.c:2017
 msgid "Version information"
 msgstr "Informações de versão"
 
-#: ../settings/main.c:2039
+#: ../settings/main.c:2018 ../src/xfdesktop-application.c:844
+msgid "Enable debug messages"
+msgstr "Ligar mensagens de debug"
+
+#: ../settings/main.c:2046
 #, c-format
 msgid "Type '%s --help' for usage."
 msgstr "Digite '%s --help' para utilização."
 
-#: ../settings/main.c:2051
+#: ../settings/main.c:2058
 msgid "The Xfce development team. All rights reserved."
 msgstr "A equipa de desenvolvimento do Xfce. Todos os direitos reservados."
 
-#: ../settings/main.c:2052
+#: ../settings/main.c:2059
 #, c-format
 msgid "Please report bugs to <%s>."
 msgstr "Por favor reporte os erros em <%s>."
 
-#: ../settings/main.c:2059
+#: ../settings/main.c:2066
 msgid "Desktop Settings"
 msgstr "Definições do ambiente de trabalho"
 
-#: ../settings/main.c:2061
+#: ../settings/main.c:2068
 msgid "Unable to contact settings server"
 msgstr "Incapaz de contactar o servidor de definições"
 
@@ -336,7 +340,7 @@ msgstr "Ícones das aplicações minimizadas"
 msgid "File/launcher icons"
 msgstr "Ícones de ficheiro/lançador"
 
-#: ../settings/xfdesktop-settings-ui.glade.h:10 ../src/xfce-desktop.c:1007
+#: ../settings/xfdesktop-settings-ui.glade.h:10 ../src/xfce-desktop.c:1024
 msgid "Desktop"
 msgstr "Ambiente de trabalho"
 
@@ -346,7 +350,7 @@ msgstr "F_undo"
 
 #: ../settings/xfdesktop-settings-ui.glade.h:13
 msgid "Include applications menu on _desktop right click"
-msgstr "Mostrar menu

[Xfce4-commits] [www/www.xfce.org] branch master updated (6063225 -> f95ee57)

2014-12-20 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  6063225   I18n: Update translation tr (60%).
   new  f95ee57   I18n: Update translation pt (88%).

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/pt.po |9 +
 1 file changed, 5 insertions(+), 4 deletions(-)

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


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

2014-12-20 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 f95ee57c6003f75a26dde5151aea748c09826739
Author: Nuno Miguel 
Date:   Sat Dec 20 18:32:09 2014 +0100

I18n: Update translation pt (88%).

523 translated messages, 68 untranslated messages.

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

diff --git a/lib/po/pt.po b/lib/po/pt.po
index a549db1..a2f4db2 100644
--- a/lib/po/pt.po
+++ b/lib/po/pt.po
@@ -7,14 +7,15 @@
 # Alexandre Fidalgo , 2014
 # Mad_Slacker , 2014
 # Mariana Santos Prazeres , 2013
+# Nuno Miguel , 2014
 # Sérgio Marques , 2013-2014
 msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Websites\n"
 "Report-Msgid-Bugs-To: https://bugzilla.xfce.org\n";
 "POT-Creation-Date: 2013-07-03 22:08+0200\n"
-"PO-Revision-Date: 2014-07-26 12:41+\n"
-"Last-Translator: Alexandre Fidalgo \n"
+"PO-Revision-Date: 2014-12-20 17:28+\n"
+"Last-Translator: Nuno Miguel \n"
 "Language-Team: Portuguese 
(http://www.transifex.com/projects/p/xfce-www/language/pt/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -1399,7 +1400,7 @@ msgid ""
 "As of today, the long awaited version 4.4.0 of the Xfce Desktop Environment "
 "is finally available. I will try to highlight some of the new features which"
 " have been added since the last stable release."
-msgstr ""
+msgstr "Tal como hoje, a muito esperada versão 4.4.0 do ambiente gráfico Xfce 
está finalmente disponível. Irei expôr algumas das novas funcionalidades que 
foram adicionadas desde a última versão."
 
 #: about/tour44.php:9 about/tour44.php:15
 msgid "Desktop Icons"
@@ -1429,7 +1430,7 @@ msgstr "Definições do ambiente de trabalho"
 msgid ""
 "Xfdesktop also continues to provide access to the applications menu, "
 "as it did in the previous Xfce releases."
-msgstr ""
+msgstr "Xfdesktop continua a oferecer acesso ao menu de aplicações, 
como fazia nas versões anteriores do Xfce."
 
 #: about/tour44.php:28 about/tour46.php:92 about/tour.php:47
 #: about/tour48.php:7 about/index.php:44

-- 
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/xfconf] branch master updated (c05fd49 -> d864499)

2014-12-20 Thread noreply
This is an automated email from the git hooks/post-receive script.

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

  from  c05fd49   I18n: Update translation tr (100%).
   new  d864499   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 |   88 --
 1 file changed, 45 insertions(+), 43 deletions(-)

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


[Xfce4-commits] [xfce/xfdesktop] branch master updated (6833b35 -> ad59e09)

2014-12-20 Thread noreply
This is an automated email from the git hooks/post-receive script.

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

  from  6833b35   I18n: Update translation eu (79%).
   new  ad59e09   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 |   62 +++---
 1 file changed, 31 insertions(+), 31 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 (1f25776 -> ad5fc4d)

2014-12-20 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  1f25776   I18n: Update translation pt (100%).
   new  ad5fc4d   I18n: Update translation zh_TW (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/zh_TW.po |  277 ++-
 1 file changed, 143 insertions(+), 134 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 zh_TW (100%).

2014-12-20 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 ad5fc4dc7410327fd55600e927ebc2ef908b25db
Author: Jeff Huang 
Date:   Sun Dec 21 00:30:17 2014 +0100

I18n: Update translation zh_TW (100%).

739 translated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).
---
 po/zh_TW.po |  277 ++-
 1 file changed, 143 insertions(+), 134 deletions(-)

diff --git a/po/zh_TW.po b/po/zh_TW.po
index 11f4abf..a31783b 100644
--- a/po/zh_TW.po
+++ b/po/zh_TW.po
@@ -12,8 +12,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Thunar\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-11-05 18:30+0100\n"
-"PO-Revision-Date: 2014-11-10 11:10+\n"
+"POT-Creation-Date: 2014-12-20 06:30+0100\n"
+"PO-Revision-Date: 2014-12-20 22:48+\n"
 "Last-Translator: Jeff Huang \n"
 "Language-Team: Chinese (Taiwan) 
(http://www.transifex.com/projects/p/thunar/language/zh_TW/)\n"
 "MIME-Version: 1.0\n"
@@ -155,20 +155,20 @@ msgstr "無法開啟「%s」:%s"
 #. display an error message
 #: ../thunar/thunar-application.c:1362
 #: ../thunar/thunar-properties-dialog.c:672
-#: ../thunar/thunar-standard-view.c:2746 ../thunar/thunar-tree-view.c:1760
+#: ../thunar/thunar-standard-view.c:2747 ../thunar/thunar-tree-view.c:1760
 #, c-format
 msgid "Failed to rename \"%s\""
 msgstr "無法重新命名「%s」"
 
 #: ../thunar/thunar-application.c:1464
 #: ../thunar/thunar-location-buttons.c:1308
-#: ../thunar/thunar-standard-view.c:2296 ../thunar/thunar-tree-view.c:1622
+#: ../thunar/thunar-standard-view.c:2297 ../thunar/thunar-tree-view.c:1622
 msgid "New Folder"
 msgstr "新資料夾"
 
 #: ../thunar/thunar-application.c:1465
 #: ../thunar/thunar-location-buttons.c:1309
-#: ../thunar/thunar-standard-view.c:2297 ../thunar/thunar-tree-view.c:1623
+#: ../thunar/thunar-standard-view.c:2298 ../thunar/thunar-tree-view.c:1623
 msgid "Create New Folder"
 msgstr "建立新資料夾"
 
@@ -181,7 +181,7 @@ msgid "Create New File"
 msgstr "建立新檔案"
 
 #. generate a title for the create dialog
-#: ../thunar/thunar-application.c:1527 ../thunar/thunar-standard-view.c:2341
+#: ../thunar/thunar-application.c:1527 ../thunar/thunar-standard-view.c:2342
 #, c-format
 msgid "Create Document from template \"%s\""
 msgstr "從「%s」模板建立文件"
@@ -497,8 +497,8 @@ msgstr "依需求自動延展欄位(_E)"
 #. the file_time is invalid
 #. reset page title
 #. tell the user that we're unable to determine the file info
-#: ../thunar/thunar-column-model.c:858 ../thunar/thunar-list-model.c:680
-#: ../thunar/thunar-list-model.c:708
+#: ../thunar/thunar-column-model.c:858 ../thunar/thunar-list-model.c:705
+#: ../thunar/thunar-list-model.c:733
 #: ../thunar/thunar-permissions-chooser.c:229 ../thunar/thunar-util.c:454
 #: ../plugins/thunar-apr/thunar-apr-desktop-page.c:503
 #: ../plugins/thunar-apr/thunar-apr-image-page.c:285
@@ -625,88 +625,88 @@ msgid "_Cancel"
 msgstr "取消(_C)"
 
 #. setup the confirmation dialog
-#: ../thunar/thunar-dialogs.c:533
+#: ../thunar/thunar-dialogs.c:535
 msgid "Confirm to replace files"
 msgstr "確認是否取代檔案"
 
-#: ../thunar/thunar-dialogs.c:539
+#: ../thunar/thunar-dialogs.c:541
 msgid "S_kip All"
 msgstr "全部略過(_K)"
 
-#: ../thunar/thunar-dialogs.c:540
+#: ../thunar/thunar-dialogs.c:542
 msgid "_Skip"
 msgstr "略過(_S)"
 
-#: ../thunar/thunar-dialogs.c:541
+#: ../thunar/thunar-dialogs.c:543
 msgid "Replace _All"
 msgstr "全部取代(_A)"
 
-#: ../thunar/thunar-dialogs.c:542
+#: ../thunar/thunar-dialogs.c:544
 msgid "_Replace"
 msgstr "取代(_R)"
 
-#: ../thunar/thunar-dialogs.c:575
+#: ../thunar/thunar-dialogs.c:577
 #, c-format
 msgid "This folder already contains a symbolic link \"%s\"."
 msgstr "此資料夾已經包含符號連結「%s」。"
 
-#: ../thunar/thunar-dialogs.c:580
+#: ../thunar/thunar-dialogs.c:582
 #, c-format
 msgid "This folder already contains a folder \"%s\"."
 msgstr "此資料夾已經包含資料夾「%s」。"
 
-#: ../thunar/thunar-dialogs.c:585
+#: ../thunar/thunar-dialogs.c:587
 #, c-format
 msgid "This folder already contains a file \"%s\"."
 msgstr "此資料夾已經包含檔案「%s」。"
 
-#: ../thunar/thunar-dialogs.c:597
+#: ../thunar/thunar-dialogs.c:599
 msgid "ReplaceDialogPart1|Do you want to replace the link"
 msgstr "ReplaceDialogPart1|您是否想將該連結取代"
 
-#: ../thunar/thunar-dialogs.c:599
+#: ../thunar/thunar-dialogs.c:601
 msgid "ReplaceDialogPart1|Do you want to replace the existing folder"
 msgstr "ReplaceDialogPart1|您是否想將現存資料夾取代"
 
-#: ../thunar/thunar-dialogs.c:601
+#: ../thunar/thunar-dialogs.c:603
 msgid "ReplaceDialogPart1|Do you want to replace the existing file"
 msgstr "ReplaceDialogPart1|您是否想將現存檔案取代"
 
 #. Fourth box (size, volume, free space)
-#: ../thunar/thunar-dialogs.c:618 ../thunar/thunar-dialogs.c:649
+#: ../thunar/thunar-dialogs.c:620 ../thunar/thunar-dialogs.c:651
 #: ../thunar/thunar-properties-dialog.c:457
 msgid "Size:"
 msgstr "大小:"
 
-#: ../thunar/thunar-dialogs.c:618 ../thunar/thunar-dialogs.c:649
+#: ../thunar/thunar-dialogs.c:620 ../thunar/thunar-dialogs.c:651
 #: ../thuna

[Xfce4-commits] [apps/xfce4-screenshooter] branch master updated (ed5f894 -> 04760c0)

2014-12-20 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-screenshooter.

  from  ed5f894   Use filename-friendly date format for saved files (bug 
8445)
   new  cde486a   I18n: Update translation nl (100%).
   new  04760c0   I18n: Update translation zh_TW (100%).

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


Summary of changes:
 po/nl.po|  199 ++---
 po/zh_TW.po |  238 +--
 2 files changed, 139 insertions(+), 298 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-screenshooter] 01/02: I18n: Update translation nl (100%).

2014-12-20 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-screenshooter.

commit cde486a6ff5926c7ca65bd5bf41f4f255a887764
Author: Pjotr 
Date:   Sun Dec 21 00:31:08 2014 +0100

I18n: Update translation nl (100%).

60 translated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).
---
 po/nl.po |  199 +-
 1 file changed, 55 insertions(+), 144 deletions(-)

diff --git a/po/nl.po b/po/nl.po
index 92903d3..515c086 100644
--- a/po/nl.po
+++ b/po/nl.po
@@ -10,8 +10,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Apps\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-12-16 00:31+0100\n"
-"PO-Revision-Date: 2014-12-16 10:07+\n"
+"POT-Creation-Date: 2014-12-20 12:31+0100\n"
+"PO-Revision-Date: 2014-12-20 20:03+\n"
 "Last-Translator: Pjotr \n"
 "Language-Team: Dutch 
(http://www.transifex.com/projects/p/xfce-apps/language/nl/)\n"
 "MIME-Version: 1.0\n"
@@ -20,113 +20,113 @@ msgstr ""
 "Language: nl\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-#: ../lib/screenshooter-dialogs.c:463
+#: ../lib/screenshooter-dialogs.c:466
 #, c-format
 msgid "%.2fKb of %.2fKb"
 msgstr "%.2fKb van %.2fKb"
 
-#: ../lib/screenshooter-dialogs.c:549
+#: ../lib/screenshooter-dialogs.c:552
 msgid "Transfer"
 msgstr "Overdracht"
 
-#: ../lib/screenshooter-dialogs.c:570
+#: ../lib/screenshooter-dialogs.c:573
 msgid ""
 "The screenshot is being "
 "transferred to:"
 msgstr "De schermafdruk wordt 
overgedragen naar:"
 
-#: ../lib/screenshooter-dialogs.c:692 ../lib/screenshooter-dialogs.c:709
-#: ../lib/screenshooter-dialogs.c:902 ../lib/screenshooter-utils.c:64
+#: ../lib/screenshooter-dialogs.c:695 ../lib/screenshooter-dialogs.c:712
+#: ../lib/screenshooter-dialogs.c:905 ../lib/screenshooter-utils.c:64
 #: ../lib/screenshooter-utils.c:96
 #: ../src/xfce4-screenshooter.desktop.in.in.h:1
 #: ../panel-plugin/screenshooter.desktop.in.h:1
 msgid "Screenshot"
 msgstr "Schermafdruk"
 
-#: ../lib/screenshooter-dialogs.c:704
+#: ../lib/screenshooter-dialogs.c:707
 msgid "Take a screenshot"
 msgstr "Schermafdruk maken"
 
-#: ../lib/screenshooter-dialogs.c:719
+#: ../lib/screenshooter-dialogs.c:722
 msgid "Preferences"
 msgstr "Voorkeuren"
 
-#: ../lib/screenshooter-dialogs.c:750
+#: ../lib/screenshooter-dialogs.c:753
 msgid "Region to capture"
 msgstr "Gebied om een 
schermafdruk van te maken"
 
-#: ../lib/screenshooter-dialogs.c:770
+#: ../lib/screenshooter-dialogs.c:773
 msgid "Entire screen"
 msgstr "Volledig scherm"
 
-#: ../lib/screenshooter-dialogs.c:777 ../src/main.c:60
-#: ../panel-plugin/screenshooter-plugin.c:317
+#: ../lib/screenshooter-dialogs.c:780 ../src/main.c:60
+#: ../panel-plugin/screenshooter-plugin.c:318
 msgid "Take a screenshot of the entire screen"
 msgstr "Maak een schermafdruk van het hele scherm"
 
-#: ../lib/screenshooter-dialogs.c:785
+#: ../lib/screenshooter-dialogs.c:788
 msgid "Active window"
 msgstr "Actieve venster"
 
-#: ../lib/screenshooter-dialogs.c:792 ../src/main.c:102
-#: ../panel-plugin/screenshooter-plugin.c:322
+#: ../lib/screenshooter-dialogs.c:795 ../src/main.c:102
+#: ../panel-plugin/screenshooter-plugin.c:323
 msgid "Take a screenshot of the active window"
 msgstr "Maak een schermafdruk van het actieve venster"
 
-#: ../lib/screenshooter-dialogs.c:800
+#: ../lib/screenshooter-dialogs.c:803
 msgid "Select a region"
 msgstr "Kies een gebied"
 
-#: ../lib/screenshooter-dialogs.c:805 ../src/main.c:75
-#: ../panel-plugin/screenshooter-plugin.c:327
+#: ../lib/screenshooter-dialogs.c:808 ../src/main.c:75
+#: ../panel-plugin/screenshooter-plugin.c:328
 msgid ""
 "Select a region to be captured by clicking a point of the screen without "
 "releasing the mouse button, dragging your mouse to the other corner of the "
 "region, and releasing the mouse button."
 msgstr "Kies een gebied voor een schermafdruk, door te klikken op een hoek van 
het gebied zonder de muisknop los te laten. Sleep vervolgens de muis naar de 
diagonaal tegenovergelegen hoek en laat de muisknop los."
 
-#: ../lib/screenshooter-dialogs.c:815
+#: ../lib/screenshooter-dialogs.c:818
 msgid "Capture the mouse pointer"
 msgstr "Muispijl afbeelden"
 
-#: ../lib/screenshooter-dialogs.c:820
+#: ../lib/screenshooter-dialogs.c:823
 msgid "Display the mouse pointer on the screenshot"
 msgstr "Toon muispijl op de schermafdruk"
 
-#: ../lib/screenshooter-dialogs.c:836
+#: ../lib/screenshooter-dialogs.c:839
 msgid "Delay before 
capturing"
 msgstr "Vertraging voor het 
maken van de schermafdruk"
 
-#: ../lib/screenshooter-dialogs.c:858
+#: ../lib/screenshooter-dialogs.c:861
 msgid "Delay in seconds before the screenshot is taken"
 msgstr "Vertraging in seconden voor het maken van een schermafdruk"
 
-#: ../lib/screenshooter-dialogs.c:861
+#: ../lib/screenshooter-dialogs.c:864
 msgid "seconds"
 msgstr "seconden"
 
-#: ../lib/screenshooter-dialogs.c:914
+#: ../lib/screen

[Xfce4-commits] [apps/xfce4-screenshooter] 02/02: I18n: Update translation zh_TW (100%).

2014-12-20 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-screenshooter.

commit 04760c0866df142290957cdad74fc6f1c6ac840f
Author: Jeff Huang 
Date:   Sun Dec 21 00:31:08 2014 +0100

I18n: Update translation zh_TW (100%).

60 translated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).
---
 po/zh_TW.po |  238 +--
 1 file changed, 84 insertions(+), 154 deletions(-)

diff --git a/po/zh_TW.po b/po/zh_TW.po
index 0b66410..48b1474 100644
--- a/po/zh_TW.po
+++ b/po/zh_TW.po
@@ -4,14 +4,15 @@
 # 
 # Translators:
 # Dsewnr Lu , 2007
-# 柏諺 黃 , 2014
+# Jeff Huang , 2014
+# Jeff Huang , 2014
 msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Apps\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-05-05 18:31+0200\n"
-"PO-Revision-Date: 2014-05-07 10:43+\n"
-"Last-Translator: 柏諺 黃 \n"
+"POT-Creation-Date: 2014-12-20 12:31+0100\n"
+"PO-Revision-Date: 2014-12-20 22:49+\n"
+"Last-Translator: Jeff Huang \n"
 "Language-Team: Chinese (Taiwan) 
(http://www.transifex.com/projects/p/xfce-apps/language/zh_TW/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -19,141 +20,149 @@ msgstr ""
 "Language: zh_TW\n"
 "Plural-Forms: nplurals=1; plural=0;\n"
 
-#: ../lib/screenshooter-dialogs.c:453
+#: ../lib/screenshooter-dialogs.c:466
 #, c-format
 msgid "%.2fKb of %.2fKb"
 msgstr "%.2fKb / %.2fKb"
 
-#: ../lib/screenshooter-dialogs.c:539
+#: ../lib/screenshooter-dialogs.c:552
 msgid "Transfer"
 msgstr "傳輸"
 
-#: ../lib/screenshooter-dialogs.c:560
+#: ../lib/screenshooter-dialogs.c:573
 msgid ""
 "The screenshot is being "
 "transferred to:"
 msgstr "螢幕快照將被傳輸至:"
 
-#: ../lib/screenshooter-dialogs.c:682 ../lib/screenshooter-dialogs.c:699
-#: ../lib/screenshooter-dialogs.c:891 ../lib/screenshooter-utils.c:64
+#: ../lib/screenshooter-dialogs.c:695 ../lib/screenshooter-dialogs.c:712
+#: ../lib/screenshooter-dialogs.c:905 ../lib/screenshooter-utils.c:64
 #: ../lib/screenshooter-utils.c:96
 #: ../src/xfce4-screenshooter.desktop.in.in.h:1
 #: ../panel-plugin/screenshooter.desktop.in.h:1
 msgid "Screenshot"
 msgstr "螢幕快照"
 
-#: ../lib/screenshooter-dialogs.c:694
+#: ../lib/screenshooter-dialogs.c:707
 msgid "Take a screenshot"
 msgstr "拍攝螢幕快照"
 
-#: ../lib/screenshooter-dialogs.c:709
+#: ../lib/screenshooter-dialogs.c:722
 msgid "Preferences"
 msgstr "偏好設定"
 
-#: ../lib/screenshooter-dialogs.c:740
+#: ../lib/screenshooter-dialogs.c:753
 msgid "Region to capture"
 msgstr "要抓取的區域"
 
-#: ../lib/screenshooter-dialogs.c:760
+#: ../lib/screenshooter-dialogs.c:773
 msgid "Entire screen"
 msgstr "整個螢幕"
 
-#: ../lib/screenshooter-dialogs.c:767 ../src/main.c:59
-#: ../panel-plugin/screenshooter-plugin.c:317
+#: ../lib/screenshooter-dialogs.c:780 ../src/main.c:60
+#: ../panel-plugin/screenshooter-plugin.c:318
 msgid "Take a screenshot of the entire screen"
 msgstr "拍攝整個螢幕的螢幕快照"
 
-#: ../lib/screenshooter-dialogs.c:775
+#: ../lib/screenshooter-dialogs.c:788
 msgid "Active window"
 msgstr "使用中的視窗"
 
-#: ../lib/screenshooter-dialogs.c:782 ../src/main.c:96
-#: ../panel-plugin/screenshooter-plugin.c:322
+#: ../lib/screenshooter-dialogs.c:795 ../src/main.c:102
+#: ../panel-plugin/screenshooter-plugin.c:323
 msgid "Take a screenshot of the active window"
 msgstr "拍攝使用中視窗的螢幕快照"
 
-#: ../lib/screenshooter-dialogs.c:790
+#: ../lib/screenshooter-dialogs.c:803
 msgid "Select a region"
 msgstr "選取個區域"
 
-#: ../lib/screenshooter-dialogs.c:795 ../src/main.c:74
-#: ../panel-plugin/screenshooter-plugin.c:327
+#: ../lib/screenshooter-dialogs.c:808 ../src/main.c:75
+#: ../panel-plugin/screenshooter-plugin.c:328
 msgid ""
 "Select a region to be captured by clicking a point of the screen without "
 "releasing the mouse button, dragging your mouse to the other corner of the "
 "region, and releasing the mouse button."
 msgstr "先按住螢幕中的某個點且不放開滑鼠按鈕,接著拖曳滑鼠至想抓區區域的對角,最後放開滑鼠按鈕;透過這樣的方式來選取要抓取的區域。"
 
-#: ../lib/screenshooter-dialogs.c:805
+#: ../lib/screenshooter-dialogs.c:818
 msgid "Capture the mouse pointer"
 msgstr "抓取滑鼠指標"
 
-#: ../lib/screenshooter-dialogs.c:810
+#: ../lib/screenshooter-dialogs.c:823
 msgid "Display the mouse pointer on the screenshot"
 msgstr "於螢幕快照中顯示滑鼠指標"
 
-#: ../lib/screenshooter-dialogs.c:826
+#: ../lib/screenshooter-dialogs.c:839
 msgid "Delay before 
capturing"
 msgstr "延遲多久後抓取"
 
-#: ../lib/screenshooter-dialogs.c:848
+#: ../lib/screenshooter-dialogs.c:861
 msgid "Delay in seconds before the screenshot is taken"
 msgstr "拍攝螢幕快照前所要等待的秒數"
 
-#: ../lib/screenshooter-dialogs.c:851
+#: ../lib/screenshooter-dialogs.c:864
 msgid "seconds"
 msgstr "秒"
 
-#: ../lib/screenshooter-dialogs.c:903
+#: ../lib/screenshooter-dialogs.c:917
 msgid "Action"
 msgstr "動作"
 
-#: ../lib/screenshooter-dialogs.c:932
+#: ../lib/screenshooter-dialogs.c:946
 msgid "Action"
 msgstr "動作"
 
 #. Save option radio button
-#: ../lib/screenshooter-dialogs.c:948
+#: ../lib/screenshooter-d

[Xfce4-commits] [www/www.xfce.org] branch master updated (f95ee57 -> b0f2b4e)

2014-12-20 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  f95ee57   I18n: Update translation pt (88%).
   new  b0f2b4e   I18n: Update translation pt (88%).

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/pt.po |   18 +-
 1 file changed, 9 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] [xfce/xfwm4] branch master updated (00df583 -> 4003fc4)

2014-12-20 Thread noreply
This is an automated email from the git hooks/post-receive script.

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

  from  00df583   I18n: Update translation de (100%).
   new  4003fc4   I18n: Update translation he (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/he.po |   11 ++-
 1 file changed, 6 insertions(+), 5 deletions(-)

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


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

2014-12-20 Thread noreply
This is an automated email from the git hooks/post-receive script.

transifex pushed a commit to branch xfce-4.10
in repository xfce/xfwm4.

commit 1f66291b487fdbc020c5eb7261eb9ee2665e55e3
Author: GenghisKhan 
Date:   Sun Dec 21 00:32:14 2014 +0100

I18n: Update translation he (99%).

234 translated messages, 1 untranslated message.

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

diff --git a/po/he.po b/po/he.po
index e028ba0..260ed9c 100644
--- a/po/he.po
+++ b/po/he.po
@@ -4,6 +4,7 @@
 # 
 # Translators:
 # Dotan Kamber , 2004
+# GenghisKhan , 2014
 # Jonatan Perry , 2004
 # Yuval Tanny , 2004,2006
 msgid ""
@@ -11,7 +12,7 @@ msgstr ""
 "Project-Id-Version: Xfwm4\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2013-07-02 23:22+0200\n"
-"PO-Revision-Date: 2014-12-09 12:43+\n"
+"PO-Revision-Date: 2014-12-20 18:51+\n"
 "Last-Translator: GenghisKhan \n"
 "Language-Team: Hebrew 
(http://www.transifex.com/projects/p/xfwm4/language/he/)\n"
 "MIME-Version: 1.0\n"
@@ -271,7 +272,7 @@ msgstr "רחב"
 
 #: ../settings-dialogs/xfwm4-dialog.glade.h:45
 msgid "Windows snapping"
-msgstr "הצמדת פתע של חלונות"
+msgstr "הצמדת חלונות"
 
 #: ../settings-dialogs/xfwm4-dialog.glade.h:46
 msgid "Wrap workspaces when the _pointer reaches the screen edge"
@@ -299,7 +300,7 @@ msgstr "הסתר תוכן חלון בזמן ת_זוזה"
 
 #: ../settings-dialogs/xfwm4-dialog.glade.h:52
 msgid "Box move and resize"
-msgstr "תזוזת ושינוי גודל תא"
+msgstr "הזזה ושינוי גודל של מסגרת"
 
 #: ../settings-dialogs/xfwm4-dialog.glade.h:53
 msgid "The action to perform when the title-bar is double-clicked"
@@ -715,7 +716,7 @@ msgstr "_רצף חלונות אוטומטית בזמן הזזה לעבר קצה
 
 #: ../settings-dialogs/xfwm4-tweaks-dialog.glade.h:21
 msgid "Use _edge resistance instead of window snapping"
-msgstr "השתמש בהתנגדות ק_צה במקום בהצמדת פתע של חלון"
+msgstr "השתמש בהתנגדות ק_צה במקום בהצמדת חלון"
 
 #: ../settings-dialogs/xfwm4-tweaks-dialog.glade.h:22
 msgid "Notify of _urgency by making window's decoration blink"
@@ -923,11 +924,11 @@ msgstr "ש_נה גודל"
 #. 
 #: ../src/menu.c:51
 msgid "Always on Top"
-msgstr "תמיד מעל"
+msgstr "מעל כל שאר החלונות"
 
 #: ../src/menu.c:52
 msgid "Same as Other Windows"
-msgstr "ברמה זהה לחלונות אחרים"
+msgstr "בדומה לחלונות אחרים"
 
 #: ../src/menu.c:53
 msgid "Always Below Other Windows"

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


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

2014-12-20 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 b0f2b4e6618f50114910541c29c96a84a35d95c6
Author: Nuno Miguel 
Date:   Sun Dec 21 00:31:59 2014 +0100

I18n: Update translation pt (88%).

524 translated messages, 67 untranslated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).
---
 lib/po/pt.po |   18 +-
 1 file changed, 9 insertions(+), 9 deletions(-)

diff --git a/lib/po/pt.po b/lib/po/pt.po
index a2f4db2..6dd7859 100644
--- a/lib/po/pt.po
+++ b/lib/po/pt.po
@@ -14,7 +14,7 @@ msgstr ""
 "Project-Id-Version: Xfce Websites\n"
 "Report-Msgid-Bugs-To: https://bugzilla.xfce.org\n";
 "POT-Creation-Date: 2013-07-03 22:08+0200\n"
-"PO-Revision-Date: 2014-12-20 17:28+\n"
+"PO-Revision-Date: 2014-12-20 17:57+\n"
 "Last-Translator: Nuno Miguel \n"
 "Language-Team: Portuguese 
(http://www.transifex.com/projects/p/xfce-www/language/pt/)\n"
 "MIME-Version: 1.0\n"
@@ -165,7 +165,7 @@ msgstr "Buildbot"
 
 #: getinvolved/nav.php:28
 msgid "view the buildslaves activity"
-msgstr "Mantenha-se em contacto com os tradutores actuais. Se a sua linguagem 
já está a ser traduzida, deverá tentar trabalhar em conjunto com os tradutores 
dessa linguagem, e dividir as tarefas a realizar de forma a reduzir a carga de 
trabalho e melhorar a qualidade da tradução. Muitos tradutores ficarão 
satisfeitos por terem alguém com quem possam dividir as tarefas, e poderão até 
gostar que alguém avalie as suas traduções. "
+msgstr "ver a atividade dos trabalhadores"
 
 #: getinvolved/translation.php:10
 msgid ""
@@ -175,7 +175,7 @@ msgid ""
 "view statistics. All translation updates are directly submitted in the http://git.xfce.org\";>Xfce GIT repositories, so they are directly"
 " available for the rest of the world."
-msgstr "O Xfce utiliza a plataforma https://www.transifex.com/\";>Transifex para as traduções. Esta 
plataforma permite-lhe traduzir as aplicações, submeter novos ficheiros 
po, monitorizar traduções e ver as estatísticas. Todas as atualizações 
são enviadas para o servidor http://git.xfce.org\";>Xfce GIT, para 
que fiquem imediatamente disponíveis para utilizxação."
+msgstr "O Xfce utiliza a plataforma https://www.transifex.com/\";>Transifex para as traduções. Esta 
plataforma permite-lhe traduzir as aplicações, submeter novos ficheiros 
po, monitorizar traduções e ver as estatísticas. Todas as atualizações 
são enviadas para o servidor http://git.xfce.org\";>Xfce GIT, para 
que fiquem imediatamente disponíveis para utilização."
 
 #: getinvolved/translation.php:14
 msgid ""
@@ -377,7 +377,7 @@ msgid ""
 "Xfce is a lightweight desktop environment for UNIX-like operating systems. "
 "It aims to be fast and low on system resources, while still being visually "
 "appealing and user friendly."
-msgstr "O Xfce é um ambiente de trabalho para os sistemas Unix. Pretende-se 
que seja rápido, leve e que consuma poucos recursos do computador. Ainda assim, 
também se pretende que seja agradável em termos estéticos e fácil de utilizar."
+msgstr "O Xfce é um ambiente de trabalho para os sistemas UNIX. Pretende-se 
que seja rápido, leve e que consuma poucos recursos do computador. Ainda assim, 
também se pretende que seja agradável em termos estéticos e fácil de utilizar."
 
 #: frontpage.php:72 header.php:60 download/index.php:5 download/nav.php:4
 #: about/news.php:59
@@ -465,7 +465,7 @@ msgid ""
 "recommended that you consult the http://docs.xfce.org/\"; "
 "class=\"external\">documentation about your problem before asking your "
 "question."
-msgstr "Se tiver algum problema que não consegue resolver, aceda ao canal  #xfce em irc.freenode.net. O canal 
tem diversos utilizadores ativos. É altamente recomendável a leitura da http://docs.xfce.org/\"; class=\"external\">documentação antes de 
colocar alguma questão."
+msgstr "Se tiver algum problema que não consegue resolver, aceda ao canal  #xfce em irc.freenode.net. O canal 
tem diversos utilizadores ativos. É altamente recomendável a leitura da http://docs.xfce.org/\"; class=\"external\">documentação antes de 
colocar alguma questão."
 
 #: community/index.php:28 community/nav.php:4
 msgid "Forums"
@@ -1102,7 +1102,7 @@ msgid ""
 "For this release we focused on fixing bugs in all Xfce components. We "
 "managed to close a great number of them thanks to all the persons who "
 "reported them and tested proposed fixes quickly."
-msgstr ""
+msgstr "Neste lançamento fizemos correção de bugs em todos os componentes do 
Xfce. Prestámos grande atenção a grande parte deles graças a todas as pessoas 
que reportaram e testaram as correções rapidamente."
 
 #: news-array.php:99
 msgid ""
@@ -1698,7 +1698,7 @@ msgid ""
 "href=\"http://freedesktop.org/wiki/Standards_2fautostart_2dspec\";>Autostart "
 "Specification - actually Xfce was the first desktop to implement said "
 "feature, but the others were faster to release. ;-)"
-msgstr "No Xfce 

[Xfce4-commits] [xfce/xfwm4] branch xfce-4.10 updated (46920aa -> 1f66291)

2014-12-20 Thread noreply
This is an automated email from the git hooks/post-receive script.

transifex pushed a change to branch xfce-4.10
in repository xfce/xfwm4.

  from  46920aa   I18n: Update translation de (100%).
   new  1f66291   I18n: Update translation he (99%).

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


Summary of changes:
 po/he.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] [xfce/xfwm4] 01/01: I18n: Update translation he (98%).

2014-12-20 Thread noreply
This is an automated email from the git hooks/post-receive script.

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

commit 4003fc45d5cb006b3a982305ae4a4d1282f3792f
Author: GenghisKhan 
Date:   Sun Dec 21 00:32:08 2014 +0100

I18n: Update translation he (98%).

170 translated messages, 2 untranslated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).
---
 po/he.po |   11 ++-
 1 file changed, 6 insertions(+), 5 deletions(-)

diff --git a/po/he.po b/po/he.po
index f0263ea..a799c24 100644
--- a/po/he.po
+++ b/po/he.po
@@ -4,6 +4,7 @@
 # 
 # Translators:
 # Dotan Kamber , 2004
+# GenghisKhan , 2014
 # Jonatan Perry , 2004
 # Yuval Tanny , 2004,2006
 msgid ""
@@ -11,7 +12,7 @@ msgstr ""
 "Project-Id-Version: Xfwm4\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2014-02-24 00:32+0100\n"
-"PO-Revision-Date: 2014-12-09 12:44+\n"
+"PO-Revision-Date: 2014-12-20 18:43+\n"
 "Last-Translator: GenghisKhan \n"
 "Language-Team: Hebrew 
(http://www.transifex.com/projects/p/xfwm4/language/he/)\n"
 "MIME-Version: 1.0\n"
@@ -271,7 +272,7 @@ msgstr "רחב"
 
 #: ../settings-dialogs/xfwm4-dialog.glade.h:45
 msgid "Windows snapping"
-msgstr "הצמדת פתע של חלונות"
+msgstr "הצמדת חלונות"
 
 #: ../settings-dialogs/xfwm4-dialog.glade.h:46
 msgid "With the mouse _pointer"
@@ -449,7 +450,7 @@ msgstr "_רצף חלונות אוטומטית בזמן הזזה לעבר קצה
 
 #: ../settings-dialogs/xfwm4-tweaks-dialog.glade.h:22
 msgid "Use _edge resistance instead of window snapping"
-msgstr "השתמש בהתנגדות ק_צה במקום בהצמדת פתע של חלון"
+msgstr "השתמש בהתנגדות ק_צה במקום בהצמדת חלון"
 
 #: ../settings-dialogs/xfwm4-tweaks-dialog.glade.h:23
 msgid "Notify of _urgency by making window's decoration blink"
@@ -665,11 +666,11 @@ msgstr "ש_נה גודל"
 #. 
 #: ../src/menu.c:51
 msgid "Always on Top"
-msgstr "תמיד מעל"
+msgstr "מעל כל שאר החלונות"
 
 #: ../src/menu.c:52
 msgid "Same as Other Windows"
-msgstr "ברמה זהה לחלונות אחרים"
+msgstr "בדומה לחלונות אחרים"
 
 #: ../src/menu.c:53
 msgid "Always Below Other Windows"

-- 
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-screenshooter] branch master updated (04760c0 -> d5455f0)

2014-12-20 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-screenshooter.

  from  04760c0   I18n: Update translation zh_TW (100%).
   new  d5455f0   I18n: Update translation es (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/es.po |  100 +++---
 1 file changed, 50 insertions(+), 50 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-screenshooter] 01/01: I18n: Update translation es (100%).

2014-12-20 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-screenshooter.

commit d5455f085fb71842759af06cc64ce399e0b2335b
Author: Pablo Roberto Francisco Lezaeta Reyes 
Date:   Sun Dec 21 06:31:17 2014 +0100

I18n: Update translation es (100%).

60 translated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).
---
 po/es.po |  100 +++---
 1 file changed, 50 insertions(+), 50 deletions(-)

diff --git a/po/es.po b/po/es.po
index 2490ba8..192c720 100644
--- a/po/es.po
+++ b/po/es.po
@@ -10,8 +10,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Apps\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-12-17 00:31+0100\n"
-"PO-Revision-Date: 2014-12-20 03:25+\n"
+"POT-Creation-Date: 2014-12-20 12:31+0100\n"
+"PO-Revision-Date: 2014-12-21 04:34+\n"
 "Last-Translator: Pablo Roberto Francisco Lezaeta Reyes \n"
 "Language-Team: Spanish 
(http://www.transifex.com/projects/p/xfce-apps/language/es/)\n"
 "MIME-Version: 1.0\n"
@@ -20,64 +20,64 @@ msgstr ""
 "Language: es\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-#: ../lib/screenshooter-dialogs.c:463
+#: ../lib/screenshooter-dialogs.c:466
 #, c-format
 msgid "%.2fKb of %.2fKb"
 msgstr "%.2f Kb de %.2f Kb"
 
-#: ../lib/screenshooter-dialogs.c:549
+#: ../lib/screenshooter-dialogs.c:552
 msgid "Transfer"
 msgstr "Trasferencia"
 
-#: ../lib/screenshooter-dialogs.c:570
+#: ../lib/screenshooter-dialogs.c:573
 msgid ""
 "The screenshot is being "
 "transferred to:"
 msgstr "Se está trasfiriendo la 
captura a:"
 
-#: ../lib/screenshooter-dialogs.c:692 ../lib/screenshooter-dialogs.c:709
-#: ../lib/screenshooter-dialogs.c:902 ../lib/screenshooter-utils.c:64
+#: ../lib/screenshooter-dialogs.c:695 ../lib/screenshooter-dialogs.c:712
+#: ../lib/screenshooter-dialogs.c:905 ../lib/screenshooter-utils.c:64
 #: ../lib/screenshooter-utils.c:96
 #: ../src/xfce4-screenshooter.desktop.in.in.h:1
 #: ../panel-plugin/screenshooter.desktop.in.h:1
 msgid "Screenshot"
 msgstr "Captura de pantalla"
 
-#: ../lib/screenshooter-dialogs.c:704
+#: ../lib/screenshooter-dialogs.c:707
 msgid "Take a screenshot"
 msgstr "Tome una captura de pantalla"
 
-#: ../lib/screenshooter-dialogs.c:719
+#: ../lib/screenshooter-dialogs.c:722
 msgid "Preferences"
 msgstr "Preferencias"
 
-#: ../lib/screenshooter-dialogs.c:750
+#: ../lib/screenshooter-dialogs.c:753
 msgid "Region to capture"
 msgstr "Zona a capturar"
 
-#: ../lib/screenshooter-dialogs.c:770
+#: ../lib/screenshooter-dialogs.c:773
 msgid "Entire screen"
 msgstr "Toda la pantalla"
 
-#: ../lib/screenshooter-dialogs.c:777 ../src/main.c:60
+#: ../lib/screenshooter-dialogs.c:780 ../src/main.c:60
 #: ../panel-plugin/screenshooter-plugin.c:318
 msgid "Take a screenshot of the entire screen"
 msgstr "Tomar una captura de toda la pantalla"
 
-#: ../lib/screenshooter-dialogs.c:785
+#: ../lib/screenshooter-dialogs.c:788
 msgid "Active window"
 msgstr "Ventana activa"
 
-#: ../lib/screenshooter-dialogs.c:792 ../src/main.c:102
+#: ../lib/screenshooter-dialogs.c:795 ../src/main.c:102
 #: ../panel-plugin/screenshooter-plugin.c:323
 msgid "Take a screenshot of the active window"
 msgstr "Tomar una captura de la ventana activa"
 
-#: ../lib/screenshooter-dialogs.c:800
+#: ../lib/screenshooter-dialogs.c:803
 msgid "Select a region"
 msgstr "Seleccionar una región"
 
-#: ../lib/screenshooter-dialogs.c:805 ../src/main.c:75
+#: ../lib/screenshooter-dialogs.c:808 ../src/main.c:75
 #: ../panel-plugin/screenshooter-plugin.c:328
 msgid ""
 "Select a region to be captured by clicking a point of the screen without "
@@ -85,84 +85,84 @@ msgid ""
 "region, and releasing the mouse button."
 msgstr "Seleccione una región que capturar pulsando en un punto de la pantalla 
sin soltar el botón del ratón, arrastrando el ratón a la otra esquina de la 
región y soltando el botón del ratón."
 
-#: ../lib/screenshooter-dialogs.c:815
+#: ../lib/screenshooter-dialogs.c:818
 msgid "Capture the mouse pointer"
 msgstr "Capturar el puntero del ratón"
 
-#: ../lib/screenshooter-dialogs.c:820
+#: ../lib/screenshooter-dialogs.c:823
 msgid "Display the mouse pointer on the screenshot"
 msgstr "Mostrar el puntero del ratón en la captura"
 
-#: ../lib/screenshooter-dialogs.c:836
+#: ../lib/screenshooter-dialogs.c:839
 msgid "Delay before 
capturing"
 msgstr "Retraso antes de 
capturar"
 
-#: ../lib/screenshooter-dialogs.c:858
+#: ../lib/screenshooter-dialogs.c:861
 msgid "Delay in seconds before the screenshot is taken"
 msgstr "Retraso en segundos antes de que se capture la pantalla"
 
-#: ../lib/screenshooter-dialogs.c:861
+#: ../lib/screenshooter-dialogs.c:864
 msgid "seconds"
 msgstr "segundos"
 
-#: ../lib/screenshooter-dialogs.c:914
+#: ../lib/screenshooter-dialogs.c:917
 msgid "Action"
 msgstr "Acción"
 
-#: ../lib/screenshooter-dialogs.c:943
+#: ../lib/screenshooter-dialogs.c:946
 msgid "Action"
 msgstr "Acc