[Xfce4-commits] [panel-plugins/xfce4-timer-plugin] 03/03: Selecting a timer always starts it. Code cleanup.
noreply at xfce.org
noreply at xfce.org
Sat Apr 21 17:05:18 CEST 2018
This is an automated email from the git hooks/post-receive script.
i l g a r p u s h e d a c o m m i t t o b r a n c h m a s t e r
in repository panel-plugins/xfce4-timer-plugin.
commit 224f2350e93beef9e31234032162fe465106a9d0
Author: Kemal Ilgar Eroglu <kieroglu at hotmail.com>
Date: Sat Apr 21 18:05:14 2018 +0300
Selecting a timer always starts it. Code cleanup.
---
configure.ac.in | 4 +-
panel-plugin/xfcetimer.c | 35 ++-------
panel-plugin/xfcetimer.h | 1 -
po/ar.po | 177 ++++++++++++++++++++++++++++-----------------
po/ast.po | 178 +++++++++++++++++++++++++++++-----------------
po/bg.po | 154 ++++++++++++++++++++++------------------
po/ca.po | 154 ++++++++++++++++++++++------------------
po/cs.po | 144 ++++++++++++++++++++-----------------
po/da.po | 147 +++++++++++++++++++++-----------------
po/de.po | 144 ++++++++++++++++++++-----------------
po/el.po | 148 +++++++++++++++++++++-----------------
po/en_AU.po | 144 ++++++++++++++++++++-----------------
po/en_GB.po | 179 ++++++++++++++++++++++++++++------------------
po/es.po | 151 +++++++++++++++++++++------------------
po/eu.po | 162 +++++++++++++++++++++++++-----------------
po/fi.po | 140 +++++++++++++++++++-----------------
po/fr.po | 148 +++++++++++++++++++++-----------------
po/gl.po | 144 ++++++++++++++++++++-----------------
po/he.po | 144 ++++++++++++++++++++-----------------
po/hr.po | 157 ++++++++++++++++++++++------------------
po/hu.po | 181 +++++++++++++++++++++++++++++------------------
po/id.po | 178 +++++++++++++++++++++++++++++-----------------
po/is.po | 177 ++++++++++++++++++++++++++++-----------------
po/it.po | 148 +++++++++++++++++++++-----------------
po/ja.po | 144 ++++++++++++++++++++-----------------
po/ko.po | 174 ++++++++++++++++++++++++++++-----------------
po/lt.po | 151 +++++++++++++++++++++------------------
po/lv.po | 164 +++++++++++++++++++++++++-----------------
po/ms.po | 148 +++++++++++++++++++++-----------------
po/nb.po | 147 +++++++++++++++++++++-----------------
po/nl.po | 147 +++++++++++++++++++++-----------------
po/oc.po | 177 ++++++++++++++++++++++++++++-----------------
po/pl.po | 146 +++++++++++++++++++++-----------------
po/pt.po | 144 ++++++++++++++++++++-----------------
po/pt_BR.po | 148 +++++++++++++++++++++-----------------
po/ru.po | 147 +++++++++++++++++++++-----------------
po/sk.po | 178 +++++++++++++++++++++++++++++-----------------
po/sq.po | 161 ++++++++++++++++++++++++-----------------
po/sr.po | 147 +++++++++++++++++++++-----------------
po/sv.po | 148 +++++++++++++++++++++-----------------
po/th.po | 174 ++++++++++++++++++++++++++++-----------------
po/tr.po | 169 +++++++++++++++++++++++--------------------
po/ug.po | 161 ++++++++++++++++++++++++-----------------
po/uk.po | 150 +++++++++++++++++++++------------------
po/ur.po | 161 ++++++++++++++++++++++++-----------------
po/ur_PK.po | 161 ++++++++++++++++++++++++-----------------
po/zh_CN.po | 144 ++++++++++++++++++++-----------------
po/zh_TW.po | 144 ++++++++++++++++++++-----------------
48 files changed, 4078 insertions(+), 2996 deletions(-)
diff --git a/configure.ac.in b/configure.ac.in
index 3e5e717..083e065 100644
--- a/configure.ac.in
+++ b/configure.ac.in
@@ -11,9 +11,9 @@ dnl ***************************
m4_define([xfce4_timer_version_major], [1])
m4_define([xfce4_timer_version_minor], [7])
m4_define([xfce4_timer_version_micro], [0])
-m4_define([xfce4_timer_version_nano], [git]) dnl leave this empty to have no nano version
+m4_define([xfce4_timer_version_nano], []) dnl leave this empty to have no nano version
m4_define([xfce4_timer_version_build], [@REVISION@])
-m4_define([xfce4_timer_version_tag], []) # Leave empty only for releases, but use 'git' in most cases
+m4_define([xfce4_timer_version_tag], [git]) # Leave empty only for releases, but use 'git' in most cases
m4_define([xfce4_timer_version], [xfce4_timer_version_major().xfce4_timer_version_minor().xfce4_timer_version_micro()ifelse(xfce4_timer_version_nano(), [], [], [.xfce4_timer_version_nano()])ifelse(xfce4_timer_version_tag(), [git], [xfce4_timer_version_tag()-xfce4_timer_version_build()], [xfce4_timer_version_tag()])])
AC_CONFIG_MACRO_DIR([m4])
diff --git a/panel-plugin/xfcetimer.c b/panel-plugin/xfcetimer.c
index af6e931..73daa8b 100644
--- a/panel-plugin/xfcetimer.c
+++ b/panel-plugin/xfcetimer.c
@@ -56,7 +56,7 @@ static void
dialog_response (GtkWidget *dlg, int response, alarm_t* alrm);
static void
-start_stop_selected (GtkWidget* menuitem, gpointer data);
+start_stop_callback (GtkWidget* menuitem, gpointer data);
XFCE_PANEL_PLUGIN_REGISTER ( create_plugin_control);
void
@@ -300,9 +300,7 @@ timer_selected (GtkWidget* menuitem, gpointer data)
pd->selected = list;
- /* start the timer if the option to do so on selecting is set */
- if (pd->selecting_starts)
- start_stop_selected (menuitem, list);
+ start_stop_callback (menuitem, list);
}
@@ -376,7 +374,7 @@ start_timer (plugin_data *pd, alarm_t* alrm)
* start/stop item is selected in the popup menu
**/
static void
-start_stop_selected (GtkWidget* menuitem, gpointer list)
+start_stop_callback (GtkWidget* menuitem, gpointer list)
{
GList *listitem = (GList *) list;
plugin_data *pd;
@@ -537,7 +535,7 @@ make_menu (plugin_data *pd)
gtk_menu_shell_append (GTK_MENU_SHELL(pd->menu),menuitem);
g_signal_connect (G_OBJECT(menuitem),"activate",
- G_CALLBACK(start_stop_selected),list);
+ G_CALLBACK(start_stop_callback),list);
}else{
@@ -898,7 +896,7 @@ add_edit_clicked (GtkButton *buttonn, gpointer data)
//add alarm autostart check button
- button=gtk_check_button_new_with_label(_("Auto start"));
+ button=gtk_check_button_new_with_label(_("Auto start when plugin loads"));
gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(button),FALSE);
adata->autostart_cb=button;
gtk_box_pack_start(GTK_BOX(box),button,FALSE,FALSE,WIDGET_SPACING);
@@ -1227,8 +1225,6 @@ load_settings (plugin_data *pd)
pd->nowin_if_alarm = xfce_rc_read_bool_entry (rc,
"nowin_if_alarm",
FALSE);
- pd->selecting_starts = xfce_rc_read_bool_entry (
- rc, "selecting_starts", FALSE);
pd->use_global_command = xfce_rc_read_bool_entry (
rc, "use_global_command", FALSE);
@@ -1318,7 +1314,6 @@ save_settings (XfcePanelPlugin *plugin, plugin_data *pd)
/* save the other options */
xfce_rc_set_group (rc, "others");
xfce_rc_write_bool_entry (rc, "nowin_if_alarm", pd->nowin_if_alarm);
- xfce_rc_write_bool_entry (rc, "selecting_starts", pd->selecting_starts);
xfce_rc_write_bool_entry (rc, "use_global_command", pd->use_global_command);
xfce_rc_write_entry (rc, "global_command", pd->global_command);
xfce_rc_write_bool_entry (rc, "repeat_alarm", pd->repeat_alarm_command);
@@ -1445,18 +1440,6 @@ toggle_nowin_if_alarm (GtkToggleButton *button, gpointer data)
}
-
-/* selecting_starts toggle callback */
-static void
-toggle_selecting_starts (GtkToggleButton *button, gpointer data)
-{
- plugin_data *pd = (plugin_data *) data;
-
- pd->selecting_starts = gtk_toggle_button_get_active (button);
-}
-
-
-
/* toggle_global_command toggle callback */
static void
toggle_global_command (GtkToggleButton *button, gpointer data)
@@ -1639,13 +1622,6 @@ plugin_create_options (XfcePanelPlugin *plugin, plugin_data *pd)
G_CALLBACK (toggle_nowin_if_alarm), pd);
gtk_box_pack_start (GTK_BOX (vbox), button, FALSE, FALSE, WIDGET_SPACING);
- button = gtk_check_button_new_with_label (_("Selecting a timer starts it"));
- gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (button),
- pd->selecting_starts);
- g_signal_connect (G_OBJECT (button), "toggled",
- G_CALLBACK (toggle_selecting_starts), pd);
- gtk_box_pack_start (GTK_BOX (vbox), button, FALSE, FALSE, WIDGET_SPACING);
-
gtk_box_pack_start (GTK_BOX (vbox),
gtk_separator_new (GTK_ORIENTATION_HORIZONTAL), FALSE,
FALSE,
@@ -1803,7 +1779,6 @@ create_plugin_control (XfcePanelPlugin *plugin)
pd->buttonremove = NULL;
pd->menu = NULL;
pd->nowin_if_alarm = FALSE;
- pd->selecting_starts = FALSE;
pd->repeat_alarm_command = FALSE;
pd->use_global_command = FALSE;
pd->glob_command_entry = NULL;
diff --git a/panel-plugin/xfcetimer.h b/panel-plugin/xfcetimer.h
index 1fe19dd..7470c67 100644
--- a/panel-plugin/xfcetimer.h
+++ b/panel-plugin/xfcetimer.h
@@ -53,7 +53,6 @@ typedef struct
gint repetitions; /* Number of alarm repeats */
gint repeat_interval; /* Time interval between repeats (in secs) */
gboolean nowin_if_alarm; /* Show warning window when alarm command is set */
- gboolean selecting_starts; /* selecting a timer also starts it */
gboolean repeat_alarm_command; /* Repeat alarm command*/
gboolean use_global_command; /* Use a default alarm command if no alarm command is set */
gchar *global_command; /* The global (default) command to be run when countdown ends */
diff --git a/po/ar.po b/po/ar.po
index b4e72fd..e15e209 100644
--- a/po/ar.po
+++ b/po/ar.po
@@ -1,7 +1,7 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
-#
+#
# Translators:
# mohammad alhargan <malham1 at hotmail.com>, 2013
# mohammad alhargan <malham1 at hotmail.com>, 2012
@@ -12,197 +12,242 @@ msgid ""
msgstr ""
"Project-Id-Version: Xfce Panel Plugins\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-06-05 06:31+0200\n"
+"POT-Creation-Date: 2018-04-21 18:00+0300\n"
"PO-Revision-Date: 2017-09-19 18:06+0000\n"
"Last-Translator: Xfce Bot <transifex at xfce.org>\n"
-"Language-Team: Arabic (http://www.transifex.com/xfce/xfce-panel-plugins/language/ar/)\n"
+"Language-Team: Arabic (http://www.transifex.com/xfce/xfce-panel-plugins/"
+"language/ar/)\n"
+"Language: ar\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: ar\n"
-"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
+"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 "
+"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
-#: ../src/xfcetimer.c:146
+#: ../panel-plugin/xfcetimer.c:167
#, c-format
msgid "%dh %dm %ds left"
msgstr "%dس %dد %ds تبقت"
-#: ../src/xfcetimer.c:149
+#: ../panel-plugin/xfcetimer.c:170
#, c-format
msgid "%dm %ds left"
msgstr "%dد %dث تبقت"
-#: ../src/xfcetimer.c:151
+#: ../panel-plugin/xfcetimer.c:173
#, c-format
msgid "%ds left"
msgstr "%dث تبقت"
-#: ../src/xfcetimer.c:154
+#: ../panel-plugin/xfcetimer.c:177
msgid " (Paused)"
msgstr " (مؤقتاً)"
#. Display the name of the alarm when the countdown ends
-#: ../src/xfcetimer.c:188
+#: ../panel-plugin/xfcetimer.c:213
#, c-format
msgid ""
"Beeep! :) \n"
"Time is up for the alarm %s."
-msgstr "ببب! :) \nحان وقت التنبيه %s."
-
-#: ../src/xfcetimer.c:198
-msgid "Rerun the timer"
msgstr ""
+"ببب! :) \n"
+"حان وقت التنبيه %s."
-#: ../src/xfcetimer.c:487
-msgid "Resume timer"
-msgstr "استئناف التنبيه"
+#: ../panel-plugin/xfcetimer.c:221 ../panel-plugin/xfcetimer.c:1508
+msgid "Close"
+msgstr ""
-#: ../src/xfcetimer.c:494 ../src/xfcetimer.c:550
-msgid "Stop timer"
-msgstr "إيقاف التنبيه"
+#: ../panel-plugin/xfcetimer.c:222
+msgid "Rerun the timer"
+msgstr ""
-#: ../src/xfcetimer.c:538
+#: ../panel-plugin/xfcetimer.c:515
msgid "Pause timer"
msgstr "إيقاف التنبيه مؤقتاً"
-#: ../src/xfcetimer.c:552
-msgid "Start timer"
-msgstr "تشغيل التنبيه"
+#: ../panel-plugin/xfcetimer.c:523
+msgid "Resume timer"
+msgstr "استئناف التنبيه"
-#: ../src/xfcetimer.c:561
-msgid "Stop the alarm"
+#: ../panel-plugin/xfcetimer.c:534
+msgid "Stop timer"
msgstr "إيقاف التنبيه"
-#: ../src/xfcetimer.c:618 ../src/xfcetimer.c:689
+#: ../panel-plugin/xfcetimer.c:614 ../panel-plugin/xfcetimer.c:693
#, c-format
msgid "%dh %dm %ds"
msgstr "%dس %dد %dث"
-#: ../src/xfcetimer.c:620 ../src/xfcetimer.c:691
+#: ../panel-plugin/xfcetimer.c:616 ../panel-plugin/xfcetimer.c:695
#, c-format
msgid "%dm %ds"
msgstr "%dد %dث"
-#: ../src/xfcetimer.c:622 ../src/xfcetimer.c:693
+#: ../panel-plugin/xfcetimer.c:618 ../panel-plugin/xfcetimer.c:697
#, c-format
msgid "%ds"
msgstr "%dث"
-#: ../src/xfcetimer.c:631 ../src/xfcetimer.c:702
+#: ../panel-plugin/xfcetimer.c:626 ../panel-plugin/xfcetimer.c:706
#, c-format
msgid "At %02d:%02d"
msgstr "عند %02d:%02d"
-#: ../src/xfcetimer.c:801
+#: ../panel-plugin/xfcetimer.c:812
msgid "Name:"
msgstr "الاسم:"
-#. ********
-#: ../src/xfcetimer.c:809
+#: ../panel-plugin/xfcetimer.c:821
msgid "Enter the countdown time"
msgstr "أدخل وقت العد التنازلي"
-#: ../src/xfcetimer.c:812
+#: ../panel-plugin/xfcetimer.c:826
msgid "Enter the time of alarm (24h format)"
msgstr "أدخل وقت التنبيه (تنسيق 24 ساعة)"
-#: ../src/xfcetimer.c:824
+#: ../panel-plugin/xfcetimer.c:841
msgid "h "
msgstr "س "
-#: ../src/xfcetimer.c:829
+#: ../panel-plugin/xfcetimer.c:848
msgid "m "
msgstr "د "
-#: ../src/xfcetimer.c:834
+#: ../panel-plugin/xfcetimer.c:855
msgid "s "
msgstr "ث "
-#: ../src/xfcetimer.c:837
+#: ../panel-plugin/xfcetimer.c:859
msgid "or"
msgstr "أو"
#. **************
-#: ../src/xfcetimer.c:857
+#: ../panel-plugin/xfcetimer.c:881
msgid "Command to run:"
msgstr "أمر لتشغيله:"
-#: ../src/xfcetimer.c:887
+#. **************
+#. add recurring alarm check button
+#: ../panel-plugin/xfcetimer.c:892
+msgid "Recurring alarm"
+msgstr ""
+
+#. add alarm autostart check button
+#: ../panel-plugin/xfcetimer.c:899
+msgid "Auto start when plugin loads"
+msgstr ""
+
+#: ../panel-plugin/xfcetimer.c:909
+msgid "Cancel"
+msgstr ""
+
+#: ../panel-plugin/xfcetimer.c:914
+msgid "Accept"
+msgstr ""
+
+#: ../panel-plugin/xfcetimer.c:925
msgid "Add new alarm"
msgstr "أضف تنبيه جديد"
-#: ../src/xfcetimer.c:924
+#: ../panel-plugin/xfcetimer.c:966
msgid "Edit alarm"
msgstr "حرّر المنبّه"
-#: ../src/xfcetimer.c:1495 ../src/xfcetimer.c:1504
+#: ../panel-plugin/xfcetimer.c:1506
msgid "Xfce4 Timer Options"
msgstr "خيارات ضبط تنبيه اكسفس4"
-#: ../src/xfcetimer.c:1506
-msgid "Xfce 4 Timer Plugin"
-msgstr "ملحق تنبيه إكسفس 4"
-
-#: ../src/xfcetimer.c:1552
+#: ../panel-plugin/xfcetimer.c:1546
msgid "Timer name"
msgstr "اسم المنبه"
-#: ../src/xfcetimer.c:1557
+#: ../panel-plugin/xfcetimer.c:1551
msgid ""
"Countdown period /\n"
"Alarm time"
-msgstr "فترة العد التنازلي /\nوقت التنبيه"
+msgstr ""
+"فترة العد التنازلي /\n"
+"وقت التنبيه"
-#: ../src/xfcetimer.c:1561
+#: ../panel-plugin/xfcetimer.c:1554
msgid "Alarm command"
msgstr "أمر التنبيه"
-#: ../src/xfcetimer.c:1617
+#: ../panel-plugin/xfcetimer.c:1572
+msgid "Add"
+msgstr ""
+
+#: ../panel-plugin/xfcetimer.c:1580
+msgid "Edit"
+msgstr ""
+
+#: ../panel-plugin/xfcetimer.c:1588
+msgid "Remove"
+msgstr ""
+
+#: ../panel-plugin/xfcetimer.c:1596
+msgid "Up"
+msgstr ""
+
+#: ../panel-plugin/xfcetimer.c:1603
+msgid "Down"
+msgstr ""
+
+#: ../panel-plugin/xfcetimer.c:1619
msgid "Don't display a warning if an alarm command is set"
msgstr "لا تعرض تحذير إذا تم تعيين أمر تنبيه"
-#: ../src/xfcetimer.c:1622
-msgid "Selecting a timer starts it"
-msgstr "تحديد منبه لتشغيله"
-
#. Default alarm command config
-#: ../src/xfcetimer.c:1630
+#: ../panel-plugin/xfcetimer.c:1631
msgid "Use a default alarm command"
msgstr "استخدم أمر التنبيه الافتراضي"
-#: ../src/xfcetimer.c:1637
+#: ../panel-plugin/xfcetimer.c:1640
msgid "Default command: "
msgstr "الأمر الافتراضي: "
#. Alarm repetitions config
-#: ../src/xfcetimer.c:1649
+#: ../panel-plugin/xfcetimer.c:1656
msgid "Repeat the alarm command"
msgstr "تكرار أمر التنبيه"
-#: ../src/xfcetimer.c:1656
+#: ../panel-plugin/xfcetimer.c:1665
msgid "Number of repetitions"
msgstr "مرات التكرار"
-#: ../src/xfcetimer.c:1662
+#: ../panel-plugin/xfcetimer.c:1674
msgid " Time interval (sec.)"
msgstr " الفاصل الزمني (ثانية.)"
-#: ../src/xfcetimer.c:1723
+#: ../panel-plugin/xfcetimer.c:1736
msgid "About xfce4-timer-plugin"
msgstr "حول xfce4-منبه--الملحق"
-#: ../src/xfcetimer.c:1728
+#: ../panel-plugin/xfcetimer.c:1739
msgid "A plugin to define countdown timers or alarms at given times."
msgstr "ملحق عداد توقيت التنازلي أو تنبيه في أوقات محددة."
-#: ../src/xfcetimer.c:1730
-msgid "Copyright (c) 2005-2013\n"
+#: ../panel-plugin/xfcetimer.c:1742
+#, fuzzy
+msgid "Copyright (c) 2005-2018\n"
msgstr "حقوق الطبع والنشر (ج) عام 2005-2013\n"
-#: ../src/xfce4-timer.desktop.in.in.h:1
+#: ../panel-plugin/xfce4-timer-plugin.desktop.in.h:1
msgid "Xfce4 Timer"
msgstr "منبه إكسفس 4"
-#: ../src/xfce4-timer.desktop.in.in.h:2
+#: ../panel-plugin/xfce4-timer-plugin.desktop.in.h:2
msgid "Timer plugin for Xfce panel"
msgstr "التنبيه، ملحق لوحة إكس"
+
+#~ msgid "Selecting a timer starts it"
+#~ msgstr "تحديد منبه لتشغيله"
+
+#~ msgid "Start timer"
+#~ msgstr "تشغيل التنبيه"
+
+#~ msgid "Stop the alarm"
+#~ msgstr "إيقاف التنبيه"
+
+#~ msgid "Xfce 4 Timer Plugin"
+#~ msgstr "ملحق تنبيه إكسفس 4"
diff --git a/po/ast.po b/po/ast.po
index fd77518..c2df18a 100644
--- a/po/ast.po
+++ b/po/ast.po
@@ -1,7 +1,7 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
-#
+#
# Translators:
# enolp <enolp at softastur.org>, 2015
# Ḷḷumex03 <tornes at opmbx.org>, 2014
@@ -10,197 +10,243 @@ msgid ""
msgstr ""
"Project-Id-Version: Xfce Panel Plugins\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-06-05 06:31+0200\n"
+"POT-Creation-Date: 2018-04-21 18:00+0300\n"
"PO-Revision-Date: 2017-09-23 19:03+0000\n"
"Last-Translator: enolp <enolp at softastur.org>\n"
-"Language-Team: Asturian (http://www.transifex.com/xfce/xfce-panel-plugins/language/ast/)\n"
+"Language-Team: Asturian (http://www.transifex.com/xfce/xfce-panel-plugins/"
+"language/ast/)\n"
+"Language: ast\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: ast\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: ../src/xfcetimer.c:146
+#: ../panel-plugin/xfcetimer.c:167
#, c-format
msgid "%dh %dm %ds left"
msgstr "%dh %dm %ds restantes"
-#: ../src/xfcetimer.c:149
+#: ../panel-plugin/xfcetimer.c:170
#, c-format
msgid "%dm %ds left"
msgstr "%dm %ds restantes"
-#: ../src/xfcetimer.c:151
+#: ../panel-plugin/xfcetimer.c:173
#, c-format
msgid "%ds left"
msgstr "%ds restantes"
-#: ../src/xfcetimer.c:154
+#: ../panel-plugin/xfcetimer.c:177
msgid " (Paused)"
msgstr " (Posáu)"
#. Display the name of the alarm when the countdown ends
-#: ../src/xfcetimer.c:188
+#: ../panel-plugin/xfcetimer.c:213
#, c-format
msgid ""
"Beeep! :) \n"
"Time is up for the alarm %s."
-msgstr "¡Biiiiiiip! :) \nEscosóse'l tiempu pa la to alarma %s."
-
-#: ../src/xfcetimer.c:198
-msgid "Rerun the timer"
msgstr ""
+"¡Biiiiiiip! :) \n"
+"Escosóse'l tiempu pa la to alarma %s."
-#: ../src/xfcetimer.c:487
-msgid "Resume timer"
+#: ../panel-plugin/xfcetimer.c:221 ../panel-plugin/xfcetimer.c:1508
+msgid "Close"
msgstr ""
-#: ../src/xfcetimer.c:494 ../src/xfcetimer.c:550
-msgid "Stop timer"
-msgstr "Parar temporizador"
+#: ../panel-plugin/xfcetimer.c:222
+msgid "Rerun the timer"
+msgstr ""
-#: ../src/xfcetimer.c:538
+#: ../panel-plugin/xfcetimer.c:515
msgid "Pause timer"
msgstr "Posar temporizador"
-#: ../src/xfcetimer.c:552
-msgid "Start timer"
-msgstr "Aniciar temporizador"
+#: ../panel-plugin/xfcetimer.c:523
+msgid "Resume timer"
+msgstr ""
-#: ../src/xfcetimer.c:561
-msgid "Stop the alarm"
-msgstr "Parar l'alarma"
+#: ../panel-plugin/xfcetimer.c:534
+msgid "Stop timer"
+msgstr "Parar temporizador"
-#: ../src/xfcetimer.c:618 ../src/xfcetimer.c:689
+#: ../panel-plugin/xfcetimer.c:614 ../panel-plugin/xfcetimer.c:693
#, c-format
msgid "%dh %dm %ds"
msgstr "%dh %dm %ds"
-#: ../src/xfcetimer.c:620 ../src/xfcetimer.c:691
+#: ../panel-plugin/xfcetimer.c:616 ../panel-plugin/xfcetimer.c:695
#, c-format
msgid "%dm %ds"
msgstr "%dm %ds"
-#: ../src/xfcetimer.c:622 ../src/xfcetimer.c:693
+#: ../panel-plugin/xfcetimer.c:618 ../panel-plugin/xfcetimer.c:697
#, c-format
msgid "%ds"
msgstr "%ds"
-#: ../src/xfcetimer.c:631 ../src/xfcetimer.c:702
+#: ../panel-plugin/xfcetimer.c:626 ../panel-plugin/xfcetimer.c:706
#, c-format
msgid "At %02d:%02d"
msgstr "A les %02d:%02d"
-#: ../src/xfcetimer.c:801
+#: ../panel-plugin/xfcetimer.c:812
msgid "Name:"
msgstr "Nome:"
-#. ********
-#: ../src/xfcetimer.c:809
+#: ../panel-plugin/xfcetimer.c:821
msgid "Enter the countdown time"
msgstr "Introduz el tiempu de la cuenta atrás"
-#: ../src/xfcetimer.c:812
+#: ../panel-plugin/xfcetimer.c:826
msgid "Enter the time of alarm (24h format)"
msgstr "Introduz la hora d'alarma (formatu 24h)"
-#: ../src/xfcetimer.c:824
+#: ../panel-plugin/xfcetimer.c:841
msgid "h "
msgstr "h "
-#: ../src/xfcetimer.c:829
+#: ../panel-plugin/xfcetimer.c:848
msgid "m "
msgstr "m "
-#: ../src/xfcetimer.c:834
+#: ../panel-plugin/xfcetimer.c:855
msgid "s "
msgstr "s "
-#: ../src/xfcetimer.c:837
+#: ../panel-plugin/xfcetimer.c:859
msgid "or"
msgstr "o"
#. **************
-#: ../src/xfcetimer.c:857
+#: ../panel-plugin/xfcetimer.c:881
msgid "Command to run:"
msgstr "Comandu pa executar:"
-#: ../src/xfcetimer.c:887
+#. **************
+#. add recurring alarm check button
+#: ../panel-plugin/xfcetimer.c:892
+msgid "Recurring alarm"
+msgstr ""
+
+#. add alarm autostart check button
+#: ../panel-plugin/xfcetimer.c:899
+msgid "Auto start when plugin loads"
+msgstr ""
+
+#: ../panel-plugin/xfcetimer.c:909
+msgid "Cancel"
+msgstr ""
+
+#: ../panel-plugin/xfcetimer.c:914
+msgid "Accept"
+msgstr ""
+
+#: ../panel-plugin/xfcetimer.c:925
msgid "Add new alarm"
msgstr "Amestar alarma nueva"
-#: ../src/xfcetimer.c:924
+#: ../panel-plugin/xfcetimer.c:966
msgid "Edit alarm"
msgstr "Editar alarma"
-#: ../src/xfcetimer.c:1495 ../src/xfcetimer.c:1504
+#: ../panel-plugin/xfcetimer.c:1506
msgid "Xfce4 Timer Options"
msgstr "Opciones del temporizador de Xfce4"
-#: ../src/xfcetimer.c:1506
-msgid "Xfce 4 Timer Plugin"
-msgstr "Complementu temporizador Xfce 4"
-
-#: ../src/xfcetimer.c:1552
+#: ../panel-plugin/xfcetimer.c:1546
msgid "Timer name"
msgstr "Nome del temporizador"
-#: ../src/xfcetimer.c:1557
+#: ../panel-plugin/xfcetimer.c:1551
msgid ""
"Countdown period /\n"
"Alarm time"
-msgstr "Periodu de cuenta atrás /\nHora d'alarma"
+msgstr ""
+"Periodu de cuenta atrás /\n"
+"Hora d'alarma"
-#: ../src/xfcetimer.c:1561
+#: ../panel-plugin/xfcetimer.c:1554
msgid "Alarm command"
msgstr "Comandu d'alarma"
-#: ../src/xfcetimer.c:1617
+#: ../panel-plugin/xfcetimer.c:1572
+msgid "Add"
+msgstr ""
+
+#: ../panel-plugin/xfcetimer.c:1580
+msgid "Edit"
+msgstr ""
+
+#: ../panel-plugin/xfcetimer.c:1588
+msgid "Remove"
+msgstr ""
+
+#: ../panel-plugin/xfcetimer.c:1596
+msgid "Up"
+msgstr ""
+
+#: ../panel-plugin/xfcetimer.c:1603
+msgid "Down"
+msgstr ""
+
+#: ../panel-plugin/xfcetimer.c:1619
msgid "Don't display a warning if an alarm command is set"
msgstr "Nun amosar un avisu si s'afita un comandu d'alarma"
-#: ../src/xfcetimer.c:1622
-msgid "Selecting a timer starts it"
-msgstr "Esbillar un temporizador col qu'entamar"
-
#. Default alarm command config
-#: ../src/xfcetimer.c:1630
+#: ../panel-plugin/xfcetimer.c:1631
msgid "Use a default alarm command"
msgstr "Usar un comandu d'alarma por defeutu"
-#: ../src/xfcetimer.c:1637
+#: ../panel-plugin/xfcetimer.c:1640
msgid "Default command: "
msgstr "Comandu por defeutu:"
#. Alarm repetitions config
-#: ../src/xfcetimer.c:1649
+#: ../panel-plugin/xfcetimer.c:1656
msgid "Repeat the alarm command"
msgstr "Repetir comandu d'alarma"
-#: ../src/xfcetimer.c:1656
+#: ../panel-plugin/xfcetimer.c:1665
msgid "Number of repetitions"
msgstr "Númberu de repeticiones"
-#: ../src/xfcetimer.c:1662
+#: ../panel-plugin/xfcetimer.c:1674
msgid " Time interval (sec.)"
msgstr " Intervalu tiempu (seg.)"
-#: ../src/xfcetimer.c:1723
+#: ../panel-plugin/xfcetimer.c:1736
msgid "About xfce4-timer-plugin"
msgstr "Tocante a xfce4-timer-plugin"
-#: ../src/xfcetimer.c:1728
+#: ../panel-plugin/xfcetimer.c:1739
msgid "A plugin to define countdown timers or alarms at given times."
-msgstr "Un complementu pa definir los temporizadores de cuenta atrás o alarmes a les hores daes."
+msgstr ""
+"Un complementu pa definir los temporizadores de cuenta atrás o alarmes a les "
+"hores daes."
-#: ../src/xfcetimer.c:1730
-msgid "Copyright (c) 2005-2013\n"
+#: ../panel-plugin/xfcetimer.c:1742
+#, fuzzy
+msgid "Copyright (c) 2005-2018\n"
msgstr "Copyright (c) 2005-2013\n"
-#: ../src/xfce4-timer.desktop.in.in.h:1
+#: ../panel-plugin/xfce4-timer-plugin.desktop.in.h:1
msgid "Xfce4 Timer"
msgstr "Xfce4 Timer"
-#: ../src/xfce4-timer.desktop.in.in.h:2
+#: ../panel-plugin/xfce4-timer-plugin.desktop.in.h:2
msgid "Timer plugin for Xfce panel"
msgstr "Complementu temporizador pal panel de Xfce"
+
+#~ msgid "Selecting a timer starts it"
+#~ msgstr "Esbillar un temporizador col qu'entamar"
+
+#~ msgid "Start timer"
+#~ msgstr "Aniciar temporizador"
+
+#~ msgid "Stop the alarm"
+#~ msgstr "Parar l'alarma"
+
+#~ msgid "Xfce 4 Timer Plugin"
+#~ msgstr "Complementu temporizador Xfce 4"
diff --git a/po/bg.po b/po/bg.po
index 6f02424..da9e4de 100644
--- a/po/bg.po
+++ b/po/bg.po
@@ -1,7 +1,7 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
-#
+#
# Translators:
# Kiril Kirilov <cybercop_montana at abv.bg>, 2014,2018
# Любомир Василев, 2013,2015
@@ -9,217 +9,226 @@ msgid ""
msgstr ""
"Project-Id-Version: Xfce Panel Plugins\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-01-02 00:32+0100\n"
+"POT-Creation-Date: 2018-04-21 18:00+0300\n"
"PO-Revision-Date: 2018-01-02 07:06+0000\n"
"Last-Translator: Kiril Kirilov <cybercop_montana at abv.bg>\n"
-"Language-Team: Bulgarian (http://www.transifex.com/xfce/xfce-panel-plugins/language/bg/)\n"
+"Language-Team: Bulgarian (http://www.transifex.com/xfce/xfce-panel-plugins/"
+"language/bg/)\n"
+"Language: bg\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: bg\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: ../panel-plugin/xfcetimer.c:153
+#: ../panel-plugin/xfcetimer.c:167
#, c-format
msgid "%dh %dm %ds left"
msgstr "Остават %dч %dм %dс"
-#: ../panel-plugin/xfcetimer.c:156
+#: ../panel-plugin/xfcetimer.c:170
#, c-format
msgid "%dm %ds left"
msgstr "Остават %dм %dс"
-#: ../panel-plugin/xfcetimer.c:159
+#: ../panel-plugin/xfcetimer.c:173
#, c-format
msgid "%ds left"
msgstr "Остават %dс"
-#: ../panel-plugin/xfcetimer.c:163
+#: ../panel-plugin/xfcetimer.c:177
msgid " (Paused)"
msgstr "(На пауза)"
-#: ../panel-plugin/xfcetimer.c:198
+#. Display the name of the alarm when the countdown ends
+#: ../panel-plugin/xfcetimer.c:213
#, c-format
msgid ""
"Beeep! :) \n"
"Time is up for the alarm %s."
-msgstr "Зън! :)\nВремето изтече за алармата %s."
+msgstr ""
+"Зън! :)\n"
+"Времето изтече за алармата %s."
-#: ../panel-plugin/xfcetimer.c:210 ../panel-plugin/xfcetimer.c:1493
+#: ../panel-plugin/xfcetimer.c:221 ../panel-plugin/xfcetimer.c:1508
msgid "Close"
msgstr "Затваряне"
-#: ../panel-plugin/xfcetimer.c:211
+#: ../panel-plugin/xfcetimer.c:222
msgid "Rerun the timer"
msgstr "Рестартиране на брояча"
-#: ../panel-plugin/xfcetimer.c:526
+#: ../panel-plugin/xfcetimer.c:515
+msgid "Pause timer"
+msgstr "Спиране на брояча на пауза"
+
+#: ../panel-plugin/xfcetimer.c:523
msgid "Resume timer"
msgstr "Продължаване на брояча"
-#: ../panel-plugin/xfcetimer.c:533 ../panel-plugin/xfcetimer.c:556
+#: ../panel-plugin/xfcetimer.c:534
msgid "Stop timer"
msgstr "Спиране на брояча"
-#: ../panel-plugin/xfcetimer.c:545
-msgid "Pause timer"
-msgstr "Спиране на брояча на пауза"
-
-#: ../panel-plugin/xfcetimer.c:558
-msgid "Start timer"
-msgstr "Стартиране на брояча"
-
-#: ../panel-plugin/xfcetimer.c:568
-msgid "Stop the alarm"
-msgstr "Спиране на алармата"
-
-#: ../panel-plugin/xfcetimer.c:622 ../panel-plugin/xfcetimer.c:696
+#: ../panel-plugin/xfcetimer.c:614 ../panel-plugin/xfcetimer.c:693
#, c-format
msgid "%dh %dm %ds"
msgstr "%dч %dм %dс"
-#: ../panel-plugin/xfcetimer.c:624 ../panel-plugin/xfcetimer.c:698
+#: ../panel-plugin/xfcetimer.c:616 ../panel-plugin/xfcetimer.c:695
#, c-format
msgid "%dm %ds"
msgstr "%dм %dс"
-#: ../panel-plugin/xfcetimer.c:626 ../panel-plugin/xfcetimer.c:700
+#: ../panel-plugin/xfcetimer.c:618 ../panel-plugin/xfcetimer.c:697
#, c-format
msgid "%ds"
msgstr "%dс"
-#: ../panel-plugin/xfcetimer.c:634 ../panel-plugin/xfcetimer.c:709
+#: ../panel-plugin/xfcetimer.c:626 ../panel-plugin/xfcetimer.c:706
#, c-format
msgid "At %02d:%02d"
msgstr "В %02d:%02d"
-#: ../panel-plugin/xfcetimer.c:815
+#: ../panel-plugin/xfcetimer.c:812
msgid "Name:"
msgstr "Име:"
-#: ../panel-plugin/xfcetimer.c:824
+#: ../panel-plugin/xfcetimer.c:821
msgid "Enter the countdown time"
msgstr "Въведете времето за отброяване"
-#: ../panel-plugin/xfcetimer.c:829
+#: ../panel-plugin/xfcetimer.c:826
msgid "Enter the time of alarm (24h format)"
msgstr "Въведете часа за аларма (24-часов формат)"
-#: ../panel-plugin/xfcetimer.c:844
+#: ../panel-plugin/xfcetimer.c:841
msgid "h "
msgstr "ч"
-#: ../panel-plugin/xfcetimer.c:851
+#: ../panel-plugin/xfcetimer.c:848
msgid "m "
msgstr "м"
-#: ../panel-plugin/xfcetimer.c:858
+#: ../panel-plugin/xfcetimer.c:855
msgid "s "
msgstr "с"
-#: ../panel-plugin/xfcetimer.c:862
+#: ../panel-plugin/xfcetimer.c:859
msgid "or"
msgstr "или"
#. **************
-#: ../panel-plugin/xfcetimer.c:884
+#: ../panel-plugin/xfcetimer.c:881
msgid "Command to run:"
msgstr "Команда за изпълнение:"
-#: ../panel-plugin/xfcetimer.c:898
+#. **************
+#. add recurring alarm check button
+#: ../panel-plugin/xfcetimer.c:892
+msgid "Recurring alarm"
+msgstr ""
+
+#. add alarm autostart check button
+#: ../panel-plugin/xfcetimer.c:899
+msgid "Auto start when plugin loads"
+msgstr ""
+
+#: ../panel-plugin/xfcetimer.c:909
msgid "Cancel"
msgstr "Отказ"
-#: ../panel-plugin/xfcetimer.c:903
-msgid "Acept"
+#: ../panel-plugin/xfcetimer.c:914
+#, fuzzy
+msgid "Accept"
msgstr "Потвърждаване"
-#: ../panel-plugin/xfcetimer.c:914
+#: ../panel-plugin/xfcetimer.c:925
msgid "Add new alarm"
msgstr "Добавяне на нова аларма"
-#: ../panel-plugin/xfcetimer.c:951
+#: ../panel-plugin/xfcetimer.c:966
msgid "Edit alarm"
msgstr "Редактиране на аларма"
-#: ../panel-plugin/xfcetimer.c:1491
+#: ../panel-plugin/xfcetimer.c:1506
msgid "Xfce4 Timer Options"
msgstr "Настройки на Xfce4 Брояч"
-#: ../panel-plugin/xfcetimer.c:1531
+#: ../panel-plugin/xfcetimer.c:1546
msgid "Timer name"
msgstr "Име на брояча"
-#: ../panel-plugin/xfcetimer.c:1536
+#: ../panel-plugin/xfcetimer.c:1551
msgid ""
"Countdown period /\n"
"Alarm time"
-msgstr "Време за отброяване /\nЧас за аларма"
+msgstr ""
+"Време за отброяване /\n"
+"Час за аларма"
-#: ../panel-plugin/xfcetimer.c:1539
+#: ../panel-plugin/xfcetimer.c:1554
msgid "Alarm command"
msgstr "Команда при аларма"
-#: ../panel-plugin/xfcetimer.c:1557
+#: ../panel-plugin/xfcetimer.c:1572
msgid "Add"
msgstr "Добавяне"
-#: ../panel-plugin/xfcetimer.c:1565
+#: ../panel-plugin/xfcetimer.c:1580
msgid "Edit"
msgstr "Редактиране"
-#: ../panel-plugin/xfcetimer.c:1573
+#: ../panel-plugin/xfcetimer.c:1588
msgid "Remove"
msgstr "Премахване"
-#: ../panel-plugin/xfcetimer.c:1581
+#: ../panel-plugin/xfcetimer.c:1596
msgid "Up"
msgstr "Нагоре"
-#: ../panel-plugin/xfcetimer.c:1588
+#: ../panel-plugin/xfcetimer.c:1603
msgid "Down"
msgstr "Надолу"
-#: ../panel-plugin/xfcetimer.c:1604
+#: ../panel-plugin/xfcetimer.c:1619
msgid "Don't display a warning if an alarm command is set"
msgstr "Не показвай предупреждение, ако е зададена команда за аларма"
-#: ../panel-plugin/xfcetimer.c:1610
-msgid "Selecting a timer starts it"
-msgstr "Избирането на брояч го стартира"
-
#. Default alarm command config
-#: ../panel-plugin/xfcetimer.c:1623
+#: ../panel-plugin/xfcetimer.c:1631
msgid "Use a default alarm command"
msgstr "Използване на команда за аларма по подразбиране"
-#: ../panel-plugin/xfcetimer.c:1632
+#: ../panel-plugin/xfcetimer.c:1640
msgid "Default command: "
msgstr "Команда по подразбиране:"
#. Alarm repetitions config
-#: ../panel-plugin/xfcetimer.c:1648
+#: ../panel-plugin/xfcetimer.c:1656
msgid "Repeat the alarm command"
msgstr "Повтаряне на командата за аларма"
-#: ../panel-plugin/xfcetimer.c:1657
+#: ../panel-plugin/xfcetimer.c:1665
msgid "Number of repetitions"
msgstr "Брой повторения"
-#: ../panel-plugin/xfcetimer.c:1666
+#: ../panel-plugin/xfcetimer.c:1674
msgid " Time interval (sec.)"
msgstr "Времеви интервал (сек.)"
-#: ../panel-plugin/xfcetimer.c:1728
+#: ../panel-plugin/xfcetimer.c:1736
msgid "About xfce4-timer-plugin"
msgstr "Относно xfce4-timer-plugin"
-#: ../panel-plugin/xfcetimer.c:1731
+#: ../panel-plugin/xfcetimer.c:1739
msgid "A plugin to define countdown timers or alarms at given times."
-msgstr "Добавка за създаване на броячи за отброяване или уведомяване по зададено време."
+msgstr ""
+"Добавка за създаване на броячи за отброяване или уведомяване по зададено "
+"време."
-#: ../panel-plugin/xfcetimer.c:1734
-msgid "Copyright (c) 2005-2017\n"
+#: ../panel-plugin/xfcetimer.c:1742
+#, fuzzy
+msgid "Copyright (c) 2005-2018\n"
msgstr "Авторски права (c) 2005-2017\n"
#: ../panel-plugin/xfce4-timer-plugin.desktop.in.h:1
@@ -229,3 +238,12 @@ msgstr "Xfce4 Брояч"
#: ../panel-plugin/xfce4-timer-plugin.desktop.in.h:2
msgid "Timer plugin for Xfce panel"
msgstr "Добавка брояч за панела на Xfce"
+
+#~ msgid "Selecting a timer starts it"
+#~ msgstr "Избирането на брояч го стартира"
+
+#~ msgid "Start timer"
+#~ msgstr "Стартиране на брояча"
+
+#~ msgid "Stop the alarm"
+#~ msgstr "Спиране на алармата"
diff --git a/po/ca.po b/po/ca.po
index 798837b..5bccd79 100644
--- a/po/ca.po
+++ b/po/ca.po
@@ -1,7 +1,7 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
-#
+#
# Translators:
# Harald Servat <redcrash at gmail.com>, 2009
# Davidmp <medipas at gmail.com>, 2016
@@ -13,217 +13,226 @@ msgid ""
msgstr ""
"Project-Id-Version: Xfce Panel Plugins\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-01-02 00:32+0100\n"
+"POT-Creation-Date: 2018-04-21 18:00+0300\n"
"PO-Revision-Date: 2018-01-02 08:15+0000\n"
"Last-Translator: Robert Antoni Buj Gelonch <rbuj at fedoraproject.org>\n"
-"Language-Team: Catalan (http://www.transifex.com/xfce/xfce-panel-plugins/language/ca/)\n"
+"Language-Team: Catalan (http://www.transifex.com/xfce/xfce-panel-plugins/"
+"language/ca/)\n"
+"Language: ca\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: ca\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: ../panel-plugin/xfcetimer.c:153
+#: ../panel-plugin/xfcetimer.c:167
#, c-format
msgid "%dh %dm %ds left"
msgstr "%d h %d min %d s restant"
-#: ../panel-plugin/xfcetimer.c:156
+#: ../panel-plugin/xfcetimer.c:170
#, c-format
msgid "%dm %ds left"
msgstr "%d min %d s restant"
-#: ../panel-plugin/xfcetimer.c:159
+#: ../panel-plugin/xfcetimer.c:173
#, c-format
msgid "%ds left"
msgstr "%d s restant"
-#: ../panel-plugin/xfcetimer.c:163
+#: ../panel-plugin/xfcetimer.c:177
msgid " (Paused)"
msgstr "(en pausa)"
-#: ../panel-plugin/xfcetimer.c:198
+#. Display the name of the alarm when the countdown ends
+#: ../panel-plugin/xfcetimer.c:213
#, c-format
msgid ""
"Beeep! :) \n"
"Time is up for the alarm %s."
-msgstr "Riiiiiiiiing! :) \nJa és l'hora per a l'alarma %s."
+msgstr ""
+"Riiiiiiiiing! :) \n"
+"Ja és l'hora per a l'alarma %s."
-#: ../panel-plugin/xfcetimer.c:210 ../panel-plugin/xfcetimer.c:1493
+#: ../panel-plugin/xfcetimer.c:221 ../panel-plugin/xfcetimer.c:1508
msgid "Close"
msgstr "Tanca"
-#: ../panel-plugin/xfcetimer.c:211
+#: ../panel-plugin/xfcetimer.c:222
msgid "Rerun the timer"
msgstr "Torna a executar el temporitzador"
-#: ../panel-plugin/xfcetimer.c:526
+#: ../panel-plugin/xfcetimer.c:515
+msgid "Pause timer"
+msgstr "Fes una pausa al temporitzador"
+
+#: ../panel-plugin/xfcetimer.c:523
msgid "Resume timer"
msgstr "Reprèn el temporitzador"
-#: ../panel-plugin/xfcetimer.c:533 ../panel-plugin/xfcetimer.c:556
+#: ../panel-plugin/xfcetimer.c:534
msgid "Stop timer"
msgstr "Atura el temporitzador"
-#: ../panel-plugin/xfcetimer.c:545
-msgid "Pause timer"
-msgstr "Fes una pausa al temporitzador"
-
-#: ../panel-plugin/xfcetimer.c:558
-msgid "Start timer"
-msgstr "Inicia el temporitzador"
-
-#: ../panel-plugin/xfcetimer.c:568
-msgid "Stop the alarm"
-msgstr "Atura l'alarma"
-
-#: ../panel-plugin/xfcetimer.c:622 ../panel-plugin/xfcetimer.c:696
+#: ../panel-plugin/xfcetimer.c:614 ../panel-plugin/xfcetimer.c:693
#, c-format
msgid "%dh %dm %ds"
msgstr "%d h %d min %d s"
-#: ../panel-plugin/xfcetimer.c:624 ../panel-plugin/xfcetimer.c:698
+#: ../panel-plugin/xfcetimer.c:616 ../panel-plugin/xfcetimer.c:695
#, c-format
msgid "%dm %ds"
msgstr "%d min %d s"
-#: ../panel-plugin/xfcetimer.c:626 ../panel-plugin/xfcetimer.c:700
+#: ../panel-plugin/xfcetimer.c:618 ../panel-plugin/xfcetimer.c:697
#, c-format
msgid "%ds"
msgstr "%ds"
-#: ../panel-plugin/xfcetimer.c:634 ../panel-plugin/xfcetimer.c:709
+#: ../panel-plugin/xfcetimer.c:626 ../panel-plugin/xfcetimer.c:706
#, c-format
msgid "At %02d:%02d"
msgstr "A les %02d:%02d"
-#: ../panel-plugin/xfcetimer.c:815
+#: ../panel-plugin/xfcetimer.c:812
msgid "Name:"
msgstr "Nom:"
-#: ../panel-plugin/xfcetimer.c:824
+#: ../panel-plugin/xfcetimer.c:821
msgid "Enter the countdown time"
msgstr "Introduïu el temps del compte enrere"
-#: ../panel-plugin/xfcetimer.c:829
+#: ../panel-plugin/xfcetimer.c:826
msgid "Enter the time of alarm (24h format)"
msgstr "Introduïu l'hora de l'alarma (format de 24h)"
-#: ../panel-plugin/xfcetimer.c:844
+#: ../panel-plugin/xfcetimer.c:841
msgid "h "
msgstr "h "
-#: ../panel-plugin/xfcetimer.c:851
+#: ../panel-plugin/xfcetimer.c:848
msgid "m "
msgstr "m "
-#: ../panel-plugin/xfcetimer.c:858
+#: ../panel-plugin/xfcetimer.c:855
msgid "s "
msgstr "s "
-#: ../panel-plugin/xfcetimer.c:862
+#: ../panel-plugin/xfcetimer.c:859
msgid "or"
msgstr "o"
#. **************
-#: ../panel-plugin/xfcetimer.c:884
+#: ../panel-plugin/xfcetimer.c:881
msgid "Command to run:"
msgstr "Ordre a executar:"
-#: ../panel-plugin/xfcetimer.c:898
+#. **************
+#. add recurring alarm check button
+#: ../panel-plugin/xfcetimer.c:892
+msgid "Recurring alarm"
+msgstr ""
+
+#. add alarm autostart check button
+#: ../panel-plugin/xfcetimer.c:899
+msgid "Auto start when plugin loads"
+msgstr ""
+
+#: ../panel-plugin/xfcetimer.c:909
msgid "Cancel"
msgstr "Cancel·la"
-#: ../panel-plugin/xfcetimer.c:903
-msgid "Acept"
+#: ../panel-plugin/xfcetimer.c:914
+#, fuzzy
+msgid "Accept"
msgstr "Accepta"
-#: ../panel-plugin/xfcetimer.c:914
+#: ../panel-plugin/xfcetimer.c:925
msgid "Add new alarm"
msgstr "Afegeix una alarma nova"
-#: ../panel-plugin/xfcetimer.c:951
+#: ../panel-plugin/xfcetimer.c:966
msgid "Edit alarm"
msgstr "Edita l'alarma"
-#: ../panel-plugin/xfcetimer.c:1491
+#: ../panel-plugin/xfcetimer.c:1506
msgid "Xfce4 Timer Options"
msgstr "Opcions del temporitzador de Xfce4"
-#: ../panel-plugin/xfcetimer.c:1531
+#: ../panel-plugin/xfcetimer.c:1546
msgid "Timer name"
msgstr "Nom del temporitzador"
-#: ../panel-plugin/xfcetimer.c:1536
+#: ../panel-plugin/xfcetimer.c:1551
msgid ""
"Countdown period /\n"
"Alarm time"
-msgstr "Període de compte enrere /\nHora de l'alarma"
+msgstr ""
+"Període de compte enrere /\n"
+"Hora de l'alarma"
-#: ../panel-plugin/xfcetimer.c:1539
+#: ../panel-plugin/xfcetimer.c:1554
msgid "Alarm command"
msgstr "Ordre de l'alarma"
-#: ../panel-plugin/xfcetimer.c:1557
+#: ../panel-plugin/xfcetimer.c:1572
msgid "Add"
msgstr "Afegeix"
-#: ../panel-plugin/xfcetimer.c:1565
+#: ../panel-plugin/xfcetimer.c:1580
msgid "Edit"
msgstr "Edita"
-#: ../panel-plugin/xfcetimer.c:1573
+#: ../panel-plugin/xfcetimer.c:1588
msgid "Remove"
msgstr "Suprimeix"
-#: ../panel-plugin/xfcetimer.c:1581
+#: ../panel-plugin/xfcetimer.c:1596
msgid "Up"
msgstr "Amunt"
-#: ../panel-plugin/xfcetimer.c:1588
+#: ../panel-plugin/xfcetimer.c:1603
msgid "Down"
msgstr "Avall"
-#: ../panel-plugin/xfcetimer.c:1604
+#: ../panel-plugin/xfcetimer.c:1619
msgid "Don't display a warning if an alarm command is set"
msgstr "No mostris una advertència si s'estableix una ordre d'alarma"
-#: ../panel-plugin/xfcetimer.c:1610
-msgid "Selecting a timer starts it"
-msgstr "La selecció d'un temporitzador l'inicia"
-
#. Default alarm command config
-#: ../panel-plugin/xfcetimer.c:1623
+#: ../panel-plugin/xfcetimer.c:1631
msgid "Use a default alarm command"
msgstr "Utilitza una ordre d'alarma predeterminada"
-#: ../panel-plugin/xfcetimer.c:1632
+#: ../panel-plugin/xfcetimer.c:1640
msgid "Default command: "
msgstr "Ordre predeterminada:"
#. Alarm repetitions config
-#: ../panel-plugin/xfcetimer.c:1648
+#: ../panel-plugin/xfcetimer.c:1656
msgid "Repeat the alarm command"
msgstr "Repeteix l'ordre de l'alarma"
-#: ../panel-plugin/xfcetimer.c:1657
+#: ../panel-plugin/xfcetimer.c:1665
msgid "Number of repetitions"
msgstr "Nombre de repeticions"
-#: ../panel-plugin/xfcetimer.c:1666
+#: ../panel-plugin/xfcetimer.c:1674
msgid " Time interval (sec.)"
msgstr " Interval de temps (en segons)"
-#: ../panel-plugin/xfcetimer.c:1728
+#: ../panel-plugin/xfcetimer.c:1736
msgid "About xfce4-timer-plugin"
msgstr "Quant a xfce4-timer-plugin"
-#: ../panel-plugin/xfcetimer.c:1731
+#: ../panel-plugin/xfcetimer.c:1739
msgid "A plugin to define countdown timers or alarms at given times."
-msgstr "Un connector per definir temporitzadors de compte enrere i alarmes en moments determinats."
+msgstr ""
+"Un connector per definir temporitzadors de compte enrere i alarmes en "
+"moments determinats."
-#: ../panel-plugin/xfcetimer.c:1734
-msgid "Copyright (c) 2005-2017\n"
+#: ../panel-plugin/xfcetimer.c:1742
+#, fuzzy
+msgid "Copyright (c) 2005-2018\n"
msgstr "Drets d'autor (c) 2005-2017\n"
#: ../panel-plugin/xfce4-timer-plugin.desktop.in.h:1
@@ -233,3 +242,12 @@ msgstr "Temporitzador de Xfce4"
#: ../panel-plugin/xfce4-timer-plugin.desktop.in.h:2
msgid "Timer plugin for Xfce panel"
msgstr "Connector de temporitzador per al plafó de Xfce"
+
+#~ msgid "Selecting a timer starts it"
+#~ msgstr "La selecció d'un temporitzador l'inicia"
+
+#~ msgid "Start timer"
+#~ msgstr "Inicia el temporitzador"
+
+#~ msgid "Stop the alarm"
+#~ msgstr "Atura l'alarma"
diff --git a/po/cs.po b/po/cs.po
index 0c6cd69..3fcd7cc 100644
--- a/po/cs.po
+++ b/po/cs.po
@@ -1,7 +1,7 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
-#
+#
# Translators:
# Alois Nešpor <info at aloisnespor.info>, 2013-2014
# Michal Várady <miko.vaji at gmail.com>, 2018
@@ -9,216 +9,221 @@ msgid ""
msgstr ""
"Project-Id-Version: Xfce Panel Plugins\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-01-04 06:32+0100\n"
+"POT-Creation-Date: 2018-04-21 18:00+0300\n"
"PO-Revision-Date: 2018-01-07 09:39+0000\n"
"Last-Translator: Michal Várady <miko.vaji at gmail.com>\n"
-"Language-Team: Czech (http://www.transifex.com/xfce/xfce-panel-plugins/language/cs/)\n"
+"Language-Team: Czech (http://www.transifex.com/xfce/xfce-panel-plugins/"
+"language/cs/)\n"
+"Language: cs\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: cs\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
-#: ../panel-plugin/xfcetimer.c:153
+#: ../panel-plugin/xfcetimer.c:167
#, c-format
msgid "%dh %dm %ds left"
msgstr "%dh %dm %ds zbývá"
-#: ../panel-plugin/xfcetimer.c:156
+#: ../panel-plugin/xfcetimer.c:170
#, c-format
msgid "%dm %ds left"
msgstr "%dm %ds zbývá"
-#: ../panel-plugin/xfcetimer.c:159
+#: ../panel-plugin/xfcetimer.c:173
#, c-format
msgid "%ds left"
msgstr "%ds zbývá"
-#: ../panel-plugin/xfcetimer.c:163
+#: ../panel-plugin/xfcetimer.c:177
msgid " (Paused)"
msgstr "(Pozastaveno)"
-#: ../panel-plugin/xfcetimer.c:198
+#. Display the name of the alarm when the countdown ends
+#: ../panel-plugin/xfcetimer.c:213
#, c-format
msgid ""
"Beeep! :) \n"
"Time is up for the alarm %s."
-msgstr "Beeep! :) ⏎\nČas vypršl pro alarm %s."
+msgstr ""
+"Beeep! :) ⏎\n"
+"Čas vypršl pro alarm %s."
-#: ../panel-plugin/xfcetimer.c:210 ../panel-plugin/xfcetimer.c:1493
+#: ../panel-plugin/xfcetimer.c:221 ../panel-plugin/xfcetimer.c:1508
msgid "Close"
msgstr "Zavřít"
-#: ../panel-plugin/xfcetimer.c:211
+#: ../panel-plugin/xfcetimer.c:222
msgid "Rerun the timer"
msgstr "Obnovit odpočet času"
-#: ../panel-plugin/xfcetimer.c:526
+#: ../panel-plugin/xfcetimer.c:515
+msgid "Pause timer"
+msgstr "Pozastavit odpočet času"
+
+#: ../panel-plugin/xfcetimer.c:523
msgid "Resume timer"
msgstr "Obnovit odpočet času"
-#: ../panel-plugin/xfcetimer.c:533 ../panel-plugin/xfcetimer.c:556
+#: ../panel-plugin/xfcetimer.c:534
msgid "Stop timer"
msgstr "Zastavit odpočet času"
-#: ../panel-plugin/xfcetimer.c:545
-msgid "Pause timer"
-msgstr "Pozastavit odpočet času"
-
-#: ../panel-plugin/xfcetimer.c:558
-msgid "Start timer"
-msgstr "Spustit odpočet času"
-
-#: ../panel-plugin/xfcetimer.c:568
-msgid "Stop the alarm"
-msgstr "Zastavit výstrahu"
-
-#: ../panel-plugin/xfcetimer.c:622 ../panel-plugin/xfcetimer.c:696
+#: ../panel-plugin/xfcetimer.c:614 ../panel-plugin/xfcetimer.c:693
#, c-format
msgid "%dh %dm %ds"
msgstr "%dh %dm %ds"
-#: ../panel-plugin/xfcetimer.c:624 ../panel-plugin/xfcetimer.c:698
+#: ../panel-plugin/xfcetimer.c:616 ../panel-plugin/xfcetimer.c:695
#, c-format
msgid "%dm %ds"
msgstr "%dm %ds"
-#: ../panel-plugin/xfcetimer.c:626 ../panel-plugin/xfcetimer.c:700
+#: ../panel-plugin/xfcetimer.c:618 ../panel-plugin/xfcetimer.c:697
#, c-format
msgid "%ds"
msgstr "%ds"
-#: ../panel-plugin/xfcetimer.c:634 ../panel-plugin/xfcetimer.c:709
+#: ../panel-plugin/xfcetimer.c:626 ../panel-plugin/xfcetimer.c:706
#, c-format
msgid "At %02d:%02d"
msgstr "V %02d:%02d"
-#: ../panel-plugin/xfcetimer.c:815
+#: ../panel-plugin/xfcetimer.c:812
msgid "Name:"
msgstr "Název:"
-#: ../panel-plugin/xfcetimer.c:824
+#: ../panel-plugin/xfcetimer.c:821
msgid "Enter the countdown time"
msgstr "Zadejte čas pro odpočítávání"
-#: ../panel-plugin/xfcetimer.c:829
+#: ../panel-plugin/xfcetimer.c:826
msgid "Enter the time of alarm (24h format)"
msgstr "Zadejte čas výstrahy (ve 24hodinovém formátu)"
-#: ../panel-plugin/xfcetimer.c:844
+#: ../panel-plugin/xfcetimer.c:841
msgid "h "
msgstr "h "
-#: ../panel-plugin/xfcetimer.c:851
+#: ../panel-plugin/xfcetimer.c:848
msgid "m "
msgstr "m "
-#: ../panel-plugin/xfcetimer.c:858
+#: ../panel-plugin/xfcetimer.c:855
msgid "s "
msgstr "s "
-#: ../panel-plugin/xfcetimer.c:862
+#: ../panel-plugin/xfcetimer.c:859
msgid "or"
msgstr "nebo"
#. **************
-#: ../panel-plugin/xfcetimer.c:884
+#: ../panel-plugin/xfcetimer.c:881
msgid "Command to run:"
msgstr "Příkaz ke spuštění:"
-#: ../panel-plugin/xfcetimer.c:898
+#. **************
+#. add recurring alarm check button
+#: ../panel-plugin/xfcetimer.c:892
+msgid "Recurring alarm"
+msgstr ""
+
+#. add alarm autostart check button
+#: ../panel-plugin/xfcetimer.c:899
+msgid "Auto start when plugin loads"
+msgstr ""
+
+#: ../panel-plugin/xfcetimer.c:909
msgid "Cancel"
msgstr "Zrušit"
-#: ../panel-plugin/xfcetimer.c:903
+#: ../panel-plugin/xfcetimer.c:914
msgid "Accept"
msgstr "Přijmout"
-#: ../panel-plugin/xfcetimer.c:914
+#: ../panel-plugin/xfcetimer.c:925
msgid "Add new alarm"
msgstr "Přidat novou výstrahu"
-#: ../panel-plugin/xfcetimer.c:951
+#: ../panel-plugin/xfcetimer.c:966
msgid "Edit alarm"
msgstr "Upravit výstrahu"
-#: ../panel-plugin/xfcetimer.c:1491
+#: ../panel-plugin/xfcetimer.c:1506
msgid "Xfce4 Timer Options"
msgstr "Volby zásuvného modulu Odpočet času pro Xfce4"
-#: ../panel-plugin/xfcetimer.c:1531
+#: ../panel-plugin/xfcetimer.c:1546
msgid "Timer name"
msgstr "Název odpočtu času"
-#: ../panel-plugin/xfcetimer.c:1536
+#: ../panel-plugin/xfcetimer.c:1551
msgid ""
"Countdown period /\n"
"Alarm time"
-msgstr "Interval odpočtu /\nČas výstrahy"
+msgstr ""
+"Interval odpočtu /\n"
+"Čas výstrahy"
-#: ../panel-plugin/xfcetimer.c:1539
+#: ../panel-plugin/xfcetimer.c:1554
msgid "Alarm command"
msgstr "Příkaz výstrahy"
-#: ../panel-plugin/xfcetimer.c:1557
+#: ../panel-plugin/xfcetimer.c:1572
msgid "Add"
msgstr "Přidat"
-#: ../panel-plugin/xfcetimer.c:1565
+#: ../panel-plugin/xfcetimer.c:1580
msgid "Edit"
msgstr "Upravit"
-#: ../panel-plugin/xfcetimer.c:1573
+#: ../panel-plugin/xfcetimer.c:1588
msgid "Remove"
msgstr "Odebrat"
-#: ../panel-plugin/xfcetimer.c:1581
+#: ../panel-plugin/xfcetimer.c:1596
msgid "Up"
msgstr "Nahoru"
-#: ../panel-plugin/xfcetimer.c:1588
+#: ../panel-plugin/xfcetimer.c:1603
msgid "Down"
msgstr "Dolů"
-#: ../panel-plugin/xfcetimer.c:1604
+#: ../panel-plugin/xfcetimer.c:1619
msgid "Don't display a warning if an alarm command is set"
msgstr "Nezobrazovat varování, když je nastaven příkaz alarmu"
-#: ../panel-plugin/xfcetimer.c:1610
-msgid "Selecting a timer starts it"
-msgstr "Vybrání časovače jej spustí"
-
#. Default alarm command config
-#: ../panel-plugin/xfcetimer.c:1623
+#: ../panel-plugin/xfcetimer.c:1631
msgid "Use a default alarm command"
msgstr "Použít výchozí příkaz alarmu"
-#: ../panel-plugin/xfcetimer.c:1632
+#: ../panel-plugin/xfcetimer.c:1640
msgid "Default command: "
msgstr "Výchozí příkaz:"
#. Alarm repetitions config
-#: ../panel-plugin/xfcetimer.c:1648
+#: ../panel-plugin/xfcetimer.c:1656
msgid "Repeat the alarm command"
msgstr "Opakovat příkaz výstrahy"
-#: ../panel-plugin/xfcetimer.c:1657
+#: ../panel-plugin/xfcetimer.c:1665
msgid "Number of repetitions"
msgstr "Počet opakování"
-#: ../panel-plugin/xfcetimer.c:1666
+#: ../panel-plugin/xfcetimer.c:1674
msgid " Time interval (sec.)"
msgstr " Časový interval (s)"
-#: ../panel-plugin/xfcetimer.c:1728
+#: ../panel-plugin/xfcetimer.c:1736
msgid "About xfce4-timer-plugin"
msgstr "O pluginu"
-#: ../panel-plugin/xfcetimer.c:1731
+#: ../panel-plugin/xfcetimer.c:1739
msgid "A plugin to define countdown timers or alarms at given times."
msgstr "Plugin odpočtu časů nebo alarmů v daných časech."
-#: ../panel-plugin/xfcetimer.c:1734
+#: ../panel-plugin/xfcetimer.c:1742
msgid "Copyright (c) 2005-2018\n"
msgstr "Copyright (c) 2005-2018\n"
@@ -229,3 +234,12 @@ msgstr "Odpočet času pro Xfce4"
#: ../panel-plugin/xfce4-timer-plugin.desktop.in.h:2
msgid "Timer plugin for Xfce panel"
msgstr "Zásuvný modul pro odpočítávání času pro panel Xfce"
+
+#~ msgid "Selecting a timer starts it"
+#~ msgstr "Vybrání časovače jej spustí"
+
+#~ msgid "Start timer"
+#~ msgstr "Spustit odpočet času"
+
+#~ msgid "Stop the alarm"
+#~ msgstr "Zastavit výstrahu"
diff --git a/po/da.po b/po/da.po
index c66e703..c5804ac 100644
--- a/po/da.po
+++ b/po/da.po
@@ -1,7 +1,7 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
-#
+#
# Translators:
# Aputsiak Niels Janussen (Skjalden) <aj at isit.gl>, 2013,2015
# Chris Darnell <chris at cedeel.com>, 2013
@@ -12,216 +12,222 @@ msgid ""
msgstr ""
"Project-Id-Version: Xfce Panel Plugins\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-01-04 06:32+0100\n"
+"POT-Creation-Date: 2018-04-21 18:00+0300\n"
"PO-Revision-Date: 2018-01-08 16:09+0000\n"
"Last-Translator: scootergrisen\n"
-"Language-Team: Danish (http://www.transifex.com/xfce/xfce-panel-plugins/language/da/)\n"
+"Language-Team: Danish (http://www.transifex.com/xfce/xfce-panel-plugins/"
+"language/da/)\n"
+"Language: da\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: da\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: ../panel-plugin/xfcetimer.c:153
+#: ../panel-plugin/xfcetimer.c:167
#, c-format
msgid "%dh %dm %ds left"
msgstr "%dt %dm %ds tilbage"
-#: ../panel-plugin/xfcetimer.c:156
+#: ../panel-plugin/xfcetimer.c:170
#, c-format
msgid "%dm %ds left"
msgstr "%dm %ds tilbage"
-#: ../panel-plugin/xfcetimer.c:159
+#: ../panel-plugin/xfcetimer.c:173
#, c-format
msgid "%ds left"
msgstr "%ds tilbage"
-#: ../panel-plugin/xfcetimer.c:163
+#: ../panel-plugin/xfcetimer.c:177
msgid " (Paused)"
msgstr " (Sat på pause)"
-#: ../panel-plugin/xfcetimer.c:198
+#. Display the name of the alarm when the countdown ends
+#: ../panel-plugin/xfcetimer.c:213
#, c-format
msgid ""
"Beeep! :) \n"
"Time is up for the alarm %s."
-msgstr "Biiiip! :) \nTiden er udløbet for alarmen %s."
+msgstr ""
+"Biiiip! :) \n"
+"Tiden er udløbet for alarmen %s."
-#: ../panel-plugin/xfcetimer.c:210 ../panel-plugin/xfcetimer.c:1493
+#: ../panel-plugin/xfcetimer.c:221 ../panel-plugin/xfcetimer.c:1508
msgid "Close"
msgstr "Luk"
-#: ../panel-plugin/xfcetimer.c:211
+#: ../panel-plugin/xfcetimer.c:222
msgid "Rerun the timer"
msgstr "Kør timer igen"
-#: ../panel-plugin/xfcetimer.c:526
+#: ../panel-plugin/xfcetimer.c:515
+msgid "Pause timer"
+msgstr "Sæt timer på pause"
+
+#: ../panel-plugin/xfcetimer.c:523
msgid "Resume timer"
msgstr "Genoptag timer"
-#: ../panel-plugin/xfcetimer.c:533 ../panel-plugin/xfcetimer.c:556
+#: ../panel-plugin/xfcetimer.c:534
msgid "Stop timer"
msgstr "Stop timer"
-#: ../panel-plugin/xfcetimer.c:545
-msgid "Pause timer"
-msgstr "Sæt timer på pause"
-
-#: ../panel-plugin/xfcetimer.c:558
-msgid "Start timer"
-msgstr "Start timer"
-
-#: ../panel-plugin/xfcetimer.c:568
-msgid "Stop the alarm"
-msgstr "Stop alarmen"
-
-#: ../panel-plugin/xfcetimer.c:622 ../panel-plugin/xfcetimer.c:696
+#: ../panel-plugin/xfcetimer.c:614 ../panel-plugin/xfcetimer.c:693
#, c-format
msgid "%dh %dm %ds"
msgstr "%dt %dm %ds"
-#: ../panel-plugin/xfcetimer.c:624 ../panel-plugin/xfcetimer.c:698
+#: ../panel-plugin/xfcetimer.c:616 ../panel-plugin/xfcetimer.c:695
#, c-format
msgid "%dm %ds"
msgstr "%dm %ds"
-#: ../panel-plugin/xfcetimer.c:626 ../panel-plugin/xfcetimer.c:700
+#: ../panel-plugin/xfcetimer.c:618 ../panel-plugin/xfcetimer.c:697
#, c-format
msgid "%ds"
msgstr "%ds"
-#: ../panel-plugin/xfcetimer.c:634 ../panel-plugin/xfcetimer.c:709
+#: ../panel-plugin/xfcetimer.c:626 ../panel-plugin/xfcetimer.c:706
#, c-format
msgid "At %02d:%02d"
msgstr "Ved %02d:%02d"
-#: ../panel-plugin/xfcetimer.c:815
+#: ../panel-plugin/xfcetimer.c:812
msgid "Name:"
msgstr "Navn:"
-#: ../panel-plugin/xfcetimer.c:824
+#: ../panel-plugin/xfcetimer.c:821
msgid "Enter the countdown time"
msgstr "Indtast nedtællingstiden"
-#: ../panel-plugin/xfcetimer.c:829
+#: ../panel-plugin/xfcetimer.c:826
msgid "Enter the time of alarm (24h format)"
msgstr "Indtast tiden for alarmen (24t format)"
-#: ../panel-plugin/xfcetimer.c:844
+#: ../panel-plugin/xfcetimer.c:841
msgid "h "
msgstr "t "
-#: ../panel-plugin/xfcetimer.c:851
+#: ../panel-plugin/xfcetimer.c:848
msgid "m "
msgstr "m "
-#: ../panel-plugin/xfcetimer.c:858
+#: ../panel-plugin/xfcetimer.c:855
msgid "s "
msgstr "s "
-#: ../panel-plugin/xfcetimer.c:862
+#: ../panel-plugin/xfcetimer.c:859
msgid "or"
msgstr "eller"
#. **************
-#: ../panel-plugin/xfcetimer.c:884
+#: ../panel-plugin/xfcetimer.c:881
msgid "Command to run:"
msgstr "Kommando der skal køres:"
-#: ../panel-plugin/xfcetimer.c:898
+#. **************
+#. add recurring alarm check button
+#: ../panel-plugin/xfcetimer.c:892
+msgid "Recurring alarm"
+msgstr ""
+
+#. add alarm autostart check button
+#: ../panel-plugin/xfcetimer.c:899
+msgid "Auto start when plugin loads"
+msgstr ""
+
+#: ../panel-plugin/xfcetimer.c:909
msgid "Cancel"
msgstr "Annuller"
-#: ../panel-plugin/xfcetimer.c:903
+#: ../panel-plugin/xfcetimer.c:914
msgid "Accept"
msgstr "Accepter"
-#: ../panel-plugin/xfcetimer.c:914
+#: ../panel-plugin/xfcetimer.c:925
msgid "Add new alarm"
msgstr "Tilføj ny alarm"
-#: ../panel-plugin/xfcetimer.c:951
+#: ../panel-plugin/xfcetimer.c:966
msgid "Edit alarm"
msgstr "Rediger alarm"
-#: ../panel-plugin/xfcetimer.c:1491
+#: ../panel-plugin/xfcetimer.c:1506
msgid "Xfce4 Timer Options"
msgstr "Valgmuligheder for Xfce4 timer"
-#: ../panel-plugin/xfcetimer.c:1531
+#: ../panel-plugin/xfcetimer.c:1546
msgid "Timer name"
msgstr "Timernavn"
-#: ../panel-plugin/xfcetimer.c:1536
+#: ../panel-plugin/xfcetimer.c:1551
msgid ""
"Countdown period /\n"
"Alarm time"
-msgstr "Nedtællingsperiode/\nAlarmtid"
+msgstr ""
+"Nedtællingsperiode/\n"
+"Alarmtid"
-#: ../panel-plugin/xfcetimer.c:1539
+#: ../panel-plugin/xfcetimer.c:1554
msgid "Alarm command"
msgstr "Alarmkommando"
-#: ../panel-plugin/xfcetimer.c:1557
+#: ../panel-plugin/xfcetimer.c:1572
msgid "Add"
msgstr "Tilføj"
-#: ../panel-plugin/xfcetimer.c:1565
+#: ../panel-plugin/xfcetimer.c:1580
msgid "Edit"
msgstr "Rediger"
-#: ../panel-plugin/xfcetimer.c:1573
+#: ../panel-plugin/xfcetimer.c:1588
msgid "Remove"
msgstr "Fjern"
-#: ../panel-plugin/xfcetimer.c:1581
+#: ../panel-plugin/xfcetimer.c:1596
msgid "Up"
msgstr "Op"
-#: ../panel-plugin/xfcetimer.c:1588
+#: ../panel-plugin/xfcetimer.c:1603
msgid "Down"
msgstr "Ned"
-#: ../panel-plugin/xfcetimer.c:1604
+#: ../panel-plugin/xfcetimer.c:1619
msgid "Don't display a warning if an alarm command is set"
msgstr "Vise ikke en advarsel, hvis der er angivet en alarmkommando"
-#: ../panel-plugin/xfcetimer.c:1610
-msgid "Selecting a timer starts it"
-msgstr "Når en timer vælges, startes den"
-
#. Default alarm command config
-#: ../panel-plugin/xfcetimer.c:1623
+#: ../panel-plugin/xfcetimer.c:1631
msgid "Use a default alarm command"
msgstr "Brug en standard alarmkommando"
-#: ../panel-plugin/xfcetimer.c:1632
+#: ../panel-plugin/xfcetimer.c:1640
msgid "Default command: "
msgstr "Standardkommando: "
#. Alarm repetitions config
-#: ../panel-plugin/xfcetimer.c:1648
+#: ../panel-plugin/xfcetimer.c:1656
msgid "Repeat the alarm command"
msgstr "Gentag alarmkommandoen"
-#: ../panel-plugin/xfcetimer.c:1657
+#: ../panel-plugin/xfcetimer.c:1665
msgid "Number of repetitions"
msgstr "Antal gentagelser"
-#: ../panel-plugin/xfcetimer.c:1666
+#: ../panel-plugin/xfcetimer.c:1674
msgid " Time interval (sec.)"
msgstr " Tidsinterval (sek.)"
-#: ../panel-plugin/xfcetimer.c:1728
+#: ../panel-plugin/xfcetimer.c:1736
msgid "About xfce4-timer-plugin"
msgstr "Om xfce4-timer-plugin"
-#: ../panel-plugin/xfcetimer.c:1731
+#: ../panel-plugin/xfcetimer.c:1739
msgid "A plugin to define countdown timers or alarms at given times."
-msgstr "Et plugin til at definere nedtællinger eller alarmer på givne tidspunkter."
+msgstr ""
+"Et plugin til at definere nedtællinger eller alarmer på givne tidspunkter."
-#: ../panel-plugin/xfcetimer.c:1734
+#: ../panel-plugin/xfcetimer.c:1742
msgid "Copyright (c) 2005-2018\n"
msgstr "Ophavsret (c) 2005-2018\n"
@@ -232,3 +238,12 @@ msgstr "Xfce4 timer"
#: ../panel-plugin/xfce4-timer-plugin.desktop.in.h:2
msgid "Timer plugin for Xfce panel"
msgstr "Timer-plugin til Xfce-panelet"
+
+#~ msgid "Selecting a timer starts it"
+#~ msgstr "Når en timer vælges, startes den"
+
+#~ msgid "Start timer"
+#~ msgstr "Start timer"
+
+#~ msgid "Stop the alarm"
+#~ msgstr "Stop alarmen"
diff --git a/po/de.po b/po/de.po
index 13a9cc7..c0e8bc7 100644
--- a/po/de.po
+++ b/po/de.po
@@ -1,7 +1,7 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
-#
+#
# Translators:
# Georg Eckert <eckert.georg at gmx.de>, 2013
# Harald Judt <h.judt at gmx.at>, 2013
@@ -12,216 +12,221 @@ msgid ""
msgstr ""
"Project-Id-Version: Xfce Panel Plugins\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-01-04 06:32+0100\n"
+"POT-Creation-Date: 2018-04-21 18:00+0300\n"
"PO-Revision-Date: 2018-02-12 21:14+0000\n"
"Last-Translator: Vinzenz Vietzke <vinz at vinzv.de>\n"
-"Language-Team: German (http://www.transifex.com/xfce/xfce-panel-plugins/language/de/)\n"
+"Language-Team: German (http://www.transifex.com/xfce/xfce-panel-plugins/"
+"language/de/)\n"
+"Language: de\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: de\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: ../panel-plugin/xfcetimer.c:153
+#: ../panel-plugin/xfcetimer.c:167
#, c-format
msgid "%dh %dm %ds left"
msgstr "verbleibend: %d Stunden %d Minuten %d Sekunden"
-#: ../panel-plugin/xfcetimer.c:156
+#: ../panel-plugin/xfcetimer.c:170
#, c-format
msgid "%dm %ds left"
msgstr "verbleibend: %d Minuten %d Sekunden"
-#: ../panel-plugin/xfcetimer.c:159
+#: ../panel-plugin/xfcetimer.c:173
#, c-format
msgid "%ds left"
msgstr "verbleibend: %d Sekunden"
-#: ../panel-plugin/xfcetimer.c:163
+#: ../panel-plugin/xfcetimer.c:177
msgid " (Paused)"
msgstr "(Angehalten)"
-#: ../panel-plugin/xfcetimer.c:198
+#. Display the name of the alarm when the countdown ends
+#: ../panel-plugin/xfcetimer.c:213
#, c-format
msgid ""
"Beeep! :) \n"
"Time is up for the alarm %s."
-msgstr "Biiing! :)\nDie Zeit für %s ist abgelaufen."
+msgstr ""
+"Biiing! :)\n"
+"Die Zeit für %s ist abgelaufen."
-#: ../panel-plugin/xfcetimer.c:210 ../panel-plugin/xfcetimer.c:1493
+#: ../panel-plugin/xfcetimer.c:221 ../panel-plugin/xfcetimer.c:1508
msgid "Close"
msgstr "Schließen"
-#: ../panel-plugin/xfcetimer.c:211
+#: ../panel-plugin/xfcetimer.c:222
msgid "Rerun the timer"
msgstr "Zeitschaltuhr erneut starten"
-#: ../panel-plugin/xfcetimer.c:526
+#: ../panel-plugin/xfcetimer.c:515
+msgid "Pause timer"
+msgstr "Zeitschaltuhr anhalten"
+
+#: ../panel-plugin/xfcetimer.c:523
msgid "Resume timer"
msgstr "Zeitschaltuhr fortsetzen"
-#: ../panel-plugin/xfcetimer.c:533 ../panel-plugin/xfcetimer.c:556
+#: ../panel-plugin/xfcetimer.c:534
msgid "Stop timer"
msgstr "Zeitschaltuhr stoppen"
-#: ../panel-plugin/xfcetimer.c:545
-msgid "Pause timer"
-msgstr "Zeitschaltuhr anhalten"
-
-#: ../panel-plugin/xfcetimer.c:558
-msgid "Start timer"
-msgstr "Zeitschaltuhr starten"
-
-#: ../panel-plugin/xfcetimer.c:568
-msgid "Stop the alarm"
-msgstr "Alarm ausschalten"
-
-#: ../panel-plugin/xfcetimer.c:622 ../panel-plugin/xfcetimer.c:696
+#: ../panel-plugin/xfcetimer.c:614 ../panel-plugin/xfcetimer.c:693
#, c-format
msgid "%dh %dm %ds"
msgstr "%d Stunden %d Minuten %d Sekunden"
-#: ../panel-plugin/xfcetimer.c:624 ../panel-plugin/xfcetimer.c:698
+#: ../panel-plugin/xfcetimer.c:616 ../panel-plugin/xfcetimer.c:695
#, c-format
msgid "%dm %ds"
msgstr "%d Minuten %d Sekunden"
-#: ../panel-plugin/xfcetimer.c:626 ../panel-plugin/xfcetimer.c:700
+#: ../panel-plugin/xfcetimer.c:618 ../panel-plugin/xfcetimer.c:697
#, c-format
msgid "%ds"
msgstr "%d Sekunden"
-#: ../panel-plugin/xfcetimer.c:634 ../panel-plugin/xfcetimer.c:709
+#: ../panel-plugin/xfcetimer.c:626 ../panel-plugin/xfcetimer.c:706
#, c-format
msgid "At %02d:%02d"
msgstr "Bei %02d:%02d"
-#: ../panel-plugin/xfcetimer.c:815
+#: ../panel-plugin/xfcetimer.c:812
msgid "Name:"
msgstr "Bezeichnung:"
-#: ../panel-plugin/xfcetimer.c:824
+#: ../panel-plugin/xfcetimer.c:821
msgid "Enter the countdown time"
msgstr "Wartezeit eingeben"
-#: ../panel-plugin/xfcetimer.c:829
+#: ../panel-plugin/xfcetimer.c:826
msgid "Enter the time of alarm (24h format)"
msgstr "Alarmzeit eingeben (24h-Format)"
-#: ../panel-plugin/xfcetimer.c:844
+#: ../panel-plugin/xfcetimer.c:841
msgid "h "
msgstr "Stunden "
-#: ../panel-plugin/xfcetimer.c:851
+#: ../panel-plugin/xfcetimer.c:848
msgid "m "
msgstr "Minuten "
-#: ../panel-plugin/xfcetimer.c:858
+#: ../panel-plugin/xfcetimer.c:855
msgid "s "
msgstr "Sekunden "
-#: ../panel-plugin/xfcetimer.c:862
+#: ../panel-plugin/xfcetimer.c:859
msgid "or"
msgstr "oder"
#. **************
-#: ../panel-plugin/xfcetimer.c:884
+#: ../panel-plugin/xfcetimer.c:881
msgid "Command to run:"
msgstr "Befehl ausführen:"
-#: ../panel-plugin/xfcetimer.c:898
+#. **************
+#. add recurring alarm check button
+#: ../panel-plugin/xfcetimer.c:892
+msgid "Recurring alarm"
+msgstr ""
+
+#. add alarm autostart check button
+#: ../panel-plugin/xfcetimer.c:899
+msgid "Auto start when plugin loads"
+msgstr ""
+
+#: ../panel-plugin/xfcetimer.c:909
msgid "Cancel"
msgstr "Abbrechen"
-#: ../panel-plugin/xfcetimer.c:903
+#: ../panel-plugin/xfcetimer.c:914
msgid "Accept"
msgstr "Akzeptieren"
-#: ../panel-plugin/xfcetimer.c:914
+#: ../panel-plugin/xfcetimer.c:925
msgid "Add new alarm"
msgstr "Neuen Alarm erstellen"
-#: ../panel-plugin/xfcetimer.c:951
+#: ../panel-plugin/xfcetimer.c:966
msgid "Edit alarm"
msgstr "Alarm bearbeiten"
-#: ../panel-plugin/xfcetimer.c:1491
+#: ../panel-plugin/xfcetimer.c:1506
msgid "Xfce4 Timer Options"
msgstr "Einstellungen für die Xfce-Zeitschaltuhr"
-#: ../panel-plugin/xfcetimer.c:1531
+#: ../panel-plugin/xfcetimer.c:1546
msgid "Timer name"
msgstr "Bezeichnung"
-#: ../panel-plugin/xfcetimer.c:1536
+#: ../panel-plugin/xfcetimer.c:1551
msgid ""
"Countdown period /\n"
"Alarm time"
-msgstr "Wartezeit /\nAlarmzeit"
+msgstr ""
+"Wartezeit /\n"
+"Alarmzeit"
-#: ../panel-plugin/xfcetimer.c:1539
+#: ../panel-plugin/xfcetimer.c:1554
msgid "Alarm command"
msgstr "Alarmbefehl"
-#: ../panel-plugin/xfcetimer.c:1557
+#: ../panel-plugin/xfcetimer.c:1572
msgid "Add"
msgstr "Hinzufügen"
-#: ../panel-plugin/xfcetimer.c:1565
+#: ../panel-plugin/xfcetimer.c:1580
msgid "Edit"
msgstr "Bearbeiten"
-#: ../panel-plugin/xfcetimer.c:1573
+#: ../panel-plugin/xfcetimer.c:1588
msgid "Remove"
msgstr "Entfernen"
-#: ../panel-plugin/xfcetimer.c:1581
+#: ../panel-plugin/xfcetimer.c:1596
msgid "Up"
msgstr "Hoch"
-#: ../panel-plugin/xfcetimer.c:1588
+#: ../panel-plugin/xfcetimer.c:1603
msgid "Down"
msgstr "Runter"
-#: ../panel-plugin/xfcetimer.c:1604
+#: ../panel-plugin/xfcetimer.c:1619
msgid "Don't display a warning if an alarm command is set"
msgstr "Keine Warnung anzeigen, wenn ein Alarmbefehl eingestellt ist"
-#: ../panel-plugin/xfcetimer.c:1610
-msgid "Selecting a timer starts it"
-msgstr "Bei Auswahl einer Zeitschaltuhr startet diese"
-
#. Default alarm command config
-#: ../panel-plugin/xfcetimer.c:1623
+#: ../panel-plugin/xfcetimer.c:1631
msgid "Use a default alarm command"
msgstr "Den vorgegebenen Alarmbefehl benutzen"
-#: ../panel-plugin/xfcetimer.c:1632
+#: ../panel-plugin/xfcetimer.c:1640
msgid "Default command: "
msgstr "Standardbefehl:"
#. Alarm repetitions config
-#: ../panel-plugin/xfcetimer.c:1648
+#: ../panel-plugin/xfcetimer.c:1656
msgid "Repeat the alarm command"
msgstr "Alarmbefehl wiederholen:"
-#: ../panel-plugin/xfcetimer.c:1657
+#: ../panel-plugin/xfcetimer.c:1665
msgid "Number of repetitions"
msgstr "Anzahl der Wiederholungen"
-#: ../panel-plugin/xfcetimer.c:1666
+#: ../panel-plugin/xfcetimer.c:1674
msgid " Time interval (sec.)"
msgstr "Zeitabstand (Sek.): "
-#: ../panel-plugin/xfcetimer.c:1728
+#: ../panel-plugin/xfcetimer.c:1736
msgid "About xfce4-timer-plugin"
msgstr "Über xfce4-timer-plugin"
-#: ../panel-plugin/xfcetimer.c:1731
+#: ../panel-plugin/xfcetimer.c:1739
msgid "A plugin to define countdown timers or alarms at given times."
msgstr "Eine Erweiterung zum Konfigurieren von Zeitschaltuhren und Alarmen."
-#: ../panel-plugin/xfcetimer.c:1734
+#: ../panel-plugin/xfcetimer.c:1742
msgid "Copyright (c) 2005-2018\n"
msgstr "Copyright (c) 2005-2018\n"
@@ -232,3 +237,12 @@ msgstr "Xfce4-Zeitschaltuhr"
#: ../panel-plugin/xfce4-timer-plugin.desktop.in.h:2
msgid "Timer plugin for Xfce panel"
msgstr "Zeitschaltuhrerweiterung für die Xfce-Leiste"
+
+#~ msgid "Selecting a timer starts it"
+#~ msgstr "Bei Auswahl einer Zeitschaltuhr startet diese"
+
+#~ msgid "Start timer"
+#~ msgstr "Zeitschaltuhr starten"
+
+#~ msgid "Stop the alarm"
+#~ msgstr "Alarm ausschalten"
diff --git a/po/el.po b/po/el.po
index c04d6bd..16f0a98 100644
--- a/po/el.po
+++ b/po/el.po
@@ -1,7 +1,7 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
-#
+#
# Translators:
# Apóstolos Papaðimitríu <apostolos.papadimitriu at gmail.com>, 2016
# Efstathios Iosifidis <iefstathios at gmail.com>, 2015
@@ -13,216 +13,223 @@ msgid ""
msgstr ""
"Project-Id-Version: Xfce Panel Plugins\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-01-04 06:32+0100\n"
+"POT-Creation-Date: 2018-04-21 18:00+0300\n"
"PO-Revision-Date: 2018-02-24 15:38+0000\n"
"Last-Translator: Πέτρος Σαμαράς <psamaras1 at gmail.com>\n"
-"Language-Team: Greek (http://www.transifex.com/xfce/xfce-panel-plugins/language/el/)\n"
+"Language-Team: Greek (http://www.transifex.com/xfce/xfce-panel-plugins/"
+"language/el/)\n"
+"Language: el\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: el\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: ../panel-plugin/xfcetimer.c:153
+#: ../panel-plugin/xfcetimer.c:167
#, c-format
msgid "%dh %dm %ds left"
msgstr "%dω %dλ %dδ απέμειναν"
-#: ../panel-plugin/xfcetimer.c:156
+#: ../panel-plugin/xfcetimer.c:170
#, c-format
msgid "%dm %ds left"
msgstr "%dλ %dδ απέμειναν"
-#: ../panel-plugin/xfcetimer.c:159
+#: ../panel-plugin/xfcetimer.c:173
#, c-format
msgid "%ds left"
msgstr "%dδ απέμειναν"
-#: ../panel-plugin/xfcetimer.c:163
+#: ../panel-plugin/xfcetimer.c:177
msgid " (Paused)"
msgstr "(Σε παύση)"
-#: ../panel-plugin/xfcetimer.c:198
+#. Display the name of the alarm when the countdown ends
+#: ../panel-plugin/xfcetimer.c:213
#, c-format
msgid ""
"Beeep! :) \n"
"Time is up for the alarm %s."
-msgstr "Μπιιπ :) \nΤέλος χρόνου για την ειδοποίηση %s."
+msgstr ""
+"Μπιιπ :) \n"
+"Τέλος χρόνου για την ειδοποίηση %s."
-#: ../panel-plugin/xfcetimer.c:210 ../panel-plugin/xfcetimer.c:1493
+#: ../panel-plugin/xfcetimer.c:221 ../panel-plugin/xfcetimer.c:1508
msgid "Close"
msgstr "Κλείσιμο"
-#: ../panel-plugin/xfcetimer.c:211
+#: ../panel-plugin/xfcetimer.c:222
msgid "Rerun the timer"
msgstr "Επανέναρξη του χρονομέτρου"
-#: ../panel-plugin/xfcetimer.c:526
+#: ../panel-plugin/xfcetimer.c:515
+msgid "Pause timer"
+msgstr "Παύση χρονομέτρου"
+
+#: ../panel-plugin/xfcetimer.c:523
msgid "Resume timer"
msgstr "Συνέχιση χρονομέτρου"
-#: ../panel-plugin/xfcetimer.c:533 ../panel-plugin/xfcetimer.c:556
+#: ../panel-plugin/xfcetimer.c:534
msgid "Stop timer"
msgstr "Τερματισμός χρονομέτρου "
-#: ../panel-plugin/xfcetimer.c:545
-msgid "Pause timer"
-msgstr "Παύση χρονομέτρου"
-
-#: ../panel-plugin/xfcetimer.c:558
-msgid "Start timer"
-msgstr "Έναρξη χρονομέτρου "
-
-#: ../panel-plugin/xfcetimer.c:568
-msgid "Stop the alarm"
-msgstr "Τερματισμός ειδοποίησης "
-
-#: ../panel-plugin/xfcetimer.c:622 ../panel-plugin/xfcetimer.c:696
+#: ../panel-plugin/xfcetimer.c:614 ../panel-plugin/xfcetimer.c:693
#, c-format
msgid "%dh %dm %ds"
msgstr "%dω %dλ %dδ"
-#: ../panel-plugin/xfcetimer.c:624 ../panel-plugin/xfcetimer.c:698
+#: ../panel-plugin/xfcetimer.c:616 ../panel-plugin/xfcetimer.c:695
#, c-format
msgid "%dm %ds"
msgstr "%dλ %dδ"
-#: ../panel-plugin/xfcetimer.c:626 ../panel-plugin/xfcetimer.c:700
+#: ../panel-plugin/xfcetimer.c:618 ../panel-plugin/xfcetimer.c:697
#, c-format
msgid "%ds"
msgstr "%dδ"
-#: ../panel-plugin/xfcetimer.c:634 ../panel-plugin/xfcetimer.c:709
+#: ../panel-plugin/xfcetimer.c:626 ../panel-plugin/xfcetimer.c:706
#, c-format
msgid "At %02d:%02d"
msgstr "Σε %02d:%02d"
-#: ../panel-plugin/xfcetimer.c:815
+#: ../panel-plugin/xfcetimer.c:812
msgid "Name:"
msgstr "Όνομα:"
-#: ../panel-plugin/xfcetimer.c:824
+#: ../panel-plugin/xfcetimer.c:821
msgid "Enter the countdown time"
msgstr "Εισαγωγή χρόνου αντίστροφης μέτρησης"
-#: ../panel-plugin/xfcetimer.c:829
+#: ../panel-plugin/xfcetimer.c:826
msgid "Enter the time of alarm (24h format)"
msgstr "Εισαγωγή ώρας για την ειδοποίηση (σε 24ωρη μορφή)"
-#: ../panel-plugin/xfcetimer.c:844
+#: ../panel-plugin/xfcetimer.c:841
msgid "h "
msgstr "ώρα"
-#: ../panel-plugin/xfcetimer.c:851
+#: ../panel-plugin/xfcetimer.c:848
msgid "m "
msgstr "λεπτά"
-#: ../panel-plugin/xfcetimer.c:858
+#: ../panel-plugin/xfcetimer.c:855
msgid "s "
msgstr "δευτ"
-#: ../panel-plugin/xfcetimer.c:862
+#: ../panel-plugin/xfcetimer.c:859
msgid "or"
msgstr "ή"
#. **************
-#: ../panel-plugin/xfcetimer.c:884
+#: ../panel-plugin/xfcetimer.c:881
msgid "Command to run:"
msgstr "Εντολές προς εκτέλεση:"
-#: ../panel-plugin/xfcetimer.c:898
+#. **************
+#. add recurring alarm check button
+#: ../panel-plugin/xfcetimer.c:892
+msgid "Recurring alarm"
+msgstr ""
+
+#. add alarm autostart check button
+#: ../panel-plugin/xfcetimer.c:899
+msgid "Auto start when plugin loads"
+msgstr ""
+
+#: ../panel-plugin/xfcetimer.c:909
msgid "Cancel"
msgstr "Ακύρωση"
-#: ../panel-plugin/xfcetimer.c:903
+#: ../panel-plugin/xfcetimer.c:914
msgid "Accept"
msgstr "Αποδοχή"
-#: ../panel-plugin/xfcetimer.c:914
+#: ../panel-plugin/xfcetimer.c:925
msgid "Add new alarm"
msgstr "Προσθήκη νέας ειδοποίησης "
-#: ../panel-plugin/xfcetimer.c:951
+#: ../panel-plugin/xfcetimer.c:966
msgid "Edit alarm"
msgstr "Επεξεργασία ειδοποίησης "
-#: ../panel-plugin/xfcetimer.c:1491
+#: ../panel-plugin/xfcetimer.c:1506
msgid "Xfce4 Timer Options"
msgstr "Επιλογές χρονομέτρου xfce4"
-#: ../panel-plugin/xfcetimer.c:1531
+#: ../panel-plugin/xfcetimer.c:1546
msgid "Timer name"
msgstr "Όνομα χρονομέτρου"
-#: ../panel-plugin/xfcetimer.c:1536
+#: ../panel-plugin/xfcetimer.c:1551
msgid ""
"Countdown period /\n"
"Alarm time"
-msgstr "Περίοδος αντίστροφης μέτρησης /\nΧρόνος ειδοποίησης"
+msgstr ""
+"Περίοδος αντίστροφης μέτρησης /\n"
+"Χρόνος ειδοποίησης"
-#: ../panel-plugin/xfcetimer.c:1539
+#: ../panel-plugin/xfcetimer.c:1554
msgid "Alarm command"
msgstr "Εντολή ειδοποίησης "
-#: ../panel-plugin/xfcetimer.c:1557
+#: ../panel-plugin/xfcetimer.c:1572
msgid "Add"
msgstr "Νέο"
-#: ../panel-plugin/xfcetimer.c:1565
+#: ../panel-plugin/xfcetimer.c:1580
msgid "Edit"
msgstr "Αλλαγή"
-#: ../panel-plugin/xfcetimer.c:1573
+#: ../panel-plugin/xfcetimer.c:1588
msgid "Remove"
msgstr "Αφαίρεση"
-#: ../panel-plugin/xfcetimer.c:1581
+#: ../panel-plugin/xfcetimer.c:1596
msgid "Up"
msgstr "Πάνω"
-#: ../panel-plugin/xfcetimer.c:1588
+#: ../panel-plugin/xfcetimer.c:1603
msgid "Down"
msgstr "Κάτω"
-#: ../panel-plugin/xfcetimer.c:1604
+#: ../panel-plugin/xfcetimer.c:1619
msgid "Don't display a warning if an alarm command is set"
msgstr "Να μην εμφανίζεται προειδοποίηση αν έχει οριστεί εντολή ειδοποίησης"
-#: ../panel-plugin/xfcetimer.c:1610
-msgid "Selecting a timer starts it"
-msgstr "Η επιλογή ενός χρονομέτρου το εκκινεί"
-
#. Default alarm command config
-#: ../panel-plugin/xfcetimer.c:1623
+#: ../panel-plugin/xfcetimer.c:1631
msgid "Use a default alarm command"
msgstr "Χρήση μιας προεπιλεγμένης εντολής ειδοποίησης"
-#: ../panel-plugin/xfcetimer.c:1632
+#: ../panel-plugin/xfcetimer.c:1640
msgid "Default command: "
msgstr "Προεπιλεγμένη εντολή:"
#. Alarm repetitions config
-#: ../panel-plugin/xfcetimer.c:1648
+#: ../panel-plugin/xfcetimer.c:1656
msgid "Repeat the alarm command"
msgstr "Επανάληψη εντολής ειδοποίησης "
-#: ../panel-plugin/xfcetimer.c:1657
+#: ../panel-plugin/xfcetimer.c:1665
msgid "Number of repetitions"
msgstr "Αριθμός επαναλήψεων"
-#: ../panel-plugin/xfcetimer.c:1666
+#: ../panel-plugin/xfcetimer.c:1674
msgid " Time interval (sec.)"
msgstr "Διαστημα ανανέωσης (δευτ.)"
-#: ../panel-plugin/xfcetimer.c:1728
+#: ../panel-plugin/xfcetimer.c:1736
msgid "About xfce4-timer-plugin"
msgstr "Περί xfce4-timer-plugin"
-#: ../panel-plugin/xfcetimer.c:1731
+#: ../panel-plugin/xfcetimer.c:1739
msgid "A plugin to define countdown timers or alarms at given times."
-msgstr "Ένα πρόσθετο για τη δημιουργία χρονομέτρων αντίστροφης μέτρησης και ειδοποιήσεων."
+msgstr ""
+"Ένα πρόσθετο για τη δημιουργία χρονομέτρων αντίστροφης μέτρησης και "
+"ειδοποιήσεων."
-#: ../panel-plugin/xfcetimer.c:1734
+#: ../panel-plugin/xfcetimer.c:1742
msgid "Copyright (c) 2005-2018\n"
msgstr "Copyright (c) 2005-2018\n"
@@ -233,3 +240,12 @@ msgstr "Χρονόμετρο xfce4"
#: ../panel-plugin/xfce4-timer-plugin.desktop.in.h:2
msgid "Timer plugin for Xfce panel"
msgstr "Άρθρωμα χρονομέτρου για το ταμπλό του Xfce"
+
+#~ msgid "Selecting a timer starts it"
+#~ msgstr "Η επιλογή ενός χρονομέτρου το εκκινεί"
+
+#~ msgid "Start timer"
+#~ msgstr "Έναρξη χρονομέτρου "
+
+#~ msgid "Stop the alarm"
+#~ msgstr "Τερματισμός ειδοποίησης "
diff --git a/po/en_AU.po b/po/en_AU.po
index 7e951ea..bb2b1b0 100644
--- a/po/en_AU.po
+++ b/po/en_AU.po
@@ -1,7 +1,7 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
-#
+#
# Translators:
# John Humphrys <john.humphrys at protonmail.com>, 2018
# Michael Findlay <translate at cobber-linux.org>, 2013-2014
@@ -9,216 +9,221 @@ msgid ""
msgstr ""
"Project-Id-Version: Xfce Panel Plugins\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-01-04 06:32+0100\n"
+"POT-Creation-Date: 2018-04-21 18:00+0300\n"
"PO-Revision-Date: 2018-04-06 00:25+0000\n"
"Last-Translator: John Humphrys <john.humphrys at protonmail.com>\n"
-"Language-Team: English (Australia) (http://www.transifex.com/xfce/xfce-panel-plugins/language/en_AU/)\n"
+"Language-Team: English (Australia) (http://www.transifex.com/xfce/xfce-panel-"
+"plugins/language/en_AU/)\n"
+"Language: en_AU\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: en_AU\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: ../panel-plugin/xfcetimer.c:153
+#: ../panel-plugin/xfcetimer.c:167
#, c-format
msgid "%dh %dm %ds left"
msgstr "%dh %dm %ds left"
-#: ../panel-plugin/xfcetimer.c:156
+#: ../panel-plugin/xfcetimer.c:170
#, c-format
msgid "%dm %ds left"
msgstr "%dm %ds left"
-#: ../panel-plugin/xfcetimer.c:159
+#: ../panel-plugin/xfcetimer.c:173
#, c-format
msgid "%ds left"
msgstr "%ds left"
-#: ../panel-plugin/xfcetimer.c:163
+#: ../panel-plugin/xfcetimer.c:177
msgid " (Paused)"
msgstr " (Paused)"
-#: ../panel-plugin/xfcetimer.c:198
+#. Display the name of the alarm when the countdown ends
+#: ../panel-plugin/xfcetimer.c:213
#, c-format
msgid ""
"Beeep! :) \n"
"Time is up for the alarm %s."
-msgstr "Beeep! :) \nTime is up for the alarm %s."
+msgstr ""
+"Beeep! :) \n"
+"Time is up for the alarm %s."
-#: ../panel-plugin/xfcetimer.c:210 ../panel-plugin/xfcetimer.c:1493
+#: ../panel-plugin/xfcetimer.c:221 ../panel-plugin/xfcetimer.c:1508
msgid "Close"
msgstr "Close"
-#: ../panel-plugin/xfcetimer.c:211
+#: ../panel-plugin/xfcetimer.c:222
msgid "Rerun the timer"
msgstr "Rerun the timer"
-#: ../panel-plugin/xfcetimer.c:526
+#: ../panel-plugin/xfcetimer.c:515
+msgid "Pause timer"
+msgstr "Pause timer"
+
+#: ../panel-plugin/xfcetimer.c:523
msgid "Resume timer"
msgstr "Resume timer"
-#: ../panel-plugin/xfcetimer.c:533 ../panel-plugin/xfcetimer.c:556
+#: ../panel-plugin/xfcetimer.c:534
msgid "Stop timer"
msgstr "Stop timer"
-#: ../panel-plugin/xfcetimer.c:545
-msgid "Pause timer"
-msgstr "Pause timer"
-
-#: ../panel-plugin/xfcetimer.c:558
-msgid "Start timer"
-msgstr "Start timer"
-
-#: ../panel-plugin/xfcetimer.c:568
-msgid "Stop the alarm"
-msgstr "Stop the alarm"
-
-#: ../panel-plugin/xfcetimer.c:622 ../panel-plugin/xfcetimer.c:696
+#: ../panel-plugin/xfcetimer.c:614 ../panel-plugin/xfcetimer.c:693
#, c-format
msgid "%dh %dm %ds"
msgstr "%dh %dm %ds"
-#: ../panel-plugin/xfcetimer.c:624 ../panel-plugin/xfcetimer.c:698
+#: ../panel-plugin/xfcetimer.c:616 ../panel-plugin/xfcetimer.c:695
#, c-format
msgid "%dm %ds"
msgstr "%dm %ds"
-#: ../panel-plugin/xfcetimer.c:626 ../panel-plugin/xfcetimer.c:700
+#: ../panel-plugin/xfcetimer.c:618 ../panel-plugin/xfcetimer.c:697
#, c-format
msgid "%ds"
msgstr "%ds"
-#: ../panel-plugin/xfcetimer.c:634 ../panel-plugin/xfcetimer.c:709
+#: ../panel-plugin/xfcetimer.c:626 ../panel-plugin/xfcetimer.c:706
#, c-format
msgid "At %02d:%02d"
msgstr "At %02d:%02d"
-#: ../panel-plugin/xfcetimer.c:815
+#: ../panel-plugin/xfcetimer.c:812
msgid "Name:"
msgstr "Name:"
-#: ../panel-plugin/xfcetimer.c:824
+#: ../panel-plugin/xfcetimer.c:821
msgid "Enter the countdown time"
msgstr "Enter the countdown time"
-#: ../panel-plugin/xfcetimer.c:829
+#: ../panel-plugin/xfcetimer.c:826
msgid "Enter the time of alarm (24h format)"
msgstr "Enter the time of alarm (24h format)"
-#: ../panel-plugin/xfcetimer.c:844
+#: ../panel-plugin/xfcetimer.c:841
msgid "h "
msgstr "h "
-#: ../panel-plugin/xfcetimer.c:851
+#: ../panel-plugin/xfcetimer.c:848
msgid "m "
msgstr "m "
-#: ../panel-plugin/xfcetimer.c:858
+#: ../panel-plugin/xfcetimer.c:855
msgid "s "
msgstr "s "
-#: ../panel-plugin/xfcetimer.c:862
+#: ../panel-plugin/xfcetimer.c:859
msgid "or"
msgstr "or"
#. **************
-#: ../panel-plugin/xfcetimer.c:884
+#: ../panel-plugin/xfcetimer.c:881
msgid "Command to run:"
msgstr "Command to run:"
-#: ../panel-plugin/xfcetimer.c:898
+#. **************
+#. add recurring alarm check button
+#: ../panel-plugin/xfcetimer.c:892
+msgid "Recurring alarm"
+msgstr ""
+
+#. add alarm autostart check button
+#: ../panel-plugin/xfcetimer.c:899
+msgid "Auto start when plugin loads"
+msgstr ""
+
+#: ../panel-plugin/xfcetimer.c:909
msgid "Cancel"
msgstr "Cancel"
-#: ../panel-plugin/xfcetimer.c:903
+#: ../panel-plugin/xfcetimer.c:914
msgid "Accept"
msgstr "Accept"
-#: ../panel-plugin/xfcetimer.c:914
+#: ../panel-plugin/xfcetimer.c:925
msgid "Add new alarm"
msgstr "Add new alarm"
-#: ../panel-plugin/xfcetimer.c:951
+#: ../panel-plugin/xfcetimer.c:966
msgid "Edit alarm"
msgstr "Edit alarm"
-#: ../panel-plugin/xfcetimer.c:1491
+#: ../panel-plugin/xfcetimer.c:1506
msgid "Xfce4 Timer Options"
msgstr "Xfce4 Timer Options"
-#: ../panel-plugin/xfcetimer.c:1531
+#: ../panel-plugin/xfcetimer.c:1546
msgid "Timer name"
msgstr "Timer name"
-#: ../panel-plugin/xfcetimer.c:1536
+#: ../panel-plugin/xfcetimer.c:1551
msgid ""
"Countdown period /\n"
"Alarm time"
-msgstr "Countdown period /\nAlarm time"
+msgstr ""
+"Countdown period /\n"
+"Alarm time"
-#: ../panel-plugin/xfcetimer.c:1539
+#: ../panel-plugin/xfcetimer.c:1554
msgid "Alarm command"
msgstr "Alarm command"
-#: ../panel-plugin/xfcetimer.c:1557
+#: ../panel-plugin/xfcetimer.c:1572
msgid "Add"
msgstr "Add"
-#: ../panel-plugin/xfcetimer.c:1565
+#: ../panel-plugin/xfcetimer.c:1580
msgid "Edit"
msgstr "Edit"
-#: ../panel-plugin/xfcetimer.c:1573
+#: ../panel-plugin/xfcetimer.c:1588
msgid "Remove"
msgstr "Remove"
-#: ../panel-plugin/xfcetimer.c:1581
+#: ../panel-plugin/xfcetimer.c:1596
msgid "Up"
msgstr "Up"
-#: ../panel-plugin/xfcetimer.c:1588
+#: ../panel-plugin/xfcetimer.c:1603
msgid "Down"
msgstr "Down"
-#: ../panel-plugin/xfcetimer.c:1604
+#: ../panel-plugin/xfcetimer.c:1619
msgid "Don't display a warning if an alarm command is set"
msgstr "Don't display a warning if an alarm command is set"
-#: ../panel-plugin/xfcetimer.c:1610
-msgid "Selecting a timer starts it"
-msgstr "Selecting a timer starts it"
-
#. Default alarm command config
-#: ../panel-plugin/xfcetimer.c:1623
+#: ../panel-plugin/xfcetimer.c:1631
msgid "Use a default alarm command"
msgstr "Use a default alarm command"
-#: ../panel-plugin/xfcetimer.c:1632
+#: ../panel-plugin/xfcetimer.c:1640
msgid "Default command: "
msgstr "Default command: "
#. Alarm repetitions config
-#: ../panel-plugin/xfcetimer.c:1648
+#: ../panel-plugin/xfcetimer.c:1656
msgid "Repeat the alarm command"
msgstr "Repeat the alarm command"
-#: ../panel-plugin/xfcetimer.c:1657
+#: ../panel-plugin/xfcetimer.c:1665
msgid "Number of repetitions"
msgstr "Number of repetitions"
-#: ../panel-plugin/xfcetimer.c:1666
+#: ../panel-plugin/xfcetimer.c:1674
msgid " Time interval (sec.)"
msgstr " Time interval (sec.)"
-#: ../panel-plugin/xfcetimer.c:1728
+#: ../panel-plugin/xfcetimer.c:1736
msgid "About xfce4-timer-plugin"
msgstr "About xfce4-timer-plugin"
-#: ../panel-plugin/xfcetimer.c:1731
+#: ../panel-plugin/xfcetimer.c:1739
msgid "A plugin to define countdown timers or alarms at given times."
msgstr "A plugin to define countdown timers or alarms at given times."
-#: ../panel-plugin/xfcetimer.c:1734
+#: ../panel-plugin/xfcetimer.c:1742
msgid "Copyright (c) 2005-2018\n"
msgstr "Copyright (c) 2005-2018\n"
@@ -229,3 +234,12 @@ msgstr "Xfce4 Timer"
#: ../panel-plugin/xfce4-timer-plugin.desktop.in.h:2
msgid "Timer plugin for Xfce panel"
msgstr "Timer plugin for Xfce panel"
+
+#~ msgid "Selecting a timer starts it"
+#~ msgstr "Selecting a timer starts it"
+
+#~ msgid "Start timer"
+#~ msgstr "Start timer"
+
+#~ msgid "Stop the alarm"
+#~ msgstr "Stop the alarm"
diff --git a/po/en_GB.po b/po/en_GB.po
index 119f195..f4b0ac6 100644
--- a/po/en_GB.po
+++ b/po/en_GB.po
@@ -1,7 +1,7 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
-#
+#
# Translators:
# Jackson Doak <noskcaj at ubuntu.com>, 2013
# Jeff Bailes <thepizzaking at gmail.com>, 2007
@@ -9,203 +9,244 @@ msgid ""
msgstr ""
"Project-Id-Version: Xfce Panel Plugins\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-06-05 06:31+0200\n"
+"POT-Creation-Date: 2018-04-21 18:00+0300\n"
"PO-Revision-Date: 2017-09-19 18:06+0000\n"
"Last-Translator: Xfce Bot <transifex at xfce.org>\n"
-"Language-Team: English (United Kingdom) (http://www.transifex.com/xfce/xfce-panel-plugins/language/en_GB/)\n"
+"Language-Team: English (United Kingdom) (http://www.transifex.com/xfce/xfce-"
+"panel-plugins/language/en_GB/)\n"
+"Language: en_GB\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: en_GB\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: ../src/xfcetimer.c:146
+#: ../panel-plugin/xfcetimer.c:167
#, c-format
msgid "%dh %dm %ds left"
msgstr "%dh %dm %ds left"
-#: ../src/xfcetimer.c:149
+#: ../panel-plugin/xfcetimer.c:170
#, c-format
msgid "%dm %ds left"
msgstr "%dm %ds left"
-#: ../src/xfcetimer.c:151
+#: ../panel-plugin/xfcetimer.c:173
#, c-format
msgid "%ds left"
msgstr "%ds left"
-#: ../src/xfcetimer.c:154
+#: ../panel-plugin/xfcetimer.c:177
msgid " (Paused)"
msgstr " (Paused)"
#. Display the name of the alarm when the countdown ends
-#: ../src/xfcetimer.c:188
+#: ../panel-plugin/xfcetimer.c:213
#, c-format
msgid ""
"Beeep! :) \n"
"Time is up for the alarm %s."
-msgstr "Beeep! :) \nTime is up for the alarm %s."
+msgstr ""
+"Beeep! :) \n"
+"Time is up for the alarm %s."
+
+#: ../panel-plugin/xfcetimer.c:221 ../panel-plugin/xfcetimer.c:1508
+msgid "Close"
+msgstr ""
-#: ../src/xfcetimer.c:198
+#: ../panel-plugin/xfcetimer.c:222
msgid "Rerun the timer"
msgstr ""
-#: ../src/xfcetimer.c:487
+#: ../panel-plugin/xfcetimer.c:515
+msgid "Pause timer"
+msgstr "Pause timer"
+
+#: ../panel-plugin/xfcetimer.c:523
msgid "Resume timer"
msgstr "Resume timer"
-#: ../src/xfcetimer.c:494 ../src/xfcetimer.c:550
+#: ../panel-plugin/xfcetimer.c:534
msgid "Stop timer"
msgstr "Stop timer"
-#: ../src/xfcetimer.c:538
-msgid "Pause timer"
-msgstr "Pause timer"
-
-#: ../src/xfcetimer.c:552
-msgid "Start timer"
-msgstr "Start timer"
-
-#: ../src/xfcetimer.c:561
-msgid "Stop the alarm"
-msgstr "Stop the alarm"
-
-#: ../src/xfcetimer.c:618 ../src/xfcetimer.c:689
+#: ../panel-plugin/xfcetimer.c:614 ../panel-plugin/xfcetimer.c:693
#, c-format
msgid "%dh %dm %ds"
msgstr "%dh %dm %ds"
-#: ../src/xfcetimer.c:620 ../src/xfcetimer.c:691
+#: ../panel-plugin/xfcetimer.c:616 ../panel-plugin/xfcetimer.c:695
#, c-format
msgid "%dm %ds"
msgstr "%dm %ds"
-#: ../src/xfcetimer.c:622 ../src/xfcetimer.c:693
+#: ../panel-plugin/xfcetimer.c:618 ../panel-plugin/xfcetimer.c:697
#, c-format
msgid "%ds"
msgstr "%ds"
-#: ../src/xfcetimer.c:631 ../src/xfcetimer.c:702
+#: ../panel-plugin/xfcetimer.c:626 ../panel-plugin/xfcetimer.c:706
#, c-format
msgid "At %02d:%02d"
msgstr "At %02d:%02d"
-#: ../src/xfcetimer.c:801
+#: ../panel-plugin/xfcetimer.c:812
msgid "Name:"
msgstr "Name:"
-#. ********
-#: ../src/xfcetimer.c:809
+#: ../panel-plugin/xfcetimer.c:821
msgid "Enter the countdown time"
msgstr "Enter the countdown time"
-#: ../src/xfcetimer.c:812
+#: ../panel-plugin/xfcetimer.c:826
msgid "Enter the time of alarm (24h format)"
msgstr "Enter the time of alarm (24h format)"
-#: ../src/xfcetimer.c:824
+#: ../panel-plugin/xfcetimer.c:841
msgid "h "
msgstr "h "
-#: ../src/xfcetimer.c:829
+#: ../panel-plugin/xfcetimer.c:848
msgid "m "
msgstr "m "
-#: ../src/xfcetimer.c:834
+#: ../panel-plugin/xfcetimer.c:855
msgid "s "
msgstr "s "
-#: ../src/xfcetimer.c:837
+#: ../panel-plugin/xfcetimer.c:859
msgid "or"
msgstr "or"
#. **************
-#: ../src/xfcetimer.c:857
+#: ../panel-plugin/xfcetimer.c:881
msgid "Command to run:"
msgstr "Command to run:"
-#: ../src/xfcetimer.c:887
+#. **************
+#. add recurring alarm check button
+#: ../panel-plugin/xfcetimer.c:892
+msgid "Recurring alarm"
+msgstr "Recurring alarm"
+
+#. add alarm autostart check button
+#: ../panel-plugin/xfcetimer.c:899
+msgid "Auto start when plugin loads"
+msgstr ""
+
+#: ../panel-plugin/xfcetimer.c:909
+msgid "Cancel"
+msgstr ""
+
+#: ../panel-plugin/xfcetimer.c:914
+msgid "Accept"
+msgstr ""
+
+#: ../panel-plugin/xfcetimer.c:925
msgid "Add new alarm"
msgstr "Add new alarm"
-#: ../src/xfcetimer.c:924
+#: ../panel-plugin/xfcetimer.c:966
msgid "Edit alarm"
msgstr "Edit alarm"
-#: ../src/xfcetimer.c:1495 ../src/xfcetimer.c:1504
+#: ../panel-plugin/xfcetimer.c:1506
msgid "Xfce4 Timer Options"
msgstr "Xfce4 Timer Options"
-#: ../src/xfcetimer.c:1506
-msgid "Xfce 4 Timer Plugin"
-msgstr "Xfce 4 Timer Plugin"
-
-#: ../src/xfcetimer.c:1552
+#: ../panel-plugin/xfcetimer.c:1546
msgid "Timer name"
msgstr "Timer name"
-#: ../src/xfcetimer.c:1557
+#: ../panel-plugin/xfcetimer.c:1551
msgid ""
"Countdown period /\n"
"Alarm time"
-msgstr "Countdown period /\nAlarm time"
+msgstr ""
+"Countdown period /\n"
+"Alarm time"
-#: ../src/xfcetimer.c:1561
+#: ../panel-plugin/xfcetimer.c:1554
msgid "Alarm command"
msgstr "Alarm command"
-#: ../src/xfcetimer.c:1617
+#: ../panel-plugin/xfcetimer.c:1572
+msgid "Add"
+msgstr ""
+
+#: ../panel-plugin/xfcetimer.c:1580
+msgid "Edit"
+msgstr ""
+
+#: ../panel-plugin/xfcetimer.c:1588
+msgid "Remove"
+msgstr ""
+
+#: ../panel-plugin/xfcetimer.c:1596
+msgid "Up"
+msgstr ""
+
+#: ../panel-plugin/xfcetimer.c:1603
+msgid "Down"
+msgstr ""
+
+#: ../panel-plugin/xfcetimer.c:1619
msgid "Don't display a warning if an alarm command is set"
msgstr "Don't display a warning if an alarm command is set"
-#: ../src/xfcetimer.c:1622
-msgid "Selecting a timer starts it"
-msgstr "Selecting a timer starts it"
-
#. Default alarm command config
-#: ../src/xfcetimer.c:1630
+#: ../panel-plugin/xfcetimer.c:1631
msgid "Use a default alarm command"
msgstr "Use a default alarm command"
-#: ../src/xfcetimer.c:1637
+#: ../panel-plugin/xfcetimer.c:1640
msgid "Default command: "
msgstr "Default command: "
#. Alarm repetitions config
-#: ../src/xfcetimer.c:1649
+#: ../panel-plugin/xfcetimer.c:1656
msgid "Repeat the alarm command"
msgstr "Repeat the alarm command"
-#: ../src/xfcetimer.c:1656
+#: ../panel-plugin/xfcetimer.c:1665
msgid "Number of repetitions"
msgstr "Number of repetitions"
-#: ../src/xfcetimer.c:1662
+#: ../panel-plugin/xfcetimer.c:1674
msgid " Time interval (sec.)"
msgstr " Time interval (sec.)"
-#: ../src/xfcetimer.c:1723
+#: ../panel-plugin/xfcetimer.c:1736
msgid "About xfce4-timer-plugin"
msgstr "About xfce4-timer-plugin"
-#: ../src/xfcetimer.c:1728
+#: ../panel-plugin/xfcetimer.c:1739
msgid "A plugin to define countdown timers or alarms at given times."
msgstr "A plugin to define countdown timers or alarms at given times."
-#: ../src/xfcetimer.c:1730
-msgid "Copyright (c) 2005-2013\n"
+#: ../panel-plugin/xfcetimer.c:1742
+#, fuzzy
+msgid "Copyright (c) 2005-2018\n"
msgstr "Copyright (c) 2005-2013\n"
-#: ../src/xfce4-timer.desktop.in.in.h:1
+#: ../panel-plugin/xfce4-timer-plugin.desktop.in.h:1
msgid "Xfce4 Timer"
msgstr "Xfce4 Timer"
-#: ../src/xfce4-timer.desktop.in.in.h:2
+#: ../panel-plugin/xfce4-timer-plugin.desktop.in.h:2
msgid "Timer plugin for Xfce panel"
msgstr "Timer plugin for Xfce panel"
-msgid "Recurring alarm"
-msgstr "Recurring alarm"
+#~ msgid "Auto start"
+#~ msgstr "Auto start"
+
+#~ msgid "Selecting a timer starts it"
+#~ msgstr "Selecting a timer starts it"
+
+#~ msgid "Start timer"
+#~ msgstr "Start timer"
+
+#~ msgid "Stop the alarm"
+#~ msgstr "Stop the alarm"
-msgid "Auto start"
-msgstr "Auto start"
\ No newline at end of file
+#~ msgid "Xfce 4 Timer Plugin"
+#~ msgstr "Xfce 4 Timer Plugin"
diff --git a/po/es.po b/po/es.po
index 074fe2a..8ecbfc5 100644
--- a/po/es.po
+++ b/po/es.po
@@ -1,7 +1,7 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
-#
+#
# Translators:
# <abel.martin.ruiz at gmail.com>, 2009
# Adolfo Jayme Barrientos, 2014-2015
@@ -14,216 +14,224 @@ msgid ""
msgstr ""
"Project-Id-Version: Xfce Panel Plugins\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-01-04 06:32+0100\n"
+"POT-Creation-Date: 2018-04-21 18:00+0300\n"
"PO-Revision-Date: 2018-01-18 04:43+0000\n"
-"Last-Translator: Pablo Lezaeta Reyes [pˈaβ̞lo lˌe̞θaˈeta rˈejɛ] <prflr88 at gmail.com>\n"
-"Language-Team: Spanish (http://www.transifex.com/xfce/xfce-panel-plugins/language/es/)\n"
+"Last-Translator: Pablo Lezaeta Reyes [pˈaβ̞lo lˌe̞θaˈeta rˈejɛ] <prflr88 at gmail."
+"com>\n"
+"Language-Team: Spanish (http://www.transifex.com/xfce/xfce-panel-plugins/"
+"language/es/)\n"
+"Language: es\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: es\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: ../panel-plugin/xfcetimer.c:153
+#: ../panel-plugin/xfcetimer.c:167
#, c-format
msgid "%dh %dm %ds left"
msgstr "Quedan %d h, %d m y %d s"
-#: ../panel-plugin/xfcetimer.c:156
+#: ../panel-plugin/xfcetimer.c:170
#, c-format
msgid "%dm %ds left"
msgstr "Quedan %d m y %d s"
-#: ../panel-plugin/xfcetimer.c:159
+#: ../panel-plugin/xfcetimer.c:173
#, c-format
msgid "%ds left"
msgstr "Quedan %d s"
-#: ../panel-plugin/xfcetimer.c:163
+#: ../panel-plugin/xfcetimer.c:177
msgid " (Paused)"
msgstr " (Pausado)"
-#: ../panel-plugin/xfcetimer.c:198
+#. Display the name of the alarm when the countdown ends
+#: ../panel-plugin/xfcetimer.c:213
#, c-format
msgid ""
"Beeep! :) \n"
"Time is up for the alarm %s."
-msgstr "¡Bip! :) \nSe acabó el tiempo de la alarma %s."
+msgstr ""
+"¡Bip! :) \n"
+"Se acabó el tiempo de la alarma %s."
-#: ../panel-plugin/xfcetimer.c:210 ../panel-plugin/xfcetimer.c:1493
+#: ../panel-plugin/xfcetimer.c:221 ../panel-plugin/xfcetimer.c:1508
msgid "Close"
msgstr "Cerrar"
-#: ../panel-plugin/xfcetimer.c:211
+#: ../panel-plugin/xfcetimer.c:222
msgid "Rerun the timer"
msgstr "Reiniciar el temporizador"
-#: ../panel-plugin/xfcetimer.c:526
+#: ../panel-plugin/xfcetimer.c:515
+msgid "Pause timer"
+msgstr "Pausar el temporizador"
+
+#: ../panel-plugin/xfcetimer.c:523
msgid "Resume timer"
msgstr "Reanudar el temporizador"
-#: ../panel-plugin/xfcetimer.c:533 ../panel-plugin/xfcetimer.c:556
+#: ../panel-plugin/xfcetimer.c:534
msgid "Stop timer"
msgstr "Parar temporizador"
-#: ../panel-plugin/xfcetimer.c:545
-msgid "Pause timer"
-msgstr "Pausar el temporizador"
-
-#: ../panel-plugin/xfcetimer.c:558
-msgid "Start timer"
-msgstr "Iniciar temporizador"
-
-#: ../panel-plugin/xfcetimer.c:568
-msgid "Stop the alarm"
-msgstr "Parar la alarma"
-
-#: ../panel-plugin/xfcetimer.c:622 ../panel-plugin/xfcetimer.c:696
+#: ../panel-plugin/xfcetimer.c:614 ../panel-plugin/xfcetimer.c:693
#, c-format
msgid "%dh %dm %ds"
msgstr "%dh %dm %ds"
-#: ../panel-plugin/xfcetimer.c:624 ../panel-plugin/xfcetimer.c:698
+#: ../panel-plugin/xfcetimer.c:616 ../panel-plugin/xfcetimer.c:695
#, c-format
msgid "%dm %ds"
msgstr "%dm %ds"
-#: ../panel-plugin/xfcetimer.c:626 ../panel-plugin/xfcetimer.c:700
+#: ../panel-plugin/xfcetimer.c:618 ../panel-plugin/xfcetimer.c:697
#, c-format
msgid "%ds"
msgstr "%ds"
-#: ../panel-plugin/xfcetimer.c:634 ../panel-plugin/xfcetimer.c:709
+#: ../panel-plugin/xfcetimer.c:626 ../panel-plugin/xfcetimer.c:706
#, c-format
msgid "At %02d:%02d"
msgstr "A las %02d:%02d"
-#: ../panel-plugin/xfcetimer.c:815
+#: ../panel-plugin/xfcetimer.c:812
msgid "Name:"
msgstr "Nombre:"
-#: ../panel-plugin/xfcetimer.c:824
+#: ../panel-plugin/xfcetimer.c:821
msgid "Enter the countdown time"
msgstr "Introduzca el tiempo de la cuenta atrás"
-#: ../panel-plugin/xfcetimer.c:829
+#: ../panel-plugin/xfcetimer.c:826
msgid "Enter the time of alarm (24h format)"
msgstr "Introduzca la hora de alarma (formato 24h)"
-#: ../panel-plugin/xfcetimer.c:844
+#: ../panel-plugin/xfcetimer.c:841
msgid "h "
msgstr "h "
-#: ../panel-plugin/xfcetimer.c:851
+#: ../panel-plugin/xfcetimer.c:848
msgid "m "
msgstr "m "
-#: ../panel-plugin/xfcetimer.c:858
+#: ../panel-plugin/xfcetimer.c:855
msgid "s "
msgstr "s "
-#: ../panel-plugin/xfcetimer.c:862
+#: ../panel-plugin/xfcetimer.c:859
msgid "or"
msgstr "o"
#. **************
-#: ../panel-plugin/xfcetimer.c:884
+#: ../panel-plugin/xfcetimer.c:881
msgid "Command to run:"
msgstr "Orden a ejecutar:"
-#: ../panel-plugin/xfcetimer.c:898
+#. **************
+#. add recurring alarm check button
+#: ../panel-plugin/xfcetimer.c:892
+msgid "Recurring alarm"
+msgstr ""
+
+#. add alarm autostart check button
+#: ../panel-plugin/xfcetimer.c:899
+msgid "Auto start when plugin loads"
+msgstr ""
+
+#: ../panel-plugin/xfcetimer.c:909
msgid "Cancel"
msgstr "Cancelar"
-#: ../panel-plugin/xfcetimer.c:903
+#: ../panel-plugin/xfcetimer.c:914
msgid "Accept"
msgstr "Aceptar"
-#: ../panel-plugin/xfcetimer.c:914
+#: ../panel-plugin/xfcetimer.c:925
msgid "Add new alarm"
msgstr "Añadir nueva alarma"
-#: ../panel-plugin/xfcetimer.c:951
+#: ../panel-plugin/xfcetimer.c:966
msgid "Edit alarm"
msgstr "Editar alarma"
-#: ../panel-plugin/xfcetimer.c:1491
+#: ../panel-plugin/xfcetimer.c:1506
msgid "Xfce4 Timer Options"
msgstr "Opciones del temporizador de Xfce4"
-#: ../panel-plugin/xfcetimer.c:1531
+#: ../panel-plugin/xfcetimer.c:1546
msgid "Timer name"
msgstr "Nombre del temporizador"
-#: ../panel-plugin/xfcetimer.c:1536
+#: ../panel-plugin/xfcetimer.c:1551
msgid ""
"Countdown period /\n"
"Alarm time"
-msgstr "Periodo de cuenta atrás /\nHora de alarma"
+msgstr ""
+"Periodo de cuenta atrás /\n"
+"Hora de alarma"
-#: ../panel-plugin/xfcetimer.c:1539
+#: ../panel-plugin/xfcetimer.c:1554
msgid "Alarm command"
msgstr "Orden de la alarma"
-#: ../panel-plugin/xfcetimer.c:1557
+#: ../panel-plugin/xfcetimer.c:1572
msgid "Add"
msgstr "Agregar"
-#: ../panel-plugin/xfcetimer.c:1565
+#: ../panel-plugin/xfcetimer.c:1580
msgid "Edit"
msgstr "Editar"
-#: ../panel-plugin/xfcetimer.c:1573
+#: ../panel-plugin/xfcetimer.c:1588
msgid "Remove"
msgstr "Remover"
-#: ../panel-plugin/xfcetimer.c:1581
+#: ../panel-plugin/xfcetimer.c:1596
msgid "Up"
msgstr "Arriba"
-#: ../panel-plugin/xfcetimer.c:1588
+#: ../panel-plugin/xfcetimer.c:1603
msgid "Down"
msgstr "Abajo"
-#: ../panel-plugin/xfcetimer.c:1604
+#: ../panel-plugin/xfcetimer.c:1619
msgid "Don't display a warning if an alarm command is set"
msgstr "No mostrar un aviso si se definió una orden de alarma"
-#: ../panel-plugin/xfcetimer.c:1610
-msgid "Selecting a timer starts it"
-msgstr "Seleccionando un temporizador se inicia este"
-
#. Default alarm command config
-#: ../panel-plugin/xfcetimer.c:1623
+#: ../panel-plugin/xfcetimer.c:1631
msgid "Use a default alarm command"
msgstr "Utilizar la orden de alarma predefinida"
-#: ../panel-plugin/xfcetimer.c:1632
+#: ../panel-plugin/xfcetimer.c:1640
msgid "Default command: "
msgstr "Orden predeterminada:"
#. Alarm repetitions config
-#: ../panel-plugin/xfcetimer.c:1648
+#: ../panel-plugin/xfcetimer.c:1656
msgid "Repeat the alarm command"
msgstr "Repetir la orden de alarma:"
-#: ../panel-plugin/xfcetimer.c:1657
+#: ../panel-plugin/xfcetimer.c:1665
msgid "Number of repetitions"
msgstr "Número de repeticiones"
-#: ../panel-plugin/xfcetimer.c:1666
+#: ../panel-plugin/xfcetimer.c:1674
msgid " Time interval (sec.)"
msgstr " Intervalo de tiempo (s)"
-#: ../panel-plugin/xfcetimer.c:1728
+#: ../panel-plugin/xfcetimer.c:1736
msgid "About xfce4-timer-plugin"
msgstr "Acerca del Complemento temporizador de Xfce4"
-#: ../panel-plugin/xfcetimer.c:1731
+#: ../panel-plugin/xfcetimer.c:1739
msgid "A plugin to define countdown timers or alarms at given times."
-msgstr "Un complemento para definir temporizadores de cuenta regresiva o alarmas en cualquier momento."
+msgstr ""
+"Un complemento para definir temporizadores de cuenta regresiva o alarmas en "
+"cualquier momento."
-#: ../panel-plugin/xfcetimer.c:1734
+#: ../panel-plugin/xfcetimer.c:1742
msgid "Copyright (c) 2005-2018\n"
msgstr "Derechos de autor (c) 2005-2018\n"
@@ -234,3 +242,12 @@ msgstr "Temporizador de Xfce4"
#: ../panel-plugin/xfce4-timer-plugin.desktop.in.h:2
msgid "Timer plugin for Xfce panel"
msgstr "Complemento temporizador para el panel de Xfce"
+
+#~ msgid "Selecting a timer starts it"
+#~ msgstr "Seleccionando un temporizador se inicia este"
+
+#~ msgid "Start timer"
+#~ msgstr "Iniciar temporizador"
+
+#~ msgid "Stop the alarm"
+#~ msgstr "Parar la alarma"
diff --git a/po/eu.po b/po/eu.po
index 1d5a295..7e1c7c9 100644
--- a/po/eu.po
+++ b/po/eu.po
@@ -1,204 +1,240 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
-#
+#
# Translators:
# Piarres Beobide <pi at beobide.net>, 2006,2016
msgid ""
msgstr ""
"Project-Id-Version: Xfce Panel Plugins\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-06-05 06:31+0200\n"
+"POT-Creation-Date: 2018-04-21 18:00+0300\n"
"PO-Revision-Date: 2017-09-19 18:06+0000\n"
"Last-Translator: Piarres Beobide <pi at beobide.net>\n"
-"Language-Team: Basque (http://www.transifex.com/xfce/xfce-panel-plugins/language/eu/)\n"
+"Language-Team: Basque (http://www.transifex.com/xfce/xfce-panel-plugins/"
+"language/eu/)\n"
+"Language: eu\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: eu\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: ../src/xfcetimer.c:146
+#: ../panel-plugin/xfcetimer.c:167
#, c-format
msgid "%dh %dm %ds left"
msgstr "%do %dm %ds falta dira"
-#: ../src/xfcetimer.c:149
+#: ../panel-plugin/xfcetimer.c:170
#, c-format
msgid "%dm %ds left"
msgstr "%dm %ds falta dira"
-#: ../src/xfcetimer.c:151
+#: ../panel-plugin/xfcetimer.c:173
#, c-format
msgid "%ds left"
msgstr "%ds falta dira"
-#: ../src/xfcetimer.c:154
+#: ../panel-plugin/xfcetimer.c:177
msgid " (Paused)"
msgstr "(Gelditua)"
#. Display the name of the alarm when the countdown ends
-#: ../src/xfcetimer.c:188
+#: ../panel-plugin/xfcetimer.c:213
#, c-format
msgid ""
"Beeep! :) \n"
"Time is up for the alarm %s."
msgstr ""
-#: ../src/xfcetimer.c:198
-msgid "Rerun the timer"
+#: ../panel-plugin/xfcetimer.c:221 ../panel-plugin/xfcetimer.c:1508
+msgid "Close"
msgstr ""
-#: ../src/xfcetimer.c:487
-msgid "Resume timer"
+#: ../panel-plugin/xfcetimer.c:222
+msgid "Rerun the timer"
msgstr ""
-#: ../src/xfcetimer.c:494 ../src/xfcetimer.c:550
-msgid "Stop timer"
-msgstr "Amaiera ordua"
-
-#: ../src/xfcetimer.c:538
+#: ../panel-plugin/xfcetimer.c:515
msgid "Pause timer"
msgstr ""
-#: ../src/xfcetimer.c:552
-msgid "Start timer"
-msgstr "Abiarazte ordua"
+#: ../panel-plugin/xfcetimer.c:523
+msgid "Resume timer"
+msgstr ""
-#: ../src/xfcetimer.c:561
-msgid "Stop the alarm"
-msgstr "Alarma gelditu"
+#: ../panel-plugin/xfcetimer.c:534
+msgid "Stop timer"
+msgstr "Amaiera ordua"
-#: ../src/xfcetimer.c:618 ../src/xfcetimer.c:689
+#: ../panel-plugin/xfcetimer.c:614 ../panel-plugin/xfcetimer.c:693
#, c-format
msgid "%dh %dm %ds"
msgstr "%do %dm %ds"
-#: ../src/xfcetimer.c:620 ../src/xfcetimer.c:691
+#: ../panel-plugin/xfcetimer.c:616 ../panel-plugin/xfcetimer.c:695
#, c-format
msgid "%dm %ds"
msgstr "%dm %ds"
-#: ../src/xfcetimer.c:622 ../src/xfcetimer.c:693
+#: ../panel-plugin/xfcetimer.c:618 ../panel-plugin/xfcetimer.c:697
#, c-format
msgid "%ds"
msgstr "%ds"
-#: ../src/xfcetimer.c:631 ../src/xfcetimer.c:702
+#: ../panel-plugin/xfcetimer.c:626 ../panel-plugin/xfcetimer.c:706
#, c-format
msgid "At %02d:%02d"
msgstr "%02d:%02d-etan"
-#: ../src/xfcetimer.c:801
+#: ../panel-plugin/xfcetimer.c:812
msgid "Name:"
msgstr "Izena:"
-#. ********
-#: ../src/xfcetimer.c:809
+#: ../panel-plugin/xfcetimer.c:821
msgid "Enter the countdown time"
msgstr "atzekoz aurrera kontatze denbora idatzi"
-#: ../src/xfcetimer.c:812
+#: ../panel-plugin/xfcetimer.c:826
msgid "Enter the time of alarm (24h format)"
msgstr "Alarmaren ordua idatzi (24h formatua)"
-#: ../src/xfcetimer.c:824
+#: ../panel-plugin/xfcetimer.c:841
msgid "h "
msgstr "o "
-#: ../src/xfcetimer.c:829
+#: ../panel-plugin/xfcetimer.c:848
msgid "m "
msgstr "m "
-#: ../src/xfcetimer.c:834
+#: ../panel-plugin/xfcetimer.c:855
msgid "s "
msgstr "s "
-#: ../src/xfcetimer.c:837
+#: ../panel-plugin/xfcetimer.c:859
msgid "or"
msgstr ""
#. **************
-#: ../src/xfcetimer.c:857
+#: ../panel-plugin/xfcetimer.c:881
msgid "Command to run:"
msgstr "Exekutatzeko komandoa:"
-#: ../src/xfcetimer.c:887
+#. **************
+#. add recurring alarm check button
+#: ../panel-plugin/xfcetimer.c:892
+msgid "Recurring alarm"
+msgstr ""
+
+#. add alarm autostart check button
+#: ../panel-plugin/xfcetimer.c:899
+msgid "Auto start when plugin loads"
+msgstr ""
+
+#: ../panel-plugin/xfcetimer.c:909
+msgid "Cancel"
+msgstr ""
+
+#: ../panel-plugin/xfcetimer.c:914
+msgid "Accept"
+msgstr ""
+
+#: ../panel-plugin/xfcetimer.c:925
msgid "Add new alarm"
msgstr "Alarma Berri bat gehitu"
-#: ../src/xfcetimer.c:924
+#: ../panel-plugin/xfcetimer.c:966
msgid "Edit alarm"
msgstr "Alarma Editatu"
-#: ../src/xfcetimer.c:1495 ../src/xfcetimer.c:1504
+#: ../panel-plugin/xfcetimer.c:1506
msgid "Xfce4 Timer Options"
msgstr "Xfce4 Kronometro Aukerak"
-#: ../src/xfcetimer.c:1506
-msgid "Xfce 4 Timer Plugin"
-msgstr ""
-
-#: ../src/xfcetimer.c:1552
+#: ../panel-plugin/xfcetimer.c:1546
msgid "Timer name"
msgstr ""
-#: ../src/xfcetimer.c:1557
+#: ../panel-plugin/xfcetimer.c:1551
msgid ""
"Countdown period /\n"
"Alarm time"
-msgstr "Kontatze aldia /\nAlarma ordua"
+msgstr ""
+"Kontatze aldia /\n"
+"Alarma ordua"
-#: ../src/xfcetimer.c:1561
+#: ../panel-plugin/xfcetimer.c:1554
msgid "Alarm command"
msgstr "Alarma komandoa"
-#: ../src/xfcetimer.c:1617
-msgid "Don't display a warning if an alarm command is set"
+#: ../panel-plugin/xfcetimer.c:1572
+msgid "Add"
+msgstr ""
+
+#: ../panel-plugin/xfcetimer.c:1580
+msgid "Edit"
msgstr ""
-#: ../src/xfcetimer.c:1622
-msgid "Selecting a timer starts it"
+#: ../panel-plugin/xfcetimer.c:1588
+msgid "Remove"
+msgstr ""
+
+#: ../panel-plugin/xfcetimer.c:1596
+msgid "Up"
+msgstr ""
+
+#: ../panel-plugin/xfcetimer.c:1603
+msgid "Down"
+msgstr ""
+
+#: ../panel-plugin/xfcetimer.c:1619
+msgid "Don't display a warning if an alarm command is set"
msgstr ""
#. Default alarm command config
-#: ../src/xfcetimer.c:1630
+#: ../panel-plugin/xfcetimer.c:1631
msgid "Use a default alarm command"
msgstr ""
-#: ../src/xfcetimer.c:1637
+#: ../panel-plugin/xfcetimer.c:1640
msgid "Default command: "
msgstr "Lehenetsitako komandoa:"
#. Alarm repetitions config
-#: ../src/xfcetimer.c:1649
+#: ../panel-plugin/xfcetimer.c:1656
msgid "Repeat the alarm command"
msgstr "Errepijatu alarma komandoa"
-#: ../src/xfcetimer.c:1656
+#: ../panel-plugin/xfcetimer.c:1665
msgid "Number of repetitions"
msgstr "Errepikapen kopurua"
-#: ../src/xfcetimer.c:1662
+#: ../panel-plugin/xfcetimer.c:1674
msgid " Time interval (sec.)"
msgstr " Denbora tartea (seg.)"
-#: ../src/xfcetimer.c:1723
+#: ../panel-plugin/xfcetimer.c:1736
msgid "About xfce4-timer-plugin"
msgstr ""
-#: ../src/xfcetimer.c:1728
+#: ../panel-plugin/xfcetimer.c:1739
msgid "A plugin to define countdown timers or alarms at given times."
msgstr ""
-#: ../src/xfcetimer.c:1730
-msgid "Copyright (c) 2005-2013\n"
+#: ../panel-plugin/xfcetimer.c:1742
+#, fuzzy
+msgid "Copyright (c) 2005-2018\n"
msgstr "Copyright-a (c) 2005-2013\n"
-#: ../src/xfce4-timer.desktop.in.in.h:1
+#: ../panel-plugin/xfce4-timer-plugin.desktop.in.h:1
msgid "Xfce4 Timer"
msgstr "Xfce4 kronometroa"
-#: ../src/xfce4-timer.desktop.in.in.h:2
+#: ../panel-plugin/xfce4-timer-plugin.desktop.in.h:2
msgid "Timer plugin for Xfce panel"
msgstr "Xfce panelarentzat kronometro plugin-a"
+
+#~ msgid "Start timer"
+#~ msgstr "Abiarazte ordua"
+
+#~ msgid "Stop the alarm"
+#~ msgstr "Alarma gelditu"
diff --git a/po/fi.po b/po/fi.po
index 918e338..e5a1e37 100644
--- a/po/fi.po
+++ b/po/fi.po
@@ -1,7 +1,7 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
-#
+#
# Translators:
# Ammuu5, 2017
# Jiri Grönroos <jiri.gronroos at iki.fi>, 2018
@@ -9,216 +9,219 @@ msgid ""
msgstr ""
"Project-Id-Version: Xfce Panel Plugins\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-01-04 06:32+0100\n"
+"POT-Creation-Date: 2018-04-21 18:00+0300\n"
"PO-Revision-Date: 2018-02-19 12:38+0000\n"
"Last-Translator: Jiri Grönroos <jiri.gronroos at iki.fi>\n"
-"Language-Team: Finnish (http://www.transifex.com/xfce/xfce-panel-plugins/language/fi/)\n"
+"Language-Team: Finnish (http://www.transifex.com/xfce/xfce-panel-plugins/"
+"language/fi/)\n"
+"Language: fi\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: fi\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: ../panel-plugin/xfcetimer.c:153
+#: ../panel-plugin/xfcetimer.c:167
#, c-format
msgid "%dh %dm %ds left"
msgstr "%dt %dm %ds jäljellä"
-#: ../panel-plugin/xfcetimer.c:156
+#: ../panel-plugin/xfcetimer.c:170
#, c-format
msgid "%dm %ds left"
msgstr "%dm %ds jäljellä"
-#: ../panel-plugin/xfcetimer.c:159
+#: ../panel-plugin/xfcetimer.c:173
#, c-format
msgid "%ds left"
msgstr "%d s jäljellä"
-#: ../panel-plugin/xfcetimer.c:163
+#: ../panel-plugin/xfcetimer.c:177
msgid " (Paused)"
msgstr "(Keskeytetty)"
-#: ../panel-plugin/xfcetimer.c:198
+#. Display the name of the alarm when the countdown ends
+#: ../panel-plugin/xfcetimer.c:213
#, c-format
msgid ""
"Beeep! :) \n"
"Time is up for the alarm %s."
-msgstr "Piiip! :)\nHälytyksen %s aika on loppunut."
+msgstr ""
+"Piiip! :)\n"
+"Hälytyksen %s aika on loppunut."
-#: ../panel-plugin/xfcetimer.c:210 ../panel-plugin/xfcetimer.c:1493
+#: ../panel-plugin/xfcetimer.c:221 ../panel-plugin/xfcetimer.c:1508
msgid "Close"
msgstr "Sulje"
-#: ../panel-plugin/xfcetimer.c:211
+#: ../panel-plugin/xfcetimer.c:222
msgid "Rerun the timer"
msgstr "Käynnistä ajastin uudelleen"
-#: ../panel-plugin/xfcetimer.c:526
+#: ../panel-plugin/xfcetimer.c:515
+msgid "Pause timer"
+msgstr "Keskeytä ajastin"
+
+#: ../panel-plugin/xfcetimer.c:523
msgid "Resume timer"
msgstr "Jatka ajastinta"
-#: ../panel-plugin/xfcetimer.c:533 ../panel-plugin/xfcetimer.c:556
+#: ../panel-plugin/xfcetimer.c:534
msgid "Stop timer"
msgstr "Pysäytä ajastin"
-#: ../panel-plugin/xfcetimer.c:545
-msgid "Pause timer"
-msgstr "Keskeytä ajastin"
-
-#: ../panel-plugin/xfcetimer.c:558
-msgid "Start timer"
-msgstr "Käynnistä ajastin"
-
-#: ../panel-plugin/xfcetimer.c:568
-msgid "Stop the alarm"
-msgstr "Pysäytä hälytys"
-
-#: ../panel-plugin/xfcetimer.c:622 ../panel-plugin/xfcetimer.c:696
+#: ../panel-plugin/xfcetimer.c:614 ../panel-plugin/xfcetimer.c:693
#, c-format
msgid "%dh %dm %ds"
msgstr "%dt %dm %ds"
-#: ../panel-plugin/xfcetimer.c:624 ../panel-plugin/xfcetimer.c:698
+#: ../panel-plugin/xfcetimer.c:616 ../panel-plugin/xfcetimer.c:695
#, c-format
msgid "%dm %ds"
msgstr "%dm %ds"
-#: ../panel-plugin/xfcetimer.c:626 ../panel-plugin/xfcetimer.c:700
+#: ../panel-plugin/xfcetimer.c:618 ../panel-plugin/xfcetimer.c:697
#, c-format
msgid "%ds"
msgstr "%ds"
-#: ../panel-plugin/xfcetimer.c:634 ../panel-plugin/xfcetimer.c:709
+#: ../panel-plugin/xfcetimer.c:626 ../panel-plugin/xfcetimer.c:706
#, c-format
msgid "At %02d:%02d"
msgstr ""
-#: ../panel-plugin/xfcetimer.c:815
+#: ../panel-plugin/xfcetimer.c:812
msgid "Name:"
msgstr "Nimi:"
-#: ../panel-plugin/xfcetimer.c:824
+#: ../panel-plugin/xfcetimer.c:821
msgid "Enter the countdown time"
msgstr ""
-#: ../panel-plugin/xfcetimer.c:829
+#: ../panel-plugin/xfcetimer.c:826
msgid "Enter the time of alarm (24h format)"
msgstr "Anna hälytysaika (24t-muoto)"
-#: ../panel-plugin/xfcetimer.c:844
+#: ../panel-plugin/xfcetimer.c:841
msgid "h "
msgstr "t"
-#: ../panel-plugin/xfcetimer.c:851
+#: ../panel-plugin/xfcetimer.c:848
msgid "m "
msgstr "m"
-#: ../panel-plugin/xfcetimer.c:858
+#: ../panel-plugin/xfcetimer.c:855
msgid "s "
msgstr "s"
-#: ../panel-plugin/xfcetimer.c:862
+#: ../panel-plugin/xfcetimer.c:859
msgid "or"
msgstr "tai"
#. **************
-#: ../panel-plugin/xfcetimer.c:884
+#: ../panel-plugin/xfcetimer.c:881
msgid "Command to run:"
msgstr "Suoritettava komento:"
-#: ../panel-plugin/xfcetimer.c:898
+#. **************
+#. add recurring alarm check button
+#: ../panel-plugin/xfcetimer.c:892
+msgid "Recurring alarm"
+msgstr ""
+
+#. add alarm autostart check button
+#: ../panel-plugin/xfcetimer.c:899
+msgid "Auto start when plugin loads"
+msgstr ""
+
+#: ../panel-plugin/xfcetimer.c:909
msgid "Cancel"
msgstr "Peruuta"
-#: ../panel-plugin/xfcetimer.c:903
+#: ../panel-plugin/xfcetimer.c:914
msgid "Accept"
msgstr "Hyväksy"
-#: ../panel-plugin/xfcetimer.c:914
+#: ../panel-plugin/xfcetimer.c:925
msgid "Add new alarm"
msgstr "Lisää uusi hälytys"
-#: ../panel-plugin/xfcetimer.c:951
+#: ../panel-plugin/xfcetimer.c:966
msgid "Edit alarm"
msgstr "Muokkaa hälytystä"
-#: ../panel-plugin/xfcetimer.c:1491
+#: ../panel-plugin/xfcetimer.c:1506
msgid "Xfce4 Timer Options"
msgstr "Xfce4 ajastimen asetukset"
-#: ../panel-plugin/xfcetimer.c:1531
+#: ../panel-plugin/xfcetimer.c:1546
msgid "Timer name"
msgstr "Ajastimen nimi"
-#: ../panel-plugin/xfcetimer.c:1536
+#: ../panel-plugin/xfcetimer.c:1551
msgid ""
"Countdown period /\n"
"Alarm time"
msgstr ""
-#: ../panel-plugin/xfcetimer.c:1539
+#: ../panel-plugin/xfcetimer.c:1554
msgid "Alarm command"
msgstr "Hälytyskomento"
-#: ../panel-plugin/xfcetimer.c:1557
+#: ../panel-plugin/xfcetimer.c:1572
msgid "Add"
msgstr "Lisää"
-#: ../panel-plugin/xfcetimer.c:1565
+#: ../panel-plugin/xfcetimer.c:1580
msgid "Edit"
msgstr "Muokkaa"
-#: ../panel-plugin/xfcetimer.c:1573
+#: ../panel-plugin/xfcetimer.c:1588
msgid "Remove"
msgstr "Poista"
-#: ../panel-plugin/xfcetimer.c:1581
+#: ../panel-plugin/xfcetimer.c:1596
msgid "Up"
msgstr ""
-#: ../panel-plugin/xfcetimer.c:1588
+#: ../panel-plugin/xfcetimer.c:1603
msgid "Down"
msgstr ""
-#: ../panel-plugin/xfcetimer.c:1604
+#: ../panel-plugin/xfcetimer.c:1619
msgid "Don't display a warning if an alarm command is set"
msgstr "Älä näytä varoitusta, jos hälytyskomento on asetettu"
-#: ../panel-plugin/xfcetimer.c:1610
-msgid "Selecting a timer starts it"
-msgstr "Ajastimen valitseminen aloittaa sen"
-
#. Default alarm command config
-#: ../panel-plugin/xfcetimer.c:1623
+#: ../panel-plugin/xfcetimer.c:1631
msgid "Use a default alarm command"
msgstr "Käytä oletushälytyskomentoa"
-#: ../panel-plugin/xfcetimer.c:1632
+#: ../panel-plugin/xfcetimer.c:1640
msgid "Default command: "
msgstr "Oletus komento:"
#. Alarm repetitions config
-#: ../panel-plugin/xfcetimer.c:1648
+#: ../panel-plugin/xfcetimer.c:1656
msgid "Repeat the alarm command"
msgstr "Toista hälytyskomento"
-#: ../panel-plugin/xfcetimer.c:1657
+#: ../panel-plugin/xfcetimer.c:1665
msgid "Number of repetitions"
msgstr "Toistojen määrä"
-#: ../panel-plugin/xfcetimer.c:1666
+#: ../panel-plugin/xfcetimer.c:1674
msgid " Time interval (sec.)"
msgstr "Aikaväli (sekunti(a))"
-#: ../panel-plugin/xfcetimer.c:1728
+#: ../panel-plugin/xfcetimer.c:1736
msgid "About xfce4-timer-plugin"
msgstr "Tietoa xfce4-ajastin-liitännäisestä"
-#: ../panel-plugin/xfcetimer.c:1731
+#: ../panel-plugin/xfcetimer.c:1739
msgid "A plugin to define countdown timers or alarms at given times."
msgstr ""
-#: ../panel-plugin/xfcetimer.c:1734
+#: ../panel-plugin/xfcetimer.c:1742
msgid "Copyright (c) 2005-2018\n"
msgstr ""
@@ -229,3 +232,12 @@ msgstr "Xfce4 Ajastin"
#: ../panel-plugin/xfce4-timer-plugin.desktop.in.h:2
msgid "Timer plugin for Xfce panel"
msgstr ""
+
+#~ msgid "Selecting a timer starts it"
+#~ msgstr "Ajastimen valitseminen aloittaa sen"
+
+#~ msgid "Start timer"
+#~ msgstr "Käynnistä ajastin"
+
+#~ msgid "Stop the alarm"
+#~ msgstr "Pysäytä hälytys"
diff --git a/po/fr.po b/po/fr.po
index a4d0c43..24d53f8 100644
--- a/po/fr.po
+++ b/po/fr.po
@@ -1,7 +1,7 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
-#
+#
# Translators:
# Charles Monzat <superboa at hotmail.fr>, 2018
# Gérald Barré <g.barre at free.fr>, 2006
@@ -14,216 +14,223 @@ msgid ""
msgstr ""
"Project-Id-Version: Xfce Panel Plugins\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-01-04 06:32+0100\n"
+"POT-Creation-Date: 2018-04-21 18:00+0300\n"
"PO-Revision-Date: 2018-03-17 23:22+0000\n"
"Last-Translator: Charles Monzat <superboa at hotmail.fr>\n"
-"Language-Team: French (http://www.transifex.com/xfce/xfce-panel-plugins/language/fr/)\n"
+"Language-Team: French (http://www.transifex.com/xfce/xfce-panel-plugins/"
+"language/fr/)\n"
+"Language: fr\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: fr\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
-#: ../panel-plugin/xfcetimer.c:153
+#: ../panel-plugin/xfcetimer.c:167
#, c-format
msgid "%dh %dm %ds left"
msgstr "%dh %dm %ds restante(s)"
-#: ../panel-plugin/xfcetimer.c:156
+#: ../panel-plugin/xfcetimer.c:170
#, c-format
msgid "%dm %ds left"
msgstr "%dm %ds restante(s)"
-#: ../panel-plugin/xfcetimer.c:159
+#: ../panel-plugin/xfcetimer.c:173
#, c-format
msgid "%ds left"
msgstr "%ds restante(s)"
-#: ../panel-plugin/xfcetimer.c:163
+#: ../panel-plugin/xfcetimer.c:177
msgid " (Paused)"
msgstr " (En attente)"
-#: ../panel-plugin/xfcetimer.c:198
+#. Display the name of the alarm when the countdown ends
+#: ../panel-plugin/xfcetimer.c:213
#, c-format
msgid ""
"Beeep! :) \n"
"Time is up for the alarm %s."
-msgstr "Biiip ! :) \nLe temps est écoulé pour l’alarme %s."
+msgstr ""
+"Biiip ! :) \n"
+"Le temps est écoulé pour l’alarme %s."
-#: ../panel-plugin/xfcetimer.c:210 ../panel-plugin/xfcetimer.c:1493
+#: ../panel-plugin/xfcetimer.c:221 ../panel-plugin/xfcetimer.c:1508
msgid "Close"
msgstr "Fermer"
-#: ../panel-plugin/xfcetimer.c:211
+#: ../panel-plugin/xfcetimer.c:222
msgid "Rerun the timer"
msgstr "Relancer le chronomètre"
-#: ../panel-plugin/xfcetimer.c:526
+#: ../panel-plugin/xfcetimer.c:515
+msgid "Pause timer"
+msgstr "Mettre en pause le chronomètre"
+
+#: ../panel-plugin/xfcetimer.c:523
msgid "Resume timer"
msgstr "Reprendre le chronomètre"
-#: ../panel-plugin/xfcetimer.c:533 ../panel-plugin/xfcetimer.c:556
+#: ../panel-plugin/xfcetimer.c:534
msgid "Stop timer"
msgstr "Arrêter le chronomètre"
-#: ../panel-plugin/xfcetimer.c:545
-msgid "Pause timer"
-msgstr "Mettre en pause le chronomètre"
-
-#: ../panel-plugin/xfcetimer.c:558
-msgid "Start timer"
-msgstr "Lancer le chronomètre"
-
-#: ../panel-plugin/xfcetimer.c:568
-msgid "Stop the alarm"
-msgstr "Arrêter l’alarme"
-
-#: ../panel-plugin/xfcetimer.c:622 ../panel-plugin/xfcetimer.c:696
+#: ../panel-plugin/xfcetimer.c:614 ../panel-plugin/xfcetimer.c:693
#, c-format
msgid "%dh %dm %ds"
msgstr "%dh %dm %ds"
-#: ../panel-plugin/xfcetimer.c:624 ../panel-plugin/xfcetimer.c:698
+#: ../panel-plugin/xfcetimer.c:616 ../panel-plugin/xfcetimer.c:695
#, c-format
msgid "%dm %ds"
msgstr "%dm %ds"
-#: ../panel-plugin/xfcetimer.c:626 ../panel-plugin/xfcetimer.c:700
+#: ../panel-plugin/xfcetimer.c:618 ../panel-plugin/xfcetimer.c:697
#, c-format
msgid "%ds"
msgstr "%ds"
-#: ../panel-plugin/xfcetimer.c:634 ../panel-plugin/xfcetimer.c:709
+#: ../panel-plugin/xfcetimer.c:626 ../panel-plugin/xfcetimer.c:706
#, c-format
msgid "At %02d:%02d"
msgstr "À %02d:%02d"
-#: ../panel-plugin/xfcetimer.c:815
+#: ../panel-plugin/xfcetimer.c:812
msgid "Name:"
msgstr "Nom :"
-#: ../panel-plugin/xfcetimer.c:824
+#: ../panel-plugin/xfcetimer.c:821
msgid "Enter the countdown time"
msgstr "Entrer la durée du compte à rebours"
-#: ../panel-plugin/xfcetimer.c:829
+#: ../panel-plugin/xfcetimer.c:826
msgid "Enter the time of alarm (24h format)"
msgstr "Entrer l’heure de l’alarme (format 24h)"
-#: ../panel-plugin/xfcetimer.c:844
+#: ../panel-plugin/xfcetimer.c:841
msgid "h "
msgstr "h "
-#: ../panel-plugin/xfcetimer.c:851
+#: ../panel-plugin/xfcetimer.c:848
msgid "m "
msgstr "m "
-#: ../panel-plugin/xfcetimer.c:858
+#: ../panel-plugin/xfcetimer.c:855
msgid "s "
msgstr "s "
-#: ../panel-plugin/xfcetimer.c:862
+#: ../panel-plugin/xfcetimer.c:859
msgid "or"
msgstr "ou"
#. **************
-#: ../panel-plugin/xfcetimer.c:884
+#: ../panel-plugin/xfcetimer.c:881
msgid "Command to run:"
msgstr "Commande à exécuter :"
-#: ../panel-plugin/xfcetimer.c:898
+#. **************
+#. add recurring alarm check button
+#: ../panel-plugin/xfcetimer.c:892
+msgid "Recurring alarm"
+msgstr ""
+
+#. add alarm autostart check button
+#: ../panel-plugin/xfcetimer.c:899
+msgid "Auto start when plugin loads"
+msgstr ""
+
+#: ../panel-plugin/xfcetimer.c:909
msgid "Cancel"
msgstr "Annuler"
-#: ../panel-plugin/xfcetimer.c:903
+#: ../panel-plugin/xfcetimer.c:914
msgid "Accept"
msgstr "Accepter"
-#: ../panel-plugin/xfcetimer.c:914
+#: ../panel-plugin/xfcetimer.c:925
msgid "Add new alarm"
msgstr "Ajouter une nouvelle alarme"
-#: ../panel-plugin/xfcetimer.c:951
+#: ../panel-plugin/xfcetimer.c:966
msgid "Edit alarm"
msgstr "Éditer l’alarme"
-#: ../panel-plugin/xfcetimer.c:1491
+#: ../panel-plugin/xfcetimer.c:1506
msgid "Xfce4 Timer Options"
msgstr "Options du chronomètre Xfce4"
-#: ../panel-plugin/xfcetimer.c:1531
+#: ../panel-plugin/xfcetimer.c:1546
msgid "Timer name"
msgstr "Nom du chronomètre"
-#: ../panel-plugin/xfcetimer.c:1536
+#: ../panel-plugin/xfcetimer.c:1551
msgid ""
"Countdown period /\n"
"Alarm time"
-msgstr "Période de compte à rebours /\nHeure d’alarme"
+msgstr ""
+"Période de compte à rebours /\n"
+"Heure d’alarme"
-#: ../panel-plugin/xfcetimer.c:1539
+#: ../panel-plugin/xfcetimer.c:1554
msgid "Alarm command"
msgstr "Commande d’alarme"
-#: ../panel-plugin/xfcetimer.c:1557
+#: ../panel-plugin/xfcetimer.c:1572
msgid "Add"
msgstr "Ajouter"
-#: ../panel-plugin/xfcetimer.c:1565
+#: ../panel-plugin/xfcetimer.c:1580
msgid "Edit"
msgstr "Modifier"
-#: ../panel-plugin/xfcetimer.c:1573
+#: ../panel-plugin/xfcetimer.c:1588
msgid "Remove"
msgstr "Enlever"
-#: ../panel-plugin/xfcetimer.c:1581
+#: ../panel-plugin/xfcetimer.c:1596
msgid "Up"
msgstr "Monter"
-#: ../panel-plugin/xfcetimer.c:1588
+#: ../panel-plugin/xfcetimer.c:1603
msgid "Down"
msgstr "Descendre"
-#: ../panel-plugin/xfcetimer.c:1604
+#: ../panel-plugin/xfcetimer.c:1619
msgid "Don't display a warning if an alarm command is set"
msgstr "Ne pas afficher d’avertissement si une commande d’alarme est définie"
-#: ../panel-plugin/xfcetimer.c:1610
-msgid "Selecting a timer starts it"
-msgstr "Un chronomètre démarre lorsqu’il est sélectionné"
-
#. Default alarm command config
-#: ../panel-plugin/xfcetimer.c:1623
+#: ../panel-plugin/xfcetimer.c:1631
msgid "Use a default alarm command"
msgstr "Utiliser une commande d’alarme par défaut"
-#: ../panel-plugin/xfcetimer.c:1632
+#: ../panel-plugin/xfcetimer.c:1640
msgid "Default command: "
msgstr "Commande par défaut : "
#. Alarm repetitions config
-#: ../panel-plugin/xfcetimer.c:1648
+#: ../panel-plugin/xfcetimer.c:1656
msgid "Repeat the alarm command"
msgstr "Répéter la commande de l’alarme"
-#: ../panel-plugin/xfcetimer.c:1657
+#: ../panel-plugin/xfcetimer.c:1665
msgid "Number of repetitions"
msgstr "Nombre de répétitions"
-#: ../panel-plugin/xfcetimer.c:1666
+#: ../panel-plugin/xfcetimer.c:1674
msgid " Time interval (sec.)"
msgstr " Intervalle de temps (sec.)"
-#: ../panel-plugin/xfcetimer.c:1728
+#: ../panel-plugin/xfcetimer.c:1736
msgid "About xfce4-timer-plugin"
msgstr "À propos de xfce4-timer-plugin"
-#: ../panel-plugin/xfcetimer.c:1731
+#: ../panel-plugin/xfcetimer.c:1739
msgid "A plugin to define countdown timers or alarms at given times."
-msgstr "Un greffon pour définir des comptes à rebours ou des alarmes à des moments donnés."
+msgstr ""
+"Un greffon pour définir des comptes à rebours ou des alarmes à des moments "
+"donnés."
-#: ../panel-plugin/xfcetimer.c:1734
+#: ../panel-plugin/xfcetimer.c:1742
msgid "Copyright (c) 2005-2018\n"
msgstr "Copyright (c) 2005-2018\n"
@@ -234,3 +241,12 @@ msgstr "Chronomètre Xfce4"
#: ../panel-plugin/xfce4-timer-plugin.desktop.in.h:2
msgid "Timer plugin for Xfce panel"
msgstr "Greffon de chronomètre pour le tableau de bord Xfce"
+
+#~ msgid "Selecting a timer starts it"
+#~ msgstr "Un chronomètre démarre lorsqu’il est sélectionné"
+
+#~ msgid "Start timer"
+#~ msgstr "Lancer le chronomètre"
+
+#~ msgid "Stop the alarm"
+#~ msgstr "Arrêter l’alarme"
diff --git a/po/gl.po b/po/gl.po
index 500d14d..fe9f4be 100644
--- a/po/gl.po
+++ b/po/gl.po
@@ -1,7 +1,7 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
-#
+#
# Translators:
# Daniel Muñiz Fontoira <dani at damufo.com>, 2018
# Leandro Regueiro <leandro.regueiro at gmail.com>, 2008-2009
@@ -9,216 +9,221 @@ msgid ""
msgstr ""
"Project-Id-Version: Xfce Panel Plugins\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-01-04 06:32+0100\n"
+"POT-Creation-Date: 2018-04-21 18:00+0300\n"
"PO-Revision-Date: 2018-01-15 08:34+0000\n"
"Last-Translator: Daniel Muñiz Fontoira <dani at damufo.com>\n"
-"Language-Team: Galician (http://www.transifex.com/xfce/xfce-panel-plugins/language/gl/)\n"
+"Language-Team: Galician (http://www.transifex.com/xfce/xfce-panel-plugins/"
+"language/gl/)\n"
+"Language: gl\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: gl\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: ../panel-plugin/xfcetimer.c:153
+#: ../panel-plugin/xfcetimer.c:167
#, c-format
msgid "%dh %dm %ds left"
msgstr "quedan %dh %dm %ds"
-#: ../panel-plugin/xfcetimer.c:156
+#: ../panel-plugin/xfcetimer.c:170
#, c-format
msgid "%dm %ds left"
msgstr "quedan %dm %ds"
-#: ../panel-plugin/xfcetimer.c:159
+#: ../panel-plugin/xfcetimer.c:173
#, c-format
msgid "%ds left"
msgstr "quedan %ds"
-#: ../panel-plugin/xfcetimer.c:163
+#: ../panel-plugin/xfcetimer.c:177
msgid " (Paused)"
msgstr "(En pausa)"
-#: ../panel-plugin/xfcetimer.c:198
+#. Display the name of the alarm when the countdown ends
+#: ../panel-plugin/xfcetimer.c:213
#, c-format
msgid ""
"Beeep! :) \n"
"Time is up for the alarm %s."
-msgstr "Biiiiiip! :) \nEsgotouse o tempo do temporizador %s."
+msgstr ""
+"Biiiiiip! :) \n"
+"Esgotouse o tempo do temporizador %s."
-#: ../panel-plugin/xfcetimer.c:210 ../panel-plugin/xfcetimer.c:1493
+#: ../panel-plugin/xfcetimer.c:221 ../panel-plugin/xfcetimer.c:1508
msgid "Close"
msgstr "Pechar"
-#: ../panel-plugin/xfcetimer.c:211
+#: ../panel-plugin/xfcetimer.c:222
msgid "Rerun the timer"
msgstr "Reiniciar o temporizador"
-#: ../panel-plugin/xfcetimer.c:526
+#: ../panel-plugin/xfcetimer.c:515
+msgid "Pause timer"
+msgstr "Poñer en pausa o temporizador"
+
+#: ../panel-plugin/xfcetimer.c:523
msgid "Resume timer"
msgstr "Retomar o temporizador"
-#: ../panel-plugin/xfcetimer.c:533 ../panel-plugin/xfcetimer.c:556
+#: ../panel-plugin/xfcetimer.c:534
msgid "Stop timer"
msgstr "Deter o temporizador"
-#: ../panel-plugin/xfcetimer.c:545
-msgid "Pause timer"
-msgstr "Poñer en pausa o temporizador"
-
-#: ../panel-plugin/xfcetimer.c:558
-msgid "Start timer"
-msgstr "Iniciar o temporizador"
-
-#: ../panel-plugin/xfcetimer.c:568
-msgid "Stop the alarm"
-msgstr "Deter a alarma"
-
-#: ../panel-plugin/xfcetimer.c:622 ../panel-plugin/xfcetimer.c:696
+#: ../panel-plugin/xfcetimer.c:614 ../panel-plugin/xfcetimer.c:693
#, c-format
msgid "%dh %dm %ds"
msgstr "%dh %dm %ds"
-#: ../panel-plugin/xfcetimer.c:624 ../panel-plugin/xfcetimer.c:698
+#: ../panel-plugin/xfcetimer.c:616 ../panel-plugin/xfcetimer.c:695
#, c-format
msgid "%dm %ds"
msgstr "%dm %ds"
-#: ../panel-plugin/xfcetimer.c:626 ../panel-plugin/xfcetimer.c:700
+#: ../panel-plugin/xfcetimer.c:618 ../panel-plugin/xfcetimer.c:697
#, c-format
msgid "%ds"
msgstr "%ds"
-#: ../panel-plugin/xfcetimer.c:634 ../panel-plugin/xfcetimer.c:709
+#: ../panel-plugin/xfcetimer.c:626 ../panel-plugin/xfcetimer.c:706
#, c-format
msgid "At %02d:%02d"
msgstr "Ás %02d:%02d"
-#: ../panel-plugin/xfcetimer.c:815
+#: ../panel-plugin/xfcetimer.c:812
msgid "Name:"
msgstr "Nome:"
-#: ../panel-plugin/xfcetimer.c:824
+#: ../panel-plugin/xfcetimer.c:821
msgid "Enter the countdown time"
msgstr "Introducir a duración (tempo) do temporizador"
-#: ../panel-plugin/xfcetimer.c:829
+#: ../panel-plugin/xfcetimer.c:826
msgid "Enter the time of alarm (24h format)"
msgstr "Introducir a hora do temporizador (formato 24h)"
-#: ../panel-plugin/xfcetimer.c:844
+#: ../panel-plugin/xfcetimer.c:841
msgid "h "
msgstr "h "
-#: ../panel-plugin/xfcetimer.c:851
+#: ../panel-plugin/xfcetimer.c:848
msgid "m "
msgstr "m "
-#: ../panel-plugin/xfcetimer.c:858
+#: ../panel-plugin/xfcetimer.c:855
msgid "s "
msgstr "s "
-#: ../panel-plugin/xfcetimer.c:862
+#: ../panel-plugin/xfcetimer.c:859
msgid "or"
msgstr "ou"
#. **************
-#: ../panel-plugin/xfcetimer.c:884
+#: ../panel-plugin/xfcetimer.c:881
msgid "Command to run:"
msgstr "Orde a executar:"
-#: ../panel-plugin/xfcetimer.c:898
+#. **************
+#. add recurring alarm check button
+#: ../panel-plugin/xfcetimer.c:892
+msgid "Recurring alarm"
+msgstr ""
+
+#. add alarm autostart check button
+#: ../panel-plugin/xfcetimer.c:899
+msgid "Auto start when plugin loads"
+msgstr ""
+
+#: ../panel-plugin/xfcetimer.c:909
msgid "Cancel"
msgstr "Cancelar"
-#: ../panel-plugin/xfcetimer.c:903
+#: ../panel-plugin/xfcetimer.c:914
msgid "Accept"
msgstr "Aceptar"
-#: ../panel-plugin/xfcetimer.c:914
+#: ../panel-plugin/xfcetimer.c:925
msgid "Add new alarm"
msgstr "Engadir temporizador"
-#: ../panel-plugin/xfcetimer.c:951
+#: ../panel-plugin/xfcetimer.c:966
msgid "Edit alarm"
msgstr "Modificar temporizador"
-#: ../panel-plugin/xfcetimer.c:1491
+#: ../panel-plugin/xfcetimer.c:1506
msgid "Xfce4 Timer Options"
msgstr "Opcións de Xfce4 Timer Plugin"
-#: ../panel-plugin/xfcetimer.c:1531
+#: ../panel-plugin/xfcetimer.c:1546
msgid "Timer name"
msgstr "Nome do temporizador"
-#: ../panel-plugin/xfcetimer.c:1536
+#: ../panel-plugin/xfcetimer.c:1551
msgid ""
"Countdown period /\n"
"Alarm time"
-msgstr "Duración/\nHora"
+msgstr ""
+"Duración/\n"
+"Hora"
-#: ../panel-plugin/xfcetimer.c:1539
+#: ../panel-plugin/xfcetimer.c:1554
msgid "Alarm command"
msgstr "Orde a executar"
-#: ../panel-plugin/xfcetimer.c:1557
+#: ../panel-plugin/xfcetimer.c:1572
msgid "Add"
msgstr "Engadir"
-#: ../panel-plugin/xfcetimer.c:1565
+#: ../panel-plugin/xfcetimer.c:1580
msgid "Edit"
msgstr "Modificar"
-#: ../panel-plugin/xfcetimer.c:1573
+#: ../panel-plugin/xfcetimer.c:1588
msgid "Remove"
msgstr "Eliminar"
-#: ../panel-plugin/xfcetimer.c:1581
+#: ../panel-plugin/xfcetimer.c:1596
msgid "Up"
msgstr "Subir"
-#: ../panel-plugin/xfcetimer.c:1588
+#: ../panel-plugin/xfcetimer.c:1603
msgid "Down"
msgstr "Baixar"
-#: ../panel-plugin/xfcetimer.c:1604
+#: ../panel-plugin/xfcetimer.c:1619
msgid "Don't display a warning if an alarm command is set"
msgstr "Non amosar a xanela de advertencia se se definiu unha orde a executar"
-#: ../panel-plugin/xfcetimer.c:1610
-msgid "Selecting a timer starts it"
-msgstr "Ao seleccionar un temporizador/alarma é iniciado"
-
#. Default alarm command config
-#: ../panel-plugin/xfcetimer.c:1623
+#: ../panel-plugin/xfcetimer.c:1631
msgid "Use a default alarm command"
msgstr "Executar a orde predeterminada de alarma"
-#: ../panel-plugin/xfcetimer.c:1632
+#: ../panel-plugin/xfcetimer.c:1640
msgid "Default command: "
msgstr "Orde de alarma predeterminada:"
#. Alarm repetitions config
-#: ../panel-plugin/xfcetimer.c:1648
+#: ../panel-plugin/xfcetimer.c:1656
msgid "Repeat the alarm command"
msgstr "Repetir a orde de alarma a executar"
-#: ../panel-plugin/xfcetimer.c:1657
+#: ../panel-plugin/xfcetimer.c:1665
msgid "Number of repetitions"
msgstr "Número de repeticións"
-#: ../panel-plugin/xfcetimer.c:1666
+#: ../panel-plugin/xfcetimer.c:1674
msgid " Time interval (sec.)"
msgstr " Intervalo de tempo (seg.)"
-#: ../panel-plugin/xfcetimer.c:1728
+#: ../panel-plugin/xfcetimer.c:1736
msgid "About xfce4-timer-plugin"
msgstr "Sobre Xfce4 Timer Plugin"
-#: ../panel-plugin/xfcetimer.c:1731
+#: ../panel-plugin/xfcetimer.c:1739
msgid "A plugin to define countdown timers or alarms at given times."
msgstr "Un engadido para definir temporizadores ou alarmas."
-#: ../panel-plugin/xfcetimer.c:1734
+#: ../panel-plugin/xfcetimer.c:1742
msgid "Copyright (c) 2005-2018\n"
msgstr "Copyright (c) 2005-2018\n"
@@ -229,3 +234,12 @@ msgstr "Xfce4 Timer"
#: ../panel-plugin/xfce4-timer-plugin.desktop.in.h:2
msgid "Timer plugin for Xfce panel"
msgstr "Engadido de temporizador para o panel de Xfce"
+
+#~ msgid "Selecting a timer starts it"
+#~ msgstr "Ao seleccionar un temporizador/alarma é iniciado"
+
+#~ msgid "Start timer"
+#~ msgstr "Iniciar o temporizador"
+
+#~ msgid "Stop the alarm"
+#~ msgstr "Deter a alarma"
diff --git a/po/he.po b/po/he.po
index f62884c..8f0c741 100644
--- a/po/he.po
+++ b/po/he.po
@@ -1,223 +1,228 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
-#
+#
# Translators:
# Elishai Eliyahu <e1907 at mm.st>, 2016,2018
msgid ""
msgstr ""
"Project-Id-Version: Xfce Panel Plugins\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-01-04 06:32+0100\n"
+"POT-Creation-Date: 2018-04-21 18:00+0300\n"
"PO-Revision-Date: 2018-01-07 16:51+0000\n"
"Last-Translator: Elishai Eliyahu <e1907 at mm.st>\n"
-"Language-Team: Hebrew (http://www.transifex.com/xfce/xfce-panel-plugins/language/he/)\n"
+"Language-Team: Hebrew (http://www.transifex.com/xfce/xfce-panel-plugins/"
+"language/he/)\n"
+"Language: he\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: he\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: ../panel-plugin/xfcetimer.c:153
+#: ../panel-plugin/xfcetimer.c:167
#, c-format
msgid "%dh %dm %ds left"
msgstr "%dh %dm %ds נשארו"
-#: ../panel-plugin/xfcetimer.c:156
+#: ../panel-plugin/xfcetimer.c:170
#, c-format
msgid "%dm %ds left"
msgstr "%dm %ds נשארו"
-#: ../panel-plugin/xfcetimer.c:159
+#: ../panel-plugin/xfcetimer.c:173
#, c-format
msgid "%ds left"
msgstr "%ds נשארו"
-#: ../panel-plugin/xfcetimer.c:163
+#: ../panel-plugin/xfcetimer.c:177
msgid " (Paused)"
msgstr "(מופסק)"
-#: ../panel-plugin/xfcetimer.c:198
+#. Display the name of the alarm when the countdown ends
+#: ../panel-plugin/xfcetimer.c:213
#, c-format
msgid ""
"Beeep! :) \n"
"Time is up for the alarm %s."
-msgstr "ביייפ! :)\nהזמן של האזעקה %s עבר."
+msgstr ""
+"ביייפ! :)\n"
+"הזמן של האזעקה %s עבר."
-#: ../panel-plugin/xfcetimer.c:210 ../panel-plugin/xfcetimer.c:1493
+#: ../panel-plugin/xfcetimer.c:221 ../panel-plugin/xfcetimer.c:1508
msgid "Close"
msgstr "סגור"
-#: ../panel-plugin/xfcetimer.c:211
+#: ../panel-plugin/xfcetimer.c:222
msgid "Rerun the timer"
msgstr "הפעל מחדש את קוצב הזמן"
-#: ../panel-plugin/xfcetimer.c:526
+#: ../panel-plugin/xfcetimer.c:515
+msgid "Pause timer"
+msgstr "הפסק את קוצב הזמן"
+
+#: ../panel-plugin/xfcetimer.c:523
msgid "Resume timer"
msgstr "הפעל בחזרה את קוצב הזמן"
-#: ../panel-plugin/xfcetimer.c:533 ../panel-plugin/xfcetimer.c:556
+#: ../panel-plugin/xfcetimer.c:534
msgid "Stop timer"
msgstr "עצור את קוצב הזמן"
-#: ../panel-plugin/xfcetimer.c:545
-msgid "Pause timer"
-msgstr "הפסק את קוצב הזמן"
-
-#: ../panel-plugin/xfcetimer.c:558
-msgid "Start timer"
-msgstr "התחל את קוצב הזמן"
-
-#: ../panel-plugin/xfcetimer.c:568
-msgid "Stop the alarm"
-msgstr "עצור את האזעקה"
-
-#: ../panel-plugin/xfcetimer.c:622 ../panel-plugin/xfcetimer.c:696
+#: ../panel-plugin/xfcetimer.c:614 ../panel-plugin/xfcetimer.c:693
#, c-format
msgid "%dh %dm %ds"
msgstr "%dh %dm %ds"
-#: ../panel-plugin/xfcetimer.c:624 ../panel-plugin/xfcetimer.c:698
+#: ../panel-plugin/xfcetimer.c:616 ../panel-plugin/xfcetimer.c:695
#, c-format
msgid "%dm %ds"
msgstr "%dm %ds"
-#: ../panel-plugin/xfcetimer.c:626 ../panel-plugin/xfcetimer.c:700
+#: ../panel-plugin/xfcetimer.c:618 ../panel-plugin/xfcetimer.c:697
#, c-format
msgid "%ds"
msgstr "%ds"
-#: ../panel-plugin/xfcetimer.c:634 ../panel-plugin/xfcetimer.c:709
+#: ../panel-plugin/xfcetimer.c:626 ../panel-plugin/xfcetimer.c:706
#, c-format
msgid "At %02d:%02d"
msgstr "ב- %02d:%02d"
-#: ../panel-plugin/xfcetimer.c:815
+#: ../panel-plugin/xfcetimer.c:812
msgid "Name:"
msgstr "שם:"
-#: ../panel-plugin/xfcetimer.c:824
+#: ../panel-plugin/xfcetimer.c:821
msgid "Enter the countdown time"
msgstr "הכנס את זמן הספירה"
-#: ../panel-plugin/xfcetimer.c:829
+#: ../panel-plugin/xfcetimer.c:826
msgid "Enter the time of alarm (24h format)"
msgstr "הכנס את זמן האזעקה (פורמט 24 שעות)"
-#: ../panel-plugin/xfcetimer.c:844
+#: ../panel-plugin/xfcetimer.c:841
msgid "h "
msgstr "שעה"
-#: ../panel-plugin/xfcetimer.c:851
+#: ../panel-plugin/xfcetimer.c:848
msgid "m "
msgstr "דקה"
-#: ../panel-plugin/xfcetimer.c:858
+#: ../panel-plugin/xfcetimer.c:855
msgid "s "
msgstr "שניה"
-#: ../panel-plugin/xfcetimer.c:862
+#: ../panel-plugin/xfcetimer.c:859
msgid "or"
msgstr "או"
#. **************
-#: ../panel-plugin/xfcetimer.c:884
+#: ../panel-plugin/xfcetimer.c:881
msgid "Command to run:"
msgstr "פקודה להפעלה:"
-#: ../panel-plugin/xfcetimer.c:898
+#. **************
+#. add recurring alarm check button
+#: ../panel-plugin/xfcetimer.c:892
+msgid "Recurring alarm"
+msgstr ""
+
+#. add alarm autostart check button
+#: ../panel-plugin/xfcetimer.c:899
+msgid "Auto start when plugin loads"
+msgstr ""
+
+#: ../panel-plugin/xfcetimer.c:909
msgid "Cancel"
msgstr "ביטול"
-#: ../panel-plugin/xfcetimer.c:903
+#: ../panel-plugin/xfcetimer.c:914
msgid "Accept"
msgstr "אישור"
-#: ../panel-plugin/xfcetimer.c:914
+#: ../panel-plugin/xfcetimer.c:925
msgid "Add new alarm"
msgstr "הוסף אזעקה חדשה"
-#: ../panel-plugin/xfcetimer.c:951
+#: ../panel-plugin/xfcetimer.c:966
msgid "Edit alarm"
msgstr "ערוך אזעקה"
-#: ../panel-plugin/xfcetimer.c:1491
+#: ../panel-plugin/xfcetimer.c:1506
msgid "Xfce4 Timer Options"
msgstr "אפשרויות קוצב זמן Xfce4 "
-#: ../panel-plugin/xfcetimer.c:1531
+#: ../panel-plugin/xfcetimer.c:1546
msgid "Timer name"
msgstr "שם קוצב זמן"
-#: ../panel-plugin/xfcetimer.c:1536
+#: ../panel-plugin/xfcetimer.c:1551
msgid ""
"Countdown period /\n"
"Alarm time"
-msgstr "משך ספירה /\nזמן אזעקה"
+msgstr ""
+"משך ספירה /\n"
+"זמן אזעקה"
-#: ../panel-plugin/xfcetimer.c:1539
+#: ../panel-plugin/xfcetimer.c:1554
msgid "Alarm command"
msgstr "פקודת אזעקה"
-#: ../panel-plugin/xfcetimer.c:1557
+#: ../panel-plugin/xfcetimer.c:1572
msgid "Add"
msgstr "הוספה"
-#: ../panel-plugin/xfcetimer.c:1565
+#: ../panel-plugin/xfcetimer.c:1580
msgid "Edit"
msgstr "עריכה"
-#: ../panel-plugin/xfcetimer.c:1573
+#: ../panel-plugin/xfcetimer.c:1588
msgid "Remove"
msgstr "הסרה"
-#: ../panel-plugin/xfcetimer.c:1581
+#: ../panel-plugin/xfcetimer.c:1596
msgid "Up"
msgstr "למעלה"
-#: ../panel-plugin/xfcetimer.c:1588
+#: ../panel-plugin/xfcetimer.c:1603
msgid "Down"
msgstr "למטה"
-#: ../panel-plugin/xfcetimer.c:1604
+#: ../panel-plugin/xfcetimer.c:1619
msgid "Don't display a warning if an alarm command is set"
msgstr "אל תציג אזהרה אם פקודת אזעקה מופעלת"
-#: ../panel-plugin/xfcetimer.c:1610
-msgid "Selecting a timer starts it"
-msgstr "בחירת קוצב זמן מפעילה אותו"
-
#. Default alarm command config
-#: ../panel-plugin/xfcetimer.c:1623
+#: ../panel-plugin/xfcetimer.c:1631
msgid "Use a default alarm command"
msgstr "השתמש בפקודת אזעקה ברירת מחדל"
-#: ../panel-plugin/xfcetimer.c:1632
+#: ../panel-plugin/xfcetimer.c:1640
msgid "Default command: "
msgstr "פקודת ברירת מחדל:"
#. Alarm repetitions config
-#: ../panel-plugin/xfcetimer.c:1648
+#: ../panel-plugin/xfcetimer.c:1656
msgid "Repeat the alarm command"
msgstr "חזור על פקודת האזעקה"
-#: ../panel-plugin/xfcetimer.c:1657
+#: ../panel-plugin/xfcetimer.c:1665
msgid "Number of repetitions"
msgstr "מספר חזרות"
-#: ../panel-plugin/xfcetimer.c:1666
+#: ../panel-plugin/xfcetimer.c:1674
msgid " Time interval (sec.)"
msgstr "מרווח זמן (שניה)"
-#: ../panel-plugin/xfcetimer.c:1728
+#: ../panel-plugin/xfcetimer.c:1736
msgid "About xfce4-timer-plugin"
msgstr "אודות תוסף קוצב זמן xfce4 "
-#: ../panel-plugin/xfcetimer.c:1731
+#: ../panel-plugin/xfcetimer.c:1739
msgid "A plugin to define countdown timers or alarms at given times."
msgstr "תוסף להגדרת קוצבי זמן ספירה או אזעקות בזמנים נתונים."
-#: ../panel-plugin/xfcetimer.c:1734
+#: ../panel-plugin/xfcetimer.c:1742
msgid "Copyright (c) 2005-2018\n"
msgstr "זכויות יוצרים (c) 2005-2018\n"
@@ -228,3 +233,12 @@ msgstr "קוצב זמן Xfce4 "
#: ../panel-plugin/xfce4-timer-plugin.desktop.in.h:2
msgid "Timer plugin for Xfce panel"
msgstr "תוסף קוצב זמן עבור פאנל Xfce "
+
+#~ msgid "Selecting a timer starts it"
+#~ msgstr "בחירת קוצב זמן מפעילה אותו"
+
+#~ msgid "Start timer"
+#~ msgstr "התחל את קוצב הזמן"
+
+#~ msgid "Stop the alarm"
+#~ msgstr "עצור את האזעקה"
diff --git a/po/hr.po b/po/hr.po
index 2070397..bf8aff3 100644
--- a/po/hr.po
+++ b/po/hr.po
@@ -1,7 +1,7 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
-#
+#
# Translators:
# Edin Veskovic <edin.lockedin at gmail.com>, 2018
# Edin Veskovic <edin.lockedin at gmail.com>, 2014
@@ -10,217 +10,227 @@ msgid ""
msgstr ""
"Project-Id-Version: Xfce Panel Plugins\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-01-02 00:32+0100\n"
+"POT-Creation-Date: 2018-04-21 18:00+0300\n"
"PO-Revision-Date: 2018-01-02 11:12+0000\n"
"Last-Translator: Edin Veskovic <edin.lockedin at gmail.com>\n"
-"Language-Team: Croatian (http://www.transifex.com/xfce/xfce-panel-plugins/language/hr/)\n"
+"Language-Team: Croatian (http://www.transifex.com/xfce/xfce-panel-plugins/"
+"language/hr/)\n"
+"Language: hr\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: hr\n"
-"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
+"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
+"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
-#: ../panel-plugin/xfcetimer.c:153
+#: ../panel-plugin/xfcetimer.c:167
#, c-format
msgid "%dh %dm %ds left"
msgstr "%dh %dm %ds preostalo"
-#: ../panel-plugin/xfcetimer.c:156
+#: ../panel-plugin/xfcetimer.c:170
#, c-format
msgid "%dm %ds left"
msgstr "%dm %ds preostalo"
-#: ../panel-plugin/xfcetimer.c:159
+#: ../panel-plugin/xfcetimer.c:173
#, c-format
msgid "%ds left"
msgstr "%ds preostalo"
-#: ../panel-plugin/xfcetimer.c:163
+#: ../panel-plugin/xfcetimer.c:177
msgid " (Paused)"
msgstr "(Pauzirano)"
-#: ../panel-plugin/xfcetimer.c:198
+#. Display the name of the alarm when the countdown ends
+#: ../panel-plugin/xfcetimer.c:213
#, c-format
msgid ""
"Beeep! :) \n"
"Time is up for the alarm %s."
-msgstr "Beeep! :)\nVrijeme alarma je isteklo %s."
+msgstr ""
+"Beeep! :)\n"
+"Vrijeme alarma je isteklo %s."
-#: ../panel-plugin/xfcetimer.c:210 ../panel-plugin/xfcetimer.c:1493
+#: ../panel-plugin/xfcetimer.c:221 ../panel-plugin/xfcetimer.c:1508
msgid "Close"
msgstr "Zatvori"
-#: ../panel-plugin/xfcetimer.c:211
+#: ../panel-plugin/xfcetimer.c:222
msgid "Rerun the timer"
msgstr "Ponovno pokreni mjerač vremena"
-#: ../panel-plugin/xfcetimer.c:526
+#: ../panel-plugin/xfcetimer.c:515
+msgid "Pause timer"
+msgstr "Pauziraj mjerač vremena"
+
+#: ../panel-plugin/xfcetimer.c:523
msgid "Resume timer"
msgstr "Nastavi mjerač vremena"
-#: ../panel-plugin/xfcetimer.c:533 ../panel-plugin/xfcetimer.c:556
+#: ../panel-plugin/xfcetimer.c:534
msgid "Stop timer"
msgstr "Zaustavi mjerač vremena"
-#: ../panel-plugin/xfcetimer.c:545
-msgid "Pause timer"
-msgstr "Pauziraj mjerač vremena"
-
-#: ../panel-plugin/xfcetimer.c:558
-msgid "Start timer"
-msgstr "Pokreni mjerač vremena"
-
-#: ../panel-plugin/xfcetimer.c:568
-msgid "Stop the alarm"
-msgstr "Zaustavi alarm"
-
-#: ../panel-plugin/xfcetimer.c:622 ../panel-plugin/xfcetimer.c:696
+#: ../panel-plugin/xfcetimer.c:614 ../panel-plugin/xfcetimer.c:693
#, c-format
msgid "%dh %dm %ds"
msgstr "%dh %dm %ds"
-#: ../panel-plugin/xfcetimer.c:624 ../panel-plugin/xfcetimer.c:698
+#: ../panel-plugin/xfcetimer.c:616 ../panel-plugin/xfcetimer.c:695
#, c-format
msgid "%dm %ds"
msgstr "%dm %ds"
-#: ../panel-plugin/xfcetimer.c:626 ../panel-plugin/xfcetimer.c:700
+#: ../panel-plugin/xfcetimer.c:618 ../panel-plugin/xfcetimer.c:697
#, c-format
msgid "%ds"
msgstr "%ds"
-#: ../panel-plugin/xfcetimer.c:634 ../panel-plugin/xfcetimer.c:709
+#: ../panel-plugin/xfcetimer.c:626 ../panel-plugin/xfcetimer.c:706
#, c-format
msgid "At %02d:%02d"
msgstr "U %02d:%02d"
-#: ../panel-plugin/xfcetimer.c:815
+#: ../panel-plugin/xfcetimer.c:812
msgid "Name:"
msgstr "Ime:"
-#: ../panel-plugin/xfcetimer.c:824
+#: ../panel-plugin/xfcetimer.c:821
msgid "Enter the countdown time"
msgstr "Unesite vrijeme odbrojavanja"
-#: ../panel-plugin/xfcetimer.c:829
+#: ../panel-plugin/xfcetimer.c:826
msgid "Enter the time of alarm (24h format)"
msgstr "Unesite vrijeme alarma (format 24 sata)"
-#: ../panel-plugin/xfcetimer.c:844
+#: ../panel-plugin/xfcetimer.c:841
msgid "h "
msgstr "h "
-#: ../panel-plugin/xfcetimer.c:851
+#: ../panel-plugin/xfcetimer.c:848
msgid "m "
msgstr "m "
-#: ../panel-plugin/xfcetimer.c:858
+#: ../panel-plugin/xfcetimer.c:855
msgid "s "
msgstr "s "
-#: ../panel-plugin/xfcetimer.c:862
+#: ../panel-plugin/xfcetimer.c:859
msgid "or"
msgstr "ili"
#. **************
-#: ../panel-plugin/xfcetimer.c:884
+#: ../panel-plugin/xfcetimer.c:881
msgid "Command to run:"
msgstr "Pokreni naredbu:"
-#: ../panel-plugin/xfcetimer.c:898
+#. **************
+#. add recurring alarm check button
+#: ../panel-plugin/xfcetimer.c:892
+msgid "Recurring alarm"
+msgstr ""
+
+#. add alarm autostart check button
+#: ../panel-plugin/xfcetimer.c:899
+msgid "Auto start when plugin loads"
+msgstr ""
+
+#: ../panel-plugin/xfcetimer.c:909
msgid "Cancel"
msgstr "Odustani"
-#: ../panel-plugin/xfcetimer.c:903
-msgid "Acept"
+#: ../panel-plugin/xfcetimer.c:914
+#, fuzzy
+msgid "Accept"
msgstr "Prihvati"
-#: ../panel-plugin/xfcetimer.c:914
+#: ../panel-plugin/xfcetimer.c:925
msgid "Add new alarm"
msgstr "Dodaj novi alarm"
-#: ../panel-plugin/xfcetimer.c:951
+#: ../panel-plugin/xfcetimer.c:966
msgid "Edit alarm"
msgstr "Uredi alarm"
-#: ../panel-plugin/xfcetimer.c:1491
+#: ../panel-plugin/xfcetimer.c:1506
msgid "Xfce4 Timer Options"
msgstr "Opcije Xfce4 mjerača vremena"
-#: ../panel-plugin/xfcetimer.c:1531
+#: ../panel-plugin/xfcetimer.c:1546
msgid "Timer name"
msgstr "Ime mjerača vremena"
-#: ../panel-plugin/xfcetimer.c:1536
+#: ../panel-plugin/xfcetimer.c:1551
msgid ""
"Countdown period /\n"
"Alarm time"
-msgstr "Period odbrojavanja /\nVrijeme alarma"
+msgstr ""
+"Period odbrojavanja /\n"
+"Vrijeme alarma"
-#: ../panel-plugin/xfcetimer.c:1539
+#: ../panel-plugin/xfcetimer.c:1554
msgid "Alarm command"
msgstr "Naredba alarma"
-#: ../panel-plugin/xfcetimer.c:1557
+#: ../panel-plugin/xfcetimer.c:1572
msgid "Add"
msgstr "Dodaj"
-#: ../panel-plugin/xfcetimer.c:1565
+#: ../panel-plugin/xfcetimer.c:1580
msgid "Edit"
msgstr "Uredi"
-#: ../panel-plugin/xfcetimer.c:1573
+#: ../panel-plugin/xfcetimer.c:1588
msgid "Remove"
msgstr "Obriši"
-#: ../panel-plugin/xfcetimer.c:1581
+#: ../panel-plugin/xfcetimer.c:1596
msgid "Up"
msgstr "Gore"
-#: ../panel-plugin/xfcetimer.c:1588
+#: ../panel-plugin/xfcetimer.c:1603
msgid "Down"
msgstr "Dole"
-#: ../panel-plugin/xfcetimer.c:1604
+#: ../panel-plugin/xfcetimer.c:1619
msgid "Don't display a warning if an alarm command is set"
msgstr "Ne prikazuj upozorenje ako je postavljena naredba alarma"
-#: ../panel-plugin/xfcetimer.c:1610
-msgid "Selecting a timer starts it"
-msgstr "Pokreni mjerač vremena odabirom"
-
#. Default alarm command config
-#: ../panel-plugin/xfcetimer.c:1623
+#: ../panel-plugin/xfcetimer.c:1631
msgid "Use a default alarm command"
msgstr "Koristi zadanu naredbu alarma"
-#: ../panel-plugin/xfcetimer.c:1632
+#: ../panel-plugin/xfcetimer.c:1640
msgid "Default command: "
msgstr "Zadana naredba:"
#. Alarm repetitions config
-#: ../panel-plugin/xfcetimer.c:1648
+#: ../panel-plugin/xfcetimer.c:1656
msgid "Repeat the alarm command"
msgstr "Ponovi naredbu alarma"
-#: ../panel-plugin/xfcetimer.c:1657
+#: ../panel-plugin/xfcetimer.c:1665
msgid "Number of repetitions"
msgstr "Broj ponavljanja"
-#: ../panel-plugin/xfcetimer.c:1666
+#: ../panel-plugin/xfcetimer.c:1674
msgid " Time interval (sec.)"
msgstr "Vremenski interval (sec.)"
-#: ../panel-plugin/xfcetimer.c:1728
+#: ../panel-plugin/xfcetimer.c:1736
msgid "About xfce4-timer-plugin"
msgstr "O priključku xfce4-mjerač vremena"
-#: ../panel-plugin/xfcetimer.c:1731
+#: ../panel-plugin/xfcetimer.c:1739
msgid "A plugin to define countdown timers or alarms at given times."
-msgstr "Priključak za definiranje odbrojavanja mjerača vremena ili alarma u dano vrijeme."
+msgstr ""
+"Priključak za definiranje odbrojavanja mjerača vremena ili alarma u dano "
+"vrijeme."
-#: ../panel-plugin/xfcetimer.c:1734
-msgid "Copyright (c) 2005-2017\n"
+#: ../panel-plugin/xfcetimer.c:1742
+#, fuzzy
+msgid "Copyright (c) 2005-2018\n"
msgstr "Copyright (c) 2005-2017\n"
#: ../panel-plugin/xfce4-timer-plugin.desktop.in.h:1
@@ -230,3 +240,12 @@ msgstr "Xfce4 Mjerač vremena"
#: ../panel-plugin/xfce4-timer-plugin.desktop.in.h:2
msgid "Timer plugin for Xfce panel"
msgstr "Priključak mjerača vremena za Xfce4 ploču"
+
+#~ msgid "Selecting a timer starts it"
+#~ msgstr "Pokreni mjerač vremena odabirom"
+
+#~ msgid "Start timer"
+#~ msgstr "Pokreni mjerač vremena"
+
+#~ msgid "Stop the alarm"
+#~ msgstr "Zaustavi alarm"
diff --git a/po/hu.po b/po/hu.po
index 3877eef..abdc346 100644
--- a/po/hu.po
+++ b/po/hu.po
@@ -1,7 +1,7 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
-#
+#
# Translators:
# Benedek Imre <nucleo at indamail.hu>, 2013
# Gabor Kelemen <kelemeng at gnome dot hu>, 2009
@@ -9,197 +9,244 @@ msgid ""
msgstr ""
"Project-Id-Version: Xfce Panel Plugins\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-06-05 06:31+0200\n"
+"POT-Creation-Date: 2018-04-21 18:00+0300\n"
"PO-Revision-Date: 2017-09-19 18:06+0000\n"
"Last-Translator: Xfce Bot <transifex at xfce.org>\n"
-"Language-Team: Hungarian (http://www.transifex.com/xfce/xfce-panel-plugins/language/hu/)\n"
+"Language-Team: Hungarian (http://www.transifex.com/xfce/xfce-panel-plugins/"
+"language/hu/)\n"
+"Language: hu\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: hu\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: ../src/xfcetimer.c:146
+#: ../panel-plugin/xfcetimer.c:167
#, c-format
msgid "%dh %dm %ds left"
msgstr "%dó %dp %dmp van hátra"
-#: ../src/xfcetimer.c:149
+#: ../panel-plugin/xfcetimer.c:170
#, c-format
msgid "%dm %ds left"
msgstr "%dp %dmp van hátra"
-#: ../src/xfcetimer.c:151
+#: ../panel-plugin/xfcetimer.c:173
#, c-format
msgid "%ds left"
msgstr "%dmp van hátra"
-#: ../src/xfcetimer.c:154
+#: ../panel-plugin/xfcetimer.c:177
msgid " (Paused)"
msgstr "(Felfüggesztve)"
#. Display the name of the alarm when the countdown ends
-#: ../src/xfcetimer.c:188
+#: ../panel-plugin/xfcetimer.c:213
#, c-format
msgid ""
"Beeep! :) \n"
"Time is up for the alarm %s."
-msgstr "Csörrr! :)\nLejárt a(z) %s riasztás ideje."
+msgstr ""
+"Csörrr! :)\n"
+"Lejárt a(z) %s riasztás ideje."
-#: ../src/xfcetimer.c:198
+#: ../panel-plugin/xfcetimer.c:221 ../panel-plugin/xfcetimer.c:1508
+msgid "Close"
+msgstr ""
+
+#: ../panel-plugin/xfcetimer.c:222
msgid "Rerun the timer"
msgstr ""
-#: ../src/xfcetimer.c:487
+#: ../panel-plugin/xfcetimer.c:515
+msgid "Pause timer"
+msgstr "Időzítő felfüggesztése"
+
+#: ../panel-plugin/xfcetimer.c:523
msgid "Resume timer"
msgstr "Időzítő folytatása"
-#: ../src/xfcetimer.c:494 ../src/xfcetimer.c:550
+#: ../panel-plugin/xfcetimer.c:534
msgid "Stop timer"
msgstr "Időzítő leállítása"
-#: ../src/xfcetimer.c:538
-msgid "Pause timer"
-msgstr "Időzítő felfüggesztése"
-
-#: ../src/xfcetimer.c:552
-msgid "Start timer"
-msgstr "Időzítő indítása"
-
-#: ../src/xfcetimer.c:561
-msgid "Stop the alarm"
-msgstr "Figyelmeztetés leállítása"
-
-#: ../src/xfcetimer.c:618 ../src/xfcetimer.c:689
+#: ../panel-plugin/xfcetimer.c:614 ../panel-plugin/xfcetimer.c:693
#, c-format
msgid "%dh %dm %ds"
msgstr "%dó %dp %dmp"
-#: ../src/xfcetimer.c:620 ../src/xfcetimer.c:691
+#: ../panel-plugin/xfcetimer.c:616 ../panel-plugin/xfcetimer.c:695
#, c-format
msgid "%dm %ds"
msgstr "%dp %dmp"
-#: ../src/xfcetimer.c:622 ../src/xfcetimer.c:693
+#: ../panel-plugin/xfcetimer.c:618 ../panel-plugin/xfcetimer.c:697
#, c-format
msgid "%ds"
msgstr "%dmp"
-#: ../src/xfcetimer.c:631 ../src/xfcetimer.c:702
+#: ../panel-plugin/xfcetimer.c:626 ../panel-plugin/xfcetimer.c:706
#, c-format
msgid "At %02d:%02d"
msgstr "Ekkor: %02d.%02d"
-#: ../src/xfcetimer.c:801
+#: ../panel-plugin/xfcetimer.c:812
msgid "Name:"
msgstr "Név:"
-#. ********
-#: ../src/xfcetimer.c:809
+#: ../panel-plugin/xfcetimer.c:821
msgid "Enter the countdown time"
msgstr "Adja meg a visszaszámlálási időt"
-#: ../src/xfcetimer.c:812
+#: ../panel-plugin/xfcetimer.c:826
msgid "Enter the time of alarm (24h format)"
msgstr "Adja meg a figyelmeztetés időpontját (24 órás formátumban)"
-#: ../src/xfcetimer.c:824
+#: ../panel-plugin/xfcetimer.c:841
msgid "h "
msgstr "ó "
-#: ../src/xfcetimer.c:829
+#: ../panel-plugin/xfcetimer.c:848
msgid "m "
msgstr "p "
-#: ../src/xfcetimer.c:834
+#: ../panel-plugin/xfcetimer.c:855
msgid "s "
msgstr "mp "
-#: ../src/xfcetimer.c:837
+#: ../panel-plugin/xfcetimer.c:859
msgid "or"
msgstr "vagy"
#. **************
-#: ../src/xfcetimer.c:857
+#: ../panel-plugin/xfcetimer.c:881
msgid "Command to run:"
msgstr "Futtatandó parancs:"
-#: ../src/xfcetimer.c:887
+#. **************
+#. add recurring alarm check button
+#: ../panel-plugin/xfcetimer.c:892
+msgid "Recurring alarm"
+msgstr ""
+
+#. add alarm autostart check button
+#: ../panel-plugin/xfcetimer.c:899
+msgid "Auto start when plugin loads"
+msgstr ""
+
+#: ../panel-plugin/xfcetimer.c:909
+msgid "Cancel"
+msgstr ""
+
+#: ../panel-plugin/xfcetimer.c:914
+msgid "Accept"
+msgstr ""
+
+#: ../panel-plugin/xfcetimer.c:925
msgid "Add new alarm"
msgstr "Új figyelmeztetés hozzáadása"
-#: ../src/xfcetimer.c:924
+#: ../panel-plugin/xfcetimer.c:966
msgid "Edit alarm"
msgstr "Figyelmeztetés szerkesztése"
-#: ../src/xfcetimer.c:1495 ../src/xfcetimer.c:1504
+#: ../panel-plugin/xfcetimer.c:1506
msgid "Xfce4 Timer Options"
msgstr "Xfce 4 időzítő beállításai"
-#: ../src/xfcetimer.c:1506
-msgid "Xfce 4 Timer Plugin"
-msgstr "Xfce 4 Időzítő bővítmény"
-
-#: ../src/xfcetimer.c:1552
+#: ../panel-plugin/xfcetimer.c:1546
msgid "Timer name"
msgstr "Időzítő neve"
-#: ../src/xfcetimer.c:1557
+#: ../panel-plugin/xfcetimer.c:1551
msgid ""
"Countdown period /\n"
"Alarm time"
-msgstr "Visszaszámlálási idő/\nFigyelmeztetés ideje"
+msgstr ""
+"Visszaszámlálási idő/\n"
+"Figyelmeztetés ideje"
-#: ../src/xfcetimer.c:1561
+#: ../panel-plugin/xfcetimer.c:1554
msgid "Alarm command"
msgstr "Figyelmeztető parancs"
-#: ../src/xfcetimer.c:1617
-msgid "Don't display a warning if an alarm command is set"
-msgstr "Ne jelenjen meg figyelmeztetés, ha be van állítva figyelmeztető parancs"
+#: ../panel-plugin/xfcetimer.c:1572
+msgid "Add"
+msgstr ""
+
+#: ../panel-plugin/xfcetimer.c:1580
+msgid "Edit"
+msgstr ""
+
+#: ../panel-plugin/xfcetimer.c:1588
+msgid "Remove"
+msgstr ""
+
+#: ../panel-plugin/xfcetimer.c:1596
+msgid "Up"
+msgstr ""
+
+#: ../panel-plugin/xfcetimer.c:1603
+msgid "Down"
+msgstr ""
-#: ../src/xfcetimer.c:1622
-msgid "Selecting a timer starts it"
-msgstr "Az időzítő kiválasztása elindítja azt"
+#: ../panel-plugin/xfcetimer.c:1619
+msgid "Don't display a warning if an alarm command is set"
+msgstr ""
+"Ne jelenjen meg figyelmeztetés, ha be van állítva figyelmeztető parancs"
#. Default alarm command config
-#: ../src/xfcetimer.c:1630
+#: ../panel-plugin/xfcetimer.c:1631
msgid "Use a default alarm command"
msgstr "Alapértelmezett figyelmeztető parancs használata"
-#: ../src/xfcetimer.c:1637
+#: ../panel-plugin/xfcetimer.c:1640
msgid "Default command: "
msgstr "Alapértelmezett parancs:"
#. Alarm repetitions config
-#: ../src/xfcetimer.c:1649
+#: ../panel-plugin/xfcetimer.c:1656
msgid "Repeat the alarm command"
msgstr "A figyelmeztető parancs ismétlése"
-#: ../src/xfcetimer.c:1656
+#: ../panel-plugin/xfcetimer.c:1665
msgid "Number of repetitions"
msgstr "Ismétlések száma"
-#: ../src/xfcetimer.c:1662
+#: ../panel-plugin/xfcetimer.c:1674
msgid " Time interval (sec.)"
msgstr "Időköz (mp)"
-#: ../src/xfcetimer.c:1723
+#: ../panel-plugin/xfcetimer.c:1736
msgid "About xfce4-timer-plugin"
msgstr "Az Xfce 4 Időzítő bővítmény névjegye"
-#: ../src/xfcetimer.c:1728
+#: ../panel-plugin/xfcetimer.c:1739
msgid "A plugin to define countdown timers or alarms at given times."
-msgstr "Bővítmény visszaszámláló időzítőkhöz és riasztásokhoz a megadott időpontokban."
+msgstr ""
+"Bővítmény visszaszámláló időzítőkhöz és riasztásokhoz a megadott "
+"időpontokban."
-#: ../src/xfcetimer.c:1730
-msgid "Copyright (c) 2005-2013\n"
+#: ../panel-plugin/xfcetimer.c:1742
+#, fuzzy
+msgid "Copyright (c) 2005-2018\n"
msgstr "Copyright (c) 2005-2013\n"
-#: ../src/xfce4-timer.desktop.in.in.h:1
+#: ../panel-plugin/xfce4-timer-plugin.desktop.in.h:1
msgid "Xfce4 Timer"
msgstr "Xfce 4 időzítő"
-#: ../src/xfce4-timer.desktop.in.in.h:2
+#: ../panel-plugin/xfce4-timer-plugin.desktop.in.h:2
msgid "Timer plugin for Xfce panel"
msgstr "Időzítő bővítmény az Xfce panelhez"
+
+#~ msgid "Selecting a timer starts it"
+#~ msgstr "Az időzítő kiválasztása elindítja azt"
+
+#~ msgid "Start timer"
+#~ msgstr "Időzítő indítása"
+
+#~ msgid "Stop the alarm"
+#~ msgstr "Figyelmeztetés leállítása"
+
+#~ msgid "Xfce 4 Timer Plugin"
+#~ msgstr "Xfce 4 Időzítő bővítmény"
diff --git a/po/id.po b/po/id.po
index e5b70fb..aae2159 100644
--- a/po/id.po
+++ b/po/id.po
@@ -1,7 +1,7 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
-#
+#
# Translators:
# Andhika Padmawan <andhika.padmawan at gmail.com>, 2008
# Mohamad Hasan Al Banna <se7entime at openmailbox.org>, 2013
@@ -10,197 +10,243 @@ msgid ""
msgstr ""
"Project-Id-Version: Xfce Panel Plugins\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-06-05 06:31+0200\n"
+"POT-Creation-Date: 2018-04-21 18:00+0300\n"
"PO-Revision-Date: 2017-09-19 18:06+0000\n"
"Last-Translator: Kukuh Syafaat <syafaatkukuh at gmail.com>\n"
-"Language-Team: Indonesian (http://www.transifex.com/xfce/xfce-panel-plugins/language/id/)\n"
+"Language-Team: Indonesian (http://www.transifex.com/xfce/xfce-panel-plugins/"
+"language/id/)\n"
+"Language: id\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: id\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-#: ../src/xfcetimer.c:146
+#: ../panel-plugin/xfcetimer.c:167
#, c-format
msgid "%dh %dm %ds left"
msgstr "%dj %dm %dd tersisa"
-#: ../src/xfcetimer.c:149
+#: ../panel-plugin/xfcetimer.c:170
#, c-format
msgid "%dm %ds left"
msgstr "%dm %dd tersisa"
-#: ../src/xfcetimer.c:151
+#: ../panel-plugin/xfcetimer.c:173
#, c-format
msgid "%ds left"
msgstr "%dd tersisa"
-#: ../src/xfcetimer.c:154
+#: ../panel-plugin/xfcetimer.c:177
msgid " (Paused)"
msgstr "(Dijeda)"
#. Display the name of the alarm when the countdown ends
-#: ../src/xfcetimer.c:188
+#: ../panel-plugin/xfcetimer.c:213
#, c-format
msgid ""
"Beeep! :) \n"
"Time is up for the alarm %s."
-msgstr "Beeep! :)\nWaktunya habis untuk alarm %s."
+msgstr ""
+"Beeep! :)\n"
+"Waktunya habis untuk alarm %s."
+
+#: ../panel-plugin/xfcetimer.c:221 ../panel-plugin/xfcetimer.c:1508
+msgid "Close"
+msgstr ""
-#: ../src/xfcetimer.c:198
+#: ../panel-plugin/xfcetimer.c:222
msgid "Rerun the timer"
msgstr "Jalankan ulang pengukur waktu"
-#: ../src/xfcetimer.c:487
+#: ../panel-plugin/xfcetimer.c:515
+msgid "Pause timer"
+msgstr "Jeda pengatur waktu"
+
+#: ../panel-plugin/xfcetimer.c:523
msgid "Resume timer"
msgstr "Lanjutkan pengatur waktu"
-#: ../src/xfcetimer.c:494 ../src/xfcetimer.c:550
+#: ../panel-plugin/xfcetimer.c:534
msgid "Stop timer"
msgstr "Stop pengukur waktu"
-#: ../src/xfcetimer.c:538
-msgid "Pause timer"
-msgstr "Jeda pengatur waktu"
-
-#: ../src/xfcetimer.c:552
-msgid "Start timer"
-msgstr "Mulai pengukur waktu"
-
-#: ../src/xfcetimer.c:561
-msgid "Stop the alarm"
-msgstr "Stop alarm"
-
-#: ../src/xfcetimer.c:618 ../src/xfcetimer.c:689
+#: ../panel-plugin/xfcetimer.c:614 ../panel-plugin/xfcetimer.c:693
#, c-format
msgid "%dh %dm %ds"
msgstr "%dj %dm %dd"
-#: ../src/xfcetimer.c:620 ../src/xfcetimer.c:691
+#: ../panel-plugin/xfcetimer.c:616 ../panel-plugin/xfcetimer.c:695
#, c-format
msgid "%dm %ds"
msgstr "%dm %dd"
-#: ../src/xfcetimer.c:622 ../src/xfcetimer.c:693
+#: ../panel-plugin/xfcetimer.c:618 ../panel-plugin/xfcetimer.c:697
#, c-format
msgid "%ds"
msgstr "%dd"
-#: ../src/xfcetimer.c:631 ../src/xfcetimer.c:702
+#: ../panel-plugin/xfcetimer.c:626 ../panel-plugin/xfcetimer.c:706
#, c-format
msgid "At %02d:%02d"
msgstr "Pada %02d:%02d"
-#: ../src/xfcetimer.c:801
+#: ../panel-plugin/xfcetimer.c:812
msgid "Name:"
msgstr "Nama:"
-#. ********
-#: ../src/xfcetimer.c:809
+#: ../panel-plugin/xfcetimer.c:821
msgid "Enter the countdown time"
msgstr "Masukkan waktu hitung mundur"
-#: ../src/xfcetimer.c:812
+#: ../panel-plugin/xfcetimer.c:826
msgid "Enter the time of alarm (24h format)"
msgstr "Masukkan waktu alarm (format 24 jam)"
-#: ../src/xfcetimer.c:824
+#: ../panel-plugin/xfcetimer.c:841
msgid "h "
msgstr "j "
-#: ../src/xfcetimer.c:829
+#: ../panel-plugin/xfcetimer.c:848
msgid "m "
msgstr "m "
-#: ../src/xfcetimer.c:834
+#: ../panel-plugin/xfcetimer.c:855
msgid "s "
msgstr "d "
-#: ../src/xfcetimer.c:837
+#: ../panel-plugin/xfcetimer.c:859
msgid "or"
msgstr "atau"
#. **************
-#: ../src/xfcetimer.c:857
+#: ../panel-plugin/xfcetimer.c:881
msgid "Command to run:"
msgstr "Perintah untuk dijalankan:"
-#: ../src/xfcetimer.c:887
+#. **************
+#. add recurring alarm check button
+#: ../panel-plugin/xfcetimer.c:892
+msgid "Recurring alarm"
+msgstr ""
+
+#. add alarm autostart check button
+#: ../panel-plugin/xfcetimer.c:899
+msgid "Auto start when plugin loads"
+msgstr ""
+
+#: ../panel-plugin/xfcetimer.c:909
+msgid "Cancel"
+msgstr ""
+
+#: ../panel-plugin/xfcetimer.c:914
+msgid "Accept"
+msgstr ""
+
+#: ../panel-plugin/xfcetimer.c:925
msgid "Add new alarm"
msgstr "Tambah alarm baru"
-#: ../src/xfcetimer.c:924
+#: ../panel-plugin/xfcetimer.c:966
msgid "Edit alarm"
msgstr "Sunting alarm"
-#: ../src/xfcetimer.c:1495 ../src/xfcetimer.c:1504
+#: ../panel-plugin/xfcetimer.c:1506
msgid "Xfce4 Timer Options"
msgstr "Opsi Pengukur Waktu Xfce4"
-#: ../src/xfcetimer.c:1506
-msgid "Xfce 4 Timer Plugin"
-msgstr "Plugin Pengatur Waktu Xfce 4"
-
-#: ../src/xfcetimer.c:1552
+#: ../panel-plugin/xfcetimer.c:1546
msgid "Timer name"
msgstr "Nama Pengatur Waktu"
-#: ../src/xfcetimer.c:1557
+#: ../panel-plugin/xfcetimer.c:1551
msgid ""
"Countdown period /\n"
"Alarm time"
-msgstr "Waktu hitung mundur /\nWaktu alarm"
+msgstr ""
+"Waktu hitung mundur /\n"
+"Waktu alarm"
-#: ../src/xfcetimer.c:1561
+#: ../panel-plugin/xfcetimer.c:1554
msgid "Alarm command"
msgstr "Perintah alarm"
-#: ../src/xfcetimer.c:1617
+#: ../panel-plugin/xfcetimer.c:1572
+msgid "Add"
+msgstr ""
+
+#: ../panel-plugin/xfcetimer.c:1580
+msgid "Edit"
+msgstr ""
+
+#: ../panel-plugin/xfcetimer.c:1588
+msgid "Remove"
+msgstr ""
+
+#: ../panel-plugin/xfcetimer.c:1596
+msgid "Up"
+msgstr ""
+
+#: ../panel-plugin/xfcetimer.c:1603
+msgid "Down"
+msgstr ""
+
+#: ../panel-plugin/xfcetimer.c:1619
msgid "Don't display a warning if an alarm command is set"
msgstr "Jangan perlihatkan peringatan jika perintah alarm telah diatur"
-#: ../src/xfcetimer.c:1622
-msgid "Selecting a timer starts it"
-msgstr "Memilih pengatur waktu memulainya"
-
#. Default alarm command config
-#: ../src/xfcetimer.c:1630
+#: ../panel-plugin/xfcetimer.c:1631
msgid "Use a default alarm command"
msgstr "Gunakan perintah alarm bawaan"
-#: ../src/xfcetimer.c:1637
+#: ../panel-plugin/xfcetimer.c:1640
msgid "Default command: "
msgstr "Perintah bawaan:"
#. Alarm repetitions config
-#: ../src/xfcetimer.c:1649
+#: ../panel-plugin/xfcetimer.c:1656
msgid "Repeat the alarm command"
msgstr "Ulangi perintah alarm"
-#: ../src/xfcetimer.c:1656
+#: ../panel-plugin/xfcetimer.c:1665
msgid "Number of repetitions"
msgstr "Jumlah pengulangan"
-#: ../src/xfcetimer.c:1662
+#: ../panel-plugin/xfcetimer.c:1674
msgid " Time interval (sec.)"
msgstr " Interval waktu (det.)"
-#: ../src/xfcetimer.c:1723
+#: ../panel-plugin/xfcetimer.c:1736
msgid "About xfce4-timer-plugin"
msgstr "Tentang xfce4-timer-plugin"
-#: ../src/xfcetimer.c:1728
+#: ../panel-plugin/xfcetimer.c:1739
msgid "A plugin to define countdown timers or alarms at given times."
-msgstr "Plugin untuk menetapkan pengatur waktu atau alarm sesuai dengan waktu yang telah diatur."
+msgstr ""
+"Plugin untuk menetapkan pengatur waktu atau alarm sesuai dengan waktu yang "
+"telah diatur."
-#: ../src/xfcetimer.c:1730
-msgid "Copyright (c) 2005-2013\n"
+#: ../panel-plugin/xfcetimer.c:1742
+#, fuzzy
+msgid "Copyright (c) 2005-2018\n"
msgstr "Copyright (c) 2005-2013\n"
-#: ../src/xfce4-timer.desktop.in.in.h:1
+#: ../panel-plugin/xfce4-timer-plugin.desktop.in.h:1
msgid "Xfce4 Timer"
msgstr "Pengukur Waktu Xfce4"
-#: ../src/xfce4-timer.desktop.in.in.h:2
+#: ../panel-plugin/xfce4-timer-plugin.desktop.in.h:2
msgid "Timer plugin for Xfce panel"
msgstr "Plugin pengukur waktu untuk panel Xfce"
+
+#~ msgid "Selecting a timer starts it"
+#~ msgstr "Memilih pengatur waktu memulainya"
+
+#~ msgid "Start timer"
+#~ msgstr "Mulai pengukur waktu"
+
+#~ msgid "Stop the alarm"
+#~ msgstr "Stop alarm"
+
+#~ msgid "Xfce 4 Timer Plugin"
+#~ msgstr "Plugin Pengatur Waktu Xfce 4"
diff --git a/po/is.po b/po/is.po
index 9dd9afb..4c5de8c 100644
--- a/po/is.po
+++ b/po/is.po
@@ -1,204 +1,249 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
-#
+#
# Translators:
# Sveinn í Felli <sv1 at fellsnet.is>, 2013-2015
msgid ""
msgstr ""
"Project-Id-Version: Xfce Panel Plugins\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-06-05 06:31+0200\n"
+"POT-Creation-Date: 2018-04-21 18:00+0300\n"
"PO-Revision-Date: 2017-09-19 18:06+0000\n"
"Last-Translator: Sveinn í Felli <sv1 at fellsnet.is>\n"
-"Language-Team: Icelandic (http://www.transifex.com/xfce/xfce-panel-plugins/language/is/)\n"
+"Language-Team: Icelandic (http://www.transifex.com/xfce/xfce-panel-plugins/"
+"language/is/)\n"
+"Language: is\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: is\n"
"Plural-Forms: nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);\n"
-#: ../src/xfcetimer.c:146
+#: ../panel-plugin/xfcetimer.c:167
#, c-format
msgid "%dh %dm %ds left"
msgstr "%dklst %dmín %dsek eftir"
-#: ../src/xfcetimer.c:149
+#: ../panel-plugin/xfcetimer.c:170
#, c-format
msgid "%dm %ds left"
msgstr "%dmín %dsek eftir"
-#: ../src/xfcetimer.c:151
+#: ../panel-plugin/xfcetimer.c:173
#, c-format
msgid "%ds left"
msgstr "%dsek eftir"
-#: ../src/xfcetimer.c:154
+#: ../panel-plugin/xfcetimer.c:177
msgid " (Paused)"
msgstr " (í bið)"
#. Display the name of the alarm when the countdown ends
-#: ../src/xfcetimer.c:188
+#: ../panel-plugin/xfcetimer.c:213
#, c-format
msgid ""
"Beeep! :) \n"
"Time is up for the alarm %s."
-msgstr "Píííp! :) \nTíminn er liðinn fyrir áminninguna %s."
+msgstr ""
+"Píííp! :) \n"
+"Tíminn er liðinn fyrir áminninguna %s."
+
+#: ../panel-plugin/xfcetimer.c:221 ../panel-plugin/xfcetimer.c:1508
+msgid "Close"
+msgstr ""
-#: ../src/xfcetimer.c:198
+#: ../panel-plugin/xfcetimer.c:222
msgid "Rerun the timer"
msgstr "Keyra niðurtalningu aftur"
-#: ../src/xfcetimer.c:487
+#: ../panel-plugin/xfcetimer.c:515
+msgid "Pause timer"
+msgstr "Gera hlé á niðurtalningu"
+
+#: ../panel-plugin/xfcetimer.c:523
msgid "Resume timer"
msgstr "Halda áfram með niðurtalningu"
-#: ../src/xfcetimer.c:494 ../src/xfcetimer.c:550
+#: ../panel-plugin/xfcetimer.c:534
msgid "Stop timer"
msgstr "Stöðva niðurtalningu"
-#: ../src/xfcetimer.c:538
-msgid "Pause timer"
-msgstr "Gera hlé á niðurtalningu"
-
-#: ../src/xfcetimer.c:552
-msgid "Start timer"
-msgstr "Byrja niðurtalningu"
-
-#: ../src/xfcetimer.c:561
-msgid "Stop the alarm"
-msgstr "Stöðva áminninguna"
-
-#: ../src/xfcetimer.c:618 ../src/xfcetimer.c:689
+#: ../panel-plugin/xfcetimer.c:614 ../panel-plugin/xfcetimer.c:693
#, c-format
msgid "%dh %dm %ds"
msgstr "%dklst %dmín %dsek"
-#: ../src/xfcetimer.c:620 ../src/xfcetimer.c:691
+#: ../panel-plugin/xfcetimer.c:616 ../panel-plugin/xfcetimer.c:695
#, c-format
msgid "%dm %ds"
msgstr "%dmín %dsek"
-#: ../src/xfcetimer.c:622 ../src/xfcetimer.c:693
+#: ../panel-plugin/xfcetimer.c:618 ../panel-plugin/xfcetimer.c:697
#, c-format
msgid "%ds"
msgstr "%dsek"
-#: ../src/xfcetimer.c:631 ../src/xfcetimer.c:702
+#: ../panel-plugin/xfcetimer.c:626 ../panel-plugin/xfcetimer.c:706
#, c-format
msgid "At %02d:%02d"
msgstr "Klukkan %02d:%02d"
-#: ../src/xfcetimer.c:801
+#: ../panel-plugin/xfcetimer.c:812
msgid "Name:"
msgstr "Heiti:"
-#. ********
-#: ../src/xfcetimer.c:809
+#: ../panel-plugin/xfcetimer.c:821
msgid "Enter the countdown time"
msgstr "Sláðu inn tíma niðurtalningar"
-#: ../src/xfcetimer.c:812
+#: ../panel-plugin/xfcetimer.c:826
msgid "Enter the time of alarm (24h format)"
msgstr "Sláðu inn tíma áminningar (24t snið)"
-#: ../src/xfcetimer.c:824
+#: ../panel-plugin/xfcetimer.c:841
msgid "h "
msgstr "klst "
-#: ../src/xfcetimer.c:829
+#: ../panel-plugin/xfcetimer.c:848
msgid "m "
msgstr "mín "
-#: ../src/xfcetimer.c:834
+#: ../panel-plugin/xfcetimer.c:855
msgid "s "
msgstr "sek "
-#: ../src/xfcetimer.c:837
+#: ../panel-plugin/xfcetimer.c:859
msgid "or"
msgstr "eða"
#. **************
-#: ../src/xfcetimer.c:857
+#: ../panel-plugin/xfcetimer.c:881
msgid "Command to run:"
msgstr "Skipun sem á að keyra:"
-#: ../src/xfcetimer.c:887
+#. **************
+#. add recurring alarm check button
+#: ../panel-plugin/xfcetimer.c:892
+msgid "Recurring alarm"
+msgstr ""
+
+#. add alarm autostart check button
+#: ../panel-plugin/xfcetimer.c:899
+msgid "Auto start when plugin loads"
+msgstr ""
+
+#: ../panel-plugin/xfcetimer.c:909
+msgid "Cancel"
+msgstr ""
+
+#: ../panel-plugin/xfcetimer.c:914
+msgid "Accept"
+msgstr ""
+
+#: ../panel-plugin/xfcetimer.c:925
msgid "Add new alarm"
msgstr "Bæta við nýrri áminningu"
-#: ../src/xfcetimer.c:924
+#: ../panel-plugin/xfcetimer.c:966
msgid "Edit alarm"
msgstr "Breyta áminningu"
-#: ../src/xfcetimer.c:1495 ../src/xfcetimer.c:1504
+#: ../panel-plugin/xfcetimer.c:1506
msgid "Xfce4 Timer Options"
msgstr "Valkostir Xfce4 tímamælingar"
-#: ../src/xfcetimer.c:1506
-msgid "Xfce 4 Timer Plugin"
-msgstr "Xfce4 tímamælingarviðbót"
-
-#: ../src/xfcetimer.c:1552
+#: ../panel-plugin/xfcetimer.c:1546
msgid "Timer name"
msgstr "Heiti niðurtalningar"
-#: ../src/xfcetimer.c:1557
+#: ../panel-plugin/xfcetimer.c:1551
msgid ""
"Countdown period /\n"
"Alarm time"
-msgstr "Tími niðurtalningar /\nTími áminningar"
+msgstr ""
+"Tími niðurtalningar /\n"
+"Tími áminningar"
-#: ../src/xfcetimer.c:1561
+#: ../panel-plugin/xfcetimer.c:1554
msgid "Alarm command"
msgstr "Skipun við áminningu"
-#: ../src/xfcetimer.c:1617
+#: ../panel-plugin/xfcetimer.c:1572
+msgid "Add"
+msgstr ""
+
+#: ../panel-plugin/xfcetimer.c:1580
+msgid "Edit"
+msgstr ""
+
+#: ../panel-plugin/xfcetimer.c:1588
+msgid "Remove"
+msgstr ""
+
+#: ../panel-plugin/xfcetimer.c:1596
+msgid "Up"
+msgstr ""
+
+#: ../panel-plugin/xfcetimer.c:1603
+msgid "Down"
+msgstr ""
+
+#: ../panel-plugin/xfcetimer.c:1619
msgid "Don't display a warning if an alarm command is set"
msgstr "Ekki birta aðvörun ef skipun er sett fyrir áminningu"
-#: ../src/xfcetimer.c:1622
-msgid "Selecting a timer starts it"
-msgstr "Val á niðurtalningu ræsir hana"
-
#. Default alarm command config
-#: ../src/xfcetimer.c:1630
+#: ../panel-plugin/xfcetimer.c:1631
msgid "Use a default alarm command"
msgstr "Nota sjálfgefna áminningarskipun"
-#: ../src/xfcetimer.c:1637
+#: ../panel-plugin/xfcetimer.c:1640
msgid "Default command: "
msgstr "Sjálfgefin skipun: "
#. Alarm repetitions config
-#: ../src/xfcetimer.c:1649
+#: ../panel-plugin/xfcetimer.c:1656
msgid "Repeat the alarm command"
msgstr "Endurtaka áminningarskipunina"
-#: ../src/xfcetimer.c:1656
+#: ../panel-plugin/xfcetimer.c:1665
msgid "Number of repetitions"
msgstr "Fjöldi endurtekninga"
-#: ../src/xfcetimer.c:1662
+#: ../panel-plugin/xfcetimer.c:1674
msgid " Time interval (sec.)"
msgstr " Tímabil (sek.)"
-#: ../src/xfcetimer.c:1723
+#: ../panel-plugin/xfcetimer.c:1736
msgid "About xfce4-timer-plugin"
msgstr "Um xfce4-timer-plugin"
-#: ../src/xfcetimer.c:1728
+#: ../panel-plugin/xfcetimer.c:1739
msgid "A plugin to define countdown timers or alarms at given times."
-msgstr "Viðbót til að skilgreina niðurtalningar eða áminningar á tilteknum tíma."
+msgstr ""
+"Viðbót til að skilgreina niðurtalningar eða áminningar á tilteknum tíma."
-#: ../src/xfcetimer.c:1730
-msgid "Copyright (c) 2005-2013\n"
+#: ../panel-plugin/xfcetimer.c:1742
+#, fuzzy
+msgid "Copyright (c) 2005-2018\n"
msgstr "Höfundarréttur (c) 2005-2013\n"
-#: ../src/xfce4-timer.desktop.in.in.h:1
+#: ../panel-plugin/xfce4-timer-plugin.desktop.in.h:1
msgid "Xfce4 Timer"
msgstr "Xfce4 tímamæling"
-#: ../src/xfce4-timer.desktop.in.in.h:2
+#: ../panel-plugin/xfce4-timer-plugin.desktop.in.h:2
msgid "Timer plugin for Xfce panel"
msgstr "Tímamælingarviðbót fyrir Xfce4 skjástikur"
+
+#~ msgid "Selecting a timer starts it"
+#~ msgstr "Val á niðurtalningu ræsir hana"
+
+#~ msgid "Start timer"
+#~ msgstr "Byrja niðurtalningu"
+
+#~ msgid "Stop the alarm"
+#~ msgstr "Stöðva áminninguna"
+
+#~ msgid "Xfce 4 Timer Plugin"
+#~ msgstr "Xfce4 tímamælingarviðbót"
diff --git a/po/it.po b/po/it.po
index 2c5e5e9..d8cec14 100644
--- a/po/it.po
+++ b/po/it.po
@@ -1,7 +1,7 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
-#
+#
# Translators:
# Cristian Marchi <cri.penta at gmail.com>, 2009,2013-2014
# Emanuele Petriglia <inbox at emanuelepetriglia.me>, 2018
@@ -9,216 +9,223 @@ msgid ""
msgstr ""
"Project-Id-Version: Xfce Panel Plugins\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-01-04 06:32+0100\n"
+"POT-Creation-Date: 2018-04-21 18:00+0300\n"
"PO-Revision-Date: 2018-03-23 15:11+0000\n"
"Last-Translator: Emanuele Petriglia <inbox at emanuelepetriglia.me>\n"
-"Language-Team: Italian (http://www.transifex.com/xfce/xfce-panel-plugins/language/it/)\n"
+"Language-Team: Italian (http://www.transifex.com/xfce/xfce-panel-plugins/"
+"language/it/)\n"
+"Language: it\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: it\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: ../panel-plugin/xfcetimer.c:153
+#: ../panel-plugin/xfcetimer.c:167
#, c-format
msgid "%dh %dm %ds left"
msgstr "Mancano %dore %dminuti %dsecondi"
-#: ../panel-plugin/xfcetimer.c:156
+#: ../panel-plugin/xfcetimer.c:170
#, c-format
msgid "%dm %ds left"
msgstr "Mancano %dminuti %dsecondi"
-#: ../panel-plugin/xfcetimer.c:159
+#: ../panel-plugin/xfcetimer.c:173
#, c-format
msgid "%ds left"
msgstr "Mancano %dsecondi"
-#: ../panel-plugin/xfcetimer.c:163
+#: ../panel-plugin/xfcetimer.c:177
msgid " (Paused)"
msgstr "(in pausa)"
-#: ../panel-plugin/xfcetimer.c:198
+#. Display the name of the alarm when the countdown ends
+#: ../panel-plugin/xfcetimer.c:213
#, c-format
msgid ""
"Beeep! :) \n"
"Time is up for the alarm %s."
-msgstr "Driiin! :-)\nil tempo è scaduto per la sveglia %s."
+msgstr ""
+"Driiin! :-)\n"
+"il tempo è scaduto per la sveglia %s."
-#: ../panel-plugin/xfcetimer.c:210 ../panel-plugin/xfcetimer.c:1493
+#: ../panel-plugin/xfcetimer.c:221 ../panel-plugin/xfcetimer.c:1508
msgid "Close"
msgstr "Chiudi"
-#: ../panel-plugin/xfcetimer.c:211
+#: ../panel-plugin/xfcetimer.c:222
msgid "Rerun the timer"
msgstr "Riavvia il cronometro"
-#: ../panel-plugin/xfcetimer.c:526
+#: ../panel-plugin/xfcetimer.c:515
+msgid "Pause timer"
+msgstr "Pausa"
+
+#: ../panel-plugin/xfcetimer.c:523
msgid "Resume timer"
msgstr "Riprendi il cronometro"
-#: ../panel-plugin/xfcetimer.c:533 ../panel-plugin/xfcetimer.c:556
+#: ../panel-plugin/xfcetimer.c:534
msgid "Stop timer"
msgstr "Interrompi il cronometro"
-#: ../panel-plugin/xfcetimer.c:545
-msgid "Pause timer"
-msgstr "Pausa"
-
-#: ../panel-plugin/xfcetimer.c:558
-msgid "Start timer"
-msgstr "Avvia il cronometro"
-
-#: ../panel-plugin/xfcetimer.c:568
-msgid "Stop the alarm"
-msgstr "Interrompi la sveglia"
-
-#: ../panel-plugin/xfcetimer.c:622 ../panel-plugin/xfcetimer.c:696
+#: ../panel-plugin/xfcetimer.c:614 ../panel-plugin/xfcetimer.c:693
#, c-format
msgid "%dh %dm %ds"
msgstr "%dh %dm %ds"
-#: ../panel-plugin/xfcetimer.c:624 ../panel-plugin/xfcetimer.c:698
+#: ../panel-plugin/xfcetimer.c:616 ../panel-plugin/xfcetimer.c:695
#, c-format
msgid "%dm %ds"
msgstr "%dm %ds"
-#: ../panel-plugin/xfcetimer.c:626 ../panel-plugin/xfcetimer.c:700
+#: ../panel-plugin/xfcetimer.c:618 ../panel-plugin/xfcetimer.c:697
#, c-format
msgid "%ds"
msgstr "%ds"
-#: ../panel-plugin/xfcetimer.c:634 ../panel-plugin/xfcetimer.c:709
+#: ../panel-plugin/xfcetimer.c:626 ../panel-plugin/xfcetimer.c:706
#, c-format
msgid "At %02d:%02d"
msgstr "Alle %02d:%02d"
-#: ../panel-plugin/xfcetimer.c:815
+#: ../panel-plugin/xfcetimer.c:812
msgid "Name:"
msgstr "Nome:"
-#: ../panel-plugin/xfcetimer.c:824
+#: ../panel-plugin/xfcetimer.c:821
msgid "Enter the countdown time"
msgstr "Inserire la durata del conto alla rovescia"
-#: ../panel-plugin/xfcetimer.c:829
+#: ../panel-plugin/xfcetimer.c:826
msgid "Enter the time of alarm (24h format)"
msgstr "Inserire l'ora della sveglia (nel formato a 24 ore)"
-#: ../panel-plugin/xfcetimer.c:844
+#: ../panel-plugin/xfcetimer.c:841
msgid "h "
msgstr "h "
-#: ../panel-plugin/xfcetimer.c:851
+#: ../panel-plugin/xfcetimer.c:848
msgid "m "
msgstr "m "
-#: ../panel-plugin/xfcetimer.c:858
+#: ../panel-plugin/xfcetimer.c:855
msgid "s "
msgstr "s "
-#: ../panel-plugin/xfcetimer.c:862
+#: ../panel-plugin/xfcetimer.c:859
msgid "or"
msgstr "o"
#. **************
-#: ../panel-plugin/xfcetimer.c:884
+#: ../panel-plugin/xfcetimer.c:881
msgid "Command to run:"
msgstr "Comando da eseguire:"
-#: ../panel-plugin/xfcetimer.c:898
+#. **************
+#. add recurring alarm check button
+#: ../panel-plugin/xfcetimer.c:892
+msgid "Recurring alarm"
+msgstr ""
+
+#. add alarm autostart check button
+#: ../panel-plugin/xfcetimer.c:899
+msgid "Auto start when plugin loads"
+msgstr ""
+
+#: ../panel-plugin/xfcetimer.c:909
msgid "Cancel"
msgstr "Cancella"
-#: ../panel-plugin/xfcetimer.c:903
+#: ../panel-plugin/xfcetimer.c:914
msgid "Accept"
msgstr "Accetta"
-#: ../panel-plugin/xfcetimer.c:914
+#: ../panel-plugin/xfcetimer.c:925
msgid "Add new alarm"
msgstr "Aggiungi una nuova sveglia"
-#: ../panel-plugin/xfcetimer.c:951
+#: ../panel-plugin/xfcetimer.c:966
msgid "Edit alarm"
msgstr "Modifica sveglia"
-#: ../panel-plugin/xfcetimer.c:1491
+#: ../panel-plugin/xfcetimer.c:1506
msgid "Xfce4 Timer Options"
msgstr "Opzioni della sveglia di Xfce4"
-#: ../panel-plugin/xfcetimer.c:1531
+#: ../panel-plugin/xfcetimer.c:1546
msgid "Timer name"
msgstr "Nome del contatore"
-#: ../panel-plugin/xfcetimer.c:1536
+#: ../panel-plugin/xfcetimer.c:1551
msgid ""
"Countdown period /\n"
"Alarm time"
-msgstr "Durata del conto alla rovescia/\nora della sveglia."
+msgstr ""
+"Durata del conto alla rovescia/\n"
+"ora della sveglia."
-#: ../panel-plugin/xfcetimer.c:1539
+#: ../panel-plugin/xfcetimer.c:1554
msgid "Alarm command"
msgstr "Comando di sveglia"
-#: ../panel-plugin/xfcetimer.c:1557
+#: ../panel-plugin/xfcetimer.c:1572
msgid "Add"
msgstr "Aggiungi"
-#: ../panel-plugin/xfcetimer.c:1565
+#: ../panel-plugin/xfcetimer.c:1580
msgid "Edit"
msgstr "Modifica"
-#: ../panel-plugin/xfcetimer.c:1573
+#: ../panel-plugin/xfcetimer.c:1588
msgid "Remove"
msgstr "Rimuovi"
-#: ../panel-plugin/xfcetimer.c:1581
+#: ../panel-plugin/xfcetimer.c:1596
msgid "Up"
msgstr "Sopra"
-#: ../panel-plugin/xfcetimer.c:1588
+#: ../panel-plugin/xfcetimer.c:1603
msgid "Down"
msgstr "Sotto"
-#: ../panel-plugin/xfcetimer.c:1604
+#: ../panel-plugin/xfcetimer.c:1619
msgid "Don't display a warning if an alarm command is set"
msgstr "Non mostrare un avviso se è impostato il comando di sveglia"
-#: ../panel-plugin/xfcetimer.c:1610
-msgid "Selecting a timer starts it"
-msgstr "Selezionando un cronometro questo verrà avviato"
-
#. Default alarm command config
-#: ../panel-plugin/xfcetimer.c:1623
+#: ../panel-plugin/xfcetimer.c:1631
msgid "Use a default alarm command"
msgstr "Usa un comando di sveglia predefinito"
-#: ../panel-plugin/xfcetimer.c:1632
+#: ../panel-plugin/xfcetimer.c:1640
msgid "Default command: "
msgstr "Comando predefinito:"
#. Alarm repetitions config
-#: ../panel-plugin/xfcetimer.c:1648
+#: ../panel-plugin/xfcetimer.c:1656
msgid "Repeat the alarm command"
msgstr "Ripeti il comando di sveglia"
-#: ../panel-plugin/xfcetimer.c:1657
+#: ../panel-plugin/xfcetimer.c:1665
msgid "Number of repetitions"
msgstr "Numero di ripetizioni"
-#: ../panel-plugin/xfcetimer.c:1666
+#: ../panel-plugin/xfcetimer.c:1674
msgid " Time interval (sec.)"
msgstr " Intervallo di tempo (sec.)"
-#: ../panel-plugin/xfcetimer.c:1728
+#: ../panel-plugin/xfcetimer.c:1736
msgid "About xfce4-timer-plugin"
msgstr "Informazioni su xfce4-timer-plugin"
-#: ../panel-plugin/xfcetimer.c:1731
+#: ../panel-plugin/xfcetimer.c:1739
msgid "A plugin to define countdown timers or alarms at given times."
-msgstr "Un plugin per impostare dei conti alla rovescia o delle sveglie a un tempo predefinito"
+msgstr ""
+"Un plugin per impostare dei conti alla rovescia o delle sveglie a un tempo "
+"predefinito"
-#: ../panel-plugin/xfcetimer.c:1734
+#: ../panel-plugin/xfcetimer.c:1742
msgid "Copyright (c) 2005-2018\n"
msgstr "Copyright (c) 2005-2018\n"
@@ -229,3 +236,12 @@ msgstr "Sveglia di Xfce4"
#: ../panel-plugin/xfce4-timer-plugin.desktop.in.h:2
msgid "Timer plugin for Xfce panel"
msgstr "Plugin della sveglia per il pannello di Xfce"
+
+#~ msgid "Selecting a timer starts it"
+#~ msgstr "Selezionando un cronometro questo verrà avviato"
+
+#~ msgid "Start timer"
+#~ msgstr "Avvia il cronometro"
+
+#~ msgid "Stop the alarm"
+#~ msgstr "Interrompi la sveglia"
diff --git a/po/ja.po b/po/ja.po
index e13662e..4530094 100644
--- a/po/ja.po
+++ b/po/ja.po
@@ -1,7 +1,7 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
-#
+#
# Translators:
# Daichi Kawahata <daichi at xfce.org>, 2006
# Nobuhiro Iwamatsu <iwamatsu at nigauri.org>, 2018
@@ -9,216 +9,221 @@ msgid ""
msgstr ""
"Project-Id-Version: Xfce Panel Plugins\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-01-04 06:32+0100\n"
+"POT-Creation-Date: 2018-04-21 18:00+0300\n"
"PO-Revision-Date: 2018-03-30 03:15+0000\n"
"Last-Translator: Nobuhiro Iwamatsu <iwamatsu at nigauri.org>\n"
-"Language-Team: Japanese (http://www.transifex.com/xfce/xfce-panel-plugins/language/ja/)\n"
+"Language-Team: Japanese (http://www.transifex.com/xfce/xfce-panel-plugins/"
+"language/ja/)\n"
+"Language: ja\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: ja\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-#: ../panel-plugin/xfcetimer.c:153
+#: ../panel-plugin/xfcetimer.c:167
#, c-format
msgid "%dh %dm %ds left"
msgstr "残り %d 時間 %d 分 %d 秒"
-#: ../panel-plugin/xfcetimer.c:156
+#: ../panel-plugin/xfcetimer.c:170
#, c-format
msgid "%dm %ds left"
msgstr "残り %d 分 %d 秒"
-#: ../panel-plugin/xfcetimer.c:159
+#: ../panel-plugin/xfcetimer.c:173
#, c-format
msgid "%ds left"
msgstr "残り %d 秒"
-#: ../panel-plugin/xfcetimer.c:163
+#: ../panel-plugin/xfcetimer.c:177
msgid " (Paused)"
msgstr " (停止)"
-#: ../panel-plugin/xfcetimer.c:198
+#. Display the name of the alarm when the countdown ends
+#: ../panel-plugin/xfcetimer.c:213
#, c-format
msgid ""
"Beeep! :) \n"
"Time is up for the alarm %s."
-msgstr "ビーー! :) \n%s の時間になりました。"
+msgstr ""
+"ビーー! :) \n"
+"%s の時間になりました。"
-#: ../panel-plugin/xfcetimer.c:210 ../panel-plugin/xfcetimer.c:1493
+#: ../panel-plugin/xfcetimer.c:221 ../panel-plugin/xfcetimer.c:1508
msgid "Close"
msgstr "閉じる"
-#: ../panel-plugin/xfcetimer.c:211
+#: ../panel-plugin/xfcetimer.c:222
msgid "Rerun the timer"
msgstr "タイマーの再実行"
-#: ../panel-plugin/xfcetimer.c:526
+#: ../panel-plugin/xfcetimer.c:515
+msgid "Pause timer"
+msgstr "タイマーの一時停止"
+
+#: ../panel-plugin/xfcetimer.c:523
msgid "Resume timer"
msgstr "タイマーの再開"
-#: ../panel-plugin/xfcetimer.c:533 ../panel-plugin/xfcetimer.c:556
+#: ../panel-plugin/xfcetimer.c:534
msgid "Stop timer"
msgstr "タイマーの停止"
-#: ../panel-plugin/xfcetimer.c:545
-msgid "Pause timer"
-msgstr "タイマーの一時停止"
-
-#: ../panel-plugin/xfcetimer.c:558
-msgid "Start timer"
-msgstr "タイマーの開始"
-
-#: ../panel-plugin/xfcetimer.c:568
-msgid "Stop the alarm"
-msgstr "アラームの停止"
-
-#: ../panel-plugin/xfcetimer.c:622 ../panel-plugin/xfcetimer.c:696
+#: ../panel-plugin/xfcetimer.c:614 ../panel-plugin/xfcetimer.c:693
#, c-format
msgid "%dh %dm %ds"
msgstr "%d 時間 %d 分 %d 秒"
-#: ../panel-plugin/xfcetimer.c:624 ../panel-plugin/xfcetimer.c:698
+#: ../panel-plugin/xfcetimer.c:616 ../panel-plugin/xfcetimer.c:695
#, c-format
msgid "%dm %ds"
msgstr "% d分 %d 秒"
-#: ../panel-plugin/xfcetimer.c:626 ../panel-plugin/xfcetimer.c:700
+#: ../panel-plugin/xfcetimer.c:618 ../panel-plugin/xfcetimer.c:697
#, c-format
msgid "%ds"
msgstr "%d 秒"
-#: ../panel-plugin/xfcetimer.c:634 ../panel-plugin/xfcetimer.c:709
+#: ../panel-plugin/xfcetimer.c:626 ../panel-plugin/xfcetimer.c:706
#, c-format
msgid "At %02d:%02d"
msgstr "%02d:%02d"
-#: ../panel-plugin/xfcetimer.c:815
+#: ../panel-plugin/xfcetimer.c:812
msgid "Name:"
msgstr "名前:"
-#: ../panel-plugin/xfcetimer.c:824
+#: ../panel-plugin/xfcetimer.c:821
msgid "Enter the countdown time"
msgstr "秒読みする時間を指定してください"
-#: ../panel-plugin/xfcetimer.c:829
+#: ../panel-plugin/xfcetimer.c:826
msgid "Enter the time of alarm (24h format)"
msgstr "アラームを鳴らす時刻を指定してください (24時間制)"
-#: ../panel-plugin/xfcetimer.c:844
+#: ../panel-plugin/xfcetimer.c:841
msgid "h "
msgstr "時間 "
-#: ../panel-plugin/xfcetimer.c:851
+#: ../panel-plugin/xfcetimer.c:848
msgid "m "
msgstr "分 "
-#: ../panel-plugin/xfcetimer.c:858
+#: ../panel-plugin/xfcetimer.c:855
msgid "s "
msgstr "秒 "
-#: ../panel-plugin/xfcetimer.c:862
+#: ../panel-plugin/xfcetimer.c:859
msgid "or"
msgstr "または"
#. **************
-#: ../panel-plugin/xfcetimer.c:884
+#: ../panel-plugin/xfcetimer.c:881
msgid "Command to run:"
msgstr "実行するコマンド:"
-#: ../panel-plugin/xfcetimer.c:898
+#. **************
+#. add recurring alarm check button
+#: ../panel-plugin/xfcetimer.c:892
+msgid "Recurring alarm"
+msgstr ""
+
+#. add alarm autostart check button
+#: ../panel-plugin/xfcetimer.c:899
+msgid "Auto start when plugin loads"
+msgstr ""
+
+#: ../panel-plugin/xfcetimer.c:909
msgid "Cancel"
msgstr "キャンセル"
-#: ../panel-plugin/xfcetimer.c:903
+#: ../panel-plugin/xfcetimer.c:914
msgid "Accept"
msgstr "承認"
-#: ../panel-plugin/xfcetimer.c:914
+#: ../panel-plugin/xfcetimer.c:925
msgid "Add new alarm"
msgstr "新規アラームの追加"
-#: ../panel-plugin/xfcetimer.c:951
+#: ../panel-plugin/xfcetimer.c:966
msgid "Edit alarm"
msgstr "アラームの編集"
-#: ../panel-plugin/xfcetimer.c:1491
+#: ../panel-plugin/xfcetimer.c:1506
msgid "Xfce4 Timer Options"
msgstr "Xfce4 タイマーオプション"
-#: ../panel-plugin/xfcetimer.c:1531
+#: ../panel-plugin/xfcetimer.c:1546
msgid "Timer name"
msgstr "タイマー名"
-#: ../panel-plugin/xfcetimer.c:1536
+#: ../panel-plugin/xfcetimer.c:1551
msgid ""
"Countdown period /\n"
"Alarm time"
-msgstr "秒読み時間 /\nアラーム時刻"
+msgstr ""
+"秒読み時間 /\n"
+"アラーム時刻"
-#: ../panel-plugin/xfcetimer.c:1539
+#: ../panel-plugin/xfcetimer.c:1554
msgid "Alarm command"
msgstr "アラームコマンド"
-#: ../panel-plugin/xfcetimer.c:1557
+#: ../panel-plugin/xfcetimer.c:1572
msgid "Add"
msgstr "追加"
-#: ../panel-plugin/xfcetimer.c:1565
+#: ../panel-plugin/xfcetimer.c:1580
msgid "Edit"
msgstr "編集"
-#: ../panel-plugin/xfcetimer.c:1573
+#: ../panel-plugin/xfcetimer.c:1588
msgid "Remove"
msgstr "削除"
-#: ../panel-plugin/xfcetimer.c:1581
+#: ../panel-plugin/xfcetimer.c:1596
msgid "Up"
msgstr "上へ"
-#: ../panel-plugin/xfcetimer.c:1588
+#: ../panel-plugin/xfcetimer.c:1603
msgid "Down"
msgstr "下へ"
-#: ../panel-plugin/xfcetimer.c:1604
+#: ../panel-plugin/xfcetimer.c:1619
msgid "Don't display a warning if an alarm command is set"
msgstr "アラームコマンドが設定されている場合は警告ウィンドウを表示しない"
-#: ../panel-plugin/xfcetimer.c:1610
-msgid "Selecting a timer starts it"
-msgstr "タイマーを選択したらそれを開始する"
-
#. Default alarm command config
-#: ../panel-plugin/xfcetimer.c:1623
+#: ../panel-plugin/xfcetimer.c:1631
msgid "Use a default alarm command"
msgstr "デフォルトのアラームコマンドを使用する"
-#: ../panel-plugin/xfcetimer.c:1632
+#: ../panel-plugin/xfcetimer.c:1640
msgid "Default command: "
msgstr "デフォルトコマンド:"
#. Alarm repetitions config
-#: ../panel-plugin/xfcetimer.c:1648
+#: ../panel-plugin/xfcetimer.c:1656
msgid "Repeat the alarm command"
msgstr "アラームコマンドを繰り返す"
-#: ../panel-plugin/xfcetimer.c:1657
+#: ../panel-plugin/xfcetimer.c:1665
msgid "Number of repetitions"
msgstr "繰り返し回数"
-#: ../panel-plugin/xfcetimer.c:1666
+#: ../panel-plugin/xfcetimer.c:1674
msgid " Time interval (sec.)"
msgstr " 時間間隔 (秒)"
-#: ../panel-plugin/xfcetimer.c:1728
+#: ../panel-plugin/xfcetimer.c:1736
msgid "About xfce4-timer-plugin"
msgstr "Xfce4 タイマープラグインについて"
-#: ../panel-plugin/xfcetimer.c:1731
+#: ../panel-plugin/xfcetimer.c:1739
msgid "A plugin to define countdown timers or alarms at given times."
msgstr "時間を秒読みまたは指定時刻になるとアラームを鳴らします。"
-#: ../panel-plugin/xfcetimer.c:1734
+#: ../panel-plugin/xfcetimer.c:1742
msgid "Copyright (c) 2005-2018\n"
msgstr "Copyright (c) 2005-2018\n"
@@ -229,3 +234,12 @@ msgstr "Xfce4 タイマー"
#: ../panel-plugin/xfce4-timer-plugin.desktop.in.h:2
msgid "Timer plugin for Xfce panel"
msgstr "Xfce パネル用のタイマープラグインです。"
+
+#~ msgid "Selecting a timer starts it"
+#~ msgstr "タイマーを選択したらそれを開始する"
+
+#~ msgid "Start timer"
+#~ msgstr "タイマーの開始"
+
+#~ msgid "Stop the alarm"
+#~ msgstr "アラームの停止"
diff --git a/po/ko.po b/po/ko.po
index 7139378..f6a135c 100644
--- a/po/ko.po
+++ b/po/ko.po
@@ -1,204 +1,248 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
-#
+#
# Translators:
# Seong-ho Cho <darkcircle.0426 at gmail.com>, 2012-2014
msgid ""
msgstr ""
"Project-Id-Version: Xfce Panel Plugins\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-06-05 06:31+0200\n"
+"POT-Creation-Date: 2018-04-21 18:00+0300\n"
"PO-Revision-Date: 2017-11-14 12:23+0000\n"
"Last-Translator: 박정규(Jung-Kyu Park) <bagjunggyu at gmail.com>\n"
-"Language-Team: Korean (http://www.transifex.com/xfce/xfce-panel-plugins/language/ko/)\n"
+"Language-Team: Korean (http://www.transifex.com/xfce/xfce-panel-plugins/"
+"language/ko/)\n"
+"Language: ko\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: ko\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-#: ../src/xfcetimer.c:146
+#: ../panel-plugin/xfcetimer.c:167
#, c-format
msgid "%dh %dm %ds left"
msgstr "%d시 %d분 %d초 남음"
-#: ../src/xfcetimer.c:149
+#: ../panel-plugin/xfcetimer.c:170
#, c-format
msgid "%dm %ds left"
msgstr "%d분 %d초 남음"
-#: ../src/xfcetimer.c:151
+#: ../panel-plugin/xfcetimer.c:173
#, c-format
msgid "%ds left"
msgstr "%d초 남음"
-#: ../src/xfcetimer.c:154
+#: ../panel-plugin/xfcetimer.c:177
msgid " (Paused)"
msgstr "(일시 정지)"
#. Display the name of the alarm when the countdown ends
-#: ../src/xfcetimer.c:188
+#: ../panel-plugin/xfcetimer.c:213
#, c-format
msgid ""
"Beeep! :) \n"
"Time is up for the alarm %s."
-msgstr "삐! :)\n%s 알림 시간이 되었습니다."
+msgstr ""
+"삐! :)\n"
+"%s 알림 시간이 되었습니다."
+
+#: ../panel-plugin/xfcetimer.c:221 ../panel-plugin/xfcetimer.c:1508
+msgid "Close"
+msgstr ""
-#: ../src/xfcetimer.c:198
+#: ../panel-plugin/xfcetimer.c:222
msgid "Rerun the timer"
msgstr "타이머 재실행"
-#: ../src/xfcetimer.c:487
+#: ../panel-plugin/xfcetimer.c:515
+msgid "Pause timer"
+msgstr "타이머 일시정지"
+
+#: ../panel-plugin/xfcetimer.c:523
msgid "Resume timer"
msgstr "타이머 복귀"
-#: ../src/xfcetimer.c:494 ../src/xfcetimer.c:550
+#: ../panel-plugin/xfcetimer.c:534
msgid "Stop timer"
msgstr "타이머 멈추기"
-#: ../src/xfcetimer.c:538
-msgid "Pause timer"
-msgstr "타이머 일시정지"
-
-#: ../src/xfcetimer.c:552
-msgid "Start timer"
-msgstr "타이머 시작하기"
-
-#: ../src/xfcetimer.c:561
-msgid "Stop the alarm"
-msgstr "알림 중단하기"
-
-#: ../src/xfcetimer.c:618 ../src/xfcetimer.c:689
+#: ../panel-plugin/xfcetimer.c:614 ../panel-plugin/xfcetimer.c:693
#, c-format
msgid "%dh %dm %ds"
msgstr "%d시 %d분 %d초"
-#: ../src/xfcetimer.c:620 ../src/xfcetimer.c:691
+#: ../panel-plugin/xfcetimer.c:616 ../panel-plugin/xfcetimer.c:695
#, c-format
msgid "%dm %ds"
msgstr "%d분 %d초"
-#: ../src/xfcetimer.c:622 ../src/xfcetimer.c:693
+#: ../panel-plugin/xfcetimer.c:618 ../panel-plugin/xfcetimer.c:697
#, c-format
msgid "%ds"
msgstr "%d초"
-#: ../src/xfcetimer.c:631 ../src/xfcetimer.c:702
+#: ../panel-plugin/xfcetimer.c:626 ../panel-plugin/xfcetimer.c:706
#, c-format
msgid "At %02d:%02d"
msgstr "%02d:%02d"
-#: ../src/xfcetimer.c:801
+#: ../panel-plugin/xfcetimer.c:812
msgid "Name:"
msgstr "이름:"
-#. ********
-#: ../src/xfcetimer.c:809
+#: ../panel-plugin/xfcetimer.c:821
msgid "Enter the countdown time"
msgstr "카운트다운 시간 입력"
-#: ../src/xfcetimer.c:812
+#: ../panel-plugin/xfcetimer.c:826
msgid "Enter the time of alarm (24h format)"
msgstr "알림 시간 입력(24시간제 형식)"
-#: ../src/xfcetimer.c:824
+#: ../panel-plugin/xfcetimer.c:841
msgid "h "
msgstr "시"
-#: ../src/xfcetimer.c:829
+#: ../panel-plugin/xfcetimer.c:848
msgid "m "
msgstr "분"
-#: ../src/xfcetimer.c:834
+#: ../panel-plugin/xfcetimer.c:855
msgid "s "
msgstr "초"
-#: ../src/xfcetimer.c:837
+#: ../panel-plugin/xfcetimer.c:859
msgid "or"
msgstr "또는"
#. **************
-#: ../src/xfcetimer.c:857
+#: ../panel-plugin/xfcetimer.c:881
msgid "Command to run:"
msgstr "실행할 명령:"
-#: ../src/xfcetimer.c:887
+#. **************
+#. add recurring alarm check button
+#: ../panel-plugin/xfcetimer.c:892
+msgid "Recurring alarm"
+msgstr ""
+
+#. add alarm autostart check button
+#: ../panel-plugin/xfcetimer.c:899
+msgid "Auto start when plugin loads"
+msgstr ""
+
+#: ../panel-plugin/xfcetimer.c:909
+msgid "Cancel"
+msgstr ""
+
+#: ../panel-plugin/xfcetimer.c:914
+msgid "Accept"
+msgstr ""
+
+#: ../panel-plugin/xfcetimer.c:925
msgid "Add new alarm"
msgstr "새 알림 추가"
-#: ../src/xfcetimer.c:924
+#: ../panel-plugin/xfcetimer.c:966
msgid "Edit alarm"
msgstr "알림 편집"
-#: ../src/xfcetimer.c:1495 ../src/xfcetimer.c:1504
+#: ../panel-plugin/xfcetimer.c:1506
msgid "Xfce4 Timer Options"
msgstr "Xfce4 타이머 옵션"
-#: ../src/xfcetimer.c:1506
-msgid "Xfce 4 Timer Plugin"
-msgstr "Xfce 4 타이머 플러그인"
-
-#: ../src/xfcetimer.c:1552
+#: ../panel-plugin/xfcetimer.c:1546
msgid "Timer name"
msgstr "타이머 이름"
-#: ../src/xfcetimer.c:1557
+#: ../panel-plugin/xfcetimer.c:1551
msgid ""
"Countdown period /\n"
"Alarm time"
-msgstr "카운트다운 주기 /\n알림 시간"
+msgstr ""
+"카운트다운 주기 /\n"
+"알림 시간"
-#: ../src/xfcetimer.c:1561
+#: ../panel-plugin/xfcetimer.c:1554
msgid "Alarm command"
msgstr "알림 명령"
-#: ../src/xfcetimer.c:1617
+#: ../panel-plugin/xfcetimer.c:1572
+msgid "Add"
+msgstr ""
+
+#: ../panel-plugin/xfcetimer.c:1580
+msgid "Edit"
+msgstr ""
+
+#: ../panel-plugin/xfcetimer.c:1588
+msgid "Remove"
+msgstr ""
+
+#: ../panel-plugin/xfcetimer.c:1596
+msgid "Up"
+msgstr ""
+
+#: ../panel-plugin/xfcetimer.c:1603
+msgid "Down"
+msgstr ""
+
+#: ../panel-plugin/xfcetimer.c:1619
msgid "Don't display a warning if an alarm command is set"
msgstr "알람 명령을 설정했을 경우 경고를 표시하지 않음"
-#: ../src/xfcetimer.c:1622
-msgid "Selecting a timer starts it"
-msgstr "시작할 타이머를 선택하는 중"
-
#. Default alarm command config
-#: ../src/xfcetimer.c:1630
+#: ../panel-plugin/xfcetimer.c:1631
msgid "Use a default alarm command"
msgstr "기본 알림 명령 사용"
-#: ../src/xfcetimer.c:1637
+#: ../panel-plugin/xfcetimer.c:1640
msgid "Default command: "
msgstr "기본 명령:"
#. Alarm repetitions config
-#: ../src/xfcetimer.c:1649
+#: ../panel-plugin/xfcetimer.c:1656
msgid "Repeat the alarm command"
msgstr "알림 명령 반복"
-#: ../src/xfcetimer.c:1656
+#: ../panel-plugin/xfcetimer.c:1665
msgid "Number of repetitions"
msgstr "반복 횟수"
-#: ../src/xfcetimer.c:1662
+#: ../panel-plugin/xfcetimer.c:1674
msgid " Time interval (sec.)"
msgstr " 시간 간격(초)"
-#: ../src/xfcetimer.c:1723
+#: ../panel-plugin/xfcetimer.c:1736
msgid "About xfce4-timer-plugin"
msgstr "xfce4-timer-plugin 정보"
-#: ../src/xfcetimer.c:1728
+#: ../panel-plugin/xfcetimer.c:1739
msgid "A plugin to define countdown timers or alarms at given times."
msgstr "초시계 타이머 또는 주어진 시간에 대한 알림을 정의하는 플러그인 입니다."
-#: ../src/xfcetimer.c:1730
-msgid "Copyright (c) 2005-2013\n"
+#: ../panel-plugin/xfcetimer.c:1742
+#, fuzzy
+msgid "Copyright (c) 2005-2018\n"
msgstr "Copyright (c) 2005-2013\n"
-#: ../src/xfce4-timer.desktop.in.in.h:1
+#: ../panel-plugin/xfce4-timer-plugin.desktop.in.h:1
msgid "Xfce4 Timer"
msgstr "Xfce4 타이머"
-#: ../src/xfce4-timer.desktop.in.in.h:2
+#: ../panel-plugin/xfce4-timer-plugin.desktop.in.h:2
msgid "Timer plugin for Xfce panel"
msgstr "Xfce 패널용 타이머 플러그인"
+
+#~ msgid "Selecting a timer starts it"
+#~ msgstr "시작할 타이머를 선택하는 중"
+
+#~ msgid "Start timer"
+#~ msgstr "타이머 시작하기"
+
+#~ msgid "Stop the alarm"
+#~ msgstr "알림 중단하기"
+
+#~ msgid "Xfce 4 Timer Plugin"
+#~ msgstr "Xfce 4 타이머 플러그인"
diff --git a/po/lt.po b/po/lt.po
index acabd53..e54a9d2 100644
--- a/po/lt.po
+++ b/po/lt.po
@@ -1,223 +1,231 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
-#
+#
# Translators:
# Moo, 2015-2018
msgid ""
msgstr ""
"Project-Id-Version: Xfce Panel Plugins\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-01-04 06:32+0100\n"
+"POT-Creation-Date: 2018-04-21 18:00+0300\n"
"PO-Revision-Date: 2018-01-04 12:11+0000\n"
"Last-Translator: Moo\n"
-"Language-Team: Lithuanian (http://www.transifex.com/xfce/xfce-panel-plugins/language/lt/)\n"
+"Language-Team: Lithuanian (http://www.transifex.com/xfce/xfce-panel-plugins/"
+"language/lt/)\n"
+"Language: lt\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: lt\n"
-"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n"
+"%100<10 || n%100>=20) ? 1 : 2);\n"
-#: ../panel-plugin/xfcetimer.c:153
+#: ../panel-plugin/xfcetimer.c:167
#, c-format
msgid "%dh %dm %ds left"
msgstr "Liko %dh %dm %ds"
-#: ../panel-plugin/xfcetimer.c:156
+#: ../panel-plugin/xfcetimer.c:170
#, c-format
msgid "%dm %ds left"
msgstr "Liko %dm %ds"
-#: ../panel-plugin/xfcetimer.c:159
+#: ../panel-plugin/xfcetimer.c:173
#, c-format
msgid "%ds left"
msgstr "Liko %ds"
-#: ../panel-plugin/xfcetimer.c:163
+#: ../panel-plugin/xfcetimer.c:177
msgid " (Paused)"
msgstr " (Pristabdytas)"
-#: ../panel-plugin/xfcetimer.c:198
+#. Display the name of the alarm when the countdown ends
+#: ../panel-plugin/xfcetimer.c:213
#, c-format
msgid ""
"Beeep! :) \n"
"Time is up for the alarm %s."
-msgstr "Biiip! :) \nPriminimo %s laikas baigėsi."
+msgstr ""
+"Biiip! :) \n"
+"Priminimo %s laikas baigėsi."
-#: ../panel-plugin/xfcetimer.c:210 ../panel-plugin/xfcetimer.c:1493
+#: ../panel-plugin/xfcetimer.c:221 ../panel-plugin/xfcetimer.c:1508
msgid "Close"
msgstr "Užverti"
-#: ../panel-plugin/xfcetimer.c:211
+#: ../panel-plugin/xfcetimer.c:222
msgid "Rerun the timer"
msgstr "Iš naujo paleisti laikmatį"
-#: ../panel-plugin/xfcetimer.c:526
+#: ../panel-plugin/xfcetimer.c:515
+msgid "Pause timer"
+msgstr "Pristabdyti laikmatį"
+
+#: ../panel-plugin/xfcetimer.c:523
msgid "Resume timer"
msgstr "Pratęsti laikmatį"
-#: ../panel-plugin/xfcetimer.c:533 ../panel-plugin/xfcetimer.c:556
+#: ../panel-plugin/xfcetimer.c:534
msgid "Stop timer"
msgstr "Sustabdyti laikmatį"
-#: ../panel-plugin/xfcetimer.c:545
-msgid "Pause timer"
-msgstr "Pristabdyti laikmatį"
-
-#: ../panel-plugin/xfcetimer.c:558
-msgid "Start timer"
-msgstr "Paleisti laikmatį"
-
-#: ../panel-plugin/xfcetimer.c:568
-msgid "Stop the alarm"
-msgstr "Stabdyti priminimą"
-
-#: ../panel-plugin/xfcetimer.c:622 ../panel-plugin/xfcetimer.c:696
+#: ../panel-plugin/xfcetimer.c:614 ../panel-plugin/xfcetimer.c:693
#, c-format
msgid "%dh %dm %ds"
msgstr "%dh %dm %ds"
-#: ../panel-plugin/xfcetimer.c:624 ../panel-plugin/xfcetimer.c:698
+#: ../panel-plugin/xfcetimer.c:616 ../panel-plugin/xfcetimer.c:695
#, c-format
msgid "%dm %ds"
msgstr "%dm %ds"
-#: ../panel-plugin/xfcetimer.c:626 ../panel-plugin/xfcetimer.c:700
+#: ../panel-plugin/xfcetimer.c:618 ../panel-plugin/xfcetimer.c:697
#, c-format
msgid "%ds"
msgstr "%ds"
-#: ../panel-plugin/xfcetimer.c:634 ../panel-plugin/xfcetimer.c:709
+#: ../panel-plugin/xfcetimer.c:626 ../panel-plugin/xfcetimer.c:706
#, c-format
msgid "At %02d:%02d"
msgstr "%02d:%02d"
-#: ../panel-plugin/xfcetimer.c:815
+#: ../panel-plugin/xfcetimer.c:812
msgid "Name:"
msgstr "Pavadinimas:"
-#: ../panel-plugin/xfcetimer.c:824
+#: ../panel-plugin/xfcetimer.c:821
msgid "Enter the countdown time"
msgstr "Įveskite atgal skaičiuojamą laiką"
-#: ../panel-plugin/xfcetimer.c:829
+#: ../panel-plugin/xfcetimer.c:826
msgid "Enter the time of alarm (24h format)"
msgstr "Įveskite priminimo laiką (24val. formatu)"
-#: ../panel-plugin/xfcetimer.c:844
+#: ../panel-plugin/xfcetimer.c:841
msgid "h "
msgstr "val."
-#: ../panel-plugin/xfcetimer.c:851
+#: ../panel-plugin/xfcetimer.c:848
msgid "m "
msgstr "min."
-#: ../panel-plugin/xfcetimer.c:858
+#: ../panel-plugin/xfcetimer.c:855
msgid "s "
msgstr "sek."
-#: ../panel-plugin/xfcetimer.c:862
+#: ../panel-plugin/xfcetimer.c:859
msgid "or"
msgstr "arba"
#. **************
-#: ../panel-plugin/xfcetimer.c:884
+#: ../panel-plugin/xfcetimer.c:881
msgid "Command to run:"
msgstr "Komanda, kurią vykdyti"
-#: ../panel-plugin/xfcetimer.c:898
+#. **************
+#. add recurring alarm check button
+#: ../panel-plugin/xfcetimer.c:892
+msgid "Recurring alarm"
+msgstr ""
+
+#. add alarm autostart check button
+#: ../panel-plugin/xfcetimer.c:899
+msgid "Auto start when plugin loads"
+msgstr ""
+
+#: ../panel-plugin/xfcetimer.c:909
msgid "Cancel"
msgstr "Atsisakyti"
-#: ../panel-plugin/xfcetimer.c:903
+#: ../panel-plugin/xfcetimer.c:914
msgid "Accept"
msgstr "Priimti"
-#: ../panel-plugin/xfcetimer.c:914
+#: ../panel-plugin/xfcetimer.c:925
msgid "Add new alarm"
msgstr "Pridėti naują priminimą"
-#: ../panel-plugin/xfcetimer.c:951
+#: ../panel-plugin/xfcetimer.c:966
msgid "Edit alarm"
msgstr "Keisti priminimą"
-#: ../panel-plugin/xfcetimer.c:1491
+#: ../panel-plugin/xfcetimer.c:1506
msgid "Xfce4 Timer Options"
msgstr "Xfce4 laikmačio parametrai"
-#: ../panel-plugin/xfcetimer.c:1531
+#: ../panel-plugin/xfcetimer.c:1546
msgid "Timer name"
msgstr "Laikmačio pavadinimas"
-#: ../panel-plugin/xfcetimer.c:1536
+#: ../panel-plugin/xfcetimer.c:1551
msgid ""
"Countdown period /\n"
"Alarm time"
-msgstr "Atvirkštinis periodas /\nPriminimo laikas"
+msgstr ""
+"Atvirkštinis periodas /\n"
+"Priminimo laikas"
-#: ../panel-plugin/xfcetimer.c:1539
+#: ../panel-plugin/xfcetimer.c:1554
msgid "Alarm command"
msgstr "Priminimo komanda"
-#: ../panel-plugin/xfcetimer.c:1557
+#: ../panel-plugin/xfcetimer.c:1572
msgid "Add"
msgstr "Pridėti"
-#: ../panel-plugin/xfcetimer.c:1565
+#: ../panel-plugin/xfcetimer.c:1580
msgid "Edit"
msgstr "Taisyti"
-#: ../panel-plugin/xfcetimer.c:1573
+#: ../panel-plugin/xfcetimer.c:1588
msgid "Remove"
msgstr "Šalinti"
-#: ../panel-plugin/xfcetimer.c:1581
+#: ../panel-plugin/xfcetimer.c:1596
msgid "Up"
msgstr "Aukštyn"
-#: ../panel-plugin/xfcetimer.c:1588
+#: ../panel-plugin/xfcetimer.c:1603
msgid "Down"
msgstr "Žemyn"
-#: ../panel-plugin/xfcetimer.c:1604
+#: ../panel-plugin/xfcetimer.c:1619
msgid "Don't display a warning if an alarm command is set"
msgstr "Nerodyti įspėjimo, jei yra nustatyta priminimo komanda"
-#: ../panel-plugin/xfcetimer.c:1610
-msgid "Selecting a timer starts it"
-msgstr "Laikmačio pasirinkimas, jį paleidžia"
-
#. Default alarm command config
-#: ../panel-plugin/xfcetimer.c:1623
+#: ../panel-plugin/xfcetimer.c:1631
msgid "Use a default alarm command"
msgstr "Naudoti numatytąją priminimo komandą"
-#: ../panel-plugin/xfcetimer.c:1632
+#: ../panel-plugin/xfcetimer.c:1640
msgid "Default command: "
msgstr "Numatytoji komanda:"
#. Alarm repetitions config
-#: ../panel-plugin/xfcetimer.c:1648
+#: ../panel-plugin/xfcetimer.c:1656
msgid "Repeat the alarm command"
msgstr "Kartoti priminimo komandą"
-#: ../panel-plugin/xfcetimer.c:1657
+#: ../panel-plugin/xfcetimer.c:1665
msgid "Number of repetitions"
msgstr "Kartojimų skaičius"
-#: ../panel-plugin/xfcetimer.c:1666
+#: ../panel-plugin/xfcetimer.c:1674
msgid " Time interval (sec.)"
msgstr "Laiko intervalas (sek.)"
-#: ../panel-plugin/xfcetimer.c:1728
+#: ../panel-plugin/xfcetimer.c:1736
msgid "About xfce4-timer-plugin"
msgstr "Apie xfce4-timer-plugin"
-#: ../panel-plugin/xfcetimer.c:1731
+#: ../panel-plugin/xfcetimer.c:1739
msgid "A plugin to define countdown timers or alarms at given times."
-msgstr "Įskiepis, skirtas apibrėžti atvirkštinius laikmačius ar priminimus duotu laiku."
+msgstr ""
+"Įskiepis, skirtas apibrėžti atvirkštinius laikmačius ar priminimus duotu "
+"laiku."
-#: ../panel-plugin/xfcetimer.c:1734
+#: ../panel-plugin/xfcetimer.c:1742
msgid "Copyright (c) 2005-2018\n"
msgstr "Autorių teisės (c) 2005-2018\n"
@@ -228,3 +236,12 @@ msgstr "Xfce4 laikmatis"
#: ../panel-plugin/xfce4-timer-plugin.desktop.in.h:2
msgid "Timer plugin for Xfce panel"
msgstr "Laikmačio įskiepis, skirtas Xfce skydeliui"
+
+#~ msgid "Selecting a timer starts it"
+#~ msgstr "Laikmačio pasirinkimas, jį paleidžia"
+
+#~ msgid "Start timer"
+#~ msgstr "Paleisti laikmatį"
+
+#~ msgid "Stop the alarm"
+#~ msgstr "Stabdyti priminimą"
diff --git a/po/lv.po b/po/lv.po
index 3361c63..30d2550 100644
--- a/po/lv.po
+++ b/po/lv.po
@@ -1,204 +1,240 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
-#
+#
# Translators:
# rihards Prieditis <rprieditis at inbox.lv>, 2007
msgid ""
msgstr ""
"Project-Id-Version: Xfce Panel Plugins\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-06-05 06:31+0200\n"
+"POT-Creation-Date: 2018-04-21 18:00+0300\n"
"PO-Revision-Date: 2017-09-19 18:06+0000\n"
"Last-Translator: Xfce Bot <transifex at xfce.org>\n"
-"Language-Team: Latvian (http://www.transifex.com/xfce/xfce-panel-plugins/language/lv/)\n"
+"Language-Team: Latvian (http://www.transifex.com/xfce/xfce-panel-plugins/"
+"language/lv/)\n"
+"Language: lv\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: lv\n"
-"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : "
+"2);\n"
-#: ../src/xfcetimer.c:146
+#: ../panel-plugin/xfcetimer.c:167
#, c-format
msgid "%dh %dm %ds left"
msgstr "%dh %dm %ds palicis"
-#: ../src/xfcetimer.c:149
+#: ../panel-plugin/xfcetimer.c:170
#, c-format
msgid "%dm %ds left"
msgstr "%dm %ds palicis"
-#: ../src/xfcetimer.c:151
+#: ../panel-plugin/xfcetimer.c:173
#, c-format
msgid "%ds left"
msgstr "%ds palicis"
-#: ../src/xfcetimer.c:154
+#: ../panel-plugin/xfcetimer.c:177
msgid " (Paused)"
msgstr ""
#. Display the name of the alarm when the countdown ends
-#: ../src/xfcetimer.c:188
+#: ../panel-plugin/xfcetimer.c:213
#, c-format
msgid ""
"Beeep! :) \n"
"Time is up for the alarm %s."
msgstr ""
-#: ../src/xfcetimer.c:198
-msgid "Rerun the timer"
+#: ../panel-plugin/xfcetimer.c:221 ../panel-plugin/xfcetimer.c:1508
+msgid "Close"
msgstr ""
-#: ../src/xfcetimer.c:487
-msgid "Resume timer"
+#: ../panel-plugin/xfcetimer.c:222
+msgid "Rerun the timer"
msgstr ""
-#: ../src/xfcetimer.c:494 ../src/xfcetimer.c:550
-msgid "Stop timer"
-msgstr "Apturēt taimeri"
-
-#: ../src/xfcetimer.c:538
+#: ../panel-plugin/xfcetimer.c:515
msgid "Pause timer"
msgstr ""
-#: ../src/xfcetimer.c:552
-msgid "Start timer"
-msgstr "Palaist taimeri"
+#: ../panel-plugin/xfcetimer.c:523
+msgid "Resume timer"
+msgstr ""
-#: ../src/xfcetimer.c:561
-msgid "Stop the alarm"
-msgstr "Apturēt trauksmi"
+#: ../panel-plugin/xfcetimer.c:534
+msgid "Stop timer"
+msgstr "Apturēt taimeri"
-#: ../src/xfcetimer.c:618 ../src/xfcetimer.c:689
+#: ../panel-plugin/xfcetimer.c:614 ../panel-plugin/xfcetimer.c:693
#, c-format
msgid "%dh %dm %ds"
msgstr "%dh %dm %ds"
-#: ../src/xfcetimer.c:620 ../src/xfcetimer.c:691
+#: ../panel-plugin/xfcetimer.c:616 ../panel-plugin/xfcetimer.c:695
#, c-format
msgid "%dm %ds"
msgstr "%dm %ds"
-#: ../src/xfcetimer.c:622 ../src/xfcetimer.c:693
+#: ../panel-plugin/xfcetimer.c:618 ../panel-plugin/xfcetimer.c:697
#, c-format
msgid "%ds"
msgstr "%ds"
-#: ../src/xfcetimer.c:631 ../src/xfcetimer.c:702
+#: ../panel-plugin/xfcetimer.c:626 ../panel-plugin/xfcetimer.c:706
#, c-format
msgid "At %02d:%02d"
msgstr "Pie %02d:%02d"
-#: ../src/xfcetimer.c:801
+#: ../panel-plugin/xfcetimer.c:812
msgid "Name:"
msgstr "Nosaukums:"
-#. ********
-#: ../src/xfcetimer.c:809
+#: ../panel-plugin/xfcetimer.c:821
msgid "Enter the countdown time"
msgstr "Ievadiet atskaites punkta laiku"
-#: ../src/xfcetimer.c:812
+#: ../panel-plugin/xfcetimer.c:826
msgid "Enter the time of alarm (24h format)"
msgstr "Ievadiet trauksmes laiku (24st formāts)"
-#: ../src/xfcetimer.c:824
+#: ../panel-plugin/xfcetimer.c:841
msgid "h "
msgstr "st "
-#: ../src/xfcetimer.c:829
+#: ../panel-plugin/xfcetimer.c:848
msgid "m "
msgstr "m "
-#: ../src/xfcetimer.c:834
+#: ../panel-plugin/xfcetimer.c:855
msgid "s "
msgstr "s "
-#: ../src/xfcetimer.c:837
+#: ../panel-plugin/xfcetimer.c:859
msgid "or"
msgstr ""
#. **************
-#: ../src/xfcetimer.c:857
+#: ../panel-plugin/xfcetimer.c:881
msgid "Command to run:"
msgstr ""
-#: ../src/xfcetimer.c:887
+#. **************
+#. add recurring alarm check button
+#: ../panel-plugin/xfcetimer.c:892
+msgid "Recurring alarm"
+msgstr ""
+
+#. add alarm autostart check button
+#: ../panel-plugin/xfcetimer.c:899
+msgid "Auto start when plugin loads"
+msgstr ""
+
+#: ../panel-plugin/xfcetimer.c:909
+msgid "Cancel"
+msgstr ""
+
+#: ../panel-plugin/xfcetimer.c:914
+msgid "Accept"
+msgstr ""
+
+#: ../panel-plugin/xfcetimer.c:925
msgid "Add new alarm"
msgstr "Pievienot jaunu trauksmi"
-#: ../src/xfcetimer.c:924
+#: ../panel-plugin/xfcetimer.c:966
msgid "Edit alarm"
msgstr "Rediģēt trauksmi"
-#: ../src/xfcetimer.c:1495 ../src/xfcetimer.c:1504
+#: ../panel-plugin/xfcetimer.c:1506
msgid "Xfce4 Timer Options"
msgstr "Xfce4 Taimera Uzstādījumi"
-#: ../src/xfcetimer.c:1506
-msgid "Xfce 4 Timer Plugin"
-msgstr ""
-
-#: ../src/xfcetimer.c:1552
+#: ../panel-plugin/xfcetimer.c:1546
msgid "Timer name"
msgstr ""
-#: ../src/xfcetimer.c:1557
+#: ../panel-plugin/xfcetimer.c:1551
msgid ""
"Countdown period /\n"
"Alarm time"
-msgstr "Atskaites periods /\nTrauksmes laiks"
+msgstr ""
+"Atskaites periods /\n"
+"Trauksmes laiks"
-#: ../src/xfcetimer.c:1561
+#: ../panel-plugin/xfcetimer.c:1554
msgid "Alarm command"
msgstr "Trauksmes komanda"
-#: ../src/xfcetimer.c:1617
-msgid "Don't display a warning if an alarm command is set"
+#: ../panel-plugin/xfcetimer.c:1572
+msgid "Add"
+msgstr ""
+
+#: ../panel-plugin/xfcetimer.c:1580
+msgid "Edit"
msgstr ""
-#: ../src/xfcetimer.c:1622
-msgid "Selecting a timer starts it"
+#: ../panel-plugin/xfcetimer.c:1588
+msgid "Remove"
+msgstr ""
+
+#: ../panel-plugin/xfcetimer.c:1596
+msgid "Up"
+msgstr ""
+
+#: ../panel-plugin/xfcetimer.c:1603
+msgid "Down"
+msgstr ""
+
+#: ../panel-plugin/xfcetimer.c:1619
+msgid "Don't display a warning if an alarm command is set"
msgstr ""
#. Default alarm command config
-#: ../src/xfcetimer.c:1630
+#: ../panel-plugin/xfcetimer.c:1631
msgid "Use a default alarm command"
msgstr ""
-#: ../src/xfcetimer.c:1637
+#: ../panel-plugin/xfcetimer.c:1640
msgid "Default command: "
msgstr ""
#. Alarm repetitions config
-#: ../src/xfcetimer.c:1649
+#: ../panel-plugin/xfcetimer.c:1656
msgid "Repeat the alarm command"
msgstr ""
-#: ../src/xfcetimer.c:1656
+#: ../panel-plugin/xfcetimer.c:1665
msgid "Number of repetitions"
msgstr "Mēģinājumu skaits"
-#: ../src/xfcetimer.c:1662
+#: ../panel-plugin/xfcetimer.c:1674
msgid " Time interval (sec.)"
msgstr " Laika intervāls (sek.)"
-#: ../src/xfcetimer.c:1723
+#: ../panel-plugin/xfcetimer.c:1736
msgid "About xfce4-timer-plugin"
msgstr ""
-#: ../src/xfcetimer.c:1728
+#: ../panel-plugin/xfcetimer.c:1739
msgid "A plugin to define countdown timers or alarms at given times."
msgstr ""
-#: ../src/xfcetimer.c:1730
-msgid "Copyright (c) 2005-2013\n"
+#: ../panel-plugin/xfcetimer.c:1742
+msgid "Copyright (c) 2005-2018\n"
msgstr ""
-#: ../src/xfce4-timer.desktop.in.in.h:1
+#: ../panel-plugin/xfce4-timer-plugin.desktop.in.h:1
msgid "Xfce4 Timer"
msgstr "Xfce4 Taimeris"
-#: ../src/xfce4-timer.desktop.in.in.h:2
+#: ../panel-plugin/xfce4-timer-plugin.desktop.in.h:2
msgid "Timer plugin for Xfce panel"
msgstr "Taimera spraudnis Xfce panelim"
+
+#~ msgid "Start timer"
+#~ msgstr "Palaist taimeri"
+
+#~ msgid "Stop the alarm"
+#~ msgstr "Apturēt trauksmi"
diff --git a/po/ms.po b/po/ms.po
index c9e04f9..24c9103 100644
--- a/po/ms.po
+++ b/po/ms.po
@@ -1,223 +1,230 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
-#
+#
# Translators:
# abuyop <abuyop at gmail.com>, 2014,2018
msgid ""
msgstr ""
"Project-Id-Version: Xfce Panel Plugins\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-01-04 06:32+0100\n"
+"POT-Creation-Date: 2018-04-21 18:00+0300\n"
"PO-Revision-Date: 2018-01-06 11:17+0000\n"
"Last-Translator: abuyop <abuyop at gmail.com>\n"
-"Language-Team: Malay (http://www.transifex.com/xfce/xfce-panel-plugins/language/ms/)\n"
+"Language-Team: Malay (http://www.transifex.com/xfce/xfce-panel-plugins/"
+"language/ms/)\n"
+"Language: ms\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: ms\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-#: ../panel-plugin/xfcetimer.c:153
+#: ../panel-plugin/xfcetimer.c:167
#, c-format
msgid "%dh %dm %ds left"
msgstr "j%dh %dm %ds berbaki"
-#: ../panel-plugin/xfcetimer.c:156
+#: ../panel-plugin/xfcetimer.c:170
#, c-format
msgid "%dm %ds left"
msgstr "%dm %ds berbaki"
-#: ../panel-plugin/xfcetimer.c:159
+#: ../panel-plugin/xfcetimer.c:173
#, c-format
msgid "%ds left"
msgstr "%ds berbaki"
-#: ../panel-plugin/xfcetimer.c:163
+#: ../panel-plugin/xfcetimer.c:177
msgid " (Paused)"
msgstr "(Dijeda)"
-#: ../panel-plugin/xfcetimer.c:198
+#. Display the name of the alarm when the countdown ends
+#: ../panel-plugin/xfcetimer.c:213
#, c-format
msgid ""
"Beeep! :) \n"
"Time is up for the alarm %s."
-msgstr "Bip! :)\nMasa sudah tamat bagi penggera %s."
+msgstr ""
+"Bip! :)\n"
+"Masa sudah tamat bagi penggera %s."
-#: ../panel-plugin/xfcetimer.c:210 ../panel-plugin/xfcetimer.c:1493
+#: ../panel-plugin/xfcetimer.c:221 ../panel-plugin/xfcetimer.c:1508
msgid "Close"
msgstr "Tutup"
-#: ../panel-plugin/xfcetimer.c:211
+#: ../panel-plugin/xfcetimer.c:222
msgid "Rerun the timer"
msgstr "Jalan semula pemasa"
-#: ../panel-plugin/xfcetimer.c:526
+#: ../panel-plugin/xfcetimer.c:515
+msgid "Pause timer"
+msgstr "Jeda pemasa"
+
+#: ../panel-plugin/xfcetimer.c:523
msgid "Resume timer"
msgstr "Sambung semula pemasa"
-#: ../panel-plugin/xfcetimer.c:533 ../panel-plugin/xfcetimer.c:556
+#: ../panel-plugin/xfcetimer.c:534
msgid "Stop timer"
msgstr "Henti pemasa"
-#: ../panel-plugin/xfcetimer.c:545
-msgid "Pause timer"
-msgstr "Jeda pemasa"
-
-#: ../panel-plugin/xfcetimer.c:558
-msgid "Start timer"
-msgstr "Mula pemasa"
-
-#: ../panel-plugin/xfcetimer.c:568
-msgid "Stop the alarm"
-msgstr "Hentikan penggera"
-
-#: ../panel-plugin/xfcetimer.c:622 ../panel-plugin/xfcetimer.c:696
+#: ../panel-plugin/xfcetimer.c:614 ../panel-plugin/xfcetimer.c:693
#, c-format
msgid "%dh %dm %ds"
msgstr "%dj %dm %ds"
-#: ../panel-plugin/xfcetimer.c:624 ../panel-plugin/xfcetimer.c:698
+#: ../panel-plugin/xfcetimer.c:616 ../panel-plugin/xfcetimer.c:695
#, c-format
msgid "%dm %ds"
msgstr "%dm %ds"
-#: ../panel-plugin/xfcetimer.c:626 ../panel-plugin/xfcetimer.c:700
+#: ../panel-plugin/xfcetimer.c:618 ../panel-plugin/xfcetimer.c:697
#, c-format
msgid "%ds"
msgstr "%ds"
-#: ../panel-plugin/xfcetimer.c:634 ../panel-plugin/xfcetimer.c:709
+#: ../panel-plugin/xfcetimer.c:626 ../panel-plugin/xfcetimer.c:706
#, c-format
msgid "At %02d:%02d"
msgstr "Pada %02d:%02d"
-#: ../panel-plugin/xfcetimer.c:815
+#: ../panel-plugin/xfcetimer.c:812
msgid "Name:"
msgstr "Nama:"
-#: ../panel-plugin/xfcetimer.c:824
+#: ../panel-plugin/xfcetimer.c:821
msgid "Enter the countdown time"
msgstr "Masukkan masa kiraan mengundur"
-#: ../panel-plugin/xfcetimer.c:829
+#: ../panel-plugin/xfcetimer.c:826
msgid "Enter the time of alarm (24h format)"
msgstr "Masukkan masa penggera (format 24j)"
-#: ../panel-plugin/xfcetimer.c:844
+#: ../panel-plugin/xfcetimer.c:841
msgid "h "
msgstr "j"
-#: ../panel-plugin/xfcetimer.c:851
+#: ../panel-plugin/xfcetimer.c:848
msgid "m "
msgstr "m"
-#: ../panel-plugin/xfcetimer.c:858
+#: ../panel-plugin/xfcetimer.c:855
msgid "s "
msgstr "s"
-#: ../panel-plugin/xfcetimer.c:862
+#: ../panel-plugin/xfcetimer.c:859
msgid "or"
msgstr "atau"
#. **************
-#: ../panel-plugin/xfcetimer.c:884
+#: ../panel-plugin/xfcetimer.c:881
msgid "Command to run:"
msgstr "Perintah untuk dijalan:"
-#: ../panel-plugin/xfcetimer.c:898
+#. **************
+#. add recurring alarm check button
+#: ../panel-plugin/xfcetimer.c:892
+msgid "Recurring alarm"
+msgstr ""
+
+#. add alarm autostart check button
+#: ../panel-plugin/xfcetimer.c:899
+msgid "Auto start when plugin loads"
+msgstr ""
+
+#: ../panel-plugin/xfcetimer.c:909
msgid "Cancel"
msgstr "Batal"
-#: ../panel-plugin/xfcetimer.c:903
+#: ../panel-plugin/xfcetimer.c:914
msgid "Accept"
msgstr "Terima"
-#: ../panel-plugin/xfcetimer.c:914
+#: ../panel-plugin/xfcetimer.c:925
msgid "Add new alarm"
msgstr "Tambah penggera baharu"
-#: ../panel-plugin/xfcetimer.c:951
+#: ../panel-plugin/xfcetimer.c:966
msgid "Edit alarm"
msgstr "Sunting penggera"
-#: ../panel-plugin/xfcetimer.c:1491
+#: ../panel-plugin/xfcetimer.c:1506
msgid "Xfce4 Timer Options"
msgstr "Pilihan Pemasa Xfce4"
-#: ../panel-plugin/xfcetimer.c:1531
+#: ../panel-plugin/xfcetimer.c:1546
msgid "Timer name"
msgstr "Nama pemasa"
-#: ../panel-plugin/xfcetimer.c:1536
+#: ../panel-plugin/xfcetimer.c:1551
msgid ""
"Countdown period /\n"
"Alarm time"
-msgstr "Tempoh kiraan mengundur/\nMasa penggera"
+msgstr ""
+"Tempoh kiraan mengundur/\n"
+"Masa penggera"
-#: ../panel-plugin/xfcetimer.c:1539
+#: ../panel-plugin/xfcetimer.c:1554
msgid "Alarm command"
msgstr "Perintah penggera"
-#: ../panel-plugin/xfcetimer.c:1557
+#: ../panel-plugin/xfcetimer.c:1572
msgid "Add"
msgstr "Tambah"
-#: ../panel-plugin/xfcetimer.c:1565
+#: ../panel-plugin/xfcetimer.c:1580
msgid "Edit"
msgstr "Sunting"
-#: ../panel-plugin/xfcetimer.c:1573
+#: ../panel-plugin/xfcetimer.c:1588
msgid "Remove"
msgstr "Buang"
-#: ../panel-plugin/xfcetimer.c:1581
+#: ../panel-plugin/xfcetimer.c:1596
msgid "Up"
msgstr "Nai"
-#: ../panel-plugin/xfcetimer.c:1588
+#: ../panel-plugin/xfcetimer.c:1603
msgid "Down"
msgstr "Turun"
-#: ../panel-plugin/xfcetimer.c:1604
+#: ../panel-plugin/xfcetimer.c:1619
msgid "Don't display a warning if an alarm command is set"
msgstr "Jangan papar amaran jika perintah amaran ditetapkan"
-#: ../panel-plugin/xfcetimer.c:1610
-msgid "Selecting a timer starts it"
-msgstr "Memilih pemasa memulakannya"
-
#. Default alarm command config
-#: ../panel-plugin/xfcetimer.c:1623
+#: ../panel-plugin/xfcetimer.c:1631
msgid "Use a default alarm command"
msgstr "Guna perintah penggera lalai"
-#: ../panel-plugin/xfcetimer.c:1632
+#: ../panel-plugin/xfcetimer.c:1640
msgid "Default command: "
msgstr "Perintah lalai:"
#. Alarm repetitions config
-#: ../panel-plugin/xfcetimer.c:1648
+#: ../panel-plugin/xfcetimer.c:1656
msgid "Repeat the alarm command"
msgstr "Ulang perintah penggera"
-#: ../panel-plugin/xfcetimer.c:1657
+#: ../panel-plugin/xfcetimer.c:1665
msgid "Number of repetitions"
msgstr "Bilangan ulangan"
-#: ../panel-plugin/xfcetimer.c:1666
+#: ../panel-plugin/xfcetimer.c:1674
msgid " Time interval (sec.)"
msgstr "Sela masa (saat)"
-#: ../panel-plugin/xfcetimer.c:1728
+#: ../panel-plugin/xfcetimer.c:1736
msgid "About xfce4-timer-plugin"
msgstr "Perihal xfce4-timer-plugin"
-#: ../panel-plugin/xfcetimer.c:1731
+#: ../panel-plugin/xfcetimer.c:1739
msgid "A plugin to define countdown timers or alarms at given times."
-msgstr "Merupakan pemalam yang mentakrif pemasa kiraan mengundur atau penggera pada masa yang diberikan."
+msgstr ""
+"Merupakan pemalam yang mentakrif pemasa kiraan mengundur atau penggera pada "
+"masa yang diberikan."
-#: ../panel-plugin/xfcetimer.c:1734
+#: ../panel-plugin/xfcetimer.c:1742
msgid "Copyright (c) 2005-2018\n"
msgstr "Hakcipta (c) 2005-2018\n"
@@ -228,3 +235,12 @@ msgstr "Pemasa Xfce4"
#: ../panel-plugin/xfce4-timer-plugin.desktop.in.h:2
msgid "Timer plugin for Xfce panel"
msgstr "Pemalam pemasa untuk panel Xfce"
+
+#~ msgid "Selecting a timer starts it"
+#~ msgstr "Memilih pemasa memulakannya"
+
+#~ msgid "Start timer"
+#~ msgstr "Mula pemasa"
+
+#~ msgid "Stop the alarm"
+#~ msgstr "Hentikan penggera"
diff --git a/po/nb.po b/po/nb.po
index 3e50084..094b8b2 100644
--- a/po/nb.po
+++ b/po/nb.po
@@ -1,7 +1,7 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
-#
+#
# Translators:
# Allan Nordhøy <epost at anotheragency.no>, 2015
# Allan Nordhøy <epost at anotheragency.no>, 2017
@@ -11,216 +11,222 @@ msgid ""
msgstr ""
"Project-Id-Version: Xfce Panel Plugins\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-01-04 06:32+0100\n"
+"POT-Creation-Date: 2018-04-21 18:00+0300\n"
"PO-Revision-Date: 2018-03-10 13:42+0000\n"
"Last-Translator: Erlend Østlie <erlendandreas12368 at gmail.com>\n"
-"Language-Team: Norwegian Bokmål (http://www.transifex.com/xfce/xfce-panel-plugins/language/nb/)\n"
+"Language-Team: Norwegian Bokmål (http://www.transifex.com/xfce/xfce-panel-"
+"plugins/language/nb/)\n"
+"Language: nb\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: nb\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: ../panel-plugin/xfcetimer.c:153
+#: ../panel-plugin/xfcetimer.c:167
#, c-format
msgid "%dh %dm %ds left"
msgstr "%dt %dm %ds gjenstår"
-#: ../panel-plugin/xfcetimer.c:156
+#: ../panel-plugin/xfcetimer.c:170
#, c-format
msgid "%dm %ds left"
msgstr "%dm %ds gjenstår"
-#: ../panel-plugin/xfcetimer.c:159
+#: ../panel-plugin/xfcetimer.c:173
#, c-format
msgid "%ds left"
msgstr "%ds gjenstår"
-#: ../panel-plugin/xfcetimer.c:163
+#: ../panel-plugin/xfcetimer.c:177
msgid " (Paused)"
msgstr "(Pauset)"
-#: ../panel-plugin/xfcetimer.c:198
+#. Display the name of the alarm when the countdown ends
+#: ../panel-plugin/xfcetimer.c:213
#, c-format
msgid ""
"Beeep! :) \n"
"Time is up for the alarm %s."
-msgstr "Biiip! :) \nTiden er ute for alarmen %s."
+msgstr ""
+"Biiip! :) \n"
+"Tiden er ute for alarmen %s."
-#: ../panel-plugin/xfcetimer.c:210 ../panel-plugin/xfcetimer.c:1493
+#: ../panel-plugin/xfcetimer.c:221 ../panel-plugin/xfcetimer.c:1508
msgid "Close"
msgstr "Lukk"
-#: ../panel-plugin/xfcetimer.c:211
+#: ../panel-plugin/xfcetimer.c:222
msgid "Rerun the timer"
msgstr "Kjør tidtakeren på ny"
-#: ../panel-plugin/xfcetimer.c:526
+#: ../panel-plugin/xfcetimer.c:515
+msgid "Pause timer"
+msgstr "Pause tidtakeren"
+
+#: ../panel-plugin/xfcetimer.c:523
msgid "Resume timer"
msgstr "Fortsett tidtakeren"
-#: ../panel-plugin/xfcetimer.c:533 ../panel-plugin/xfcetimer.c:556
+#: ../panel-plugin/xfcetimer.c:534
msgid "Stop timer"
msgstr "Stopp tidtaker"
-#: ../panel-plugin/xfcetimer.c:545
-msgid "Pause timer"
-msgstr "Pause tidtakeren"
-
-#: ../panel-plugin/xfcetimer.c:558
-msgid "Start timer"
-msgstr "Start tidtaker"
-
-#: ../panel-plugin/xfcetimer.c:568
-msgid "Stop the alarm"
-msgstr "Stopp alarmen"
-
-#: ../panel-plugin/xfcetimer.c:622 ../panel-plugin/xfcetimer.c:696
+#: ../panel-plugin/xfcetimer.c:614 ../panel-plugin/xfcetimer.c:693
#, c-format
msgid "%dh %dm %ds"
msgstr "%dt %dm %ds"
-#: ../panel-plugin/xfcetimer.c:624 ../panel-plugin/xfcetimer.c:698
+#: ../panel-plugin/xfcetimer.c:616 ../panel-plugin/xfcetimer.c:695
#, c-format
msgid "%dm %ds"
msgstr "%dm %ds"
-#: ../panel-plugin/xfcetimer.c:626 ../panel-plugin/xfcetimer.c:700
+#: ../panel-plugin/xfcetimer.c:618 ../panel-plugin/xfcetimer.c:697
#, c-format
msgid "%ds"
msgstr "%ds"
-#: ../panel-plugin/xfcetimer.c:634 ../panel-plugin/xfcetimer.c:709
+#: ../panel-plugin/xfcetimer.c:626 ../panel-plugin/xfcetimer.c:706
#, c-format
msgid "At %02d:%02d"
msgstr "Ved %02d:%02d"
-#: ../panel-plugin/xfcetimer.c:815
+#: ../panel-plugin/xfcetimer.c:812
msgid "Name:"
msgstr "Navn:"
-#: ../panel-plugin/xfcetimer.c:824
+#: ../panel-plugin/xfcetimer.c:821
msgid "Enter the countdown time"
msgstr "Skriv inn nedtellingstiden"
-#: ../panel-plugin/xfcetimer.c:829
+#: ../panel-plugin/xfcetimer.c:826
msgid "Enter the time of alarm (24h format)"
msgstr "Skriv inn tidspunktet for alarmen (24t-format)"
-#: ../panel-plugin/xfcetimer.c:844
+#: ../panel-plugin/xfcetimer.c:841
msgid "h "
msgstr "t"
-#: ../panel-plugin/xfcetimer.c:851
+#: ../panel-plugin/xfcetimer.c:848
msgid "m "
msgstr "m"
-#: ../panel-plugin/xfcetimer.c:858
+#: ../panel-plugin/xfcetimer.c:855
msgid "s "
msgstr "s"
-#: ../panel-plugin/xfcetimer.c:862
+#: ../panel-plugin/xfcetimer.c:859
msgid "or"
msgstr "eller"
#. **************
-#: ../panel-plugin/xfcetimer.c:884
+#: ../panel-plugin/xfcetimer.c:881
msgid "Command to run:"
msgstr "Kommando å kjøre:"
-#: ../panel-plugin/xfcetimer.c:898
+#. **************
+#. add recurring alarm check button
+#: ../panel-plugin/xfcetimer.c:892
+msgid "Recurring alarm"
+msgstr ""
+
+#. add alarm autostart check button
+#: ../panel-plugin/xfcetimer.c:899
+msgid "Auto start when plugin loads"
+msgstr ""
+
+#: ../panel-plugin/xfcetimer.c:909
msgid "Cancel"
msgstr "Avbryt"
-#: ../panel-plugin/xfcetimer.c:903
+#: ../panel-plugin/xfcetimer.c:914
msgid "Accept"
msgstr "Legg til"
-#: ../panel-plugin/xfcetimer.c:914
+#: ../panel-plugin/xfcetimer.c:925
msgid "Add new alarm"
msgstr "Legg til ny alarm"
-#: ../panel-plugin/xfcetimer.c:951
+#: ../panel-plugin/xfcetimer.c:966
msgid "Edit alarm"
msgstr "Endre alarm"
-#: ../panel-plugin/xfcetimer.c:1491
+#: ../panel-plugin/xfcetimer.c:1506
msgid "Xfce4 Timer Options"
msgstr "Xfce4 tidtakeralternativer"
-#: ../panel-plugin/xfcetimer.c:1531
+#: ../panel-plugin/xfcetimer.c:1546
msgid "Timer name"
msgstr "Tidtakernavn"
-#: ../panel-plugin/xfcetimer.c:1536
+#: ../panel-plugin/xfcetimer.c:1551
msgid ""
"Countdown period /\n"
"Alarm time"
-msgstr "Nedtellingsperiode /\nAlarmtid"
+msgstr ""
+"Nedtellingsperiode /\n"
+"Alarmtid"
-#: ../panel-plugin/xfcetimer.c:1539
+#: ../panel-plugin/xfcetimer.c:1554
msgid "Alarm command"
msgstr "Alarmkommando"
-#: ../panel-plugin/xfcetimer.c:1557
+#: ../panel-plugin/xfcetimer.c:1572
msgid "Add"
msgstr "Legg til"
-#: ../panel-plugin/xfcetimer.c:1565
+#: ../panel-plugin/xfcetimer.c:1580
msgid "Edit"
msgstr "Endre"
-#: ../panel-plugin/xfcetimer.c:1573
+#: ../panel-plugin/xfcetimer.c:1588
msgid "Remove"
msgstr "Fjern"
-#: ../panel-plugin/xfcetimer.c:1581
+#: ../panel-plugin/xfcetimer.c:1596
msgid "Up"
msgstr "Opp"
-#: ../panel-plugin/xfcetimer.c:1588
+#: ../panel-plugin/xfcetimer.c:1603
msgid "Down"
msgstr "Ned"
-#: ../panel-plugin/xfcetimer.c:1604
+#: ../panel-plugin/xfcetimer.c:1619
msgid "Don't display a warning if an alarm command is set"
msgstr "Ikke vis en advarsel hvis en alarmkommando er satt"
-#: ../panel-plugin/xfcetimer.c:1610
-msgid "Selecting a timer starts it"
-msgstr "Start tidtaker når den velges"
-
#. Default alarm command config
-#: ../panel-plugin/xfcetimer.c:1623
+#: ../panel-plugin/xfcetimer.c:1631
msgid "Use a default alarm command"
msgstr "Bruk en standard alarmkommando"
-#: ../panel-plugin/xfcetimer.c:1632
+#: ../panel-plugin/xfcetimer.c:1640
msgid "Default command: "
msgstr "Standard kommando:"
#. Alarm repetitions config
-#: ../panel-plugin/xfcetimer.c:1648
+#: ../panel-plugin/xfcetimer.c:1656
msgid "Repeat the alarm command"
msgstr "Repeter alarmkommandoen"
-#: ../panel-plugin/xfcetimer.c:1657
+#: ../panel-plugin/xfcetimer.c:1665
msgid "Number of repetitions"
msgstr "Antall repetisjoner"
-#: ../panel-plugin/xfcetimer.c:1666
+#: ../panel-plugin/xfcetimer.c:1674
msgid " Time interval (sec.)"
msgstr "Tidsintervall (sek.)"
-#: ../panel-plugin/xfcetimer.c:1728
+#: ../panel-plugin/xfcetimer.c:1736
msgid "About xfce4-timer-plugin"
msgstr "Om xfce4-timer-programtillegget"
-#: ../panel-plugin/xfcetimer.c:1731
+#: ../panel-plugin/xfcetimer.c:1739
msgid "A plugin to define countdown timers or alarms at given times."
-msgstr "Et programtillegg for å angi nedtellinger eller alarmer for gitte tider."
+msgstr ""
+"Et programtillegg for å angi nedtellinger eller alarmer for gitte tider."
-#: ../panel-plugin/xfcetimer.c:1734
+#: ../panel-plugin/xfcetimer.c:1742
msgid "Copyright (c) 2005-2018\n"
msgstr "Kopirett (c) 2005-2018\n"
@@ -231,3 +237,12 @@ msgstr "Xfce4 Tidtaker"
#: ../panel-plugin/xfce4-timer-plugin.desktop.in.h:2
msgid "Timer plugin for Xfce panel"
msgstr "Tidtaker-programtillegg for Xfce-panelet"
+
+#~ msgid "Selecting a timer starts it"
+#~ msgstr "Start tidtaker når den velges"
+
+#~ msgid "Start timer"
+#~ msgstr "Start tidtaker"
+
+#~ msgid "Stop the alarm"
+#~ msgstr "Stopp alarmen"
diff --git a/po/nl.po b/po/nl.po
index b4ee974..5935b51 100644
--- a/po/nl.po
+++ b/po/nl.po
@@ -1,223 +1,229 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
-#
+#
# Translators:
# Pjotr <pjotrvertaalt at gmail.com>, 2013-2014,2017-2018
msgid ""
msgstr ""
"Project-Id-Version: Xfce Panel Plugins\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-01-04 06:32+0100\n"
+"POT-Creation-Date: 2018-04-21 18:00+0300\n"
"PO-Revision-Date: 2018-01-04 11:38+0000\n"
"Last-Translator: Pjotr <pjotrvertaalt at gmail.com>\n"
-"Language-Team: Dutch (http://www.transifex.com/xfce/xfce-panel-plugins/language/nl/)\n"
+"Language-Team: Dutch (http://www.transifex.com/xfce/xfce-panel-plugins/"
+"language/nl/)\n"
+"Language: nl\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: nl\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: ../panel-plugin/xfcetimer.c:153
+#: ../panel-plugin/xfcetimer.c:167
#, c-format
msgid "%dh %dm %ds left"
msgstr "%du %dm %ds over"
-#: ../panel-plugin/xfcetimer.c:156
+#: ../panel-plugin/xfcetimer.c:170
#, c-format
msgid "%dm %ds left"
msgstr "%dm %ds over"
-#: ../panel-plugin/xfcetimer.c:159
+#: ../panel-plugin/xfcetimer.c:173
#, c-format
msgid "%ds left"
msgstr "%ds over"
-#: ../panel-plugin/xfcetimer.c:163
+#: ../panel-plugin/xfcetimer.c:177
msgid " (Paused)"
msgstr "(Gepauzeerd)"
-#: ../panel-plugin/xfcetimer.c:198
+#. Display the name of the alarm when the countdown ends
+#: ../panel-plugin/xfcetimer.c:213
#, c-format
msgid ""
"Beeep! :) \n"
"Time is up for the alarm %s."
-msgstr "Tuuut! :) \nTijd is verstreken voor het alarm %s."
+msgstr ""
+"Tuuut! :) \n"
+"Tijd is verstreken voor het alarm %s."
-#: ../panel-plugin/xfcetimer.c:210 ../panel-plugin/xfcetimer.c:1493
+#: ../panel-plugin/xfcetimer.c:221 ../panel-plugin/xfcetimer.c:1508
msgid "Close"
msgstr "Sluiten"
-#: ../panel-plugin/xfcetimer.c:211
+#: ../panel-plugin/xfcetimer.c:222
msgid "Rerun the timer"
msgstr "Draai de tijdmeter opnieuw"
-#: ../panel-plugin/xfcetimer.c:526
+#: ../panel-plugin/xfcetimer.c:515
+msgid "Pause timer"
+msgstr "Pauzeer aftelklok"
+
+#: ../panel-plugin/xfcetimer.c:523
msgid "Resume timer"
msgstr "Hervat aftelklok"
-#: ../panel-plugin/xfcetimer.c:533 ../panel-plugin/xfcetimer.c:556
+#: ../panel-plugin/xfcetimer.c:534
msgid "Stop timer"
msgstr "Staak tijdmeter"
-#: ../panel-plugin/xfcetimer.c:545
-msgid "Pause timer"
-msgstr "Pauzeer aftelklok"
-
-#: ../panel-plugin/xfcetimer.c:558
-msgid "Start timer"
-msgstr "Start tijdmeter"
-
-#: ../panel-plugin/xfcetimer.c:568
-msgid "Stop the alarm"
-msgstr "Staak het alarm"
-
-#: ../panel-plugin/xfcetimer.c:622 ../panel-plugin/xfcetimer.c:696
+#: ../panel-plugin/xfcetimer.c:614 ../panel-plugin/xfcetimer.c:693
#, c-format
msgid "%dh %dm %ds"
msgstr "%du %dm %ds"
-#: ../panel-plugin/xfcetimer.c:624 ../panel-plugin/xfcetimer.c:698
+#: ../panel-plugin/xfcetimer.c:616 ../panel-plugin/xfcetimer.c:695
#, c-format
msgid "%dm %ds"
msgstr "%dm %ds"
-#: ../panel-plugin/xfcetimer.c:626 ../panel-plugin/xfcetimer.c:700
+#: ../panel-plugin/xfcetimer.c:618 ../panel-plugin/xfcetimer.c:697
#, c-format
msgid "%ds"
msgstr "%ds"
-#: ../panel-plugin/xfcetimer.c:634 ../panel-plugin/xfcetimer.c:709
+#: ../panel-plugin/xfcetimer.c:626 ../panel-plugin/xfcetimer.c:706
#, c-format
msgid "At %02d:%02d"
msgstr "Om %02d:%02d"
-#: ../panel-plugin/xfcetimer.c:815
+#: ../panel-plugin/xfcetimer.c:812
msgid "Name:"
msgstr "Naam:"
-#: ../panel-plugin/xfcetimer.c:824
+#: ../panel-plugin/xfcetimer.c:821
msgid "Enter the countdown time"
msgstr "Voer de afteltijd in"
-#: ../panel-plugin/xfcetimer.c:829
+#: ../panel-plugin/xfcetimer.c:826
msgid "Enter the time of alarm (24h format)"
msgstr "Voer de alarmtijd in (24-uurs-opmaak)"
-#: ../panel-plugin/xfcetimer.c:844
+#: ../panel-plugin/xfcetimer.c:841
msgid "h "
msgstr "u "
-#: ../panel-plugin/xfcetimer.c:851
+#: ../panel-plugin/xfcetimer.c:848
msgid "m "
msgstr "m "
-#: ../panel-plugin/xfcetimer.c:858
+#: ../panel-plugin/xfcetimer.c:855
msgid "s "
msgstr "s "
-#: ../panel-plugin/xfcetimer.c:862
+#: ../panel-plugin/xfcetimer.c:859
msgid "or"
msgstr "of"
#. **************
-#: ../panel-plugin/xfcetimer.c:884
+#: ../panel-plugin/xfcetimer.c:881
msgid "Command to run:"
msgstr "Opdracht om uit te voeren:"
-#: ../panel-plugin/xfcetimer.c:898
+#. **************
+#. add recurring alarm check button
+#: ../panel-plugin/xfcetimer.c:892
+msgid "Recurring alarm"
+msgstr ""
+
+#. add alarm autostart check button
+#: ../panel-plugin/xfcetimer.c:899
+msgid "Auto start when plugin loads"
+msgstr ""
+
+#: ../panel-plugin/xfcetimer.c:909
msgid "Cancel"
msgstr "Afbreken"
-#: ../panel-plugin/xfcetimer.c:903
+#: ../panel-plugin/xfcetimer.c:914
msgid "Accept"
msgstr "Aanvaarden"
-#: ../panel-plugin/xfcetimer.c:914
+#: ../panel-plugin/xfcetimer.c:925
msgid "Add new alarm"
msgstr "Voeg nieuw alarm toe"
-#: ../panel-plugin/xfcetimer.c:951
+#: ../panel-plugin/xfcetimer.c:966
msgid "Edit alarm"
msgstr "Bewerk alarm"
-#: ../panel-plugin/xfcetimer.c:1491
+#: ../panel-plugin/xfcetimer.c:1506
msgid "Xfce4 Timer Options"
msgstr "Opties voor Xfce4-aftelklok"
-#: ../panel-plugin/xfcetimer.c:1531
+#: ../panel-plugin/xfcetimer.c:1546
msgid "Timer name"
msgstr "Naam van aftelklok"
-#: ../panel-plugin/xfcetimer.c:1536
+#: ../panel-plugin/xfcetimer.c:1551
msgid ""
"Countdown period /\n"
"Alarm time"
-msgstr "Aftelperiode /\nAlarmtijd"
+msgstr ""
+"Aftelperiode /\n"
+"Alarmtijd"
-#: ../panel-plugin/xfcetimer.c:1539
+#: ../panel-plugin/xfcetimer.c:1554
msgid "Alarm command"
msgstr "Alarmopdracht"
-#: ../panel-plugin/xfcetimer.c:1557
+#: ../panel-plugin/xfcetimer.c:1572
msgid "Add"
msgstr "Toevoegen"
-#: ../panel-plugin/xfcetimer.c:1565
+#: ../panel-plugin/xfcetimer.c:1580
msgid "Edit"
msgstr "Bewerken"
-#: ../panel-plugin/xfcetimer.c:1573
+#: ../panel-plugin/xfcetimer.c:1588
msgid "Remove"
msgstr "Verwijderen"
-#: ../panel-plugin/xfcetimer.c:1581
+#: ../panel-plugin/xfcetimer.c:1596
msgid "Up"
msgstr "Omhoog"
-#: ../panel-plugin/xfcetimer.c:1588
+#: ../panel-plugin/xfcetimer.c:1603
msgid "Down"
msgstr "Omlaag"
-#: ../panel-plugin/xfcetimer.c:1604
+#: ../panel-plugin/xfcetimer.c:1619
msgid "Don't display a warning if an alarm command is set"
msgstr "Toon geen waarschuwing indien er een alarmopdracht is ingesteld"
-#: ../panel-plugin/xfcetimer.c:1610
-msgid "Selecting a timer starts it"
-msgstr "Een aftelklok kiezen start hem"
-
#. Default alarm command config
-#: ../panel-plugin/xfcetimer.c:1623
+#: ../panel-plugin/xfcetimer.c:1631
msgid "Use a default alarm command"
msgstr "Gebruik een standaard-alarmopdracht"
-#: ../panel-plugin/xfcetimer.c:1632
+#: ../panel-plugin/xfcetimer.c:1640
msgid "Default command: "
msgstr "Standaardopdracht:"
#. Alarm repetitions config
-#: ../panel-plugin/xfcetimer.c:1648
+#: ../panel-plugin/xfcetimer.c:1656
msgid "Repeat the alarm command"
msgstr "Herhaal de alarmopdracht"
-#: ../panel-plugin/xfcetimer.c:1657
+#: ../panel-plugin/xfcetimer.c:1665
msgid "Number of repetitions"
msgstr "Aantal herhalingen"
-#: ../panel-plugin/xfcetimer.c:1666
+#: ../panel-plugin/xfcetimer.c:1674
msgid " Time interval (sec.)"
msgstr " Tussenpoze (sec.)"
-#: ../panel-plugin/xfcetimer.c:1728
+#: ../panel-plugin/xfcetimer.c:1736
msgid "About xfce4-timer-plugin"
msgstr "Over xfce4-timer-plugin"
-#: ../panel-plugin/xfcetimer.c:1731
+#: ../panel-plugin/xfcetimer.c:1739
msgid "A plugin to define countdown timers or alarms at given times."
-msgstr "Een invoegsel om aftelklokken te bepalen of wekkers, op bepaalde tijdstippen."
+msgstr ""
+"Een invoegsel om aftelklokken te bepalen of wekkers, op bepaalde tijdstippen."
-#: ../panel-plugin/xfcetimer.c:1734
+#: ../panel-plugin/xfcetimer.c:1742
msgid "Copyright (c) 2005-2018\n"
msgstr "Auteursrecht (c) 2005-2018\n"
@@ -228,3 +234,12 @@ msgstr "Xfce4-Tijdmeter"
#: ../panel-plugin/xfce4-timer-plugin.desktop.in.h:2
msgid "Timer plugin for Xfce panel"
msgstr "Tijdmeter-invoegsel voor Xfce4-werkbalk"
+
+#~ msgid "Selecting a timer starts it"
+#~ msgstr "Een aftelklok kiezen start hem"
+
+#~ msgid "Start timer"
+#~ msgstr "Start tijdmeter"
+
+#~ msgid "Stop the alarm"
+#~ msgstr "Staak het alarm"
diff --git a/po/oc.po b/po/oc.po
index bc2bdd6..7f2c29e 100644
--- a/po/oc.po
+++ b/po/oc.po
@@ -1,7 +1,7 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
-#
+#
# Translators:
# Cédric Valmary <cvalmary at yahoo.fr>, 2013,2016
# Cédric Valmary <cvalmary at yahoo.fr>, 2013
@@ -9,197 +9,242 @@ msgid ""
msgstr ""
"Project-Id-Version: Xfce Panel Plugins\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-06-05 06:31+0200\n"
+"POT-Creation-Date: 2018-04-21 18:00+0300\n"
"PO-Revision-Date: 2017-09-23 19:21+0000\n"
"Last-Translator: Cédric Valmary <cvalmary at yahoo.fr>\n"
-"Language-Team: Occitan (post 1500) (http://www.transifex.com/xfce/xfce-panel-plugins/language/oc/)\n"
+"Language-Team: Occitan (post 1500) (http://www.transifex.com/xfce/xfce-panel-"
+"plugins/language/oc/)\n"
+"Language: oc\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: oc\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
-#: ../src/xfcetimer.c:146
+#: ../panel-plugin/xfcetimer.c:167
#, c-format
msgid "%dh %dm %ds left"
msgstr "%dh %dm %ds restanta(s)"
-#: ../src/xfcetimer.c:149
+#: ../panel-plugin/xfcetimer.c:170
#, c-format
msgid "%dm %ds left"
msgstr "%dm %ds restanta(s)"
-#: ../src/xfcetimer.c:151
+#: ../panel-plugin/xfcetimer.c:173
#, c-format
msgid "%ds left"
msgstr "%ds restanta(s)"
-#: ../src/xfcetimer.c:154
+#: ../panel-plugin/xfcetimer.c:177
msgid " (Paused)"
msgstr " (En espèra)"
#. Display the name of the alarm when the countdown ends
-#: ../src/xfcetimer.c:188
+#: ../panel-plugin/xfcetimer.c:213
#, c-format
msgid ""
"Beeep! :) \n"
"Time is up for the alarm %s."
-msgstr "Bip ! :) \nLo temps es passat per l'alarma %s."
+msgstr ""
+"Bip ! :) \n"
+"Lo temps es passat per l'alarma %s."
+
+#: ../panel-plugin/xfcetimer.c:221 ../panel-plugin/xfcetimer.c:1508
+msgid "Close"
+msgstr ""
-#: ../src/xfcetimer.c:198
+#: ../panel-plugin/xfcetimer.c:222
msgid "Rerun the timer"
msgstr "Reaviar lo cronomètre"
-#: ../src/xfcetimer.c:487
+#: ../panel-plugin/xfcetimer.c:515
+msgid "Pause timer"
+msgstr "Metre en pausa lo cronomètre"
+
+#: ../panel-plugin/xfcetimer.c:523
msgid "Resume timer"
msgstr "Reprene lo cronomètre"
-#: ../src/xfcetimer.c:494 ../src/xfcetimer.c:550
+#: ../panel-plugin/xfcetimer.c:534
msgid "Stop timer"
msgstr "Arrestar lo cronomètre"
-#: ../src/xfcetimer.c:538
-msgid "Pause timer"
-msgstr "Metre en pausa lo cronomètre"
-
-#: ../src/xfcetimer.c:552
-msgid "Start timer"
-msgstr "Aviar lo cronomètre"
-
-#: ../src/xfcetimer.c:561
-msgid "Stop the alarm"
-msgstr "Arrestar l'alarme"
-
-#: ../src/xfcetimer.c:618 ../src/xfcetimer.c:689
+#: ../panel-plugin/xfcetimer.c:614 ../panel-plugin/xfcetimer.c:693
#, c-format
msgid "%dh %dm %ds"
msgstr "%dh %dm %ds"
-#: ../src/xfcetimer.c:620 ../src/xfcetimer.c:691
+#: ../panel-plugin/xfcetimer.c:616 ../panel-plugin/xfcetimer.c:695
#, c-format
msgid "%dm %ds"
msgstr "%dm %ds"
-#: ../src/xfcetimer.c:622 ../src/xfcetimer.c:693
+#: ../panel-plugin/xfcetimer.c:618 ../panel-plugin/xfcetimer.c:697
#, c-format
msgid "%ds"
msgstr "%ds"
-#: ../src/xfcetimer.c:631 ../src/xfcetimer.c:702
+#: ../panel-plugin/xfcetimer.c:626 ../panel-plugin/xfcetimer.c:706
#, c-format
msgid "At %02d:%02d"
msgstr "A %02d:%02d"
-#: ../src/xfcetimer.c:801
+#: ../panel-plugin/xfcetimer.c:812
msgid "Name:"
msgstr "Nom :"
-#. ********
-#: ../src/xfcetimer.c:809
+#: ../panel-plugin/xfcetimer.c:821
msgid "Enter the countdown time"
msgstr "Entrar la durada del compte a rebors"
-#: ../src/xfcetimer.c:812
+#: ../panel-plugin/xfcetimer.c:826
msgid "Enter the time of alarm (24h format)"
msgstr "Entrar l'ora de l'alarma (format 24h)"
-#: ../src/xfcetimer.c:824
+#: ../panel-plugin/xfcetimer.c:841
msgid "h "
msgstr "h "
-#: ../src/xfcetimer.c:829
+#: ../panel-plugin/xfcetimer.c:848
msgid "m "
msgstr "m "
-#: ../src/xfcetimer.c:834
+#: ../panel-plugin/xfcetimer.c:855
msgid "s "
msgstr "s "
-#: ../src/xfcetimer.c:837
+#: ../panel-plugin/xfcetimer.c:859
msgid "or"
msgstr "o"
#. **************
-#: ../src/xfcetimer.c:857
+#: ../panel-plugin/xfcetimer.c:881
msgid "Command to run:"
msgstr "Comanda d'executar :"
-#: ../src/xfcetimer.c:887
+#. **************
+#. add recurring alarm check button
+#: ../panel-plugin/xfcetimer.c:892
+msgid "Recurring alarm"
+msgstr ""
+
+#. add alarm autostart check button
+#: ../panel-plugin/xfcetimer.c:899
+msgid "Auto start when plugin loads"
+msgstr ""
+
+#: ../panel-plugin/xfcetimer.c:909
+msgid "Cancel"
+msgstr ""
+
+#: ../panel-plugin/xfcetimer.c:914
+msgid "Accept"
+msgstr ""
+
+#: ../panel-plugin/xfcetimer.c:925
msgid "Add new alarm"
msgstr "Apondre una alarma"
-#: ../src/xfcetimer.c:924
+#: ../panel-plugin/xfcetimer.c:966
msgid "Edit alarm"
msgstr "Editar l'alarma"
-#: ../src/xfcetimer.c:1495 ../src/xfcetimer.c:1504
+#: ../panel-plugin/xfcetimer.c:1506
msgid "Xfce4 Timer Options"
msgstr "Opcions del cronomètre Xfce4"
-#: ../src/xfcetimer.c:1506
-msgid "Xfce 4 Timer Plugin"
-msgstr "Empeuton cronomètre Xfce 4"
-
-#: ../src/xfcetimer.c:1552
+#: ../panel-plugin/xfcetimer.c:1546
msgid "Timer name"
msgstr "Nom del cronomètre"
-#: ../src/xfcetimer.c:1557
+#: ../panel-plugin/xfcetimer.c:1551
msgid ""
"Countdown period /\n"
"Alarm time"
-msgstr "Periòde de compte a rebors /\nOra d'alarma"
+msgstr ""
+"Periòde de compte a rebors /\n"
+"Ora d'alarma"
-#: ../src/xfcetimer.c:1561
+#: ../panel-plugin/xfcetimer.c:1554
msgid "Alarm command"
msgstr "Comanda d'alarma"
-#: ../src/xfcetimer.c:1617
+#: ../panel-plugin/xfcetimer.c:1572
+msgid "Add"
+msgstr ""
+
+#: ../panel-plugin/xfcetimer.c:1580
+msgid "Edit"
+msgstr ""
+
+#: ../panel-plugin/xfcetimer.c:1588
+msgid "Remove"
+msgstr ""
+
+#: ../panel-plugin/xfcetimer.c:1596
+msgid "Up"
+msgstr ""
+
+#: ../panel-plugin/xfcetimer.c:1603
+msgid "Down"
+msgstr ""
+
+#: ../panel-plugin/xfcetimer.c:1619
msgid "Don't display a warning if an alarm command is set"
msgstr "Afichetz pas d'avertiment se una comanda d'alarma es programada"
-#: ../src/xfcetimer.c:1622
-msgid "Selecting a timer starts it"
-msgstr "Seleccion d'un retardator d'aviada, "
-
#. Default alarm command config
-#: ../src/xfcetimer.c:1630
+#: ../panel-plugin/xfcetimer.c:1631
msgid "Use a default alarm command"
msgstr "Utilizar una comanda d'alarma per defaut"
-#: ../src/xfcetimer.c:1637
+#: ../panel-plugin/xfcetimer.c:1640
msgid "Default command: "
msgstr "Comanda per defaut : "
#. Alarm repetitions config
-#: ../src/xfcetimer.c:1649
+#: ../panel-plugin/xfcetimer.c:1656
msgid "Repeat the alarm command"
msgstr "Repetissètz la comanda de l'alarma"
-#: ../src/xfcetimer.c:1656
+#: ../panel-plugin/xfcetimer.c:1665
msgid "Number of repetitions"
msgstr "Nombre de repeticions"
-#: ../src/xfcetimer.c:1662
+#: ../panel-plugin/xfcetimer.c:1674
msgid " Time interval (sec.)"
msgstr " Interval de temps (seg.)"
-#: ../src/xfcetimer.c:1723
+#: ../panel-plugin/xfcetimer.c:1736
msgid "About xfce4-timer-plugin"
msgstr "A prepaus de xfce4-timer-plugin"
-#: ../src/xfcetimer.c:1728
+#: ../panel-plugin/xfcetimer.c:1739
msgid "A plugin to define countdown timers or alarms at given times."
-msgstr "Un empeuton per definir de comptes a rebors o d'alarmas a de moments donats."
+msgstr ""
+"Un empeuton per definir de comptes a rebors o d'alarmas a de moments donats."
-#: ../src/xfcetimer.c:1730
-msgid "Copyright (c) 2005-2013\n"
+#: ../panel-plugin/xfcetimer.c:1742
+#, fuzzy
+msgid "Copyright (c) 2005-2018\n"
msgstr "Copyright (c) 2005-2013\n"
-#: ../src/xfce4-timer.desktop.in.in.h:1
+#: ../panel-plugin/xfce4-timer-plugin.desktop.in.h:1
msgid "Xfce4 Timer"
msgstr "Cronomètre Xfce4"
-#: ../src/xfce4-timer.desktop.in.in.h:2
+#: ../panel-plugin/xfce4-timer-plugin.desktop.in.h:2
msgid "Timer plugin for Xfce panel"
msgstr "Empeuton del cronomètre pel panèl Xfce"
+
+#~ msgid "Selecting a timer starts it"
+#~ msgstr "Seleccion d'un retardator d'aviada, "
+
+#~ msgid "Start timer"
+#~ msgstr "Aviar lo cronomètre"
+
+#~ msgid "Stop the alarm"
+#~ msgstr "Arrestar l'alarme"
+
+#~ msgid "Xfce 4 Timer Plugin"
+#~ msgstr "Empeuton cronomètre Xfce 4"
diff --git a/po/pl.po b/po/pl.po
index 38d53e1..d0e03e4 100644
--- a/po/pl.po
+++ b/po/pl.po
@@ -1,7 +1,7 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
-#
+#
# Translators:
# No Ne, 2018
# Piotr Maliński <admin at rk.edu.pl>, 2006
@@ -12,217 +12,222 @@ msgid ""
msgstr ""
"Project-Id-Version: Xfce Panel Plugins\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-01-02 00:32+0100\n"
+"POT-Creation-Date: 2018-04-21 18:00+0300\n"
"PO-Revision-Date: 2018-01-02 12:30+0000\n"
"Last-Translator: No Ne\n"
-"Language-Team: Polish (http://www.transifex.com/xfce/xfce-panel-plugins/language/pl/)\n"
+"Language-Team: Polish (http://www.transifex.com/xfce/xfce-panel-plugins/"
+"language/pl/)\n"
+"Language: pl\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: pl\n"
-"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"
+"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n"
+"%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n"
+"%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"
-#: ../panel-plugin/xfcetimer.c:153
+#: ../panel-plugin/xfcetimer.c:167
#, c-format
msgid "%dh %dm %ds left"
msgstr "Pozostało %d godz %d min %d s"
-#: ../panel-plugin/xfcetimer.c:156
+#: ../panel-plugin/xfcetimer.c:170
#, c-format
msgid "%dm %ds left"
msgstr "Pozostało %d min %d s"
-#: ../panel-plugin/xfcetimer.c:159
+#: ../panel-plugin/xfcetimer.c:173
#, c-format
msgid "%ds left"
msgstr "Pozostało %d s"
-#: ../panel-plugin/xfcetimer.c:163
+#: ../panel-plugin/xfcetimer.c:177
msgid " (Paused)"
msgstr "(Wstrzymany)"
-#: ../panel-plugin/xfcetimer.c:198
+#. Display the name of the alarm when the countdown ends
+#: ../panel-plugin/xfcetimer.c:213
#, c-format
msgid ""
"Beeep! :) \n"
"Time is up for the alarm %s."
msgstr "Upłynął czas zdefiniowany alarmem %s."
-#: ../panel-plugin/xfcetimer.c:210 ../panel-plugin/xfcetimer.c:1493
+#: ../panel-plugin/xfcetimer.c:221 ../panel-plugin/xfcetimer.c:1508
msgid "Close"
msgstr "Zamknij"
-#: ../panel-plugin/xfcetimer.c:211
+#: ../panel-plugin/xfcetimer.c:222
msgid "Rerun the timer"
msgstr "Włącz ponownie minutnik"
-#: ../panel-plugin/xfcetimer.c:526
+#: ../panel-plugin/xfcetimer.c:515
+msgid "Pause timer"
+msgstr "Wstrzymaj odliczanie"
+
+#: ../panel-plugin/xfcetimer.c:523
msgid "Resume timer"
msgstr "Wznów odliczanie"
-#: ../panel-plugin/xfcetimer.c:533 ../panel-plugin/xfcetimer.c:556
+#: ../panel-plugin/xfcetimer.c:534
msgid "Stop timer"
msgstr "Zatrzymaj odliczanie"
-#: ../panel-plugin/xfcetimer.c:545
-msgid "Pause timer"
-msgstr "Wstrzymaj odliczanie"
-
-#: ../panel-plugin/xfcetimer.c:558
-msgid "Start timer"
-msgstr "Rozpocznij odliczanie"
-
-#: ../panel-plugin/xfcetimer.c:568
-msgid "Stop the alarm"
-msgstr "Zatrzymaj alarm"
-
-#: ../panel-plugin/xfcetimer.c:622 ../panel-plugin/xfcetimer.c:696
+#: ../panel-plugin/xfcetimer.c:614 ../panel-plugin/xfcetimer.c:693
#, c-format
msgid "%dh %dm %ds"
msgstr "%d godz %d min %d s"
-#: ../panel-plugin/xfcetimer.c:624 ../panel-plugin/xfcetimer.c:698
+#: ../panel-plugin/xfcetimer.c:616 ../panel-plugin/xfcetimer.c:695
#, c-format
msgid "%dm %ds"
msgstr "%d min %d s"
-#: ../panel-plugin/xfcetimer.c:626 ../panel-plugin/xfcetimer.c:700
+#: ../panel-plugin/xfcetimer.c:618 ../panel-plugin/xfcetimer.c:697
#, c-format
msgid "%ds"
msgstr "%d s"
-#: ../panel-plugin/xfcetimer.c:634 ../panel-plugin/xfcetimer.c:709
+#: ../panel-plugin/xfcetimer.c:626 ../panel-plugin/xfcetimer.c:706
#, c-format
msgid "At %02d:%02d"
msgstr "%02d:%02d"
-#: ../panel-plugin/xfcetimer.c:815
+#: ../panel-plugin/xfcetimer.c:812
msgid "Name:"
msgstr "Nazwa:"
-#: ../panel-plugin/xfcetimer.c:824
+#: ../panel-plugin/xfcetimer.c:821
msgid "Enter the countdown time"
msgstr "Czas odliczania"
-#: ../panel-plugin/xfcetimer.c:829
+#: ../panel-plugin/xfcetimer.c:826
msgid "Enter the time of alarm (24h format)"
msgstr "Czas alarmu (format 24-godzinny)"
-#: ../panel-plugin/xfcetimer.c:844
+#: ../panel-plugin/xfcetimer.c:841
msgid "h "
msgstr "godz "
-#: ../panel-plugin/xfcetimer.c:851
+#: ../panel-plugin/xfcetimer.c:848
msgid "m "
msgstr "min "
-#: ../panel-plugin/xfcetimer.c:858
+#: ../panel-plugin/xfcetimer.c:855
msgid "s "
msgstr "s "
-#: ../panel-plugin/xfcetimer.c:862
+#: ../panel-plugin/xfcetimer.c:859
msgid "or"
msgstr "lub"
#. **************
-#: ../panel-plugin/xfcetimer.c:884
+#: ../panel-plugin/xfcetimer.c:881
msgid "Command to run:"
msgstr "Polecenie:"
-#: ../panel-plugin/xfcetimer.c:898
+#. **************
+#. add recurring alarm check button
+#: ../panel-plugin/xfcetimer.c:892
+msgid "Recurring alarm"
+msgstr ""
+
+#. add alarm autostart check button
+#: ../panel-plugin/xfcetimer.c:899
+msgid "Auto start when plugin loads"
+msgstr ""
+
+#: ../panel-plugin/xfcetimer.c:909
msgid "Cancel"
msgstr "Anuluj"
-#: ../panel-plugin/xfcetimer.c:903
-msgid "Acept"
+#: ../panel-plugin/xfcetimer.c:914
+#, fuzzy
+msgid "Accept"
msgstr "Akceptuj"
-#: ../panel-plugin/xfcetimer.c:914
+#: ../panel-plugin/xfcetimer.c:925
msgid "Add new alarm"
msgstr "Dodawanie alarmu"
-#: ../panel-plugin/xfcetimer.c:951
+#: ../panel-plugin/xfcetimer.c:966
msgid "Edit alarm"
msgstr "Edycja alarmu"
-#: ../panel-plugin/xfcetimer.c:1491
+#: ../panel-plugin/xfcetimer.c:1506
msgid "Xfce4 Timer Options"
msgstr "Ustawienia minutnika"
-#: ../panel-plugin/xfcetimer.c:1531
+#: ../panel-plugin/xfcetimer.c:1546
msgid "Timer name"
msgstr "Nazwa"
-#: ../panel-plugin/xfcetimer.c:1536
+#: ../panel-plugin/xfcetimer.c:1551
msgid ""
"Countdown period /\n"
"Alarm time"
msgstr "Czas odliczania lub czas alarmu"
-#: ../panel-plugin/xfcetimer.c:1539
+#: ../panel-plugin/xfcetimer.c:1554
msgid "Alarm command"
msgstr "Polecenie"
-#: ../panel-plugin/xfcetimer.c:1557
+#: ../panel-plugin/xfcetimer.c:1572
msgid "Add"
msgstr "Dodaj"
-#: ../panel-plugin/xfcetimer.c:1565
+#: ../panel-plugin/xfcetimer.c:1580
msgid "Edit"
msgstr "Edytuj"
-#: ../panel-plugin/xfcetimer.c:1573
+#: ../panel-plugin/xfcetimer.c:1588
msgid "Remove"
msgstr "Usuń"
-#: ../panel-plugin/xfcetimer.c:1581
+#: ../panel-plugin/xfcetimer.c:1596
msgid "Up"
msgstr "W górę"
-#: ../panel-plugin/xfcetimer.c:1588
+#: ../panel-plugin/xfcetimer.c:1603
msgid "Down"
msgstr "W dół"
-#: ../panel-plugin/xfcetimer.c:1604
+#: ../panel-plugin/xfcetimer.c:1619
msgid "Don't display a warning if an alarm command is set"
msgstr "Pomijanie wyświetlania ostrzeżenia jeśli ustalono polecenie alarmu"
-#: ../panel-plugin/xfcetimer.c:1610
-msgid "Selecting a timer starts it"
-msgstr "Rozpoczęcie odliczania po zaznaczeniu minutnika"
-
#. Default alarm command config
-#: ../panel-plugin/xfcetimer.c:1623
+#: ../panel-plugin/xfcetimer.c:1631
msgid "Use a default alarm command"
msgstr "Użycie domyślnego polecenia"
-#: ../panel-plugin/xfcetimer.c:1632
+#: ../panel-plugin/xfcetimer.c:1640
msgid "Default command: "
msgstr "Domyślne polecenie:"
#. Alarm repetitions config
-#: ../panel-plugin/xfcetimer.c:1648
+#: ../panel-plugin/xfcetimer.c:1656
msgid "Repeat the alarm command"
msgstr "Powtarzanie wykonania polecenia alarmu"
-#: ../panel-plugin/xfcetimer.c:1657
+#: ../panel-plugin/xfcetimer.c:1665
msgid "Number of repetitions"
msgstr "Ilość powtórzeń: "
-#: ../panel-plugin/xfcetimer.c:1666
+#: ../panel-plugin/xfcetimer.c:1674
msgid " Time interval (sec.)"
msgstr " Interwał (s): "
-#: ../panel-plugin/xfcetimer.c:1728
+#: ../panel-plugin/xfcetimer.c:1736
msgid "About xfce4-timer-plugin"
msgstr "O xfce4-timer-plugin"
-#: ../panel-plugin/xfcetimer.c:1731
+#: ../panel-plugin/xfcetimer.c:1739
msgid "A plugin to define countdown timers or alarms at given times."
msgstr "Odmierza czas i alarmuje po upłynięciu ustalonego czasu."
-#: ../panel-plugin/xfcetimer.c:1734
-msgid "Copyright (c) 2005-2017\n"
+#: ../panel-plugin/xfcetimer.c:1742
+#, fuzzy
+msgid "Copyright (c) 2005-2018\n"
msgstr "Prawa autorskie (c) 2005-2017\n"
#: ../panel-plugin/xfce4-timer-plugin.desktop.in.h:1
@@ -232,3 +237,12 @@ msgstr "Minutnik"
#: ../panel-plugin/xfce4-timer-plugin.desktop.in.h:2
msgid "Timer plugin for Xfce panel"
msgstr "Odmierza ustalony czas"
+
+#~ msgid "Selecting a timer starts it"
+#~ msgstr "Rozpoczęcie odliczania po zaznaczeniu minutnika"
+
+#~ msgid "Start timer"
+#~ msgstr "Rozpocznij odliczanie"
+
+#~ msgid "Stop the alarm"
+#~ msgstr "Zatrzymaj alarm"
diff --git a/po/pt.po b/po/pt.po
index 05e36e1..b55c8ea 100644
--- a/po/pt.po
+++ b/po/pt.po
@@ -1,7 +1,7 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
-#
+#
# Translators:
# José Vieira <jvieira33 at sapo.pt>, 2018
# Nuno Miguel <nunis at netcabo.pt>, 2007
@@ -11,216 +11,221 @@ msgid ""
msgstr ""
"Project-Id-Version: Xfce Panel Plugins\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-01-04 06:32+0100\n"
+"POT-Creation-Date: 2018-04-21 18:00+0300\n"
"PO-Revision-Date: 2018-03-19 11:37+0000\n"
"Last-Translator: José Vieira <jvieira33 at sapo.pt>\n"
-"Language-Team: Portuguese (http://www.transifex.com/xfce/xfce-panel-plugins/language/pt/)\n"
+"Language-Team: Portuguese (http://www.transifex.com/xfce/xfce-panel-plugins/"
+"language/pt/)\n"
+"Language: pt\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: pt\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: ../panel-plugin/xfcetimer.c:153
+#: ../panel-plugin/xfcetimer.c:167
#, c-format
msgid "%dh %dm %ds left"
msgstr "Restam %dh %dm %ds"
-#: ../panel-plugin/xfcetimer.c:156
+#: ../panel-plugin/xfcetimer.c:170
#, c-format
msgid "%dm %ds left"
msgstr "Restam %dm %ds"
-#: ../panel-plugin/xfcetimer.c:159
+#: ../panel-plugin/xfcetimer.c:173
#, c-format
msgid "%ds left"
msgstr "Restam %ds"
-#: ../panel-plugin/xfcetimer.c:163
+#: ../panel-plugin/xfcetimer.c:177
msgid " (Paused)"
msgstr " (Pausa)"
-#: ../panel-plugin/xfcetimer.c:198
+#. Display the name of the alarm when the countdown ends
+#: ../panel-plugin/xfcetimer.c:213
#, c-format
msgid ""
"Beeep! :) \n"
"Time is up for the alarm %s."
-msgstr "Atenção! :) \nEstá na hora do alarme %s."
+msgstr ""
+"Atenção! :) \n"
+"Está na hora do alarme %s."
-#: ../panel-plugin/xfcetimer.c:210 ../panel-plugin/xfcetimer.c:1493
+#: ../panel-plugin/xfcetimer.c:221 ../panel-plugin/xfcetimer.c:1508
msgid "Close"
msgstr "Fechar"
-#: ../panel-plugin/xfcetimer.c:211
+#: ../panel-plugin/xfcetimer.c:222
msgid "Rerun the timer"
msgstr "Reiniciar contador"
-#: ../panel-plugin/xfcetimer.c:526
+#: ../panel-plugin/xfcetimer.c:515
+msgid "Pause timer"
+msgstr "Pausa no temporizador"
+
+#: ../panel-plugin/xfcetimer.c:523
msgid "Resume timer"
msgstr "Retomar temporizador"
-#: ../panel-plugin/xfcetimer.c:533 ../panel-plugin/xfcetimer.c:556
+#: ../panel-plugin/xfcetimer.c:534
msgid "Stop timer"
msgstr "Parar temporizador"
-#: ../panel-plugin/xfcetimer.c:545
-msgid "Pause timer"
-msgstr "Pausa no temporizador"
-
-#: ../panel-plugin/xfcetimer.c:558
-msgid "Start timer"
-msgstr "Iniciar temporizador"
-
-#: ../panel-plugin/xfcetimer.c:568
-msgid "Stop the alarm"
-msgstr "Parar o alarme"
-
-#: ../panel-plugin/xfcetimer.c:622 ../panel-plugin/xfcetimer.c:696
+#: ../panel-plugin/xfcetimer.c:614 ../panel-plugin/xfcetimer.c:693
#, c-format
msgid "%dh %dm %ds"
msgstr "%dh %dm %ds"
-#: ../panel-plugin/xfcetimer.c:624 ../panel-plugin/xfcetimer.c:698
+#: ../panel-plugin/xfcetimer.c:616 ../panel-plugin/xfcetimer.c:695
#, c-format
msgid "%dm %ds"
msgstr "%dm %ds"
-#: ../panel-plugin/xfcetimer.c:626 ../panel-plugin/xfcetimer.c:700
+#: ../panel-plugin/xfcetimer.c:618 ../panel-plugin/xfcetimer.c:697
#, c-format
msgid "%ds"
msgstr "%ds"
-#: ../panel-plugin/xfcetimer.c:634 ../panel-plugin/xfcetimer.c:709
+#: ../panel-plugin/xfcetimer.c:626 ../panel-plugin/xfcetimer.c:706
#, c-format
msgid "At %02d:%02d"
msgstr "Em %02d:%02d"
-#: ../panel-plugin/xfcetimer.c:815
+#: ../panel-plugin/xfcetimer.c:812
msgid "Name:"
msgstr "Nome:"
-#: ../panel-plugin/xfcetimer.c:824
+#: ../panel-plugin/xfcetimer.c:821
msgid "Enter the countdown time"
msgstr "Coloque o tempo de contagem"
-#: ../panel-plugin/xfcetimer.c:829
+#: ../panel-plugin/xfcetimer.c:826
msgid "Enter the time of alarm (24h format)"
msgstr "Coloque a hora do alarme (formato 24h)"
-#: ../panel-plugin/xfcetimer.c:844
+#: ../panel-plugin/xfcetimer.c:841
msgid "h "
msgstr "h"
-#: ../panel-plugin/xfcetimer.c:851
+#: ../panel-plugin/xfcetimer.c:848
msgid "m "
msgstr "m"
-#: ../panel-plugin/xfcetimer.c:858
+#: ../panel-plugin/xfcetimer.c:855
msgid "s "
msgstr "s"
-#: ../panel-plugin/xfcetimer.c:862
+#: ../panel-plugin/xfcetimer.c:859
msgid "or"
msgstr "ou"
#. **************
-#: ../panel-plugin/xfcetimer.c:884
+#: ../panel-plugin/xfcetimer.c:881
msgid "Command to run:"
msgstr "Comando a executar:"
-#: ../panel-plugin/xfcetimer.c:898
+#. **************
+#. add recurring alarm check button
+#: ../panel-plugin/xfcetimer.c:892
+msgid "Recurring alarm"
+msgstr ""
+
+#. add alarm autostart check button
+#: ../panel-plugin/xfcetimer.c:899
+msgid "Auto start when plugin loads"
+msgstr ""
+
+#: ../panel-plugin/xfcetimer.c:909
msgid "Cancel"
msgstr "Cancelar"
-#: ../panel-plugin/xfcetimer.c:903
+#: ../panel-plugin/xfcetimer.c:914
msgid "Accept"
msgstr "Aceitar"
-#: ../panel-plugin/xfcetimer.c:914
+#: ../panel-plugin/xfcetimer.c:925
msgid "Add new alarm"
msgstr "Adicionar novo alarme"
-#: ../panel-plugin/xfcetimer.c:951
+#: ../panel-plugin/xfcetimer.c:966
msgid "Edit alarm"
msgstr "Editar alarme"
-#: ../panel-plugin/xfcetimer.c:1491
+#: ../panel-plugin/xfcetimer.c:1506
msgid "Xfce4 Timer Options"
msgstr "Opções do temporizador Xfce4"
-#: ../panel-plugin/xfcetimer.c:1531
+#: ../panel-plugin/xfcetimer.c:1546
msgid "Timer name"
msgstr "Nome"
-#: ../panel-plugin/xfcetimer.c:1536
+#: ../panel-plugin/xfcetimer.c:1551
msgid ""
"Countdown period /\n"
"Alarm time"
-msgstr "Período de contagem /\nHora do alarme"
+msgstr ""
+"Período de contagem /\n"
+"Hora do alarme"
-#: ../panel-plugin/xfcetimer.c:1539
+#: ../panel-plugin/xfcetimer.c:1554
msgid "Alarm command"
msgstr "Comando do alarme"
-#: ../panel-plugin/xfcetimer.c:1557
+#: ../panel-plugin/xfcetimer.c:1572
msgid "Add"
msgstr "Adicionar"
-#: ../panel-plugin/xfcetimer.c:1565
+#: ../panel-plugin/xfcetimer.c:1580
msgid "Edit"
msgstr "Editar"
-#: ../panel-plugin/xfcetimer.c:1573
+#: ../panel-plugin/xfcetimer.c:1588
msgid "Remove"
msgstr "Remover"
-#: ../panel-plugin/xfcetimer.c:1581
+#: ../panel-plugin/xfcetimer.c:1596
msgid "Up"
msgstr "Para cima"
-#: ../panel-plugin/xfcetimer.c:1588
+#: ../panel-plugin/xfcetimer.c:1603
msgid "Down"
msgstr "Para baixo"
-#: ../panel-plugin/xfcetimer.c:1604
+#: ../panel-plugin/xfcetimer.c:1619
msgid "Don't display a warning if an alarm command is set"
msgstr "Não mostrar o aviso se o comando de alarme estiver definido"
-#: ../panel-plugin/xfcetimer.c:1610
-msgid "Selecting a timer starts it"
-msgstr "A seleção do temporizador inicia-o"
-
#. Default alarm command config
-#: ../panel-plugin/xfcetimer.c:1623
+#: ../panel-plugin/xfcetimer.c:1631
msgid "Use a default alarm command"
msgstr "Utilizar o comando pré-definido"
-#: ../panel-plugin/xfcetimer.c:1632
+#: ../panel-plugin/xfcetimer.c:1640
msgid "Default command: "
msgstr "Comando pré-definido:"
#. Alarm repetitions config
-#: ../panel-plugin/xfcetimer.c:1648
+#: ../panel-plugin/xfcetimer.c:1656
msgid "Repeat the alarm command"
msgstr "Repetir comando do alarme"
-#: ../panel-plugin/xfcetimer.c:1657
+#: ../panel-plugin/xfcetimer.c:1665
msgid "Number of repetitions"
msgstr "Número de repetições"
-#: ../panel-plugin/xfcetimer.c:1666
+#: ../panel-plugin/xfcetimer.c:1674
msgid " Time interval (sec.)"
msgstr "Intervalo de tempo (sec.)"
-#: ../panel-plugin/xfcetimer.c:1728
+#: ../panel-plugin/xfcetimer.c:1736
msgid "About xfce4-timer-plugin"
msgstr "Sobre o xfce4-timer-plugin"
-#: ../panel-plugin/xfcetimer.c:1731
+#: ../panel-plugin/xfcetimer.c:1739
msgid "A plugin to define countdown timers or alarms at given times."
msgstr "Um plugin para definir alarmes ou temporizadores."
-#: ../panel-plugin/xfcetimer.c:1734
+#: ../panel-plugin/xfcetimer.c:1742
msgid "Copyright (c) 2005-2018\n"
msgstr "Copyright (c) 2005-2018\n"
@@ -231,3 +236,12 @@ msgstr "Temporizador Xfce4"
#: ../panel-plugin/xfce4-timer-plugin.desktop.in.h:2
msgid "Timer plugin for Xfce panel"
msgstr "\"Plug-in\" para painel Xfce"
+
+#~ msgid "Selecting a timer starts it"
+#~ msgstr "A seleção do temporizador inicia-o"
+
+#~ msgid "Start timer"
+#~ msgstr "Iniciar temporizador"
+
+#~ msgid "Stop the alarm"
+#~ msgstr "Parar o alarme"
diff --git a/po/pt_BR.po b/po/pt_BR.po
index e00ea2a..82a324e 100644
--- a/po/pt_BR.po
+++ b/po/pt_BR.po
@@ -1,7 +1,7 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
-#
+#
# Translators:
# Andre Miranda <andre42m at gmail.com>, 2018
# Fábio Nogueira <deb-user-ba at ubuntu.com>, 2008
@@ -13,216 +13,223 @@ msgid ""
msgstr ""
"Project-Id-Version: Xfce Panel Plugins\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-01-04 06:32+0100\n"
+"POT-Creation-Date: 2018-04-21 18:00+0300\n"
"PO-Revision-Date: 2018-01-06 04:11+0000\n"
"Last-Translator: Andre Miranda <andre42m at gmail.com>\n"
-"Language-Team: Portuguese (Brazil) (http://www.transifex.com/xfce/xfce-panel-plugins/language/pt_BR/)\n"
+"Language-Team: Portuguese (Brazil) (http://www.transifex.com/xfce/xfce-panel-"
+"plugins/language/pt_BR/)\n"
+"Language: pt_BR\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: pt_BR\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
-#: ../panel-plugin/xfcetimer.c:153
+#: ../panel-plugin/xfcetimer.c:167
#, c-format
msgid "%dh %dm %ds left"
msgstr "Restando %dh %dmin %ds"
-#: ../panel-plugin/xfcetimer.c:156
+#: ../panel-plugin/xfcetimer.c:170
#, c-format
msgid "%dm %ds left"
msgstr "Restando %dmin %ds"
-#: ../panel-plugin/xfcetimer.c:159
+#: ../panel-plugin/xfcetimer.c:173
#, c-format
msgid "%ds left"
msgstr "Restando %ds"
-#: ../panel-plugin/xfcetimer.c:163
+#: ../panel-plugin/xfcetimer.c:177
msgid " (Paused)"
msgstr "(Pausado)"
-#: ../panel-plugin/xfcetimer.c:198
+#. Display the name of the alarm when the countdown ends
+#: ../panel-plugin/xfcetimer.c:213
#, c-format
msgid ""
"Beeep! :) \n"
"Time is up for the alarm %s."
-msgstr "Biiip! :) \nAcabou o tempo do alarme %s."
+msgstr ""
+"Biiip! :) \n"
+"Acabou o tempo do alarme %s."
-#: ../panel-plugin/xfcetimer.c:210 ../panel-plugin/xfcetimer.c:1493
+#: ../panel-plugin/xfcetimer.c:221 ../panel-plugin/xfcetimer.c:1508
msgid "Close"
msgstr "Fechar"
-#: ../panel-plugin/xfcetimer.c:211
+#: ../panel-plugin/xfcetimer.c:222
msgid "Rerun the timer"
msgstr "Executar novamente o timer"
-#: ../panel-plugin/xfcetimer.c:526
+#: ../panel-plugin/xfcetimer.c:515
+msgid "Pause timer"
+msgstr "Pausar cronômetro"
+
+#: ../panel-plugin/xfcetimer.c:523
msgid "Resume timer"
msgstr "Resumir cronômetro"
-#: ../panel-plugin/xfcetimer.c:533 ../panel-plugin/xfcetimer.c:556
+#: ../panel-plugin/xfcetimer.c:534
msgid "Stop timer"
msgstr "Parar o temporizador"
-#: ../panel-plugin/xfcetimer.c:545
-msgid "Pause timer"
-msgstr "Pausar cronômetro"
-
-#: ../panel-plugin/xfcetimer.c:558
-msgid "Start timer"
-msgstr "Iniciar o temporizador"
-
-#: ../panel-plugin/xfcetimer.c:568
-msgid "Stop the alarm"
-msgstr "Parar o alarme"
-
-#: ../panel-plugin/xfcetimer.c:622 ../panel-plugin/xfcetimer.c:696
+#: ../panel-plugin/xfcetimer.c:614 ../panel-plugin/xfcetimer.c:693
#, c-format
msgid "%dh %dm %ds"
msgstr "%dh %dmin %ds"
-#: ../panel-plugin/xfcetimer.c:624 ../panel-plugin/xfcetimer.c:698
+#: ../panel-plugin/xfcetimer.c:616 ../panel-plugin/xfcetimer.c:695
#, c-format
msgid "%dm %ds"
msgstr "%dmin %ds"
-#: ../panel-plugin/xfcetimer.c:626 ../panel-plugin/xfcetimer.c:700
+#: ../panel-plugin/xfcetimer.c:618 ../panel-plugin/xfcetimer.c:697
#, c-format
msgid "%ds"
msgstr "%ds"
-#: ../panel-plugin/xfcetimer.c:634 ../panel-plugin/xfcetimer.c:709
+#: ../panel-plugin/xfcetimer.c:626 ../panel-plugin/xfcetimer.c:706
#, c-format
msgid "At %02d:%02d"
msgstr "às %02dh%02d"
-#: ../panel-plugin/xfcetimer.c:815
+#: ../panel-plugin/xfcetimer.c:812
msgid "Name:"
msgstr "Nome:"
-#: ../panel-plugin/xfcetimer.c:824
+#: ../panel-plugin/xfcetimer.c:821
msgid "Enter the countdown time"
msgstr "Insira o tempo de contagem regressiva"
-#: ../panel-plugin/xfcetimer.c:829
+#: ../panel-plugin/xfcetimer.c:826
msgid "Enter the time of alarm (24h format)"
msgstr "Insira a hora do alarme (formato 24h)"
-#: ../panel-plugin/xfcetimer.c:844
+#: ../panel-plugin/xfcetimer.c:841
msgid "h "
msgstr "h "
-#: ../panel-plugin/xfcetimer.c:851
+#: ../panel-plugin/xfcetimer.c:848
msgid "m "
msgstr "min "
-#: ../panel-plugin/xfcetimer.c:858
+#: ../panel-plugin/xfcetimer.c:855
msgid "s "
msgstr "s "
-#: ../panel-plugin/xfcetimer.c:862
+#: ../panel-plugin/xfcetimer.c:859
msgid "or"
msgstr "ou"
#. **************
-#: ../panel-plugin/xfcetimer.c:884
+#: ../panel-plugin/xfcetimer.c:881
msgid "Command to run:"
msgstr "comando a ser executado:"
-#: ../panel-plugin/xfcetimer.c:898
+#. **************
+#. add recurring alarm check button
+#: ../panel-plugin/xfcetimer.c:892
+msgid "Recurring alarm"
+msgstr ""
+
+#. add alarm autostart check button
+#: ../panel-plugin/xfcetimer.c:899
+msgid "Auto start when plugin loads"
+msgstr ""
+
+#: ../panel-plugin/xfcetimer.c:909
msgid "Cancel"
msgstr "Cancelar"
-#: ../panel-plugin/xfcetimer.c:903
+#: ../panel-plugin/xfcetimer.c:914
msgid "Accept"
msgstr "Aceitar"
-#: ../panel-plugin/xfcetimer.c:914
+#: ../panel-plugin/xfcetimer.c:925
msgid "Add new alarm"
msgstr "Adicionar novo alarme"
-#: ../panel-plugin/xfcetimer.c:951
+#: ../panel-plugin/xfcetimer.c:966
msgid "Edit alarm"
msgstr "Editar alarme"
-#: ../panel-plugin/xfcetimer.c:1491
+#: ../panel-plugin/xfcetimer.c:1506
msgid "Xfce4 Timer Options"
msgstr "Opções do temporizador do Xfce 4"
-#: ../panel-plugin/xfcetimer.c:1531
+#: ../panel-plugin/xfcetimer.c:1546
msgid "Timer name"
msgstr "Nome do cronômetro"
-#: ../panel-plugin/xfcetimer.c:1536
+#: ../panel-plugin/xfcetimer.c:1551
msgid ""
"Countdown period /\n"
"Alarm time"
-msgstr "Período de contagem regressiva /\nHora do alarme"
+msgstr ""
+"Período de contagem regressiva /\n"
+"Hora do alarme"
-#: ../panel-plugin/xfcetimer.c:1539
+#: ../panel-plugin/xfcetimer.c:1554
msgid "Alarm command"
msgstr "Comando de alarme"
-#: ../panel-plugin/xfcetimer.c:1557
+#: ../panel-plugin/xfcetimer.c:1572
msgid "Add"
msgstr "Adicionar"
-#: ../panel-plugin/xfcetimer.c:1565
+#: ../panel-plugin/xfcetimer.c:1580
msgid "Edit"
msgstr "Editar"
-#: ../panel-plugin/xfcetimer.c:1573
+#: ../panel-plugin/xfcetimer.c:1588
msgid "Remove"
msgstr "Remover"
-#: ../panel-plugin/xfcetimer.c:1581
+#: ../panel-plugin/xfcetimer.c:1596
msgid "Up"
msgstr "Mover para cima"
-#: ../panel-plugin/xfcetimer.c:1588
+#: ../panel-plugin/xfcetimer.c:1603
msgid "Down"
msgstr "Mover para baixo"
-#: ../panel-plugin/xfcetimer.c:1604
+#: ../panel-plugin/xfcetimer.c:1619
msgid "Don't display a warning if an alarm command is set"
msgstr "Não exibir a janela de aviso se um comando de alarme estiver definido"
-#: ../panel-plugin/xfcetimer.c:1610
-msgid "Selecting a timer starts it"
-msgstr "Ao selecionar um cronômetro, incia-o."
-
#. Default alarm command config
-#: ../panel-plugin/xfcetimer.c:1623
+#: ../panel-plugin/xfcetimer.c:1631
msgid "Use a default alarm command"
msgstr "Usar um comando de alarme padrão"
-#: ../panel-plugin/xfcetimer.c:1632
+#: ../panel-plugin/xfcetimer.c:1640
msgid "Default command: "
msgstr "Comando padrão:"
#. Alarm repetitions config
-#: ../panel-plugin/xfcetimer.c:1648
+#: ../panel-plugin/xfcetimer.c:1656
msgid "Repeat the alarm command"
msgstr "Repetir o comando de alarme"
-#: ../panel-plugin/xfcetimer.c:1657
+#: ../panel-plugin/xfcetimer.c:1665
msgid "Number of repetitions"
msgstr "Número de repetições "
-#: ../panel-plugin/xfcetimer.c:1666
+#: ../panel-plugin/xfcetimer.c:1674
msgid " Time interval (sec.)"
msgstr " Intervalo de tempo (s) "
-#: ../panel-plugin/xfcetimer.c:1728
+#: ../panel-plugin/xfcetimer.c:1736
msgid "About xfce4-timer-plugin"
msgstr "Sobre xfce4-timer-plugin"
-#: ../panel-plugin/xfcetimer.c:1731
+#: ../panel-plugin/xfcetimer.c:1739
msgid "A plugin to define countdown timers or alarms at given times."
-msgstr "Um plugin para definir contagens regressiva ou alarmes em momento informados."
+msgstr ""
+"Um plugin para definir contagens regressiva ou alarmes em momento "
+"informados."
-#: ../panel-plugin/xfcetimer.c:1734
+#: ../panel-plugin/xfcetimer.c:1742
msgid "Copyright (c) 2005-2018\n"
msgstr "Copyright (c) 2005-2018\n"
@@ -233,3 +240,12 @@ msgstr "Temporizador do Xfce4"
#: ../panel-plugin/xfce4-timer-plugin.desktop.in.h:2
msgid "Timer plugin for Xfce panel"
msgstr "Plugin temporizador para o painel do Xfce"
+
+#~ msgid "Selecting a timer starts it"
+#~ msgstr "Ao selecionar um cronômetro, incia-o."
+
+#~ msgid "Start timer"
+#~ msgstr "Iniciar o temporizador"
+
+#~ msgid "Stop the alarm"
+#~ msgstr "Parar o alarme"
diff --git a/po/ru.po b/po/ru.po
index d63dae0..43aff24 100644
--- a/po/ru.po
+++ b/po/ru.po
@@ -1,7 +1,7 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
-#
+#
# Translators:
# Andrey Fedoseev <andrey.fedoseev at gmail.com>, 2006
# Andrey Ivankov <andrey.ivankov at gmail.com>, 2014
@@ -14,216 +14,222 @@ msgid ""
msgstr ""
"Project-Id-Version: Xfce Panel Plugins\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-01-04 06:32+0100\n"
+"POT-Creation-Date: 2018-04-21 18:00+0300\n"
"PO-Revision-Date: 2018-01-04 16:02+0000\n"
"Last-Translator: Igor <f2404 at yandex.ru>\n"
-"Language-Team: Russian (http://www.transifex.com/xfce/xfce-panel-plugins/language/ru/)\n"
+"Language-Team: Russian (http://www.transifex.com/xfce/xfce-panel-plugins/"
+"language/ru/)\n"
+"Language: ru\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: ru\n"
-"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n"
+"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
+"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n"
+"%100>=11 && n%100<=14)? 2 : 3);\n"
-#: ../panel-plugin/xfcetimer.c:153
+#: ../panel-plugin/xfcetimer.c:167
#, c-format
msgid "%dh %dm %ds left"
msgstr "Осталось %d ч %d м %d с"
-#: ../panel-plugin/xfcetimer.c:156
+#: ../panel-plugin/xfcetimer.c:170
#, c-format
msgid "%dm %ds left"
msgstr "Осталось %d м %d с"
-#: ../panel-plugin/xfcetimer.c:159
+#: ../panel-plugin/xfcetimer.c:173
#, c-format
msgid "%ds left"
msgstr "Осталось %d с"
-#: ../panel-plugin/xfcetimer.c:163
+#: ../panel-plugin/xfcetimer.c:177
msgid " (Paused)"
msgstr " (пауза)"
-#: ../panel-plugin/xfcetimer.c:198
+#. Display the name of the alarm when the countdown ends
+#: ../panel-plugin/xfcetimer.c:213
#, c-format
msgid ""
"Beeep! :) \n"
"Time is up for the alarm %s."
-msgstr "Динь-динь! :)\nВремя вышло по сигналу %s."
+msgstr ""
+"Динь-динь! :)\n"
+"Время вышло по сигналу %s."
-#: ../panel-plugin/xfcetimer.c:210 ../panel-plugin/xfcetimer.c:1493
+#: ../panel-plugin/xfcetimer.c:221 ../panel-plugin/xfcetimer.c:1508
msgid "Close"
msgstr "Закрыть"
-#: ../panel-plugin/xfcetimer.c:211
+#: ../panel-plugin/xfcetimer.c:222
msgid "Rerun the timer"
msgstr "Перезапустить"
-#: ../panel-plugin/xfcetimer.c:526
-msgid "Resume timer"
-msgstr "Продолжить"
-
-#: ../panel-plugin/xfcetimer.c:533 ../panel-plugin/xfcetimer.c:556
-msgid "Stop timer"
-msgstr "Остановить"
-
-#: ../panel-plugin/xfcetimer.c:545
+#: ../panel-plugin/xfcetimer.c:515
msgid "Pause timer"
msgstr "Пауза"
-#: ../panel-plugin/xfcetimer.c:558
-msgid "Start timer"
-msgstr "Запустить"
+#: ../panel-plugin/xfcetimer.c:523
+msgid "Resume timer"
+msgstr "Продолжить"
-#: ../panel-plugin/xfcetimer.c:568
-msgid "Stop the alarm"
+#: ../panel-plugin/xfcetimer.c:534
+msgid "Stop timer"
msgstr "Остановить"
-#: ../panel-plugin/xfcetimer.c:622 ../panel-plugin/xfcetimer.c:696
+#: ../panel-plugin/xfcetimer.c:614 ../panel-plugin/xfcetimer.c:693
#, c-format
msgid "%dh %dm %ds"
msgstr "%d ч %d м %d с"
-#: ../panel-plugin/xfcetimer.c:624 ../panel-plugin/xfcetimer.c:698
+#: ../panel-plugin/xfcetimer.c:616 ../panel-plugin/xfcetimer.c:695
#, c-format
msgid "%dm %ds"
msgstr "%d м %d с"
-#: ../panel-plugin/xfcetimer.c:626 ../panel-plugin/xfcetimer.c:700
+#: ../panel-plugin/xfcetimer.c:618 ../panel-plugin/xfcetimer.c:697
#, c-format
msgid "%ds"
msgstr "%d с"
-#: ../panel-plugin/xfcetimer.c:634 ../panel-plugin/xfcetimer.c:709
+#: ../panel-plugin/xfcetimer.c:626 ../panel-plugin/xfcetimer.c:706
#, c-format
msgid "At %02d:%02d"
msgstr "сигнал в %02d:%02d"
-#: ../panel-plugin/xfcetimer.c:815
+#: ../panel-plugin/xfcetimer.c:812
msgid "Name:"
msgstr "Название:"
-#: ../panel-plugin/xfcetimer.c:824
+#: ../panel-plugin/xfcetimer.c:821
msgid "Enter the countdown time"
msgstr "Обратный отсчёт"
-#: ../panel-plugin/xfcetimer.c:829
+#: ../panel-plugin/xfcetimer.c:826
msgid "Enter the time of alarm (24h format)"
msgstr "Сигнал (24-х часовой формат)"
-#: ../panel-plugin/xfcetimer.c:844
+#: ../panel-plugin/xfcetimer.c:841
msgid "h "
msgstr "ч "
-#: ../panel-plugin/xfcetimer.c:851
+#: ../panel-plugin/xfcetimer.c:848
msgid "m "
msgstr "м "
-#: ../panel-plugin/xfcetimer.c:858
+#: ../panel-plugin/xfcetimer.c:855
msgid "s "
msgstr "с "
-#: ../panel-plugin/xfcetimer.c:862
+#: ../panel-plugin/xfcetimer.c:859
msgid "or"
msgstr "или"
#. **************
-#: ../panel-plugin/xfcetimer.c:884
+#: ../panel-plugin/xfcetimer.c:881
msgid "Command to run:"
msgstr "Выполнить команду:"
-#: ../panel-plugin/xfcetimer.c:898
+#. **************
+#. add recurring alarm check button
+#: ../panel-plugin/xfcetimer.c:892
+msgid "Recurring alarm"
+msgstr ""
+
+#. add alarm autostart check button
+#: ../panel-plugin/xfcetimer.c:899
+msgid "Auto start when plugin loads"
+msgstr ""
+
+#: ../panel-plugin/xfcetimer.c:909
msgid "Cancel"
msgstr "Отменить"
-#: ../panel-plugin/xfcetimer.c:903
+#: ../panel-plugin/xfcetimer.c:914
msgid "Accept"
msgstr "Принять"
-#: ../panel-plugin/xfcetimer.c:914
+#: ../panel-plugin/xfcetimer.c:925
msgid "Add new alarm"
msgstr "Добавить новый таймер или сигнал"
-#: ../panel-plugin/xfcetimer.c:951
+#: ../panel-plugin/xfcetimer.c:966
msgid "Edit alarm"
msgstr "Редактировать сигнал"
-#: ../panel-plugin/xfcetimer.c:1491
+#: ../panel-plugin/xfcetimer.c:1506
msgid "Xfce4 Timer Options"
msgstr "Настройки таймера Xfce4"
-#: ../panel-plugin/xfcetimer.c:1531
+#: ../panel-plugin/xfcetimer.c:1546
msgid "Timer name"
msgstr "Название таймера"
-#: ../panel-plugin/xfcetimer.c:1536
+#: ../panel-plugin/xfcetimer.c:1551
msgid ""
"Countdown period /\n"
"Alarm time"
msgstr "Период срабатывания"
-#: ../panel-plugin/xfcetimer.c:1539
+#: ../panel-plugin/xfcetimer.c:1554
msgid "Alarm command"
msgstr "Команда"
-#: ../panel-plugin/xfcetimer.c:1557
+#: ../panel-plugin/xfcetimer.c:1572
msgid "Add"
msgstr "Добавить"
-#: ../panel-plugin/xfcetimer.c:1565
+#: ../panel-plugin/xfcetimer.c:1580
msgid "Edit"
msgstr "Редактировать"
-#: ../panel-plugin/xfcetimer.c:1573
+#: ../panel-plugin/xfcetimer.c:1588
msgid "Remove"
msgstr "Удалить"
-#: ../panel-plugin/xfcetimer.c:1581
+#: ../panel-plugin/xfcetimer.c:1596
msgid "Up"
msgstr "Вверх"
-#: ../panel-plugin/xfcetimer.c:1588
+#: ../panel-plugin/xfcetimer.c:1603
msgid "Down"
msgstr "Вниз"
-#: ../panel-plugin/xfcetimer.c:1604
+#: ../panel-plugin/xfcetimer.c:1619
msgid "Don't display a warning if an alarm command is set"
msgstr "Не показывать уведомление, если указана команда"
-#: ../panel-plugin/xfcetimer.c:1610
-msgid "Selecting a timer starts it"
-msgstr "Запускать таймер при его выборе"
-
#. Default alarm command config
-#: ../panel-plugin/xfcetimer.c:1623
+#: ../panel-plugin/xfcetimer.c:1631
msgid "Use a default alarm command"
msgstr "Использовать для сигнала команду по умолчанию"
-#: ../panel-plugin/xfcetimer.c:1632
+#: ../panel-plugin/xfcetimer.c:1640
msgid "Default command: "
msgstr "Команда по умолчанию: "
#. Alarm repetitions config
-#: ../panel-plugin/xfcetimer.c:1648
+#: ../panel-plugin/xfcetimer.c:1656
msgid "Repeat the alarm command"
msgstr "Повторять команду"
-#: ../panel-plugin/xfcetimer.c:1657
+#: ../panel-plugin/xfcetimer.c:1665
msgid "Number of repetitions"
msgstr "Количество повторов "
-#: ../panel-plugin/xfcetimer.c:1666
+#: ../panel-plugin/xfcetimer.c:1674
msgid " Time interval (sec.)"
msgstr " Интервал, с "
-#: ../panel-plugin/xfcetimer.c:1728
+#: ../panel-plugin/xfcetimer.c:1736
msgid "About xfce4-timer-plugin"
msgstr "О таймере xfce4-timer-plugin"
-#: ../panel-plugin/xfcetimer.c:1731
+#: ../panel-plugin/xfcetimer.c:1739
msgid "A plugin to define countdown timers or alarms at given times."
-msgstr "Модуль для создания таймеров обратного отсчёта или сигналов в заданное время."
+msgstr ""
+"Модуль для создания таймеров обратного отсчёта или сигналов в заданное время."
-#: ../panel-plugin/xfcetimer.c:1734
+#: ../panel-plugin/xfcetimer.c:1742
msgid "Copyright (c) 2005-2018\n"
msgstr "Copyright (c) 2005-2018\n"
@@ -234,3 +240,12 @@ msgstr "Таймер Xfce4"
#: ../panel-plugin/xfce4-timer-plugin.desktop.in.h:2
msgid "Timer plugin for Xfce panel"
msgstr "Модуль таймера для панели Xfce"
+
+#~ msgid "Selecting a timer starts it"
+#~ msgstr "Запускать таймер при его выборе"
+
+#~ msgid "Start timer"
+#~ msgstr "Запустить"
+
+#~ msgid "Stop the alarm"
+#~ msgstr "Остановить"
diff --git a/po/sk.po b/po/sk.po
index 88b2302..528810a 100644
--- a/po/sk.po
+++ b/po/sk.po
@@ -1,7 +1,7 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
-#
+#
# Translators:
# Robert Hartl <hartl.robert at gmail.com>, 2009
# Slavko <linux at slavino.sk>, 2015
@@ -10,197 +10,243 @@ msgid ""
msgstr ""
"Project-Id-Version: Xfce Panel Plugins\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-06-05 06:31+0200\n"
+"POT-Creation-Date: 2018-04-21 18:00+0300\n"
"PO-Revision-Date: 2017-09-19 18:06+0000\n"
"Last-Translator: Slavko <linux at slavino.sk>\n"
-"Language-Team: Slovak (http://www.transifex.com/xfce/xfce-panel-plugins/language/sk/)\n"
+"Language-Team: Slovak (http://www.transifex.com/xfce/xfce-panel-plugins/"
+"language/sk/)\n"
+"Language: sk\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: sk\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
-#: ../src/xfcetimer.c:146
+#: ../panel-plugin/xfcetimer.c:167
#, c-format
msgid "%dh %dm %ds left"
msgstr "%dh %dm %ds zostáva"
-#: ../src/xfcetimer.c:149
+#: ../panel-plugin/xfcetimer.c:170
#, c-format
msgid "%dm %ds left"
msgstr "%dm %ds zostáva"
-#: ../src/xfcetimer.c:151
+#: ../panel-plugin/xfcetimer.c:173
#, c-format
msgid "%ds left"
msgstr "%ds zostáva"
-#: ../src/xfcetimer.c:154
+#: ../panel-plugin/xfcetimer.c:177
msgid " (Paused)"
msgstr "(Prerušený)"
#. Display the name of the alarm when the countdown ends
-#: ../src/xfcetimer.c:188
+#: ../panel-plugin/xfcetimer.c:213
#, c-format
msgid ""
"Beeep! :) \n"
"Time is up for the alarm %s."
-msgstr "Píp! :) \nnastal čas na alarm %s."
+msgstr ""
+"Píp! :) \n"
+"nastal čas na alarm %s."
+
+#: ../panel-plugin/xfcetimer.c:221 ../panel-plugin/xfcetimer.c:1508
+msgid "Close"
+msgstr ""
-#: ../src/xfcetimer.c:198
+#: ../panel-plugin/xfcetimer.c:222
msgid "Rerun the timer"
msgstr "Znova spustiť časovač"
-#: ../src/xfcetimer.c:487
+#: ../panel-plugin/xfcetimer.c:515
+msgid "Pause timer"
+msgstr "Prerušiť"
+
+#: ../panel-plugin/xfcetimer.c:523
msgid "Resume timer"
msgstr "Pokračovať"
-#: ../src/xfcetimer.c:494 ../src/xfcetimer.c:550
+#: ../panel-plugin/xfcetimer.c:534
msgid "Stop timer"
msgstr "Zastaviť časovač"
-#: ../src/xfcetimer.c:538
-msgid "Pause timer"
-msgstr "Prerušiť"
-
-#: ../src/xfcetimer.c:552
-msgid "Start timer"
-msgstr "Spustiť časovač"
-
-#: ../src/xfcetimer.c:561
-msgid "Stop the alarm"
-msgstr "Zastaviť alarm"
-
-#: ../src/xfcetimer.c:618 ../src/xfcetimer.c:689
+#: ../panel-plugin/xfcetimer.c:614 ../panel-plugin/xfcetimer.c:693
#, c-format
msgid "%dh %dm %ds"
msgstr "%dh %dm %ds"
-#: ../src/xfcetimer.c:620 ../src/xfcetimer.c:691
+#: ../panel-plugin/xfcetimer.c:616 ../panel-plugin/xfcetimer.c:695
#, c-format
msgid "%dm %ds"
msgstr "%dm %ds"
-#: ../src/xfcetimer.c:622 ../src/xfcetimer.c:693
+#: ../panel-plugin/xfcetimer.c:618 ../panel-plugin/xfcetimer.c:697
#, c-format
msgid "%ds"
msgstr "%ds"
-#: ../src/xfcetimer.c:631 ../src/xfcetimer.c:702
+#: ../panel-plugin/xfcetimer.c:626 ../panel-plugin/xfcetimer.c:706
#, c-format
msgid "At %02d:%02d"
msgstr "Od %02d:%02d"
-#: ../src/xfcetimer.c:801
+#: ../panel-plugin/xfcetimer.c:812
msgid "Name:"
msgstr "Názov:"
-#. ********
-#: ../src/xfcetimer.c:809
+#: ../panel-plugin/xfcetimer.c:821
msgid "Enter the countdown time"
msgstr "Zadajte čas pre odpočítavanie"
-#: ../src/xfcetimer.c:812
+#: ../panel-plugin/xfcetimer.c:826
msgid "Enter the time of alarm (24h format)"
msgstr "Zadajte čas alarmu (v 24 hodinovej forme)"
-#: ../src/xfcetimer.c:824
+#: ../panel-plugin/xfcetimer.c:841
msgid "h "
msgstr "h "
-#: ../src/xfcetimer.c:829
+#: ../panel-plugin/xfcetimer.c:848
msgid "m "
msgstr "m "
-#: ../src/xfcetimer.c:834
+#: ../panel-plugin/xfcetimer.c:855
msgid "s "
msgstr "s "
-#: ../src/xfcetimer.c:837
+#: ../panel-plugin/xfcetimer.c:859
msgid "or"
msgstr "alebo"
#. **************
-#: ../src/xfcetimer.c:857
+#: ../panel-plugin/xfcetimer.c:881
msgid "Command to run:"
msgstr "Spustiť príkaz:"
-#: ../src/xfcetimer.c:887
+#. **************
+#. add recurring alarm check button
+#: ../panel-plugin/xfcetimer.c:892
+msgid "Recurring alarm"
+msgstr ""
+
+#. add alarm autostart check button
+#: ../panel-plugin/xfcetimer.c:899
+msgid "Auto start when plugin loads"
+msgstr ""
+
+#: ../panel-plugin/xfcetimer.c:909
+msgid "Cancel"
+msgstr ""
+
+#: ../panel-plugin/xfcetimer.c:914
+msgid "Accept"
+msgstr ""
+
+#: ../panel-plugin/xfcetimer.c:925
msgid "Add new alarm"
msgstr "Pridať nový časovač"
-#: ../src/xfcetimer.c:924
+#: ../panel-plugin/xfcetimer.c:966
msgid "Edit alarm"
msgstr "Upraviť časovač"
-#: ../src/xfcetimer.c:1495 ../src/xfcetimer.c:1504
+#: ../panel-plugin/xfcetimer.c:1506
msgid "Xfce4 Timer Options"
msgstr "Voľby Časovača Xfce4"
-#: ../src/xfcetimer.c:1506
-msgid "Xfce 4 Timer Plugin"
-msgstr "Zásuvný modul XFCE 14 Časovač"
-
-#: ../src/xfcetimer.c:1552
+#: ../panel-plugin/xfcetimer.c:1546
msgid "Timer name"
msgstr "Názov časovača"
-#: ../src/xfcetimer.c:1557
+#: ../panel-plugin/xfcetimer.c:1551
msgid ""
"Countdown period /\n"
"Alarm time"
-msgstr "Interval odpočtu /\nČas alarmu"
+msgstr ""
+"Interval odpočtu /\n"
+"Čas alarmu"
-#: ../src/xfcetimer.c:1561
+#: ../panel-plugin/xfcetimer.c:1554
msgid "Alarm command"
msgstr "Príkaz alarmu"
-#: ../src/xfcetimer.c:1617
+#: ../panel-plugin/xfcetimer.c:1572
+msgid "Add"
+msgstr ""
+
+#: ../panel-plugin/xfcetimer.c:1580
+msgid "Edit"
+msgstr ""
+
+#: ../panel-plugin/xfcetimer.c:1588
+msgid "Remove"
+msgstr ""
+
+#: ../panel-plugin/xfcetimer.c:1596
+msgid "Up"
+msgstr ""
+
+#: ../panel-plugin/xfcetimer.c:1603
+msgid "Down"
+msgstr ""
+
+#: ../panel-plugin/xfcetimer.c:1619
msgid "Don't display a warning if an alarm command is set"
msgstr "Nezobrazovať upozornenie, ak je nastavený príkaz alarmu"
-#: ../src/xfcetimer.c:1622
-msgid "Selecting a timer starts it"
-msgstr "Výberom časovača ho spustíte"
-
#. Default alarm command config
-#: ../src/xfcetimer.c:1630
+#: ../panel-plugin/xfcetimer.c:1631
msgid "Use a default alarm command"
msgstr "Použiť predvolený príkaz alarmu"
-#: ../src/xfcetimer.c:1637
+#: ../panel-plugin/xfcetimer.c:1640
msgid "Default command: "
msgstr "Predvolený príkaz:"
#. Alarm repetitions config
-#: ../src/xfcetimer.c:1649
+#: ../panel-plugin/xfcetimer.c:1656
msgid "Repeat the alarm command"
msgstr "Opakovať príkaz alarmu"
-#: ../src/xfcetimer.c:1656
+#: ../panel-plugin/xfcetimer.c:1665
msgid "Number of repetitions"
msgstr "Počet opakovaní"
-#: ../src/xfcetimer.c:1662
+#: ../panel-plugin/xfcetimer.c:1674
msgid " Time interval (sec.)"
msgstr " Časový interval (s)"
-#: ../src/xfcetimer.c:1723
+#: ../panel-plugin/xfcetimer.c:1736
msgid "About xfce4-timer-plugin"
msgstr "O xfce4-timer-plugin"
-#: ../src/xfcetimer.c:1728
+#: ../panel-plugin/xfcetimer.c:1739
msgid "A plugin to define countdown timers or alarms at given times."
-msgstr "Zásuvný modul na definovanie časovačov (odpočítavanie) alebo alarmov (v zadaný čas)."
+msgstr ""
+"Zásuvný modul na definovanie časovačov (odpočítavanie) alebo alarmov (v "
+"zadaný čas)."
-#: ../src/xfcetimer.c:1730
-msgid "Copyright (c) 2005-2013\n"
+#: ../panel-plugin/xfcetimer.c:1742
+#, fuzzy
+msgid "Copyright (c) 2005-2018\n"
msgstr "Copyright (c) 2005-2013\n"
-#: ../src/xfce4-timer.desktop.in.in.h:1
+#: ../panel-plugin/xfce4-timer-plugin.desktop.in.h:1
msgid "Xfce4 Timer"
msgstr "Časovač Xfce4"
-#: ../src/xfce4-timer.desktop.in.in.h:2
+#: ../panel-plugin/xfce4-timer-plugin.desktop.in.h:2
msgid "Timer plugin for Xfce panel"
msgstr "Zásuvný modul Časovač pre panel Xfce"
+
+#~ msgid "Selecting a timer starts it"
+#~ msgstr "Výberom časovača ho spustíte"
+
+#~ msgid "Start timer"
+#~ msgstr "Spustiť časovač"
+
+#~ msgid "Stop the alarm"
+#~ msgstr "Zastaviť alarm"
+
+#~ msgid "Xfce 4 Timer Plugin"
+#~ msgstr "Zásuvný modul XFCE 14 Časovač"
diff --git a/po/sq.po b/po/sq.po
index c42a007..48533ff 100644
--- a/po/sq.po
+++ b/po/sq.po
@@ -1,204 +1,239 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
-#
+#
# Translators:
# Besnik <besnik at programeshqip.org>, 2007
msgid ""
msgstr ""
"Project-Id-Version: Xfce Panel Plugins\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-06-05 06:31+0200\n"
+"POT-Creation-Date: 2018-04-21 18:00+0300\n"
"PO-Revision-Date: 2017-09-19 18:06+0000\n"
"Last-Translator: Xfce Bot <transifex at xfce.org>\n"
-"Language-Team: Albanian (http://www.transifex.com/xfce/xfce-panel-plugins/language/sq/)\n"
+"Language-Team: Albanian (http://www.transifex.com/xfce/xfce-panel-plugins/"
+"language/sq/)\n"
+"Language: sq\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: sq\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: ../src/xfcetimer.c:146
+#: ../panel-plugin/xfcetimer.c:167
#, c-format
msgid "%dh %dm %ds left"
msgstr "%do %dm %ds të mbetura"
-#: ../src/xfcetimer.c:149
+#: ../panel-plugin/xfcetimer.c:170
#, c-format
msgid "%dm %ds left"
msgstr "%dm %ds të mbetura"
-#: ../src/xfcetimer.c:151
+#: ../panel-plugin/xfcetimer.c:173
#, c-format
msgid "%ds left"
msgstr "%ds të mbetura"
-#: ../src/xfcetimer.c:154
+#: ../panel-plugin/xfcetimer.c:177
msgid " (Paused)"
msgstr ""
#. Display the name of the alarm when the countdown ends
-#: ../src/xfcetimer.c:188
+#: ../panel-plugin/xfcetimer.c:213
#, c-format
msgid ""
"Beeep! :) \n"
"Time is up for the alarm %s."
msgstr ""
-#: ../src/xfcetimer.c:198
-msgid "Rerun the timer"
+#: ../panel-plugin/xfcetimer.c:221 ../panel-plugin/xfcetimer.c:1508
+msgid "Close"
msgstr ""
-#: ../src/xfcetimer.c:487
-msgid "Resume timer"
+#: ../panel-plugin/xfcetimer.c:222
+msgid "Rerun the timer"
msgstr ""
-#: ../src/xfcetimer.c:494 ../src/xfcetimer.c:550
-msgid "Stop timer"
-msgstr "Ndal Kohësin"
-
-#: ../src/xfcetimer.c:538
+#: ../panel-plugin/xfcetimer.c:515
msgid "Pause timer"
msgstr ""
-#: ../src/xfcetimer.c:552
-msgid "Start timer"
-msgstr "Nis kohësin"
+#: ../panel-plugin/xfcetimer.c:523
+msgid "Resume timer"
+msgstr ""
-#: ../src/xfcetimer.c:561
-msgid "Stop the alarm"
-msgstr "Ndal alarmin"
+#: ../panel-plugin/xfcetimer.c:534
+msgid "Stop timer"
+msgstr "Ndal Kohësin"
-#: ../src/xfcetimer.c:618 ../src/xfcetimer.c:689
+#: ../panel-plugin/xfcetimer.c:614 ../panel-plugin/xfcetimer.c:693
#, c-format
msgid "%dh %dm %ds"
msgstr "%do %dm %ds"
-#: ../src/xfcetimer.c:620 ../src/xfcetimer.c:691
+#: ../panel-plugin/xfcetimer.c:616 ../panel-plugin/xfcetimer.c:695
#, c-format
msgid "%dm %ds"
msgstr "%dm %ds"
-#: ../src/xfcetimer.c:622 ../src/xfcetimer.c:693
+#: ../panel-plugin/xfcetimer.c:618 ../panel-plugin/xfcetimer.c:697
#, c-format
msgid "%ds"
msgstr "%ds"
-#: ../src/xfcetimer.c:631 ../src/xfcetimer.c:702
+#: ../panel-plugin/xfcetimer.c:626 ../panel-plugin/xfcetimer.c:706
#, c-format
msgid "At %02d:%02d"
msgstr "Më %02d:%02d"
-#: ../src/xfcetimer.c:801
+#: ../panel-plugin/xfcetimer.c:812
msgid "Name:"
msgstr ""
-#. ********
-#: ../src/xfcetimer.c:809
+#: ../panel-plugin/xfcetimer.c:821
msgid "Enter the countdown time"
msgstr "Jepni kohë skadimi"
-#: ../src/xfcetimer.c:812
+#: ../panel-plugin/xfcetimer.c:826
msgid "Enter the time of alarm (24h format)"
msgstr "Jepni kohën e alarmit (në format 24orësh)"
-#: ../src/xfcetimer.c:824
+#: ../panel-plugin/xfcetimer.c:841
msgid "h "
msgstr "o "
-#: ../src/xfcetimer.c:829
+#: ../panel-plugin/xfcetimer.c:848
msgid "m "
msgstr "m "
-#: ../src/xfcetimer.c:834
+#: ../panel-plugin/xfcetimer.c:855
msgid "s "
msgstr "s "
-#: ../src/xfcetimer.c:837
+#: ../panel-plugin/xfcetimer.c:859
msgid "or"
msgstr ""
#. **************
-#: ../src/xfcetimer.c:857
+#: ../panel-plugin/xfcetimer.c:881
msgid "Command to run:"
msgstr ""
-#: ../src/xfcetimer.c:887
+#. **************
+#. add recurring alarm check button
+#: ../panel-plugin/xfcetimer.c:892
+msgid "Recurring alarm"
+msgstr ""
+
+#. add alarm autostart check button
+#: ../panel-plugin/xfcetimer.c:899
+msgid "Auto start when plugin loads"
+msgstr ""
+
+#: ../panel-plugin/xfcetimer.c:909
+msgid "Cancel"
+msgstr ""
+
+#: ../panel-plugin/xfcetimer.c:914
+msgid "Accept"
+msgstr ""
+
+#: ../panel-plugin/xfcetimer.c:925
msgid "Add new alarm"
msgstr "Shto alarm të ri"
-#: ../src/xfcetimer.c:924
+#: ../panel-plugin/xfcetimer.c:966
msgid "Edit alarm"
msgstr "Përpunoni Alarm"
-#: ../src/xfcetimer.c:1495 ../src/xfcetimer.c:1504
+#: ../panel-plugin/xfcetimer.c:1506
msgid "Xfce4 Timer Options"
msgstr "Mundësi Kohësi Xfce4"
-#: ../src/xfcetimer.c:1506
-msgid "Xfce 4 Timer Plugin"
-msgstr ""
-
-#: ../src/xfcetimer.c:1552
+#: ../panel-plugin/xfcetimer.c:1546
msgid "Timer name"
msgstr ""
-#: ../src/xfcetimer.c:1557
+#: ../panel-plugin/xfcetimer.c:1551
msgid ""
"Countdown period /\n"
"Alarm time"
-msgstr "Periudhë skadimi/\nKohë alarmi"
+msgstr ""
+"Periudhë skadimi/\n"
+"Kohë alarmi"
-#: ../src/xfcetimer.c:1561
+#: ../panel-plugin/xfcetimer.c:1554
msgid "Alarm command"
msgstr "Urdhër alarmi"
-#: ../src/xfcetimer.c:1617
-msgid "Don't display a warning if an alarm command is set"
+#: ../panel-plugin/xfcetimer.c:1572
+msgid "Add"
+msgstr ""
+
+#: ../panel-plugin/xfcetimer.c:1580
+msgid "Edit"
msgstr ""
-#: ../src/xfcetimer.c:1622
-msgid "Selecting a timer starts it"
+#: ../panel-plugin/xfcetimer.c:1588
+msgid "Remove"
+msgstr ""
+
+#: ../panel-plugin/xfcetimer.c:1596
+msgid "Up"
+msgstr ""
+
+#: ../panel-plugin/xfcetimer.c:1603
+msgid "Down"
+msgstr ""
+
+#: ../panel-plugin/xfcetimer.c:1619
+msgid "Don't display a warning if an alarm command is set"
msgstr ""
#. Default alarm command config
-#: ../src/xfcetimer.c:1630
+#: ../panel-plugin/xfcetimer.c:1631
msgid "Use a default alarm command"
msgstr ""
-#: ../src/xfcetimer.c:1637
+#: ../panel-plugin/xfcetimer.c:1640
msgid "Default command: "
msgstr ""
#. Alarm repetitions config
-#: ../src/xfcetimer.c:1649
+#: ../panel-plugin/xfcetimer.c:1656
msgid "Repeat the alarm command"
msgstr ""
-#: ../src/xfcetimer.c:1656
+#: ../panel-plugin/xfcetimer.c:1665
msgid "Number of repetitions"
msgstr "Numër përsëritjesh"
-#: ../src/xfcetimer.c:1662
+#: ../panel-plugin/xfcetimer.c:1674
msgid " Time interval (sec.)"
msgstr " Interval kohe (sec.)"
-#: ../src/xfcetimer.c:1723
+#: ../panel-plugin/xfcetimer.c:1736
msgid "About xfce4-timer-plugin"
msgstr ""
-#: ../src/xfcetimer.c:1728
+#: ../panel-plugin/xfcetimer.c:1739
msgid "A plugin to define countdown timers or alarms at given times."
msgstr ""
-#: ../src/xfcetimer.c:1730
-msgid "Copyright (c) 2005-2013\n"
+#: ../panel-plugin/xfcetimer.c:1742
+msgid "Copyright (c) 2005-2018\n"
msgstr ""
-#: ../src/xfce4-timer.desktop.in.in.h:1
+#: ../panel-plugin/xfce4-timer-plugin.desktop.in.h:1
msgid "Xfce4 Timer"
msgstr "Kohës Xfce4"
-#: ../src/xfce4-timer.desktop.in.in.h:2
+#: ../panel-plugin/xfce4-timer-plugin.desktop.in.h:2
msgid "Timer plugin for Xfce panel"
msgstr "Shtojcë kohësi për panelin e Xfce"
+
+#~ msgid "Start timer"
+#~ msgstr "Nis kohësin"
+
+#~ msgid "Stop the alarm"
+#~ msgstr "Ndal alarmin"
diff --git a/po/sr.po b/po/sr.po
index 070f64f..8b30e22 100644
--- a/po/sr.po
+++ b/po/sr.po
@@ -1,7 +1,7 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
-#
+#
# Translators:
# Саша Петровић <salepetronije at gmail.com>, 2013
# Саша Петровић <salepetronije at gmail.com>, 2013-2014
@@ -10,216 +10,222 @@ msgid ""
msgstr ""
"Project-Id-Version: Xfce Panel Plugins\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-01-04 06:32+0100\n"
+"POT-Creation-Date: 2018-04-21 18:00+0300\n"
"PO-Revision-Date: 2018-03-01 08:59+0000\n"
"Last-Translator: Саша Петровић <salepetronije at gmail.com>\n"
-"Language-Team: Serbian (http://www.transifex.com/xfce/xfce-panel-plugins/language/sr/)\n"
+"Language-Team: Serbian (http://www.transifex.com/xfce/xfce-panel-plugins/"
+"language/sr/)\n"
+"Language: sr\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: sr\n"
-"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
+"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
-#: ../panel-plugin/xfcetimer.c:153
+#: ../panel-plugin/xfcetimer.c:167
#, c-format
msgid "%dh %dm %ds left"
msgstr "%dh %dm %ds преостаје"
-#: ../panel-plugin/xfcetimer.c:156
+#: ../panel-plugin/xfcetimer.c:170
#, c-format
msgid "%dm %ds left"
msgstr "%dm %ds преостаје"
-#: ../panel-plugin/xfcetimer.c:159
+#: ../panel-plugin/xfcetimer.c:173
#, c-format
msgid "%ds left"
msgstr "%ds преостаје"
-#: ../panel-plugin/xfcetimer.c:163
+#: ../panel-plugin/xfcetimer.c:177
msgid " (Paused)"
msgstr " (Застанак)"
-#: ../panel-plugin/xfcetimer.c:198
+#. Display the name of the alarm when the countdown ends
+#: ../panel-plugin/xfcetimer.c:213
#, c-format
msgid ""
"Beeep! :) \n"
"Time is up for the alarm %s."
-msgstr "Туту! :)\nВреме за узбуну %s је истекло."
+msgstr ""
+"Туту! :)\n"
+"Време за узбуну %s је истекло."
-#: ../panel-plugin/xfcetimer.c:210 ../panel-plugin/xfcetimer.c:1493
+#: ../panel-plugin/xfcetimer.c:221 ../panel-plugin/xfcetimer.c:1508
msgid "Close"
msgstr "Затвори"
-#: ../panel-plugin/xfcetimer.c:211
+#: ../panel-plugin/xfcetimer.c:222
msgid "Rerun the timer"
msgstr "Поново покрени бројач времена"
-#: ../panel-plugin/xfcetimer.c:526
+#: ../panel-plugin/xfcetimer.c:515
+msgid "Pause timer"
+msgstr "Застани са бројачем времена"
+
+#: ../panel-plugin/xfcetimer.c:523
msgid "Resume timer"
msgstr "Настави са бројачем времена"
-#: ../panel-plugin/xfcetimer.c:533 ../panel-plugin/xfcetimer.c:556
+#: ../panel-plugin/xfcetimer.c:534
msgid "Stop timer"
msgstr "Заустави бројач времена"
-#: ../panel-plugin/xfcetimer.c:545
-msgid "Pause timer"
-msgstr "Застани са бројачем времена"
-
-#: ../panel-plugin/xfcetimer.c:558
-msgid "Start timer"
-msgstr "Покрени бројач времена"
-
-#: ../panel-plugin/xfcetimer.c:568
-msgid "Stop the alarm"
-msgstr "Заустави узбуну"
-
-#: ../panel-plugin/xfcetimer.c:622 ../panel-plugin/xfcetimer.c:696
+#: ../panel-plugin/xfcetimer.c:614 ../panel-plugin/xfcetimer.c:693
#, c-format
msgid "%dh %dm %ds"
msgstr "%dh %dm %ds"
-#: ../panel-plugin/xfcetimer.c:624 ../panel-plugin/xfcetimer.c:698
+#: ../panel-plugin/xfcetimer.c:616 ../panel-plugin/xfcetimer.c:695
#, c-format
msgid "%dm %ds"
msgstr "%dm %ds"
-#: ../panel-plugin/xfcetimer.c:626 ../panel-plugin/xfcetimer.c:700
+#: ../panel-plugin/xfcetimer.c:618 ../panel-plugin/xfcetimer.c:697
#, c-format
msgid "%ds"
msgstr "%ds"
-#: ../panel-plugin/xfcetimer.c:634 ../panel-plugin/xfcetimer.c:709
+#: ../panel-plugin/xfcetimer.c:626 ../panel-plugin/xfcetimer.c:706
#, c-format
msgid "At %02d:%02d"
msgstr "У %02d:%02d"
-#: ../panel-plugin/xfcetimer.c:815
+#: ../panel-plugin/xfcetimer.c:812
msgid "Name:"
msgstr "Назив:"
-#: ../panel-plugin/xfcetimer.c:824
+#: ../panel-plugin/xfcetimer.c:821
msgid "Enter the countdown time"
msgstr "Унесите време одбројавања"
-#: ../panel-plugin/xfcetimer.c:829
+#: ../panel-plugin/xfcetimer.c:826
msgid "Enter the time of alarm (24h format)"
msgstr "Унесите време узбуне (у облику 24 часа)"
-#: ../panel-plugin/xfcetimer.c:844
+#: ../panel-plugin/xfcetimer.c:841
msgid "h "
msgstr "h "
-#: ../panel-plugin/xfcetimer.c:851
+#: ../panel-plugin/xfcetimer.c:848
msgid "m "
msgstr "m "
-#: ../panel-plugin/xfcetimer.c:858
+#: ../panel-plugin/xfcetimer.c:855
msgid "s "
msgstr "s "
-#: ../panel-plugin/xfcetimer.c:862
+#: ../panel-plugin/xfcetimer.c:859
msgid "or"
msgstr "или"
#. **************
-#: ../panel-plugin/xfcetimer.c:884
+#: ../panel-plugin/xfcetimer.c:881
msgid "Command to run:"
msgstr "Наредба за извршење:"
-#: ../panel-plugin/xfcetimer.c:898
+#. **************
+#. add recurring alarm check button
+#: ../panel-plugin/xfcetimer.c:892
+msgid "Recurring alarm"
+msgstr ""
+
+#. add alarm autostart check button
+#: ../panel-plugin/xfcetimer.c:899
+msgid "Auto start when plugin loads"
+msgstr ""
+
+#: ../panel-plugin/xfcetimer.c:909
msgid "Cancel"
msgstr "Откажи"
-#: ../panel-plugin/xfcetimer.c:903
+#: ../panel-plugin/xfcetimer.c:914
msgid "Accept"
msgstr "Прихвати"
-#: ../panel-plugin/xfcetimer.c:914
+#: ../panel-plugin/xfcetimer.c:925
msgid "Add new alarm"
msgstr "Додај нову узбуну"
-#: ../panel-plugin/xfcetimer.c:951
+#: ../panel-plugin/xfcetimer.c:966
msgid "Edit alarm"
msgstr "Уредите узбуну"
-#: ../panel-plugin/xfcetimer.c:1491
+#: ../panel-plugin/xfcetimer.c:1506
msgid "Xfce4 Timer Options"
msgstr "Могућности ИксФЦЕ бројача времена"
-#: ../panel-plugin/xfcetimer.c:1531
+#: ../panel-plugin/xfcetimer.c:1546
msgid "Timer name"
msgstr "Назив бројача времена"
-#: ../panel-plugin/xfcetimer.c:1536
+#: ../panel-plugin/xfcetimer.c:1551
msgid ""
"Countdown period /\n"
"Alarm time"
-msgstr "Раздобље одбројавања /\nВреме узбуне"
+msgstr ""
+"Раздобље одбројавања /\n"
+"Време узбуне"
-#: ../panel-plugin/xfcetimer.c:1539
+#: ../panel-plugin/xfcetimer.c:1554
msgid "Alarm command"
msgstr "Наредба узбуне"
-#: ../panel-plugin/xfcetimer.c:1557
+#: ../panel-plugin/xfcetimer.c:1572
msgid "Add"
msgstr "Додај"
-#: ../panel-plugin/xfcetimer.c:1565
+#: ../panel-plugin/xfcetimer.c:1580
msgid "Edit"
msgstr "Уреди"
-#: ../panel-plugin/xfcetimer.c:1573
+#: ../panel-plugin/xfcetimer.c:1588
msgid "Remove"
msgstr "Уклони"
-#: ../panel-plugin/xfcetimer.c:1581
+#: ../panel-plugin/xfcetimer.c:1596
msgid "Up"
msgstr "Навише"
-#: ../panel-plugin/xfcetimer.c:1588
+#: ../panel-plugin/xfcetimer.c:1603
msgid "Down"
msgstr "Наниже"
-#: ../panel-plugin/xfcetimer.c:1604
+#: ../panel-plugin/xfcetimer.c:1619
msgid "Don't display a warning if an alarm command is set"
msgstr "Не приказуј упозорења ако наредба узбуне није постављена"
-#: ../panel-plugin/xfcetimer.c:1610
-msgid "Selecting a timer starts it"
-msgstr "Бројач се покреће његовим одабиром"
-
#. Default alarm command config
-#: ../panel-plugin/xfcetimer.c:1623
+#: ../panel-plugin/xfcetimer.c:1631
msgid "Use a default alarm command"
msgstr "Користи подразумевану наредбу за узбуну"
-#: ../panel-plugin/xfcetimer.c:1632
+#: ../panel-plugin/xfcetimer.c:1640
msgid "Default command: "
msgstr "Подразумевана наредба:"
#. Alarm repetitions config
-#: ../panel-plugin/xfcetimer.c:1648
+#: ../panel-plugin/xfcetimer.c:1656
msgid "Repeat the alarm command"
msgstr "Понављај наредбу узбуне"
-#: ../panel-plugin/xfcetimer.c:1657
+#: ../panel-plugin/xfcetimer.c:1665
msgid "Number of repetitions"
msgstr "Број понављања"
-#: ../panel-plugin/xfcetimer.c:1666
+#: ../panel-plugin/xfcetimer.c:1674
msgid " Time interval (sec.)"
msgstr " Временско раздобље (сек.)"
-#: ../panel-plugin/xfcetimer.c:1728
+#: ../panel-plugin/xfcetimer.c:1736
msgid "About xfce4-timer-plugin"
msgstr "О прикључку бројача времена за ИксФЦЕ4"
-#: ../panel-plugin/xfcetimer.c:1731
+#: ../panel-plugin/xfcetimer.c:1739
msgid "A plugin to define countdown timers or alarms at given times."
msgstr "Прикључак који одређује одбројавање времена или узбуне у задато време."
-#: ../panel-plugin/xfcetimer.c:1734
+#: ../panel-plugin/xfcetimer.c:1742
msgid "Copyright (c) 2005-2018\n"
msgstr "Права умножавања 2005-2018\n"
@@ -230,3 +236,12 @@ msgstr "Бројач времена ИксФЦЕ-а"
#: ../panel-plugin/xfce4-timer-plugin.desktop.in.h:2
msgid "Timer plugin for Xfce panel"
msgstr "Прикључак бројача на полици ИксФЦЕ-а"
+
+#~ msgid "Selecting a timer starts it"
+#~ msgstr "Бројач се покреће његовим одабиром"
+
+#~ msgid "Start timer"
+#~ msgstr "Покрени бројач времена"
+
+#~ msgid "Stop the alarm"
+#~ msgstr "Заустави узбуну"
diff --git a/po/sv.po b/po/sv.po
index 1b17c74..ec17355 100644
--- a/po/sv.po
+++ b/po/sv.po
@@ -1,7 +1,7 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
-#
+#
# Translators:
# Daniel Nylander <po at danielnylander.se>, 2008-2009
# Påvel Nicklasson <pavel2 at frimix.se>, 2015,2018
@@ -10,216 +10,223 @@ msgid ""
msgstr ""
"Project-Id-Version: Xfce Panel Plugins\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-01-04 06:32+0100\n"
+"POT-Creation-Date: 2018-04-21 18:00+0300\n"
"PO-Revision-Date: 2018-03-02 08:25+0000\n"
"Last-Translator: Påvel Nicklasson <pavel2 at frimix.se>\n"
-"Language-Team: Swedish (http://www.transifex.com/xfce/xfce-panel-plugins/language/sv/)\n"
+"Language-Team: Swedish (http://www.transifex.com/xfce/xfce-panel-plugins/"
+"language/sv/)\n"
+"Language: sv\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: sv\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: ../panel-plugin/xfcetimer.c:153
+#: ../panel-plugin/xfcetimer.c:167
#, c-format
msgid "%dh %dm %ds left"
msgstr "%dh %dm %ds kvar"
-#: ../panel-plugin/xfcetimer.c:156
+#: ../panel-plugin/xfcetimer.c:170
#, c-format
msgid "%dm %ds left"
msgstr "%dm %ds kvar"
-#: ../panel-plugin/xfcetimer.c:159
+#: ../panel-plugin/xfcetimer.c:173
#, c-format
msgid "%ds left"
msgstr "%ds kvar"
-#: ../panel-plugin/xfcetimer.c:163
+#: ../panel-plugin/xfcetimer.c:177
msgid " (Paused)"
msgstr "(Pausad)"
-#: ../panel-plugin/xfcetimer.c:198
+#. Display the name of the alarm when the countdown ends
+#: ../panel-plugin/xfcetimer.c:213
#, c-format
msgid ""
"Beeep! :) \n"
"Time is up for the alarm %s."
-msgstr "Beeep! :) \nTiden är ute för alarmet %s."
+msgstr ""
+"Beeep! :) \n"
+"Tiden är ute för alarmet %s."
-#: ../panel-plugin/xfcetimer.c:210 ../panel-plugin/xfcetimer.c:1493
+#: ../panel-plugin/xfcetimer.c:221 ../panel-plugin/xfcetimer.c:1508
msgid "Close"
msgstr "Stäng"
-#: ../panel-plugin/xfcetimer.c:211
+#: ../panel-plugin/xfcetimer.c:222
msgid "Rerun the timer"
msgstr "Kör om tidtagaren"
-#: ../panel-plugin/xfcetimer.c:526
+#: ../panel-plugin/xfcetimer.c:515
+msgid "Pause timer"
+msgstr "Pausa tidtagaren"
+
+#: ../panel-plugin/xfcetimer.c:523
msgid "Resume timer"
msgstr "Återstarta tidtagaren"
-#: ../panel-plugin/xfcetimer.c:533 ../panel-plugin/xfcetimer.c:556
+#: ../panel-plugin/xfcetimer.c:534
msgid "Stop timer"
msgstr "Stoppa tidtagare"
-#: ../panel-plugin/xfcetimer.c:545
-msgid "Pause timer"
-msgstr "Pausa tidtagaren"
-
-#: ../panel-plugin/xfcetimer.c:558
-msgid "Start timer"
-msgstr "Starta tidtagare"
-
-#: ../panel-plugin/xfcetimer.c:568
-msgid "Stop the alarm"
-msgstr "Stoppa alarmet"
-
-#: ../panel-plugin/xfcetimer.c:622 ../panel-plugin/xfcetimer.c:696
+#: ../panel-plugin/xfcetimer.c:614 ../panel-plugin/xfcetimer.c:693
#, c-format
msgid "%dh %dm %ds"
msgstr "%dh %dm %ds"
-#: ../panel-plugin/xfcetimer.c:624 ../panel-plugin/xfcetimer.c:698
+#: ../panel-plugin/xfcetimer.c:616 ../panel-plugin/xfcetimer.c:695
#, c-format
msgid "%dm %ds"
msgstr "%dm %ds"
-#: ../panel-plugin/xfcetimer.c:626 ../panel-plugin/xfcetimer.c:700
+#: ../panel-plugin/xfcetimer.c:618 ../panel-plugin/xfcetimer.c:697
#, c-format
msgid "%ds"
msgstr "%ds"
-#: ../panel-plugin/xfcetimer.c:634 ../panel-plugin/xfcetimer.c:709
+#: ../panel-plugin/xfcetimer.c:626 ../panel-plugin/xfcetimer.c:706
#, c-format
msgid "At %02d:%02d"
msgstr "Klockan %02d.%02d"
-#: ../panel-plugin/xfcetimer.c:815
+#: ../panel-plugin/xfcetimer.c:812
msgid "Name:"
msgstr "Namn:"
-#: ../panel-plugin/xfcetimer.c:824
+#: ../panel-plugin/xfcetimer.c:821
msgid "Enter the countdown time"
msgstr "Ange nedräkningstid"
-#: ../panel-plugin/xfcetimer.c:829
+#: ../panel-plugin/xfcetimer.c:826
msgid "Enter the time of alarm (24h format)"
msgstr "Ange tid för alarmet (24-timmarsformat)"
-#: ../panel-plugin/xfcetimer.c:844
+#: ../panel-plugin/xfcetimer.c:841
msgid "h "
msgstr "h "
-#: ../panel-plugin/xfcetimer.c:851
+#: ../panel-plugin/xfcetimer.c:848
msgid "m "
msgstr "m "
-#: ../panel-plugin/xfcetimer.c:858
+#: ../panel-plugin/xfcetimer.c:855
msgid "s "
msgstr "s "
-#: ../panel-plugin/xfcetimer.c:862
+#: ../panel-plugin/xfcetimer.c:859
msgid "or"
msgstr "eller"
#. **************
-#: ../panel-plugin/xfcetimer.c:884
+#: ../panel-plugin/xfcetimer.c:881
msgid "Command to run:"
msgstr "Kommando att köra:"
-#: ../panel-plugin/xfcetimer.c:898
+#. **************
+#. add recurring alarm check button
+#: ../panel-plugin/xfcetimer.c:892
+msgid "Recurring alarm"
+msgstr ""
+
+#. add alarm autostart check button
+#: ../panel-plugin/xfcetimer.c:899
+msgid "Auto start when plugin loads"
+msgstr ""
+
+#: ../panel-plugin/xfcetimer.c:909
msgid "Cancel"
msgstr "Avbryt"
-#: ../panel-plugin/xfcetimer.c:903
+#: ../panel-plugin/xfcetimer.c:914
msgid "Accept"
msgstr "Acceptera"
-#: ../panel-plugin/xfcetimer.c:914
+#: ../panel-plugin/xfcetimer.c:925
msgid "Add new alarm"
msgstr "Lägg till nytt alarm"
-#: ../panel-plugin/xfcetimer.c:951
+#: ../panel-plugin/xfcetimer.c:966
msgid "Edit alarm"
msgstr "Redigera alarm"
-#: ../panel-plugin/xfcetimer.c:1491
+#: ../panel-plugin/xfcetimer.c:1506
msgid "Xfce4 Timer Options"
msgstr "Alternativ för Xfce4-tidtagare"
-#: ../panel-plugin/xfcetimer.c:1531
+#: ../panel-plugin/xfcetimer.c:1546
msgid "Timer name"
msgstr "Tidtagningsnamn"
-#: ../panel-plugin/xfcetimer.c:1536
+#: ../panel-plugin/xfcetimer.c:1551
msgid ""
"Countdown period /\n"
"Alarm time"
-msgstr "Nedräkningsperiod /\nAlarmtid"
+msgstr ""
+"Nedräkningsperiod /\n"
+"Alarmtid"
-#: ../panel-plugin/xfcetimer.c:1539
+#: ../panel-plugin/xfcetimer.c:1554
msgid "Alarm command"
msgstr "Alarmkommando"
-#: ../panel-plugin/xfcetimer.c:1557
+#: ../panel-plugin/xfcetimer.c:1572
msgid "Add"
msgstr "Lägg till"
-#: ../panel-plugin/xfcetimer.c:1565
+#: ../panel-plugin/xfcetimer.c:1580
msgid "Edit"
msgstr "Redigera"
-#: ../panel-plugin/xfcetimer.c:1573
+#: ../panel-plugin/xfcetimer.c:1588
msgid "Remove"
msgstr "Ta bort"
-#: ../panel-plugin/xfcetimer.c:1581
+#: ../panel-plugin/xfcetimer.c:1596
msgid "Up"
msgstr "Upp"
-#: ../panel-plugin/xfcetimer.c:1588
+#: ../panel-plugin/xfcetimer.c:1603
msgid "Down"
msgstr "Ner"
-#: ../panel-plugin/xfcetimer.c:1604
+#: ../panel-plugin/xfcetimer.c:1619
msgid "Don't display a warning if an alarm command is set"
msgstr "Visa ingen varning om ett alarmkommando är inställt"
-#: ../panel-plugin/xfcetimer.c:1610
-msgid "Selecting a timer starts it"
-msgstr "Att välja en tidtagare startar den"
-
#. Default alarm command config
-#: ../panel-plugin/xfcetimer.c:1623
+#: ../panel-plugin/xfcetimer.c:1631
msgid "Use a default alarm command"
msgstr "Använd ett standardalarmkommando"
-#: ../panel-plugin/xfcetimer.c:1632
+#: ../panel-plugin/xfcetimer.c:1640
msgid "Default command: "
msgstr "Standardkommando:"
#. Alarm repetitions config
-#: ../panel-plugin/xfcetimer.c:1648
+#: ../panel-plugin/xfcetimer.c:1656
msgid "Repeat the alarm command"
msgstr "Upprepa alarmkommandot"
-#: ../panel-plugin/xfcetimer.c:1657
+#: ../panel-plugin/xfcetimer.c:1665
msgid "Number of repetitions"
msgstr "Antal upprepningar"
-#: ../panel-plugin/xfcetimer.c:1666
+#: ../panel-plugin/xfcetimer.c:1674
msgid " Time interval (sec.)"
msgstr " Tidsintervall (s)"
-#: ../panel-plugin/xfcetimer.c:1728
+#: ../panel-plugin/xfcetimer.c:1736
msgid "About xfce4-timer-plugin"
msgstr "Om xfce4-tidtagare-insticksprogram"
-#: ../panel-plugin/xfcetimer.c:1731
+#: ../panel-plugin/xfcetimer.c:1739
msgid "A plugin to define countdown timers or alarms at given times."
-msgstr "Ett insticksprogram för att ställa in nedräkningstidur eller larm vid bestämda tider."
+msgstr ""
+"Ett insticksprogram för att ställa in nedräkningstidur eller larm vid "
+"bestämda tider."
-#: ../panel-plugin/xfcetimer.c:1734
+#: ../panel-plugin/xfcetimer.c:1742
msgid "Copyright (c) 2005-2018\n"
msgstr "Copyright (c) 2005-2018\n"
@@ -230,3 +237,12 @@ msgstr "Xfce4-tidtagare"
#: ../panel-plugin/xfce4-timer-plugin.desktop.in.h:2
msgid "Timer plugin for Xfce panel"
msgstr "Tidtagare för Xfce-panelen"
+
+#~ msgid "Selecting a timer starts it"
+#~ msgstr "Att välja en tidtagare startar den"
+
+#~ msgid "Start timer"
+#~ msgstr "Starta tidtagare"
+
+#~ msgid "Stop the alarm"
+#~ msgstr "Stoppa alarmet"
diff --git a/po/th.po b/po/th.po
index 59e5454..75f62f5 100644
--- a/po/th.po
+++ b/po/th.po
@@ -1,204 +1,248 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
-#
+#
# Translators:
# Theppitak Karoonboonyanan <theppitak at gmail.com>, 2014
msgid ""
msgstr ""
"Project-Id-Version: Xfce Panel Plugins\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-06-05 06:31+0200\n"
+"POT-Creation-Date: 2018-04-21 18:00+0300\n"
"PO-Revision-Date: 2017-09-23 19:10+0000\n"
"Last-Translator: Theppitak Karoonboonyanan <theppitak at gmail.com>\n"
-"Language-Team: Thai (http://www.transifex.com/xfce/xfce-panel-plugins/language/th/)\n"
+"Language-Team: Thai (http://www.transifex.com/xfce/xfce-panel-plugins/"
+"language/th/)\n"
+"Language: th\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: th\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-#: ../src/xfcetimer.c:146
+#: ../panel-plugin/xfcetimer.c:167
#, c-format
msgid "%dh %dm %ds left"
msgstr "อีก %d ชม. %d นาที %d วิ."
-#: ../src/xfcetimer.c:149
+#: ../panel-plugin/xfcetimer.c:170
#, c-format
msgid "%dm %ds left"
msgstr "อีก %d นาที %d วิ."
-#: ../src/xfcetimer.c:151
+#: ../panel-plugin/xfcetimer.c:173
#, c-format
msgid "%ds left"
msgstr "อีก %d วิ."
-#: ../src/xfcetimer.c:154
+#: ../panel-plugin/xfcetimer.c:177
msgid " (Paused)"
msgstr " (หยุดชั่วคราว)"
#. Display the name of the alarm when the countdown ends
-#: ../src/xfcetimer.c:188
+#: ../panel-plugin/xfcetimer.c:213
#, c-format
msgid ""
"Beeep! :) \n"
"Time is up for the alarm %s."
-msgstr "ตู๊ดด..! :) \nได้เวลาสำหรับรายการปลุกเตือน %s แล้ว"
+msgstr ""
+"ตู๊ดด..! :) \n"
+"ได้เวลาสำหรับรายการปลุกเตือน %s แล้ว"
+
+#: ../panel-plugin/xfcetimer.c:221 ../panel-plugin/xfcetimer.c:1508
+msgid "Close"
+msgstr ""
-#: ../src/xfcetimer.c:198
+#: ../panel-plugin/xfcetimer.c:222
msgid "Rerun the timer"
msgstr "เรียกรายการปลุกซ้ำ"
-#: ../src/xfcetimer.c:487
+#: ../panel-plugin/xfcetimer.c:515
+msgid "Pause timer"
+msgstr "หยุดนับเวลาชั่วคราว"
+
+#: ../panel-plugin/xfcetimer.c:523
msgid "Resume timer"
msgstr "นับเวลาต่อ"
-#: ../src/xfcetimer.c:494 ../src/xfcetimer.c:550
+#: ../panel-plugin/xfcetimer.c:534
msgid "Stop timer"
msgstr "หยุดนับเวลา"
-#: ../src/xfcetimer.c:538
-msgid "Pause timer"
-msgstr "หยุดนับเวลาชั่วคราว"
-
-#: ../src/xfcetimer.c:552
-msgid "Start timer"
-msgstr "เริ่มนับเวลา"
-
-#: ../src/xfcetimer.c:561
-msgid "Stop the alarm"
-msgstr "หยุดปลุกเตือน"
-
-#: ../src/xfcetimer.c:618 ../src/xfcetimer.c:689
+#: ../panel-plugin/xfcetimer.c:614 ../panel-plugin/xfcetimer.c:693
#, c-format
msgid "%dh %dm %ds"
msgstr "%d ชม. %d นาที %d วิ."
-#: ../src/xfcetimer.c:620 ../src/xfcetimer.c:691
+#: ../panel-plugin/xfcetimer.c:616 ../panel-plugin/xfcetimer.c:695
#, c-format
msgid "%dm %ds"
msgstr "%d นาที %d วิ."
-#: ../src/xfcetimer.c:622 ../src/xfcetimer.c:693
+#: ../panel-plugin/xfcetimer.c:618 ../panel-plugin/xfcetimer.c:697
#, c-format
msgid "%ds"
msgstr "%d วิ."
-#: ../src/xfcetimer.c:631 ../src/xfcetimer.c:702
+#: ../panel-plugin/xfcetimer.c:626 ../panel-plugin/xfcetimer.c:706
#, c-format
msgid "At %02d:%02d"
msgstr "ณ %02d:%02d"
-#: ../src/xfcetimer.c:801
+#: ../panel-plugin/xfcetimer.c:812
msgid "Name:"
msgstr "ชื่อ:"
-#. ********
-#: ../src/xfcetimer.c:809
+#: ../panel-plugin/xfcetimer.c:821
msgid "Enter the countdown time"
msgstr "ป้อนระยะเวลาที่จะนับถอยหลัง"
-#: ../src/xfcetimer.c:812
+#: ../panel-plugin/xfcetimer.c:826
msgid "Enter the time of alarm (24h format)"
msgstr "ป้อนเวลาที่จะปลุกเตือน (รูปแบบ 24 น.)"
-#: ../src/xfcetimer.c:824
+#: ../panel-plugin/xfcetimer.c:841
msgid "h "
msgstr "ชม. "
-#: ../src/xfcetimer.c:829
+#: ../panel-plugin/xfcetimer.c:848
msgid "m "
msgstr "นาที "
-#: ../src/xfcetimer.c:834
+#: ../panel-plugin/xfcetimer.c:855
msgid "s "
msgstr "วิ. "
-#: ../src/xfcetimer.c:837
+#: ../panel-plugin/xfcetimer.c:859
msgid "or"
msgstr "หรือ"
#. **************
-#: ../src/xfcetimer.c:857
+#: ../panel-plugin/xfcetimer.c:881
msgid "Command to run:"
msgstr "คำสั่งที่จะเรียก:"
-#: ../src/xfcetimer.c:887
+#. **************
+#. add recurring alarm check button
+#: ../panel-plugin/xfcetimer.c:892
+msgid "Recurring alarm"
+msgstr ""
+
+#. add alarm autostart check button
+#: ../panel-plugin/xfcetimer.c:899
+msgid "Auto start when plugin loads"
+msgstr ""
+
+#: ../panel-plugin/xfcetimer.c:909
+msgid "Cancel"
+msgstr ""
+
+#: ../panel-plugin/xfcetimer.c:914
+msgid "Accept"
+msgstr ""
+
+#: ../panel-plugin/xfcetimer.c:925
msgid "Add new alarm"
msgstr "เพิ่มรายการปลุกเตือน"
-#: ../src/xfcetimer.c:924
+#: ../panel-plugin/xfcetimer.c:966
msgid "Edit alarm"
msgstr "แก้ไขรายการปลุกเตือน"
-#: ../src/xfcetimer.c:1495 ../src/xfcetimer.c:1504
+#: ../panel-plugin/xfcetimer.c:1506
msgid "Xfce4 Timer Options"
msgstr "ตัวเลือกของนาฬิกาปลุกของ Xfce4"
-#: ../src/xfcetimer.c:1506
-msgid "Xfce 4 Timer Plugin"
-msgstr "ปลั๊กอินนาฬิกาปลุก Xfce 4"
-
-#: ../src/xfcetimer.c:1552
+#: ../panel-plugin/xfcetimer.c:1546
msgid "Timer name"
msgstr "ชื่อรายการปลุก"
-#: ../src/xfcetimer.c:1557
+#: ../panel-plugin/xfcetimer.c:1551
msgid ""
"Countdown period /\n"
"Alarm time"
-msgstr "ระยะเวลานับถอยหลัง /\nเวลาปลุกเตือน"
+msgstr ""
+"ระยะเวลานับถอยหลัง /\n"
+"เวลาปลุกเตือน"
-#: ../src/xfcetimer.c:1561
+#: ../panel-plugin/xfcetimer.c:1554
msgid "Alarm command"
msgstr "คำสั่งปลุกเตือน"
-#: ../src/xfcetimer.c:1617
+#: ../panel-plugin/xfcetimer.c:1572
+msgid "Add"
+msgstr ""
+
+#: ../panel-plugin/xfcetimer.c:1580
+msgid "Edit"
+msgstr ""
+
+#: ../panel-plugin/xfcetimer.c:1588
+msgid "Remove"
+msgstr ""
+
+#: ../panel-plugin/xfcetimer.c:1596
+msgid "Up"
+msgstr ""
+
+#: ../panel-plugin/xfcetimer.c:1603
+msgid "Down"
+msgstr ""
+
+#: ../panel-plugin/xfcetimer.c:1619
msgid "Don't display a warning if an alarm command is set"
msgstr "ไม่ต้องแสดงคำเตือนถ้ามีการกำหนดคำสั่งปลุกเตือน"
-#: ../src/xfcetimer.c:1622
-msgid "Selecting a timer starts it"
-msgstr "ให้การเลือกรายการปลุกเตือนเป็นการเริ่มทำงานรายการนั้น"
-
#. Default alarm command config
-#: ../src/xfcetimer.c:1630
+#: ../panel-plugin/xfcetimer.c:1631
msgid "Use a default alarm command"
msgstr "ใช้คำสั่งปลุกเตือนปริยาย"
-#: ../src/xfcetimer.c:1637
+#: ../panel-plugin/xfcetimer.c:1640
msgid "Default command: "
msgstr "คำสั่งปริยาย: "
#. Alarm repetitions config
-#: ../src/xfcetimer.c:1649
+#: ../panel-plugin/xfcetimer.c:1656
msgid "Repeat the alarm command"
msgstr "ทำคำสั่งปลุกเตือนซ้ำ"
-#: ../src/xfcetimer.c:1656
+#: ../panel-plugin/xfcetimer.c:1665
msgid "Number of repetitions"
msgstr "จำนวนครั้งที่ซ้ำ"
-#: ../src/xfcetimer.c:1662
+#: ../panel-plugin/xfcetimer.c:1674
msgid " Time interval (sec.)"
msgstr " ระยะเวลา (วิ.)"
-#: ../src/xfcetimer.c:1723
+#: ../panel-plugin/xfcetimer.c:1736
msgid "About xfce4-timer-plugin"
msgstr "เกี่ยวกับ xfce4-timer-plugin"
-#: ../src/xfcetimer.c:1728
+#: ../panel-plugin/xfcetimer.c:1739
msgid "A plugin to define countdown timers or alarms at given times."
msgstr "ปลั๊กอินสำหรับตั้งนาฬิกานับถอยหลังหรือนาฬิกาปลุกตามเวลาที่กำหนด"
-#: ../src/xfcetimer.c:1730
-msgid "Copyright (c) 2005-2013\n"
+#: ../panel-plugin/xfcetimer.c:1742
+#, fuzzy
+msgid "Copyright (c) 2005-2018\n"
msgstr "Copyright (c) 2005-2013\n"
-#: ../src/xfce4-timer.desktop.in.in.h:1
+#: ../panel-plugin/xfce4-timer-plugin.desktop.in.h:1
msgid "Xfce4 Timer"
msgstr "นาฬิกาปลุก Xfce4"
-#: ../src/xfce4-timer.desktop.in.in.h:2
+#: ../panel-plugin/xfce4-timer-plugin.desktop.in.h:2
msgid "Timer plugin for Xfce panel"
msgstr "ปลั๊กอินนาฬิกาปลุกสำหรับพาเนล Xfce"
+
+#~ msgid "Selecting a timer starts it"
+#~ msgstr "ให้การเลือกรายการปลุกเตือนเป็นการเริ่มทำงานรายการนั้น"
+
+#~ msgid "Start timer"
+#~ msgstr "เริ่มนับเวลา"
+
+#~ msgid "Stop the alarm"
+#~ msgstr "หยุดปลุกเตือน"
+
+#~ msgid "Xfce 4 Timer Plugin"
+#~ msgstr "ปลั๊กอินนาฬิกาปลุก Xfce 4"
diff --git a/po/tr.po b/po/tr.po
index 4a4a6b2..eb0b9fa 100644
--- a/po/tr.po
+++ b/po/tr.po
@@ -1,10 +1,10 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
-#
+#
# Translators:
# Gökmen Görgen <gkmngrgn at gmail.com>, 2008
-# Kemal Ilgar Eroglu, 2006
+# Kemal Ilgar Eroğlu <kieroglu at hotmail.com>, 2018
# Necdet Yücel <necdetyucel at gmail.com>, 2013,2018
# Redcode, 2013
# zeki <zeki.ozguryazilim at gmail.com>, 2014
@@ -12,216 +12,223 @@ msgid ""
msgstr ""
"Project-Id-Version: Xfce Panel Plugins\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-01-04 06:32+0100\n"
+"POT-Creation-Date: 2018-04-21 18:00+0300\n"
"PO-Revision-Date: 2018-01-17 00:13+0000\n"
-"Last-Translator: Necdet Yücel <necdetyucel at gmail.com>\n"
-"Language-Team: Turkish (http://www.transifex.com/xfce/xfce-panel-plugins/language/tr/)\n"
+"Last-Translator: Kemal Ilgar Eroğlu <kieroglu at hotmail.com>\n"
+"Language-Team: Turkish (http://www.transifex.com/xfce/xfce-panel-plugins/"
+"language/tr/)\n"
+"Language: tr\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: tr\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
-#: ../panel-plugin/xfcetimer.c:153
+#: ../panel-plugin/xfcetimer.c:167
#, c-format
msgid "%dh %dm %ds left"
msgstr "%dsa %ddk %dsn kaldı"
-#: ../panel-plugin/xfcetimer.c:156
+#: ../panel-plugin/xfcetimer.c:170
#, c-format
msgid "%dm %ds left"
msgstr "%ddk %dsn kaldı"
-#: ../panel-plugin/xfcetimer.c:159
+#: ../panel-plugin/xfcetimer.c:173
#, c-format
msgid "%ds left"
msgstr "%dsn kaldı"
-#: ../panel-plugin/xfcetimer.c:163
+#: ../panel-plugin/xfcetimer.c:177
msgid " (Paused)"
msgstr "(Duraklatıldı)"
-#: ../panel-plugin/xfcetimer.c:198
+#. Display the name of the alarm when the countdown ends
+#: ../panel-plugin/xfcetimer.c:213
#, c-format
msgid ""
"Beeep! :) \n"
"Time is up for the alarm %s."
-msgstr "Beeep! :) \n%s alarmı için zaman geldi."
+msgstr ""
+"Beeep! :) \n"
+"%s alarmı için süre doldu."
-#: ../panel-plugin/xfcetimer.c:210 ../panel-plugin/xfcetimer.c:1493
+#: ../panel-plugin/xfcetimer.c:221 ../panel-plugin/xfcetimer.c:1508
msgid "Close"
msgstr "Kapat"
-#: ../panel-plugin/xfcetimer.c:211
+#: ../panel-plugin/xfcetimer.c:222
msgid "Rerun the timer"
-msgstr "Zamanlayıcıyı yeniden çalıştır"
+msgstr "Alarmı yeniden çalıştır"
+
+#: ../panel-plugin/xfcetimer.c:515
+msgid "Pause timer"
+msgstr "Saati durduraklat"
-#: ../panel-plugin/xfcetimer.c:526
+#: ../panel-plugin/xfcetimer.c:523
msgid "Resume timer"
-msgstr "Zamanlayıcıya devam"
+msgstr "Saati devam ettir"
-#: ../panel-plugin/xfcetimer.c:533 ../panel-plugin/xfcetimer.c:556
+#: ../panel-plugin/xfcetimer.c:534
msgid "Stop timer"
msgstr "Saati durdur"
-#: ../panel-plugin/xfcetimer.c:545
-msgid "Pause timer"
-msgstr "Zamanlayıcıyı durdur"
-
-#: ../panel-plugin/xfcetimer.c:558
-msgid "Start timer"
-msgstr "Saati başlat"
-
-#: ../panel-plugin/xfcetimer.c:568
-msgid "Stop the alarm"
-msgstr "Uyarıyı durdur"
-
-#: ../panel-plugin/xfcetimer.c:622 ../panel-plugin/xfcetimer.c:696
+#: ../panel-plugin/xfcetimer.c:614 ../panel-plugin/xfcetimer.c:693
#, c-format
msgid "%dh %dm %ds"
msgstr "%dsa %ddk %dsn"
-#: ../panel-plugin/xfcetimer.c:624 ../panel-plugin/xfcetimer.c:698
+#: ../panel-plugin/xfcetimer.c:616 ../panel-plugin/xfcetimer.c:695
#, c-format
msgid "%dm %ds"
msgstr "%ddk %dsn"
-#: ../panel-plugin/xfcetimer.c:626 ../panel-plugin/xfcetimer.c:700
+#: ../panel-plugin/xfcetimer.c:618 ../panel-plugin/xfcetimer.c:697
#, c-format
msgid "%ds"
msgstr "%dsn"
-#: ../panel-plugin/xfcetimer.c:634 ../panel-plugin/xfcetimer.c:709
+#: ../panel-plugin/xfcetimer.c:626 ../panel-plugin/xfcetimer.c:706
#, c-format
msgid "At %02d:%02d"
msgstr "Alarm saati: %02d:%02d"
-#: ../panel-plugin/xfcetimer.c:815
+#: ../panel-plugin/xfcetimer.c:812
msgid "Name:"
msgstr "İsim:"
-#: ../panel-plugin/xfcetimer.c:824
+#: ../panel-plugin/xfcetimer.c:821
msgid "Enter the countdown time"
msgstr "Gerisayım süresini giriniz"
-#: ../panel-plugin/xfcetimer.c:829
+#: ../panel-plugin/xfcetimer.c:826
msgid "Enter the time of alarm (24h format)"
msgstr "Alarm satini giriniz (24 saat formatında)"
-#: ../panel-plugin/xfcetimer.c:844
+#: ../panel-plugin/xfcetimer.c:841
msgid "h "
msgstr "sa "
-#: ../panel-plugin/xfcetimer.c:851
+#: ../panel-plugin/xfcetimer.c:848
msgid "m "
msgstr "dk "
-#: ../panel-plugin/xfcetimer.c:858
+#: ../panel-plugin/xfcetimer.c:855
msgid "s "
msgstr "sn "
-#: ../panel-plugin/xfcetimer.c:862
+#: ../panel-plugin/xfcetimer.c:859
msgid "or"
msgstr "veya"
#. **************
-#: ../panel-plugin/xfcetimer.c:884
+#: ../panel-plugin/xfcetimer.c:881
msgid "Command to run:"
msgstr "Çalıştırılacak komut:"
-#: ../panel-plugin/xfcetimer.c:898
+#. **************
+#. add recurring alarm check button
+#: ../panel-plugin/xfcetimer.c:892
+msgid "Recurring alarm"
+msgstr "Yinelenen alarm"
+
+#. add alarm autostart check button
+#: ../panel-plugin/xfcetimer.c:899
+msgid "Auto start when plugin loads"
+msgstr "Eklenti yüklenince kendiliğinden başlat"
+
+#: ../panel-plugin/xfcetimer.c:909
msgid "Cancel"
msgstr "İptal"
-#: ../panel-plugin/xfcetimer.c:903
+#: ../panel-plugin/xfcetimer.c:914
msgid "Accept"
-msgstr "Kabul"
+msgstr "Kabul et"
-#: ../panel-plugin/xfcetimer.c:914
+#: ../panel-plugin/xfcetimer.c:925
msgid "Add new alarm"
msgstr "Yeni alarm ekle"
-#: ../panel-plugin/xfcetimer.c:951
+#: ../panel-plugin/xfcetimer.c:966
msgid "Edit alarm"
msgstr "Alarmı düzenle"
-#: ../panel-plugin/xfcetimer.c:1491
+#: ../panel-plugin/xfcetimer.c:1506
msgid "Xfce4 Timer Options"
msgstr "XFCE4 Timer Özellikleri"
-#: ../panel-plugin/xfcetimer.c:1531
+#: ../panel-plugin/xfcetimer.c:1546
msgid "Timer name"
-msgstr "Zamanlayıcı ismi"
+msgstr "Alarmın ismi"
-#: ../panel-plugin/xfcetimer.c:1536
+#: ../panel-plugin/xfcetimer.c:1551
msgid ""
"Countdown period /\n"
"Alarm time"
-msgstr "Gerisayım süresi /\nAlarm saati"
+msgstr ""
+"Gerisayım süresi /\n"
+"Alarm saati"
-#: ../panel-plugin/xfcetimer.c:1539
+#: ../panel-plugin/xfcetimer.c:1554
msgid "Alarm command"
msgstr "Alarm komutu"
-#: ../panel-plugin/xfcetimer.c:1557
+#: ../panel-plugin/xfcetimer.c:1572
msgid "Add"
msgstr "Ekle"
-#: ../panel-plugin/xfcetimer.c:1565
+#: ../panel-plugin/xfcetimer.c:1580
msgid "Edit"
msgstr "Düzenle"
-#: ../panel-plugin/xfcetimer.c:1573
+#: ../panel-plugin/xfcetimer.c:1588
msgid "Remove"
msgstr "Sil"
-#: ../panel-plugin/xfcetimer.c:1581
+#: ../panel-plugin/xfcetimer.c:1596
msgid "Up"
msgstr "Yukarı"
-#: ../panel-plugin/xfcetimer.c:1588
+#: ../panel-plugin/xfcetimer.c:1603
msgid "Down"
msgstr "Aşağı"
-#: ../panel-plugin/xfcetimer.c:1604
+#: ../panel-plugin/xfcetimer.c:1619
msgid "Don't display a warning if an alarm command is set"
-msgstr "Bir uyarı gösterme bir alarm komutu atanmışsa"
-
-#: ../panel-plugin/xfcetimer.c:1610
-msgid "Selecting a timer starts it"
-msgstr "Onunla başlayan bir zamanlayıcı seçiliyor"
+msgstr "Alarm komutu atanmışsa uyarı penceresi gösterme"
#. Default alarm command config
-#: ../panel-plugin/xfcetimer.c:1623
+#: ../panel-plugin/xfcetimer.c:1631
msgid "Use a default alarm command"
msgstr "Bir varsayılan alarm komutu kullan"
-#: ../panel-plugin/xfcetimer.c:1632
+#: ../panel-plugin/xfcetimer.c:1640
msgid "Default command: "
msgstr "Varsayılan komut:"
#. Alarm repetitions config
-#: ../panel-plugin/xfcetimer.c:1648
+#: ../panel-plugin/xfcetimer.c:1656
msgid "Repeat the alarm command"
-msgstr "Alarm komutunu tekrarla"
+msgstr "Alarm komutunu yinele"
-#: ../panel-plugin/xfcetimer.c:1657
+#: ../panel-plugin/xfcetimer.c:1665
msgid "Number of repetitions"
-msgstr "Yinelemelerin sayısı"
+msgstr "Yineleme sayısı"
-#: ../panel-plugin/xfcetimer.c:1666
+#: ../panel-plugin/xfcetimer.c:1674
msgid " Time interval (sec.)"
msgstr " Zaman aralığı (saniye)"
-#: ../panel-plugin/xfcetimer.c:1728
+#: ../panel-plugin/xfcetimer.c:1736
msgid "About xfce4-timer-plugin"
msgstr "Xfce4-timer-plugin hakkında"
-#: ../panel-plugin/xfcetimer.c:1731
+#: ../panel-plugin/xfcetimer.c:1739
msgid "A plugin to define countdown timers or alarms at given times."
-msgstr "Geriye sayan zamanlayıcılar veya zamanlı alarmlar tanımlamak için bir eklenti."
+msgstr ""
+"Geriye sayan zamanlayıcılar veya zamanlı alarmlar tanımlamak için bir "
+"eklenti."
-#: ../panel-plugin/xfcetimer.c:1734
+#: ../panel-plugin/xfcetimer.c:1742
msgid "Copyright (c) 2005-2018\n"
msgstr "Telif Hakkı (c) 2005-2018\n"
@@ -232,3 +239,15 @@ msgstr "XFCE4 Alarm Eklentisi -- XFCE4 Timer"
#: ../panel-plugin/xfce4-timer-plugin.desktop.in.h:2
msgid "Timer plugin for Xfce panel"
msgstr "XFCE paneli için alarm eklentisi"
+
+#~ msgid "Auto start"
+#~ msgstr "Eklenti yüklenince kendiliğinden başla"
+
+#~ msgid "Selecting a timer starts it"
+#~ msgstr "Alarmı seçmek süreyi başlatsın"
+
+#~ msgid "Start timer"
+#~ msgstr "Saati başlat"
+
+#~ msgid "Stop the alarm"
+#~ msgstr "Uyarıyı durdur"
diff --git a/po/ug.po b/po/ug.po
index 836f8c6..62cb761 100644
--- a/po/ug.po
+++ b/po/ug.po
@@ -1,204 +1,239 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
-#
+#
# Translators:
# Gheyret T.Kenji <gheyret at gmail.com>, 2010
msgid ""
msgstr ""
"Project-Id-Version: Xfce Panel Plugins\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-06-05 06:31+0200\n"
+"POT-Creation-Date: 2018-04-21 18:00+0300\n"
"PO-Revision-Date: 2017-09-23 19:03+0000\n"
"Last-Translator: Xfce Bot <transifex at xfce.org>\n"
-"Language-Team: Uighur (http://www.transifex.com/xfce/xfce-panel-plugins/language/ug/)\n"
+"Language-Team: Uighur (http://www.transifex.com/xfce/xfce-panel-plugins/"
+"language/ug/)\n"
+"Language: ug\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: ug\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-#: ../src/xfcetimer.c:146
+#: ../panel-plugin/xfcetimer.c:167
#, c-format
msgid "%dh %dm %ds left"
msgstr "%d سائەت %d مىنۇت %d سېكۇنت قالدى"
-#: ../src/xfcetimer.c:149
+#: ../panel-plugin/xfcetimer.c:170
#, c-format
msgid "%dm %ds left"
msgstr "%d مىنۇت %d سېكۇنت قالدى"
-#: ../src/xfcetimer.c:151
+#: ../panel-plugin/xfcetimer.c:173
#, c-format
msgid "%ds left"
msgstr "%d سېكۇنت قالدى"
-#: ../src/xfcetimer.c:154
+#: ../panel-plugin/xfcetimer.c:177
msgid " (Paused)"
msgstr ""
#. Display the name of the alarm when the countdown ends
-#: ../src/xfcetimer.c:188
+#: ../panel-plugin/xfcetimer.c:213
#, c-format
msgid ""
"Beeep! :) \n"
"Time is up for the alarm %s."
msgstr ""
-#: ../src/xfcetimer.c:198
-msgid "Rerun the timer"
+#: ../panel-plugin/xfcetimer.c:221 ../panel-plugin/xfcetimer.c:1508
+msgid "Close"
msgstr ""
-#: ../src/xfcetimer.c:487
-msgid "Resume timer"
+#: ../panel-plugin/xfcetimer.c:222
+msgid "Rerun the timer"
msgstr ""
-#: ../src/xfcetimer.c:494 ../src/xfcetimer.c:550
-msgid "Stop timer"
-msgstr "ۋاقىت ئۆلچىگۈچنى توختات"
-
-#: ../src/xfcetimer.c:538
+#: ../panel-plugin/xfcetimer.c:515
msgid "Pause timer"
msgstr ""
-#: ../src/xfcetimer.c:552
-msgid "Start timer"
-msgstr "ۋاقىت ئۆلچىگۈچنى باشلا"
+#: ../panel-plugin/xfcetimer.c:523
+msgid "Resume timer"
+msgstr ""
-#: ../src/xfcetimer.c:561
-msgid "Stop the alarm"
-msgstr "قوڭغۇراقنى توختات"
+#: ../panel-plugin/xfcetimer.c:534
+msgid "Stop timer"
+msgstr "ۋاقىت ئۆلچىگۈچنى توختات"
-#: ../src/xfcetimer.c:618 ../src/xfcetimer.c:689
+#: ../panel-plugin/xfcetimer.c:614 ../panel-plugin/xfcetimer.c:693
#, c-format
msgid "%dh %dm %ds"
msgstr "%d سائەت %d مىنۇت %d سېكۇنت"
-#: ../src/xfcetimer.c:620 ../src/xfcetimer.c:691
+#: ../panel-plugin/xfcetimer.c:616 ../panel-plugin/xfcetimer.c:695
#, c-format
msgid "%dm %ds"
msgstr "%d مىنۇت %d سېكۇنت"
-#: ../src/xfcetimer.c:622 ../src/xfcetimer.c:693
+#: ../panel-plugin/xfcetimer.c:618 ../panel-plugin/xfcetimer.c:697
#, c-format
msgid "%ds"
msgstr "%d سېكۇنت"
-#: ../src/xfcetimer.c:631 ../src/xfcetimer.c:702
+#: ../panel-plugin/xfcetimer.c:626 ../panel-plugin/xfcetimer.c:706
#, c-format
msgid "At %02d:%02d"
msgstr "%02d:%02d دە"
-#: ../src/xfcetimer.c:801
+#: ../panel-plugin/xfcetimer.c:812
msgid "Name:"
msgstr "ئاتى:"
-#. ********
-#: ../src/xfcetimer.c:809
+#: ../panel-plugin/xfcetimer.c:821
msgid "Enter the countdown time"
msgstr "تەتۈر ساناش ۋاقتىنى كىرگۈزۈڭ"
-#: ../src/xfcetimer.c:812
+#: ../panel-plugin/xfcetimer.c:826
msgid "Enter the time of alarm (24h format)"
msgstr "قوڭغۇراق چېلىش ۋاقتىنى كىرگۈزۈڭ (24 پىچىمىدا)"
-#: ../src/xfcetimer.c:824
+#: ../panel-plugin/xfcetimer.c:841
msgid "h "
msgstr "h "
-#: ../src/xfcetimer.c:829
+#: ../panel-plugin/xfcetimer.c:848
msgid "m "
msgstr "m "
-#: ../src/xfcetimer.c:834
+#: ../panel-plugin/xfcetimer.c:855
msgid "s "
msgstr "s "
-#: ../src/xfcetimer.c:837
+#: ../panel-plugin/xfcetimer.c:859
msgid "or"
msgstr ""
#. **************
-#: ../src/xfcetimer.c:857
+#: ../panel-plugin/xfcetimer.c:881
msgid "Command to run:"
msgstr ""
-#: ../src/xfcetimer.c:887
+#. **************
+#. add recurring alarm check button
+#: ../panel-plugin/xfcetimer.c:892
+msgid "Recurring alarm"
+msgstr ""
+
+#. add alarm autostart check button
+#: ../panel-plugin/xfcetimer.c:899
+msgid "Auto start when plugin loads"
+msgstr ""
+
+#: ../panel-plugin/xfcetimer.c:909
+msgid "Cancel"
+msgstr ""
+
+#: ../panel-plugin/xfcetimer.c:914
+msgid "Accept"
+msgstr ""
+
+#: ../panel-plugin/xfcetimer.c:925
msgid "Add new alarm"
msgstr "يېڭى قوڭغۇراق قوش"
-#: ../src/xfcetimer.c:924
+#: ../panel-plugin/xfcetimer.c:966
msgid "Edit alarm"
msgstr "قوڭغۇراق تەھرىرلە"
-#: ../src/xfcetimer.c:1495 ../src/xfcetimer.c:1504
+#: ../panel-plugin/xfcetimer.c:1506
msgid "Xfce4 Timer Options"
msgstr "Xfce4 ۋاقىت ئۆلچىگۈچ تاللانمىسى"
-#: ../src/xfcetimer.c:1506
-msgid "Xfce 4 Timer Plugin"
-msgstr ""
-
-#: ../src/xfcetimer.c:1552
+#: ../panel-plugin/xfcetimer.c:1546
msgid "Timer name"
msgstr ""
-#: ../src/xfcetimer.c:1557
+#: ../panel-plugin/xfcetimer.c:1551
msgid ""
"Countdown period /\n"
"Alarm time"
-msgstr "تەتۈر ساناش ۋاقتى/\nقوڭغۇراق ۋاقتى"
+msgstr ""
+"تەتۈر ساناش ۋاقتى/\n"
+"قوڭغۇراق ۋاقتى"
-#: ../src/xfcetimer.c:1561
+#: ../panel-plugin/xfcetimer.c:1554
msgid "Alarm command"
msgstr "قوڭغۇراق بۇيرۇقى"
-#: ../src/xfcetimer.c:1617
-msgid "Don't display a warning if an alarm command is set"
+#: ../panel-plugin/xfcetimer.c:1572
+msgid "Add"
+msgstr ""
+
+#: ../panel-plugin/xfcetimer.c:1580
+msgid "Edit"
msgstr ""
-#: ../src/xfcetimer.c:1622
-msgid "Selecting a timer starts it"
+#: ../panel-plugin/xfcetimer.c:1588
+msgid "Remove"
+msgstr ""
+
+#: ../panel-plugin/xfcetimer.c:1596
+msgid "Up"
+msgstr ""
+
+#: ../panel-plugin/xfcetimer.c:1603
+msgid "Down"
+msgstr ""
+
+#: ../panel-plugin/xfcetimer.c:1619
+msgid "Don't display a warning if an alarm command is set"
msgstr ""
#. Default alarm command config
-#: ../src/xfcetimer.c:1630
+#: ../panel-plugin/xfcetimer.c:1631
msgid "Use a default alarm command"
msgstr ""
-#: ../src/xfcetimer.c:1637
+#: ../panel-plugin/xfcetimer.c:1640
msgid "Default command: "
msgstr ""
#. Alarm repetitions config
-#: ../src/xfcetimer.c:1649
+#: ../panel-plugin/xfcetimer.c:1656
msgid "Repeat the alarm command"
msgstr ""
-#: ../src/xfcetimer.c:1656
+#: ../panel-plugin/xfcetimer.c:1665
msgid "Number of repetitions"
msgstr "تەكرارلىنىش ۋاقتى"
-#: ../src/xfcetimer.c:1662
+#: ../panel-plugin/xfcetimer.c:1674
msgid " Time interval (sec.)"
msgstr " ۋاقىت ئىنتېرۋالى(سېكۇنت.)"
-#: ../src/xfcetimer.c:1723
+#: ../panel-plugin/xfcetimer.c:1736
msgid "About xfce4-timer-plugin"
msgstr ""
-#: ../src/xfcetimer.c:1728
+#: ../panel-plugin/xfcetimer.c:1739
msgid "A plugin to define countdown timers or alarms at given times."
msgstr ""
-#: ../src/xfcetimer.c:1730
-msgid "Copyright (c) 2005-2013\n"
+#: ../panel-plugin/xfcetimer.c:1742
+msgid "Copyright (c) 2005-2018\n"
msgstr ""
-#: ../src/xfce4-timer.desktop.in.in.h:1
+#: ../panel-plugin/xfce4-timer-plugin.desktop.in.h:1
msgid "Xfce4 Timer"
msgstr "Xfce4 ۋاقىت ئۆلچىگۈچى"
-#: ../src/xfce4-timer.desktop.in.in.h:2
+#: ../panel-plugin/xfce4-timer-plugin.desktop.in.h:2
msgid "Timer plugin for Xfce panel"
msgstr "Xfce نىڭ ۋاقىت ئۆلچىگۈچ قىستۇرمىسى"
+
+#~ msgid "Start timer"
+#~ msgstr "ۋاقىت ئۆلچىگۈچنى باشلا"
+
+#~ msgid "Stop the alarm"
+#~ msgstr "قوڭغۇراقنى توختات"
diff --git a/po/uk.po b/po/uk.po
index 6926ac5..cc02133 100644
--- a/po/uk.po
+++ b/po/uk.po
@@ -1,7 +1,7 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
-#
+#
# Translators:
# Dmitry Nikitin <luckas_fb at mail.ru>, 2008
# Yarema aka Knedlyk <yupadmin at gmail.com>, 2013-2014,2018
@@ -9,216 +9,223 @@ msgid ""
msgstr ""
"Project-Id-Version: Xfce Panel Plugins\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-01-04 06:32+0100\n"
+"POT-Creation-Date: 2018-04-21 18:00+0300\n"
"PO-Revision-Date: 2018-01-15 16:54+0000\n"
"Last-Translator: Yarema aka Knedlyk <yupadmin at gmail.com>\n"
-"Language-Team: Ukrainian (http://www.transifex.com/xfce/xfce-panel-plugins/language/uk/)\n"
+"Language-Team: Ukrainian (http://www.transifex.com/xfce/xfce-panel-plugins/"
+"language/uk/)\n"
+"Language: uk\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: uk\n"
-"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
+"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
-#: ../panel-plugin/xfcetimer.c:153
+#: ../panel-plugin/xfcetimer.c:167
#, c-format
msgid "%dh %dm %ds left"
msgstr "залишилось %dг %dх %dс"
-#: ../panel-plugin/xfcetimer.c:156
+#: ../panel-plugin/xfcetimer.c:170
#, c-format
msgid "%dm %ds left"
msgstr "залишилось %dх %dс"
-#: ../panel-plugin/xfcetimer.c:159
+#: ../panel-plugin/xfcetimer.c:173
#, c-format
msgid "%ds left"
msgstr "залишилось %dс"
-#: ../panel-plugin/xfcetimer.c:163
+#: ../panel-plugin/xfcetimer.c:177
msgid " (Paused)"
msgstr "(Призупинено)"
-#: ../panel-plugin/xfcetimer.c:198
+#. Display the name of the alarm when the countdown ends
+#: ../panel-plugin/xfcetimer.c:213
#, c-format
msgid ""
"Beeep! :) \n"
"Time is up for the alarm %s."
-msgstr "Все-е-е! :) \nЧас для будильника %s."
+msgstr ""
+"Все-е-е! :) \n"
+"Час для будильника %s."
-#: ../panel-plugin/xfcetimer.c:210 ../panel-plugin/xfcetimer.c:1493
+#: ../panel-plugin/xfcetimer.c:221 ../panel-plugin/xfcetimer.c:1508
msgid "Close"
msgstr "Закрити"
-#: ../panel-plugin/xfcetimer.c:211
+#: ../panel-plugin/xfcetimer.c:222
msgid "Rerun the timer"
msgstr "Перезапустити таймер"
-#: ../panel-plugin/xfcetimer.c:526
+#: ../panel-plugin/xfcetimer.c:515
+msgid "Pause timer"
+msgstr "Призупинити таймер"
+
+#: ../panel-plugin/xfcetimer.c:523
msgid "Resume timer"
msgstr "Відновити таймер"
-#: ../panel-plugin/xfcetimer.c:533 ../panel-plugin/xfcetimer.c:556
+#: ../panel-plugin/xfcetimer.c:534
msgid "Stop timer"
msgstr "Зупинити таймер"
-#: ../panel-plugin/xfcetimer.c:545
-msgid "Pause timer"
-msgstr "Призупинити таймер"
-
-#: ../panel-plugin/xfcetimer.c:558
-msgid "Start timer"
-msgstr "Запустити таймер"
-
-#: ../panel-plugin/xfcetimer.c:568
-msgid "Stop the alarm"
-msgstr "Зупинити сигнал"
-
-#: ../panel-plugin/xfcetimer.c:622 ../panel-plugin/xfcetimer.c:696
+#: ../panel-plugin/xfcetimer.c:614 ../panel-plugin/xfcetimer.c:693
#, c-format
msgid "%dh %dm %ds"
msgstr "%dг %dх %dс"
-#: ../panel-plugin/xfcetimer.c:624 ../panel-plugin/xfcetimer.c:698
+#: ../panel-plugin/xfcetimer.c:616 ../panel-plugin/xfcetimer.c:695
#, c-format
msgid "%dm %ds"
msgstr "%dх %dс"
-#: ../panel-plugin/xfcetimer.c:626 ../panel-plugin/xfcetimer.c:700
+#: ../panel-plugin/xfcetimer.c:618 ../panel-plugin/xfcetimer.c:697
#, c-format
msgid "%ds"
msgstr "%dс"
-#: ../panel-plugin/xfcetimer.c:634 ../panel-plugin/xfcetimer.c:709
+#: ../panel-plugin/xfcetimer.c:626 ../panel-plugin/xfcetimer.c:706
#, c-format
msgid "At %02d:%02d"
msgstr "В %02d:%02d"
-#: ../panel-plugin/xfcetimer.c:815
+#: ../panel-plugin/xfcetimer.c:812
msgid "Name:"
msgstr "Назва:"
-#: ../panel-plugin/xfcetimer.c:824
+#: ../panel-plugin/xfcetimer.c:821
msgid "Enter the countdown time"
msgstr "Введіть час зворотного відліку"
-#: ../panel-plugin/xfcetimer.c:829
+#: ../panel-plugin/xfcetimer.c:826
msgid "Enter the time of alarm (24h format)"
msgstr "Введіть час спрацьовування сигналу (в форматі 24 годин)"
-#: ../panel-plugin/xfcetimer.c:844
+#: ../panel-plugin/xfcetimer.c:841
msgid "h "
msgstr "г "
-#: ../panel-plugin/xfcetimer.c:851
+#: ../panel-plugin/xfcetimer.c:848
msgid "m "
msgstr "х "
-#: ../panel-plugin/xfcetimer.c:858
+#: ../panel-plugin/xfcetimer.c:855
msgid "s "
msgstr "с "
-#: ../panel-plugin/xfcetimer.c:862
+#: ../panel-plugin/xfcetimer.c:859
msgid "or"
msgstr "або"
#. **************
-#: ../panel-plugin/xfcetimer.c:884
+#: ../panel-plugin/xfcetimer.c:881
msgid "Command to run:"
msgstr "Команда для запуску:"
-#: ../panel-plugin/xfcetimer.c:898
+#. **************
+#. add recurring alarm check button
+#: ../panel-plugin/xfcetimer.c:892
+msgid "Recurring alarm"
+msgstr ""
+
+#. add alarm autostart check button
+#: ../panel-plugin/xfcetimer.c:899
+msgid "Auto start when plugin loads"
+msgstr ""
+
+#: ../panel-plugin/xfcetimer.c:909
msgid "Cancel"
msgstr "Відмінити"
-#: ../panel-plugin/xfcetimer.c:903
+#: ../panel-plugin/xfcetimer.c:914
msgid "Accept"
msgstr "Прийняти"
-#: ../panel-plugin/xfcetimer.c:914
+#: ../panel-plugin/xfcetimer.c:925
msgid "Add new alarm"
msgstr "Додати новий сигнал"
-#: ../panel-plugin/xfcetimer.c:951
+#: ../panel-plugin/xfcetimer.c:966
msgid "Edit alarm"
msgstr "Редагувати сигнал"
-#: ../panel-plugin/xfcetimer.c:1491
+#: ../panel-plugin/xfcetimer.c:1506
msgid "Xfce4 Timer Options"
msgstr "Опції таймеру Xfce4"
-#: ../panel-plugin/xfcetimer.c:1531
+#: ../panel-plugin/xfcetimer.c:1546
msgid "Timer name"
msgstr "Назва таймера"
-#: ../panel-plugin/xfcetimer.c:1536
+#: ../panel-plugin/xfcetimer.c:1551
msgid ""
"Countdown period /\n"
"Alarm time"
-msgstr "Період зворотного відліку /\nЧас сигналу"
+msgstr ""
+"Період зворотного відліку /\n"
+"Час сигналу"
-#: ../panel-plugin/xfcetimer.c:1539
+#: ../panel-plugin/xfcetimer.c:1554
msgid "Alarm command"
msgstr "Команда сигналу"
-#: ../panel-plugin/xfcetimer.c:1557
+#: ../panel-plugin/xfcetimer.c:1572
msgid "Add"
msgstr "Додати"
-#: ../panel-plugin/xfcetimer.c:1565
+#: ../panel-plugin/xfcetimer.c:1580
msgid "Edit"
msgstr "Змінити"
-#: ../panel-plugin/xfcetimer.c:1573
+#: ../panel-plugin/xfcetimer.c:1588
msgid "Remove"
msgstr "Вилучити"
-#: ../panel-plugin/xfcetimer.c:1581
+#: ../panel-plugin/xfcetimer.c:1596
msgid "Up"
msgstr "Вгору"
-#: ../panel-plugin/xfcetimer.c:1588
+#: ../panel-plugin/xfcetimer.c:1603
msgid "Down"
msgstr "Вниз"
-#: ../panel-plugin/xfcetimer.c:1604
+#: ../panel-plugin/xfcetimer.c:1619
msgid "Don't display a warning if an alarm command is set"
msgstr "Не показувати попередження, якщо встановлено команду будильника"
-#: ../panel-plugin/xfcetimer.c:1610
-msgid "Selecting a timer starts it"
-msgstr "Показати таймер, що запускає це"
-
#. Default alarm command config
-#: ../panel-plugin/xfcetimer.c:1623
+#: ../panel-plugin/xfcetimer.c:1631
msgid "Use a default alarm command"
msgstr "Використання типової команди будильника"
-#: ../panel-plugin/xfcetimer.c:1632
+#: ../panel-plugin/xfcetimer.c:1640
msgid "Default command: "
msgstr "Типова команда:"
#. Alarm repetitions config
-#: ../panel-plugin/xfcetimer.c:1648
+#: ../panel-plugin/xfcetimer.c:1656
msgid "Repeat the alarm command"
msgstr "Повторення команди будильника"
-#: ../panel-plugin/xfcetimer.c:1657
+#: ../panel-plugin/xfcetimer.c:1665
msgid "Number of repetitions"
msgstr "Кількість повторів"
-#: ../panel-plugin/xfcetimer.c:1666
+#: ../panel-plugin/xfcetimer.c:1674
msgid " Time interval (sec.)"
msgstr " Інтервал часу (сек.)"
-#: ../panel-plugin/xfcetimer.c:1728
+#: ../panel-plugin/xfcetimer.c:1736
msgid "About xfce4-timer-plugin"
msgstr "Про xfce4-timer-plugin"
-#: ../panel-plugin/xfcetimer.c:1731
+#: ../panel-plugin/xfcetimer.c:1739
msgid "A plugin to define countdown timers or alarms at given times."
-msgstr "Додаток, що визначає таймер зворотного відліку або будильник в заданий час."
+msgstr ""
+"Додаток, що визначає таймер зворотного відліку або будильник в заданий час."
-#: ../panel-plugin/xfcetimer.c:1734
+#: ../panel-plugin/xfcetimer.c:1742
msgid "Copyright (c) 2005-2018\n"
msgstr "Всі права застережено (c) 2005-2018\n"
@@ -229,3 +236,12 @@ msgstr "Таймер Xfce4"
#: ../panel-plugin/xfce4-timer-plugin.desktop.in.h:2
msgid "Timer plugin for Xfce panel"
msgstr "Плагін Таймер для панелі Xfce"
+
+#~ msgid "Selecting a timer starts it"
+#~ msgstr "Показати таймер, що запускає це"
+
+#~ msgid "Start timer"
+#~ msgstr "Запустити таймер"
+
+#~ msgid "Stop the alarm"
+#~ msgstr "Зупинити сигнал"
diff --git a/po/ur.po b/po/ur.po
index 4608924..a143b55 100644
--- a/po/ur.po
+++ b/po/ur.po
@@ -1,203 +1,238 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
-#
+#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: Xfce Panel Plugins\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-06-05 06:31+0200\n"
+"POT-Creation-Date: 2018-04-21 18:00+0300\n"
"PO-Revision-Date: 2017-09-19 18:06+0000\n"
"Last-Translator: Xfce Bot <transifex at xfce.org>\n"
-"Language-Team: Urdu (http://www.transifex.com/xfce/xfce-panel-plugins/language/ur/)\n"
+"Language-Team: Urdu (http://www.transifex.com/xfce/xfce-panel-plugins/"
+"language/ur/)\n"
+"Language: ur\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: ur\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: ../src/xfcetimer.c:146
+#: ../panel-plugin/xfcetimer.c:167
#, c-format
msgid "%dh %dm %ds left"
msgstr "%dh %dm %ds باقی ہے"
-#: ../src/xfcetimer.c:149
+#: ../panel-plugin/xfcetimer.c:170
#, c-format
msgid "%dm %ds left"
msgstr "%dm %ds باقی ہے"
-#: ../src/xfcetimer.c:151
+#: ../panel-plugin/xfcetimer.c:173
#, c-format
msgid "%ds left"
msgstr "%ds باقی ہے"
-#: ../src/xfcetimer.c:154
+#: ../panel-plugin/xfcetimer.c:177
msgid " (Paused)"
msgstr ""
#. Display the name of the alarm when the countdown ends
-#: ../src/xfcetimer.c:188
+#: ../panel-plugin/xfcetimer.c:213
#, c-format
msgid ""
"Beeep! :) \n"
"Time is up for the alarm %s."
msgstr ""
-#: ../src/xfcetimer.c:198
-msgid "Rerun the timer"
+#: ../panel-plugin/xfcetimer.c:221 ../panel-plugin/xfcetimer.c:1508
+msgid "Close"
msgstr ""
-#: ../src/xfcetimer.c:487
-msgid "Resume timer"
+#: ../panel-plugin/xfcetimer.c:222
+msgid "Rerun the timer"
msgstr ""
-#: ../src/xfcetimer.c:494 ../src/xfcetimer.c:550
-msgid "Stop timer"
-msgstr "ٹائمر روکیں"
-
-#: ../src/xfcetimer.c:538
+#: ../panel-plugin/xfcetimer.c:515
msgid "Pause timer"
msgstr ""
-#: ../src/xfcetimer.c:552
-msgid "Start timer"
-msgstr "ٹائمر شروع کریں"
+#: ../panel-plugin/xfcetimer.c:523
+msgid "Resume timer"
+msgstr ""
-#: ../src/xfcetimer.c:561
-msgid "Stop the alarm"
-msgstr "الارم بند کریں"
+#: ../panel-plugin/xfcetimer.c:534
+msgid "Stop timer"
+msgstr "ٹائمر روکیں"
-#: ../src/xfcetimer.c:618 ../src/xfcetimer.c:689
+#: ../panel-plugin/xfcetimer.c:614 ../panel-plugin/xfcetimer.c:693
#, c-format
msgid "%dh %dm %ds"
msgstr "%dh %dm %ds"
-#: ../src/xfcetimer.c:620 ../src/xfcetimer.c:691
+#: ../panel-plugin/xfcetimer.c:616 ../panel-plugin/xfcetimer.c:695
#, c-format
msgid "%dm %ds"
msgstr "%dm %ds"
-#: ../src/xfcetimer.c:622 ../src/xfcetimer.c:693
+#: ../panel-plugin/xfcetimer.c:618 ../panel-plugin/xfcetimer.c:697
#, c-format
msgid "%ds"
msgstr "%ds"
-#: ../src/xfcetimer.c:631 ../src/xfcetimer.c:702
+#: ../panel-plugin/xfcetimer.c:626 ../panel-plugin/xfcetimer.c:706
#, c-format
msgid "At %02d:%02d"
msgstr "پر %02d:%02d"
-#: ../src/xfcetimer.c:801
+#: ../panel-plugin/xfcetimer.c:812
msgid "Name:"
msgstr "نام:"
-#. ********
-#: ../src/xfcetimer.c:809
+#: ../panel-plugin/xfcetimer.c:821
msgid "Enter the countdown time"
msgstr "تنزلی وقت لکھیں"
-#: ../src/xfcetimer.c:812
+#: ../panel-plugin/xfcetimer.c:826
msgid "Enter the time of alarm (24h format)"
msgstr "الارم کا وقت لکھیں (24گ فارمیٹ)"
-#: ../src/xfcetimer.c:824
+#: ../panel-plugin/xfcetimer.c:841
msgid "h "
msgstr "گ"
-#: ../src/xfcetimer.c:829
+#: ../panel-plugin/xfcetimer.c:848
msgid "m "
msgstr "م"
-#: ../src/xfcetimer.c:834
+#: ../panel-plugin/xfcetimer.c:855
msgid "s "
msgstr "س"
-#: ../src/xfcetimer.c:837
+#: ../panel-plugin/xfcetimer.c:859
msgid "or"
msgstr ""
#. **************
-#: ../src/xfcetimer.c:857
+#: ../panel-plugin/xfcetimer.c:881
msgid "Command to run:"
msgstr ""
-#: ../src/xfcetimer.c:887
+#. **************
+#. add recurring alarm check button
+#: ../panel-plugin/xfcetimer.c:892
+msgid "Recurring alarm"
+msgstr ""
+
+#. add alarm autostart check button
+#: ../panel-plugin/xfcetimer.c:899
+msgid "Auto start when plugin loads"
+msgstr ""
+
+#: ../panel-plugin/xfcetimer.c:909
+msgid "Cancel"
+msgstr ""
+
+#: ../panel-plugin/xfcetimer.c:914
+msgid "Accept"
+msgstr ""
+
+#: ../panel-plugin/xfcetimer.c:925
msgid "Add new alarm"
msgstr "نیا الارم شامل کریں"
-#: ../src/xfcetimer.c:924
+#: ../panel-plugin/xfcetimer.c:966
msgid "Edit alarm"
msgstr "الارم مدون کریں"
-#: ../src/xfcetimer.c:1495 ../src/xfcetimer.c:1504
+#: ../panel-plugin/xfcetimer.c:1506
msgid "Xfce4 Timer Options"
msgstr "ایکسفس4 الارم اختیارات"
-#: ../src/xfcetimer.c:1506
-msgid "Xfce 4 Timer Plugin"
-msgstr ""
-
-#: ../src/xfcetimer.c:1552
+#: ../panel-plugin/xfcetimer.c:1546
msgid "Timer name"
msgstr ""
-#: ../src/xfcetimer.c:1557
+#: ../panel-plugin/xfcetimer.c:1551
msgid ""
"Countdown period /\n"
"Alarm time"
-msgstr "تنزلی مدت /\nالارم وقت"
+msgstr ""
+"تنزلی مدت /\n"
+"الارم وقت"
-#: ../src/xfcetimer.c:1561
+#: ../panel-plugin/xfcetimer.c:1554
msgid "Alarm command"
msgstr "الارم کمانڈ"
-#: ../src/xfcetimer.c:1617
-msgid "Don't display a warning if an alarm command is set"
+#: ../panel-plugin/xfcetimer.c:1572
+msgid "Add"
+msgstr ""
+
+#: ../panel-plugin/xfcetimer.c:1580
+msgid "Edit"
msgstr ""
-#: ../src/xfcetimer.c:1622
-msgid "Selecting a timer starts it"
+#: ../panel-plugin/xfcetimer.c:1588
+msgid "Remove"
+msgstr ""
+
+#: ../panel-plugin/xfcetimer.c:1596
+msgid "Up"
+msgstr ""
+
+#: ../panel-plugin/xfcetimer.c:1603
+msgid "Down"
+msgstr ""
+
+#: ../panel-plugin/xfcetimer.c:1619
+msgid "Don't display a warning if an alarm command is set"
msgstr ""
#. Default alarm command config
-#: ../src/xfcetimer.c:1630
+#: ../panel-plugin/xfcetimer.c:1631
msgid "Use a default alarm command"
msgstr ""
-#: ../src/xfcetimer.c:1637
+#: ../panel-plugin/xfcetimer.c:1640
msgid "Default command: "
msgstr ""
#. Alarm repetitions config
-#: ../src/xfcetimer.c:1649
+#: ../panel-plugin/xfcetimer.c:1656
msgid "Repeat the alarm command"
msgstr ""
-#: ../src/xfcetimer.c:1656
+#: ../panel-plugin/xfcetimer.c:1665
msgid "Number of repetitions"
msgstr "تکرار کی تعداد"
-#: ../src/xfcetimer.c:1662
+#: ../panel-plugin/xfcetimer.c:1674
msgid " Time interval (sec.)"
msgstr " وقت وقفہ (سیکنڈ)"
-#: ../src/xfcetimer.c:1723
+#: ../panel-plugin/xfcetimer.c:1736
msgid "About xfce4-timer-plugin"
msgstr ""
-#: ../src/xfcetimer.c:1728
+#: ../panel-plugin/xfcetimer.c:1739
msgid "A plugin to define countdown timers or alarms at given times."
msgstr ""
-#: ../src/xfcetimer.c:1730
-msgid "Copyright (c) 2005-2013\n"
+#: ../panel-plugin/xfcetimer.c:1742
+msgid "Copyright (c) 2005-2018\n"
msgstr ""
-#: ../src/xfce4-timer.desktop.in.in.h:1
+#: ../panel-plugin/xfce4-timer-plugin.desktop.in.h:1
msgid "Xfce4 Timer"
msgstr "ایکسفس4 ٹائمر"
-#: ../src/xfce4-timer.desktop.in.in.h:2
+#: ../panel-plugin/xfce4-timer-plugin.desktop.in.h:2
msgid "Timer plugin for Xfce panel"
msgstr "ٹائمر پلگ ان برائے ایکسفس 4.4 پینل"
+
+#~ msgid "Start timer"
+#~ msgstr "ٹائمر شروع کریں"
+
+#~ msgid "Stop the alarm"
+#~ msgstr "الارم بند کریں"
diff --git a/po/ur_PK.po b/po/ur_PK.po
index 5c58424..8dc595a 100644
--- a/po/ur_PK.po
+++ b/po/ur_PK.po
@@ -1,203 +1,238 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
-#
+#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: Xfce Panel Plugins\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-06-05 06:31+0200\n"
+"POT-Creation-Date: 2018-04-21 18:00+0300\n"
"PO-Revision-Date: 2017-09-19 18:06+0000\n"
"Last-Translator: Xfce Bot <transifex at xfce.org>\n"
-"Language-Team: Urdu (Pakistan) (http://www.transifex.com/xfce/xfce-panel-plugins/language/ur_PK/)\n"
+"Language-Team: Urdu (Pakistan) (http://www.transifex.com/xfce/xfce-panel-"
+"plugins/language/ur_PK/)\n"
+"Language: ur_PK\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: ur_PK\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: ../src/xfcetimer.c:146
+#: ../panel-plugin/xfcetimer.c:167
#, c-format
msgid "%dh %dm %ds left"
msgstr "%dh %dm %ds باقی ہے"
-#: ../src/xfcetimer.c:149
+#: ../panel-plugin/xfcetimer.c:170
#, c-format
msgid "%dm %ds left"
msgstr "%dm %ds باقی ہے"
-#: ../src/xfcetimer.c:151
+#: ../panel-plugin/xfcetimer.c:173
#, c-format
msgid "%ds left"
msgstr "%ds باقی ہے"
-#: ../src/xfcetimer.c:154
+#: ../panel-plugin/xfcetimer.c:177
msgid " (Paused)"
msgstr ""
#. Display the name of the alarm when the countdown ends
-#: ../src/xfcetimer.c:188
+#: ../panel-plugin/xfcetimer.c:213
#, c-format
msgid ""
"Beeep! :) \n"
"Time is up for the alarm %s."
msgstr ""
-#: ../src/xfcetimer.c:198
-msgid "Rerun the timer"
+#: ../panel-plugin/xfcetimer.c:221 ../panel-plugin/xfcetimer.c:1508
+msgid "Close"
msgstr ""
-#: ../src/xfcetimer.c:487
-msgid "Resume timer"
+#: ../panel-plugin/xfcetimer.c:222
+msgid "Rerun the timer"
msgstr ""
-#: ../src/xfcetimer.c:494 ../src/xfcetimer.c:550
-msgid "Stop timer"
-msgstr "ٹائمر روکیں"
-
-#: ../src/xfcetimer.c:538
+#: ../panel-plugin/xfcetimer.c:515
msgid "Pause timer"
msgstr ""
-#: ../src/xfcetimer.c:552
-msgid "Start timer"
-msgstr "ٹائمر شروع کریں"
+#: ../panel-plugin/xfcetimer.c:523
+msgid "Resume timer"
+msgstr ""
-#: ../src/xfcetimer.c:561
-msgid "Stop the alarm"
-msgstr "الارم بند کریں"
+#: ../panel-plugin/xfcetimer.c:534
+msgid "Stop timer"
+msgstr "ٹائمر روکیں"
-#: ../src/xfcetimer.c:618 ../src/xfcetimer.c:689
+#: ../panel-plugin/xfcetimer.c:614 ../panel-plugin/xfcetimer.c:693
#, c-format
msgid "%dh %dm %ds"
msgstr "%dh %dm %ds"
-#: ../src/xfcetimer.c:620 ../src/xfcetimer.c:691
+#: ../panel-plugin/xfcetimer.c:616 ../panel-plugin/xfcetimer.c:695
#, c-format
msgid "%dm %ds"
msgstr "%dm %ds"
-#: ../src/xfcetimer.c:622 ../src/xfcetimer.c:693
+#: ../panel-plugin/xfcetimer.c:618 ../panel-plugin/xfcetimer.c:697
#, c-format
msgid "%ds"
msgstr "%ds"
-#: ../src/xfcetimer.c:631 ../src/xfcetimer.c:702
+#: ../panel-plugin/xfcetimer.c:626 ../panel-plugin/xfcetimer.c:706
#, c-format
msgid "At %02d:%02d"
msgstr "پر %02d:%02d"
-#: ../src/xfcetimer.c:801
+#: ../panel-plugin/xfcetimer.c:812
msgid "Name:"
msgstr "نام:"
-#. ********
-#: ../src/xfcetimer.c:809
+#: ../panel-plugin/xfcetimer.c:821
msgid "Enter the countdown time"
msgstr "تنزلی وقت لکھیں"
-#: ../src/xfcetimer.c:812
+#: ../panel-plugin/xfcetimer.c:826
msgid "Enter the time of alarm (24h format)"
msgstr "الارم کا وقت لکھیں (24گ فارمیٹ)"
-#: ../src/xfcetimer.c:824
+#: ../panel-plugin/xfcetimer.c:841
msgid "h "
msgstr "گ"
-#: ../src/xfcetimer.c:829
+#: ../panel-plugin/xfcetimer.c:848
msgid "m "
msgstr "م"
-#: ../src/xfcetimer.c:834
+#: ../panel-plugin/xfcetimer.c:855
msgid "s "
msgstr "س"
-#: ../src/xfcetimer.c:837
+#: ../panel-plugin/xfcetimer.c:859
msgid "or"
msgstr ""
#. **************
-#: ../src/xfcetimer.c:857
+#: ../panel-plugin/xfcetimer.c:881
msgid "Command to run:"
msgstr ""
-#: ../src/xfcetimer.c:887
+#. **************
+#. add recurring alarm check button
+#: ../panel-plugin/xfcetimer.c:892
+msgid "Recurring alarm"
+msgstr ""
+
+#. add alarm autostart check button
+#: ../panel-plugin/xfcetimer.c:899
+msgid "Auto start when plugin loads"
+msgstr ""
+
+#: ../panel-plugin/xfcetimer.c:909
+msgid "Cancel"
+msgstr ""
+
+#: ../panel-plugin/xfcetimer.c:914
+msgid "Accept"
+msgstr ""
+
+#: ../panel-plugin/xfcetimer.c:925
msgid "Add new alarm"
msgstr "نیا الارم شامل کریں"
-#: ../src/xfcetimer.c:924
+#: ../panel-plugin/xfcetimer.c:966
msgid "Edit alarm"
msgstr "الارم مدون کریں"
-#: ../src/xfcetimer.c:1495 ../src/xfcetimer.c:1504
+#: ../panel-plugin/xfcetimer.c:1506
msgid "Xfce4 Timer Options"
msgstr "ایکسفس4 الارم اختیارات"
-#: ../src/xfcetimer.c:1506
-msgid "Xfce 4 Timer Plugin"
-msgstr ""
-
-#: ../src/xfcetimer.c:1552
+#: ../panel-plugin/xfcetimer.c:1546
msgid "Timer name"
msgstr ""
-#: ../src/xfcetimer.c:1557
+#: ../panel-plugin/xfcetimer.c:1551
msgid ""
"Countdown period /\n"
"Alarm time"
-msgstr "تنزلی مدت /\nالارم وقت"
+msgstr ""
+"تنزلی مدت /\n"
+"الارم وقت"
-#: ../src/xfcetimer.c:1561
+#: ../panel-plugin/xfcetimer.c:1554
msgid "Alarm command"
msgstr "الارم کمانڈ"
-#: ../src/xfcetimer.c:1617
-msgid "Don't display a warning if an alarm command is set"
+#: ../panel-plugin/xfcetimer.c:1572
+msgid "Add"
+msgstr ""
+
+#: ../panel-plugin/xfcetimer.c:1580
+msgid "Edit"
msgstr ""
-#: ../src/xfcetimer.c:1622
-msgid "Selecting a timer starts it"
+#: ../panel-plugin/xfcetimer.c:1588
+msgid "Remove"
+msgstr ""
+
+#: ../panel-plugin/xfcetimer.c:1596
+msgid "Up"
+msgstr ""
+
+#: ../panel-plugin/xfcetimer.c:1603
+msgid "Down"
+msgstr ""
+
+#: ../panel-plugin/xfcetimer.c:1619
+msgid "Don't display a warning if an alarm command is set"
msgstr ""
#. Default alarm command config
-#: ../src/xfcetimer.c:1630
+#: ../panel-plugin/xfcetimer.c:1631
msgid "Use a default alarm command"
msgstr ""
-#: ../src/xfcetimer.c:1637
+#: ../panel-plugin/xfcetimer.c:1640
msgid "Default command: "
msgstr ""
#. Alarm repetitions config
-#: ../src/xfcetimer.c:1649
+#: ../panel-plugin/xfcetimer.c:1656
msgid "Repeat the alarm command"
msgstr ""
-#: ../src/xfcetimer.c:1656
+#: ../panel-plugin/xfcetimer.c:1665
msgid "Number of repetitions"
msgstr "تکرار کی تعداد"
-#: ../src/xfcetimer.c:1662
+#: ../panel-plugin/xfcetimer.c:1674
msgid " Time interval (sec.)"
msgstr " وقت وقفہ (سیکنڈ)"
-#: ../src/xfcetimer.c:1723
+#: ../panel-plugin/xfcetimer.c:1736
msgid "About xfce4-timer-plugin"
msgstr ""
-#: ../src/xfcetimer.c:1728
+#: ../panel-plugin/xfcetimer.c:1739
msgid "A plugin to define countdown timers or alarms at given times."
msgstr ""
-#: ../src/xfcetimer.c:1730
-msgid "Copyright (c) 2005-2013\n"
+#: ../panel-plugin/xfcetimer.c:1742
+msgid "Copyright (c) 2005-2018\n"
msgstr ""
-#: ../src/xfce4-timer.desktop.in.in.h:1
+#: ../panel-plugin/xfce4-timer-plugin.desktop.in.h:1
msgid "Xfce4 Timer"
msgstr "ایکسفس4 ٹائمر"
-#: ../src/xfce4-timer.desktop.in.in.h:2
+#: ../panel-plugin/xfce4-timer-plugin.desktop.in.h:2
msgid "Timer plugin for Xfce panel"
msgstr "ٹائمر پلگ ان برائے ایکسفس 4.4 پینل"
+
+#~ msgid "Start timer"
+#~ msgstr "ٹائمر شروع کریں"
+
+#~ msgid "Stop the alarm"
+#~ msgstr "الارم بند کریں"
diff --git a/po/zh_CN.po b/po/zh_CN.po
index 0082810..0cf808c 100644
--- a/po/zh_CN.po
+++ b/po/zh_CN.po
@@ -1,7 +1,7 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
-#
+#
# Translators:
# Chipong Luo <chipong.luo at yahoo.com>, 2011-2013
# Hunt Xu <huntxu at live.cn>, 2008,2012
@@ -11,216 +11,221 @@ msgid ""
msgstr ""
"Project-Id-Version: Xfce Panel Plugins\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-01-04 06:32+0100\n"
+"POT-Creation-Date: 2018-04-21 18:00+0300\n"
"PO-Revision-Date: 2018-01-05 05:18+0000\n"
"Last-Translator: 玉堂白鹤 <yjwork at qq.com>\n"
-"Language-Team: Chinese (China) (http://www.transifex.com/xfce/xfce-panel-plugins/language/zh_CN/)\n"
+"Language-Team: Chinese (China) (http://www.transifex.com/xfce/xfce-panel-"
+"plugins/language/zh_CN/)\n"
+"Language: zh_CN\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: zh_CN\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-#: ../panel-plugin/xfcetimer.c:153
+#: ../panel-plugin/xfcetimer.c:167
#, c-format
msgid "%dh %dm %ds left"
msgstr "剩余 %d 小时 %d 分 %d 秒"
-#: ../panel-plugin/xfcetimer.c:156
+#: ../panel-plugin/xfcetimer.c:170
#, c-format
msgid "%dm %ds left"
msgstr "剩余 %d 分 %d 秒"
-#: ../panel-plugin/xfcetimer.c:159
+#: ../panel-plugin/xfcetimer.c:173
#, c-format
msgid "%ds left"
msgstr "剩余 %d 秒"
-#: ../panel-plugin/xfcetimer.c:163
+#: ../panel-plugin/xfcetimer.c:177
msgid " (Paused)"
msgstr " (已暂停)"
-#: ../panel-plugin/xfcetimer.c:198
+#. Display the name of the alarm when the countdown ends
+#: ../panel-plugin/xfcetimer.c:213
#, c-format
msgid ""
"Beeep! :) \n"
"Time is up for the alarm %s."
-msgstr "嘟嘟嘟!:)\n闹钟 %s 时间到!"
+msgstr ""
+"嘟嘟嘟!:)\n"
+"闹钟 %s 时间到!"
-#: ../panel-plugin/xfcetimer.c:210 ../panel-plugin/xfcetimer.c:1493
+#: ../panel-plugin/xfcetimer.c:221 ../panel-plugin/xfcetimer.c:1508
msgid "Close"
msgstr "关闭"
-#: ../panel-plugin/xfcetimer.c:211
+#: ../panel-plugin/xfcetimer.c:222
msgid "Rerun the timer"
msgstr "重新运行计时器"
-#: ../panel-plugin/xfcetimer.c:526
+#: ../panel-plugin/xfcetimer.c:515
+msgid "Pause timer"
+msgstr "暂停计时器"
+
+#: ../panel-plugin/xfcetimer.c:523
msgid "Resume timer"
msgstr "恢复定时器"
-#: ../panel-plugin/xfcetimer.c:533 ../panel-plugin/xfcetimer.c:556
+#: ../panel-plugin/xfcetimer.c:534
msgid "Stop timer"
msgstr "停止定时器"
-#: ../panel-plugin/xfcetimer.c:545
-msgid "Pause timer"
-msgstr "暂停计时器"
-
-#: ../panel-plugin/xfcetimer.c:558
-msgid "Start timer"
-msgstr "启动定时器"
-
-#: ../panel-plugin/xfcetimer.c:568
-msgid "Stop the alarm"
-msgstr "停止闹钟"
-
-#: ../panel-plugin/xfcetimer.c:622 ../panel-plugin/xfcetimer.c:696
+#: ../panel-plugin/xfcetimer.c:614 ../panel-plugin/xfcetimer.c:693
#, c-format
msgid "%dh %dm %ds"
msgstr "%d 时 %d 分 %d 秒"
-#: ../panel-plugin/xfcetimer.c:624 ../panel-plugin/xfcetimer.c:698
+#: ../panel-plugin/xfcetimer.c:616 ../panel-plugin/xfcetimer.c:695
#, c-format
msgid "%dm %ds"
msgstr "%d 分 %d 秒"
-#: ../panel-plugin/xfcetimer.c:626 ../panel-plugin/xfcetimer.c:700
+#: ../panel-plugin/xfcetimer.c:618 ../panel-plugin/xfcetimer.c:697
#, c-format
msgid "%ds"
msgstr "%d 秒"
-#: ../panel-plugin/xfcetimer.c:634 ../panel-plugin/xfcetimer.c:709
+#: ../panel-plugin/xfcetimer.c:626 ../panel-plugin/xfcetimer.c:706
#, c-format
msgid "At %02d:%02d"
msgstr "在 %02d:%02d"
-#: ../panel-plugin/xfcetimer.c:815
+#: ../panel-plugin/xfcetimer.c:812
msgid "Name:"
msgstr "名称:"
-#: ../panel-plugin/xfcetimer.c:824
+#: ../panel-plugin/xfcetimer.c:821
msgid "Enter the countdown time"
msgstr "输入倒计时时间"
-#: ../panel-plugin/xfcetimer.c:829
+#: ../panel-plugin/xfcetimer.c:826
msgid "Enter the time of alarm (24h format)"
msgstr "输入提示时间(24小时制)"
-#: ../panel-plugin/xfcetimer.c:844
+#: ../panel-plugin/xfcetimer.c:841
msgid "h "
msgstr "时 "
-#: ../panel-plugin/xfcetimer.c:851
+#: ../panel-plugin/xfcetimer.c:848
msgid "m "
msgstr "分 "
-#: ../panel-plugin/xfcetimer.c:858
+#: ../panel-plugin/xfcetimer.c:855
msgid "s "
msgstr "秒 "
-#: ../panel-plugin/xfcetimer.c:862
+#: ../panel-plugin/xfcetimer.c:859
msgid "or"
msgstr "或者"
#. **************
-#: ../panel-plugin/xfcetimer.c:884
+#: ../panel-plugin/xfcetimer.c:881
msgid "Command to run:"
msgstr "要运行的命令:"
-#: ../panel-plugin/xfcetimer.c:898
+#. **************
+#. add recurring alarm check button
+#: ../panel-plugin/xfcetimer.c:892
+msgid "Recurring alarm"
+msgstr ""
+
+#. add alarm autostart check button
+#: ../panel-plugin/xfcetimer.c:899
+msgid "Auto start when plugin loads"
+msgstr ""
+
+#: ../panel-plugin/xfcetimer.c:909
msgid "Cancel"
msgstr "取消"
-#: ../panel-plugin/xfcetimer.c:903
+#: ../panel-plugin/xfcetimer.c:914
msgid "Accept"
msgstr "接受"
-#: ../panel-plugin/xfcetimer.c:914
+#: ../panel-plugin/xfcetimer.c:925
msgid "Add new alarm"
msgstr "添加新闹钟"
-#: ../panel-plugin/xfcetimer.c:951
+#: ../panel-plugin/xfcetimer.c:966
msgid "Edit alarm"
msgstr "编辑闹钟"
-#: ../panel-plugin/xfcetimer.c:1491
+#: ../panel-plugin/xfcetimer.c:1506
msgid "Xfce4 Timer Options"
msgstr "Xfce 定时器选项"
-#: ../panel-plugin/xfcetimer.c:1531
+#: ../panel-plugin/xfcetimer.c:1546
msgid "Timer name"
msgstr "定时器名称"
-#: ../panel-plugin/xfcetimer.c:1536
+#: ../panel-plugin/xfcetimer.c:1551
msgid ""
"Countdown period /\n"
"Alarm time"
-msgstr "倒计时周期/\n闹钟时间"
+msgstr ""
+"倒计时周期/\n"
+"闹钟时间"
-#: ../panel-plugin/xfcetimer.c:1539
+#: ../panel-plugin/xfcetimer.c:1554
msgid "Alarm command"
msgstr "闹钟命令"
-#: ../panel-plugin/xfcetimer.c:1557
+#: ../panel-plugin/xfcetimer.c:1572
msgid "Add"
msgstr "添加"
-#: ../panel-plugin/xfcetimer.c:1565
+#: ../panel-plugin/xfcetimer.c:1580
msgid "Edit"
msgstr "编辑"
-#: ../panel-plugin/xfcetimer.c:1573
+#: ../panel-plugin/xfcetimer.c:1588
msgid "Remove"
msgstr "移除"
-#: ../panel-plugin/xfcetimer.c:1581
+#: ../panel-plugin/xfcetimer.c:1596
msgid "Up"
msgstr "向上"
-#: ../panel-plugin/xfcetimer.c:1588
+#: ../panel-plugin/xfcetimer.c:1603
msgid "Down"
msgstr "向下"
-#: ../panel-plugin/xfcetimer.c:1604
+#: ../panel-plugin/xfcetimer.c:1619
msgid "Don't display a warning if an alarm command is set"
msgstr "如果已设置闹钟命令则不显示警告"
-#: ../panel-plugin/xfcetimer.c:1610
-msgid "Selecting a timer starts it"
-msgstr "选择一个定时器并启动它"
-
#. Default alarm command config
-#: ../panel-plugin/xfcetimer.c:1623
+#: ../panel-plugin/xfcetimer.c:1631
msgid "Use a default alarm command"
msgstr "使用默认的闹钟命令"
-#: ../panel-plugin/xfcetimer.c:1632
+#: ../panel-plugin/xfcetimer.c:1640
msgid "Default command: "
msgstr "默认命令:"
#. Alarm repetitions config
-#: ../panel-plugin/xfcetimer.c:1648
+#: ../panel-plugin/xfcetimer.c:1656
msgid "Repeat the alarm command"
msgstr "重复闹钟命令"
-#: ../panel-plugin/xfcetimer.c:1657
+#: ../panel-plugin/xfcetimer.c:1665
msgid "Number of repetitions"
msgstr "重复次数"
-#: ../panel-plugin/xfcetimer.c:1666
+#: ../panel-plugin/xfcetimer.c:1674
msgid " Time interval (sec.)"
msgstr " 时间间隔(秒。)"
-#: ../panel-plugin/xfcetimer.c:1728
+#: ../panel-plugin/xfcetimer.c:1736
msgid "About xfce4-timer-plugin"
msgstr "关于 xfce4-timer-plugin"
-#: ../panel-plugin/xfcetimer.c:1731
+#: ../panel-plugin/xfcetimer.c:1739
msgid "A plugin to define countdown timers or alarms at given times."
msgstr "在指定时间内设定倒数计时器或者闹钟的插件。"
-#: ../panel-plugin/xfcetimer.c:1734
+#: ../panel-plugin/xfcetimer.c:1742
msgid "Copyright (c) 2005-2018\n"
msgstr "版权 (c) 2005-2018\n"
@@ -231,3 +236,12 @@ msgstr "Xfce 定时器"
#: ../panel-plugin/xfce4-timer-plugin.desktop.in.h:2
msgid "Timer plugin for Xfce panel"
msgstr "Xfce 面板的定时器插件"
+
+#~ msgid "Selecting a timer starts it"
+#~ msgstr "选择一个定时器并启动它"
+
+#~ msgid "Start timer"
+#~ msgstr "启动定时器"
+
+#~ msgid "Stop the alarm"
+#~ msgstr "停止闹钟"
diff --git a/po/zh_TW.po b/po/zh_TW.po
index f66cb07..738a708 100644
--- a/po/zh_TW.po
+++ b/po/zh_TW.po
@@ -1,7 +1,7 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
-#
+#
# Translators:
# Jeff Huang <s8321414 at gmail.com>, 2014,2018
# Walter Cheuk <wwycheuk at gmail.com>, 2013-2014
@@ -9,216 +9,221 @@ msgid ""
msgstr ""
"Project-Id-Version: Xfce Panel Plugins\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-01-04 06:32+0100\n"
+"POT-Creation-Date: 2018-04-21 18:00+0300\n"
"PO-Revision-Date: 2018-01-05 00:49+0000\n"
"Last-Translator: Jeff Huang <s8321414 at gmail.com>\n"
-"Language-Team: Chinese (Taiwan) (http://www.transifex.com/xfce/xfce-panel-plugins/language/zh_TW/)\n"
+"Language-Team: Chinese (Taiwan) (http://www.transifex.com/xfce/xfce-panel-"
+"plugins/language/zh_TW/)\n"
+"Language: zh_TW\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: zh_TW\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-#: ../panel-plugin/xfcetimer.c:153
+#: ../panel-plugin/xfcetimer.c:167
#, c-format
msgid "%dh %dm %ds left"
msgstr "剩下 %d 小時 %d 分 %d 秒"
-#: ../panel-plugin/xfcetimer.c:156
+#: ../panel-plugin/xfcetimer.c:170
#, c-format
msgid "%dm %ds left"
msgstr "剩下 %d 分 %d 秒"
-#: ../panel-plugin/xfcetimer.c:159
+#: ../panel-plugin/xfcetimer.c:173
#, c-format
msgid "%ds left"
msgstr "剩下 %d 秒"
-#: ../panel-plugin/xfcetimer.c:163
+#: ../panel-plugin/xfcetimer.c:177
msgid " (Paused)"
msgstr " (暫停)"
-#: ../panel-plugin/xfcetimer.c:198
+#. Display the name of the alarm when the countdown ends
+#: ../panel-plugin/xfcetimer.c:213
#, c-format
msgid ""
"Beeep! :) \n"
"Time is up for the alarm %s."
-msgstr "嗶! :) \n鬧鈴 %s 到時了。"
+msgstr ""
+"嗶! :) \n"
+"鬧鈴 %s 到時了。"
-#: ../panel-plugin/xfcetimer.c:210 ../panel-plugin/xfcetimer.c:1493
+#: ../panel-plugin/xfcetimer.c:221 ../panel-plugin/xfcetimer.c:1508
msgid "Close"
msgstr "關閉"
-#: ../panel-plugin/xfcetimer.c:211
+#: ../panel-plugin/xfcetimer.c:222
msgid "Rerun the timer"
msgstr "返回計時器"
-#: ../panel-plugin/xfcetimer.c:526
+#: ../panel-plugin/xfcetimer.c:515
+msgid "Pause timer"
+msgstr "暫停定時器"
+
+#: ../panel-plugin/xfcetimer.c:523
msgid "Resume timer"
msgstr "繼續定時器"
-#: ../panel-plugin/xfcetimer.c:533 ../panel-plugin/xfcetimer.c:556
+#: ../panel-plugin/xfcetimer.c:534
msgid "Stop timer"
msgstr "停止定時器"
-#: ../panel-plugin/xfcetimer.c:545
-msgid "Pause timer"
-msgstr "暫停定時器"
-
-#: ../panel-plugin/xfcetimer.c:558
-msgid "Start timer"
-msgstr "啟動定時器"
-
-#: ../panel-plugin/xfcetimer.c:568
-msgid "Stop the alarm"
-msgstr "停止鬧鈴"
-
-#: ../panel-plugin/xfcetimer.c:622 ../panel-plugin/xfcetimer.c:696
+#: ../panel-plugin/xfcetimer.c:614 ../panel-plugin/xfcetimer.c:693
#, c-format
msgid "%dh %dm %ds"
msgstr "%d 小時 %d 分 %d 秒"
-#: ../panel-plugin/xfcetimer.c:624 ../panel-plugin/xfcetimer.c:698
+#: ../panel-plugin/xfcetimer.c:616 ../panel-plugin/xfcetimer.c:695
#, c-format
msgid "%dm %ds"
msgstr "%d 分 %d 秒"
-#: ../panel-plugin/xfcetimer.c:626 ../panel-plugin/xfcetimer.c:700
+#: ../panel-plugin/xfcetimer.c:618 ../panel-plugin/xfcetimer.c:697
#, c-format
msgid "%ds"
msgstr "%d 秒"
-#: ../panel-plugin/xfcetimer.c:634 ../panel-plugin/xfcetimer.c:709
+#: ../panel-plugin/xfcetimer.c:626 ../panel-plugin/xfcetimer.c:706
#, c-format
msgid "At %02d:%02d"
msgstr "於 %02d:%02d"
-#: ../panel-plugin/xfcetimer.c:815
+#: ../panel-plugin/xfcetimer.c:812
msgid "Name:"
msgstr "名稱:"
-#: ../panel-plugin/xfcetimer.c:824
+#: ../panel-plugin/xfcetimer.c:821
msgid "Enter the countdown time"
msgstr "請輸入倒數時間"
-#: ../panel-plugin/xfcetimer.c:829
+#: ../panel-plugin/xfcetimer.c:826
msgid "Enter the time of alarm (24h format)"
msgstr "請輸入鬧鈴時間 (24 小時制)"
-#: ../panel-plugin/xfcetimer.c:844
+#: ../panel-plugin/xfcetimer.c:841
msgid "h "
msgstr "點"
-#: ../panel-plugin/xfcetimer.c:851
+#: ../panel-plugin/xfcetimer.c:848
msgid "m "
msgstr "分"
-#: ../panel-plugin/xfcetimer.c:858
+#: ../panel-plugin/xfcetimer.c:855
msgid "s "
msgstr "秒"
-#: ../panel-plugin/xfcetimer.c:862
+#: ../panel-plugin/xfcetimer.c:859
msgid "or"
msgstr "或"
#. **************
-#: ../panel-plugin/xfcetimer.c:884
+#: ../panel-plugin/xfcetimer.c:881
msgid "Command to run:"
msgstr "要執行指令:"
-#: ../panel-plugin/xfcetimer.c:898
+#. **************
+#. add recurring alarm check button
+#: ../panel-plugin/xfcetimer.c:892
+msgid "Recurring alarm"
+msgstr ""
+
+#. add alarm autostart check button
+#: ../panel-plugin/xfcetimer.c:899
+msgid "Auto start when plugin loads"
+msgstr ""
+
+#: ../panel-plugin/xfcetimer.c:909
msgid "Cancel"
msgstr "取消"
-#: ../panel-plugin/xfcetimer.c:903
+#: ../panel-plugin/xfcetimer.c:914
msgid "Accept"
msgstr "接受"
-#: ../panel-plugin/xfcetimer.c:914
+#: ../panel-plugin/xfcetimer.c:925
msgid "Add new alarm"
msgstr "加入新鬧鈴"
-#: ../panel-plugin/xfcetimer.c:951
+#: ../panel-plugin/xfcetimer.c:966
msgid "Edit alarm"
msgstr "編輯鬧鈴"
-#: ../panel-plugin/xfcetimer.c:1491
+#: ../panel-plugin/xfcetimer.c:1506
msgid "Xfce4 Timer Options"
msgstr "Xfce4 定時器選項"
-#: ../panel-plugin/xfcetimer.c:1531
+#: ../panel-plugin/xfcetimer.c:1546
msgid "Timer name"
msgstr "定時器名稱"
-#: ../panel-plugin/xfcetimer.c:1536
+#: ../panel-plugin/xfcetimer.c:1551
msgid ""
"Countdown period /\n"
"Alarm time"
-msgstr "倒數期 /\n鬧鈴時間"
+msgstr ""
+"倒數期 /\n"
+"鬧鈴時間"
-#: ../panel-plugin/xfcetimer.c:1539
+#: ../panel-plugin/xfcetimer.c:1554
msgid "Alarm command"
msgstr "鬧鈴指令"
-#: ../panel-plugin/xfcetimer.c:1557
+#: ../panel-plugin/xfcetimer.c:1572
msgid "Add"
msgstr "新增"
-#: ../panel-plugin/xfcetimer.c:1565
+#: ../panel-plugin/xfcetimer.c:1580
msgid "Edit"
msgstr "編輯"
-#: ../panel-plugin/xfcetimer.c:1573
+#: ../panel-plugin/xfcetimer.c:1588
msgid "Remove"
msgstr "移除"
-#: ../panel-plugin/xfcetimer.c:1581
+#: ../panel-plugin/xfcetimer.c:1596
msgid "Up"
msgstr "上"
-#: ../panel-plugin/xfcetimer.c:1588
+#: ../panel-plugin/xfcetimer.c:1603
msgid "Down"
msgstr "下"
-#: ../panel-plugin/xfcetimer.c:1604
+#: ../panel-plugin/xfcetimer.c:1619
msgid "Don't display a warning if an alarm command is set"
msgstr "若設定鬧鈴指令不要顯示警告"
-#: ../panel-plugin/xfcetimer.c:1610
-msgid "Selecting a timer starts it"
-msgstr "選取定時器以啟動"
-
#. Default alarm command config
-#: ../panel-plugin/xfcetimer.c:1623
+#: ../panel-plugin/xfcetimer.c:1631
msgid "Use a default alarm command"
msgstr "使用預設鬧鈴指令"
-#: ../panel-plugin/xfcetimer.c:1632
+#: ../panel-plugin/xfcetimer.c:1640
msgid "Default command: "
msgstr "預設指令:"
#. Alarm repetitions config
-#: ../panel-plugin/xfcetimer.c:1648
+#: ../panel-plugin/xfcetimer.c:1656
msgid "Repeat the alarm command"
msgstr "重複鬧鈴指令"
-#: ../panel-plugin/xfcetimer.c:1657
+#: ../panel-plugin/xfcetimer.c:1665
msgid "Number of repetitions"
msgstr "重複次數"
-#: ../panel-plugin/xfcetimer.c:1666
+#: ../panel-plugin/xfcetimer.c:1674
msgid " Time interval (sec.)"
msgstr " 時間間隔 (秒)"
-#: ../panel-plugin/xfcetimer.c:1728
+#: ../panel-plugin/xfcetimer.c:1736
msgid "About xfce4-timer-plugin"
msgstr "關於 xfce4-timer-plugin"
-#: ../panel-plugin/xfcetimer.c:1731
+#: ../panel-plugin/xfcetimer.c:1739
msgid "A plugin to define countdown timers or alarms at given times."
msgstr "在特定時間定義倒數定時器或鬧鈴的插件。"
-#: ../panel-plugin/xfcetimer.c:1734
+#: ../panel-plugin/xfcetimer.c:1742
msgid "Copyright (c) 2005-2018\n"
msgstr "Copyright (c) 2005-2018\n"
@@ -229,3 +234,12 @@ msgstr "Xfce4 定時器"
#: ../panel-plugin/xfce4-timer-plugin.desktop.in.h:2
msgid "Timer plugin for Xfce panel"
msgstr "Xfce 面板的定時器插件"
+
+#~ msgid "Selecting a timer starts it"
+#~ msgstr "選取定時器以啟動"
+
+#~ msgid "Start timer"
+#~ msgstr "啟動定時器"
+
+#~ msgid "Stop the alarm"
+#~ msgstr "停止鬧鈴"
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the Xfce4-commits
mailing list