[Xfce4-commits] [xfce/exo] branch master updated (6ce5020 -> 721be49)

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

bluesabre pushed a 
change to branch 
master
in repository xfce/exo.

  from  6ce5020   Drop unused gdk_screen_* code
   new  721be49   Replace deprecated gdk_screen_* (thanks ninetls)

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:
 exo/exo-icon-view.c | 72 +++--
 1 file changed, 59 insertions(+), 13 deletions(-)

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


[Xfce4-commits] [xfce/exo] 01/01: Replace deprecated gdk_screen_* (thanks ninetls)

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

bluesabre pushed a 
commit to branch 
master
in repository xfce/exo.

commit 721be49f57c9283edb9e621de5defc85b0a6e6ee
Author: Sean Davis 
Date:   Sun Jul 2 22:24:39 2017 -0400

Replace deprecated gdk_screen_* (thanks ninetls)
---
 exo/exo-icon-view.c | 72 +++--
 1 file changed, 59 insertions(+), 13 deletions(-)

diff --git a/exo/exo-icon-view.c b/exo/exo-icon-view.c
index 50059ac..fc99269 100644
--- a/exo/exo-icon-view.c
+++ b/exo/exo-icon-view.c
@@ -356,10 +356,13 @@ static void exo_icon_view_start_editing   
   (ExoIco
   
GdkEvent   *event);
 static void exo_icon_view_stop_editing   
(ExoIconView*icon_view,
   
gbooleancancel_editing);
-static void exo_icon_view_set_pixbuf_column  
(ExoIconView  *icon_view,
-  gint 
 column);
-static void exo_icon_view_set_icon_column
(ExoIconView  *icon_view,
-  gint 
 column);
+static void exo_icon_view_set_pixbuf_column  
(ExoIconView*icon_view,
+  gint 
   column);
+static void exo_icon_view_set_icon_column
(ExoIconView*icon_view,
+  gint 
   column);
+
+static void exo_icon_view_get_screen_dimensions  (gint 
  *width,
+  gint 
  *height);
 
 /* Source side drag signals */
 static void exo_icon_view_drag_begin   (GtkWidget*widget,
@@ -669,6 +672,52 @@ exo_icon_view_get_accessible (GtkWidget *widget)
 }
 
 static void
+exo_icon_view_get_screen_dimensions (gint *width, gint *height)
+{
+#if GTK_CHECK_VERSION(3, 22, 0)
+  GdkDisplay   *display;
+  GdkMonitor   *monitor;
+  GdkRectangle  geometry;
+
+  display = gdk_display_get_default ();
+  monitor = gdk_display_get_primary_monitor (display);
+  gdk_monitor_get_geometry (monitor, );
+
+  if (width != NULL)
+*width = geometry.width;
+  if (height != NULL)
+*height = geometry.height;
+#else
+  if (width != NULL)
+*width = gdk_screen_width ();
+  if (height != NULL)
+*height = gdk_screen_height ();
+#endif
+}
+
+static gint
+exo_icon_view_get_screen_width (void)
+{
+gint width;
+gint height;
+
+exo_icon_view_get_screen_dimensions (, );
+
+return width;
+}
+
+static gint
+exo_icon_view_get_screen_height (void)
+{
+gint width;
+gint height;
+
+exo_icon_view_get_screen_dimensions (, );
+
+return height;
+}
+
+static void
 exo_icon_view_class_init (ExoIconViewClass *klass)
 {
   GtkContainerClass *gtkcontainer_class;
@@ -2870,7 +2919,6 @@ exo_icon_view_key_press_event (GtkWidget   *widget,
GdkEventKey *event)
 {
   ExoIconView *icon_view = EXO_ICON_VIEW (widget);
-  GdkScreen   *screen;
   GdkEvent*new_event;
   gboolean retval;
   gulong   popup_menu_id;
@@ -2897,10 +2945,9 @@ exo_icon_view_key_press_event (GtkWidget   *widget,
   popup_menu_id = g_signal_connect (G_OBJECT (icon_view->priv->search_entry), 
"popup-menu", G_CALLBACK (gtk_true), NULL);
 
   /* move the search window offscreen */
-  screen = gtk_widget_get_screen (GTK_WIDGET (icon_view));
   gtk_window_move (GTK_WINDOW (icon_view->priv->search_window),
-   gdk_screen_get_width (screen) + 1,
-   gdk_screen_get_height (screen) + 1);
+   exo_icon_view_get_screen_width () + 1,
+   exo_icon_view_get_screen_height () + 1);
   gtk_widget_show (icon_view->priv->search_window);
 
   /* allocate a new event to forward */
@@ -9225,7 +9272,6 @@ exo_icon_view_search_position_func (ExoIconView 
*icon_view,
 {
   GtkRequisition requisition;
   GdkWindow *view_window = gtk_widget_get_window (GTK_WIDGET (icon_view));
-  GdkScreen *screen = gdk_window_get_screen (view_window);
   gint   view_width, view_height;
   gint   view_x, view_y;
   gint   x, y;
@@ -9244,15 +9290,15 @@ exo_icon_view_search_position_func (ExoIconView 
*icon_view,
   gtk_widget_size_request (search_dialog, );
 #endif
 
-  if (view_x + view_width - 

[Xfce4-commits] [xfce/exo] branch master updated (ae58072 -> 6ce5020)

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

bluesabre pushed a 
change to branch 
master
in repository xfce/exo.

  from  ae58072   Replace deprecated gdk_screen_make_display_name
   new  6ce5020   Drop unused gdk_screen_* code

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


Summary of changes:
 exo/exo-icon-view.c | 6 --
 1 file changed, 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/exo] 01/01: Drop unused gdk_screen_* code

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

bluesabre pushed a 
commit to branch 
master
in repository xfce/exo.

commit 6ce5020c4119624d0c82b01fc807ba4a06a5cb91
Author: Sean Davis 
Date:   Sun Jul 2 22:01:30 2017 -0400

Drop unused gdk_screen_* code
---
 exo/exo-icon-view.c | 6 --
 1 file changed, 6 deletions(-)

diff --git a/exo/exo-icon-view.c b/exo/exo-icon-view.c
index 25df5fd..50059ac 100644
--- a/exo/exo-icon-view.c
+++ b/exo/exo-icon-view.c
@@ -9224,18 +9224,12 @@ exo_icon_view_search_position_func (ExoIconView 
*icon_view,
 gpointer user_data)
 {
   GtkRequisition requisition;
-  GdkRectangle   monitor;
   GdkWindow *view_window = gtk_widget_get_window (GTK_WIDGET (icon_view));
   GdkScreen *screen = gdk_window_get_screen (view_window);
   gint   view_width, view_height;
   gint   view_x, view_y;
-  gint   monitor_num;
   gint   x, y;
 
-  /* determine the monitor geometry */
-  monitor_num = gdk_screen_get_monitor_at_window (screen, view_window);
-  gdk_screen_get_monitor_geometry (screen, monitor_num, );
-
   /* make sure the search dialog is realized */
   gtk_widget_realize (search_dialog);
 

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


[Xfce4-commits] [xfce/exo] branch master updated (24a2717 -> ae58072)

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

bluesabre pushed a 
change to branch 
master
in repository xfce/exo.

  from  24a2717   Drop non-standard gnome-fs-bookmark and 
gnome-mime-application-x-executable icons
   new  ae58072   Replace deprecated gdk_screen_make_display_name

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


Summary of changes:
 exo-helper/exo-helper.c | 10 ++
 exo/exo-execute.c   | 16 +---
 2 files changed, 15 insertions(+), 11 deletions(-)

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


[Xfce4-commits] [xfce/exo] 01/01: Replace deprecated gdk_screen_make_display_name

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

bluesabre pushed a 
commit to branch 
master
in repository xfce/exo.

commit ae5807267b97ef395d9bc6def13b5f23fdb5015e
Author: Sean Davis 
Date:   Sun Jul 2 21:36:11 2017 -0400

Replace deprecated gdk_screen_make_display_name
---
 exo-helper/exo-helper.c | 10 ++
 exo/exo-execute.c   | 16 +---
 2 files changed, 15 insertions(+), 11 deletions(-)

diff --git a/exo-helper/exo-helper.c b/exo-helper/exo-helper.c
index ad3561a..6bfd202 100644
--- a/exo-helper/exo-helper.c
+++ b/exo-helper/exo-helper.c
@@ -353,12 +353,13 @@ exo_helper_execute (ExoHelper   *helper,
 {
   GTimeVal  previous;
   GTimeVal  current;
+  GdkDisplay   *display;
   gboolean  succeed = FALSE;
   GError   *err = NULL;
   gchar   **commands;
   gchar   **argv;
   gchar*command;
-  gchar*display;
+  gchar*display_name;
   guint n;
   gint  status;
   gint  result;
@@ -405,7 +406,8 @@ exo_helper_execute (ExoHelper   *helper,
 continue;
 
   /* set the display variable */
-  display = gdk_screen_make_display_name (screen);
+  display = gdk_screen_get_display (screen);
+  display_name = g_strdup (gdk_display_get_name (display));
 
   /* try to run the command */
   succeed = g_spawn_async (NULL,
@@ -413,13 +415,13 @@ exo_helper_execute (ExoHelper   *helper,
 NULL,
 G_SPAWN_DO_NOT_REAP_CHILD | G_SPAWN_SEARCH_PATH,
 (GSpawnChildSetupFunc) set_environment,
-display,
+display_name,
 ,
 );
 
   /* cleanup */
   g_strfreev (argv);
-  g_free (display);
+  g_free (display_name);
 
   /* check if the execution was successful */
   if (G_LIKELY (succeed))
diff --git a/exo/exo-execute.c b/exo/exo-execute.c
index c7a756c..3ef7048 100644
--- a/exo/exo-execute.c
+++ b/exo/exo-execute.c
@@ -128,10 +128,11 @@ exo_execute_preferred_application_on_screen (const gchar 
*category,
  GdkScreen   *screen,
  GError **error)
 {
-  gchar   *argv[5];
-  gchar   *display;
-  gint argc = 0;
-  gboolean success;
+  GdkDisplay *display;
+  gchar  *argv[5];
+  gchar  *display_name;
+  gintargc = 0;
+  gbooleansuccess;
 
   g_return_val_if_fail (category != NULL, FALSE);
   g_return_val_if_fail (GDK_IS_SCREEN (screen), FALSE);
@@ -150,7 +151,8 @@ exo_execute_preferred_application_on_screen (const gchar 
*category,
   argv[argc] = NULL;
 
   /* set the display environment variable */
-  display = gdk_screen_make_display_name (screen);
+  display = gdk_screen_get_display (screen);
+  display_name = g_strdup (gdk_display_get_name (display));
 
   /* launch the command */
   success = g_spawn_async (working_directory,
@@ -158,11 +160,11 @@ exo_execute_preferred_application_on_screen (const gchar 
*category,
 envp,
 0,
 (GSpawnChildSetupFunc) set_environment,
-display,
+display_name,
 NULL,
 error);
 
-  g_free (display);
+  g_free (display_name);
   return success;
 }
 

-- 
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/exo] 01/01: Drop non-standard gnome-fs-bookmark and gnome-mime-application-x-executable icons

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

bluesabre pushed a 
commit to branch 
master
in repository xfce/exo.

commit 24a27170604dba7c9e518ce6d0884bb0b5fe819b
Author: Sean Davis 
Date:   Sun Jul 2 20:14:49 2017 -0400

Drop non-standard gnome-fs-bookmark and gnome-mime-application-x-executable 
icons
---
 exo-desktop-item-edit/main.c| 2 +-
 exo-helper/exo-helper-chooser.c | 4 
 2 files changed, 1 insertion(+), 5 deletions(-)

diff --git a/exo-desktop-item-edit/main.c b/exo-desktop-item-edit/main.c
index 5e3eb06..54581f7 100644
--- a/exo-desktop-item-edit/main.c
+++ b/exo-desktop-item-edit/main.c
@@ -246,7 +246,7 @@ main (int argc, char **argv)
   if (exo_str_is_equal (opt_type, G_KEY_FILE_DESKTOP_TYPE_LINK))
 {
   g_key_file_set_value (key_file, G_KEY_FILE_DESKTOP_GROUP,
-G_KEY_FILE_DESKTOP_KEY_ICON, STR_FB (opt_icon, 
"gnome-fs-bookmark"));
+G_KEY_FILE_DESKTOP_KEY_ICON, STR_FB (opt_icon, 
"bookmark-new"));
   g_key_file_set_value (key_file, G_KEY_FILE_DESKTOP_GROUP,
 G_KEY_FILE_DESKTOP_KEY_URL, STR_FB (opt_url, 
""));
 
diff --git a/exo-helper/exo-helper-chooser.c b/exo-helper/exo-helper-chooser.c
index 1c8d50c..1f339d0 100644
--- a/exo-helper/exo-helper-chooser.c
+++ b/exo-helper/exo-helper-chooser.c
@@ -276,10 +276,6 @@ exo_helper_chooser_update (ExoHelperChooser *chooser)
   if (G_UNLIKELY (icon == NULL))
 icon = gtk_icon_theme_load_icon (icon_theme, 
"application-x-executable", icon_size, 0, NULL);
 
-  /* fallback to gnome-mime-application-x-executable */
-  if (G_UNLIKELY (icon == NULL))
-icon = gtk_icon_theme_load_icon (icon_theme, 
"gnome-mime-application-x-executable", icon_size, 0, NULL);
-
   /* setup the icon for the chooser image */
   gtk_image_set_from_pixbuf (GTK_IMAGE (chooser->image), icon);
   if (G_LIKELY (icon != NULL))

-- 
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/exo] branch master updated (1995342 -> 24a2717)

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

bluesabre pushed a 
change to branch 
master
in repository xfce/exo.

  from  1995342   Drop non-standard gnome-fs-* icons
   new  24a2717   Drop non-standard gnome-fs-bookmark and 
gnome-mime-application-x-executable icons

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:
 exo-desktop-item-edit/main.c| 2 +-
 exo-helper/exo-helper-chooser.c | 4 
 2 files changed, 1 insertion(+), 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/exo] 01/01: Drop non-standard gnome-fs-* icons

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

bluesabre pushed a 
commit to branch 
master
in repository xfce/exo.

commit 199534217cfc30c342ea6d881ffebf72ad9d45b0
Author: Sean Davis 
Date:   Sun Jul 2 19:47:55 2017 -0400

Drop non-standard gnome-fs-* icons
---
 exo/exo-thumbnail-preview.c | 10 +-
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/exo/exo-thumbnail-preview.c b/exo/exo-thumbnail-preview.c
index a574c6e..243a6f3 100644
--- a/exo/exo-thumbnail-preview.c
+++ b/exo/exo-thumbnail-preview.c
@@ -300,27 +300,27 @@ _exo_thumbnail_preview_set_uri (ExoThumbnailPreview 
*thumbnail_preview,
   /* icon and size label depends on the mode */
   if (S_ISBLK (statb.st_mode))
 {
-  icon_name = g_strdup ("gnome-fs-blockdev");
+  icon_name = g_strdup ("drive-harddisk");
   size_name = g_strdup (_("Block Device"));
 }
   else if (S_ISCHR (statb.st_mode))
 {
-  icon_name = g_strdup ("gnome-fs-chardev");
+  icon_name = g_strdup ("drive-harddisk");
   size_name = g_strdup (_("Character Device"));
 }
   else if (S_ISDIR (statb.st_mode))
 {
-  icon_name = g_strdup ("gnome-fs-directory");
+  icon_name = g_strdup ("folder");
   size_name = g_strdup (_("Folder"));
 }
   else if (S_ISFIFO (statb.st_mode))
 {
-  icon_name = g_strdup ("gnome-fs-fifo");
+  icon_name = g_strdup ("drive-harddisk");
   size_name = g_strdup (_("FIFO"));
 }
   else if (S_ISSOCK (statb.st_mode))
 {
-  icon_name = g_strdup ("gnome-fs-socket");
+  icon_name = g_strdup ("drive-harddisk");
   size_name = g_strdup (_("Socket"));
 }
   else if (S_ISREG (statb.st_mode))

-- 
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/exo] branch master updated (fd3a75f -> 1995342)

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

bluesabre pushed a 
change to branch 
master
in repository xfce/exo.

  from  fd3a75f   Replace invalid missing-image with image-missing icon
   new  1995342   Drop non-standard gnome-fs-* icons

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:
 exo/exo-thumbnail-preview.c | 10 +-
 1 file changed, 5 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/exo] 01/01: Replace invalid missing-image with image-missing icon

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

bluesabre pushed a 
commit to branch 
master
in repository xfce/exo.

commit fd3a75ff5bf2ec4c20b8bd114d5a70ac911f95b2
Author: Sean Davis 
Date:   Sun Jul 2 19:22:53 2017 -0400

Replace invalid missing-image with image-missing icon
---
 exo/exo-thumbnail-preview.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/exo/exo-thumbnail-preview.c b/exo/exo-thumbnail-preview.c
index 7cb4db2..a574c6e 100644
--- a/exo/exo-thumbnail-preview.c
+++ b/exo/exo-thumbnail-preview.c
@@ -282,7 +282,7 @@ _exo_thumbnail_preview_set_uri (ExoThumbnailPreview 
*thumbnail_preview,
 {
   /* the preview widget is insensitive if we don't have an URI */
   gtk_widget_set_sensitive (GTK_WIDGET (thumbnail_preview), FALSE);
-  gtk_image_set_from_icon_name (GTK_IMAGE (thumbnail_preview->image), 
"missing-image", GTK_ICON_SIZE_DIALOG);
+  gtk_image_set_from_icon_name (GTK_IMAGE (thumbnail_preview->image), 
"image-missing", GTK_ICON_SIZE_DIALOG);
   gtk_label_set_text (GTK_LABEL (thumbnail_preview->name_label), _("No 
file selected"));
 }
   else
@@ -378,7 +378,7 @@ _exo_thumbnail_preview_set_uri (ExoThumbnailPreview 
*thumbnail_preview,
   else
 {
   /* no thumbnail, cannot display anything useful then */
-  gtk_image_set_from_icon_name (GTK_IMAGE 
(thumbnail_preview->image), "missing-image", GTK_ICON_SIZE_DIALOG);
+  gtk_image_set_from_icon_name (GTK_IMAGE 
(thumbnail_preview->image), "image-missing", GTK_ICON_SIZE_DIALOG);
 }
 }
 

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


[Xfce4-commits] [xfce/exo] branch master updated (1314833 -> fd3a75f)

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

bluesabre pushed a 
change to branch 
master
in repository xfce/exo.

  from  1314833   Remove --disable-debug flag from distcheck (thanks 
Skunnyk) (Bug 11556)
   new  fd3a75f   Replace invalid missing-image with image-missing icon

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:
 exo/exo-thumbnail-preview.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

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


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

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

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

commit 774b9e555ac0abf7eae4725891340ac2a23a3343
Author: Anonymous 
Date:   Mon Jul 3 00:32:58 2017 +0200

I18n: Update translation lt (100%).

330 translated messages.

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

diff --git a/po/lt.po b/po/lt.po
index 6a9beb9..74df678 100644
--- a/po/lt.po
+++ b/po/lt.po
@@ -11,7 +11,7 @@ msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2014-10-24 18:31+0200\n"
-"PO-Revision-Date: 2017-04-13 14:26+\n"
+"PO-Revision-Date: 2017-07-02 20:19+\n"
 "Last-Translator: Moo\n"
 "Language-Team: Lithuanian 
(http://www.transifex.com/xfce/xfce-panel-plugins/language/lt/)\n"
 "MIME-Version: 1.0\n"
@@ -938,7 +938,7 @@ msgstr "Pasirinkite iš žemiau esančio duomenų sąrašo 
reikšmę ir spustel
 #. button "move up"
 #: ../panel-plugin/weather-config.c:1914
 msgid "Move u_p"
-msgstr "Perkelti aukšt_yn"
+msgstr "_Pakelti"
 
 #: ../panel-plugin/weather-config.c:1917
 msgid "Move the selected value up in the list of labels to display."
@@ -947,7 +947,7 @@ msgstr "Rodomų duomenų sąraše perkelti pasirinktą reikšmę 
aukštyn."
 #. button "move down"
 #: ../panel-plugin/weather-config.c:1922
 msgid "Move do_wn"
-msgstr "Nuleisti žemy_n"
+msgstr "_Nuleisti"
 
 #: ../panel-plugin/weather-config.c:1925
 msgid "Move the selected value down in the list of labels to display."

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


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

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

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

commit cfe54073a8eaa7e924bb4aa5dfff0f03eb73deaa
Author: Anonymous 
Date:   Mon Jul 3 00:33:09 2017 +0200

I18n: Update translation lt (100%).

227 translated messages.

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

diff --git a/po/lt.po b/po/lt.po
index a28c5e0..1df9ae6 100644
--- a/po/lt.po
+++ b/po/lt.po
@@ -12,7 +12,7 @@ msgstr ""
 "Project-Id-Version: Xfdesktop\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2017-05-04 18:31+0200\n"
-"PO-Revision-Date: 2017-06-20 23:11+\n"
+"PO-Revision-Date: 2017-07-02 20:25+\n"
 "Last-Translator: Moo\n"
 "Language-Team: Lithuanian 
(http://www.transifex.com/xfce/xfdesktop/language/lt/)\n"
 "MIME-Version: 1.0\n"
@@ -445,7 +445,7 @@ msgstr "Darbalaukyje rodyti paslėptus failus"
 
 #: ../settings/xfdesktop-settings-ui.glade.h:34
 msgid "Single _click to activate items"
-msgstr "Aktyvuoti elementus _vienu pelės mygtuko paspaudimu"
+msgstr "Aktyvuoti elementus _vienu pelės mygtuko spustelėjimu"
 
 #: ../settings/xfdesktop-settings-ui.glade.h:35
 msgid "Show icon tooltips. Size:"
@@ -676,7 +676,7 @@ msgstr "Paleidimo klaida"
 #: ../src/xfdesktop-file-icon-manager.c:1017
 #, c-format
 msgid "_Open With \"%s\""
-msgstr "_Atverti su „%s“"
+msgstr "_Atverti naudojant „%s“"
 
 #: ../src/xfdesktop-file-icon-manager.c:1020
 #, c-format
@@ -741,7 +741,7 @@ msgstr "Atverti su"
 #: ../src/xfdesktop-file-icon-manager.c:1607
 #: ../src/xfdesktop-file-icon-manager.c:1621
 msgid "Open With Other _Application..."
-msgstr "Atverti su kita _programa..."
+msgstr "Atverti naudojant kitą _programą..."
 
 #: ../src/xfdesktop-file-icon-manager.c:1639
 msgid "_Paste"
@@ -766,7 +766,7 @@ msgstr "_Pervardinti..."
 
 #: ../src/xfdesktop-file-icon-manager.c:1795
 msgid "Arrange Desktop _Icons"
-msgstr "_Surikiuoti darbalaukio piktogramas"
+msgstr "_Sutvarkyti darbalaukio piktogramas"
 
 #: ../src/xfdesktop-file-icon-manager.c:1804
 msgid "Desktop _Settings..."
@@ -1016,7 +1016,7 @@ msgstr "%s\nDydis: %s\nPaskutinis keitimas: %s"
 
 #: ../src/xfdesktop-special-file-icon.c:564
 msgid "_Empty Trash"
-msgstr "_Ištuštinti šiukšlinę"
+msgstr "_Išvalyti šiukšlinę"
 
 #: ../src/xfdesktop-volume-icon.c:482
 #, c-format

-- 
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 (4a016f7 -> cfe5407)

2017-07-02 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  4a016f7   Improve text-shadow position of fallback style (Bug 
#13609)
   new  cfe5407   I18n: Update translation lt (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/lt.po | 12 ++--
 1 file changed, 6 insertions(+), 6 deletions(-)

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


[Xfce4-commits] [xfce/xfwm4] branch master updated (ee73b70 -> 804e352)

2017-07-02 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  ee73b70   I18n: Update translation lt (100%).
   new  804e352   I18n: Update translation lt (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/lt.po | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

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


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

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

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

commit 804e3528aa66c79ca97d1a5042b5cf17717199c9
Author: Anonymous 
Date:   Mon Jul 3 00:33:17 2017 +0200

I18n: Update translation lt (100%).

172 translated messages.

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

diff --git a/po/lt.po b/po/lt.po
index 9bb9ca5..08c416b 100644
--- a/po/lt.po
+++ b/po/lt.po
@@ -11,7 +11,7 @@ msgstr ""
 "Project-Id-Version: Xfwm4\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2017-05-15 12:31+0200\n"
-"PO-Revision-Date: 2017-06-17 23:49+\n"
+"PO-Revision-Date: 2017-07-02 20:29+\n"
 "Last-Translator: Moo\n"
 "Language-Team: Lithuanian 
(http://www.transifex.com/xfce/xfwm4/language/lt/)\n"
 "MIME-Version: 1.0\n"
@@ -445,7 +445,7 @@ msgstr "Išskleidus, slėpti lango pavadinimą"
 
 #: ../settings-dialogs/xfwm4-tweaks-dialog.glade.h:21
 msgid "Automatically _tile windows when moving toward the screen edge"
-msgstr "Automatiškai iškelti _langus kai jie stumiami link lango krašto"
+msgstr "Automatiškai iškelti _langus kai jie perkeliami link lango krašto"
 
 #: ../settings-dialogs/xfwm4-tweaks-dialog.glade.h:22
 msgid "Use _edge resistance instead of window snapping"
@@ -721,7 +721,7 @@ msgstr "Sunaikinti"
 
 #: ../src/menu.c:70
 msgid "_Quit"
-msgstr "_Baigti"
+msgstr "_Išeiti"
 
 #: ../src/menu.c:71
 msgid "Restart"

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


[Xfce4-commits] [panel-plugins/xfce4-weather-plugin] branch master updated (3e9a7b8 -> 774b9e5)

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

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

  from  3e9a7b8   I18n: Update translation fr (100%).
   new  774b9e5   I18n: Update translation lt (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/lt.po | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

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


[Xfce4-commits] [panel-plugins/xfce4-sensors-plugin] branch master updated (7097780 -> 3ab46ac)

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

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

  from  7097780   I18n: Update translation sk (100%).
   new  3ab46ac   I18n: Update translation lt (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/lt.po | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

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


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

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

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

commit 6c50f3262b85902c1bbd0e64d6d95b004519a40c
Author: Anonymous 
Date:   Mon Jul 3 00:32:07 2017 +0200

I18n: Update translation lt (100%).

72 translated messages.

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

diff --git a/po/lt.po b/po/lt.po
index 56fce94..88421c7 100644
--- a/po/lt.po
+++ b/po/lt.po
@@ -10,7 +10,7 @@ msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2016-09-15 18:31+0200\n"
-"PO-Revision-Date: 2017-06-17 23:29+\n"
+"PO-Revision-Date: 2017-07-02 20:18+\n"
 "Last-Translator: Moo\n"
 "Language-Team: Lithuanian 
(http://www.transifex.com/xfce/xfce-panel-plugins/language/lt/)\n"
 "MIME-Version: 1.0\n"
@@ -177,7 +177,7 @@ msgstr "Jei pažymėta, istorija bus atstatyta su kiekvienu 
nauju Xfce seansu"
 
 #: ../panel-plugin/settings-dialog.ui.h:18
 msgid "Store last copied _image"
-msgstr "Įrašyti paskutinį nukopijuotą _paveikslą"
+msgstr "Saugoti paskutinį nukopijuotą _paveikslą"
 
 #: ../panel-plugin/settings-dialog.ui.h:19
 msgid "If checked, this option allows to store one image inside the history"
@@ -240,7 +240,7 @@ msgstr "Automatiškai įklijuoti pasirinktą elementą iš 
istorijos"
 
 #: ../panel-plugin/settings-dialog.ui.h:34
 msgid "_Paste instantly:"
-msgstr "_Iškart įklijuoti:"
+msgstr "_Iškart įdėti:"
 
 #: ../panel-plugin/settings-dialog.ui.h:35
 msgid "P_osition menu at mouse pointer"
@@ -254,7 +254,7 @@ msgstr "Parodyti iškylantįjį meniu pelės žymeklio vietoje, 
tik xfce4-popup-
 
 #: ../panel-plugin/settings-dialog.ui.h:37
 msgid "_Reorder history items"
-msgstr "_Surūšiuoti istorijos įrašus"
+msgstr "_Surikiuoti istorijos įrašus"
 
 #: ../panel-plugin/settings-dialog.ui.h:38
 msgid ""

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


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

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

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

commit 3ab46acb047d467aacc90463eec1bb8b6b111599
Author: Anonymous 
Date:   Mon Jul 3 00:32:43 2017 +0200

I18n: Update translation lt (100%).

75 translated messages.

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

diff --git a/po/lt.po b/po/lt.po
index 9f1b8b5..eded106 100644
--- a/po/lt.po
+++ b/po/lt.po
@@ -11,7 +11,7 @@ msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2017-03-19 18:31+0100\n"
-"PO-Revision-Date: 2017-06-20 23:02+\n"
+"PO-Revision-Date: 2017-07-02 20:18+\n"
 "Last-Translator: Moo\n"
 "Language-Team: Lithuanian 
(http://www.transifex.com/xfce/xfce-panel-plugins/language/lt/)\n"
 "MIME-Version: 1.0\n"
@@ -129,7 +129,7 @@ msgstr "_Vykdyti du kartus spustelėjus:"
 
 #: ../panel-plugin/sensors-plugin.c:2357
 msgid "_View"
-msgstr "_Rodymas"
+msgstr "_Rodinys"
 
 #: ../panel-plugin/sensors-plugin.c:2392
 msgid "_Miscellaneous"
@@ -347,7 +347,7 @@ msgstr "Xfce4 Jutikliai %s\n"
 
 #: ../src/interface.c:86
 msgid "_Overview"
-msgstr "P_eržiūra"
+msgstr "Apž_valga"
 
 #: ../src/interface.c:106
 msgid "_Tachometers"

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


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

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

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

commit b803770faf6a44dbddb5d6217fb8364faee9a8c7
Author: Anonymous 
Date:   Mon Jul 3 00:32:32 2017 +0200

I18n: Update translation lt (100%).

57 translated messages.

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

diff --git a/po/lt.po b/po/lt.po
index 174c76e..e0fc3ba 100644
--- a/po/lt.po
+++ b/po/lt.po
@@ -10,7 +10,7 @@ msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2013-07-03 21:09+0200\n"
-"PO-Revision-Date: 2017-06-17 23:30+\n"
+"PO-Revision-Date: 2017-07-02 20:14+\n"
 "Last-Translator: Moo\n"
 "Language-Team: Lithuanian 
(http://www.transifex.com/xfce/xfce-panel-plugins/language/lt/)\n"
 "MIME-Version: 1.0\n"
@@ -138,7 +138,7 @@ msgstr "_Pervadinti grupę"
 
 #: ../lib/window.vala:815
 msgid "_Delete group"
-msgstr "P_ašalinti grupę"
+msgstr "_Ištrinti grupę"
 
 #: ../lib/window.vala:1033
 msgid "Are you sure you want to delete this note?"

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


[Xfce4-commits] [panel-plugins/xfce4-notes-plugin] branch master updated (6b381f5 -> b803770)

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

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

  from  6b381f5   I18n: Update translation lt (100%).
   new  b803770   I18n: Update translation lt (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/lt.po | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

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


[Xfce4-commits] [panel-plugins/xfce4-clipman-plugin] branch master updated (c1459e3 -> 6c50f32)

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

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

  from  c1459e3   I18n: Update translation lt (100%).
   new  6c50f32   I18n: Update translation lt (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/lt.po | 8 
 1 file changed, 4 insertions(+), 4 deletions(-)

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


[Xfce4-commits] [panel-plugins/xfce4-mailwatch-plugin] branch master updated (954dc42 -> c66f448)

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

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

  from  954dc42   I18n: Update translation th (100%).
   new  c66f448   I18n: Update translation lt (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/lt.po | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

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


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

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

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

commit c66f4481c6411b8890886ec1831ff1df5d4af262
Author: Anonymous 
Date:   Mon Jul 3 00:32:23 2017 +0200

I18n: Update translation lt (100%).

112 translated messages.

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

diff --git a/po/lt.po b/po/lt.po
index c8f0ad8..8ceb545 100644
--- a/po/lt.po
+++ b/po/lt.po
@@ -10,7 +10,7 @@ msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2015-07-05 18:31+0200\n"
-"PO-Revision-Date: 2017-06-17 23:31+\n"
+"PO-Revision-Date: 2017-07-02 20:17+\n"
 "Last-Translator: Moo\n"
 "Language-Team: Lithuanian 
(http://www.transifex.com/xfce/xfce-panel-plugins/language/lt/)\n"
 "MIME-Version: 1.0\n"
@@ -184,7 +184,7 @@ msgstr "Pašto _serveris:"
 #: ../libmailwatch-core/mailwatch-mailbox-imap.c:1764
 #: ../libmailwatch-core/mailwatch-mailbox-pop3.c:904
 msgid "_Advanced..."
-msgstr "_Sudėtingesni..."
+msgstr "_Išplėstiniai..."
 
 #: ../libmailwatch-core/mailwatch-mailbox-imap.c:1771
 msgid "New mail _folders..."
@@ -239,7 +239,7 @@ msgstr "„MailDir“ įskiepis gali stebėti ar nėra naujų 
laiškų vietiniam
 
 #: ../libmailwatch-core/mailwatch-mailbox-mbox.c:371
 msgid "Mbox _Filename:"
-msgstr "Pašto dėžutės _failo vardas:"
+msgstr "Pašto dėžutės _failo pavadinimas:"
 
 #: ../libmailwatch-core/mailwatch-mailbox-mbox.c:377
 msgid "Select mbox file"

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


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

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

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

commit 3fc6f7c549d87fda83e024c89458e174c01534a1
Author: Anonymous 
Date:   Mon Jul 3 00:31:57 2017 +0200

I18n: Update translation lt (100%).

341 translated messages.

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

diff --git a/po/lt.po b/po/lt.po
index 36ed493..623723a 100644
--- a/po/lt.po
+++ b/po/lt.po
@@ -11,7 +11,7 @@ msgstr ""
 "Project-Id-Version: Xfce Apps\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2017-06-08 00:31+0200\n"
-"PO-Revision-Date: 2017-07-01 12:06+\n"
+"PO-Revision-Date: 2017-07-02 20:02+\n"
 "Last-Translator: Moo\n"
 "Language-Team: Lithuanian 
(http://www.transifex.com/xfce/xfce-apps/language/lt/)\n"
 "MIME-Version: 1.0\n"
@@ -615,7 +615,7 @@ msgstr "Atverti nuostatų dialogą"
 
 #: ../terminal/terminal-window.c:324
 msgid "_View"
-msgstr "R_odymas"
+msgstr "R_odinys"
 
 #: ../terminal/terminal-window.c:325
 msgid "Zoom _In"
@@ -1124,7 +1124,7 @@ msgstr "Įjunkite šį parametrą, norėdami naudoti sistemos 
masto lygiaplotį
 
 #: ../terminal/terminal-preferences.glade.h:74
 msgid "Allow bold te_xt"
-msgstr "Leisti _paryškintą tekstą"
+msgstr "Leisti _pusjuodį tekstą"
 
 #: ../terminal/terminal-preferences.glade.h:75
 msgid ""
@@ -1158,7 +1158,7 @@ msgstr "Fonas"
 
 #: ../terminal/terminal-preferences.glade.h:82
 msgid "Display _menubar in new windows"
-msgstr "_Naujuose languose rodyti meniu juostą"
+msgstr "_Rodyti naujuose languose meniu juostą"
 
 #: ../terminal/terminal-preferences.glade.h:83
 msgid ""
@@ -1167,7 +1167,7 @@ msgstr "Įjunkite šį parametrą, jei norite matyti meniu 
juostą naujai sukurt
 
 #: ../terminal/terminal-preferences.glade.h:84
 msgid "Display _toolbar in new windows"
-msgstr "Naujuose languose rodyti įrankių juos_tą"
+msgstr "Rodyti naujuose languose įra_nkių juostą"
 
 #: ../terminal/terminal-preferences.glade.h:85
 msgid ""
@@ -1461,7 +1461,7 @@ msgstr "Išjungti _meniu susiejimą (pagal numatymą F10)"
 
 #: ../terminal/terminal-preferences.glade.h:158
 msgid "Disable _help window shortcut key (F1 by default)"
-msgstr "Išjungti _pagalbos lango susiejimą (pagal numatymą F1)"
+msgstr "Išjungti ž_inyno lango susiejimą (pagal numatymą F1)"
 
 #: ../terminal/terminal-preferences.glade.h:159
 msgid "Shortcuts"

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


[Xfce4-commits] [apps/xfce4-terminal] branch master updated (f1244d7 -> 3fc6f7c)

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

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

  from  f1244d7   I18n: Update translation lt (100%).
   new  3fc6f7c   I18n: Update translation lt (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/lt.po | 12 ++--
 1 file changed, 6 insertions(+), 6 deletions(-)

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


[Xfce4-commits] [apps/orage] branch master updated (e880fef -> 5a7e982)

2017-07-02 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  e880fef   I18n: Update translation id (100%).
   new  5a7e982   I18n: Update translation lt (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/lt.po | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

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


[Xfce4-commits] [apps/xfce4-notifyd] branch master updated (57f0e77 -> ec2bda3)

2017-07-02 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-notifyd.

  from  57f0e77   I18n: Update translation th (100%).
   new  ec2bda3   I18n: Update translation fr (100%).

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


Summary of changes:
 po/fr.po | 14 +++---
 1 file changed, 7 insertions(+), 7 deletions(-)

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


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

2017-07-02 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-notifyd.

commit ec2bda3a3bdb386a4b050d5b9bfa06db3267d6b8
Author: Yannick Le Guen 
Date:   Mon Jul 3 00:31:43 2017 +0200

I18n: Update translation fr (100%).

54 translated messages.

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

diff --git a/po/fr.po b/po/fr.po
index 69dc2da..4f9a771 100644
--- a/po/fr.po
+++ b/po/fr.po
@@ -14,8 +14,8 @@ msgstr ""
 "Project-Id-Version: Xfce Apps\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2017-01-30 00:30+0100\n"
-"PO-Revision-Date: 2017-02-13 21:09+\n"
-"Last-Translator: Urien Desterres \n"
+"PO-Revision-Date: 2017-07-02 16:56+\n"
+"Last-Translator: Yannick Le Guen \n"
 "Language-Team: French 
(http://www.transifex.com/xfce/xfce-apps/language/fr/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -115,7 +115,7 @@ msgstr "Merci de signaler les bogues à %s.\n"
 
 #: ../xfce4-notifyd-config/xfce4-notifyd-config.glade.h:1
 msgid "only during \"Do not disturb\""
-msgstr "seulement durant \"Ne pas déranger\""
+msgstr "seulement en mode « Ne pas déranger »"
 
 #: ../xfce4-notifyd-config/xfce4-notifyd-config.glade.h:2
 msgid "always"
@@ -123,19 +123,19 @@ msgstr "toujours"
 
 #: ../xfce4-notifyd-config/xfce4-notifyd-config.glade.h:3
 msgid "all"
-msgstr "tout"
+msgstr "toutes"
 
 #: ../xfce4-notifyd-config/xfce4-notifyd-config.glade.h:4
 msgid "all except blocked"
-msgstr "tout sauf ce qui est bloqué"
+msgstr "toutes sauf celles qui sont bloquées"
 
 #: ../xfce4-notifyd-config/xfce4-notifyd-config.glade.h:5
 msgid "only blocked"
-msgstr "seulement les bloqués"
+msgstr "seulement celles qui sont bloquées"
 
 #: ../xfce4-notifyd-config/xfce4-notifyd-config.glade.h:6
 msgid "display with mouse pointer"
-msgstr "afficher avec le pointeur de la souris"
+msgstr "affichage avec le pointeur de la souris"
 
 #: ../xfce4-notifyd-config/xfce4-notifyd-config.glade.h:7
 msgid "primary display"

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


[Xfce4-commits] [apps/xfce4-screenshooter] branch master updated (2e882e3 -> fe96882)

2017-07-02 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  2e882e3   Updates for release
   new  fe96882   I18n: Update translation lt (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/lt.po | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

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


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

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

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

commit 496c0e8cbd88c1be778a4fcef3cdb63fdebd9de7
Author: Anonymous 
Date:   Mon Jul 3 00:31:03 2017 +0200

I18n: Update translation lt (100%).

142 translated messages.

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

diff --git a/po/lt.po b/po/lt.po
index 89c1563..cb7df25 100644
--- a/po/lt.po
+++ b/po/lt.po
@@ -10,7 +10,7 @@ msgstr ""
 "Project-Id-Version: Xfce Apps\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2013-07-03 20:23+0200\n"
-"PO-Revision-Date: 2017-07-01 12:06+\n"
+"PO-Revision-Date: 2017-07-02 20:06+\n"
 "Last-Translator: Moo\n"
 "Language-Team: Lithuanian 
(http://www.transifex.com/xfce/xfce-apps/language/lt/)\n"
 "MIME-Version: 1.0\n"
@@ -157,7 +157,7 @@ msgstr "_Veiksmai"
 
 #: ../src/window.c:1284
 msgid "_View"
-msgstr "R_odymas"
+msgstr "R_odinys"
 
 #: ../src/window.c:1285
 msgid "_Help"

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


[Xfce4-commits] [apps/xfburn] branch master updated (2bc093a -> b3a1dfb)

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

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

  from  2bc093a   I18n: Update translation lt (100%).
   new  b3a1dfb   I18n: Update translation lt (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/lt.po | 10 +-
 1 file changed, 5 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] [apps/mousepad] 01/01: I18n: Update translation lt (100%).

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

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

commit f87cfa643f6bb669c884d1d10f448831fc421e0a
Author: Anonymous 
Date:   Mon Jul 3 00:31:08 2017 +0200

I18n: Update translation lt (100%).

306 translated messages.

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

diff --git a/po/lt.po b/po/lt.po
index 80249dd..fc48e05 100644
--- a/po/lt.po
+++ b/po/lt.po
@@ -10,7 +10,7 @@ msgstr ""
 "Project-Id-Version: Xfce Apps\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2014-07-15 06:30+0200\n"
-"PO-Revision-Date: 2017-06-17 23:26+\n"
+"PO-Revision-Date: 2017-07-02 20:05+\n"
 "Last-Translator: Moo\n"
 "Language-Team: Lithuanian 
(http://www.transifex.com/xfce/xfce-apps/language/lt/)\n"
 "MIME-Version: 1.0\n"
@@ -798,7 +798,7 @@ msgstr "Įrašyti visus dokumentus, esančius šiame lange"
 
 #: ../mousepad/mousepad-window.c:411
 msgid "Re_vert"
-msgstr "Ats_tatyti"
+msgstr "Sugrąž_inti"
 
 #: ../mousepad/mousepad-window.c:411
 msgid "Revert to the saved version of the file"
@@ -814,7 +814,7 @@ msgstr "Spausdinti esamą dokumentą"
 
 #: ../mousepad/mousepad-window.c:413
 msgid "_Detach Tab"
-msgstr "_Atkabinti kortelę"
+msgstr "_Atskirti kortelę"
 
 #: ../mousepad/mousepad-window.c:413
 msgid "Move the current document to a new window"
@@ -987,7 +987,7 @@ msgstr "Perkelia pasirinkimą eilute žemiau"
 
 #: ../mousepad/mousepad-window.c:441
 msgid "Dup_licate Line / Selection"
-msgstr "Dub_liuoti eilutę / pasirinkimą"
+msgstr "Dub_liuoti eilutę / žymėjimą"
 
 #: ../mousepad/mousepad-window.c:441
 msgid "Duplicate the current line or selection"
@@ -1055,7 +1055,7 @@ msgstr "Eiti į konkrečią dokumento vietą"
 
 #: ../mousepad/mousepad-window.c:453
 msgid "_View"
-msgstr "R_odymas"
+msgstr "R_odinys"
 
 #: ../mousepad/mousepad-window.c:454
 msgid "Select F_ont..."
@@ -1244,7 +1244,7 @@ msgstr "K_ita (%d)..."
 #. set action label
 #: ../mousepad/mousepad-window.c:2495
 msgid "Ot_her..."
-msgstr "_Kita"
+msgstr "_Kita..."
 
 #. build description
 #. get the offset length: 'Encoding: '

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

2017-07-02 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 fe96882aa91dc6731aa722cea19b5930281b6121
Author: Anonymous 
Date:   Mon Jul 3 00:31:49 2017 +0200

I18n: Update translation lt (100%).

81 translated messages.

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

diff --git a/po/lt.po b/po/lt.po
index 1a87618..6fd6d8b 100644
--- a/po/lt.po
+++ b/po/lt.po
@@ -10,7 +10,7 @@ msgstr ""
 "Project-Id-Version: Xfce Apps\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2015-11-01 12:31+0100\n"
-"PO-Revision-Date: 2017-06-17 23:24+\n"
+"PO-Revision-Date: 2017-07-02 20:09+\n"
 "Last-Translator: Moo\n"
 "Language-Team: Lithuanian 
(http://www.transifex.com/xfce/xfce-apps/language/lt/)\n"
 "MIME-Version: 1.0\n"
@@ -74,7 +74,7 @@ msgstr "Padaryti aktyvaus lango ekrano kopiją"
 
 #: ../lib/screenshooter-dialogs.c:803
 msgid "Select a region"
-msgstr "Pasirinkite sritį"
+msgstr "Pasirinkti sritį"
 
 #: ../lib/screenshooter-dialogs.c:808 ../src/main.c:75
 #: ../panel-plugin/screenshooter-plugin.c:328

-- 
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/ristretto] branch master updated (40c6641 -> 3af29b3)

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

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

  from  40c6641   I18n: Update translation lt (100%).
   new  3af29b3   I18n: Update translation lt (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/lt.po | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

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


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

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

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

commit 3af29b3dcec06845c6f96953b0b68bc17a6908bb
Author: Anonymous 
Date:   Mon Jul 3 00:31:23 2017 +0200

I18n: Update translation lt (100%).

198 translated messages.

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

diff --git a/po/lt.po b/po/lt.po
index 43748fa..cd7da4a 100644
--- a/po/lt.po
+++ b/po/lt.po
@@ -10,7 +10,7 @@ msgstr ""
 "Project-Id-Version: Xfce Apps\n"
 "Report-Msgid-Bugs-To: xfce-i...@xfce.org\n"
 "POT-Creation-Date: 2017-01-26 18:30+0100\n"
-"PO-Revision-Date: 2017-07-01 12:06+\n"
+"PO-Revision-Date: 2017-07-02 20:07+\n"
 "Last-Translator: Moo\n"
 "Language-Team: Lithuanian 
(http://www.transifex.com/xfce/xfce-apps/language/lt/)\n"
 "MIME-Version: 1.0\n"
@@ -150,7 +150,7 @@ msgstr "_Nuostatos..."
 
 #: ../src/main_window.c:442
 msgid "_View"
-msgstr "R_odymas"
+msgstr "R_odinys"
 
 #. Icon-name
 #: ../src/main_window.c:446
@@ -855,7 +855,7 @@ msgstr "„thumbnailer-service“ nepasiekiamas,\ntodėl 
miniatiūros negali bū
 
 #: ../src/thumbnailer.c:476
 msgid "Do _not show this message again"
-msgstr "_Daugiau nerodyti šio pranešimo"
+msgstr "_Daugiau neberodyti šio pranešimo"
 
 #: ../src/xfce_wallpaper_manager.c:378 ../src/gnome_wallpaper_manager.c:223
 msgid "Style:"

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


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

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

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

commit f00ccac43f940413cc193b10f863392cbd1dc63a
Author: Anonymous 
Date:   Mon Jul 3 00:31:29 2017 +0200

I18n: Update translation lt (100%).

93 translated messages.

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

diff --git a/po/lt.po b/po/lt.po
index 460499e..23c98bf 100644
--- a/po/lt.po
+++ b/po/lt.po
@@ -10,7 +10,7 @@ msgstr ""
 "Project-Id-Version: Xfce Apps\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2014-10-31 18:30+0100\n"
-"PO-Revision-Date: 2017-07-01 12:05+\n"
+"PO-Revision-Date: 2017-07-02 20:06+\n"
 "Last-Translator: Moo\n"
 "Language-Team: Lithuanian 
(http://www.transifex.com/xfce/xfce-apps/language/lt/)\n"
 "MIME-Version: 1.0\n"
@@ -219,7 +219,7 @@ msgstr "_Išskleisti"
 #. View menu
 #: ../src/main_window.c:378
 msgid "_View"
-msgstr "Ro_dymas"
+msgstr "Ro_dinys"
 
 #. Help menu
 #: ../src/main_window.c:402

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

2017-07-02 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 5a7e982a87c759183a7d89bc537f62bae4697051
Author: Anonymous 
Date:   Mon Jul 3 00:31:15 2017 +0200

I18n: Update translation lt (100%).

1030 translated messages.

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

diff --git a/po/lt.po b/po/lt.po
index faa387d..9a9ddec 100644
--- a/po/lt.po
+++ b/po/lt.po
@@ -11,7 +11,7 @@ msgstr ""
 "Project-Id-Version: Xfce Apps\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2014-09-23 12:30+0200\n"
-"PO-Revision-Date: 2017-04-13 14:01+\n"
+"PO-Revision-Date: 2017-07-02 19:54+\n"
 "Last-Translator: Moo\n"
 "Language-Team: Lithuanian 
(http://www.transifex.com/xfce/xfce-apps/language/lt/)\n"
 "MIME-Version: 1.0\n"
@@ -1192,7 +1192,7 @@ msgstr "Veiksmų datos"
 #. View menu
 #: ../src/day-view.c:289 ../src/event-list.c:1104 ../src/mainbox.c:323
 msgid "_View"
-msgstr "R_odymas"
+msgstr "R_odinys"
 
 #. * Go menu   *
 #: ../src/day-view.c:303 ../src/event-list.c:1123

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


[Xfce4-commits] [apps/gigolo] branch master updated (413625e -> 496c0e8)

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

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

  from  413625e   I18n: Update translation lt (100%).
   new  496c0e8   I18n: Update translation lt (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/lt.po | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

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


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

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

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

commit b3a1dfb50e5062172a259e79c2a67d5f168dac02
Author: Anonymous 
Date:   Mon Jul 3 00:31:35 2017 +0200

I18n: Update translation lt (100%).

302 translated messages.

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

diff --git a/po/lt.po b/po/lt.po
index a9f2ea5..373a192 100644
--- a/po/lt.po
+++ b/po/lt.po
@@ -11,7 +11,7 @@ msgstr ""
 "Project-Id-Version: Xfce Apps\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2015-07-20 06:30+0200\n"
-"PO-Revision-Date: 2017-07-01 12:05+\n"
+"PO-Revision-Date: 2017-07-02 19:51+\n"
 "Last-Translator: Moo\n"
 "Language-Team: Lithuanian 
(http://www.transifex.com/xfce/xfce-apps/language/lt/)\n"
 "MIME-Version: 1.0\n"
@@ -799,7 +799,7 @@ msgstr "_Taisa"
 
 #: ../xfburn/xfburn-main-window.c:118
 msgid "Prefere_nces"
-msgstr "_Nustatymai"
+msgstr "_Nuostatos"
 
 #: ../xfburn/xfburn-main-window.c:118
 msgid "Show preferences dialog"
@@ -811,7 +811,7 @@ msgstr "_Veiksmai"
 
 #: ../xfburn/xfburn-main-window.c:121
 msgid "_View"
-msgstr "Ro_dymas"
+msgstr "Ro_dinys"
 
 #: ../xfburn/xfburn-main-window.c:122
 msgid "Refresh"
@@ -1064,11 +1064,11 @@ msgstr "Įrašyti Blu-Ray"
 
 #: ../xfburn/xfburn-preferences-dialog.c:302
 msgid "Sc_an for devices"
-msgstr "_Ieškoti įrenginių"
+msgstr "_Peržiūrėti įrenginius"
 
 #: ../xfburn/xfburn-preferences-dialog.c:329
 msgid "Show warning on _empty speed list"
-msgstr "Rodyti įspėjimą jei _greičių sąrašas tuščias"
+msgstr "Rodyti įspėjimą, jei _greičių sąrašas tuščias"
 
 #: ../xfburn/xfburn-preferences-dialog.c:338
 msgid "FIFO buffer size (in kb)"

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


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

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

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

commit 4ccb7c70e6f7de5f880557e9675f00914365333f
Author: Anonymous 
Date:   Mon Jul 3 00:30:39 2017 +0200

I18n: Update translation lt (100%).

71 translated messages.

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

diff --git a/po/lt.po b/po/lt.po
index f3523e1..a1992c6 100644
--- a/po/lt.po
+++ b/po/lt.po
@@ -12,7 +12,7 @@ msgstr ""
 "Project-Id-Version: Xfce4-appfinder\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2015-02-28 18:30+0100\n"
-"PO-Revision-Date: 2017-06-20 23:07+\n"
+"PO-Revision-Date: 2017-07-02 20:21+\n"
 "Last-Translator: Moo\n"
 "Language-Team: Lithuanian 
(http://www.transifex.com/xfce/xfce4-appfinder/language/lt/)\n"
 "MIME-Version: 1.0\n"
@@ -225,7 +225,7 @@ msgstr "Paleidžiant centruoti langą."
 
 #: ../src/appfinder-preferences.glade.h:14
 msgid "Keep running _instance in the background"
-msgstr "Toliau fone _vykdyti kopiją"
+msgstr "Toliau fone _vykdyti egzempliorių"
 
 #: ../src/appfinder-preferences.glade.h:15
 msgid ""
@@ -296,7 +296,7 @@ msgstr "K_omanda:"
 
 #: ../src/appfinder-preferences.glade.h:31
 msgid "Patte_rn:"
-msgstr "For_ma:"
+msgstr "Ša_blonas:"
 
 #: ../src/appfinder-preferences.glade.h:32
 msgid "_Type:"

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


[Xfce4-commits] [apps/squeeze] branch master updated (5b89e60 -> f00ccac)

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

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

  from  5b89e60   I18n: Update translation lt (100%).
   new  f00ccac   I18n: Update translation lt (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/lt.po | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

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


[Xfce4-commits] [apps/mousepad] branch master updated (a7f548a -> f87cfa6)

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

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

  from  a7f548a   I18n: Update translation th (100%).
   new  f87cfa6   I18n: Update translation lt (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/lt.po | 12 ++--
 1 file changed, 6 insertions(+), 6 deletions(-)

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


[Xfce4-commits] [xfce/xfce4-appfinder] branch master updated (b9317e2 -> 4ccb7c7)

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

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

  from  b9317e2   I18n: Update translation nl (100%).
   new  4ccb7c7   I18n: Update translation lt (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/lt.po | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

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


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

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

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

commit 8827c23369b8bce5c275036871d4eeb2245b7929
Author: Pjotr 
Date:   Mon Jul 3 00:30:21 2017 +0200

I18n: Update translation nl (100%).

738 translated messages.

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

diff --git a/po/nl.po b/po/nl.po
index 355cd71..38394f2 100644
--- a/po/nl.po
+++ b/po/nl.po
@@ -10,7 +10,7 @@ msgstr ""
 "Project-Id-Version: Thunar\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2015-02-19 18:30+0100\n"
-"PO-Revision-Date: 2017-07-01 10:24+\n"
+"PO-Revision-Date: 2017-07-02 18:27+\n"
 "Last-Translator: Pjotr \n"
 "Language-Team: Dutch (http://www.transifex.com/xfce/thunar/language/nl/)\n"
 "MIME-Version: 1.0\n"

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


[Xfce4-commits] [xfce/thunar] branch master updated (deadd0b -> 8827c23)

2017-07-02 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  deadd0b   I18n: Update translation lt (100%).
   new  8827c23   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 | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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


[Xfce4-commits] [xfce/exo] 01/01: Remove --disable-debug flag from distcheck (thanks Skunnyk) (Bug 11556)

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

bluesabre pushed a 
commit to branch 
master
in repository xfce/exo.

commit 1314833ce268a0cc8a012f9bb35532a205cd7677
Author: Sean Davis 
Date:   Sun Jul 2 17:47:18 2017 -0400

Remove --disable-debug flag from distcheck (thanks Skunnyk) (Bug 11556)
---
 Makefile.am | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/Makefile.am b/Makefile.am
index 67cc14f..226e79d 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -15,7 +15,7 @@ SUBDIRS = 
\
 distclean-local:
rm -rf *.cache *~
 
-distuninstallcheck_listfiles = 
\ 
+distuninstallcheck_listfiles = 
\
find . -type f -print | grep -v ./share/icons/hicolor/icon-theme.cache
 
 .PHONY: ChangeLog
@@ -50,7 +50,6 @@ DISTCLEANFILES =  
\
 DISTCHECK_CONFIGURE_FLAGS =\
--enable-gtk-doc\
--enable-gen-doc\
-   --with-gio-module-dir=distcheck \
-   --disable-debug
+   --with-gio-module-dir=distcheck
 
 # vi:set ts=8 sw=8 noet ai nocindent:

-- 
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/exo] branch master updated (184fed9 -> 1314833)

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

bluesabre pushed a 
change to branch 
master
in repository xfce/exo.

  from  184fed9   I18n: Update translation lt (100%).
   new  1314833   Remove --disable-debug flag from distcheck (thanks 
Skunnyk) (Bug 11556)

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:
 Makefile.am | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

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


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

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

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

commit 1ea4e304ed5406a9fb7526c7e12734c0e5e9c4de
Author: Igor 
Date:   Sun Jul 2 18:31:50 2017 +0200

I18n: Update translation ru (100%).

21 translated messages.

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

diff --git a/po/ru.po b/po/ru.po
index 9ac3b3b..e9ddf05 100644
--- a/po/ru.po
+++ b/po/ru.po
@@ -10,8 +10,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2017-06-10 15:06+0200\n"
-"PO-Revision-Date: 2017-06-11 11:16+\n"
+"POT-Creation-Date: 2017-07-02 00:31+0200\n"
+"PO-Revision-Date: 2017-07-02 14:31+\n"
 "Last-Translator: Igor \n"
 "Language-Team: Russian 
(http://www.transifex.com/xfce/xfce-panel-plugins/language/ru/)\n"
 "MIME-Version: 1.0\n"
@@ -20,83 +20,83 @@ msgstr ""
 "Language: ru\n"
 "Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && 
n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || 
(n%100>=11 && n%100<=14)? 2 : 3);\n"
 
-#: ../panel-plugin/xkb-dialog.c:80 ../panel-plugin/xkb.desktop.in.h:1
+#: ../panel-plugin/xkb-dialog.c:82 ../panel-plugin/xkb.desktop.in.h:1
 msgid "Keyboard Layouts"
 msgstr "Раскладки клавиатуры"
 
-#: ../panel-plugin/xkb-dialog.c:95
+#: ../panel-plugin/xkb-dialog.c:98
 msgid "Appearance"
 msgstr "Внешний вид"
 
-#: ../panel-plugin/xkb-dialog.c:105
+#: ../panel-plugin/xkb-dialog.c:108
 msgid "Show layout as:"
 msgstr "Стиль отображения:"
 
-#: ../panel-plugin/xkb-dialog.c:111
+#: ../panel-plugin/xkb-dialog.c:114
 msgid "image"
 msgstr "значок"
 
-#: ../panel-plugin/xkb-dialog.c:112
+#: ../panel-plugin/xkb-dialog.c:115
 msgid "text"
 msgstr "текст"
 
-#: ../panel-plugin/xkb-dialog.c:113
+#: ../panel-plugin/xkb-dialog.c:116
 msgid "system"
-msgstr "система"
+msgstr "системный"
 
-#: ../panel-plugin/xkb-dialog.c:119
+#: ../panel-plugin/xkb-dialog.c:122
 msgid "Layout name:"
 msgstr "Название раскладки:"
 
-#: ../panel-plugin/xkb-dialog.c:125
+#: ../panel-plugin/xkb-dialog.c:128
 msgid "country"
 msgstr "страна"
 
-#: ../panel-plugin/xkb-dialog.c:126
+#: ../panel-plugin/xkb-dialog.c:129
 msgid "language"
 msgstr "язык"
 
-#: ../panel-plugin/xkb-dialog.c:132
+#: ../panel-plugin/xkb-dialog.c:135
 msgid "Widget size:"
 msgstr "Размер виджета:"
 
-#: ../panel-plugin/xkb-dialog.c:146
+#: ../panel-plugin/xkb-dialog.c:148
+msgid "Caps Lock indicator:"
+msgstr "Индикатор Caps Lock:"
+
+#: ../panel-plugin/xkb-dialog.c:160
 msgid "Tooltip icon:"
 msgstr "Значок подсказок:"
 
-#: ../panel-plugin/xkb-dialog.c:157
+#: ../panel-plugin/xkb-dialog.c:172
 msgid "Behavior"
 msgstr "Поведение:"
 
-#: ../panel-plugin/xkb-dialog.c:167
+#: ../panel-plugin/xkb-dialog.c:182
 msgid "Manage layout:"
 msgstr "Управление раскладками:"
 
-#: ../panel-plugin/xkb-dialog.c:173
+#: ../panel-plugin/xkb-dialog.c:188
 msgid "globally"
 msgstr "глобально"
 
-#: ../panel-plugin/xkb-dialog.c:174
+#: ../panel-plugin/xkb-dialog.c:189
 msgid "per window"
 msgstr "для каждого окна"
 
-#: ../panel-plugin/xkb-dialog.c:175
+#: ../panel-plugin/xkb-dialog.c:190
 msgid "per application"
 msgstr "для каждого приложения"
 
-#: ../panel-plugin/xkb-dialog.c:228
+#: ../panel-plugin/xkb-dialog.c:259
 msgid "Keyboard Layouts Plugin"
-msgstr "Раскладки клавиатуры"
+msgstr "Модуль раскладок клавиатуры"
 
-#: ../panel-plugin/xkb-dialog.c:238
+#: ../panel-plugin/xkb-dialog.c:261
 msgid "Allows you to configure and use multiple keyboard layouts."
 msgstr "Позволяет настроить и использовать несколько клавиатурных раскладок."
 
-#: ../panel-plugin/xkb-dialog.c:242
-msgid "Other plugins available here"
-msgstr "Другие расширения доступны здесь"
-
-#: ../panel-plugin/xkb-plugin.c:244
+#: ../panel-plugin/xkb-plugin.c:260
 msgid "Keyboard settings"
 msgstr "Настройка клавиатуры"
 

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


[Xfce4-commits] [panel-plugins/xfce4-weather-plugin] branch master updated (5ba5c0a -> 3e9a7b8)

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

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

  from  5ba5c0a   I18n: Update translation nl (100%).
   new  3e9a7b8   I18n: Update translation fr (100%).

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


Summary of changes:
 po/fr.po | 8 
 1 file changed, 4 insertions(+), 4 deletions(-)

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


[Xfce4-commits] [panel-plugins/xfce4-xkb-plugin] branch master updated (7328908 -> 1ea4e30)

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

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

  from  7328908   I18n: Update translation nl (100%).
   new  888ea9e   I18n: Update translation fr (100%).
   new  68ed3ff   I18n: Update translation hr (100%).
   new  d341c7b   I18n: Update translation lt (100%).
   new  1ea4e30   I18n: Update translation ru (100%).

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


Summary of changes:
 po/fr.po | 50 +-
 po/hr.po | 50 +-
 po/lt.po | 50 +-
 po/ru.po | 54 +++---
 4 files changed, 102 insertions(+), 102 deletions(-)

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


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

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

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

commit 68ed3ffb0bfd2be364988a974d839606633d5afe
Author: Edin Veskovic 
Date:   Sun Jul 2 18:31:50 2017 +0200

I18n: Update translation hr (100%).

21 translated messages.

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

diff --git a/po/hr.po b/po/hr.po
index 854bdd3..78b9262 100644
--- a/po/hr.po
+++ b/po/hr.po
@@ -10,8 +10,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2017-06-10 15:06+0200\n"
-"PO-Revision-Date: 2017-06-11 05:53+\n"
+"POT-Creation-Date: 2017-07-02 00:31+0200\n"
+"PO-Revision-Date: 2017-07-02 12:10+\n"
 "Last-Translator: Edin Veskovic \n"
 "Language-Team: Croatian 
(http://www.transifex.com/xfce/xfce-panel-plugins/language/hr/)\n"
 "MIME-Version: 1.0\n"
@@ -20,83 +20,83 @@ msgstr ""
 "Language: hr\n"
 "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && 
n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
 
-#: ../panel-plugin/xkb-dialog.c:80 ../panel-plugin/xkb.desktop.in.h:1
+#: ../panel-plugin/xkb-dialog.c:82 ../panel-plugin/xkb.desktop.in.h:1
 msgid "Keyboard Layouts"
 msgstr "Rasporedi tipkovnice"
 
-#: ../panel-plugin/xkb-dialog.c:95
+#: ../panel-plugin/xkb-dialog.c:98
 msgid "Appearance"
 msgstr "Izgled"
 
-#: ../panel-plugin/xkb-dialog.c:105
+#: ../panel-plugin/xkb-dialog.c:108
 msgid "Show layout as:"
 msgstr "Pokaži raspored kao:"
 
-#: ../panel-plugin/xkb-dialog.c:111
+#: ../panel-plugin/xkb-dialog.c:114
 msgid "image"
 msgstr "sliku"
 
-#: ../panel-plugin/xkb-dialog.c:112
+#: ../panel-plugin/xkb-dialog.c:115
 msgid "text"
 msgstr "tekst"
 
-#: ../panel-plugin/xkb-dialog.c:113
+#: ../panel-plugin/xkb-dialog.c:116
 msgid "system"
 msgstr "sustav"
 
-#: ../panel-plugin/xkb-dialog.c:119
+#: ../panel-plugin/xkb-dialog.c:122
 msgid "Layout name:"
 msgstr "Izgled rasporeda"
 
-#: ../panel-plugin/xkb-dialog.c:125
+#: ../panel-plugin/xkb-dialog.c:128
 msgid "country"
 msgstr "zemlja"
 
-#: ../panel-plugin/xkb-dialog.c:126
+#: ../panel-plugin/xkb-dialog.c:129
 msgid "language"
 msgstr "jezik"
 
-#: ../panel-plugin/xkb-dialog.c:132
+#: ../panel-plugin/xkb-dialog.c:135
 msgid "Widget size:"
 msgstr "Veličina dodatka"
 
-#: ../panel-plugin/xkb-dialog.c:146
+#: ../panel-plugin/xkb-dialog.c:148
+msgid "Caps Lock indicator:"
+msgstr "Indikator tiskanih slova:"
+
+#: ../panel-plugin/xkb-dialog.c:160
 msgid "Tooltip icon:"
 msgstr "Ikona oblačića:"
 
-#: ../panel-plugin/xkb-dialog.c:157
+#: ../panel-plugin/xkb-dialog.c:172
 msgid "Behavior"
 msgstr "Ponašanje"
 
-#: ../panel-plugin/xkb-dialog.c:167
+#: ../panel-plugin/xkb-dialog.c:182
 msgid "Manage layout:"
 msgstr "Upravljajte raporedom:"
 
-#: ../panel-plugin/xkb-dialog.c:173
+#: ../panel-plugin/xkb-dialog.c:188
 msgid "globally"
 msgstr "globalno"
 
-#: ../panel-plugin/xkb-dialog.c:174
+#: ../panel-plugin/xkb-dialog.c:189
 msgid "per window"
 msgstr "za svaki prozor"
 
-#: ../panel-plugin/xkb-dialog.c:175
+#: ../panel-plugin/xkb-dialog.c:190
 msgid "per application"
 msgstr "za svaki program"
 
-#: ../panel-plugin/xkb-dialog.c:228
+#: ../panel-plugin/xkb-dialog.c:259
 msgid "Keyboard Layouts Plugin"
 msgstr "Priključak rasporeda tipkovnice"
 
-#: ../panel-plugin/xkb-dialog.c:238
+#: ../panel-plugin/xkb-dialog.c:261
 msgid "Allows you to configure and use multiple keyboard layouts."
 msgstr "Dozvoljava vam da konfigurirate i koristite više rasporeda tipkovnice."
 
-#: ../panel-plugin/xkb-dialog.c:242
-msgid "Other plugins available here"
-msgstr "Ostali priključci dostupni ovdje"
-
-#: ../panel-plugin/xkb-plugin.c:244
+#: ../panel-plugin/xkb-plugin.c:260
 msgid "Keyboard settings"
 msgstr "Postavke tipkovnice"
 

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


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

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

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

commit d341c7bbf3317ae663d4481bc05f3e7e4308ec8e
Author: Anonymous 
Date:   Sun Jul 2 18:31:50 2017 +0200

I18n: Update translation lt (100%).

21 translated messages.

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

diff --git a/po/lt.po b/po/lt.po
index e77e708..c98ebb8 100644
--- a/po/lt.po
+++ b/po/lt.po
@@ -9,8 +9,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2017-06-10 15:06+0200\n"
-"PO-Revision-Date: 2017-06-10 21:33+\n"
+"POT-Creation-Date: 2017-07-02 00:31+0200\n"
+"PO-Revision-Date: 2017-07-02 16:20+\n"
 "Last-Translator: Moo\n"
 "Language-Team: Lithuanian 
(http://www.transifex.com/xfce/xfce-panel-plugins/language/lt/)\n"
 "MIME-Version: 1.0\n"
@@ -19,83 +19,83 @@ msgstr ""
 "Language: lt\n"
 "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && 
(n%100<10 || n%100>=20) ? 1 : 2);\n"
 
-#: ../panel-plugin/xkb-dialog.c:80 ../panel-plugin/xkb.desktop.in.h:1
+#: ../panel-plugin/xkb-dialog.c:82 ../panel-plugin/xkb.desktop.in.h:1
 msgid "Keyboard Layouts"
 msgstr "Klaviatūros išdėstymai"
 
-#: ../panel-plugin/xkb-dialog.c:95
+#: ../panel-plugin/xkb-dialog.c:98
 msgid "Appearance"
 msgstr "Išvaizda"
 
-#: ../panel-plugin/xkb-dialog.c:105
+#: ../panel-plugin/xkb-dialog.c:108
 msgid "Show layout as:"
 msgstr "Rodyti išdėstymą kaip:"
 
-#: ../panel-plugin/xkb-dialog.c:111
+#: ../panel-plugin/xkb-dialog.c:114
 msgid "image"
 msgstr "paveikslą"
 
-#: ../panel-plugin/xkb-dialog.c:112
+#: ../panel-plugin/xkb-dialog.c:115
 msgid "text"
 msgstr "tekstą"
 
-#: ../panel-plugin/xkb-dialog.c:113
+#: ../panel-plugin/xkb-dialog.c:116
 msgid "system"
 msgstr "sistema"
 
-#: ../panel-plugin/xkb-dialog.c:119
+#: ../panel-plugin/xkb-dialog.c:122
 msgid "Layout name:"
 msgstr "Išdėstymo pavadinimas:"
 
-#: ../panel-plugin/xkb-dialog.c:125
+#: ../panel-plugin/xkb-dialog.c:128
 msgid "country"
 msgstr "šalis"
 
-#: ../panel-plugin/xkb-dialog.c:126
+#: ../panel-plugin/xkb-dialog.c:129
 msgid "language"
 msgstr "kalba"
 
-#: ../panel-plugin/xkb-dialog.c:132
+#: ../panel-plugin/xkb-dialog.c:135
 msgid "Widget size:"
 msgstr "Valdiklio dydis:"
 
-#: ../panel-plugin/xkb-dialog.c:146
+#: ../panel-plugin/xkb-dialog.c:148
+msgid "Caps Lock indicator:"
+msgstr "Didžiųjų raidžių indikatorius:"
+
+#: ../panel-plugin/xkb-dialog.c:160
 msgid "Tooltip icon:"
 msgstr "Paaiškinimo piktograma:"
 
-#: ../panel-plugin/xkb-dialog.c:157
+#: ../panel-plugin/xkb-dialog.c:172
 msgid "Behavior"
 msgstr "Elgsena"
 
-#: ../panel-plugin/xkb-dialog.c:167
+#: ../panel-plugin/xkb-dialog.c:182
 msgid "Manage layout:"
 msgstr "Išdėstymą taikyti:"
 
-#: ../panel-plugin/xkb-dialog.c:173
+#: ../panel-plugin/xkb-dialog.c:188
 msgid "globally"
 msgstr "bendrai"
 
-#: ../panel-plugin/xkb-dialog.c:174
+#: ../panel-plugin/xkb-dialog.c:189
 msgid "per window"
 msgstr "langui"
 
-#: ../panel-plugin/xkb-dialog.c:175
+#: ../panel-plugin/xkb-dialog.c:190
 msgid "per application"
 msgstr "programai"
 
-#: ../panel-plugin/xkb-dialog.c:228
+#: ../panel-plugin/xkb-dialog.c:259
 msgid "Keyboard Layouts Plugin"
 msgstr "Klaviatūros išdėstymų įskiepis"
 
-#: ../panel-plugin/xkb-dialog.c:238
+#: ../panel-plugin/xkb-dialog.c:261
 msgid "Allows you to configure and use multiple keyboard layouts."
 msgstr "Leidžia konfigūruoti ir naudoti kelis klaviatūros išdėstymus."
 
-#: ../panel-plugin/xkb-dialog.c:242
-msgid "Other plugins available here"
-msgstr "Kiti įskiepiai prieinami čia"
-
-#: ../panel-plugin/xkb-plugin.c:244
+#: ../panel-plugin/xkb-plugin.c:260
 msgid "Keyboard settings"
 msgstr "Klaviatūros nustatymai"
 

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


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

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

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

commit 888ea9ef85b1634b91ebda52cfae1f648f39a6ed
Author: Yannick Le Guen 
Date:   Sun Jul 2 18:31:50 2017 +0200

I18n: Update translation fr (100%).

21 translated messages.

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

diff --git a/po/fr.po b/po/fr.po
index b872d6b..e92ed0b 100644
--- a/po/fr.po
+++ b/po/fr.po
@@ -10,8 +10,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2017-06-10 15:06+0200\n"
-"PO-Revision-Date: 2017-06-11 08:05+\n"
+"POT-Creation-Date: 2017-07-02 00:31+0200\n"
+"PO-Revision-Date: 2017-07-02 12:59+\n"
 "Last-Translator: Yannick Le Guen \n"
 "Language-Team: French 
(http://www.transifex.com/xfce/xfce-panel-plugins/language/fr/)\n"
 "MIME-Version: 1.0\n"
@@ -20,83 +20,83 @@ msgstr ""
 "Language: fr\n"
 "Plural-Forms: nplurals=2; plural=(n > 1);\n"
 
-#: ../panel-plugin/xkb-dialog.c:80 ../panel-plugin/xkb.desktop.in.h:1
+#: ../panel-plugin/xkb-dialog.c:82 ../panel-plugin/xkb.desktop.in.h:1
 msgid "Keyboard Layouts"
 msgstr "Dispositions du clavier"
 
-#: ../panel-plugin/xkb-dialog.c:95
+#: ../panel-plugin/xkb-dialog.c:98
 msgid "Appearance"
 msgstr "Apparence"
 
-#: ../panel-plugin/xkb-dialog.c:105
+#: ../panel-plugin/xkb-dialog.c:108
 msgid "Show layout as:"
 msgstr "Afficher la disposition sous forme de :"
 
-#: ../panel-plugin/xkb-dialog.c:111
+#: ../panel-plugin/xkb-dialog.c:114
 msgid "image"
 msgstr "image"
 
-#: ../panel-plugin/xkb-dialog.c:112
+#: ../panel-plugin/xkb-dialog.c:115
 msgid "text"
 msgstr "texte"
 
-#: ../panel-plugin/xkb-dialog.c:113
+#: ../panel-plugin/xkb-dialog.c:116
 msgid "system"
 msgstr "système"
 
-#: ../panel-plugin/xkb-dialog.c:119
+#: ../panel-plugin/xkb-dialog.c:122
 msgid "Layout name:"
 msgstr "Nom de la disposition :"
 
-#: ../panel-plugin/xkb-dialog.c:125
+#: ../panel-plugin/xkb-dialog.c:128
 msgid "country"
 msgstr "pays"
 
-#: ../panel-plugin/xkb-dialog.c:126
+#: ../panel-plugin/xkb-dialog.c:129
 msgid "language"
 msgstr "langue"
 
-#: ../panel-plugin/xkb-dialog.c:132
+#: ../panel-plugin/xkb-dialog.c:135
 msgid "Widget size:"
 msgstr "Taille du widget :"
 
-#: ../panel-plugin/xkb-dialog.c:146
+#: ../panel-plugin/xkb-dialog.c:148
+msgid "Caps Lock indicator:"
+msgstr "Indicateur Verr Maj :"
+
+#: ../panel-plugin/xkb-dialog.c:160
 msgid "Tooltip icon:"
 msgstr "Icône de l’infobulle :"
 
-#: ../panel-plugin/xkb-dialog.c:157
+#: ../panel-plugin/xkb-dialog.c:172
 msgid "Behavior"
 msgstr "Comportement"
 
-#: ../panel-plugin/xkb-dialog.c:167
+#: ../panel-plugin/xkb-dialog.c:182
 msgid "Manage layout:"
 msgstr "Gérer la disposition :"
 
-#: ../panel-plugin/xkb-dialog.c:173
+#: ../panel-plugin/xkb-dialog.c:188
 msgid "globally"
 msgstr "globalement"
 
-#: ../panel-plugin/xkb-dialog.c:174
+#: ../panel-plugin/xkb-dialog.c:189
 msgid "per window"
 msgstr "par fenêtre"
 
-#: ../panel-plugin/xkb-dialog.c:175
+#: ../panel-plugin/xkb-dialog.c:190
 msgid "per application"
 msgstr "par application"
 
-#: ../panel-plugin/xkb-dialog.c:228
+#: ../panel-plugin/xkb-dialog.c:259
 msgid "Keyboard Layouts Plugin"
 msgstr "Greffon de disposition du clavier"
 
-#: ../panel-plugin/xkb-dialog.c:238
+#: ../panel-plugin/xkb-dialog.c:261
 msgid "Allows you to configure and use multiple keyboard layouts."
 msgstr "Permet l'utilisation de plusieurs dispositions du clavier."
 
-#: ../panel-plugin/xkb-dialog.c:242
-msgid "Other plugins available here"
-msgstr "Autres greffons disponibles ici"
-
-#: ../panel-plugin/xkb-plugin.c:244
+#: ../panel-plugin/xkb-plugin.c:260
 msgid "Keyboard settings"
 msgstr "Paramètres du clavier"
 

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


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

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

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

commit 3e9a7b81fdb1c95dca512fafa3db2e8c0c1c09b1
Author: Yannick Le Guen 
Date:   Sun Jul 2 18:31:42 2017 +0200

I18n: Update translation fr (100%).

330 translated messages.

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

diff --git a/po/fr.po b/po/fr.po
index 4beadd3..149aa34 100644
--- a/po/fr.po
+++ b/po/fr.po
@@ -7,15 +7,15 @@
 # jc1 , 2013-2014
 # jc , 2013
 # Stephane Roy , 2005
-# Yannick Le Guen , 2014-2015
+# Yannick Le Guen , 2014-2015,2017
 msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2014-10-24 18:31+0200\n"
-"PO-Revision-Date: 2015-03-05 21:21+\n"
+"PO-Revision-Date: 2017-07-02 12:56+\n"
 "Last-Translator: Yannick Le Guen \n"
-"Language-Team: French 
(http://www.transifex.com/projects/p/xfce-panel-plugins/language/fr/)\n"
+"Language-Team: French 
(http://www.transifex.com/xfce/xfce-panel-plugins/language/fr/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
@@ -1433,7 +1433,7 @@ msgstr "\nCrédits\n"
 msgid ""
 "\tEncyclopedic information partly taken from\n"
 "\t\t"
-msgstr "\tInformations encyclopédiques en partie tirées de\n\t\t"
+msgstr "\tInformations encyclopédiques en partie extraites de\n\t\t"
 
 #: ../panel-plugin/weather-summary.c:551
 msgid "Wikipedia"

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


[Xfce4-commits] [xfce/libxfce4ui] branch master updated (119e6b6 -> 408df96)

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

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

  from  119e6b6   Add an --enable-tests option
   new  408df96   Fix make distcheck with gladeui2 install path

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


Summary of changes:
 configure.ac.in | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

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


[Xfce4-commits] [xfce/libxfce4ui] 01/01: Fix make distcheck with gladeui2 install path

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

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

commit 408df96e51b1c037a3b7433c355277b6667dda7a
Author: Eric Koegel 
Date:   Sun Jul 2 15:40:21 2017 +0300

Fix make distcheck with gladeui2 install path

Switch to using the datarootdir so we honor $prefix.
---
 configure.ac.in | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/configure.ac.in b/configure.ac.in
index 6120178..aecd8f1 100644
--- a/configure.ac.in
+++ b/configure.ac.in
@@ -236,17 +236,17 @@ AC_SUBST([GLADEUI_PIXMAPDIR])
 
 if test x"$GLADEUI2_FOUND" = x"yes"; then
   if test x"$gladeui2_catalogdir" = x""; then
-GLADEUI2_CATALOGDIR=`$PKG_CONFIG "--variable=catalogdir" "gladeui-2.0"`
+GLADEUI2_CATALOGDIR="${datarootdir}/glade/catalogs"
   else
 GLADEUI2_CATALOGDIR="$gladeui_catalogdir"
   fi
   if test x"$gladeui2_moduledir" = x""; then
-GLADEUI2_MODULEDIR=`$PKG_CONFIG "--variable=moduledir" "gladeui-2.0"`
+GLADEUI2_MODULEDIR="${datarootdir}/glade/modules"
   else
 GLADEUI2_MODULEDIR="$gladeui_moduledir"
   fi
   if test x"$gladeui2_pixmapdir" = x""; then
-GLADEUI2_PIXMAPDIR=`$PKG_CONFIG "--variable=pixmapdir" "gladeui-2.0"`
+GLADEUI2_PIXMAPDIR="${datarootdir}/glade/pixmaps"
   else
 GLADEUI2_PIXMAPDIR="$gladeui_pixmapdir"
   fi

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


[Xfce4-commits] [xfce/libxfce4ui] branch master updated (6eb73dc -> 119e6b6)

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

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

  from  6eb73dc   Remove the filterout from introspection sources
   new  119e6b6   Add an --enable-tests option

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


Summary of changes:
 configure.ac.in   | 11 +++
 tests/Makefile.am |  6 +-
 2 files changed, 16 insertions(+), 1 deletion(-)

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


[Xfce4-commits] [xfce/libxfce4ui] 01/01: Add an --enable-tests option

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

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

commit 119e6b6e953034e5b088b569bd5222cfeb18cd46
Author: Eric Koegel 
Date:   Sun Jul 2 15:12:39 2017 +0300

Add an --enable-tests option

and default it to off since only developers will be interested in
the tests.
---
 configure.ac.in   | 11 +++
 tests/Makefile.am |  6 +-
 2 files changed, 16 insertions(+), 1 deletion(-)

diff --git a/configure.ac.in b/configure.ac.in
index 760a588..6120178 100644
--- a/configure.ac.in
+++ b/configure.ac.in
@@ -315,6 +315,16 @@ dnl *
 XDT_SUPPORTED_FLAGS([GTK_DOC_EXTRA_CFLAGS], [-Wno-sign-compare])
 AC_SUBST([GTK_DOC_EXTRA_CFLAGS])
 
+#
+# Enable Tests
+#
+AC_ARG_ENABLE(tests,
+   [AS_HELP_STRING([--enable-tests],[enable validation test framework 
@<:@default=@<:@disabled@:>@@:>@])],
+   enable_tests=yes, enable_tests=no)
+AC_MSG_CHECKING([whether to build the validation test framework])
+AM_CONDITIONAL(BUILD_TESTS, test "x$enable_tests" = "xyes")
+AC_MSG_RESULT($enable_tests)
+
 dnl *
 dnl *** Substitute platform flags ***
 dnl *
@@ -396,6 +406,7 @@ else
 echo "* X11 session management:yes"
 fi
 echo "* Debug support: $enable_debug"
+echo "* Build tests:   $enable_tests"
 echo "* GNU Visibility:$have_gnuc_visibility"
 if test -n "$with_vendor_info"; then
 echo "* Vendor:$with_vendor_info"
diff --git a/tests/Makefile.am b/tests/Makefile.am
index b3f96b8..383d8da 100644
--- a/tests/Makefile.am
+++ b/tests/Makefile.am
@@ -23,6 +23,8 @@ AM_CPPFLAGS = 
\
 
 noinst_PROGRAMS =
 
+if BUILD_TESTS
+
 # test-ui-gtk2
 if ENABLE_GTK2_LIBRARY
 noinst_PROGRAMS += \
@@ -48,7 +50,7 @@ test_ui_gtk2_LDADD =  \
$(LIBXFCE4UTIL_LIBS) \
$(top_builddir)/libxfce4ui/libxfce4ui-1.la
 
-endif
+endif # ENABLE_GTK2_LIBRARY
 
 # test-ui-gtk3
 noinst_PROGRAMS += \
@@ -73,3 +75,5 @@ test_ui_gtk3_LDADD =  \
$(LIBSTARTUP_NOTIFICATION_LIBS) \
$(LIBXFCE4UTIL_LIBS) \
$(top_builddir)/libxfce4ui/libxfce4ui-2.la
+
+endif # BUILD_TESTS

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


[Xfce4-commits] [xfce/libxfce4ui] 01/01: Remove the filterout from introspection sources

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

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

commit 6eb73dcfccaa3074a78844bec87012e489295c3e
Author: Eric Koegel 
Date:   Sun Jul 2 14:56:24 2017 +0300

Remove the filterout from introspection sources

It's causes a non-POSIX variable name warning.
---
 libxfce4ui/Makefile.am | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libxfce4ui/Makefile.am b/libxfce4ui/Makefile.am
index 5d6d2a8..feaee0d 100644
--- a/libxfce4ui/Makefile.am
+++ b/libxfce4ui/Makefile.am
@@ -121,7 +121,7 @@ INTROSPECTION_COMPILER_ARGS = \
--includedir=.
 
 if HAVE_INTROSPECTION
-introspection_sources = $(filter-out %private.h, $(libxfce4ui_2_la_SOURCES))
+introspection_sources = $(libxfce4ui_2_la_SOURCES)
 
 libxfce4ui-2.0.gir: libxfce4ui-2.la Makefile
 libxfce4ui_2_0_gir_INCLUDES = GObject-2.0 GLib-2.0 Gtk-3.0 libxfce4util-1.0

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


[Xfce4-commits] [xfce/libxfce4ui] branch master updated (7b6db8e -> 6eb73dc)

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

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

  from  7b6db8e   I18n: Update translation ru (100%).
   new  6eb73dc   Remove the filterout from introspection sources

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


Summary of changes:
 libxfce4ui/Makefile.am | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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


[Xfce4-commits] [panel-plugins/xfce4-xkb-plugin] 03/05: I18n: Update translation cs (100%).

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

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

commit b28ef2d22396194cc4f28f32b13f2cbfa190a133
Author: Michal Várady 
Date:   Sun Jul 2 12:31:44 2017 +0200

I18n: Update translation cs (100%).

21 translated messages.

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

diff --git a/po/cs.po b/po/cs.po
index e28d023..dbae292 100644
--- a/po/cs.po
+++ b/po/cs.po
@@ -9,8 +9,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2017-06-10 15:06+0200\n"
-"PO-Revision-Date: 2017-06-11 17:48+\n"
+"POT-Creation-Date: 2017-07-02 00:31+0200\n"
+"PO-Revision-Date: 2017-07-02 05:48+\n"
 "Last-Translator: Michal Várady \n"
 "Language-Team: Czech 
(http://www.transifex.com/xfce/xfce-panel-plugins/language/cs/)\n"
 "MIME-Version: 1.0\n"
@@ -19,83 +19,83 @@ msgstr ""
 "Language: cs\n"
 "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
 
-#: ../panel-plugin/xkb-dialog.c:80 ../panel-plugin/xkb.desktop.in.h:1
+#: ../panel-plugin/xkb-dialog.c:82 ../panel-plugin/xkb.desktop.in.h:1
 msgid "Keyboard Layouts"
 msgstr "Rozložení klávesnice"
 
-#: ../panel-plugin/xkb-dialog.c:95
+#: ../panel-plugin/xkb-dialog.c:98
 msgid "Appearance"
 msgstr "Vzhled"
 
-#: ../panel-plugin/xkb-dialog.c:105
+#: ../panel-plugin/xkb-dialog.c:108
 msgid "Show layout as:"
 msgstr "Zobrazit rozložení jako:"
 
-#: ../panel-plugin/xkb-dialog.c:111
+#: ../panel-plugin/xkb-dialog.c:114
 msgid "image"
 msgstr "obrázek"
 
-#: ../panel-plugin/xkb-dialog.c:112
+#: ../panel-plugin/xkb-dialog.c:115
 msgid "text"
 msgstr "text"
 
-#: ../panel-plugin/xkb-dialog.c:113
+#: ../panel-plugin/xkb-dialog.c:116
 msgid "system"
 msgstr "systém"
 
-#: ../panel-plugin/xkb-dialog.c:119
+#: ../panel-plugin/xkb-dialog.c:122
 msgid "Layout name:"
 msgstr "Název rozložení:"
 
-#: ../panel-plugin/xkb-dialog.c:125
+#: ../panel-plugin/xkb-dialog.c:128
 msgid "country"
 msgstr "země"
 
-#: ../panel-plugin/xkb-dialog.c:126
+#: ../panel-plugin/xkb-dialog.c:129
 msgid "language"
 msgstr "jazyk"
 
-#: ../panel-plugin/xkb-dialog.c:132
+#: ../panel-plugin/xkb-dialog.c:135
 msgid "Widget size:"
 msgstr "Velikost nástroje:"
 
-#: ../panel-plugin/xkb-dialog.c:146
+#: ../panel-plugin/xkb-dialog.c:148
+msgid "Caps Lock indicator:"
+msgstr "Indikátor Caps Lock:"
+
+#: ../panel-plugin/xkb-dialog.c:160
 msgid "Tooltip icon:"
 msgstr "Ikona tipu:"
 
-#: ../panel-plugin/xkb-dialog.c:157
+#: ../panel-plugin/xkb-dialog.c:172
 msgid "Behavior"
 msgstr "Chování"
 
-#: ../panel-plugin/xkb-dialog.c:167
+#: ../panel-plugin/xkb-dialog.c:182
 msgid "Manage layout:"
 msgstr "Spravovat rozložení:"
 
-#: ../panel-plugin/xkb-dialog.c:173
+#: ../panel-plugin/xkb-dialog.c:188
 msgid "globally"
 msgstr "globálně"
 
-#: ../panel-plugin/xkb-dialog.c:174
+#: ../panel-plugin/xkb-dialog.c:189
 msgid "per window"
 msgstr "pro jednotlivá okna"
 
-#: ../panel-plugin/xkb-dialog.c:175
+#: ../panel-plugin/xkb-dialog.c:190
 msgid "per application"
 msgstr "pro jednotlivé aplikace"
 
-#: ../panel-plugin/xkb-dialog.c:228
+#: ../panel-plugin/xkb-dialog.c:259
 msgid "Keyboard Layouts Plugin"
 msgstr "Přepínač rozložení klávesnice"
 
-#: ../panel-plugin/xkb-dialog.c:238
+#: ../panel-plugin/xkb-dialog.c:261
 msgid "Allows you to configure and use multiple keyboard layouts."
 msgstr "Umožňuje konfigurovat a používat více rozložení klávesnic."
 
-#: ../panel-plugin/xkb-dialog.c:242
-msgid "Other plugins available here"
-msgstr "Další zásuvné moduly jsou dostupné zde"
-
-#: ../panel-plugin/xkb-plugin.c:244
+#: ../panel-plugin/xkb-plugin.c:260
 msgid "Keyboard settings"
 msgstr "Nastavení klávesnice"
 

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


[Xfce4-commits] [panel-plugins/xfce4-xkb-plugin] branch master updated (c29d32c -> 7328908)

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

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

  from  c29d32c   Cleanup type casts
   new  42c9598   I18n: Update translation bg (100%).
   new  759902c   I18n: Update translation ca (100%).
   new  b28ef2d   I18n: Update translation cs (100%).
   new  831cbcc   I18n: Update translation ko (100%).
   new  7328908   I18n: Update translation nl (100%).

The 5 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/bg.po | 50 +-
 po/ca.po | 50 +-
 po/cs.po | 50 +-
 po/ko.po | 50 +-
 po/nl.po | 50 +-
 5 files changed, 125 insertions(+), 125 deletions(-)

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


[Xfce4-commits] [panel-plugins/xfce4-xkb-plugin] 04/05: I18n: Update translation ko (100%).

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

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

commit 831cbccb107bedeae99732072ffd49ebb977703b
Author: 박정규(Jung-Kyu Park) 
Date:   Sun Jul 2 12:31:44 2017 +0200

I18n: Update translation ko (100%).

21 translated messages.

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

diff --git a/po/ko.po b/po/ko.po
index b77d959..8974dcc 100644
--- a/po/ko.po
+++ b/po/ko.po
@@ -10,8 +10,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2017-06-10 15:06+0200\n"
-"PO-Revision-Date: 2017-06-10 14:47+\n"
+"POT-Creation-Date: 2017-07-02 00:31+0200\n"
+"PO-Revision-Date: 2017-07-02 06:53+\n"
 "Last-Translator: 박정규(Jung-Kyu Park) \n"
 "Language-Team: Korean 
(http://www.transifex.com/xfce/xfce-panel-plugins/language/ko/)\n"
 "MIME-Version: 1.0\n"
@@ -20,83 +20,83 @@ msgstr ""
 "Language: ko\n"
 "Plural-Forms: nplurals=1; plural=0;\n"
 
-#: ../panel-plugin/xkb-dialog.c:80 ../panel-plugin/xkb.desktop.in.h:1
+#: ../panel-plugin/xkb-dialog.c:82 ../panel-plugin/xkb.desktop.in.h:1
 msgid "Keyboard Layouts"
 msgstr "키보드 배치"
 
-#: ../panel-plugin/xkb-dialog.c:95
+#: ../panel-plugin/xkb-dialog.c:98
 msgid "Appearance"
 msgstr "꾸미기"
 
-#: ../panel-plugin/xkb-dialog.c:105
+#: ../panel-plugin/xkb-dialog.c:108
 msgid "Show layout as:"
 msgstr "다음 방식으로 배치 보기:"
 
-#: ../panel-plugin/xkb-dialog.c:111
+#: ../panel-plugin/xkb-dialog.c:114
 msgid "image"
 msgstr "그림"
 
-#: ../panel-plugin/xkb-dialog.c:112
+#: ../panel-plugin/xkb-dialog.c:115
 msgid "text"
 msgstr "텍스트"
 
-#: ../panel-plugin/xkb-dialog.c:113
+#: ../panel-plugin/xkb-dialog.c:116
 msgid "system"
 msgstr "시스템"
 
-#: ../panel-plugin/xkb-dialog.c:119
+#: ../panel-plugin/xkb-dialog.c:122
 msgid "Layout name:"
 msgstr "레이아웃 이름:"
 
-#: ../panel-plugin/xkb-dialog.c:125
+#: ../panel-plugin/xkb-dialog.c:128
 msgid "country"
 msgstr "국가"
 
-#: ../panel-plugin/xkb-dialog.c:126
+#: ../panel-plugin/xkb-dialog.c:129
 msgid "language"
 msgstr "언어"
 
-#: ../panel-plugin/xkb-dialog.c:132
+#: ../panel-plugin/xkb-dialog.c:135
 msgid "Widget size:"
 msgstr "위젯 크기:"
 
-#: ../panel-plugin/xkb-dialog.c:146
+#: ../panel-plugin/xkb-dialog.c:148
+msgid "Caps Lock indicator:"
+msgstr "Caps Lock 표시기:"
+
+#: ../panel-plugin/xkb-dialog.c:160
 msgid "Tooltip icon:"
 msgstr "툴팁 아이콘:"
 
-#: ../panel-plugin/xkb-dialog.c:157
+#: ../panel-plugin/xkb-dialog.c:172
 msgid "Behavior"
 msgstr "움직임"
 
-#: ../panel-plugin/xkb-dialog.c:167
+#: ../panel-plugin/xkb-dialog.c:182
 msgid "Manage layout:"
 msgstr "배치 관리:"
 
-#: ../panel-plugin/xkb-dialog.c:173
+#: ../panel-plugin/xkb-dialog.c:188
 msgid "globally"
 msgstr "전역"
 
-#: ../panel-plugin/xkb-dialog.c:174
+#: ../panel-plugin/xkb-dialog.c:189
 msgid "per window"
 msgstr "창별"
 
-#: ../panel-plugin/xkb-dialog.c:175
+#: ../panel-plugin/xkb-dialog.c:190
 msgid "per application"
 msgstr "프로그램별"
 
-#: ../panel-plugin/xkb-dialog.c:228
+#: ../panel-plugin/xkb-dialog.c:259
 msgid "Keyboard Layouts Plugin"
 msgstr "키보드 배치 플러그인"
 
-#: ../panel-plugin/xkb-dialog.c:238
+#: ../panel-plugin/xkb-dialog.c:261
 msgid "Allows you to configure and use multiple keyboard layouts."
 msgstr "다중 키보드 배치를 설정하고 사용할 수 있게 합니다."
 
-#: ../panel-plugin/xkb-dialog.c:242
-msgid "Other plugins available here"
-msgstr "다른 플러그인은 여기에 있습니다"
-
-#: ../panel-plugin/xkb-plugin.c:244
+#: ../panel-plugin/xkb-plugin.c:260
 msgid "Keyboard settings"
 msgstr "키보드 설정"
 

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


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

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

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

commit 759902c9ab5cee791bd16081c57cc7974a2d8eff
Author: Robert Antoni Buj Gelonch 
Date:   Sun Jul 2 12:31:44 2017 +0200

I18n: Update translation ca (100%).

21 translated messages.

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

diff --git a/po/ca.po b/po/ca.po
index d9e404f..e536186 100644
--- a/po/ca.po
+++ b/po/ca.po
@@ -12,8 +12,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2017-06-10 15:06+0200\n"
-"PO-Revision-Date: 2017-06-10 16:55+\n"
+"POT-Creation-Date: 2017-07-02 00:31+0200\n"
+"PO-Revision-Date: 2017-07-02 08:53+\n"
 "Last-Translator: Robert Antoni Buj Gelonch \n"
 "Language-Team: Catalan 
(http://www.transifex.com/xfce/xfce-panel-plugins/language/ca/)\n"
 "MIME-Version: 1.0\n"
@@ -22,83 +22,83 @@ msgstr ""
 "Language: ca\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-#: ../panel-plugin/xkb-dialog.c:80 ../panel-plugin/xkb.desktop.in.h:1
+#: ../panel-plugin/xkb-dialog.c:82 ../panel-plugin/xkb.desktop.in.h:1
 msgid "Keyboard Layouts"
 msgstr "Disposicions de teclats"
 
-#: ../panel-plugin/xkb-dialog.c:95
+#: ../panel-plugin/xkb-dialog.c:98
 msgid "Appearance"
 msgstr "Aparença"
 
-#: ../panel-plugin/xkb-dialog.c:105
+#: ../panel-plugin/xkb-dialog.c:108
 msgid "Show layout as:"
 msgstr "Mostra la disposició com:"
 
-#: ../panel-plugin/xkb-dialog.c:111
+#: ../panel-plugin/xkb-dialog.c:114
 msgid "image"
 msgstr "imatge"
 
-#: ../panel-plugin/xkb-dialog.c:112
+#: ../panel-plugin/xkb-dialog.c:115
 msgid "text"
 msgstr "text"
 
-#: ../panel-plugin/xkb-dialog.c:113
+#: ../panel-plugin/xkb-dialog.c:116
 msgid "system"
 msgstr "sistema"
 
-#: ../panel-plugin/xkb-dialog.c:119
+#: ../panel-plugin/xkb-dialog.c:122
 msgid "Layout name:"
 msgstr "Nom de la disposició:"
 
-#: ../panel-plugin/xkb-dialog.c:125
+#: ../panel-plugin/xkb-dialog.c:128
 msgid "country"
 msgstr "país"
 
-#: ../panel-plugin/xkb-dialog.c:126
+#: ../panel-plugin/xkb-dialog.c:129
 msgid "language"
 msgstr "idioma"
 
-#: ../panel-plugin/xkb-dialog.c:132
+#: ../panel-plugin/xkb-dialog.c:135
 msgid "Widget size:"
 msgstr "Mida de l'estri:"
 
-#: ../panel-plugin/xkb-dialog.c:146
+#: ../panel-plugin/xkb-dialog.c:148
+msgid "Caps Lock indicator:"
+msgstr "Indicador de Bloq Maj:"
+
+#: ../panel-plugin/xkb-dialog.c:160
 msgid "Tooltip icon:"
 msgstr "Icona de l'indicador de funció:"
 
-#: ../panel-plugin/xkb-dialog.c:157
+#: ../panel-plugin/xkb-dialog.c:172
 msgid "Behavior"
 msgstr "Comportament"
 
-#: ../panel-plugin/xkb-dialog.c:167
+#: ../panel-plugin/xkb-dialog.c:182
 msgid "Manage layout:"
 msgstr "Gestiona el tipus:"
 
-#: ../panel-plugin/xkb-dialog.c:173
+#: ../panel-plugin/xkb-dialog.c:188
 msgid "globally"
 msgstr "globalment"
 
-#: ../panel-plugin/xkb-dialog.c:174
+#: ../panel-plugin/xkb-dialog.c:189
 msgid "per window"
 msgstr "per finestra"
 
-#: ../panel-plugin/xkb-dialog.c:175
+#: ../panel-plugin/xkb-dialog.c:190
 msgid "per application"
 msgstr "per aplicació"
 
-#: ../panel-plugin/xkb-dialog.c:228
+#: ../panel-plugin/xkb-dialog.c:259
 msgid "Keyboard Layouts Plugin"
 msgstr "Connector de les disposicions del teclat"
 
-#: ../panel-plugin/xkb-dialog.c:238
+#: ../panel-plugin/xkb-dialog.c:261
 msgid "Allows you to configure and use multiple keyboard layouts."
 msgstr "Us permet configurar i utilitzar múltiples disposicions de teclats."
 
-#: ../panel-plugin/xkb-dialog.c:242
-msgid "Other plugins available here"
-msgstr "Altres connectors disponibles"
-
-#: ../panel-plugin/xkb-plugin.c:244
+#: ../panel-plugin/xkb-plugin.c:260
 msgid "Keyboard settings"
 msgstr "Ajusts del teclat"
 

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


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

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

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

commit 42c9598572d36302807565fd0e0df484189fd6a7
Author: Kiril Kirilov 
Date:   Sun Jul 2 12:31:44 2017 +0200

I18n: Update translation bg (100%).

21 translated messages.

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

diff --git a/po/bg.po b/po/bg.po
index 91da9be..bce1b89 100644
--- a/po/bg.po
+++ b/po/bg.po
@@ -10,8 +10,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2017-06-10 15:06+0200\n"
-"PO-Revision-Date: 2017-06-10 15:13+\n"
+"POT-Creation-Date: 2017-07-02 00:31+0200\n"
+"PO-Revision-Date: 2017-07-02 06:38+\n"
 "Last-Translator: Kiril Kirilov \n"
 "Language-Team: Bulgarian 
(http://www.transifex.com/xfce/xfce-panel-plugins/language/bg/)\n"
 "MIME-Version: 1.0\n"
@@ -20,83 +20,83 @@ msgstr ""
 "Language: bg\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-#: ../panel-plugin/xkb-dialog.c:80 ../panel-plugin/xkb.desktop.in.h:1
+#: ../panel-plugin/xkb-dialog.c:82 ../panel-plugin/xkb.desktop.in.h:1
 msgid "Keyboard Layouts"
 msgstr "Клавиатурни подредби"
 
-#: ../panel-plugin/xkb-dialog.c:95
+#: ../panel-plugin/xkb-dialog.c:98
 msgid "Appearance"
 msgstr "Външен вид"
 
-#: ../panel-plugin/xkb-dialog.c:105
+#: ../panel-plugin/xkb-dialog.c:108
 msgid "Show layout as:"
 msgstr "Показване на подредбата като:"
 
-#: ../panel-plugin/xkb-dialog.c:111
+#: ../panel-plugin/xkb-dialog.c:114
 msgid "image"
 msgstr "картинка"
 
-#: ../panel-plugin/xkb-dialog.c:112
+#: ../panel-plugin/xkb-dialog.c:115
 msgid "text"
 msgstr "текст"
 
-#: ../panel-plugin/xkb-dialog.c:113
+#: ../panel-plugin/xkb-dialog.c:116
 msgid "system"
 msgstr "система"
 
-#: ../panel-plugin/xkb-dialog.c:119
+#: ../panel-plugin/xkb-dialog.c:122
 msgid "Layout name:"
 msgstr "Име на подредбата:"
 
-#: ../panel-plugin/xkb-dialog.c:125
+#: ../panel-plugin/xkb-dialog.c:128
 msgid "country"
 msgstr "страна"
 
-#: ../panel-plugin/xkb-dialog.c:126
+#: ../panel-plugin/xkb-dialog.c:129
 msgid "language"
 msgstr "език"
 
-#: ../panel-plugin/xkb-dialog.c:132
+#: ../panel-plugin/xkb-dialog.c:135
 msgid "Widget size:"
 msgstr "Размер на джаджа:"
 
-#: ../panel-plugin/xkb-dialog.c:146
+#: ../panel-plugin/xkb-dialog.c:148
+msgid "Caps Lock indicator:"
+msgstr "Caps Lock индикатор:"
+
+#: ../panel-plugin/xkb-dialog.c:160
 msgid "Tooltip icon:"
 msgstr "Икона на подсказката:"
 
-#: ../panel-plugin/xkb-dialog.c:157
+#: ../panel-plugin/xkb-dialog.c:172
 msgid "Behavior"
 msgstr "Поведение"
 
-#: ../panel-plugin/xkb-dialog.c:167
+#: ../panel-plugin/xkb-dialog.c:182
 msgid "Manage layout:"
 msgstr "Управлявай подредбата:"
 
-#: ../panel-plugin/xkb-dialog.c:173
+#: ../panel-plugin/xkb-dialog.c:188
 msgid "globally"
 msgstr "глобално"
 
-#: ../panel-plugin/xkb-dialog.c:174
+#: ../panel-plugin/xkb-dialog.c:189
 msgid "per window"
 msgstr "за всеки прозорец"
 
-#: ../panel-plugin/xkb-dialog.c:175
+#: ../panel-plugin/xkb-dialog.c:190
 msgid "per application"
 msgstr "за всяко приложение"
 
-#: ../panel-plugin/xkb-dialog.c:228
+#: ../panel-plugin/xkb-dialog.c:259
 msgid "Keyboard Layouts Plugin"
 msgstr "Клавиатурна подредба"
 
-#: ../panel-plugin/xkb-dialog.c:238
+#: ../panel-plugin/xkb-dialog.c:261
 msgid "Allows you to configure and use multiple keyboard layouts."
 msgstr "Позволява да конфигурирате и използвате повече от една клавиатурна 
подредба."
 
-#: ../panel-plugin/xkb-dialog.c:242
-msgid "Other plugins available here"
-msgstr "Тук ще намерите други добавки"
-
-#: ../panel-plugin/xkb-plugin.c:244
+#: ../panel-plugin/xkb-plugin.c:260
 msgid "Keyboard settings"
 msgstr "Настройка на клавиатурата"
 

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


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

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

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

commit 7328908aa205ed656e26761ce12e5841e68ed046
Author: Pjotr 
Date:   Sun Jul 2 12:31:44 2017 +0200

I18n: Update translation nl (100%).

21 translated messages.

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

diff --git a/po/nl.po b/po/nl.po
index 321888b..1208d3f 100644
--- a/po/nl.po
+++ b/po/nl.po
@@ -8,8 +8,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2017-06-10 15:06+0200\n"
-"PO-Revision-Date: 2017-06-10 16:12+\n"
+"POT-Creation-Date: 2017-07-02 00:31+0200\n"
+"PO-Revision-Date: 2017-07-02 08:39+\n"
 "Last-Translator: Pjotr \n"
 "Language-Team: Dutch 
(http://www.transifex.com/xfce/xfce-panel-plugins/language/nl/)\n"
 "MIME-Version: 1.0\n"
@@ -18,83 +18,83 @@ msgstr ""
 "Language: nl\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-#: ../panel-plugin/xkb-dialog.c:80 ../panel-plugin/xkb.desktop.in.h:1
+#: ../panel-plugin/xkb-dialog.c:82 ../panel-plugin/xkb.desktop.in.h:1
 msgid "Keyboard Layouts"
 msgstr "Toetsenbordindelingen"
 
-#: ../panel-plugin/xkb-dialog.c:95
+#: ../panel-plugin/xkb-dialog.c:98
 msgid "Appearance"
 msgstr "Uiterlijk"
 
-#: ../panel-plugin/xkb-dialog.c:105
+#: ../panel-plugin/xkb-dialog.c:108
 msgid "Show layout as:"
 msgstr "Toon indeling als:"
 
-#: ../panel-plugin/xkb-dialog.c:111
+#: ../panel-plugin/xkb-dialog.c:114
 msgid "image"
 msgstr "afbeelding"
 
-#: ../panel-plugin/xkb-dialog.c:112
+#: ../panel-plugin/xkb-dialog.c:115
 msgid "text"
 msgstr "tekst"
 
-#: ../panel-plugin/xkb-dialog.c:113
+#: ../panel-plugin/xkb-dialog.c:116
 msgid "system"
 msgstr "systeem"
 
-#: ../panel-plugin/xkb-dialog.c:119
+#: ../panel-plugin/xkb-dialog.c:122
 msgid "Layout name:"
 msgstr "Naam van vormgeving:"
 
-#: ../panel-plugin/xkb-dialog.c:125
+#: ../panel-plugin/xkb-dialog.c:128
 msgid "country"
 msgstr "land"
 
-#: ../panel-plugin/xkb-dialog.c:126
+#: ../panel-plugin/xkb-dialog.c:129
 msgid "language"
 msgstr "taal"
 
-#: ../panel-plugin/xkb-dialog.c:132
+#: ../panel-plugin/xkb-dialog.c:135
 msgid "Widget size:"
 msgstr "Naam van minitoepassing:"
 
-#: ../panel-plugin/xkb-dialog.c:146
+#: ../panel-plugin/xkb-dialog.c:148
+msgid "Caps Lock indicator:"
+msgstr "Caps Lock-indicatie:"
+
+#: ../panel-plugin/xkb-dialog.c:160
 msgid "Tooltip icon:"
 msgstr "Pictogram voor gereedschaptip:"
 
-#: ../panel-plugin/xkb-dialog.c:157
+#: ../panel-plugin/xkb-dialog.c:172
 msgid "Behavior"
 msgstr "Gedrag"
 
-#: ../panel-plugin/xkb-dialog.c:167
+#: ../panel-plugin/xkb-dialog.c:182
 msgid "Manage layout:"
 msgstr "Indeling beheren:"
 
-#: ../panel-plugin/xkb-dialog.c:173
+#: ../panel-plugin/xkb-dialog.c:188
 msgid "globally"
 msgstr "systeembreed"
 
-#: ../panel-plugin/xkb-dialog.c:174
+#: ../panel-plugin/xkb-dialog.c:189
 msgid "per window"
 msgstr "per venster"
 
-#: ../panel-plugin/xkb-dialog.c:175
+#: ../panel-plugin/xkb-dialog.c:190
 msgid "per application"
 msgstr "per toepassing"
 
-#: ../panel-plugin/xkb-dialog.c:228
+#: ../panel-plugin/xkb-dialog.c:259
 msgid "Keyboard Layouts Plugin"
 msgstr "Toetsenbordindelingen-invoegsel"
 
-#: ../panel-plugin/xkb-dialog.c:238
+#: ../panel-plugin/xkb-dialog.c:261
 msgid "Allows you to configure and use multiple keyboard layouts."
 msgstr "Stelt u in staat om meerdere toetsenbordindelingen in te stellen en te 
gebruiken."
 
-#: ../panel-plugin/xkb-dialog.c:242
-msgid "Other plugins available here"
-msgstr "Andere invoegsels zijn hier beschikbaar"
-
-#: ../panel-plugin/xkb-plugin.c:244
+#: ../panel-plugin/xkb-plugin.c:260
 msgid "Keyboard settings"
 msgstr "Toetsenbordindelingen"
 

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