update translations

This commit is contained in:
Olaf Leidinger 2013-11-03 16:02:26 +01:00
parent c37ec5f71f
commit 2af944a2a3
3 changed files with 23 additions and 15 deletions

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-11-03 13:48+0100\n" "POT-Creation-Date: 2013-11-03 16:00+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"
@ -17,24 +17,28 @@ msgstr ""
"Content-Type: text/plain; charset=CHARSET\n" "Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
#: ../src/extension.js:82 ../src/extension.js:203 #: ../src/extension.js:82 ../src/extension.js:240
msgid "Your tea is ready!" msgid "Your tea is ready!"
msgstr "" msgstr ""
#: ../src/extension.js:167 #: ../src/extension.js:155
msgid "Direct input..."
msgstr ""
#: ../src/extension.js:204
msgid "TeaTime applet" msgid "TeaTime applet"
msgstr "" msgstr ""
#: ../src/extension.js:184 #: ../src/extension.js:221
msgid "Timer set!" msgid "Timer set!"
msgstr "" msgstr ""
#: ../src/extension.js:184 #: ../src/extension.js:221
#, javascript-format #, javascript-format
msgid "%ss to go" msgid "%ss to go"
msgstr "" msgstr ""
#: ../src/extension.js:204 #: ../src/extension.js:241
msgid "Drink it, while it is hot!" msgid "Drink it, while it is hot!"
msgstr "" msgstr ""

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: TeaTime 7\n" "Project-Id-Version: TeaTime 7\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-11-03 13:48+0100\n" "POT-Creation-Date: 2013-11-03 16:00+0100\n"
"PO-Revision-Date: 2013-10-31 09:38+0100\n" "PO-Revision-Date: 2013-10-31 09:38+0100\n"
"Last-Translator: Olaf Leidinger <oleid@mescharet.de>\n" "Last-Translator: Olaf Leidinger <oleid@mescharet.de>\n"
"Language-Team: German\n" "Language-Team: German\n"
@ -19,24 +19,28 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Poedit 1.5.7\n" "X-Generator: Poedit 1.5.7\n"
#: ../src/extension.js:82 ../src/extension.js:203 #: ../src/extension.js:82 ../src/extension.js:240
msgid "Your tea is ready!" msgid "Your tea is ready!"
msgstr "Dein Tee ist fertig!" msgstr "Dein Tee ist fertig!"
#: ../src/extension.js:167 #: ../src/extension.js:155
msgid "Direct input..."
msgstr "Direkteingabe"
#: ../src/extension.js:204
msgid "TeaTime applet" msgid "TeaTime applet"
msgstr "TeaTime applet" msgstr "TeaTime applet"
#: ../src/extension.js:184 #: ../src/extension.js:221
msgid "Timer set!" msgid "Timer set!"
msgstr "Die Zeit läuft!" msgstr "Die Zeit läuft!"
#: ../src/extension.js:184 #: ../src/extension.js:221
#, fuzzy, javascript-format #, javascript-format
msgid "%ss to go" msgid "%ss to go"
msgstr "ss verbleiben" msgstr "%ss verbleiben"
#: ../src/extension.js:204 #: ../src/extension.js:241
msgid "Drink it, while it is hot!" msgid "Drink it, while it is hot!"
msgstr "Trink ihn, solange er noch heiß ist!" msgstr "Trink ihn, solange er noch heiß ist!"

View File

@ -152,7 +152,7 @@ const TeaTime = new Lang.Class({
let bottom = new PopupMenu.PopupMenuSection(); let bottom = new PopupMenu.PopupMenuSection();
this._customEntry = new St.Entry({ style_class: 'teatime-custom-entry', this._customEntry = new St.Entry({ style_class: 'teatime-custom-entry',
track_hover: true, track_hover: true,
hint_text: "Custom..." }); hint_text: _("Direct input...") });
this._customEntry.get_clutter_text().set_max_length(10); this._customEntry.get_clutter_text().set_max_length(10);
this._customEntry.get_clutter_text().connect("key-press-event", Lang.bind(this, this._createCustomTimer)); this._customEntry.get_clutter_text().connect("key-press-event", Lang.bind(this, this._createCustomTimer));
bottom.box.add(this._customEntry); bottom.box.add(this._customEntry);