[Xfce4-commits] [xfce/xfce4-power-manager] 01/01: Keep blank and DPMS timeout settings in order

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

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

commit 4c6e588aa4e7768ae5ee4f7b3b19a93a8a64e47b
Author: Simon Steinbeiss simon.steinbe...@elfenbeinturm.at
Date:   Wed Aug 27 10:14:02 2014 +0200

Keep blank and DPMS timeout settings in order

The blank timeout cannot be longer than the DPMS timeouts,
the DPMS timeouts cannot be shorter than the blank timeout
simply because blanking after the display is already suspended
doesn't make any sense (and vice versa).
---
 data/interfaces/xfpm-settings.ui |2 +
 settings/xfpm-settings.c |   83 +-
 2 files changed, 74 insertions(+), 11 deletions(-)

diff --git a/data/interfaces/xfpm-settings.ui b/data/interfaces/xfpm-settings.ui
index 3fdcca1..e6038a5 100644
--- a/data/interfaces/xfpm-settings.ui
+++ b/data/interfaces/xfpm-settings.ui
@@ -1121,6 +1121,7 @@
 property 
name=digits0/property
 property 
name=value_posbottom/property
 signal 
name=format-value handler=format_dpms_value_cb swapped=no/
+signal 
name=value-changed handler=display_blank_on_battery_value_changed_cb 
swapped=no/
   /object
   packing
 property 
name=expandTrue/property
@@ -1163,6 +1164,7 @@
 property 
name=digits0/property
 property 
name=value_posbottom/property
 signal 
name=format-value handler=format_dpms_value_cb swapped=no/
+signal 
name=value-changed handler=display_blank_on_ac_value_changed_cb 
swapped=no/
   /object
   packing
 property 
name=expandTrue/property
diff --git a/settings/xfpm-settings.c b/settings/xfpm-settings.c
index 2a8f8b4..6c92c18 100644
--- a/settings/xfpm-settings.c
+++ b/settings/xfpm-settings.c
@@ -54,8 +54,10 @@
 static GtkBuilder *xml = NULL;
 static  GtkWidget  *nt = NULL;
 
+static  GtkWidget *on_battery_display_blank= NULL;
 static  GtkWidget *on_battery_dpms_sleep   = NULL;
 static  GtkWidget *on_battery_dpms_off = NULL;
+static  GtkWidget *on_ac_display_blank = NULL;
 static  GtkWidget *on_ac_dpms_sleep= NULL;
 static  GtkWidget *on_ac_dpms_off  = NULL;
 static  GtkWidget *sideview = NULL; /* Sidebar tree view - all 
devices are in the sideview */
@@ -400,11 +402,37 @@ dpms_toggled_cb (GtkWidget *w, XfconfChannel *channel)
 }
 
 void
+display_blank_on_battery_value_changed_cb (GtkWidget *w, XfconfChannel 
*channel)
+{
+gint blank_value = (gint) gtk_range_get_value (GTK_RANGE 
(on_battery_display_blank));
+gint sleep_value = (gint) gtk_range_get_value (GTK_RANGE 
(on_battery_dpms_sleep));
+gint off_value, brightness_value;
+
+if ( sleep_value != 0 )
+{
+   if ( blank_value = sleep_value )
+   {
+   gtk_range_set_value (GTK_RANGE(on_battery_dpms_sleep), blank_value 
+ 1 );
+   }
+}
+
+off_value = (gint) gtk_range_get_value (GTK_RANGE (on_battery_dpms_off));
+if ( off_value != 0 )
+{
+   if ( blank_value = off_value )
+   {
+   gtk_range_set_value (GTK_RANGE(on_battery_dpms_off), off_value + 1 
);
+   }
+}
+}
+
+void
 sleep_on_battery_value_changed_cb (GtkWidget *w, XfconfChannel *channel)
 {
 GtkWidget *brg;
-gint off_value= (gint)gtk_range_get_value (GTK_RANGE 
(on_battery_dpms_off));
-gint sleep_value  = (gint)gtk_range_get_value (GTK_RANGE (w));
+gint off_value= (gint) gtk_range_get_value (GTK_RANGE 
(on_battery_dpms_off));
+gint sleep_value  = (gint) gtk_range_get_value (GTK_RANGE (w));
+gint blank_value  = (gint) gtk_range_get_value (GTK_RANGE 
(on_battery_display_blank));
 gint brightness_value;
 
 if ( off_value != 0 )
@@ -414,7 +442,15 @@ sleep_on_battery_value_changed_cb (GtkWidget *w, 
XfconfChannel *channel)
gtk_range_set_value (GTK_RANGE(on_battery_dpms_off), sleep_value + 
1 );
}
 }
-
+
+if ( blank_value != 0 )
+{
+   if ( blank_value = sleep_value )
+   {
+   gtk_range_set_value (GTK_RANGE(on_battery_display_blank), 
sleep_value - 1 );
+   }
+}
+
 if ( lcd_brightness )
 {
brg = GTK_WIDGET (gtk_builder_get_object (xml, 
brightness-inactivity-on-battery));
@@ 

[Xfce4-commits] [xfce/xfce4-power-manager] branch master updated (99b54f1 - 4c6e588)

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

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

  from  99b54f1   I18n: Update translation nl (100%).
   new  4c6e588   Keep blank and DPMS timeout settings in order

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


Summary of changes:
 data/interfaces/xfpm-settings.ui |2 +
 settings/xfpm-settings.c |   83 +-
 2 files changed, 74 insertions(+), 11 deletions(-)

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


[Xfce4-commits] [xfce/xfce4-power-manager] branch master updated (4c6e588 - 128f11c)

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

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

  from  4c6e588   Keep blank and DPMS timeout settings in order
   new  128f11c   I18n: Update translation en_AU (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/en_AU.po |  181 +--
 1 file changed, 100 insertions(+), 81 deletions(-)

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


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

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

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

commit 128f11c7f0034d4837b4fe149d81ca410a5efde0
Author: Michael Findlay keltoi...@gmail.com
Date:   Wed Aug 27 12:30:38 2014 +0200

I18n: Update translation en_AU (100%).

197 translated messages.

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

diff --git a/po/en_AU.po b/po/en_AU.po
index 6b4cbaa..b4f3049 100644
--- a/po/en_AU.po
+++ b/po/en_AU.po
@@ -8,8 +8,8 @@ msgid 
 msgstr 
 Project-Id-Version: Xfce4-power-manager\n
 Report-Msgid-Bugs-To: \n
-POT-Creation-Date: 2014-08-10 00:30+0200\n
-PO-Revision-Date: 2014-08-10 05:31+\n
+POT-Creation-Date: 2014-08-25 18:30+0200\n
+PO-Revision-Date: 2014-08-27 06:06+\n
 Last-Translator: Michael Findlay keltoi...@gmail.com\n
 Language-Team: English (Australia) 
(http://www.transifex.com/projects/p/xfce4-power-manager/language/en_AU/)\n
 MIME-Version: 1.0\n
@@ -23,7 +23,7 @@ msgid Nothing
 msgstr Nothing
 
 #: ../data/interfaces/xfpm-settings.ui.h:2
-#: ../settings/xfpm-settings-main.c:137 ../src/xfpm-main.c:428
+#: ../settings/xfpm-settings-main.c:142 ../src/xfpm-main.c:425
 msgid Xfce Power Manager
 msgstr Xfce Power Manager
 
@@ -32,88 +32,88 @@ msgid Power manager settings
 msgstr Power manager settings
 
 #: ../data/interfaces/xfpm-settings.ui.h:4
-msgid On battery
-msgstr On battery
+msgid When power button is pressed:
+msgstr When power button is pressed:
 
-#: ../data/interfaces/xfpm-settings.ui.h:5 ../common/xfpm-power-common.c:442
-msgid Plugged in
-msgstr Plugged in
+#: ../data/interfaces/xfpm-settings.ui.h:5
+msgid When sleep button is pressed:
+msgstr When sleep button is pressed:
 
 #: ../data/interfaces/xfpm-settings.ui.h:6
-msgid Put system to sleep when inactive for
-msgstr Put system to sleep when inactive for
+msgid When hibernate button is pressed:
+msgstr When hibernate button is pressed:
 
 #: ../data/interfaces/xfpm-settings.ui.h:7
-msgid System sleep mode
-msgstr System sleep mode
+msgid Handle display brightness _keys
+msgstr Handle display brightness _keys
 
 #: ../data/interfaces/xfpm-settings.ui.h:8
-msgid bSystem power saving/b
-msgstr bSystem power saving/b
+msgid bButtons/b
+msgstr bButtons/b
 
 #: ../data/interfaces/xfpm-settings.ui.h:9
-msgid Critical battery power level
-msgstr Critical battery power level
+msgid On battery
+msgstr On battery
 
-#: ../data/interfaces/xfpm-settings.ui.h:10
-msgid On critical battery power
-msgstr On critical battery power
+#: ../data/interfaces/xfpm-settings.ui.h:10 ../common/xfpm-power-common.c:430
+msgid Plugged in
+msgstr Plugged in
 
 #: ../data/interfaces/xfpm-settings.ui.h:11
-msgid bCritical power/b
-msgstr bCritical power/b
+msgid When laptop lid is closed:
+msgstr When laptop lid is closed:
 
 #: ../data/interfaces/xfpm-settings.ui.h:12
-msgid Lock screen when system is going for sleep
-msgstr Lock screen when system is going for sleep
+msgid bLaptop Lid/b
+msgstr bLaptop Lid/b
 
 #: ../data/interfaces/xfpm-settings.ui.h:13
 msgid Show notifications
 msgstr Show notifications
 
 #: ../data/interfaces/xfpm-settings.ui.h:14
-msgid bSecurity and notifications/b
-msgstr bSecurity and notifications/b
+msgid bAppearance/b
+msgstr bAppearance/b
 
 #: ../data/interfaces/xfpm-settings.ui.h:15
 msgid General
 msgstr General
 
 #: ../data/interfaces/xfpm-settings.ui.h:16
-msgid When power button is pressed
-msgstr When power button is pressed
+msgid Put system to sleep when inactive for
+msgstr Put system to sleep when inactive for
 
 #: ../data/interfaces/xfpm-settings.ui.h:17
-msgid When sleep button is pressed
-msgstr When sleep button is pressed
+msgid System sleep mode:
+msgstr System sleep mode:
 
 #: ../data/interfaces/xfpm-settings.ui.h:18
-msgid When hibernate button is pressed
-msgstr When hibernate button is pressed
+msgid bSystem power saving/b
+msgstr bSystem power saving/b
 
 #: ../data/interfaces/xfpm-settings.ui.h:19
-msgid bButtons/b
-msgstr bButtons/b
+msgid Critical battery power level:
+msgstr Critical battery power level:
 
 #: ../data/interfaces/xfpm-settings.ui.h:20
-msgid When laptop lid is closed
-msgstr When laptop lid is closed
+msgid On critical battery power:
+msgstr On critical battery power:
 
 #: ../data/interfaces/xfpm-settings.ui.h:21
-msgid bLaptop Lid/b
-msgstr bLaptop Lid/b
+msgid bCritical power/b
+msgstr bCritical power/b
 
 #: ../data/interfaces/xfpm-settings.ui.h:22
-msgid Handle display brightness _keys
-msgstr Handle display brightness _keys
+msgid Lock screen when system is going for sleep
+msgstr Lock screen when system is going for sleep
 
 #: ../data/interfaces/xfpm-settings.ui.h:23
-msgid bKeys/b
-msgstr bKeys/b
+msgid bSecurity/b
+msgstr bSecurity/b
 
 #: ../data/interfaces/xfpm-settings.ui.h:24
-msgid Controls
-msgstr Controls
+msgid 

[Xfce4-commits] [xfce/xfce4-power-manager] branch master updated (128f11c - cffb03f)

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

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

  from  128f11c   I18n: Update translation en_AU (100%).
   new  cffb03f   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 |   75 +++---
 1 file changed, 38 insertions(+), 37 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 zh_CN (77%).

2014-08-27 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 f0be17a42c89712d153994821be32f835d8e4cf4
Author: yjwork yjw...@qq.com
Date:   Wed Aug 27 18:30:51 2014 +0200

I18n: Update translation zh_CN (77%).

238 translated messages, 68 untranslated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).
---
 po/zh_CN.po |  928 +--
 1 file changed, 583 insertions(+), 345 deletions(-)

diff --git a/po/zh_CN.po b/po/zh_CN.po
index bdd57d1..527bbbf 100644
--- a/po/zh_CN.po
+++ b/po/zh_CN.po
@@ -1,843 +1,1075 @@
-# Croatian translation for mousepad package.
-# Copyright (C) 2012, xfce Chinese (Simplified) translation team.
-# This file is distributed under the same license as the mousepad package.
-# 玉堂白鹤 yjwork.x...@gmail.com, 2012.
-# qinghao qingh...@foxmail.com, 2012.
-# Hunt Xu hun...@live.cn, 2012.
-#
-
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+# 
+# Translators:
+# Hunt Xu hun...@live.cn, 2012
+# qingxianhao qingh...@foxmail.com, 2012
+# yjwork yjw...@qq.com, 2014
+# 周潇波 zhouxiaobo@gmail.com, 2013
+# yjwork527 yjwork.x...@gmail.com, 2012
 msgid 
 msgstr 
-Project-Id-Version: mousepad\n
+Project-Id-Version: Xfce Apps\n
 Report-Msgid-Bugs-To: \n
-POT-Creation-Date: 2012-11-11 13:06+\n
-PO-Revision-Date: 2012-11-11 22:13+0800\n
-Last-Translator: Hunt Xu hun...@live.cn\n
-Language-Team: Chinese (Simplified) xfce-i18n...@xfce.org\n
-Language: zh_CN\n
+POT-Creation-Date: 2014-07-15 06:30+0200\n
+PO-Revision-Date: 2014-08-27 14:12+\n
+Last-Translator: yjwork yjw...@qq.com\n
+Language-Team: Chinese (China) 
(http://www.transifex.com/projects/p/xfce-apps/language/zh_CN/)\n
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=UTF-8\n
 Content-Transfer-Encoding: 8bit\n
-Plural-Forms: nplurals=3; plural=(n%10==1  n%100!=11 ? 0 : n%10=2  (n
-%10010 || n%100=20) ? 1 : 2)\n
-X-Poedit-Language: Chinese\n
-X-Poedit-SourceCharset: utf-8\n
+Language: zh_CN\n
+Plural-Forms: nplurals=1; plural=0;\n
 
-#: ../mousepad/main.c:53
+#: ../mousepad/main.c:42
 msgid Do not register with the D-BUS session message bus
 msgstr 不注册 D-BUS 会话消息总线
 
-#: ../mousepad/main.c:54
+#: ../mousepad/main.c:43
 msgid Quit a running Mousepad instance
 msgstr 退出正在运行的 Mousepad 实例
 
-#: ../mousepad/main.c:56
+#: ../mousepad/main.c:45
 msgid Print version information and exit
 msgstr 列印版本信息并退出
 
 #. default application name
-#: ../mousepad/main.c:80 ../Mousepad.desktop.in.in.h:1
+#: ../mousepad/main.c:70 ../mousepad.desktop.in.in.h:1
 msgid Mousepad
 msgstr Mousepad
 
 #. initialize gtk+
-#: ../mousepad/main.c:92
+#: ../mousepad/main.c:84
 msgid [FILES...]
 msgstr [FILES...]
 
 #. no error message, the gui initialization failed
-#: ../mousepad/main.c:98
+#: ../mousepad/main.c:90
 msgid Failed to open display.
 msgstr 打开显示失败。
 
-#: ../mousepad/main.c:115
+#: ../mousepad/main.c:107
 msgid The Xfce development team. All rights reserved.
 msgstr Xfce 的开发团队。保留所有权利。
 
-#: ../mousepad/main.c:116
+#: ../mousepad/main.c:108
 #, c-format
 msgid Please report bugs to %s.
 msgstr 请向 %s 报告缺陷。
 
-#: ../mousepad/mousepad-dialogs.c:41
+#: ../mousepad/mousepad-dialogs.c:40
 msgid Mousepad is a fast text editor for the Xfce Desktop Environment.
 msgstr Mousepad 是 Xfce 桌面环境下的一个快速的文本编辑器 。
 
-#: ../mousepad/mousepad-dialogs.c:50
+#: ../mousepad/mousepad-dialogs.c:45
 msgid translator-credits
-msgstr 
-玉堂白鹤 yjwork.x...@gmail.com\n
-qinghao qingh...@foxmail.com
+msgstr 玉堂白鹤 yjwork.x...@gmail.com\nqinghao qingh...@foxmail.com
 
 #. display an error message to the user
-#: ../mousepad/mousepad-dialogs.c:125
+#: ../mousepad/mousepad-dialogs.c:100
 msgid Failed to open the documentation browser
 msgstr 无法打开文件浏览器
 
 #. build dialog
-#: ../mousepad/mousepad-dialogs.c:143
+#: ../mousepad/mousepad-dialogs.c:115
 msgid Select Tab Size
 msgstr 选择制表符大小
 
 #. build the dialog
-#: ../mousepad/mousepad-dialogs.c:224
+#: ../mousepad/mousepad-dialogs.c:196
 msgid Go To
 msgstr 转至
 
-#: ../mousepad/mousepad-dialogs.c:246
+#: ../mousepad/mousepad-dialogs.c:218
 msgid _Line number:
 msgstr 行号(_L):
 
-#: ../mousepad/mousepad-dialogs.c:265
+#: ../mousepad/mousepad-dialogs.c:237
 msgid C_olumn number:
 msgstr 列数(_O):
 
-#: ../mousepad/mousepad-dialogs.c:323
+#: ../mousepad/mousepad-dialogs.c:295
 msgid Remove all entries from the documents history?
 msgstr 清除文档历史的所有条目?
 
-#: ../mousepad/mousepad-dialogs.c:328
+#: ../mousepad/mousepad-dialogs.c:300
 msgid Clear Documents History
 msgstr 清除文档历史
 
-#: ../mousepad/mousepad-dialogs.c:331
+#: ../mousepad/mousepad-dialogs.c:303
 msgid 
 Clearing the documents history will permanently remove all currently listed 
 entries.
 msgstr 清除文档历史将永久删除所有当前列出的条目。
 
-#: ../mousepad/mousepad-dialogs.c:362
+#: ../mousepad/mousepad-dialogs.c:334
 msgid Do you want to 

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

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

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

commit cffb03ffd076752a7ae2c8dec7e1a4b366386d01
Author: Yannick Le Guen leguen.yann...@gmail.com
Date:   Wed Aug 27 18:30:39 2014 +0200

I18n: Update translation fr (100%).

197 translated messages.

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

diff --git a/po/fr.po b/po/fr.po
index 8d1a9b5..249fe05 100644
--- a/po/fr.po
+++ b/po/fr.po
@@ -3,6 +3,7 @@
 # This file is distributed under the same license as the PACKAGE package.
 # 
 # Translators:
+# Guillaume Laville laville.guilla...@gmail.com, 2014
 # jc1 jc1.quebe...@gmail.com, 2013
 # jc1 jc1.quebe...@gmail.com, 2013
 # Louis Moureaux m_loui...@yahoo.com, 2014
@@ -12,8 +13,8 @@ msgid 
 msgstr 
 Project-Id-Version: Xfce4-power-manager\n
 Report-Msgid-Bugs-To: \n
-POT-Creation-Date: 2014-08-21 00:30+0200\n
-PO-Revision-Date: 2014-08-21 08:37+\n
+POT-Creation-Date: 2014-08-25 18:30+0200\n
+PO-Revision-Date: 2014-08-27 11:04+\n
 Last-Translator: Yannick Le Guen leguen.yann...@gmail.com\n
 Language-Team: French 
(http://www.transifex.com/projects/p/xfce4-power-manager/language/fr/)\n
 MIME-Version: 1.0\n
@@ -36,16 +37,16 @@ msgid Power manager settings
 msgstr Configuration du gestionnaire d'alimentation
 
 #: ../data/interfaces/xfpm-settings.ui.h:4
-msgid When power button is pressed
-msgstr Appui sur le bouton d'alimentation
+msgid When power button is pressed:
+msgstr Appui sur le bouton d'alimentation :
 
 #: ../data/interfaces/xfpm-settings.ui.h:5
-msgid When sleep button is pressed
-msgstr Appui sur le bouton de mise en veille
+msgid When sleep button is pressed:
+msgstr Appui sur le bouton de mise en veille :
 
 #: ../data/interfaces/xfpm-settings.ui.h:6
-msgid When hibernate button is pressed
-msgstr Appui sur le bouton de mise en veille prolongée
+msgid When hibernate button is pressed:
+msgstr Appui sur le bouton de veille prolongée :
 
 #: ../data/interfaces/xfpm-settings.ui.h:7
 msgid Handle display brightness _keys
@@ -59,13 +60,13 @@ msgstr bBouttons/b
 msgid On battery
 msgstr Sur batterie
 
-#: ../data/interfaces/xfpm-settings.ui.h:10 ../common/xfpm-power-common.c:434
+#: ../data/interfaces/xfpm-settings.ui.h:10 ../common/xfpm-power-common.c:430
 msgid Plugged in
 msgstr Branché
 
 #: ../data/interfaces/xfpm-settings.ui.h:11
-msgid When laptop lid is closed
-msgstr Fermeture du couvercle du portable
+msgid When laptop lid is closed:
+msgstr Fermeture du couvercle du portable :
 
 #: ../data/interfaces/xfpm-settings.ui.h:12
 msgid bLaptop Lid/b
@@ -88,20 +89,20 @@ msgid Put system to sleep when inactive for
 msgstr Mettre le système en veille si inactif depuis
 
 #: ../data/interfaces/xfpm-settings.ui.h:17
-msgid System sleep mode
-msgstr Mode de mise en veille du système
+msgid System sleep mode:
+msgstr Mode de mise en veille du système :
 
 #: ../data/interfaces/xfpm-settings.ui.h:18
 msgid bSystem power saving/b
 msgstr bÉconomie d'énergie du système/b
 
 #: ../data/interfaces/xfpm-settings.ui.h:19
-msgid Critical battery power level
-msgstr Niveau de charge batterie critique
+msgid Critical battery power level:
+msgstr Charge batterie critique :
 
 #: ../data/interfaces/xfpm-settings.ui.h:20
-msgid On critical battery power
-msgstr En cas de charge batterie critique
+msgid On critical battery power:
+msgstr En cas de charge batterie critique :
 
 #: ../data/interfaces/xfpm-settings.ui.h:21
 msgid bCritical power/b
@@ -369,7 +370,7 @@ msgstr Activer le débogage
 #: ../settings/xfpm-settings-main.c:93 ../src/xfpm-main.c:311
 #, c-format
 msgid Type '%s --help' for usage.
-msgstr Taper '%s --help' pour l'usage.
+msgstr Taper « %s --help » pour plus d'aide.
 
 #: ../settings/xfpm-settings-main.c:113 ../src/xfpm-main.c:341
 #, c-format
@@ -443,7 +444,7 @@ msgstr Téléphone
 msgid Tablet
 msgstr Tablette
 
-#: ../common/xfpm-power-common.c:63 ../common/xfpm-power-common.c:344
+#: ../common/xfpm-power-common.c:63 ../common/xfpm-power-common.c:340
 msgid Computer
 msgstr Ordinateur
 
@@ -513,63 +514,63 @@ msgid_plural minutes
 msgstr[0] minute
 msgstr[1] minutes
 
-#: ../common/xfpm-power-common.c:361
+#: ../common/xfpm-power-common.c:357
 #, c-format
 msgid 
 b%s %s/b\n
 Fully charged (%0.0f%%, %s runtime)
 msgstr b%s %s/b\nComplètement chargée (%0.0f%%, durée %s)
 
-#: ../common/xfpm-power-common.c:369
+#: ../common/xfpm-power-common.c:365
 #, c-format
 msgid 
 b%s %s/b\n
 Fully charged (%0.0f%%)
 msgstr b%s %s/b\nComplètement chargée (%0.0f%%)
 
-#: ../common/xfpm-power-common.c:379
+#: ../common/xfpm-power-common.c:375
 #, c-format
 msgid 
 b%s %s/b\n
 Charging (%0.0f%%, %s)
 msgstr b%s %s/b\nEn charge (%0.0f%%, %s)
 
-#: ../common/xfpm-power-common.c:387
+#: ../common/xfpm-power-common.c:383
 #, c-format
 msgid 
 b%s 

[Xfce4-commits] [apps/parole] branch master updated (08838aa - ff448ad)

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

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

  from  08838aa   I18n: Update translation fi (97%).
   new  ff448ad   I18n: Update translation zh_CN (95%).

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


Summary of changes:
 po/zh_CN.po |  565 +--
 1 file changed, 319 insertions(+), 246 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 (0703ffd - f0be17a)

2014-08-27 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  0703ffd   I18n: Update translation de (87%).
   new  f0be17a   I18n: Update translation zh_CN (77%).

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


Summary of changes:
 po/zh_CN.po |  928 +--
 1 file changed, 583 insertions(+), 345 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/parole] 01/01: I18n: Update translation zh_CN (95%).

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

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

commit ff448add6518929b2d3c17edd8a2163039d1bbd5
Author: yjwork yjw...@qq.com
Date:   Wed Aug 27 18:30:55 2014 +0200

I18n: Update translation zh_CN (95%).

262 translated messages, 11 untranslated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).
---
 po/zh_CN.po |  565 +--
 1 file changed, 319 insertions(+), 246 deletions(-)

diff --git a/po/zh_CN.po b/po/zh_CN.po
index b47c129..c9d858f 100644
--- a/po/zh_CN.po
+++ b/po/zh_CN.po
@@ -3,17 +3,17 @@
 # This file is distributed under the same license as the PACKAGE package.
 # 
 # Translators:
-# Chipong chipong@yahoo.com, 2011-2012
-# 玉堂白鹤 yjw...@qq.com, 2013-2014
-# xiaobo zhou zhouxiaobo@gmail.com, 2014
+# Chipong Luo chipong@yahoo.com, 2011-2012
+# yjwork yjw...@qq.com, 2013-2014
+# 周潇波 zhouxiaobo@gmail.com, 2014
 msgid 
 msgstr 
 Project-Id-Version: Xfce Apps\n
 Report-Msgid-Bugs-To: \n
-POT-Creation-Date: 2014-01-26 00:31+0100\n
-PO-Revision-Date: 2014-02-25 11:01+\n
-Last-Translator: 玉堂白鹤 yjw...@qq.com\n
-Language-Team: Chinese (China) 
(http://www.transifex.com/projects/p/xfce/language/zh_CN/)\n
+POT-Creation-Date: 2014-07-04 18:30+0200\n
+PO-Revision-Date: 2014-08-27 14:09+\n
+Last-Translator: yjwork yjw...@qq.com\n
+Language-Team: Chinese (China) 
(http://www.transifex.com/projects/p/xfce-apps/language/zh_CN/)\n
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=UTF-8\n
 Content-Transfer-Encoding: 8bit\n
@@ -21,7 +21,7 @@ msgstr 
 Plural-Forms: nplurals=1; plural=0;\n
 
 #: ../data/interfaces/parole.ui.h:1 ../data/desktop/parole.desktop.in.in.h:1
-#: ../src/parole-player.c:567 ../src/parole-player.c:1455
+#: ../src/parole-player.c:604 ../src/parole-player.c:1514
 #: ../src/parole-about.c:70 ../src/plugins/mpris2/mpris2-provider.c:199
 msgid Parole Media Player
 msgstr Parole 媒体播放器
@@ -51,7 +51,8 @@ msgstr 保存播放列表(_S)...
 msgid Insert Disc
 msgstr 插入光盘
 
-#: ../data/interfaces/parole.ui.h:8 ../src/plugins/tray/tray-provider.c:152
+#. * Exit
+#: ../data/interfaces/parole.ui.h:8 ../src/plugins/tray/tray-provider.c:179
 msgid _Quit
 msgstr 退出(_Q)
 
@@ -59,167 +60,169 @@ msgstr 退出(_Q)
 msgid _Playback
 msgstr 播放(_P)
 
-#. Toggle Repeat
-#: ../data/interfaces/parole.ui.h:10 ../src/parole-player.c:3012
+#: ../data/interfaces/parole.ui.h:10
 msgid _Repeat
 msgstr 重复(_R)
 
-#. Toggle Shuffle
-#: ../data/interfaces/parole.ui.h:11 ../src/parole-player.c:3020
+#: ../data/interfaces/parole.ui.h:11
 msgid _Shuffle
 msgstr 随机(_S)
 
-#: ../data/interfaces/parole.ui.h:12
+#. Create dialog
+#: ../data/interfaces/parole.ui.h:12 ../src/parole-player.c:2849
+msgid Go to position
+msgstr 
+
+#: ../data/interfaces/parole.ui.h:13
 msgid _DVD
 msgstr DVD(_D)
 
-#: ../data/interfaces/parole.ui.h:13
+#: ../data/interfaces/parole.ui.h:14
 msgid _DVD Menu
 msgstr DVD 菜单(_D)
 
-#: ../data/interfaces/parole.ui.h:14
+#: ../data/interfaces/parole.ui.h:15
 msgid _Title Menu
 msgstr 标题菜单(_T)
 
-#: ../data/interfaces/parole.ui.h:15
+#: ../data/interfaces/parole.ui.h:16
 msgid _Audio Menu
 msgstr 音频菜单(_A)
 
-#: ../data/interfaces/parole.ui.h:16
+#: ../data/interfaces/parole.ui.h:17
 msgid A_ngle Menu
 msgstr 角度菜单(_N)
 
-#: ../data/interfaces/parole.ui.h:17
+#: ../data/interfaces/parole.ui.h:18
 msgid _Chapters
 msgstr 章节(_C)
 
-#: ../data/interfaces/parole.ui.h:18
+#: ../data/interfaces/parole.ui.h:19
 msgid _Chapter Menu
 msgstr 章节菜单(_C)
 
-#: ../data/interfaces/parole.ui.h:19
+#: ../data/interfaces/parole.ui.h:20
 msgid _Audio
 msgstr 音频(_A)
 
-#: ../data/interfaces/parole.ui.h:20
+#: ../data/interfaces/parole.ui.h:21
 msgid _Audio Track
 msgstr 音轨(_A)
 
-#: ../data/interfaces/parole.ui.h:21 ../src/parole-player.c:793
+#: ../data/interfaces/parole.ui.h:22 ../src/parole-player.c:830
 msgid Empty
 msgstr 空
 
-#: ../data/interfaces/parole.ui.h:22
+#: ../data/interfaces/parole.ui.h:23
 msgid Volume _Up
 msgstr 增大音量(_U)
 
-#: ../data/interfaces/parole.ui.h:23
+#: ../data/interfaces/parole.ui.h:24
 msgid Volume _Down
 msgstr 减小音量(_D)
 
-#: ../data/interfaces/parole.ui.h:24
+#: ../data/interfaces/parole.ui.h:25
 msgid _Mute
 msgstr 静音(_M)
 
-#: ../data/interfaces/parole.ui.h:25
+#: ../data/interfaces/parole.ui.h:26
 msgid _Video
 msgstr 视频(_V)
 
-#. Fullscreen
-#: ../data/interfaces/parole.ui.h:26 ../src/parole-player.c:1940
-#: ../src/parole-player.c:3000
+#: ../data/interfaces/parole.ui.h:27 ../src/parole-player.c:2028
+#: ../src/parole-player.c:2141
 msgid _Fullscreen
 msgstr 全屏(_F)
 
-#: ../data/interfaces/parole.ui.h:27
+#: ../data/interfaces/parole.ui.h:28
 msgid _Aspect Ratio
 msgstr 长宽比(_A)
 
-#: ../data/interfaces/parole.ui.h:28 ../src/parole-player.c:721
+#: ../data/interfaces/parole.ui.h:29 ../src/parole-player.c:758
 msgid None
 msgstr 无
 
-#: ../data/interfaces/parole.ui.h:29
+#: ../data/interfaces/parole.ui.h:30
 msgid 

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

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

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

commit 2faf8ca7a9d0461d645c602b176cab757ffd3106
Author: Piotr Sokół pso...@jabster.pl
Date:   Thu Aug 28 00:30:34 2014 +0200

I18n: Update translation pl (100%).

394 translated messages.

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

diff --git a/po/pl.po b/po/pl.po
index 0264835..4f5e036 100644
--- a/po/pl.po
+++ b/po/pl.po
@@ -4,10 +4,11 @@
 # 
 # Translators:
 # Daniel Mróz be...@alpha.pl, 2003
-# OSWorld michal.ol...@osworld.pl, 2014
+# Michał Olber michal.ol...@osworld.pl, 2014
 # Paweł Pastuła pastu...@poczta.onet.pl, 2003
 # Piotr Maliński riklau...@gmail.com, 2006
 # Piotr Sokół pso...@jabster.pl, 2009-2014
+# Piotr Sokół pso...@jabster.pl, 2014
 # Piotr Strębski streb...@o2.pl, 2013-2014
 # Szymon Kałasz szymon_maes...@gazeta.pl, 2006
 # Wit Wiliński mad...@berlios.de, 2005
@@ -16,8 +17,8 @@ msgstr 
 Project-Id-Version: Xfce4-panel\n
 Report-Msgid-Bugs-To: \n
 POT-Creation-Date: 2014-05-17 00:30+0200\n
-PO-Revision-Date: 2014-06-01 18:53+\n
-Last-Translator: OSWorld michal.ol...@osworld.pl\n
+PO-Revision-Date: 2014-08-27 20:33+\n
+Last-Translator: Piotr Sokół pso...@jabster.pl\n
 Language-Team: Polish 
(http://www.transifex.com/projects/p/xfce4-panel/language/pl/)\n
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=UTF-8\n
@@ -431,7 +432,7 @@ msgstr Ukrywa panel kiedy kursor myszy nie znajduje się 
nad nim. Działa tylko
 
 #: ../panel/panel-preferences-dialog.glade.h:18
 msgid Don't _reserve space on borders
-msgstr Nie rezerwowanie powierzchni na krawędziach
+msgstr Pomijanie _rezerwowania obszaru na krawędziach
 
 #: ../panel/panel-preferences-dialog.glade.h:19
 msgid 
@@ -447,7 +448,7 @@ msgstr Ogólne
 
 #: ../panel/panel-preferences-dialog.glade.h:21
 msgid Row _Size (pixels):
-msgstr _Rozmiar wiersza (piksele):
+msgstr _Rozmiar rzędu (piksele):
 
 #: ../panel/panel-preferences-dialog.glade.h:23
 #, no-c-format
@@ -456,7 +457,7 @@ msgstr _Długość (%):
 
 #: ../panel/panel-preferences-dialog.glade.h:24
 msgid Num_ber of rows:
-msgstr _Ilość wierszy:
+msgstr _Ilość rzędów:
 
 #: ../panel/panel-preferences-dialog.glade.h:25
 msgid A_utomatically increase the length
@@ -1513,7 +1514,7 @@ msgstr Podgląd obszarów roboczych
 
 #: ../plugins/pager/pager-dialog.glade.h:2
 msgid Number of _rows:
-msgstr Ilość _wierszy:
+msgstr Ilość _rzędów:
 
 #: ../plugins/pager/pager-dialog.glade.h:3
 msgid Show mi_niature view

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


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

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

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

commit c57bce34d69bd1858d061fa405a56a2ab33d14e7
Author: abuyop abu...@gmail.com
Date:   Thu Aug 28 00:30:41 2014 +0200

I18n: Update translation ms (100%).

197 translated messages.

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

diff --git a/po/ms.po b/po/ms.po
index a69fdac..a468ba3 100644
--- a/po/ms.po
+++ b/po/ms.po
@@ -8,8 +8,8 @@ msgid 
 msgstr 
 Project-Id-Version: Xfce4-power-manager\n
 Report-Msgid-Bugs-To: \n
-POT-Creation-Date: 2014-08-19 00:30+0200\n
-PO-Revision-Date: 2014-08-19 14:16+\n
+POT-Creation-Date: 2014-08-25 18:30+0200\n
+PO-Revision-Date: 2014-08-27 22:04+\n
 Last-Translator: abuyop abu...@gmail.com\n
 Language-Team: Malay 
(http://www.transifex.com/projects/p/xfce4-power-manager/language/ms/)\n
 MIME-Version: 1.0\n
@@ -32,88 +32,88 @@ msgid Power manager settings
 msgstr Tetapan pengurus kuasa
 
 #: ../data/interfaces/xfpm-settings.ui.h:4
-msgid On battery
-msgstr Guna bateri
+msgid When power button is pressed:
+msgstr Bila butang kuasa ditekan:
 
-#: ../data/interfaces/xfpm-settings.ui.h:5 ../common/xfpm-power-common.c:434
-msgid Plugged in
-msgstr Dipalam masuk
+#: ../data/interfaces/xfpm-settings.ui.h:5
+msgid When sleep button is pressed:
+msgstr Bila butang tidur ditekan:
 
 #: ../data/interfaces/xfpm-settings.ui.h:6
-msgid Put system to sleep when inactive for
-msgstr Letak sistem menjadi tidur bila tidak aktif selama
+msgid When hibernate button is pressed:
+msgstr Bila butang hibernasi ditekan:
 
 #: ../data/interfaces/xfpm-settings.ui.h:7
-msgid System sleep mode
-msgstr Mod tidur sistem
+msgid Handle display brightness _keys
+msgstr Kendali _kekunci kecerahan paparan
 
 #: ../data/interfaces/xfpm-settings.ui.h:8
-msgid bSystem power saving/b
-msgstr bPenjimatan kuasa sistem/b
+msgid bButtons/b
+msgstr bButang/b
 
 #: ../data/interfaces/xfpm-settings.ui.h:9
-msgid Critical battery power level
-msgstr Aras kuasa bateri kritikal
+msgid On battery
+msgstr Guna bateri
 
-#: ../data/interfaces/xfpm-settings.ui.h:10
-msgid On critical battery power
-msgstr Bila kuasa bateri kritikal
+#: ../data/interfaces/xfpm-settings.ui.h:10 ../common/xfpm-power-common.c:430
+msgid Plugged in
+msgstr Dipalam masuk
 
 #: ../data/interfaces/xfpm-settings.ui.h:11
-msgid bCritical power/b
-msgstr bKuasa kritikal/b
+msgid When laptop lid is closed:
+msgstr Bila komputer riba ditutup:
 
 #: ../data/interfaces/xfpm-settings.ui.h:12
-msgid Lock screen when system is going for sleep
-msgstr Kunci skrin bila sistem hendak tidur
+msgid bLaptop Lid/b
+msgstr bPenutup Komputer Riba/b
 
 #: ../data/interfaces/xfpm-settings.ui.h:13
 msgid Show notifications
 msgstr Tunjuk pemberitahuan
 
 #: ../data/interfaces/xfpm-settings.ui.h:14
-msgid bSecurity and notifications/b
-msgstr bKeselamatan dan pemberitahuan/b
+msgid bAppearance/b
+msgstr bPenampilan/b
 
 #: ../data/interfaces/xfpm-settings.ui.h:15
 msgid General
 msgstr Am
 
 #: ../data/interfaces/xfpm-settings.ui.h:16
-msgid When power button is pressed
-msgstr Bila butang kuasa ditekan
+msgid Put system to sleep when inactive for
+msgstr Letak sistem menjadi tidur bila tidak aktif selama
 
 #: ../data/interfaces/xfpm-settings.ui.h:17
-msgid When sleep button is pressed
-msgstr Bila butang tidur ditekan
+msgid System sleep mode:
+msgstr Mod tidur sistem:
 
 #: ../data/interfaces/xfpm-settings.ui.h:18
-msgid When hibernate button is pressed
-msgstr Bila butang hibernasi ditekan
+msgid bSystem power saving/b
+msgstr bPenjimatan kuasa sistem/b
 
 #: ../data/interfaces/xfpm-settings.ui.h:19
-msgid bButtons/b
-msgstr bButang/b
+msgid Critical battery power level:
+msgstr Aras kuasa bateri kritikal:
 
 #: ../data/interfaces/xfpm-settings.ui.h:20
-msgid When laptop lid is closed
-msgstr Bila penutup komputer ditutup
+msgid On critical battery power:
+msgstr Bila kuasa bateri kritikal:
 
 #: ../data/interfaces/xfpm-settings.ui.h:21
-msgid bLaptop Lid/b
-msgstr bPenutup Komputer Riba/b
+msgid bCritical power/b
+msgstr bKuasa kritikal/b
 
 #: ../data/interfaces/xfpm-settings.ui.h:22
-msgid Handle display brightness _keys
-msgstr Kendali _kekunci kecerahan paparan
+msgid Lock screen when system is going for sleep
+msgstr Kunci skrin bila sistem hendak tidur
 
 #: ../data/interfaces/xfpm-settings.ui.h:23
-msgid bKeys/b
-msgstr bKekunci/b
+msgid bSecurity/b
+msgstr bKeselamatan/b
 
 #: ../data/interfaces/xfpm-settings.ui.h:24
-msgid Controls
-msgstr Kawalan
+msgid System
+msgstr Sistem
 
 #: ../data/interfaces/xfpm-settings.ui.h:25
 msgid Handle display power management
@@ -439,7 +439,7 @@ msgstr Telefon
 msgid Tablet
 msgstr Tablet
 
-#: ../common/xfpm-power-common.c:63 ../common/xfpm-power-common.c:344
+#: ../common/xfpm-power-common.c:63 

[Xfce4-commits] [xfce/xfce4-power-manager] 02/02: I18n: Update translation pl (97%).

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

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

commit ae0fe44d0b87adcc2e65062aeef442841b51963b
Author: Piotr Sokół pso...@jabster.pl
Date:   Thu Aug 28 00:30:41 2014 +0200

I18n: Update translation pl (97%).

192 translated messages, 5 untranslated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).
---
 po/pl.po |  232 ++
 1 file changed, 126 insertions(+), 106 deletions(-)

diff --git a/po/pl.po b/po/pl.po
index 6dcc402..79648e7 100644
--- a/po/pl.po
+++ b/po/pl.po
@@ -5,6 +5,7 @@
 # Translators:
 # Dawid h...@hoek.pl, 2014
 # ised, 2014
+# ised, 2014
 # Michał Olber michal.ol...@osworld.pl, 2014
 # Piotr Sokół pso...@jabster.pl, 2011-2012,2014
 # Piotr Strębski streb...@o2.pl, 2013-2014
@@ -12,9 +13,9 @@ msgid 
 msgstr 
 Project-Id-Version: Xfce4-power-manager\n
 Report-Msgid-Bugs-To: \n
-POT-Creation-Date: 2014-08-10 00:30+0200\n
-PO-Revision-Date: 2014-08-13 10:26+\n
-Last-Translator: Piotr Strębski streb...@o2.pl\n
+POT-Creation-Date: 2014-08-25 18:30+0200\n
+PO-Revision-Date: 2014-08-27 19:22+\n
+Last-Translator: Piotr Sokół pso...@jabster.pl\n
 Language-Team: Polish 
(http://www.transifex.com/projects/p/xfce4-power-manager/language/pl/)\n
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=UTF-8\n
@@ -27,7 +28,7 @@ msgid Nothing
 msgstr Brak
 
 #: ../data/interfaces/xfpm-settings.ui.h:2
-#: ../settings/xfpm-settings-main.c:137 ../src/xfpm-main.c:428
+#: ../settings/xfpm-settings-main.c:142 ../src/xfpm-main.c:425
 msgid Xfce Power Manager
 msgstr Zasilanie
 
@@ -36,88 +37,88 @@ msgid Power manager settings
 msgstr Konfiguruje ustawienia zasilania
 
 #: ../data/interfaces/xfpm-settings.ui.h:4
-msgid On battery
-msgstr Akumulator
+msgid When power button is pressed:
+msgstr Działanie przycisku zasilania:
 
-#: ../data/interfaces/xfpm-settings.ui.h:5 ../common/xfpm-power-common.c:442
-msgid Plugged in
-msgstr Zasilanie sieciowe
+#: ../data/interfaces/xfpm-settings.ui.h:5
+msgid When sleep button is pressed:
+msgstr Działanie przycisku wstrzymania:
 
 #: ../data/interfaces/xfpm-settings.ui.h:6
-msgid Put system to sleep when inactive for
-msgstr Czas bezczynności wymagany do wstrzymania działania komputera
+msgid When hibernate button is pressed:
+msgstr Działanie przycisku hibernacji:
 
 #: ../data/interfaces/xfpm-settings.ui.h:7
-msgid System sleep mode
-msgstr Tryb uśpienia systemu
+msgid Handle display brightness _keys
+msgstr Obsługa _klawiszy jasności ekranu
 
 #: ../data/interfaces/xfpm-settings.ui.h:8
-msgid bSystem power saving/b
-msgstr bOszczędzanie energii/b
+msgid bButtons/b
+msgstr bPrzyciski/b
 
 #: ../data/interfaces/xfpm-settings.ui.h:9
-msgid Critical battery power level
-msgstr Niski poziom naładowania akumulatora
+msgid On battery
+msgstr Zasilanie akumulatorowe
 
-#: ../data/interfaces/xfpm-settings.ui.h:10
-msgid On critical battery power
-msgstr W przypadku niskiego poziomu naładowania akumulatora
+#: ../data/interfaces/xfpm-settings.ui.h:10 ../common/xfpm-power-common.c:430
+msgid Plugged in
+msgstr Zasilanie sieciowe
 
 #: ../data/interfaces/xfpm-settings.ui.h:11
-msgid bCritical power/b
-msgstr bNiski poziom naładowania/b
+msgid When laptop lid is closed:
+msgstr Działanie zamknięcia pokrywy laptopa:
 
 #: ../data/interfaces/xfpm-settings.ui.h:12
-msgid Lock screen when system is going for sleep
-msgstr Zablokuj ekran, gdy system przechodzi w stan uśpienia
+msgid bLaptop Lid/b
+msgstr bPokrywa laptopa/b
 
 #: ../data/interfaces/xfpm-settings.ui.h:13
 msgid Show notifications
-msgstr Pokaż powiadomienia
+msgstr Wyświetlanie powiadomień
 
 #: ../data/interfaces/xfpm-settings.ui.h:14
-msgid bSecurity and notifications/b
-msgstr bBezpieczeństwo i powiadomienia/b
+msgid bAppearance/b
+msgstr bWygląd/b
 
 #: ../data/interfaces/xfpm-settings.ui.h:15
 msgid General
 msgstr Ogólne
 
 #: ../data/interfaces/xfpm-settings.ui.h:16
-msgid When power button is pressed
-msgstr Działanie przycisku zasilania:
+msgid Put system to sleep when inactive for
+msgstr Czas bezczynności wymagany do uśpienia komputera
 
 #: ../data/interfaces/xfpm-settings.ui.h:17
-msgid When sleep button is pressed
-msgstr Działanie przycisku uśpienia:
+msgid System sleep mode:
+msgstr Tryb usypiania systemu:
 
 #: ../data/interfaces/xfpm-settings.ui.h:18
-msgid When hibernate button is pressed
-msgstr Działanie przycisku hibernacji:
+msgid bSystem power saving/b
+msgstr bOszczędzanie energii/b
 
 #: ../data/interfaces/xfpm-settings.ui.h:19
-msgid bButtons/b
-msgstr bPrzyciski/b
+msgid Critical battery power level:
+msgstr Krytycznie niski poziom naładowania akumulatora:
 
 #: ../data/interfaces/xfpm-settings.ui.h:20
-msgid When laptop lid is closed
-msgstr Działanie zamknięcia pokrywy laptopa:
+msgid On critical battery power:
+msgstr Podjęta czynność:
 
 #: ../data/interfaces/xfpm-settings.ui.h:21
-msgid 

[Xfce4-commits] [xfce/xfce4-power-manager] branch master updated (cffb03f - ae0fe44)

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

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

  from  cffb03f   I18n: Update translation fr (100%).
   new  c57bce3   I18n: Update translation ms (100%).
   new  ae0fe44   I18n: Update translation pl (97%).

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


Summary of changes:
 po/ms.po |  139 -
 po/pl.po |  232 ++
 2 files changed, 204 insertions(+), 167 deletions(-)

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


[Xfce4-commits] [xfce/xfce4-panel] branch master updated (f65ef2b - 2faf8ca)

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

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

  from  f65ef2b   I18n: Update translation de (100%).
   new  2faf8ca   I18n: Update translation pl (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/pl.po |   15 ---
 1 file changed, 8 insertions(+), 7 deletions(-)

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


[Xfce4-commits] [panel-plugins/xfce4-xkb-plugin] branch master updated (ddf3994 - 064f441)

2014-08-27 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  ddf3994   I18n: Update translation es (100%).
   new  064f441   I18n: Update translation pl (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/pl.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-xkb-plugin] 01/01: I18n: Update translation pl (100%).

2014-08-27 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 064f44126d343f7d22162032d1438f27e20504bd
Author: Piotr Sokół pso...@jabster.pl
Date:   Thu Aug 28 00:31:51 2014 +0200

I18n: Update translation pl (100%).

17 translated messages.

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

diff --git a/po/pl.po b/po/pl.po
index f00ff9f..5c7cc74 100644
--- a/po/pl.po
+++ b/po/pl.po
@@ -10,9 +10,9 @@ msgstr 
 Project-Id-Version: Xfce Panel Plugins\n
 Report-Msgid-Bugs-To: \n
 POT-Creation-Date: 2013-07-03 21:34+0200\n
-PO-Revision-Date: 2013-07-25 10:44+\n
+PO-Revision-Date: 2014-08-27 20:40+\n
 Last-Translator: Piotr Sokół pso...@jabster.pl\n
-Language-Team: Polish xfce-i18n...@xfce.org\n
+Language-Team: Polish 
(http://www.transifex.com/projects/p/xfce-panel-plugins/language/pl/)\n
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=UTF-8\n
 Content-Transfer-Encoding: 8bit\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/xfce4-power-manager] branch master updated (ae0fe44 - 427aa02)

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

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

  from  ae0fe44   I18n: Update translation pl (97%).
   new  427aa02   Draw a bubble with a question mark if the device state is 
unknown

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:
 .../power-manager-plugin/power-manager-button.c|   86 +---
 1 file changed, 56 insertions(+), 30 deletions(-)

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


[Xfce4-commits] [xfce/xfce4-power-manager] 01/01: Draw a bubble with a question mark if the device state is unknown

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

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

commit 427aa0281becd5b894328666c2b6e21348bf66a8
Author: Simon Steinbeiss simon.steinbe...@elfenbeinturm.at
Date:   Thu Aug 28 03:15:19 2014 +0200

Draw a bubble with a question mark if the device state is unknown
---
 .../power-manager-plugin/power-manager-button.c|   86 +---
 1 file changed, 56 insertions(+), 30 deletions(-)

diff --git a/panel-plugins/power-manager-plugin/power-manager-button.c 
b/panel-plugins/power-manager-plugin/power-manager-button.c
index 1a95da2..090b33e 100644
--- a/panel-plugins/power-manager-plugin/power-manager-button.c
+++ b/panel-plugins/power-manager-plugin/power-manager-button.c
@@ -193,14 +193,17 @@ power_manager_button_device_icon_expose (GtkWidget *img, 
GdkEventExpose *event,
 {
 cairo_t *cr;
 UpDevice *device = UP_DEVICE(userdata);
-guint type = 0;
+guint type = 0, state = 0;
 gdouble percentage;
 gint height, width;
 gdouble min_height = 2;
+PangoLayout *layout;
+PangoRectangle ink_extent, log_extent;
 
 TRACE(entering for %s, up_device_get_object_path(device));
 g_object_get (device,
   kind, type,
+  state, state,
   percentage, percentage,
  NULL);
 
@@ -212,38 +215,61 @@ power_manager_button_device_icon_expose (GtkWidget *img, 
GdkEventExpose *event,
 width = img-allocation.width;
 height = img-allocation.height;
 
-/* Draw the trough of the progressbar */
-cairo_set_operator (cr, CAIRO_OPERATOR_SOURCE);
-cairo_set_line_width (cr, 1.0);
-cairo_rectangle (cr, width - 3.5, img-allocation.y + 1.5, 5, height - 2);
-cairo_set_source_rgb (cr, 0.87, 0.87, 0.87);
-cairo_fill_preserve (cr);
-cairo_set_source_rgb (cr, 0.53, 0.54, 0.52);
-cairo_stroke (cr);
-
-/* Draw the fill of the progressbar
-   Use yellow for 20% and below, green for 100%, red for 5% and below and 
blue for the rest */
-cairo_set_operator (cr, CAIRO_OPERATOR_OVER);
-
-if ((height * (percentage / 100))  min_height)
-   min_height = (height - 3) * (percentage / 100);
-
-cairo_rectangle (cr, width - 3, img-allocation.y + height - min_height - 
1, 4, min_height);
-if (percentage  5  percentage  20)
-cairo_set_source_rgb (cr, 0.93, 0.83, 0.0);
-else if (percentage  20  percentage  100)
-cairo_set_source_rgb (cr, 0.2, 0.4, 0.64);
-else if (percentage == 100)
-cairo_set_source_rgb (cr, 0.45, 0.82, 0.08);
+if (state != UP_DEVICE_STATE_UNKNOWN)
+{
+/* Draw the trough of the progressbar */
+cairo_set_operator (cr, CAIRO_OPERATOR_SOURCE);
+cairo_set_line_width (cr, 1.0);
+cairo_rectangle (cr, width - 3.5, img-allocation.y + 1.5, 5, height - 
2);
+cairo_set_source_rgb (cr, 0.87, 0.87, 0.87);
+cairo_fill_preserve (cr);
+cairo_set_source_rgb (cr, 0.53, 0.54, 0.52);
+cairo_stroke (cr);
+
+/* Draw the fill of the progressbar
+   Use yellow for 20% and below, green for 100%, red for 5% and below 
and blue for the rest */
+cairo_set_operator (cr, CAIRO_OPERATOR_OVER);
+
+if ((height * (percentage / 100))  min_height)
+   min_height = (height - 3) * (percentage / 100);
+
+cairo_rectangle (cr, width - 3, img-allocation.y + height - 
min_height - 1, 4, min_height);
+if (percentage  5  percentage  20)
+cairo_set_source_rgb (cr, 0.93, 0.83, 0.0);
+else if (percentage  20  percentage  100)
+cairo_set_source_rgb (cr, 0.2, 0.4, 0.64);
+else if (percentage == 100)
+cairo_set_source_rgb (cr, 0.45, 0.82, 0.08);
+else
+cairo_set_source_rgb (cr, 0.94, 0.16, 0.16);
+cairo_fill (cr);
+
+cairo_rectangle (cr, width - 2.5, img-allocation.y + 2.5, 3, height - 
4);
+cairo_set_source_rgba (cr, 1.0, 1.0, 1.0, 0.75);
+cairo_stroke (cr);
+}
 else
-cairo_set_source_rgb (cr, 0.94, 0.16, 0.16);
-cairo_fill (cr);
-
-cairo_rectangle (cr, width - 2.5, img-allocation.y + 2.5, 3, height - 4);
-cairo_set_source_rgba (cr, 1.0, 1.0, 1.0, 0.75);
-cairo_stroke (cr);
+{
+/* Draw a bubble with a question mark for devices with unknown state */
+cairo_set_operator (cr, CAIRO_OPERATOR_SOURCE);
+cairo_set_line_width (cr, 1.0);
+cairo_arc(cr, width - 4.5, img-allocation.y + 6.5, 6, 0, 2*3.14159);
+cairo_set_source_rgb (cr, 0.2, 0.54, 0.9);
+cairo_fill_preserve (cr);
+cairo_set_source_rgb (cr, 0.1, 0.37, 0.6);
+cairo_stroke (cr);
+
+layout = gtk_widget_create_pango_layout (GTK_WIDGET (img), ?);
+pango_layout_set_font_description (layout, 
pango_font_description_from_string (Sans Bold 9));
+pango_layout_get_pixel_extents (layout, ink_extent, 

[Xfce4-commits] [xfce/xfce4-power-manager] branch master updated (427aa02 - a1eb7a5)

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

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

  from  427aa02   Draw a bubble with a question mark if the device state is 
unknown
   new  7ad6f2a   I18n: Update translation hr (100%).
   new  a1eb7a5   I18n: Update translation pt_BR (100%).

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


Summary of changes:
 po/hr.po|   42 +-
 po/pt_BR.po |  141 +--
 2 files changed, 100 insertions(+), 83 deletions(-)

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


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

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

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

commit 7ad6f2afb5547b5e9047271da96d97f1671e81bd
Author: Edin Veskovic edin.vesko...@openmailbox.org
Date:   Thu Aug 28 06:30:38 2014 +0200

I18n: Update translation hr (100%).

197 translated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).
---
 po/hr.po |   42 +-
 1 file changed, 21 insertions(+), 21 deletions(-)

diff --git a/po/hr.po b/po/hr.po
index cb6b012..feb3dc6 100644
--- a/po/hr.po
+++ b/po/hr.po
@@ -11,8 +11,8 @@ msgid 
 msgstr 
 Project-Id-Version: Xfce4-power-manager\n
 Report-Msgid-Bugs-To: \n
-POT-Creation-Date: 2014-08-21 12:30+0200\n
-PO-Revision-Date: 2014-08-23 10:41+\n
+POT-Creation-Date: 2014-08-25 18:30+0200\n
+PO-Revision-Date: 2014-08-27 23:22+\n
 Last-Translator: Edin Veskovic edin.vesko...@openmailbox.org\n
 Language-Team: Croatian 
(http://www.transifex.com/projects/p/xfce4-power-manager/language/hr/)\n
 MIME-Version: 1.0\n
@@ -58,7 +58,7 @@ msgstr bDugmad/b
 msgid On battery
 msgstr Na bateriji
 
-#: ../data/interfaces/xfpm-settings.ui.h:10 ../common/xfpm-power-common.c:434
+#: ../data/interfaces/xfpm-settings.ui.h:10 ../common/xfpm-power-common.c:430
 msgid Plugged in
 msgstr Uključen
 
@@ -442,7 +442,7 @@ msgstr Telefon
 msgid Tablet
 msgstr Tablet
 
-#: ../common/xfpm-power-common.c:63 ../common/xfpm-power-common.c:344
+#: ../common/xfpm-power-common.c:63 ../common/xfpm-power-common.c:340
 msgid Computer
 msgstr Računalo
 
@@ -516,63 +516,63 @@ msgstr[0] minuta
 msgstr[1] minuta
 msgstr[2] minute
 
-#: ../common/xfpm-power-common.c:361
+#: ../common/xfpm-power-common.c:357
 #, c-format
 msgid 
 b%s %s/b\n
 Fully charged (%0.0f%%, %s runtime)
 msgstr b%s %s/b\nPotpuno napunjena (%0.0f%%, %s trajanja)
 
-#: ../common/xfpm-power-common.c:369
+#: ../common/xfpm-power-common.c:365
 #, c-format
 msgid 
 b%s %s/b\n
 Fully charged (%0.0f%%)
 msgstr b%s %s/b\nPotpuno napunjena (%0.0f%%)
 
-#: ../common/xfpm-power-common.c:379
+#: ../common/xfpm-power-common.c:375
 #, c-format
 msgid 
 b%s %s/b\n
 Charging (%0.0f%%, %s)
 msgstr b%s %s/b\nPunjenje (%0.0f%%, %s)
 
-#: ../common/xfpm-power-common.c:387
+#: ../common/xfpm-power-common.c:383
 #, c-format
 msgid 
 b%s %s/b\n
 Charging (%0.0f%%)
 msgstr b%s %s/b\nPunjenje (%0.0f%%)
 
-#: ../common/xfpm-power-common.c:397
+#: ../common/xfpm-power-common.c:393
 #, c-format
 msgid 
 b%s %s/b\n
 Discharging (%0.0f%%, %s)
 msgstr b%s %s/b\nPražnjenje (%0.0f%%, %s)
 
-#: ../common/xfpm-power-common.c:405
+#: ../common/xfpm-power-common.c:401
 #, c-format
 msgid 
 b%s %s/b\n
 Discharging (%0.0f%%)
 msgstr b%s %s/b\nPražnjenje (%0.0f%%)
 
-#: ../common/xfpm-power-common.c:412
+#: ../common/xfpm-power-common.c:408
 #, c-format
 msgid 
 b%s %s/b\n
 Waiting to discharge (%0.0f%%)
 msgstr b%s %s/b\nČekanje ispražnjenja (%0.0f%%)
 
-#: ../common/xfpm-power-common.c:418
+#: ../common/xfpm-power-common.c:414
 #, c-format
 msgid 
 b%s %s/b\n
 Waiting to charge (%0.0f%%)
 msgstr b%s %s/b\nČekanje punjenja (%0.0f%%)
 
-#: ../common/xfpm-power-common.c:424
+#: ../common/xfpm-power-common.c:420
 #, c-format
 msgid 
 b%s %s/b\n
@@ -581,26 +581,26 @@ msgstr b%s %s/b\nje prazna
 
 #. On the 2nd line we want to know if the power cord is plugged
 #. * in or not
-#: ../common/xfpm-power-common.c:433
+#: ../common/xfpm-power-common.c:429
 #, c-format
 msgid 
 b%s %s/b\n
 %s
 msgstr b%s %s/b\n%s
 
-#: ../common/xfpm-power-common.c:434
+#: ../common/xfpm-power-common.c:430
 msgid Not plugged in
 msgstr Neuključen
 
 #. Desktop pc with no battery, just display the vendor and model,
 #. * which will probably just be Computer
-#: ../common/xfpm-power-common.c:440
+#: ../common/xfpm-power-common.c:436
 #, c-format
 msgid b%s %s/b
 msgstr b%s %s/b
 
 #. unknown device state, just display the percentage
-#: ../common/xfpm-power-common.c:445
+#: ../common/xfpm-power-common.c:441
 #, c-format
 msgid 
 b%s %s/b\n
@@ -931,10 +931,10 @@ msgstr Uz to, Xfce upravitelj energijom pruža set DBus 
sučelja usklađenih s
 
 #: ../data/appdata/xfce4-power-manager.appdata.xml.in.h:3
 msgid 
-Xfce power manager also provides two plugins for the Xfce panel, one to 
-control LCD brightness levels and a second plugin to monitor battery and 
-device charge levels.
-msgstr Xfce upravitelj energijom pruža dva dodatka za ploču, dodatak za 
upravljanje razinom svjetline LCD zaslona i dodatak za nadzor baterije te 
razine napunjenosti uređaja.
+Xfce power manager also provides a plugin for the Xfce and LXDE panels to 
+control LCD brightness levels and to monitor battery and device charge 
+levels.
+msgstr Xfce upravitelj energijom također pruža dodatke za Xfce i LXDE koji 
omogućavaju upravljanje svjetlinom LCD zaslona te praćenje korištenja i 
napunjenosti baterije uređaja.
 
 #: ../data/appdata/xfce4-power-manager.appdata.xml.in.h:4
 msgid 

-- 
To stop receiving 

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

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

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

commit a1eb7a5f352e0c3582567e2e325230b3c7a46d04
Author: André Miranda andreldm1...@gmail.com
Date:   Thu Aug 28 06:30:38 2014 +0200

I18n: Update translation pt_BR (100%).

197 translated messages.

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

diff --git a/po/pt_BR.po b/po/pt_BR.po
index 1e508c4..a881e83 100644
--- a/po/pt_BR.po
+++ b/po/pt_BR.po
@@ -12,8 +12,8 @@ msgid 
 msgstr 
 Project-Id-Version: Xfce4-power-manager\n
 Report-Msgid-Bugs-To: \n
-POT-Creation-Date: 2014-08-19 00:30+0200\n
-PO-Revision-Date: 2014-08-20 00:18+\n
+POT-Creation-Date: 2014-08-25 18:30+0200\n
+PO-Revision-Date: 2014-08-28 00:18+\n
 Last-Translator: André Miranda andreldm1...@gmail.com\n
 Language-Team: Portuguese (Brazil) 
(http://www.transifex.com/projects/p/xfce4-power-manager/language/pt_BR/)\n
 MIME-Version: 1.0\n
@@ -36,88 +36,88 @@ msgid Power manager settings
 msgstr Opções do gerenciador de energia
 
 #: ../data/interfaces/xfpm-settings.ui.h:4
-msgid On battery
-msgstr Usando a bateria
+msgid When power button is pressed:
+msgstr Quando o botão desligar for pressionado:
 
-#: ../data/interfaces/xfpm-settings.ui.h:5 ../common/xfpm-power-common.c:434
-msgid Plugged in
-msgstr Conectado
+#: ../data/interfaces/xfpm-settings.ui.h:5
+msgid When sleep button is pressed:
+msgstr Quando o botão suspender for pressionado:
 
 #: ../data/interfaces/xfpm-settings.ui.h:6
-msgid Put system to sleep when inactive for
-msgstr Suspende o sistema quando inativo por
+msgid When hibernate button is pressed:
+msgstr Quando o botão hibernar for pressionado:
 
 #: ../data/interfaces/xfpm-settings.ui.h:7
-msgid System sleep mode
-msgstr Modo de suspensão do sistema
+msgid Handle display brightness _keys
+msgstr Manipular teclas de brilho da tela
 
 #: ../data/interfaces/xfpm-settings.ui.h:8
-msgid bSystem power saving/b
-msgstr bEconomia de energia do sistema/b
+msgid bButtons/b
+msgstr bBotões/b
 
 #: ../data/interfaces/xfpm-settings.ui.h:9
-msgid Critical battery power level
-msgstr Nível crítico de energia da bateria
+msgid On battery
+msgstr Usando a bateria
 
-#: ../data/interfaces/xfpm-settings.ui.h:10
-msgid On critical battery power
-msgstr Com a energia da bateria em nível crítico
+#: ../data/interfaces/xfpm-settings.ui.h:10 ../common/xfpm-power-common.c:430
+msgid Plugged in
+msgstr Conectado
 
 #: ../data/interfaces/xfpm-settings.ui.h:11
-msgid bCritical power/b
-msgstr bEnergia crítica/b
+msgid When laptop lid is closed:
+msgstr Quando a tampa do laptop for fechada:
 
 #: ../data/interfaces/xfpm-settings.ui.h:12
-msgid Lock screen when system is going for sleep
-msgstr Bloquear a tela quando o sistema for suspenso
+msgid bLaptop Lid/b
+msgstr bTampa do Laptop/b
 
 #: ../data/interfaces/xfpm-settings.ui.h:13
 msgid Show notifications
 msgstr Exibir notificações
 
 #: ../data/interfaces/xfpm-settings.ui.h:14
-msgid bSecurity and notifications/b
-msgstr bSegurança e notificações/b
+msgid bAppearance/b
+msgstr bAparência/b
 
 #: ../data/interfaces/xfpm-settings.ui.h:15
 msgid General
 msgstr Geral
 
 #: ../data/interfaces/xfpm-settings.ui.h:16
-msgid When power button is pressed
-msgstr Quando o botão desligar for pressionado
+msgid Put system to sleep when inactive for
+msgstr Suspende o sistema quando inativo por
 
 #: ../data/interfaces/xfpm-settings.ui.h:17
-msgid When sleep button is pressed
-msgstr Quando o botão suspender for pressionado
+msgid System sleep mode:
+msgstr Modo de suspensão do sistema:
 
 #: ../data/interfaces/xfpm-settings.ui.h:18
-msgid When hibernate button is pressed
-msgstr Quando o botão hibernar for pressionado
+msgid bSystem power saving/b
+msgstr bEconomia de energia do sistema/b
 
 #: ../data/interfaces/xfpm-settings.ui.h:19
-msgid bButtons/b
-msgstr bBotões/b
+msgid Critical battery power level:
+msgstr Nível crítico de energia da bateria:
 
 #: ../data/interfaces/xfpm-settings.ui.h:20
-msgid When laptop lid is closed
-msgstr Quando a tampa do laptop for fechada
+msgid On critical battery power:
+msgstr Com a energia da bateria em nível crítico:
 
 #: ../data/interfaces/xfpm-settings.ui.h:21
-msgid bLaptop Lid/b
-msgstr bTampa do Laptop/b
+msgid bCritical power/b
+msgstr bEnergia crítica/b
 
 #: ../data/interfaces/xfpm-settings.ui.h:22
-msgid Handle display brightness _keys
-msgstr Manipular teclas de brilho da tela
+msgid Lock screen when system is going for sleep
+msgstr Bloquear a tela quando o sistema for suspenso
 
 #: ../data/interfaces/xfpm-settings.ui.h:23
-msgid bKeys/b
-msgstr bTeclas/b
+msgid bSecurity/b
+msgstr bSegurança/b
 
 #: ../data/interfaces/xfpm-settings.ui.h:24
-msgid Controls
-msgstr Controles
+msgid System
+msgstr Sistema
 
 #: 

[Xfce4-commits] [apps/mousepad] branch master updated (f0be17a - bd60975)

2014-08-27 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  f0be17a   I18n: Update translation zh_CN (77%).
   new  bd60975   I18n: Update translation zh_CN (84%).

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


Summary of changes:
 po/zh_CN.po |   44 ++--
 1 file changed, 22 insertions(+), 22 deletions(-)

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


[Xfce4-commits] [apps/mousepad] 01/01: I18n: Update translation zh_CN (84%).

2014-08-27 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 bd60975e7805c450e7380751589802b9d60cc21c
Author: yjwork yjw...@qq.com
Date:   Thu Aug 28 06:30:51 2014 +0200

I18n: Update translation zh_CN (84%).

259 translated messages, 47 untranslated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).
---
 po/zh_CN.po |   44 ++--
 1 file changed, 22 insertions(+), 22 deletions(-)

diff --git a/po/zh_CN.po b/po/zh_CN.po
index 527bbbf..09e95f9 100644
--- a/po/zh_CN.po
+++ b/po/zh_CN.po
@@ -13,7 +13,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: 2014-08-27 14:12+\n
+PO-Revision-Date: 2014-08-28 04:29+\n
 Last-Translator: yjwork yjw...@qq.com\n
 Language-Team: Chinese (China) 
(http://www.transifex.com/projects/p/xfce-apps/language/zh_CN/)\n
 MIME-Version: 1.0\n
@@ -312,7 +312,7 @@ msgstr 读取 \%s\ 状态失败
 
 #: ../mousepad/mousepad-language-action.c:229
 msgid Plain Text
-msgstr 
+msgstr 纯文本
 
 #: ../mousepad/mousepad-language-action.c:230
 msgid No filetype
@@ -358,7 +358,7 @@ msgstr 无
 
 #: ../mousepad/mousepad-prefs-dialog.glade.h:9
 msgid Menu
-msgstr 
+msgstr 菜单
 
 #: ../mousepad/mousepad-prefs-dialog.glade.h:10
 msgid Small Toolbar
@@ -382,19 +382,19 @@ msgstr 
 
 #: ../mousepad/mousepad-prefs-dialog.glade.h:15
 msgid Icons Only
-msgstr 
+msgstr 仅图标
 
 #: ../mousepad/mousepad-prefs-dialog.glade.h:16
 msgid Text Only
-msgstr 
+msgstr 仅文字
 
 #: ../mousepad/mousepad-prefs-dialog.glade.h:17
 msgid Text Below Icons
-msgstr 
+msgstr 文字在图标下
 
 #: ../mousepad/mousepad-prefs-dialog.glade.h:18
 msgid Text Beside Icons
-msgstr 
+msgstr 文字在图标旁
 
 #: ../mousepad/mousepad-prefs-dialog.glade.h:19
 #: ../mousepad/mousepad-window.c:471
@@ -427,7 +427,7 @@ msgstr 
 
 #: ../mousepad/mousepad-prefs-dialog.glade.h:26
 msgid bDisplay/b
-msgstr 
+msgstr b显示/b
 
 #: ../mousepad/mousepad-prefs-dialog.glade.h:27
 msgid Use system monospace font
@@ -435,11 +435,11 @@ msgstr 
 
 #: ../mousepad/mousepad-prefs-dialog.glade.h:28
 msgid bFont/b
-msgstr 
+msgstr b字体/b
 
 #: ../mousepad/mousepad-prefs-dialog.glade.h:29
 msgid bColour scheme/b
-msgstr 
+msgstr b颜色方案/b
 
 #: ../mousepad/mousepad-prefs-dialog.glade.h:30
 msgid View
@@ -475,7 +475,7 @@ msgstr 
 
 #: ../mousepad/mousepad-prefs-dialog.glade.h:38
 msgid Show status bar
-msgstr 
+msgstr 显示状态栏
 
 #: ../mousepad/mousepad-prefs-dialog.glade.h:39
 msgid Show full filename in title bar
@@ -499,19 +499,19 @@ msgstr 
 
 #: ../mousepad/mousepad-prefs-dialog.glade.h:44
 msgid Show toolbar
-msgstr 
+msgstr 显示工具栏
 
 #: ../mousepad/mousepad-prefs-dialog.glade.h:45
 msgid Style:
-msgstr 
+msgstr 样式:
 
 #: ../mousepad/mousepad-prefs-dialog.glade.h:46
 msgid Icon Size:
-msgstr 
+msgstr 图标大小:
 
 #: ../mousepad/mousepad-prefs-dialog.glade.h:47
 msgid bToolbar/b
-msgstr 
+msgstr b工具栏/b
 
 #: ../mousepad/mousepad-prefs-dialog.glade.h:48
 msgid Always show tabs even with one file
@@ -899,11 +899,11 @@ msgstr 在普通选择方式和列选择方式之间切换
 
 #: ../mousepad/mousepad-window.c:429
 msgid Conve_rt
-msgstr 
+msgstr 转换(_R)
 
 #: ../mousepad/mousepad-window.c:430
 msgid To _Uppercase
-msgstr 
+msgstr 大写(_U)
 
 #: ../mousepad/mousepad-window.c:430
 msgid Change the case of the selection to uppercase
@@ -911,7 +911,7 @@ msgstr 改变选中部分大小写方式为大写
 
 #: ../mousepad/mousepad-window.c:431
 msgid To _Lowercase
-msgstr 
+msgstr 小写(_L)
 
 #: ../mousepad/mousepad-window.c:431
 msgid Change the case of the selection to lowercase
@@ -919,7 +919,7 @@ msgstr 改变选中部分大小写方式为小写
 
 #: ../mousepad/mousepad-window.c:432
 msgid To _Title Case
-msgstr 
+msgstr 首字母大写(_T)
 
 #: ../mousepad/mousepad-window.c:432
 msgid Change the case of the selection to title case
@@ -927,7 +927,7 @@ msgstr 改变选中部分大小写方式为首字母大写
 
 #: ../mousepad/mousepad-window.c:433
 msgid To _Opposite Case
-msgstr 
+msgstr 大小写反转(_O)
 
 #: ../mousepad/mousepad-window.c:433
 msgid Change the case of the selection opposite case
@@ -1148,7 +1148,7 @@ msgstr 修改状态栏的可见性
 
 #: ../mousepad/mousepad-window.c:475
 msgid _Fullscreen
-msgstr 
+msgstr 全屏(_F)
 
 #: ../mousepad/mousepad-window.c:475 ../mousepad/mousepad-window.c:4950
 msgid Make the window fullscreen
@@ -1325,7 +1325,7 @@ msgstr 选择 Mousepad 字体
 
 #: ../mousepad/mousepad-window.c:4943
 msgid Leave fullscreen mode
-msgstr 
+msgstr 退出全屏模式
 
 #: ../mousepad.desktop.in.in.h:2
 msgid Simple Text Editor

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