[Xfce4-commits] <xfce4-time-out-plugin:master> Add a button to reset the timer
Florian Rivoal
noreply at xfce.org
Thu Nov 11 16:24:02 CET 2010
Updating branch refs/heads/master
to 636b4b62ec35a2f20d370bd8bd3b18cb376b2a0d (commit)
from 0f7ef4ef2d20d85b17f830f628816169b453af53 (commit)
commit 636b4b62ec35a2f20d370bd8bd3b18cb376b2a0d
Author: Florian Rivoal <frivoal at xfce.org>
Date: Thu Nov 11 23:33:11 2010 +0900
Add a button to reset the timer
Patch from bug #5869, by Hasen il Judy.
panel-plugin/time-out.c | 26 ++++++++++++++++++++
po/ast.po | 47 ++++++++++++++++++++----------------
po/ca.po | 47 ++++++++++++++++++++----------------
po/cs.po | 47 ++++++++++++++++++++----------------
po/da.po | 47 ++++++++++++++++++++----------------
po/de.po | 47 ++++++++++++++++++++----------------
po/el.po | 47 ++++++++++++++++++++----------------
po/en_GB.po | 47 ++++++++++++++++++++----------------
po/es.po | 47 ++++++++++++++++++++----------------
po/eu.po | 47 ++++++++++++++++++++----------------
po/fr.po | 47 ++++++++++++++++++++----------------
po/gl.po | 47 ++++++++++++++++++++----------------
po/hu.po | 47 ++++++++++++++++++++----------------
po/id.po | 47 ++++++++++++++++++++----------------
po/it.po | 47 ++++++++++++++++++++----------------
po/ja.po | 47 ++++++++++++++++++++----------------
po/kk.po | 47 ++++++++++++++++++++----------------
po/lv.po | 47 ++++++++++++++++++++----------------
po/pl.po | 47 ++++++++++++++++++++----------------
po/pt.po | 53 +++++++++++++++++++++++++++---------------
po/pt_BR.po | 47 ++++++++++++++++++++----------------
po/ru.po | 47 ++++++++++++++++++++----------------
po/sv.po | 47 ++++++++++++++++++++----------------
po/tr.po | 47 ++++++++++++++++++++----------------
po/ug.po | 47 ++++++++++++++++++++----------------
po/uk.po | 47 ++++++++++++++++++++----------------
po/ur.po | 47 ++++++++++++++++++++----------------
po/ur_PK.po | 47 ++++++++++++++++++++----------------
po/xfce4-time-out-plugin.pot | 47 ++++++++++++++++++++----------------
po/zh_CN.po | 47 ++++++++++++++++++++----------------
30 files changed, 788 insertions(+), 607 deletions(-)
diff --git a/panel-plugin/time-out.c b/panel-plugin/time-out.c
index e5dc579..2cb5df7 100644
--- a/panel-plugin/time-out.c
+++ b/panel-plugin/time-out.c
@@ -124,6 +124,8 @@ static void time_out_take_break (GtkMenuItem
TimeOutPlugin *time_out);
static void time_out_enabled_toggled (GtkCheckMenuItem *menu_item,
TimeOutPlugin *time_out);
+static void time_out_reset_timer (GtkMenuItem *menu_item,
+ TimeOutPlugin *time_out);
static void time_out_start_break_countdown (TimeOutPlugin *time_out,
gint seconds);
static void time_out_stop_break_countdown (TimeOutPlugin *time_out);
@@ -267,6 +269,14 @@ time_out_construct (XfcePanelPlugin *plugin)
/* Connect to the menu item to react on break requests */
g_signal_connect (G_OBJECT (menu_item), "activate", G_CALLBACK (time_out_take_break), time_out);
+ /* Create menu item for resetting the timer */
+ menu_item = gtk_menu_item_new_with_label (_("Reset timer"));
+ xfce_panel_plugin_menu_insert_item (plugin, GTK_MENU_ITEM (menu_item));
+ gtk_widget_show (GTK_WIDGET (menu_item));
+
+ /* Connect to the menu item to react on reset requests */
+ g_signal_connect (G_OBJECT (menu_item), "activate", G_CALLBACK (time_out_reset_timer), time_out);
+
/* Create menu item for enabling/disabling the countdown */
menu_item = gtk_check_menu_item_new_with_label (_("Enabled"));
xfce_panel_plugin_menu_insert_item (plugin, GTK_MENU_ITEM (menu_item));
@@ -339,7 +349,23 @@ time_out_enabled_toggled (GtkCheckMenuItem *menu_item,
time_out_save_settings (time_out);
}
+static void
+time_out_reset_timer(GtkMenuItem *menu_item,
+ TimeOutPlugin *time_out)
+{
+ g_return_if_fail (GTK_IS_MENU_ITEM (menu_item));
+ g_return_if_fail (time_out != NULL);
+ time_out_countdown_stop (time_out->break_countdown);
+ time_out_countdown_start (time_out->break_countdown, time_out->break_countdown_seconds);
+ /* if we're not enabled, we need to update the timer */
+ if(!time_out->enabled)
+ {
+ time_out_break_countdown_update(time_out->break_countdown, time_out->break_countdown_seconds, time_out);
+ /* keep it paused, however */
+ time_out_countdown_pause (time_out->break_countdown);
+ }
+}
static gboolean
time_out_size_changed (XfcePanelPlugin *plugin,
diff --git a/po/ast.po b/po/ast.po
index 54b3923..088dd56 100644
--- a/po/ast.po
+++ b/po/ast.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: xfce4-time-out-plugin\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-11-08 20:02+0900\n"
+"POT-Creation-Date: 2010-11-12 00:07+0900\n"
"PO-Revision-Date: 2009-07-13 19:55+0100\n"
"Last-Translator: Marcos Antonio Alvarez Costales <marcoscostales at gmail.com>\n"
"Language-Team: Asturian <alministradores at softastur.org>\n"
@@ -14,103 +14,108 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. Create menu item for taking an instant break
-#: ../panel-plugin/time-out.c:264
+#: ../panel-plugin/time-out.c:265
msgid "Take a break"
msgstr "Asele un pocu"
+#. Create menu item for resetting the timer
+#: ../panel-plugin/time-out.c:273
+msgid "Reset timer"
+msgstr ""
+
#. Create menu item for enabling/disabling the countdown
-#: ../panel-plugin/time-out.c:272
+#: ../panel-plugin/time-out.c:281
msgid "Enabled"
msgstr "Activáu"
-#: ../panel-plugin/time-out.c:397
+#: ../panel-plugin/time-out.c:422
msgid ""
"Xfce Panel plugin for taking a break from computer work every now and then."
msgstr ""
-#: ../panel-plugin/time-out.c:406
+#: ../panel-plugin/time-out.c:431
msgid "translator-credits"
msgstr ""
#. Create properties dialog
-#: ../panel-plugin/time-out.c:438
+#: ../panel-plugin/time-out.c:463
#: ../panel-plugin/xfce4-time-out-plugin.desktop.in.in.h:2
msgid "Time Out"
msgstr "Tiempu colar"
#. Create time settings section
-#: ../panel-plugin/time-out.c:455
+#: ../panel-plugin/time-out.c:480
msgid "Time settings"
msgstr "Opciones de tiempu"
#. Create the labels for the minutes and seconds spins
-#: ../panel-plugin/time-out.c:468
+#: ../panel-plugin/time-out.c:493
#, fuzzy
msgid "Minutes"
msgstr "Minutos"
-#: ../panel-plugin/time-out.c:473
+#: ../panel-plugin/time-out.c:498
#, fuzzy
msgid "Seconds"
msgstr "Segundos"
#. Create break countdown time label
-#: ../panel-plugin/time-out.c:479
+#: ../panel-plugin/time-out.c:504
msgid "Time between breaks:"
msgstr "Tiempu ente descansos:"
#. Create lock countdown time label
-#: ../panel-plugin/time-out.c:503
+#: ../panel-plugin/time-out.c:528
msgid "Break length:"
msgstr "Duración del descansu:"
#. Create postpone countdown time label
-#: ../panel-plugin/time-out.c:521
+#: ../panel-plugin/time-out.c:546
msgid "Postpone length:"
msgstr "Duración de posposición:"
#. Create behaviour section
-#: ../panel-plugin/time-out.c:539
+#: ../panel-plugin/time-out.c:564
msgid "Behaviour"
msgstr "Comportamientu"
#. Create postpone check button
-#: ../panel-plugin/time-out.c:550
+#: ../panel-plugin/time-out.c:575
msgid "Allow postpone"
msgstr "Permitir posponer"
#. Create resume check button
-#: ../panel-plugin/time-out.c:557
+#: ../panel-plugin/time-out.c:582
msgid "Resume automatically"
msgstr ""
#. Create appearance section
-#: ../panel-plugin/time-out.c:564
+#: ../panel-plugin/time-out.c:589
msgid "Appearance"
msgstr "Aspeutu"
#. Create display time check button
-#: ../panel-plugin/time-out.c:575
+#: ../panel-plugin/time-out.c:600
msgid "Display remaining time in the panel"
msgstr "Amosar tiempu restante nel panel"
#. Create display hours check button
-#: ../panel-plugin/time-out.c:582
+#: ../panel-plugin/time-out.c:607
msgid "Display hours"
msgstr "Amosar hores"
#. Create display seconds check button
-#: ../panel-plugin/time-out.c:589
+#: ../panel-plugin/time-out.c:614
msgid "Display seconds"
msgstr "Amosar segundos"
#. Create postpone button
-#: ../panel-plugin/time-out-lock-screen.c:209
+#: ../panel-plugin/time-out-lock-screen.c:219
msgid "_Postpone"
msgstr "_Postponer"
#. Create resume button
-#: ../panel-plugin/time-out-lock-screen.c:215
+#: ../panel-plugin/time-out-lock-screen.c:225
msgid "_Resume"
msgstr ""
diff --git a/po/ca.po b/po/ca.po
index db5fa6a..01d9259 100644
--- a/po/ca.po
+++ b/po/ca.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: xfce4-time-out-plugin\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-11-08 20:02+0900\n"
+"POT-Creation-Date: 2010-11-12 00:07+0900\n"
"PO-Revision-Date: 2009-04-03 12:50+0100\n"
"Last-Translator: Harald Servat <redcrash at gmail.com>\n"
"Language-Team: Harald Servat\n"
@@ -20,103 +20,108 @@ msgstr ""
"X-Poedit-Country: Spain\n"
#. Create menu item for taking an instant break
-#: ../panel-plugin/time-out.c:264
+#: ../panel-plugin/time-out.c:265
msgid "Take a break"
msgstr "Pren un descans"
+#. Create menu item for resetting the timer
+#: ../panel-plugin/time-out.c:273
+msgid "Reset timer"
+msgstr ""
+
#. Create menu item for enabling/disabling the countdown
-#: ../panel-plugin/time-out.c:272
+#: ../panel-plugin/time-out.c:281
msgid "Enabled"
msgstr "Activat"
-#: ../panel-plugin/time-out.c:397
+#: ../panel-plugin/time-out.c:422
msgid ""
"Xfce Panel plugin for taking a break from computer work every now and then."
msgstr ""
-#: ../panel-plugin/time-out.c:406
+#: ../panel-plugin/time-out.c:431
msgid "translator-credits"
msgstr ""
#. Create properties dialog
-#: ../panel-plugin/time-out.c:438
+#: ../panel-plugin/time-out.c:463
#: ../panel-plugin/xfce4-time-out-plugin.desktop.in.in.h:2
msgid "Time Out"
msgstr "Pausa"
#. Create time settings section
-#: ../panel-plugin/time-out.c:455
+#: ../panel-plugin/time-out.c:480
msgid "Time settings"
msgstr "Opcions del temps"
#. Create the labels for the minutes and seconds spins
-#: ../panel-plugin/time-out.c:468
+#: ../panel-plugin/time-out.c:493
#, fuzzy
msgid "Minutes"
msgstr "Minuts"
-#: ../panel-plugin/time-out.c:473
+#: ../panel-plugin/time-out.c:498
#, fuzzy
msgid "Seconds"
msgstr "Segons"
#. Create break countdown time label
-#: ../panel-plugin/time-out.c:479
+#: ../panel-plugin/time-out.c:504
msgid "Time between breaks:"
msgstr "Temps entre descansos:"
#. Create lock countdown time label
-#: ../panel-plugin/time-out.c:503
+#: ../panel-plugin/time-out.c:528
msgid "Break length:"
msgstr "Durada del descans:"
#. Create postpone countdown time label
-#: ../panel-plugin/time-out.c:521
+#: ../panel-plugin/time-out.c:546
msgid "Postpone length:"
msgstr "Durada de la posposició:"
#. Create behaviour section
-#: ../panel-plugin/time-out.c:539
+#: ../panel-plugin/time-out.c:564
msgid "Behaviour"
msgstr "Comportament"
#. Create postpone check button
-#: ../panel-plugin/time-out.c:550
+#: ../panel-plugin/time-out.c:575
msgid "Allow postpone"
msgstr "Permetre posposar"
#. Create resume check button
-#: ../panel-plugin/time-out.c:557
+#: ../panel-plugin/time-out.c:582
msgid "Resume automatically"
msgstr ""
#. Create appearance section
-#: ../panel-plugin/time-out.c:564
+#: ../panel-plugin/time-out.c:589
msgid "Appearance"
msgstr "Aparença"
#. Create display time check button
-#: ../panel-plugin/time-out.c:575
+#: ../panel-plugin/time-out.c:600
msgid "Display remaining time in the panel"
msgstr "Mostrar el temps restant en el panell"
#. Create display hours check button
-#: ../panel-plugin/time-out.c:582
+#: ../panel-plugin/time-out.c:607
msgid "Display hours"
msgstr "Mostrar hores"
#. Create display seconds check button
-#: ../panel-plugin/time-out.c:589
+#: ../panel-plugin/time-out.c:614
msgid "Display seconds"
msgstr "Mostrar segons"
#. Create postpone button
-#: ../panel-plugin/time-out-lock-screen.c:209
+#: ../panel-plugin/time-out-lock-screen.c:219
msgid "_Postpone"
msgstr "_Posposar"
#. Create resume button
-#: ../panel-plugin/time-out-lock-screen.c:215
+#: ../panel-plugin/time-out-lock-screen.c:225
msgid "_Resume"
msgstr ""
diff --git a/po/cs.po b/po/cs.po
index 4cac8a4..9078219 100644
--- a/po/cs.po
+++ b/po/cs.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: xfce 4-time-out-plugin\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-11-08 20:02+0900\n"
+"POT-Creation-Date: 2010-11-12 00:07+0900\n"
"PO-Revision-Date: 2007-12-17 14:22+0100\n"
"Last-Translator: Michal Várady <miko.vaji at gmail.com>\n"
"Language-Team: Czech\n"
@@ -18,103 +18,108 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
#. Create menu item for taking an instant break
-#: ../panel-plugin/time-out.c:264
+#: ../panel-plugin/time-out.c:265
msgid "Take a break"
msgstr "Vzít si přestávku"
+#. Create menu item for resetting the timer
+#: ../panel-plugin/time-out.c:273
+msgid "Reset timer"
+msgstr ""
+
#. Create menu item for enabling/disabling the countdown
-#: ../panel-plugin/time-out.c:272
+#: ../panel-plugin/time-out.c:281
msgid "Enabled"
msgstr "Povoleno"
-#: ../panel-plugin/time-out.c:397
+#: ../panel-plugin/time-out.c:422
msgid ""
"Xfce Panel plugin for taking a break from computer work every now and then."
msgstr ""
-#: ../panel-plugin/time-out.c:406
+#: ../panel-plugin/time-out.c:431
msgid "translator-credits"
msgstr ""
#. Create properties dialog
-#: ../panel-plugin/time-out.c:438
+#: ../panel-plugin/time-out.c:463
#: ../panel-plugin/xfce4-time-out-plugin.desktop.in.in.h:2
msgid "Time Out"
msgstr "Čas vypršel"
#. Create time settings section
-#: ../panel-plugin/time-out.c:455
+#: ../panel-plugin/time-out.c:480
msgid "Time settings"
msgstr "Nastavení času"
#. Create the labels for the minutes and seconds spins
-#: ../panel-plugin/time-out.c:468
+#: ../panel-plugin/time-out.c:493
#, fuzzy
msgid "Minutes"
msgstr "Minut "
-#: ../panel-plugin/time-out.c:473
+#: ../panel-plugin/time-out.c:498
#, fuzzy
msgid "Seconds"
msgstr "Sekund"
#. Create break countdown time label
-#: ../panel-plugin/time-out.c:479
+#: ../panel-plugin/time-out.c:504
msgid "Time between breaks:"
msgstr "čas mezi přestávkami:"
#. Create lock countdown time label
-#: ../panel-plugin/time-out.c:503
+#: ../panel-plugin/time-out.c:528
msgid "Break length:"
msgstr "Délka přestávky:"
#. Create postpone countdown time label
-#: ../panel-plugin/time-out.c:521
+#: ../panel-plugin/time-out.c:546
msgid "Postpone length:"
msgstr "Délka odložení:"
#. Create behaviour section
-#: ../panel-plugin/time-out.c:539
+#: ../panel-plugin/time-out.c:564
msgid "Behaviour"
msgstr "Chování"
#. Create postpone check button
-#: ../panel-plugin/time-out.c:550
+#: ../panel-plugin/time-out.c:575
msgid "Allow postpone"
msgstr "Povolit odložení"
#. Create resume check button
-#: ../panel-plugin/time-out.c:557
+#: ../panel-plugin/time-out.c:582
msgid "Resume automatically"
msgstr ""
#. Create appearance section
-#: ../panel-plugin/time-out.c:564
+#: ../panel-plugin/time-out.c:589
msgid "Appearance"
msgstr "Vzhled"
#. Create display time check button
-#: ../panel-plugin/time-out.c:575
+#: ../panel-plugin/time-out.c:600
msgid "Display remaining time in the panel"
msgstr "Zobrazovat zbývající čas v panelu"
#. Create display hours check button
-#: ../panel-plugin/time-out.c:582
+#: ../panel-plugin/time-out.c:607
msgid "Display hours"
msgstr "Zobrazovat hodiny"
#. Create display seconds check button
-#: ../panel-plugin/time-out.c:589
+#: ../panel-plugin/time-out.c:614
msgid "Display seconds"
msgstr "Zobrazovat sekundy"
#. Create postpone button
-#: ../panel-plugin/time-out-lock-screen.c:209
+#: ../panel-plugin/time-out-lock-screen.c:219
msgid "_Postpone"
msgstr "_Odložit"
#. Create resume button
-#: ../panel-plugin/time-out-lock-screen.c:215
+#: ../panel-plugin/time-out-lock-screen.c:225
msgid "_Resume"
msgstr ""
diff --git a/po/da.po b/po/da.po
index 827c459..14c01b8 100644
--- a/po/da.po
+++ b/po/da.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: xfce4-time-out-plugin 0.1.1\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-11-08 20:02+0900\n"
+"POT-Creation-Date: 2010-11-12 00:07+0900\n"
"PO-Revision-Date: 2008-10-14 15:10+0100\n"
"Last-Translator: Per Kongstad <p_kongstad at op.pl>\n"
"Language-Team: Danish <dansk at dansk-gruppen.dk>\n"
@@ -20,20 +20,25 @@ msgstr ""
"X-Poedit-Country: DENMARK\n"
#. Create menu item for taking an instant break
-#: ../panel-plugin/time-out.c:264
+#: ../panel-plugin/time-out.c:265
msgid "Take a break"
msgstr "Tag en pause"
+#. Create menu item for resetting the timer
+#: ../panel-plugin/time-out.c:273
+msgid "Reset timer"
+msgstr ""
+
#. Create menu item for enabling/disabling the countdown
-#: ../panel-plugin/time-out.c:272
+#: ../panel-plugin/time-out.c:281
msgid "Enabled"
msgstr "Aktiveret"
-#: ../panel-plugin/time-out.c:397
+#: ../panel-plugin/time-out.c:422
msgid "Xfce Panel plugin for taking a break from computer work every now and then."
msgstr "En udvidelse til panelet Xfce som indfører en pause fra arbejde med computeren fra tid til anden."
-#: ../panel-plugin/time-out.c:406
+#: ../panel-plugin/time-out.c:431
msgid "translator-credits"
msgstr ""
"Per Kongstad <p_kongstad at op.pl>\n"
@@ -45,82 +50,82 @@ msgstr ""
"Mere info: http://www.dansk-gruppen.dk"
#. Create properties dialog
-#: ../panel-plugin/time-out.c:438
+#: ../panel-plugin/time-out.c:463
#: ../panel-plugin/xfce4-time-out-plugin.desktop.in.in.h:2
msgid "Time Out"
msgstr "Timeout"
#. Create time settings section
-#: ../panel-plugin/time-out.c:455
+#: ../panel-plugin/time-out.c:480
msgid "Time settings"
msgstr "Tidsindstillinger"
#. Create the labels for the minutes and seconds spins
-#: ../panel-plugin/time-out.c:468
+#: ../panel-plugin/time-out.c:493
msgid "Minutes"
msgstr "Minutter"
-#: ../panel-plugin/time-out.c:473
+#: ../panel-plugin/time-out.c:498
msgid "Seconds"
msgstr "Sekunder"
#. Create break countdown time label
-#: ../panel-plugin/time-out.c:479
+#: ../panel-plugin/time-out.c:504
msgid "Time between breaks:"
msgstr "Tid mellem pauser:"
#. Create lock countdown time label
-#: ../panel-plugin/time-out.c:503
+#: ../panel-plugin/time-out.c:528
msgid "Break length:"
msgstr "Pauselængde:"
#. Create postpone countdown time label
-#: ../panel-plugin/time-out.c:521
+#: ../panel-plugin/time-out.c:546
msgid "Postpone length:"
msgstr "Udsættelseslængde:"
#. Create behaviour section
-#: ../panel-plugin/time-out.c:539
+#: ../panel-plugin/time-out.c:564
msgid "Behaviour"
msgstr "Opførsel"
#. Create postpone check button
-#: ../panel-plugin/time-out.c:550
+#: ../panel-plugin/time-out.c:575
msgid "Allow postpone"
msgstr "Tillad udsættelse"
#. Create resume check button
-#: ../panel-plugin/time-out.c:557
+#: ../panel-plugin/time-out.c:582
msgid "Resume automatically"
msgstr "Genoptag automatisk"
#. Create appearance section
-#: ../panel-plugin/time-out.c:564
+#: ../panel-plugin/time-out.c:589
msgid "Appearance"
msgstr "Udseende"
#. Create display time check button
-#: ../panel-plugin/time-out.c:575
+#: ../panel-plugin/time-out.c:600
msgid "Display remaining time in the panel"
msgstr "Vis tilbageværende tid i panelet"
#. Create display hours check button
-#: ../panel-plugin/time-out.c:582
+#: ../panel-plugin/time-out.c:607
msgid "Display hours"
msgstr "Vis timer"
#. Create display seconds check button
-#: ../panel-plugin/time-out.c:589
+#: ../panel-plugin/time-out.c:614
msgid "Display seconds"
msgstr "Vis sekunder"
#. Create postpone button
-#: ../panel-plugin/time-out-lock-screen.c:209
+#: ../panel-plugin/time-out-lock-screen.c:219
msgid "_Postpone"
msgstr "_Udsæt"
#. Create resume button
-#: ../panel-plugin/time-out-lock-screen.c:215
+#: ../panel-plugin/time-out-lock-screen.c:225
msgid "_Resume"
msgstr "_Genoptag"
diff --git a/po/de.po b/po/de.po
index fb6941a..2c1c6ee 100644
--- a/po/de.po
+++ b/po/de.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: xfce4-time-out-plugin 0.1.1\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-11-08 20:02+0900\n"
+"POT-Creation-Date: 2010-11-12 00:07+0900\n"
"PO-Revision-Date: 2007-05-06 01:25++0200\n"
"Last-Translator: Jannis Pohlmann <jannis at xfce.org>\n"
"Language-Team: German <de at li.org>\n"
@@ -17,103 +17,108 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
#. Create menu item for taking an instant break
-#: ../panel-plugin/time-out.c:264
+#: ../panel-plugin/time-out.c:265
msgid "Take a break"
msgstr "Eine Pause machen"
+#. Create menu item for resetting the timer
+#: ../panel-plugin/time-out.c:273
+msgid "Reset timer"
+msgstr ""
+
#. Create menu item for enabling/disabling the countdown
-#: ../panel-plugin/time-out.c:272
+#: ../panel-plugin/time-out.c:281
msgid "Enabled"
msgstr "Aktiviert"
-#: ../panel-plugin/time-out.c:397
+#: ../panel-plugin/time-out.c:422
msgid ""
"Xfce Panel plugin for taking a break from computer work every now and then."
msgstr ""
-#: ../panel-plugin/time-out.c:406
+#: ../panel-plugin/time-out.c:431
msgid "translator-credits"
msgstr ""
#. Create properties dialog
-#: ../panel-plugin/time-out.c:438
+#: ../panel-plugin/time-out.c:463
#: ../panel-plugin/xfce4-time-out-plugin.desktop.in.in.h:2
msgid "Time Out"
msgstr "Auszeit"
#. Create time settings section
-#: ../panel-plugin/time-out.c:455
+#: ../panel-plugin/time-out.c:480
msgid "Time settings"
msgstr "Zeiten"
#. Create the labels for the minutes and seconds spins
-#: ../panel-plugin/time-out.c:468
+#: ../panel-plugin/time-out.c:493
#, fuzzy
msgid "Minutes"
msgstr "Minuten"
-#: ../panel-plugin/time-out.c:473
+#: ../panel-plugin/time-out.c:498
#, fuzzy
msgid "Seconds"
msgstr "Sekunden"
#. Create break countdown time label
-#: ../panel-plugin/time-out.c:479
+#: ../panel-plugin/time-out.c:504
msgid "Time between breaks:"
msgstr "Zeit zwischen den Pausen:"
#. Create lock countdown time label
-#: ../panel-plugin/time-out.c:503
+#: ../panel-plugin/time-out.c:528
msgid "Break length:"
msgstr "Dauer der Pausen:"
#. Create postpone countdown time label
-#: ../panel-plugin/time-out.c:521
+#: ../panel-plugin/time-out.c:546
msgid "Postpone length:"
msgstr "Dauer des Verschiebens:"
#. Create behaviour section
-#: ../panel-plugin/time-out.c:539
+#: ../panel-plugin/time-out.c:564
msgid "Behaviour"
msgstr "Verhalten"
#. Create postpone check button
-#: ../panel-plugin/time-out.c:550
+#: ../panel-plugin/time-out.c:575
msgid "Allow postpone"
msgstr "Erlaube das Verschieben von Pausen"
#. Create resume check button
-#: ../panel-plugin/time-out.c:557
+#: ../panel-plugin/time-out.c:582
msgid "Resume automatically"
msgstr ""
#. Create appearance section
-#: ../panel-plugin/time-out.c:564
+#: ../panel-plugin/time-out.c:589
msgid "Appearance"
msgstr "Aussehen"
#. Create display time check button
-#: ../panel-plugin/time-out.c:575
+#: ../panel-plugin/time-out.c:600
msgid "Display remaining time in the panel"
msgstr "Zeige verbleibende Zeit in der Leiste an"
#. Create display hours check button
-#: ../panel-plugin/time-out.c:582
+#: ../panel-plugin/time-out.c:607
msgid "Display hours"
msgstr "Zeige Stunden an"
#. Create display seconds check button
-#: ../panel-plugin/time-out.c:589
+#: ../panel-plugin/time-out.c:614
msgid "Display seconds"
msgstr "Zeige Sekunden an"
#. Create postpone button
-#: ../panel-plugin/time-out-lock-screen.c:209
+#: ../panel-plugin/time-out-lock-screen.c:219
msgid "_Postpone"
msgstr "_Pause verschieben"
#. Create resume button
-#: ../panel-plugin/time-out-lock-screen.c:215
+#: ../panel-plugin/time-out-lock-screen.c:225
msgid "_Resume"
msgstr ""
diff --git a/po/el.po b/po/el.po
index b6c9fa6..873c16a 100644
--- a/po/el.po
+++ b/po/el.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: el\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-11-08 20:02+0900\n"
+"POT-Creation-Date: 2010-11-12 00:07+0900\n"
"PO-Revision-Date: 2008-04-28 18:45+0300\n"
"Last-Translator: Evaggelos Balaskas <ebalaskas at ebalaskas.gr>\n"
"Language-Team: Greek <nls at tux.hellug.gr>\n"
@@ -18,103 +18,108 @@ msgstr ""
"X-Generator: KBabel 1.11.4\n"
#. Create menu item for taking an instant break
-#: ../panel-plugin/time-out.c:264
+#: ../panel-plugin/time-out.c:265
msgid "Take a break"
msgstr "Κάνε διάλειμμα"
+#. Create menu item for resetting the timer
+#: ../panel-plugin/time-out.c:273
+msgid "Reset timer"
+msgstr ""
+
#. Create menu item for enabling/disabling the countdown
-#: ../panel-plugin/time-out.c:272
+#: ../panel-plugin/time-out.c:281
msgid "Enabled"
msgstr "Ενεργοποίηση"
-#: ../panel-plugin/time-out.c:397
+#: ../panel-plugin/time-out.c:422
msgid ""
"Xfce Panel plugin for taking a break from computer work every now and then."
msgstr ""
-#: ../panel-plugin/time-out.c:406
+#: ../panel-plugin/time-out.c:431
msgid "translator-credits"
msgstr ""
#. Create properties dialog
-#: ../panel-plugin/time-out.c:438
+#: ../panel-plugin/time-out.c:463
#: ../panel-plugin/xfce4-time-out-plugin.desktop.in.in.h:2
msgid "Time Out"
msgstr "Χρονική ανάπαυλα"
#. Create time settings section
-#: ../panel-plugin/time-out.c:455
+#: ../panel-plugin/time-out.c:480
msgid "Time settings"
msgstr "Ρυθμίσεις ώρας"
#. Create the labels for the minutes and seconds spins
-#: ../panel-plugin/time-out.c:468
+#: ../panel-plugin/time-out.c:493
#, fuzzy
msgid "Minutes"
msgstr "Λεπτά "
-#: ../panel-plugin/time-out.c:473
+#: ../panel-plugin/time-out.c:498
#, fuzzy
msgid "Seconds"
msgstr "Δευτερόλεπτα"
#. Create break countdown time label
-#: ../panel-plugin/time-out.c:479
+#: ../panel-plugin/time-out.c:504
msgid "Time between breaks:"
msgstr "Χρόνος μεταξύ των διαλειμμάτων:"
#. Create lock countdown time label
-#: ../panel-plugin/time-out.c:503
+#: ../panel-plugin/time-out.c:528
msgid "Break length:"
msgstr "Διάρκεια διαλείμματος:"
#. Create postpone countdown time label
-#: ../panel-plugin/time-out.c:521
+#: ../panel-plugin/time-out.c:546
msgid "Postpone length:"
msgstr "Διάρκεια αναβολής:"
#. Create behaviour section
-#: ../panel-plugin/time-out.c:539
+#: ../panel-plugin/time-out.c:564
msgid "Behaviour"
msgstr "Συμπεριφορά"
#. Create postpone check button
-#: ../panel-plugin/time-out.c:550
+#: ../panel-plugin/time-out.c:575
msgid "Allow postpone"
msgstr "Να επιτρέπονται οι αναβολές"
#. Create resume check button
-#: ../panel-plugin/time-out.c:557
+#: ../panel-plugin/time-out.c:582
msgid "Resume automatically"
msgstr ""
#. Create appearance section
-#: ../panel-plugin/time-out.c:564
+#: ../panel-plugin/time-out.c:589
msgid "Appearance"
msgstr "Εμφάνιση"
#. Create display time check button
-#: ../panel-plugin/time-out.c:575
+#: ../panel-plugin/time-out.c:600
msgid "Display remaining time in the panel"
msgstr "Εμφάνιση χρόνου που απομένει στο ταμπλό"
#. Create display hours check button
-#: ../panel-plugin/time-out.c:582
+#: ../panel-plugin/time-out.c:607
msgid "Display hours"
msgstr "Να εμφανίζονται οι ώρες"
#. Create display seconds check button
-#: ../panel-plugin/time-out.c:589
+#: ../panel-plugin/time-out.c:614
msgid "Display seconds"
msgstr "Να εμφανίζονται τα δευτερόλεπτα"
#. Create postpone button
-#: ../panel-plugin/time-out-lock-screen.c:209
+#: ../panel-plugin/time-out-lock-screen.c:219
msgid "_Postpone"
msgstr "Αν_αβολή"
#. Create resume button
-#: ../panel-plugin/time-out-lock-screen.c:215
+#: ../panel-plugin/time-out-lock-screen.c:225
msgid "_Resume"
msgstr ""
diff --git a/po/en_GB.po b/po/en_GB.po
index 38778a7..5d9e164 100644
--- a/po/en_GB.po
+++ b/po/en_GB.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: xfce4-time-out-plugin\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-11-08 20:02+0900\n"
+"POT-Creation-Date: 2010-11-12 00:07+0900\n"
"PO-Revision-Date: 2008-05-10 13:36+1000\n"
"Last-Translator: Jeff Bailes <thepizzaking at gmail.com>\n"
"Language-Team: English/GB\n"
@@ -19,101 +19,106 @@ msgstr ""
"X-Poedit-Country: UNITED KINGDOM\n"
#. Create menu item for taking an instant break
-#: ../panel-plugin/time-out.c:264
+#: ../panel-plugin/time-out.c:265
msgid "Take a break"
msgstr "Take a break"
+#. Create menu item for resetting the timer
+#: ../panel-plugin/time-out.c:273
+msgid "Reset timer"
+msgstr ""
+
#. Create menu item for enabling/disabling the countdown
-#: ../panel-plugin/time-out.c:272
+#: ../panel-plugin/time-out.c:281
msgid "Enabled"
msgstr "Enabled"
-#: ../panel-plugin/time-out.c:397
+#: ../panel-plugin/time-out.c:422
msgid ""
"Xfce Panel plugin for taking a break from computer work every now and then."
msgstr ""
-#: ../panel-plugin/time-out.c:406
+#: ../panel-plugin/time-out.c:431
msgid "translator-credits"
msgstr ""
#. Create properties dialog
-#: ../panel-plugin/time-out.c:438
+#: ../panel-plugin/time-out.c:463
#: ../panel-plugin/xfce4-time-out-plugin.desktop.in.in.h:2
msgid "Time Out"
msgstr "Time Out"
#. Create time settings section
-#: ../panel-plugin/time-out.c:455
+#: ../panel-plugin/time-out.c:480
msgid "Time settings"
msgstr "Time settings"
#. Create the labels for the minutes and seconds spins
-#: ../panel-plugin/time-out.c:468
+#: ../panel-plugin/time-out.c:493
msgid "Minutes"
msgstr "Minutes"
-#: ../panel-plugin/time-out.c:473
+#: ../panel-plugin/time-out.c:498
msgid "Seconds"
msgstr "Seconds"
#. Create break countdown time label
-#: ../panel-plugin/time-out.c:479
+#: ../panel-plugin/time-out.c:504
msgid "Time between breaks:"
msgstr "Time between breaks:"
#. Create lock countdown time label
-#: ../panel-plugin/time-out.c:503
+#: ../panel-plugin/time-out.c:528
msgid "Break length:"
msgstr "Break length:"
#. Create postpone countdown time label
-#: ../panel-plugin/time-out.c:521
+#: ../panel-plugin/time-out.c:546
msgid "Postpone length:"
msgstr "Postpone length:"
#. Create behaviour section
-#: ../panel-plugin/time-out.c:539
+#: ../panel-plugin/time-out.c:564
msgid "Behaviour"
msgstr "Behaviour"
#. Create postpone check button
-#: ../panel-plugin/time-out.c:550
+#: ../panel-plugin/time-out.c:575
msgid "Allow postpone"
msgstr "Allow postpone"
#. Create resume check button
-#: ../panel-plugin/time-out.c:557
+#: ../panel-plugin/time-out.c:582
msgid "Resume automatically"
msgstr "Resume automatically"
#. Create appearance section
-#: ../panel-plugin/time-out.c:564
+#: ../panel-plugin/time-out.c:589
msgid "Appearance"
msgstr "Appearance"
#. Create display time check button
-#: ../panel-plugin/time-out.c:575
+#: ../panel-plugin/time-out.c:600
msgid "Display remaining time in the panel"
msgstr "Display remaining time in the panel"
#. Create display hours check button
-#: ../panel-plugin/time-out.c:582
+#: ../panel-plugin/time-out.c:607
msgid "Display hours"
msgstr "Display hours"
#. Create display seconds check button
-#: ../panel-plugin/time-out.c:589
+#: ../panel-plugin/time-out.c:614
msgid "Display seconds"
msgstr "Display seconds"
#. Create postpone button
-#: ../panel-plugin/time-out-lock-screen.c:209
+#: ../panel-plugin/time-out-lock-screen.c:219
msgid "_Postpone"
msgstr "_Postpone"
#. Create resume button
-#: ../panel-plugin/time-out-lock-screen.c:215
+#: ../panel-plugin/time-out-lock-screen.c:225
msgid "_Resume"
msgstr "_Resume"
diff --git a/po/es.po b/po/es.po
index c96dbce..c7978dd 100644
--- a/po/es.po
+++ b/po/es.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: xfce4-time-out-plugin\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-11-08 20:02+0900\n"
+"POT-Creation-Date: 2010-11-12 00:07+0900\n"
"PO-Revision-Date: 2009-02-11 21:46+0100\n"
"Last-Translator: Abel Martín <abel.martin.ruiz at gmail.com>\n"
"Language-Team: Spanish\n"
@@ -19,103 +19,108 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. Create menu item for taking an instant break
-#: ../panel-plugin/time-out.c:264
+#: ../panel-plugin/time-out.c:265
msgid "Take a break"
msgstr "Tómese un descanso"
+#. Create menu item for resetting the timer
+#: ../panel-plugin/time-out.c:273
+msgid "Reset timer"
+msgstr ""
+
#. Create menu item for enabling/disabling the countdown
-#: ../panel-plugin/time-out.c:272
+#: ../panel-plugin/time-out.c:281
msgid "Enabled"
msgstr "Activado"
-#: ../panel-plugin/time-out.c:397
+#: ../panel-plugin/time-out.c:422
msgid ""
"Xfce Panel plugin for taking a break from computer work every now and then."
msgstr ""
-#: ../panel-plugin/time-out.c:406
+#: ../panel-plugin/time-out.c:431
msgid "translator-credits"
msgstr ""
#. Create properties dialog
-#: ../panel-plugin/time-out.c:438
+#: ../panel-plugin/time-out.c:463
#: ../panel-plugin/xfce4-time-out-plugin.desktop.in.in.h:2
msgid "Time Out"
msgstr "Tiempo de salir"
#. Create time settings section
-#: ../panel-plugin/time-out.c:455
+#: ../panel-plugin/time-out.c:480
msgid "Time settings"
msgstr "Opciones de tiempo"
#. Create the labels for the minutes and seconds spins
-#: ../panel-plugin/time-out.c:468
+#: ../panel-plugin/time-out.c:493
#, fuzzy
msgid "Minutes"
msgstr "Minutos"
-#: ../panel-plugin/time-out.c:473
+#: ../panel-plugin/time-out.c:498
#, fuzzy
msgid "Seconds"
msgstr "Segundo"
#. Create break countdown time label
-#: ../panel-plugin/time-out.c:479
+#: ../panel-plugin/time-out.c:504
msgid "Time between breaks:"
msgstr "Tiempo entre descansos:"
#. Create lock countdown time label
-#: ../panel-plugin/time-out.c:503
+#: ../panel-plugin/time-out.c:528
msgid "Break length:"
msgstr "Duración de descanso:"
#. Create postpone countdown time label
-#: ../panel-plugin/time-out.c:521
+#: ../panel-plugin/time-out.c:546
msgid "Postpone length:"
msgstr "Duración de posposición:"
#. Create behaviour section
-#: ../panel-plugin/time-out.c:539
+#: ../panel-plugin/time-out.c:564
msgid "Behaviour"
msgstr "Comportamiento"
#. Create postpone check button
-#: ../panel-plugin/time-out.c:550
+#: ../panel-plugin/time-out.c:575
msgid "Allow postpone"
msgstr "Permitir posponer"
#. Create resume check button
-#: ../panel-plugin/time-out.c:557
+#: ../panel-plugin/time-out.c:582
msgid "Resume automatically"
msgstr ""
#. Create appearance section
-#: ../panel-plugin/time-out.c:564
+#: ../panel-plugin/time-out.c:589
msgid "Appearance"
msgstr "Apariencia"
#. Create display time check button
-#: ../panel-plugin/time-out.c:575
+#: ../panel-plugin/time-out.c:600
msgid "Display remaining time in the panel"
msgstr "Mostrar tiempo restante en el panel"
#. Create display hours check button
-#: ../panel-plugin/time-out.c:582
+#: ../panel-plugin/time-out.c:607
msgid "Display hours"
msgstr "Mostrar horas"
#. Create display seconds check button
-#: ../panel-plugin/time-out.c:589
+#: ../panel-plugin/time-out.c:614
msgid "Display seconds"
msgstr "Mostrar segundos"
#. Create postpone button
-#: ../panel-plugin/time-out-lock-screen.c:209
+#: ../panel-plugin/time-out-lock-screen.c:219
msgid "_Postpone"
msgstr "_Postponer"
#. Create resume button
-#: ../panel-plugin/time-out-lock-screen.c:215
+#: ../panel-plugin/time-out-lock-screen.c:225
msgid "_Resume"
msgstr ""
diff --git a/po/eu.po b/po/eu.po
index e37b247..f174563 100644
--- a/po/eu.po
+++ b/po/eu.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: xfce4-time-out-plugin\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-11-08 20:02+0900\n"
+"POT-Creation-Date: 2010-11-12 00:07+0900\n"
"PO-Revision-Date: 2008-11-05 13:57+0200\n"
"Last-Translator: Piarres Beobide <pi at beobide.net>\n"
"Language-Team: Euskara <debian-l10n-basque at lists.debian.org>\n"
@@ -19,103 +19,108 @@ msgstr ""
"X-Generator: Pootle 1.2.0\n"
#. Create menu item for taking an instant break
-#: ../panel-plugin/time-out.c:264
+#: ../panel-plugin/time-out.c:265
msgid "Take a break"
msgstr "Atseden bat hartu"
+#. Create menu item for resetting the timer
+#: ../panel-plugin/time-out.c:273
+msgid "Reset timer"
+msgstr ""
+
#. Create menu item for enabling/disabling the countdown
-#: ../panel-plugin/time-out.c:272
+#: ../panel-plugin/time-out.c:281
msgid "Enabled"
msgstr "Gaituta"
-#: ../panel-plugin/time-out.c:397
+#: ../panel-plugin/time-out.c:422
msgid ""
"Xfce Panel plugin for taking a break from computer work every now and then."
msgstr ""
-#: ../panel-plugin/time-out.c:406
+#: ../panel-plugin/time-out.c:431
msgid "translator-credits"
msgstr ""
#. Create properties dialog
-#: ../panel-plugin/time-out.c:438
+#: ../panel-plugin/time-out.c:463
#: ../panel-plugin/xfce4-time-out-plugin.desktop.in.in.h:2
msgid "Time Out"
msgstr "Orduz-kanpo"
#. Create time settings section
-#: ../panel-plugin/time-out.c:455
+#: ../panel-plugin/time-out.c:480
msgid "Time settings"
msgstr "Ordu ezarpenak"
#. Create the labels for the minutes and seconds spins
-#: ../panel-plugin/time-out.c:468
+#: ../panel-plugin/time-out.c:493
#, fuzzy
msgid "Minutes"
msgstr "Minutu"
-#: ../panel-plugin/time-out.c:473
+#: ../panel-plugin/time-out.c:498
#, fuzzy
msgid "Seconds"
msgstr "Segundu"
#. Create break countdown time label
-#: ../panel-plugin/time-out.c:479
+#: ../panel-plugin/time-out.c:504
msgid "Time between breaks:"
msgstr "Atseden arteko denbora:"
#. Create lock countdown time label
-#: ../panel-plugin/time-out.c:503
+#: ../panel-plugin/time-out.c:528
msgid "Break length:"
msgstr "Atseden iraupena:"
#. Create postpone countdown time label
-#: ../panel-plugin/time-out.c:521
+#: ../panel-plugin/time-out.c:546
msgid "Postpone length:"
msgstr "Atzerapen denbora:"
#. Create behaviour section
-#: ../panel-plugin/time-out.c:539
+#: ../panel-plugin/time-out.c:564
msgid "Behaviour"
msgstr "Portaera"
#. Create postpone check button
-#: ../panel-plugin/time-out.c:550
+#: ../panel-plugin/time-out.c:575
msgid "Allow postpone"
msgstr "Gaitu atzeratzea"
#. Create resume check button
-#: ../panel-plugin/time-out.c:557
+#: ../panel-plugin/time-out.c:582
msgid "Resume automatically"
msgstr ""
#. Create appearance section
-#: ../panel-plugin/time-out.c:564
+#: ../panel-plugin/time-out.c:589
msgid "Appearance"
msgstr "Itxura"
#. Create display time check button
-#: ../panel-plugin/time-out.c:575
+#: ../panel-plugin/time-out.c:600
msgid "Display remaining time in the panel"
msgstr "Bistaratu gelditzen den denbora panelean"
#. Create display hours check button
-#: ../panel-plugin/time-out.c:582
+#: ../panel-plugin/time-out.c:607
msgid "Display hours"
msgstr "Bistaratu orduak"
#. Create display seconds check button
-#: ../panel-plugin/time-out.c:589
+#: ../panel-plugin/time-out.c:614
msgid "Display seconds"
msgstr "Bistaratu segunduak"
#. Create postpone button
-#: ../panel-plugin/time-out-lock-screen.c:209
+#: ../panel-plugin/time-out-lock-screen.c:219
msgid "_Postpone"
msgstr "A_tzeratu"
#. Create resume button
-#: ../panel-plugin/time-out-lock-screen.c:215
+#: ../panel-plugin/time-out-lock-screen.c:225
msgid "_Resume"
msgstr ""
diff --git a/po/fr.po b/po/fr.po
index 9529588..c5656ac 100644
--- a/po/fr.po
+++ b/po/fr.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: xfce4-time-out-plugin 0.1.1\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-11-08 20:02+0900\n"
+"POT-Creation-Date: 2010-11-12 00:07+0900\n"
"PO-Revision-Date: 2010-11-07 16:28+0900\n"
"Last-Translator: Florian Rivoal <frivoal at xfce.org>\n"
"Language-Team: Xfce <xfce-i18n at xfce.org>\n"
@@ -19,101 +19,106 @@ msgstr ""
"X-Poedit-Country: FRANCE\n"
#. Create menu item for taking an instant break
-#: ../panel-plugin/time-out.c:264
+#: ../panel-plugin/time-out.c:265
msgid "Take a break"
msgstr "Prendre une pause"
+#. Create menu item for resetting the timer
+#: ../panel-plugin/time-out.c:273
+msgid "Reset timer"
+msgstr ""
+
#. Create menu item for enabling/disabling the countdown
-#: ../panel-plugin/time-out.c:272
+#: ../panel-plugin/time-out.c:281
msgid "Enabled"
msgstr "Activé"
-#: ../panel-plugin/time-out.c:397
+#: ../panel-plugin/time-out.c:422
msgid ""
"Xfce Panel plugin for taking a break from computer work every now and then."
msgstr ""
-#: ../panel-plugin/time-out.c:406
+#: ../panel-plugin/time-out.c:431
msgid "translator-credits"
msgstr ""
#. Create properties dialog
-#: ../panel-plugin/time-out.c:438
+#: ../panel-plugin/time-out.c:463
#: ../panel-plugin/xfce4-time-out-plugin.desktop.in.in.h:2
msgid "Time Out"
msgstr "Temps Mort"
#. Create time settings section
-#: ../panel-plugin/time-out.c:455
+#: ../panel-plugin/time-out.c:480
msgid "Time settings"
msgstr "Réglage du temps"
#. Create the labels for the minutes and seconds spins
-#: ../panel-plugin/time-out.c:468
+#: ../panel-plugin/time-out.c:493
msgid "Minutes"
msgstr "Minutes"
-#: ../panel-plugin/time-out.c:473
+#: ../panel-plugin/time-out.c:498
msgid "Seconds"
msgstr "Secondes"
#. Create break countdown time label
-#: ../panel-plugin/time-out.c:479
+#: ../panel-plugin/time-out.c:504
msgid "Time between breaks:"
msgstr "Temps entre les pauses:"
#. Create lock countdown time label
-#: ../panel-plugin/time-out.c:503
+#: ../panel-plugin/time-out.c:528
msgid "Break length:"
msgstr "Durée des pauses:"
#. Create postpone countdown time label
-#: ../panel-plugin/time-out.c:521
+#: ../panel-plugin/time-out.c:546
msgid "Postpone length:"
msgstr "Durée de remise à plus tard:"
#. Create behaviour section
-#: ../panel-plugin/time-out.c:539
+#: ../panel-plugin/time-out.c:564
msgid "Behaviour"
msgstr "Comportement"
#. Create postpone check button
-#: ../panel-plugin/time-out.c:550
+#: ../panel-plugin/time-out.c:575
msgid "Allow postpone"
msgstr "Autoriser à remettre les pauses à plus tard"
#. Create resume check button
-#: ../panel-plugin/time-out.c:557
+#: ../panel-plugin/time-out.c:582
msgid "Resume automatically"
msgstr "Continuer automatiquement"
#. Create appearance section
-#: ../panel-plugin/time-out.c:564
+#: ../panel-plugin/time-out.c:589
msgid "Appearance"
msgstr "Apparence"
#. Create display time check button
-#: ../panel-plugin/time-out.c:575
+#: ../panel-plugin/time-out.c:600
msgid "Display remaining time in the panel"
msgstr "Afficher le temps restant dans le panneau"
#. Create display hours check button
-#: ../panel-plugin/time-out.c:582
+#: ../panel-plugin/time-out.c:607
msgid "Display hours"
msgstr "Afficher les heures"
#. Create display seconds check button
-#: ../panel-plugin/time-out.c:589
+#: ../panel-plugin/time-out.c:614
msgid "Display seconds"
msgstr "Afficher les secondes"
#. Create postpone button
-#: ../panel-plugin/time-out-lock-screen.c:209
+#: ../panel-plugin/time-out-lock-screen.c:219
msgid "_Postpone"
msgstr "_Remettre à plus tard"
#. Create resume button
-#: ../panel-plugin/time-out-lock-screen.c:215
+#: ../panel-plugin/time-out-lock-screen.c:225
msgid "_Resume"
msgstr "_Continuer"
diff --git a/po/gl.po b/po/gl.po
index b578d2b..a9aebae 100644
--- a/po/gl.po
+++ b/po/gl.po
@@ -11,7 +11,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-11-08 20:02+0900\n"
+"POT-Creation-Date: 2010-11-12 00:07+0900\n"
"PO-Revision-Date: 2009-07-15 18:13+0100\n"
"Last-Translator: Leandro Regueiro <leandro.regueiro at gmail.com>\n"
"Language-Team: Galician <proxecto at trasno.net>\n"
@@ -22,103 +22,108 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n!=1);\n"
#. Create menu item for taking an instant break
-#: ../panel-plugin/time-out.c:264
+#: ../panel-plugin/time-out.c:265
msgid "Take a break"
msgstr "Tome un descanso"
+#. Create menu item for resetting the timer
+#: ../panel-plugin/time-out.c:273
+msgid "Reset timer"
+msgstr ""
+
#. Create menu item for enabling/disabling the countdown
-#: ../panel-plugin/time-out.c:272
+#: ../panel-plugin/time-out.c:281
msgid "Enabled"
msgstr "Activado"
-#: ../panel-plugin/time-out.c:397
+#: ../panel-plugin/time-out.c:422
msgid ""
"Xfce Panel plugin for taking a break from computer work every now and then."
msgstr ""
-#: ../panel-plugin/time-out.c:406
+#: ../panel-plugin/time-out.c:431
msgid "translator-credits"
msgstr ""
#. Create properties dialog
-#: ../panel-plugin/time-out.c:438
+#: ../panel-plugin/time-out.c:463
#: ../panel-plugin/xfce4-time-out-plugin.desktop.in.in.h:2
msgid "Time Out"
msgstr "Tempo de espera"
#. Create time settings section
-#: ../panel-plugin/time-out.c:455
+#: ../panel-plugin/time-out.c:480
msgid "Time settings"
msgstr "Configuración de tempo"
#. Create the labels for the minutes and seconds spins
-#: ../panel-plugin/time-out.c:468
+#: ../panel-plugin/time-out.c:493
#, fuzzy
msgid "Minutes"
msgstr "Minutos"
-#: ../panel-plugin/time-out.c:473
+#: ../panel-plugin/time-out.c:498
#, fuzzy
msgid "Seconds"
msgstr "Segundos"
#. Create break countdown time label
-#: ../panel-plugin/time-out.c:479
+#: ../panel-plugin/time-out.c:504
msgid "Time between breaks:"
msgstr "Tempo entre descansos:"
#. Create lock countdown time label
-#: ../panel-plugin/time-out.c:503
+#: ../panel-plugin/time-out.c:528
msgid "Break length:"
msgstr "Duración do descanso:"
#. Create postpone countdown time label
-#: ../panel-plugin/time-out.c:521
+#: ../panel-plugin/time-out.c:546
msgid "Postpone length:"
msgstr "Duración da posposición:"
#. Create behaviour section
-#: ../panel-plugin/time-out.c:539
+#: ../panel-plugin/time-out.c:564
msgid "Behaviour"
msgstr "Comportamento"
#. Create postpone check button
-#: ../panel-plugin/time-out.c:550
+#: ../panel-plugin/time-out.c:575
msgid "Allow postpone"
msgstr "Permitir pospoñer"
#. Create resume check button
-#: ../panel-plugin/time-out.c:557
+#: ../panel-plugin/time-out.c:582
msgid "Resume automatically"
msgstr ""
#. Create appearance section
-#: ../panel-plugin/time-out.c:564
+#: ../panel-plugin/time-out.c:589
msgid "Appearance"
msgstr "Aparencia"
#. Create display time check button
-#: ../panel-plugin/time-out.c:575
+#: ../panel-plugin/time-out.c:600
msgid "Display remaining time in the panel"
msgstr "Mostrar o tempo restante no panel"
#. Create display hours check button
-#: ../panel-plugin/time-out.c:582
+#: ../panel-plugin/time-out.c:607
msgid "Display hours"
msgstr "Mostrar as horas"
#. Create display seconds check button
-#: ../panel-plugin/time-out.c:589
+#: ../panel-plugin/time-out.c:614
msgid "Display seconds"
msgstr "Mostrar os segundos"
#. Create postpone button
-#: ../panel-plugin/time-out-lock-screen.c:209
+#: ../panel-plugin/time-out-lock-screen.c:219
msgid "_Postpone"
msgstr "_Pospor"
#. Create resume button
-#: ../panel-plugin/time-out-lock-screen.c:215
+#: ../panel-plugin/time-out-lock-screen.c:225
msgid "_Resume"
msgstr ""
diff --git a/po/hu.po b/po/hu.po
index ee45697..bc4838a 100644
--- a/po/hu.po
+++ b/po/hu.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: xfce4-time-out-plugin\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-11-08 20:02+0900\n"
+"POT-Creation-Date: 2010-11-12 00:07+0900\n"
"PO-Revision-Date: 2009-07-25 01:40+0200\n"
"Last-Translator: Gabor Kelemen <kelemeng at gnome dot hu>\n"
"Language-Team: Hungarian <gnome at gnome dot hu>\n"
@@ -20,103 +20,108 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. Create menu item for taking an instant break
-#: ../panel-plugin/time-out.c:264
+#: ../panel-plugin/time-out.c:265
msgid "Take a break"
msgstr "Tartson szünetet"
+#. Create menu item for resetting the timer
+#: ../panel-plugin/time-out.c:273
+msgid "Reset timer"
+msgstr ""
+
#. Create menu item for enabling/disabling the countdown
-#: ../panel-plugin/time-out.c:272
+#: ../panel-plugin/time-out.c:281
msgid "Enabled"
msgstr "Engedélyezve"
-#: ../panel-plugin/time-out.c:397
+#: ../panel-plugin/time-out.c:422
msgid ""
"Xfce Panel plugin for taking a break from computer work every now and then."
msgstr ""
-#: ../panel-plugin/time-out.c:406
+#: ../panel-plugin/time-out.c:431
msgid "translator-credits"
msgstr ""
#. Create properties dialog
-#: ../panel-plugin/time-out.c:438
+#: ../panel-plugin/time-out.c:463
#: ../panel-plugin/xfce4-time-out-plugin.desktop.in.in.h:2
msgid "Time Out"
msgstr "Időkorlát"
#. Create time settings section
-#: ../panel-plugin/time-out.c:455
+#: ../panel-plugin/time-out.c:480
msgid "Time settings"
msgstr "Időbeállítások"
#. Create the labels for the minutes and seconds spins
-#: ../panel-plugin/time-out.c:468
+#: ../panel-plugin/time-out.c:493
#, fuzzy
msgid "Minutes"
msgstr "Perc"
-#: ../panel-plugin/time-out.c:473
+#: ../panel-plugin/time-out.c:498
#, fuzzy
msgid "Seconds"
msgstr "Másodperc"
#. Create break countdown time label
-#: ../panel-plugin/time-out.c:479
+#: ../panel-plugin/time-out.c:504
msgid "Time between breaks:"
msgstr "Szünetek közti idő:"
#. Create lock countdown time label
-#: ../panel-plugin/time-out.c:503
+#: ../panel-plugin/time-out.c:528
msgid "Break length:"
msgstr "Szünet hossza:"
#. Create postpone countdown time label
-#: ../panel-plugin/time-out.c:521
+#: ../panel-plugin/time-out.c:546
msgid "Postpone length:"
msgstr "Elhalasztás hossza:"
#. Create behaviour section
-#: ../panel-plugin/time-out.c:539
+#: ../panel-plugin/time-out.c:564
msgid "Behaviour"
msgstr "Viselkedés"
#. Create postpone check button
-#: ../panel-plugin/time-out.c:550
+#: ../panel-plugin/time-out.c:575
msgid "Allow postpone"
msgstr "Elhalasztás engedélyezése"
#. Create resume check button
-#: ../panel-plugin/time-out.c:557
+#: ../panel-plugin/time-out.c:582
msgid "Resume automatically"
msgstr ""
#. Create appearance section
-#: ../panel-plugin/time-out.c:564
+#: ../panel-plugin/time-out.c:589
msgid "Appearance"
msgstr "Megjelenés"
#. Create display time check button
-#: ../panel-plugin/time-out.c:575
+#: ../panel-plugin/time-out.c:600
msgid "Display remaining time in the panel"
msgstr "Hátralévő idő megjelenítése a panelen"
#. Create display hours check button
-#: ../panel-plugin/time-out.c:582
+#: ../panel-plugin/time-out.c:607
msgid "Display hours"
msgstr "Órák megjelenítése"
#. Create display seconds check button
-#: ../panel-plugin/time-out.c:589
+#: ../panel-plugin/time-out.c:614
msgid "Display seconds"
msgstr "Másodpercek megjelenítése"
#. Create postpone button
-#: ../panel-plugin/time-out-lock-screen.c:209
+#: ../panel-plugin/time-out-lock-screen.c:219
msgid "_Postpone"
msgstr "Elhalasz_tás"
#. Create resume button
-#: ../panel-plugin/time-out-lock-screen.c:215
+#: ../panel-plugin/time-out-lock-screen.c:225
msgid "_Resume"
msgstr ""
diff --git a/po/id.po b/po/id.po
index a7766b5..fa6e786 100644
--- a/po/id.po
+++ b/po/id.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: xfce4-time-out-plugin\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-11-08 20:02+0900\n"
+"POT-Creation-Date: 2010-11-12 00:07+0900\n"
"PO-Revision-Date: 2008-06-21 15:09+0700\n"
"Last-Translator: Andhika Padmawan <andhika.padmawan at gmail.com>\n"
"Language-Team: Indonesian <id at li.org>\n"
@@ -17,103 +17,108 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
#. Create menu item for taking an instant break
-#: ../panel-plugin/time-out.c:264
+#: ../panel-plugin/time-out.c:265
msgid "Take a break"
msgstr "Istirahat sejenak"
+#. Create menu item for resetting the timer
+#: ../panel-plugin/time-out.c:273
+msgid "Reset timer"
+msgstr ""
+
#. Create menu item for enabling/disabling the countdown
-#: ../panel-plugin/time-out.c:272
+#: ../panel-plugin/time-out.c:281
msgid "Enabled"
msgstr "Aktifkan"
-#: ../panel-plugin/time-out.c:397
+#: ../panel-plugin/time-out.c:422
msgid ""
"Xfce Panel plugin for taking a break from computer work every now and then."
msgstr ""
-#: ../panel-plugin/time-out.c:406
+#: ../panel-plugin/time-out.c:431
msgid "translator-credits"
msgstr ""
#. Create properties dialog
-#: ../panel-plugin/time-out.c:438
+#: ../panel-plugin/time-out.c:463
#: ../panel-plugin/xfce4-time-out-plugin.desktop.in.in.h:2
msgid "Time Out"
msgstr "Istirahat"
#. Create time settings section
-#: ../panel-plugin/time-out.c:455
+#: ../panel-plugin/time-out.c:480
msgid "Time settings"
msgstr "Pengaturan waktu"
#. Create the labels for the minutes and seconds spins
-#: ../panel-plugin/time-out.c:468
+#: ../panel-plugin/time-out.c:493
#, fuzzy
msgid "Minutes"
msgstr "Menit"
-#: ../panel-plugin/time-out.c:473
+#: ../panel-plugin/time-out.c:498
#, fuzzy
msgid "Seconds"
msgstr "Detik"
#. Create break countdown time label
-#: ../panel-plugin/time-out.c:479
+#: ../panel-plugin/time-out.c:504
msgid "Time between breaks:"
msgstr "Lama antara jeda:"
#. Create lock countdown time label
-#: ../panel-plugin/time-out.c:503
+#: ../panel-plugin/time-out.c:528
msgid "Break length:"
msgstr "Lama istirahat:"
#. Create postpone countdown time label
-#: ../panel-plugin/time-out.c:521
+#: ../panel-plugin/time-out.c:546
msgid "Postpone length:"
msgstr "Lama penundaan:"
#. Create behaviour section
-#: ../panel-plugin/time-out.c:539
+#: ../panel-plugin/time-out.c:564
msgid "Behaviour"
msgstr "Perilaku"
#. Create postpone check button
-#: ../panel-plugin/time-out.c:550
+#: ../panel-plugin/time-out.c:575
msgid "Allow postpone"
msgstr "Izinkan penundaan"
#. Create resume check button
-#: ../panel-plugin/time-out.c:557
+#: ../panel-plugin/time-out.c:582
msgid "Resume automatically"
msgstr ""
#. Create appearance section
-#: ../panel-plugin/time-out.c:564
+#: ../panel-plugin/time-out.c:589
msgid "Appearance"
msgstr "Tampilan"
#. Create display time check button
-#: ../panel-plugin/time-out.c:575
+#: ../panel-plugin/time-out.c:600
msgid "Display remaining time in the panel"
msgstr "Tampilkan waktu tersisa di panel"
#. Create display hours check button
-#: ../panel-plugin/time-out.c:582
+#: ../panel-plugin/time-out.c:607
msgid "Display hours"
msgstr "Tampilkan jam"
#. Create display seconds check button
-#: ../panel-plugin/time-out.c:589
+#: ../panel-plugin/time-out.c:614
msgid "Display seconds"
msgstr "Tampilkan detik"
#. Create postpone button
-#: ../panel-plugin/time-out-lock-screen.c:209
+#: ../panel-plugin/time-out-lock-screen.c:219
msgid "_Postpone"
msgstr "_Penundaan"
#. Create resume button
-#: ../panel-plugin/time-out-lock-screen.c:215
+#: ../panel-plugin/time-out-lock-screen.c:225
msgid "_Resume"
msgstr ""
diff --git a/po/it.po b/po/it.po
index fd0534f..94ad357 100644
--- a/po/it.po
+++ b/po/it.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: xfce4-time-out-plugin\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-11-08 20:02+0900\n"
+"POT-Creation-Date: 2010-11-12 00:07+0900\n"
"PO-Revision-Date: 2009-01-31 15:10+0100\n"
"Last-Translator: Cristian Marchi <cri.penta at gmail.com>\n"
"Language-Team: Italian <xfce-it-translators at googlegroups.com>\n"
@@ -24,103 +24,108 @@ msgstr ""
# postpone = rinvia, rinviare
# display = visualizzare (verbo)
#. Create menu item for taking an instant break
-#: ../panel-plugin/time-out.c:264
+#: ../panel-plugin/time-out.c:265
msgid "Take a break"
msgstr "Fai una pausa"
+#. Create menu item for resetting the timer
+#: ../panel-plugin/time-out.c:273
+msgid "Reset timer"
+msgstr ""
+
#. Create menu item for enabling/disabling the countdown
-#: ../panel-plugin/time-out.c:272
+#: ../panel-plugin/time-out.c:281
msgid "Enabled"
msgstr "Abilitato"
-#: ../panel-plugin/time-out.c:397
+#: ../panel-plugin/time-out.c:422
msgid ""
"Xfce Panel plugin for taking a break from computer work every now and then."
msgstr ""
"Plugin del pannello di Xfce che ricorda di fare una pausa dal computer ogni "
"tanto"
-#: ../panel-plugin/time-out.c:406
+#: ../panel-plugin/time-out.c:431
msgid "translator-credits"
msgstr "Cristian Marchi <cri.penta at gmail.com>, 2010"
#. Create properties dialog
-#: ../panel-plugin/time-out.c:438
+#: ../panel-plugin/time-out.c:463
#: ../panel-plugin/xfce4-time-out-plugin.desktop.in.in.h:2
msgid "Time Out"
msgstr "Interruzione"
#. Create time settings section
-#: ../panel-plugin/time-out.c:455
+#: ../panel-plugin/time-out.c:480
msgid "Time settings"
msgstr "Impostazioni del tempo"
#. Create the labels for the minutes and seconds spins
-#: ../panel-plugin/time-out.c:468
+#: ../panel-plugin/time-out.c:493
msgid "Minutes"
msgstr "Minuti"
-#: ../panel-plugin/time-out.c:473
+#: ../panel-plugin/time-out.c:498
msgid "Seconds"
msgstr "Secondi"
#. Create break countdown time label
-#: ../panel-plugin/time-out.c:479
+#: ../panel-plugin/time-out.c:504
msgid "Time between breaks:"
msgstr "Intervallo fra le pause:"
#. Create lock countdown time label
-#: ../panel-plugin/time-out.c:503
+#: ../panel-plugin/time-out.c:528
msgid "Break length:"
msgstr "Lunghezza della pausa"
#. Create postpone countdown time label
-#: ../panel-plugin/time-out.c:521
+#: ../panel-plugin/time-out.c:546
msgid "Postpone length:"
msgstr "Lunghezza del rinvio:"
#. Create behaviour section
-#: ../panel-plugin/time-out.c:539
+#: ../panel-plugin/time-out.c:564
msgid "Behaviour"
msgstr "Comportamento"
#. Create postpone check button
-#: ../panel-plugin/time-out.c:550
+#: ../panel-plugin/time-out.c:575
msgid "Allow postpone"
msgstr "Permetti il rinvio"
#. Create resume check button
-#: ../panel-plugin/time-out.c:557
+#: ../panel-plugin/time-out.c:582
msgid "Resume automatically"
msgstr ""
#. Create appearance section
-#: ../panel-plugin/time-out.c:564
+#: ../panel-plugin/time-out.c:589
msgid "Appearance"
msgstr "Aspetto"
#. Create display time check button
-#: ../panel-plugin/time-out.c:575
+#: ../panel-plugin/time-out.c:600
msgid "Display remaining time in the panel"
msgstr "Visualizza il tempo rimanente nel pannello"
#. Create display hours check button
-#: ../panel-plugin/time-out.c:582
+#: ../panel-plugin/time-out.c:607
msgid "Display hours"
msgstr "Visualizza le ore"
#. Create display seconds check button
-#: ../panel-plugin/time-out.c:589
+#: ../panel-plugin/time-out.c:614
msgid "Display seconds"
msgstr "Visualizza i secondi"
#. Create postpone button
-#: ../panel-plugin/time-out-lock-screen.c:209
+#: ../panel-plugin/time-out-lock-screen.c:219
msgid "_Postpone"
msgstr "_Rinvia"
#. Create resume button
-#: ../panel-plugin/time-out-lock-screen.c:215
+#: ../panel-plugin/time-out-lock-screen.c:225
msgid "_Resume"
msgstr ""
diff --git a/po/ja.po b/po/ja.po
index a5e0bdc..1418c19 100644
--- a/po/ja.po
+++ b/po/ja.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: fce4-time-out-plugin 0.1.1\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-11-08 20:02+0900\n"
+"POT-Creation-Date: 2010-11-12 00:07+0900\n"
"PO-Revision-Date: 2008-11-16 22:32+0900\n"
"Last-Translator: Nobuhiro Iwamatsu <iwamatsu at nigauri.org>\n"
"Language-Team: Japanese <xfce-i18n at xfce.org>\n"
@@ -17,101 +17,106 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
#. Create menu item for taking an instant break
-#: ../panel-plugin/time-out.c:264
+#: ../panel-plugin/time-out.c:265
msgid "Take a break"
msgstr "ひと休みする"
+#. Create menu item for resetting the timer
+#: ../panel-plugin/time-out.c:273
+msgid "Reset timer"
+msgstr ""
+
#. Create menu item for enabling/disabling the countdown
-#: ../panel-plugin/time-out.c:272
+#: ../panel-plugin/time-out.c:281
msgid "Enabled"
msgstr "有効"
-#: ../panel-plugin/time-out.c:397
+#: ../panel-plugin/time-out.c:422
msgid ""
"Xfce Panel plugin for taking a break from computer work every now and then."
msgstr ""
-#: ../panel-plugin/time-out.c:406
+#: ../panel-plugin/time-out.c:431
msgid "translator-credits"
msgstr ""
#. Create properties dialog
-#: ../panel-plugin/time-out.c:438
+#: ../panel-plugin/time-out.c:463
#: ../panel-plugin/xfce4-time-out-plugin.desktop.in.in.h:2
msgid "Time Out"
msgstr "タイムアウト"
#. Create time settings section
-#: ../panel-plugin/time-out.c:455
+#: ../panel-plugin/time-out.c:480
msgid "Time settings"
msgstr "時間設定"
#. Create the labels for the minutes and seconds spins
-#: ../panel-plugin/time-out.c:468
+#: ../panel-plugin/time-out.c:493
msgid "Minutes"
msgstr "分"
-#: ../panel-plugin/time-out.c:473
+#: ../panel-plugin/time-out.c:498
msgid "Seconds"
msgstr "秒"
#. Create break countdown time label
-#: ../panel-plugin/time-out.c:479
+#: ../panel-plugin/time-out.c:504
msgid "Time between breaks:"
msgstr "休憩間の時間:"
#. Create lock countdown time label
-#: ../panel-plugin/time-out.c:503
+#: ../panel-plugin/time-out.c:528
msgid "Break length:"
msgstr "休憩時間:"
#. Create postpone countdown time label
-#: ../panel-plugin/time-out.c:521
+#: ../panel-plugin/time-out.c:546
msgid "Postpone length:"
msgstr "延期時間:"
#. Create behaviour section
-#: ../panel-plugin/time-out.c:539
+#: ../panel-plugin/time-out.c:564
msgid "Behaviour"
msgstr "挙動"
#. Create postpone check button
-#: ../panel-plugin/time-out.c:550
+#: ../panel-plugin/time-out.c:575
msgid "Allow postpone"
msgstr "許容遅延時間"
#. Create resume check button
-#: ../panel-plugin/time-out.c:557
+#: ../panel-plugin/time-out.c:582
msgid "Resume automatically"
msgstr ""
#. Create appearance section
-#: ../panel-plugin/time-out.c:564
+#: ../panel-plugin/time-out.c:589
msgid "Appearance"
msgstr "外観"
#. Create display time check button
-#: ../panel-plugin/time-out.c:575
+#: ../panel-plugin/time-out.c:600
msgid "Display remaining time in the panel"
msgstr "パネルに残り時間を表示する"
#. Create display hours check button
-#: ../panel-plugin/time-out.c:582
+#: ../panel-plugin/time-out.c:607
msgid "Display hours"
msgstr "時間を表示する"
#. Create display seconds check button
-#: ../panel-plugin/time-out.c:589
+#: ../panel-plugin/time-out.c:614
msgid "Display seconds"
msgstr "分を表示する"
#. Create postpone button
-#: ../panel-plugin/time-out-lock-screen.c:209
+#: ../panel-plugin/time-out-lock-screen.c:219
msgid "_Postpone"
msgstr "時間を延ばす(_P)"
#. Create resume button
-#: ../panel-plugin/time-out-lock-screen.c:215
+#: ../panel-plugin/time-out-lock-screen.c:225
msgid "_Resume"
msgstr ""
diff --git a/po/kk.po b/po/kk.po
index a77bd15..6199862 100644
--- a/po/kk.po
+++ b/po/kk.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: master\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-11-08 20:02+0900\n"
+"POT-Creation-Date: 2010-11-12 00:07+0900\n"
"PO-Revision-Date: 2010-09-01 14:31+0600\n"
"Last-Translator: Baurzhan Muftakhidinov <baurthefirst at gmail.com>\n"
"Language-Team: Kazakh <kk_KZ at googlegroups.com>\n"
@@ -20,103 +20,108 @@ msgstr ""
"X-Poedit-Country: KAZAKHSTAN\n"
#. Create menu item for taking an instant break
-#: ../panel-plugin/time-out.c:264
+#: ../panel-plugin/time-out.c:265
msgid "Take a break"
msgstr "Демалу уақыты"
+#. Create menu item for resetting the timer
+#: ../panel-plugin/time-out.c:273
+msgid "Reset timer"
+msgstr ""
+
#. Create menu item for enabling/disabling the countdown
-#: ../panel-plugin/time-out.c:272
+#: ../panel-plugin/time-out.c:281
msgid "Enabled"
msgstr "Қосулы"
-#: ../panel-plugin/time-out.c:397
+#: ../panel-plugin/time-out.c:422
msgid ""
"Xfce Panel plugin for taking a break from computer work every now and then."
msgstr ""
-#: ../panel-plugin/time-out.c:406
+#: ../panel-plugin/time-out.c:431
msgid "translator-credits"
msgstr ""
#. Create properties dialog
-#: ../panel-plugin/time-out.c:438
+#: ../panel-plugin/time-out.c:463
#: ../panel-plugin/xfce4-time-out-plugin.desktop.in.in.h:2
msgid "Time Out"
msgstr "Үзіліс"
#. Create time settings section
-#: ../panel-plugin/time-out.c:455
+#: ../panel-plugin/time-out.c:480
msgid "Time settings"
msgstr "Уақыт баптаулары"
#. Create the labels for the minutes and seconds spins
-#: ../panel-plugin/time-out.c:468
+#: ../panel-plugin/time-out.c:493
#, fuzzy
msgid "Minutes"
msgstr "Минут"
-#: ../panel-plugin/time-out.c:473
+#: ../panel-plugin/time-out.c:498
#, fuzzy
msgid "Seconds"
msgstr "Секунд"
#. Create break countdown time label
-#: ../panel-plugin/time-out.c:479
+#: ../panel-plugin/time-out.c:504
msgid "Time between breaks:"
msgstr "Жұмыс уақытының ұзақтығы:"
#. Create lock countdown time label
-#: ../panel-plugin/time-out.c:503
+#: ../panel-plugin/time-out.c:528
msgid "Break length:"
msgstr "Үзіліс ұзақтығы:"
#. Create postpone countdown time label
-#: ../panel-plugin/time-out.c:521
+#: ../panel-plugin/time-out.c:546
msgid "Postpone length:"
msgstr "Кейінге қалдыру:"
#. Create behaviour section
-#: ../panel-plugin/time-out.c:539
+#: ../panel-plugin/time-out.c:564
msgid "Behaviour"
msgstr "Мінез-құлығы"
#. Create postpone check button
-#: ../panel-plugin/time-out.c:550
+#: ../panel-plugin/time-out.c:575
msgid "Allow postpone"
msgstr "Кейінге қалдыруды рұқсат ету"
#. Create resume check button
-#: ../panel-plugin/time-out.c:557
+#: ../panel-plugin/time-out.c:582
msgid "Resume automatically"
msgstr ""
#. Create appearance section
-#: ../panel-plugin/time-out.c:564
+#: ../panel-plugin/time-out.c:589
msgid "Appearance"
msgstr "Сыртқы түрі"
#. Create display time check button
-#: ../panel-plugin/time-out.c:575
+#: ../panel-plugin/time-out.c:600
msgid "Display remaining time in the panel"
msgstr "Қалған уақытты панельде көрсету"
#. Create display hours check button
-#: ../panel-plugin/time-out.c:582
+#: ../panel-plugin/time-out.c:607
msgid "Display hours"
msgstr "Сағаттарды көрсету"
#. Create display seconds check button
-#: ../panel-plugin/time-out.c:589
+#: ../panel-plugin/time-out.c:614
msgid "Display seconds"
msgstr "Секундтарды көрсету"
#. Create postpone button
-#: ../panel-plugin/time-out-lock-screen.c:209
+#: ../panel-plugin/time-out-lock-screen.c:219
msgid "_Postpone"
msgstr "_Кейінге қалдыру"
#. Create resume button
-#: ../panel-plugin/time-out-lock-screen.c:215
+#: ../panel-plugin/time-out-lock-screen.c:225
msgid "_Resume"
msgstr ""
diff --git a/po/lv.po b/po/lv.po
index 8e0d3f1..00703d2 100644
--- a/po/lv.po
+++ b/po/lv.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: xfce4-time-out-plugin\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-11-08 20:02+0900\n"
+"POT-Creation-Date: 2010-11-12 00:07+0900\n"
"PO-Revision-Date: 2009-09-18 23:22+0100\n"
"Last-Translator: Rihards Prieditis <rprieditis at gmail.com>\n"
"Language-Team: Latvian <translation-team-lv at lists.sourceforge.net>\n"
@@ -21,103 +21,108 @@ msgstr ""
"2);\n"
#. Create menu item for taking an instant break
-#: ../panel-plugin/time-out.c:264
+#: ../panel-plugin/time-out.c:265
msgid "Take a break"
msgstr "Laiks pārtraukumam"
+#. Create menu item for resetting the timer
+#: ../panel-plugin/time-out.c:273
+msgid "Reset timer"
+msgstr ""
+
#. Create menu item for enabling/disabling the countdown
-#: ../panel-plugin/time-out.c:272
+#: ../panel-plugin/time-out.c:281
msgid "Enabled"
msgstr "Ieslēgt"
-#: ../panel-plugin/time-out.c:397
+#: ../panel-plugin/time-out.c:422
msgid ""
"Xfce Panel plugin for taking a break from computer work every now and then."
msgstr ""
-#: ../panel-plugin/time-out.c:406
+#: ../panel-plugin/time-out.c:431
msgid "translator-credits"
msgstr ""
#. Create properties dialog
-#: ../panel-plugin/time-out.c:438
+#: ../panel-plugin/time-out.c:463
#: ../panel-plugin/xfce4-time-out-plugin.desktop.in.in.h:2
msgid "Time Out"
msgstr "Laiks iztecējis"
#. Create time settings section
-#: ../panel-plugin/time-out.c:455
+#: ../panel-plugin/time-out.c:480
msgid "Time settings"
msgstr "Laika uzstādījumi"
#. Create the labels for the minutes and seconds spins
-#: ../panel-plugin/time-out.c:468
+#: ../panel-plugin/time-out.c:493
#, fuzzy
msgid "Minutes"
msgstr "Minūtes"
-#: ../panel-plugin/time-out.c:473
+#: ../panel-plugin/time-out.c:498
#, fuzzy
msgid "Seconds"
msgstr "Sekundes"
#. Create break countdown time label
-#: ../panel-plugin/time-out.c:479
+#: ../panel-plugin/time-out.c:504
msgid "Time between breaks:"
msgstr "Laiks starp pārtraukumiem:"
#. Create lock countdown time label
-#: ../panel-plugin/time-out.c:503
+#: ../panel-plugin/time-out.c:528
msgid "Break length:"
msgstr "Pārtraukuma garums:"
#. Create postpone countdown time label
-#: ../panel-plugin/time-out.c:521
+#: ../panel-plugin/time-out.c:546
msgid "Postpone length:"
msgstr "Aizkavēšanas garums:"
#. Create behaviour section
-#: ../panel-plugin/time-out.c:539
+#: ../panel-plugin/time-out.c:564
msgid "Behaviour"
msgstr "Uzvedība"
#. Create postpone check button
-#: ../panel-plugin/time-out.c:550
+#: ../panel-plugin/time-out.c:575
msgid "Allow postpone"
msgstr "Atļaut aizkavēt"
#. Create resume check button
-#: ../panel-plugin/time-out.c:557
+#: ../panel-plugin/time-out.c:582
msgid "Resume automatically"
msgstr ""
#. Create appearance section
-#: ../panel-plugin/time-out.c:564
+#: ../panel-plugin/time-out.c:589
msgid "Appearance"
msgstr "Izskats"
#. Create display time check button
-#: ../panel-plugin/time-out.c:575
+#: ../panel-plugin/time-out.c:600
msgid "Display remaining time in the panel"
msgstr "Rādīt atlikušo laiku panelī"
#. Create display hours check button
-#: ../panel-plugin/time-out.c:582
+#: ../panel-plugin/time-out.c:607
msgid "Display hours"
msgstr "Rādīt stundas"
#. Create display seconds check button
-#: ../panel-plugin/time-out.c:589
+#: ../panel-plugin/time-out.c:614
msgid "Display seconds"
msgstr "Rādīt sekundes"
#. Create postpone button
-#: ../panel-plugin/time-out-lock-screen.c:209
+#: ../panel-plugin/time-out-lock-screen.c:219
msgid "_Postpone"
msgstr "_Aizkavēt"
#. Create resume button
-#: ../panel-plugin/time-out-lock-screen.c:215
+#: ../panel-plugin/time-out-lock-screen.c:225
msgid "_Resume"
msgstr ""
diff --git a/po/pl.po b/po/pl.po
index 5171606..64776c7 100644
--- a/po/pl.po
+++ b/po/pl.po
@@ -2,7 +2,7 @@ msgid ""
msgstr ""
"Project-Id-Version: xfce4-time-out-plugin\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-11-08 20:02+0900\n"
+"POT-Creation-Date: 2010-11-12 00:07+0900\n"
"PO-Revision-Date: \n"
"Last-Translator: Tomasz Chudyk <chudyk at gmail.com>\n"
"Language-Team: Polish\n"
@@ -15,103 +15,108 @@ msgstr ""
"X-Poedit-SourceCharset: utf-8\n"
#. Create menu item for taking an instant break
-#: ../panel-plugin/time-out.c:264
+#: ../panel-plugin/time-out.c:265
msgid "Take a break"
msgstr "Przerwa"
+#. Create menu item for resetting the timer
+#: ../panel-plugin/time-out.c:273
+msgid "Reset timer"
+msgstr ""
+
#. Create menu item for enabling/disabling the countdown
-#: ../panel-plugin/time-out.c:272
+#: ../panel-plugin/time-out.c:281
msgid "Enabled"
msgstr "Aktywny"
-#: ../panel-plugin/time-out.c:397
+#: ../panel-plugin/time-out.c:422
msgid ""
"Xfce Panel plugin for taking a break from computer work every now and then."
msgstr ""
-#: ../panel-plugin/time-out.c:406
+#: ../panel-plugin/time-out.c:431
msgid "translator-credits"
msgstr ""
#. Create properties dialog
-#: ../panel-plugin/time-out.c:438
+#: ../panel-plugin/time-out.c:463
#: ../panel-plugin/xfce4-time-out-plugin.desktop.in.in.h:2
msgid "Time Out"
msgstr "Przerywanie pracy"
#. Create time settings section
-#: ../panel-plugin/time-out.c:455
+#: ../panel-plugin/time-out.c:480
msgid "Time settings"
msgstr "Ustawienia czasu"
#. Create the labels for the minutes and seconds spins
-#: ../panel-plugin/time-out.c:468
+#: ../panel-plugin/time-out.c:493
#, fuzzy
msgid "Minutes"
msgstr "Minuty"
-#: ../panel-plugin/time-out.c:473
+#: ../panel-plugin/time-out.c:498
#, fuzzy
msgid "Seconds"
msgstr "Sekundy"
#. Create break countdown time label
-#: ../panel-plugin/time-out.c:479
+#: ../panel-plugin/time-out.c:504
msgid "Time between breaks:"
msgstr "Czas między przerwami:"
#. Create lock countdown time label
-#: ../panel-plugin/time-out.c:503
+#: ../panel-plugin/time-out.c:528
msgid "Break length:"
msgstr "Długość przerwy:"
#. Create postpone countdown time label
-#: ../panel-plugin/time-out.c:521
+#: ../panel-plugin/time-out.c:546
msgid "Postpone length:"
msgstr "Czas odłożenia przerwy:"
#. Create behaviour section
-#: ../panel-plugin/time-out.c:539
+#: ../panel-plugin/time-out.c:564
msgid "Behaviour"
msgstr "Zachowanie"
#. Create postpone check button
-#: ../panel-plugin/time-out.c:550
+#: ../panel-plugin/time-out.c:575
msgid "Allow postpone"
msgstr "Pozwól odłożyć przerwę"
#. Create resume check button
-#: ../panel-plugin/time-out.c:557
+#: ../panel-plugin/time-out.c:582
msgid "Resume automatically"
msgstr ""
#. Create appearance section
-#: ../panel-plugin/time-out.c:564
+#: ../panel-plugin/time-out.c:589
msgid "Appearance"
msgstr "Wygląd"
#. Create display time check button
-#: ../panel-plugin/time-out.c:575
+#: ../panel-plugin/time-out.c:600
msgid "Display remaining time in the panel"
msgstr "Wyświetlaj pozostały czas w panelu"
#. Create display hours check button
-#: ../panel-plugin/time-out.c:582
+#: ../panel-plugin/time-out.c:607
msgid "Display hours"
msgstr "Wyświetlaj godziny"
#. Create display seconds check button
-#: ../panel-plugin/time-out.c:589
+#: ../panel-plugin/time-out.c:614
msgid "Display seconds"
msgstr "Wyświetlaj sekundy"
#. Create postpone button
-#: ../panel-plugin/time-out-lock-screen.c:209
+#: ../panel-plugin/time-out-lock-screen.c:219
msgid "_Postpone"
msgstr "Odłóż przerwę"
#. Create resume button
-#: ../panel-plugin/time-out-lock-screen.c:215
+#: ../panel-plugin/time-out-lock-screen.c:225
msgid "_Resume"
msgstr ""
diff --git a/po/pt.po b/po/pt.po
index c436b72..a3016ec 100644
--- a/po/pt.po
+++ b/po/pt.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: xfce4-time-out-plugin\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-11-08 20:02+0900\n"
+"POT-Creation-Date: 2010-11-12 00:07+0900\n"
"PO-Revision-Date: 2008-03-18 20:11+0100\n"
"Last-Translator: Nuno Miguel <nunis at netcabo.pt>\n"
"Language-Team: \n"
@@ -17,100 +17,115 @@ msgstr ""
"Language: \n"
#. Create menu item for taking an instant break
-#: ../panel-plugin/time-out.c:264
+#: ../panel-plugin/time-out.c:265
msgid "Take a break"
msgstr "Fazer uma pausa"
+#. Create menu item for resetting the timer
+#: ../panel-plugin/time-out.c:273
+msgid "Reset timer"
+msgstr ""
+
#. Create menu item for enabling/disabling the countdown
-#: ../panel-plugin/time-out.c:272
+#: ../panel-plugin/time-out.c:281
msgid "Enabled"
msgstr "Activo"
-#: ../panel-plugin/time-out.c:397
+#: ../panel-plugin/time-out.c:422
msgid "Xfce Panel plugin for taking a break from computer work every now and then."
msgstr "O \"plug-in\\ no painel irá funcionar ocasionalmente."
-#: ../panel-plugin/time-out.c:406
+#: ../panel-plugin/time-out.c:431
msgid "translator-credits"
msgstr "Nuno Miguel<nunis at netcabo.pt>"
#. Create properties dialog
-#: ../panel-plugin/time-out.c:438
+#: ../panel-plugin/time-out.c:463
#: ../panel-plugin/xfce4-time-out-plugin.desktop.in.in.h:2
msgid "Time Out"
msgstr "Tempo esgotado"
#. Create time settings section
-#: ../panel-plugin/time-out.c:455
+#: ../panel-plugin/time-out.c:480
msgid "Time settings"
msgstr "Definições de tempo"
#. Create the labels for the minutes and seconds spins
+<<<<<<< HEAD
#: ../panel-plugin/time-out.c:468
msgid "Minutes"
msgstr "Minutos"
#: ../panel-plugin/time-out.c:473
+=======
+#: ../panel-plugin/time-out.c:493
+#, fuzzy
+msgid "Minutes"
+msgstr "Minutos"
+
+#: ../panel-plugin/time-out.c:498
+#, fuzzy
+>>>>>>> Add a button to reset the timer
msgid "Seconds"
msgstr "Segundos"
#. Create break countdown time label
-#: ../panel-plugin/time-out.c:479
+#: ../panel-plugin/time-out.c:504
msgid "Time between breaks:"
msgstr "Tempo entre pausas:"
#. Create lock countdown time label
-#: ../panel-plugin/time-out.c:503
+#: ../panel-plugin/time-out.c:528
msgid "Break length:"
msgstr "Duração da pausa:"
#. Create postpone countdown time label
-#: ../panel-plugin/time-out.c:521
+#: ../panel-plugin/time-out.c:546
msgid "Postpone length:"
msgstr "Duração do adiamento:"
#. Create behaviour section
-#: ../panel-plugin/time-out.c:539
+#: ../panel-plugin/time-out.c:564
msgid "Behaviour"
msgstr "Comportamento"
#. Create postpone check button
-#: ../panel-plugin/time-out.c:550
+#: ../panel-plugin/time-out.c:575
msgid "Allow postpone"
msgstr "Permitir o adiamento"
#. Create resume check button
-#: ../panel-plugin/time-out.c:557
+#: ../panel-plugin/time-out.c:582
msgid "Resume automatically"
msgstr "Retomar automaticamente"
#. Create appearance section
-#: ../panel-plugin/time-out.c:564
+#: ../panel-plugin/time-out.c:589
msgid "Appearance"
msgstr "Aparência"
#. Create display time check button
-#: ../panel-plugin/time-out.c:575
+#: ../panel-plugin/time-out.c:600
msgid "Display remaining time in the panel"
msgstr "Exibir no painel o tempo restante"
#. Create display hours check button
-#: ../panel-plugin/time-out.c:582
+#: ../panel-plugin/time-out.c:607
msgid "Display hours"
msgstr "Exibir horas"
#. Create display seconds check button
-#: ../panel-plugin/time-out.c:589
+#: ../panel-plugin/time-out.c:614
msgid "Display seconds"
msgstr "Exibir segundos"
#. Create postpone button
-#: ../panel-plugin/time-out-lock-screen.c:209
+#: ../panel-plugin/time-out-lock-screen.c:219
msgid "_Postpone"
msgstr "_Adiar"
#. Create resume button
-#: ../panel-plugin/time-out-lock-screen.c:215
+#: ../panel-plugin/time-out-lock-screen.c:225
msgid "_Resume"
msgstr "_Retomar"
diff --git a/po/pt_BR.po b/po/pt_BR.po
index cf7f756..a6e06b0 100644
--- a/po/pt_BR.po
+++ b/po/pt_BR.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: xfce4-time-out-plugin\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-11-08 20:02+0900\n"
+"POT-Creation-Date: 2010-11-12 00:07+0900\n"
"PO-Revision-Date: 2007-11-09 09:44-0300\n"
"Last-Translator: Fábio Nogueira <deb-user-ba at ubuntu.com>\n"
"Language-Team: Brazilian Portuguese <ldp-br at bazar2.conectiva.com.br>\n"
@@ -18,103 +18,108 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
#. Create menu item for taking an instant break
-#: ../panel-plugin/time-out.c:264
+#: ../panel-plugin/time-out.c:265
msgid "Take a break"
msgstr "Pausar"
+#. Create menu item for resetting the timer
+#: ../panel-plugin/time-out.c:273
+msgid "Reset timer"
+msgstr ""
+
#. Create menu item for enabling/disabling the countdown
-#: ../panel-plugin/time-out.c:272
+#: ../panel-plugin/time-out.c:281
msgid "Enabled"
msgstr "Habilitado"
-#: ../panel-plugin/time-out.c:397
+#: ../panel-plugin/time-out.c:422
msgid ""
"Xfce Panel plugin for taking a break from computer work every now and then."
msgstr ""
-#: ../panel-plugin/time-out.c:406
+#: ../panel-plugin/time-out.c:431
msgid "translator-credits"
msgstr ""
#. Create properties dialog
-#: ../panel-plugin/time-out.c:438
+#: ../panel-plugin/time-out.c:463
#: ../panel-plugin/xfce4-time-out-plugin.desktop.in.in.h:2
msgid "Time Out"
msgstr "Tempo Esgotado"
#. Create time settings section
-#: ../panel-plugin/time-out.c:455
+#: ../panel-plugin/time-out.c:480
msgid "Time settings"
msgstr "Configurações do tempo"
#. Create the labels for the minutes and seconds spins
-#: ../panel-plugin/time-out.c:468
+#: ../panel-plugin/time-out.c:493
#, fuzzy
msgid "Minutes"
msgstr "Minutos"
-#: ../panel-plugin/time-out.c:473
+#: ../panel-plugin/time-out.c:498
#, fuzzy
msgid "Seconds"
msgstr "Segundos"
#. Create break countdown time label
-#: ../panel-plugin/time-out.c:479
+#: ../panel-plugin/time-out.c:504
msgid "Time between breaks:"
msgstr "Tempo entre os intervalos:"
#. Create lock countdown time label
-#: ../panel-plugin/time-out.c:503
+#: ../panel-plugin/time-out.c:528
msgid "Break length:"
msgstr "Duração do intervalo:"
#. Create postpone countdown time label
-#: ../panel-plugin/time-out.c:521
+#: ../panel-plugin/time-out.c:546
msgid "Postpone length:"
msgstr "Duração do adiamento:"
#. Create behaviour section
-#: ../panel-plugin/time-out.c:539
+#: ../panel-plugin/time-out.c:564
msgid "Behaviour"
msgstr "Comportamento"
#. Create postpone check button
-#: ../panel-plugin/time-out.c:550
+#: ../panel-plugin/time-out.c:575
msgid "Allow postpone"
msgstr "Habilitar adiamento"
#. Create resume check button
-#: ../panel-plugin/time-out.c:557
+#: ../panel-plugin/time-out.c:582
msgid "Resume automatically"
msgstr ""
#. Create appearance section
-#: ../panel-plugin/time-out.c:564
+#: ../panel-plugin/time-out.c:589
msgid "Appearance"
msgstr "Aparência"
#. Create display time check button
-#: ../panel-plugin/time-out.c:575
+#: ../panel-plugin/time-out.c:600
msgid "Display remaining time in the panel"
msgstr "Exibir o tempo restante no painel"
#. Create display hours check button
-#: ../panel-plugin/time-out.c:582
+#: ../panel-plugin/time-out.c:607
msgid "Display hours"
msgstr "Exibir horas"
#. Create display seconds check button
-#: ../panel-plugin/time-out.c:589
+#: ../panel-plugin/time-out.c:614
msgid "Display seconds"
msgstr "Exibir segundos"
#. Create postpone button
-#: ../panel-plugin/time-out-lock-screen.c:209
+#: ../panel-plugin/time-out-lock-screen.c:219
msgid "_Postpone"
msgstr "_Adiar"
#. Create resume button
-#: ../panel-plugin/time-out-lock-screen.c:215
+#: ../panel-plugin/time-out-lock-screen.c:225
msgid "_Resume"
msgstr ""
diff --git a/po/ru.po b/po/ru.po
index 967bb96..48b5fd1 100644
--- a/po/ru.po
+++ b/po/ru.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-11-08 20:02+0900\n"
+"POT-Creation-Date: 2010-11-12 00:07+0900\n"
"PO-Revision-Date: 2010-01-04 18:55+0300\n"
"Last-Translator: dima <info at cnc-parts.info>\n"
"Language-Team: xfce _ru_ <arch at cnc-parts.info>\n"
@@ -19,103 +19,108 @@ msgstr ""
"X-Poedit-Country: LATVIA\n"
#. Create menu item for taking an instant break
-#: ../panel-plugin/time-out.c:264
+#: ../panel-plugin/time-out.c:265
msgid "Take a break"
msgstr "Время отдохнуть"
+#. Create menu item for resetting the timer
+#: ../panel-plugin/time-out.c:273
+msgid "Reset timer"
+msgstr ""
+
#. Create menu item for enabling/disabling the countdown
-#: ../panel-plugin/time-out.c:272
+#: ../panel-plugin/time-out.c:281
msgid "Enabled"
msgstr "Включен"
-#: ../panel-plugin/time-out.c:397
+#: ../panel-plugin/time-out.c:422
msgid ""
"Xfce Panel plugin for taking a break from computer work every now and then."
msgstr ""
-#: ../panel-plugin/time-out.c:406
+#: ../panel-plugin/time-out.c:431
msgid "translator-credits"
msgstr ""
#. Create properties dialog
-#: ../panel-plugin/time-out.c:438
+#: ../panel-plugin/time-out.c:463
#: ../panel-plugin/xfce4-time-out-plugin.desktop.in.in.h:2
msgid "Time Out"
msgstr "Перерыв"
#. Create time settings section
-#: ../panel-plugin/time-out.c:455
+#: ../panel-plugin/time-out.c:480
msgid "Time settings"
msgstr "Установка временных промежутков"
#. Create the labels for the minutes and seconds spins
-#: ../panel-plugin/time-out.c:468
+#: ../panel-plugin/time-out.c:493
#, fuzzy
msgid "Minutes"
msgstr "Минут"
-#: ../panel-plugin/time-out.c:473
+#: ../panel-plugin/time-out.c:498
#, fuzzy
msgid "Seconds"
msgstr "Секунд"
#. Create break countdown time label
-#: ../panel-plugin/time-out.c:479
+#: ../panel-plugin/time-out.c:504
msgid "Time between breaks:"
msgstr "Длительность рабочего времени:"
#. Create lock countdown time label
-#: ../panel-plugin/time-out.c:503
+#: ../panel-plugin/time-out.c:528
msgid "Break length:"
msgstr "Длительность перерыва:"
#. Create postpone countdown time label
-#: ../panel-plugin/time-out.c:521
+#: ../panel-plugin/time-out.c:546
msgid "Postpone length:"
msgstr "Откладывание:"
#. Create behaviour section
-#: ../panel-plugin/time-out.c:539
+#: ../panel-plugin/time-out.c:564
msgid "Behaviour"
msgstr "Поведение"
#. Create postpone check button
-#: ../panel-plugin/time-out.c:550
+#: ../panel-plugin/time-out.c:575
msgid "Allow postpone"
msgstr "Разрешить откладывание"
#. Create resume check button
-#: ../panel-plugin/time-out.c:557
+#: ../panel-plugin/time-out.c:582
msgid "Resume automatically"
msgstr ""
#. Create appearance section
-#: ../panel-plugin/time-out.c:564
+#: ../panel-plugin/time-out.c:589
msgid "Appearance"
msgstr "Внешний вид"
#. Create display time check button
-#: ../panel-plugin/time-out.c:575
+#: ../panel-plugin/time-out.c:600
msgid "Display remaining time in the panel"
msgstr "Отображать оставшееся время на панели"
#. Create display hours check button
-#: ../panel-plugin/time-out.c:582
+#: ../panel-plugin/time-out.c:607
msgid "Display hours"
msgstr "Отображать часы"
#. Create display seconds check button
-#: ../panel-plugin/time-out.c:589
+#: ../panel-plugin/time-out.c:614
msgid "Display seconds"
msgstr "Отображать секунды"
#. Create postpone button
-#: ../panel-plugin/time-out-lock-screen.c:209
+#: ../panel-plugin/time-out-lock-screen.c:219
msgid "_Postpone"
msgstr "Отложить"
#. Create resume button
-#: ../panel-plugin/time-out-lock-screen.c:215
+#: ../panel-plugin/time-out-lock-screen.c:225
msgid "_Resume"
msgstr ""
diff --git a/po/sv.po b/po/sv.po
index 62c3bd0..810a839 100644
--- a/po/sv.po
+++ b/po/sv.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: xfce4-time-out-plugin\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-11-08 20:02+0900\n"
+"POT-Creation-Date: 2010-11-12 00:07+0900\n"
"PO-Revision-Date: 2008-12-14 21:06+0100\n"
"Last-Translator: Daniel Nylander <po at danielnylander.se>\n"
"Language-Team: Swedish <tp-sv at listor.tp-sv.se>\n"
@@ -17,103 +17,108 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
#. Create menu item for taking an instant break
-#: ../panel-plugin/time-out.c:264
+#: ../panel-plugin/time-out.c:265
msgid "Take a break"
msgstr "Ta en paus"
+#. Create menu item for resetting the timer
+#: ../panel-plugin/time-out.c:273
+msgid "Reset timer"
+msgstr ""
+
#. Create menu item for enabling/disabling the countdown
-#: ../panel-plugin/time-out.c:272
+#: ../panel-plugin/time-out.c:281
msgid "Enabled"
msgstr "Aktiverad"
-#: ../panel-plugin/time-out.c:397
+#: ../panel-plugin/time-out.c:422
msgid ""
"Xfce Panel plugin for taking a break from computer work every now and then."
msgstr ""
-#: ../panel-plugin/time-out.c:406
+#: ../panel-plugin/time-out.c:431
msgid "translator-credits"
msgstr ""
#. Create properties dialog
-#: ../panel-plugin/time-out.c:438
+#: ../panel-plugin/time-out.c:463
#: ../panel-plugin/xfce4-time-out-plugin.desktop.in.in.h:2
msgid "Time Out"
msgstr "Rast"
#. Create time settings section
-#: ../panel-plugin/time-out.c:455
+#: ../panel-plugin/time-out.c:480
msgid "Time settings"
msgstr "Tidsinställningar"
#. Create the labels for the minutes and seconds spins
-#: ../panel-plugin/time-out.c:468
+#: ../panel-plugin/time-out.c:493
#, fuzzy
msgid "Minutes"
msgstr "Minuter"
-#: ../panel-plugin/time-out.c:473
+#: ../panel-plugin/time-out.c:498
#, fuzzy
msgid "Seconds"
msgstr "Sekunder"
#. Create break countdown time label
-#: ../panel-plugin/time-out.c:479
+#: ../panel-plugin/time-out.c:504
msgid "Time between breaks:"
msgstr "Tid mellan pauser:"
#. Create lock countdown time label
-#: ../panel-plugin/time-out.c:503
+#: ../panel-plugin/time-out.c:528
msgid "Break length:"
msgstr "Tidslängd:"
#. Create postpone countdown time label
-#: ../panel-plugin/time-out.c:521
+#: ../panel-plugin/time-out.c:546
msgid "Postpone length:"
msgstr "Tidslängd på framflyttning:"
#. Create behaviour section
-#: ../panel-plugin/time-out.c:539
+#: ../panel-plugin/time-out.c:564
msgid "Behaviour"
msgstr "Beteende"
#. Create postpone check button
-#: ../panel-plugin/time-out.c:550
+#: ../panel-plugin/time-out.c:575
msgid "Allow postpone"
msgstr "Tillåt framflyttning"
#. Create resume check button
-#: ../panel-plugin/time-out.c:557
+#: ../panel-plugin/time-out.c:582
msgid "Resume automatically"
msgstr ""
#. Create appearance section
-#: ../panel-plugin/time-out.c:564
+#: ../panel-plugin/time-out.c:589
msgid "Appearance"
msgstr "Utseende"
#. Create display time check button
-#: ../panel-plugin/time-out.c:575
+#: ../panel-plugin/time-out.c:600
msgid "Display remaining time in the panel"
msgstr "Visa återstående tid i panelen"
#. Create display hours check button
-#: ../panel-plugin/time-out.c:582
+#: ../panel-plugin/time-out.c:607
msgid "Display hours"
msgstr "Visa timmar"
#. Create display seconds check button
-#: ../panel-plugin/time-out.c:589
+#: ../panel-plugin/time-out.c:614
msgid "Display seconds"
msgstr "Visa sekunder"
#. Create postpone button
-#: ../panel-plugin/time-out-lock-screen.c:209
+#: ../panel-plugin/time-out-lock-screen.c:219
msgid "_Postpone"
msgstr "_Flytta fram"
#. Create resume button
-#: ../panel-plugin/time-out-lock-screen.c:215
+#: ../panel-plugin/time-out-lock-screen.c:225
msgid "_Resume"
msgstr ""
diff --git a/po/tr.po b/po/tr.po
index fa0d45f..0dce3a0 100644
--- a/po/tr.po
+++ b/po/tr.po
@@ -2,7 +2,7 @@ msgid ""
msgstr ""
"Project-Id-Version: xfce4 timeout plugin\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-11-08 20:02+0900\n"
+"POT-Creation-Date: 2010-11-12 00:07+0900\n"
"PO-Revision-Date: \n"
"Last-Translator: Samed Beyribey <ras0ir at eventualis.org>\n"
"Language-Team: Xfce-TR <xfce-tr at googlegroups.com>\n"
@@ -13,103 +13,108 @@ msgstr ""
"X-Poedit-Country: TURKEY\n"
#. Create menu item for taking an instant break
-#: ../panel-plugin/time-out.c:264
+#: ../panel-plugin/time-out.c:265
msgid "Take a break"
msgstr "Mola ver"
+#. Create menu item for resetting the timer
+#: ../panel-plugin/time-out.c:273
+msgid "Reset timer"
+msgstr ""
+
#. Create menu item for enabling/disabling the countdown
-#: ../panel-plugin/time-out.c:272
+#: ../panel-plugin/time-out.c:281
msgid "Enabled"
msgstr "Etkin"
-#: ../panel-plugin/time-out.c:397
+#: ../panel-plugin/time-out.c:422
msgid ""
"Xfce Panel plugin for taking a break from computer work every now and then."
msgstr ""
-#: ../panel-plugin/time-out.c:406
+#: ../panel-plugin/time-out.c:431
msgid "translator-credits"
msgstr ""
#. Create properties dialog
-#: ../panel-plugin/time-out.c:438
+#: ../panel-plugin/time-out.c:463
#: ../panel-plugin/xfce4-time-out-plugin.desktop.in.in.h:2
msgid "Time Out"
msgstr "Zaman Aşımı"
#. Create time settings section
-#: ../panel-plugin/time-out.c:455
+#: ../panel-plugin/time-out.c:480
msgid "Time settings"
msgstr "Süre ayarları"
#. Create the labels for the minutes and seconds spins
-#: ../panel-plugin/time-out.c:468
+#: ../panel-plugin/time-out.c:493
#, fuzzy
msgid "Minutes"
msgstr "Dakika"
-#: ../panel-plugin/time-out.c:473
+#: ../panel-plugin/time-out.c:498
#, fuzzy
msgid "Seconds"
msgstr "Saniye"
#. Create break countdown time label
-#: ../panel-plugin/time-out.c:479
+#: ../panel-plugin/time-out.c:504
msgid "Time between breaks:"
msgstr "Molalar arası süre:"
#. Create lock countdown time label
-#: ../panel-plugin/time-out.c:503
+#: ../panel-plugin/time-out.c:528
msgid "Break length:"
msgstr "Mola süresi:"
#. Create postpone countdown time label
-#: ../panel-plugin/time-out.c:521
+#: ../panel-plugin/time-out.c:546
msgid "Postpone length:"
msgstr "Erteleme süresi:"
#. Create behaviour section
-#: ../panel-plugin/time-out.c:539
+#: ../panel-plugin/time-out.c:564
msgid "Behaviour"
msgstr "Davranış ayarları"
#. Create postpone check button
-#: ../panel-plugin/time-out.c:550
+#: ../panel-plugin/time-out.c:575
msgid "Allow postpone"
msgstr "Ertelemeye izin ver"
#. Create resume check button
-#: ../panel-plugin/time-out.c:557
+#: ../panel-plugin/time-out.c:582
msgid "Resume automatically"
msgstr ""
#. Create appearance section
-#: ../panel-plugin/time-out.c:564
+#: ../panel-plugin/time-out.c:589
msgid "Appearance"
msgstr "Görünüm"
#. Create display time check button
-#: ../panel-plugin/time-out.c:575
+#: ../panel-plugin/time-out.c:600
msgid "Display remaining time in the panel"
msgstr "Kalan süreyi panelde görüntüle"
#. Create display hours check button
-#: ../panel-plugin/time-out.c:582
+#: ../panel-plugin/time-out.c:607
msgid "Display hours"
msgstr "Saati görüntüle"
#. Create display seconds check button
-#: ../panel-plugin/time-out.c:589
+#: ../panel-plugin/time-out.c:614
msgid "Display seconds"
msgstr "Saniyeyi görüntüle"
#. Create postpone button
-#: ../panel-plugin/time-out-lock-screen.c:209
+#: ../panel-plugin/time-out-lock-screen.c:219
msgid "_Postpone"
msgstr "_Ertele"
#. Create resume button
-#: ../panel-plugin/time-out-lock-screen.c:215
+#: ../panel-plugin/time-out-lock-screen.c:225
msgid "_Resume"
msgstr ""
diff --git a/po/ug.po b/po/ug.po
index b54fd22..f25f004 100644
--- a/po/ug.po
+++ b/po/ug.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: fce4-time-out-plugin 0.1.1\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-11-08 20:02+0900\n"
+"POT-Creation-Date: 2010-11-12 00:07+0900\n"
"PO-Revision-Date: 2008-11-16 22:32+0900\n"
"Last-Translator: Gheyret T.Kenji <gheyret at gmail.com>\n"
"Language-Team: Uyghur Computer Science Association <UKIJ at yahoogroups.com>\n"
@@ -17,103 +17,108 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
#. Create menu item for taking an instant break
-#: ../panel-plugin/time-out.c:264
+#: ../panel-plugin/time-out.c:265
msgid "Take a break"
msgstr "ئارام ئال"
+#. Create menu item for resetting the timer
+#: ../panel-plugin/time-out.c:273
+msgid "Reset timer"
+msgstr ""
+
#. Create menu item for enabling/disabling the countdown
-#: ../panel-plugin/time-out.c:272
+#: ../panel-plugin/time-out.c:281
msgid "Enabled"
msgstr "ئىناۋەتلىك"
-#: ../panel-plugin/time-out.c:397
+#: ../panel-plugin/time-out.c:422
msgid ""
"Xfce Panel plugin for taking a break from computer work every now and then."
msgstr ""
-#: ../panel-plugin/time-out.c:406
+#: ../panel-plugin/time-out.c:431
msgid "translator-credits"
msgstr ""
#. Create properties dialog
-#: ../panel-plugin/time-out.c:438
+#: ../panel-plugin/time-out.c:463
#: ../panel-plugin/xfce4-time-out-plugin.desktop.in.in.h:2
msgid "Time Out"
msgstr "ۋاقىت ئېشىپ كەتتى"
#. Create time settings section
-#: ../panel-plugin/time-out.c:455
+#: ../panel-plugin/time-out.c:480
msgid "Time settings"
msgstr "ۋاقىت تەڭشىكى"
#. Create the labels for the minutes and seconds spins
-#: ../panel-plugin/time-out.c:468
+#: ../panel-plugin/time-out.c:493
#, fuzzy
msgid "Minutes"
msgstr "ﻡﻰﻧۇﺕ "
-#: ../panel-plugin/time-out.c:473
+#: ../panel-plugin/time-out.c:498
#, fuzzy
msgid "Seconds"
msgstr "ﺱېﻙۇﻦﺗ"
#. Create break countdown time label
-#: ../panel-plugin/time-out.c:479
+#: ../panel-plugin/time-out.c:504
msgid "Time between breaks:"
msgstr "ئاراملار ئارىسىدىكى ۋاقىت:"
#. Create lock countdown time label
-#: ../panel-plugin/time-out.c:503
+#: ../panel-plugin/time-out.c:528
msgid "Break length:"
msgstr "ئارام ۋاقتى:"
#. Create postpone countdown time label
-#: ../panel-plugin/time-out.c:521
+#: ../panel-plugin/time-out.c:546
msgid "Postpone length:"
msgstr "ئۇزارتىش ۋاقتى:"
#. Create behaviour section
-#: ../panel-plugin/time-out.c:539
+#: ../panel-plugin/time-out.c:564
msgid "Behaviour"
msgstr "قىلمىش"
#. Create postpone check button
-#: ../panel-plugin/time-out.c:550
+#: ../panel-plugin/time-out.c:575
msgid "Allow postpone"
msgstr "يول قويغان ئۇزارتىش ۋاقتى"
#. Create resume check button
-#: ../panel-plugin/time-out.c:557
+#: ../panel-plugin/time-out.c:582
msgid "Resume automatically"
msgstr ""
#. Create appearance section
-#: ../panel-plugin/time-out.c:564
+#: ../panel-plugin/time-out.c:589
msgid "Appearance"
msgstr "كۆرۈنۈشى"
#. Create display time check button
-#: ../panel-plugin/time-out.c:575
+#: ../panel-plugin/time-out.c:600
msgid "Display remaining time in the panel"
msgstr "panel دا قالغان ۋاقىتنى كۆرسەتسۇن"
#. Create display hours check button
-#: ../panel-plugin/time-out.c:582
+#: ../panel-plugin/time-out.c:607
msgid "Display hours"
msgstr "سائەتنى كۆرسەت"
#. Create display seconds check button
-#: ../panel-plugin/time-out.c:589
+#: ../panel-plugin/time-out.c:614
msgid "Display seconds"
msgstr "مىنۇتنى كۆرسەت"
#. Create postpone button
-#: ../panel-plugin/time-out-lock-screen.c:209
+#: ../panel-plugin/time-out-lock-screen.c:219
msgid "_Postpone"
msgstr "ۋاقىتنى ئۇزارت(_P)"
#. Create resume button
-#: ../panel-plugin/time-out-lock-screen.c:215
+#: ../panel-plugin/time-out-lock-screen.c:225
msgid "_Resume"
msgstr ""
diff --git a/po/uk.po b/po/uk.po
index d9adf40..ead330d 100644
--- a/po/uk.po
+++ b/po/uk.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: xfce4-time-out-plugin\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-11-08 20:02+0900\n"
+"POT-Creation-Date: 2010-11-12 00:07+0900\n"
"PO-Revision-Date: 2008-11-27 21:02+0200\n"
"Last-Translator: Dmitry Nikitin <luckas_fb at mail.ru>\n"
"Language-Team: Ukrainian <xfce4-dev at xfce.org>\n"
@@ -18,103 +18,108 @@ msgstr ""
"X-Generator: KBabel 1.11.4\n"
#. Create menu item for taking an instant break
-#: ../panel-plugin/time-out.c:264
+#: ../panel-plugin/time-out.c:265
msgid "Take a break"
msgstr "Зробити перерву"
+#. Create menu item for resetting the timer
+#: ../panel-plugin/time-out.c:273
+msgid "Reset timer"
+msgstr ""
+
#. Create menu item for enabling/disabling the countdown
-#: ../panel-plugin/time-out.c:272
+#: ../panel-plugin/time-out.c:281
msgid "Enabled"
msgstr "Активно"
-#: ../panel-plugin/time-out.c:397
+#: ../panel-plugin/time-out.c:422
msgid ""
"Xfce Panel plugin for taking a break from computer work every now and then."
msgstr ""
-#: ../panel-plugin/time-out.c:406
+#: ../panel-plugin/time-out.c:431
msgid "translator-credits"
msgstr ""
#. Create properties dialog
-#: ../panel-plugin/time-out.c:438
+#: ../panel-plugin/time-out.c:463
#: ../panel-plugin/xfce4-time-out-plugin.desktop.in.in.h:2
msgid "Time Out"
msgstr "Пауза"
#. Create time settings section
-#: ../panel-plugin/time-out.c:455
+#: ../panel-plugin/time-out.c:480
msgid "Time settings"
msgstr "Налаштування часу"
#. Create the labels for the minutes and seconds spins
-#: ../panel-plugin/time-out.c:468
+#: ../panel-plugin/time-out.c:493
#, fuzzy
msgid "Minutes"
msgstr "Хвилин"
-#: ../panel-plugin/time-out.c:473
+#: ../panel-plugin/time-out.c:498
#, fuzzy
msgid "Seconds"
msgstr "Секунд"
#. Create break countdown time label
-#: ../panel-plugin/time-out.c:479
+#: ../panel-plugin/time-out.c:504
msgid "Time between breaks:"
msgstr "Час до перерви:"
#. Create lock countdown time label
-#: ../panel-plugin/time-out.c:503
+#: ../panel-plugin/time-out.c:528
msgid "Break length:"
msgstr "Тривалість перерви:"
#. Create postpone countdown time label
-#: ../panel-plugin/time-out.c:521
+#: ../panel-plugin/time-out.c:546
msgid "Postpone length:"
msgstr "Тривалість затримки:"
#. Create behaviour section
-#: ../panel-plugin/time-out.c:539
+#: ../panel-plugin/time-out.c:564
msgid "Behaviour"
msgstr "Заголовок"
#. Create postpone check button
-#: ../panel-plugin/time-out.c:550
+#: ../panel-plugin/time-out.c:575
msgid "Allow postpone"
msgstr "Дозволити затримку"
#. Create resume check button
-#: ../panel-plugin/time-out.c:557
+#: ../panel-plugin/time-out.c:582
msgid "Resume automatically"
msgstr ""
#. Create appearance section
-#: ../panel-plugin/time-out.c:564
+#: ../panel-plugin/time-out.c:589
msgid "Appearance"
msgstr "Зовнішній вигляд"
#. Create display time check button
-#: ../panel-plugin/time-out.c:575
+#: ../panel-plugin/time-out.c:600
msgid "Display remaining time in the panel"
msgstr "Відображати в панелі час, що залишився"
#. Create display hours check button
-#: ../panel-plugin/time-out.c:582
+#: ../panel-plugin/time-out.c:607
msgid "Display hours"
msgstr "Показувати години"
#. Create display seconds check button
-#: ../panel-plugin/time-out.c:589
+#: ../panel-plugin/time-out.c:614
msgid "Display seconds"
msgstr "Показувати секунди"
#. Create postpone button
-#: ../panel-plugin/time-out-lock-screen.c:209
+#: ../panel-plugin/time-out-lock-screen.c:219
msgid "_Postpone"
msgstr "_Затримка"
#. Create resume button
-#: ../panel-plugin/time-out-lock-screen.c:215
+#: ../panel-plugin/time-out-lock-screen.c:225
msgid "_Resume"
msgstr ""
diff --git a/po/ur.po b/po/ur.po
index 8b309dd..3b781e0 100644
--- a/po/ur.po
+++ b/po/ur.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: xfce4-time-out-plugin\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-11-08 20:02+0900\n"
+"POT-Creation-Date: 2010-11-12 00:07+0900\n"
"PO-Revision-Date: 2009-05-14 03:23+0500\n"
"Last-Translator: Muhammad Ali Makki <makki.ma at gmail.com>\n"
"Language-Team: Urdu <makki.ma at gmail.com>\n"
@@ -21,103 +21,108 @@ msgstr ""
"Plural-Forms: Plural-Forms: nplurals=2; plural=n != 1;\n"
#. Create menu item for taking an instant break
-#: ../panel-plugin/time-out.c:264
+#: ../panel-plugin/time-out.c:265
msgid "Take a break"
msgstr "وقفہ لیں"
+#. Create menu item for resetting the timer
+#: ../panel-plugin/time-out.c:273
+msgid "Reset timer"
+msgstr ""
+
#. Create menu item for enabling/disabling the countdown
-#: ../panel-plugin/time-out.c:272
+#: ../panel-plugin/time-out.c:281
msgid "Enabled"
msgstr "فعال"
-#: ../panel-plugin/time-out.c:397
+#: ../panel-plugin/time-out.c:422
msgid ""
"Xfce Panel plugin for taking a break from computer work every now and then."
msgstr ""
-#: ../panel-plugin/time-out.c:406
+#: ../panel-plugin/time-out.c:431
msgid "translator-credits"
msgstr ""
#. Create properties dialog
-#: ../panel-plugin/time-out.c:438
+#: ../panel-plugin/time-out.c:463
#: ../panel-plugin/xfce4-time-out-plugin.desktop.in.in.h:2
msgid "Time Out"
msgstr "وقت تمام"
#. Create time settings section
-#: ../panel-plugin/time-out.c:455
+#: ../panel-plugin/time-out.c:480
msgid "Time settings"
msgstr "وقت ترتیبات"
#. Create the labels for the minutes and seconds spins
-#: ../panel-plugin/time-out.c:468
+#: ../panel-plugin/time-out.c:493
#, fuzzy
msgid "Minutes"
msgstr "ﻢﻧٹ"
-#: ../panel-plugin/time-out.c:473
+#: ../panel-plugin/time-out.c:498
#, fuzzy
msgid "Seconds"
msgstr "ﺱیکﻥڈ"
#. Create break countdown time label
-#: ../panel-plugin/time-out.c:479
+#: ../panel-plugin/time-out.c:504
msgid "Time between breaks:"
msgstr "وقفوں کا درمیانی وقت:"
#. Create lock countdown time label
-#: ../panel-plugin/time-out.c:503
+#: ../panel-plugin/time-out.c:528
msgid "Break length:"
msgstr "وقفہ طول:"
#. Create postpone countdown time label
-#: ../panel-plugin/time-out.c:521
+#: ../panel-plugin/time-out.c:546
msgid "Postpone length:"
msgstr "مؤخر طول:"
#. Create behaviour section
-#: ../panel-plugin/time-out.c:539
+#: ../panel-plugin/time-out.c:564
msgid "Behaviour"
msgstr "سلوک"
#. Create postpone check button
-#: ../panel-plugin/time-out.c:550
+#: ../panel-plugin/time-out.c:575
msgid "Allow postpone"
msgstr "مؤخر کی اجازت"
#. Create resume check button
-#: ../panel-plugin/time-out.c:557
+#: ../panel-plugin/time-out.c:582
msgid "Resume automatically"
msgstr ""
#. Create appearance section
-#: ../panel-plugin/time-out.c:564
+#: ../panel-plugin/time-out.c:589
msgid "Appearance"
msgstr "مظہر"
#. Create display time check button
-#: ../panel-plugin/time-out.c:575
+#: ../panel-plugin/time-out.c:600
msgid "Display remaining time in the panel"
msgstr "باقی وقت پینل میں ظاہر کریں"
#. Create display hours check button
-#: ../panel-plugin/time-out.c:582
+#: ../panel-plugin/time-out.c:607
msgid "Display hours"
msgstr "گھنٹے ظاہر کریں"
#. Create display seconds check button
-#: ../panel-plugin/time-out.c:589
+#: ../panel-plugin/time-out.c:614
msgid "Display seconds"
msgstr "سیکنڈ ظاہر کریں"
#. Create postpone button
-#: ../panel-plugin/time-out-lock-screen.c:209
+#: ../panel-plugin/time-out-lock-screen.c:219
msgid "_Postpone"
msgstr "_مؤخر"
#. Create resume button
-#: ../panel-plugin/time-out-lock-screen.c:215
+#: ../panel-plugin/time-out-lock-screen.c:225
msgid "_Resume"
msgstr ""
diff --git a/po/ur_PK.po b/po/ur_PK.po
index 8b309dd..3b781e0 100644
--- a/po/ur_PK.po
+++ b/po/ur_PK.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: xfce4-time-out-plugin\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-11-08 20:02+0900\n"
+"POT-Creation-Date: 2010-11-12 00:07+0900\n"
"PO-Revision-Date: 2009-05-14 03:23+0500\n"
"Last-Translator: Muhammad Ali Makki <makki.ma at gmail.com>\n"
"Language-Team: Urdu <makki.ma at gmail.com>\n"
@@ -21,103 +21,108 @@ msgstr ""
"Plural-Forms: Plural-Forms: nplurals=2; plural=n != 1;\n"
#. Create menu item for taking an instant break
-#: ../panel-plugin/time-out.c:264
+#: ../panel-plugin/time-out.c:265
msgid "Take a break"
msgstr "وقفہ لیں"
+#. Create menu item for resetting the timer
+#: ../panel-plugin/time-out.c:273
+msgid "Reset timer"
+msgstr ""
+
#. Create menu item for enabling/disabling the countdown
-#: ../panel-plugin/time-out.c:272
+#: ../panel-plugin/time-out.c:281
msgid "Enabled"
msgstr "فعال"
-#: ../panel-plugin/time-out.c:397
+#: ../panel-plugin/time-out.c:422
msgid ""
"Xfce Panel plugin for taking a break from computer work every now and then."
msgstr ""
-#: ../panel-plugin/time-out.c:406
+#: ../panel-plugin/time-out.c:431
msgid "translator-credits"
msgstr ""
#. Create properties dialog
-#: ../panel-plugin/time-out.c:438
+#: ../panel-plugin/time-out.c:463
#: ../panel-plugin/xfce4-time-out-plugin.desktop.in.in.h:2
msgid "Time Out"
msgstr "وقت تمام"
#. Create time settings section
-#: ../panel-plugin/time-out.c:455
+#: ../panel-plugin/time-out.c:480
msgid "Time settings"
msgstr "وقت ترتیبات"
#. Create the labels for the minutes and seconds spins
-#: ../panel-plugin/time-out.c:468
+#: ../panel-plugin/time-out.c:493
#, fuzzy
msgid "Minutes"
msgstr "ﻢﻧٹ"
-#: ../panel-plugin/time-out.c:473
+#: ../panel-plugin/time-out.c:498
#, fuzzy
msgid "Seconds"
msgstr "ﺱیکﻥڈ"
#. Create break countdown time label
-#: ../panel-plugin/time-out.c:479
+#: ../panel-plugin/time-out.c:504
msgid "Time between breaks:"
msgstr "وقفوں کا درمیانی وقت:"
#. Create lock countdown time label
-#: ../panel-plugin/time-out.c:503
+#: ../panel-plugin/time-out.c:528
msgid "Break length:"
msgstr "وقفہ طول:"
#. Create postpone countdown time label
-#: ../panel-plugin/time-out.c:521
+#: ../panel-plugin/time-out.c:546
msgid "Postpone length:"
msgstr "مؤخر طول:"
#. Create behaviour section
-#: ../panel-plugin/time-out.c:539
+#: ../panel-plugin/time-out.c:564
msgid "Behaviour"
msgstr "سلوک"
#. Create postpone check button
-#: ../panel-plugin/time-out.c:550
+#: ../panel-plugin/time-out.c:575
msgid "Allow postpone"
msgstr "مؤخر کی اجازت"
#. Create resume check button
-#: ../panel-plugin/time-out.c:557
+#: ../panel-plugin/time-out.c:582
msgid "Resume automatically"
msgstr ""
#. Create appearance section
-#: ../panel-plugin/time-out.c:564
+#: ../panel-plugin/time-out.c:589
msgid "Appearance"
msgstr "مظہر"
#. Create display time check button
-#: ../panel-plugin/time-out.c:575
+#: ../panel-plugin/time-out.c:600
msgid "Display remaining time in the panel"
msgstr "باقی وقت پینل میں ظاہر کریں"
#. Create display hours check button
-#: ../panel-plugin/time-out.c:582
+#: ../panel-plugin/time-out.c:607
msgid "Display hours"
msgstr "گھنٹے ظاہر کریں"
#. Create display seconds check button
-#: ../panel-plugin/time-out.c:589
+#: ../panel-plugin/time-out.c:614
msgid "Display seconds"
msgstr "سیکنڈ ظاہر کریں"
#. Create postpone button
-#: ../panel-plugin/time-out-lock-screen.c:209
+#: ../panel-plugin/time-out-lock-screen.c:219
msgid "_Postpone"
msgstr "_مؤخر"
#. Create resume button
-#: ../panel-plugin/time-out-lock-screen.c:215
+#: ../panel-plugin/time-out-lock-screen.c:225
msgid "_Resume"
msgstr ""
diff --git a/po/xfce4-time-out-plugin.pot b/po/xfce4-time-out-plugin.pot
index 271370b..e00ac91 100644
--- a/po/xfce4-time-out-plugin.pot
+++ b/po/xfce4-time-out-plugin.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-11-08 20:02+0900\n"
+"POT-Creation-Date: 2010-11-12 00:07+0900\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
"Language-Team: LANGUAGE <LL at li.org>\n"
@@ -18,101 +18,106 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
#. Create menu item for taking an instant break
-#: ../panel-plugin/time-out.c:264
+#: ../panel-plugin/time-out.c:265
msgid "Take a break"
msgstr ""
+#. Create menu item for resetting the timer
+#: ../panel-plugin/time-out.c:273
+msgid "Reset timer"
+msgstr ""
+
#. Create menu item for enabling/disabling the countdown
-#: ../panel-plugin/time-out.c:272
+#: ../panel-plugin/time-out.c:281
msgid "Enabled"
msgstr ""
-#: ../panel-plugin/time-out.c:397
+#: ../panel-plugin/time-out.c:422
msgid ""
"Xfce Panel plugin for taking a break from computer work every now and then."
msgstr ""
-#: ../panel-plugin/time-out.c:406
+#: ../panel-plugin/time-out.c:431
msgid "translator-credits"
msgstr ""
#. Create properties dialog
-#: ../panel-plugin/time-out.c:438
+#: ../panel-plugin/time-out.c:463
#: ../panel-plugin/xfce4-time-out-plugin.desktop.in.in.h:2
msgid "Time Out"
msgstr ""
#. Create time settings section
-#: ../panel-plugin/time-out.c:455
+#: ../panel-plugin/time-out.c:480
msgid "Time settings"
msgstr ""
#. Create the labels for the minutes and seconds spins
-#: ../panel-plugin/time-out.c:468
+#: ../panel-plugin/time-out.c:493
msgid "Minutes"
msgstr ""
-#: ../panel-plugin/time-out.c:473
+#: ../panel-plugin/time-out.c:498
msgid "Seconds"
msgstr ""
#. Create break countdown time label
-#: ../panel-plugin/time-out.c:479
+#: ../panel-plugin/time-out.c:504
msgid "Time between breaks:"
msgstr ""
#. Create lock countdown time label
-#: ../panel-plugin/time-out.c:503
+#: ../panel-plugin/time-out.c:528
msgid "Break length:"
msgstr ""
#. Create postpone countdown time label
-#: ../panel-plugin/time-out.c:521
+#: ../panel-plugin/time-out.c:546
msgid "Postpone length:"
msgstr ""
#. Create behaviour section
-#: ../panel-plugin/time-out.c:539
+#: ../panel-plugin/time-out.c:564
msgid "Behaviour"
msgstr ""
#. Create postpone check button
-#: ../panel-plugin/time-out.c:550
+#: ../panel-plugin/time-out.c:575
msgid "Allow postpone"
msgstr ""
#. Create resume check button
-#: ../panel-plugin/time-out.c:557
+#: ../panel-plugin/time-out.c:582
msgid "Resume automatically"
msgstr ""
#. Create appearance section
-#: ../panel-plugin/time-out.c:564
+#: ../panel-plugin/time-out.c:589
msgid "Appearance"
msgstr ""
#. Create display time check button
-#: ../panel-plugin/time-out.c:575
+#: ../panel-plugin/time-out.c:600
msgid "Display remaining time in the panel"
msgstr ""
#. Create display hours check button
-#: ../panel-plugin/time-out.c:582
+#: ../panel-plugin/time-out.c:607
msgid "Display hours"
msgstr ""
#. Create display seconds check button
-#: ../panel-plugin/time-out.c:589
+#: ../panel-plugin/time-out.c:614
msgid "Display seconds"
msgstr ""
#. Create postpone button
-#: ../panel-plugin/time-out-lock-screen.c:209
+#: ../panel-plugin/time-out-lock-screen.c:219
msgid "_Postpone"
msgstr ""
#. Create resume button
-#: ../panel-plugin/time-out-lock-screen.c:215
+#: ../panel-plugin/time-out-lock-screen.c:225
msgid "_Resume"
msgstr ""
diff --git a/po/zh_CN.po b/po/zh_CN.po
index 60f3e8e..fc9be6e 100644
--- a/po/zh_CN.po
+++ b/po/zh_CN.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: xfce 4-time-out-plugin\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2010-11-08 20:02+0900\n"
+"POT-Creation-Date: 2010-11-12 00:07+0900\n"
"PO-Revision-Date: 2009-05-13 11:48+0800\n"
"Last-Translator: Hunt Xu <huntxu at live.cn>\n"
"Language-Team: Chinese (simplified)\n"
@@ -17,103 +17,108 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
#. Create menu item for taking an instant break
-#: ../panel-plugin/time-out.c:264
+#: ../panel-plugin/time-out.c:265
msgid "Take a break"
msgstr "休息一下"
+#. Create menu item for resetting the timer
+#: ../panel-plugin/time-out.c:273
+msgid "Reset timer"
+msgstr ""
+
#. Create menu item for enabling/disabling the countdown
-#: ../panel-plugin/time-out.c:272
+#: ../panel-plugin/time-out.c:281
msgid "Enabled"
msgstr "启动"
-#: ../panel-plugin/time-out.c:397
+#: ../panel-plugin/time-out.c:422
msgid ""
"Xfce Panel plugin for taking a break from computer work every now and then."
msgstr ""
-#: ../panel-plugin/time-out.c:406
+#: ../panel-plugin/time-out.c:431
msgid "translator-credits"
msgstr ""
#. Create properties dialog
-#: ../panel-plugin/time-out.c:438
+#: ../panel-plugin/time-out.c:463
#: ../panel-plugin/xfce4-time-out-plugin.desktop.in.in.h:2
msgid "Time Out"
msgstr "超时"
#. Create time settings section
-#: ../panel-plugin/time-out.c:455
+#: ../panel-plugin/time-out.c:480
msgid "Time settings"
msgstr "时间设置"
#. Create the labels for the minutes and seconds spins
-#: ../panel-plugin/time-out.c:468
+#: ../panel-plugin/time-out.c:493
#, fuzzy
msgid "Minutes"
msgstr "分钟"
-#: ../panel-plugin/time-out.c:473
+#: ../panel-plugin/time-out.c:498
#, fuzzy
msgid "Seconds"
msgstr "秒"
#. Create break countdown time label
-#: ../panel-plugin/time-out.c:479
+#: ../panel-plugin/time-out.c:504
msgid "Time between breaks:"
msgstr "每次休息的时间间隔:"
#. Create lock countdown time label
-#: ../panel-plugin/time-out.c:503
+#: ../panel-plugin/time-out.c:528
msgid "Break length:"
msgstr "休息时间:"
#. Create postpone countdown time label
-#: ../panel-plugin/time-out.c:521
+#: ../panel-plugin/time-out.c:546
msgid "Postpone length:"
msgstr "延迟时间:"
#. Create behaviour section
-#: ../panel-plugin/time-out.c:539
+#: ../panel-plugin/time-out.c:564
msgid "Behaviour"
msgstr "行为"
#. Create postpone check button
-#: ../panel-plugin/time-out.c:550
+#: ../panel-plugin/time-out.c:575
msgid "Allow postpone"
msgstr "允许延迟"
#. Create resume check button
-#: ../panel-plugin/time-out.c:557
+#: ../panel-plugin/time-out.c:582
msgid "Resume automatically"
msgstr ""
#. Create appearance section
-#: ../panel-plugin/time-out.c:564
+#: ../panel-plugin/time-out.c:589
msgid "Appearance"
msgstr "外观"
#. Create display time check button
-#: ../panel-plugin/time-out.c:575
+#: ../panel-plugin/time-out.c:600
msgid "Display remaining time in the panel"
msgstr "在面板上显示剩余时间"
#. Create display hours check button
-#: ../panel-plugin/time-out.c:582
+#: ../panel-plugin/time-out.c:607
msgid "Display hours"
msgstr "显示小时数"
#. Create display seconds check button
-#: ../panel-plugin/time-out.c:589
+#: ../panel-plugin/time-out.c:614
msgid "Display seconds"
msgstr "显示秒数"
#. Create postpone button
-#: ../panel-plugin/time-out-lock-screen.c:209
+#: ../panel-plugin/time-out-lock-screen.c:219
msgid "_Postpone"
msgstr "延迟(_P)"
#. Create resume button
-#: ../panel-plugin/time-out-lock-screen.c:215
+#: ../panel-plugin/time-out-lock-screen.c:225
msgid "_Resume"
msgstr ""
More information about the Xfce4-commits
mailing list