added translator comments.
2008-08-16 Sven Neumann <sven@gimp.org> * libgimp/gimp.c (gimp_get_pdb_error): added translator comments. svn path=/trunk/; revision=26605
This commit is contained in:

committed by
Sven Neumann

parent
52522c3f4e
commit
d0b0cca94d
10
ChangeLog
10
ChangeLog
@ -1,3 +1,13 @@
|
|||||||
|
2008-08-16 Sven Neumann <sven@gimp.org>
|
||||||
|
|
||||||
|
* libgimp/gimp.c (gimp_get_pdb_error): added translator comments.
|
||||||
|
|
||||||
|
2008-08-16 Sven Neumann <sven@gimp.org>
|
||||||
|
|
||||||
|
* plug-ins/pygimp/pygimp-pdb.c (pf_call): also use
|
||||||
|
gimp_get_pdb_error() here. Easier and safer than looking at the
|
||||||
|
return values to get the error message.
|
||||||
|
|
||||||
2008-08-16 Sven Neumann <sven@gimp.org>
|
2008-08-16 Sven Neumann <sven@gimp.org>
|
||||||
|
|
||||||
Next step towards fixing bug #344818:
|
Next step towards fixing bug #344818:
|
||||||
|
@ -1039,15 +1039,19 @@ gimp_get_pdb_error (void)
|
|||||||
|
|
||||||
switch (pdb_error_status)
|
switch (pdb_error_status)
|
||||||
{
|
{
|
||||||
|
/* procedure executed successfully */
|
||||||
case GIMP_PDB_SUCCESS:
|
case GIMP_PDB_SUCCESS:
|
||||||
return _("success");
|
return _("success");
|
||||||
|
|
||||||
|
/* procedure execution failed */
|
||||||
case GIMP_PDB_EXECUTION_ERROR:
|
case GIMP_PDB_EXECUTION_ERROR:
|
||||||
return _("execution error");
|
return _("execution error");
|
||||||
|
|
||||||
|
/* procedure called incorrectly */
|
||||||
case GIMP_PDB_CALLING_ERROR:
|
case GIMP_PDB_CALLING_ERROR:
|
||||||
return _("calling error");
|
return _("calling error");
|
||||||
|
|
||||||
|
/* procedure cancelled */
|
||||||
case GIMP_PDB_CANCEL:
|
case GIMP_PDB_CANCEL:
|
||||||
return _("cancelled");
|
return _("cancelled");
|
||||||
|
|
||||||
|
@ -2,6 +2,8 @@
|
|||||||
|
|
||||||
* POTFILES.in: added libgimp/gimp.c with some new messages.
|
* POTFILES.in: added libgimp/gimp.c with some new messages.
|
||||||
|
|
||||||
|
* de.po: updated German translation.
|
||||||
|
|
||||||
2008-08-14 Takeshi AIHANA <takeshi.aihana@gmail.com>
|
2008-08-14 Takeshi AIHANA <takeshi.aihana@gmail.com>
|
||||||
|
|
||||||
* ja.po: Updated Japanese translation by Kiyotaka Nishibori.
|
* ja.po: Updated Japanese translation by Kiyotaka Nishibori.
|
||||||
|
@ -15,8 +15,8 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: de\n"
|
"Project-Id-Version: de\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2008-08-13 20:20+0200\n"
|
"POT-Creation-Date: 2008-08-16 19:31+0200\n"
|
||||||
"PO-Revision-Date: 2008-08-13 20:30+0200\n"
|
"PO-Revision-Date: 2008-08-16 19:34+0200\n"
|
||||||
"Last-Translator: Sven Neumann <sven@gimp.org>\n"
|
"Last-Translator: Sven Neumann <sven@gimp.org>\n"
|
||||||
"Language-Team: Deutsch <gnome-de@gnome.org>\n"
|
"Language-Team: Deutsch <gnome-de@gnome.org>\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
@ -25,6 +25,22 @@ msgstr ""
|
|||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
"X-Generator: KBabel 1.11.4\n"
|
"X-Generator: KBabel 1.11.4\n"
|
||||||
|
|
||||||
|
#: ../libgimp/gimp.c:1043
|
||||||
|
msgid "success"
|
||||||
|
msgstr "Erfolg"
|
||||||
|
|
||||||
|
#: ../libgimp/gimp.c:1046
|
||||||
|
msgid "execution error"
|
||||||
|
msgstr "Ausführungsfehler"
|
||||||
|
|
||||||
|
#: ../libgimp/gimp.c:1049
|
||||||
|
msgid "calling error"
|
||||||
|
msgstr "Aufruffehler"
|
||||||
|
|
||||||
|
#: ../libgimp/gimp.c:1052
|
||||||
|
msgid "cancelled"
|
||||||
|
msgstr "abgebrochen"
|
||||||
|
|
||||||
#: ../libgimp/gimpbrushselectbutton.c:170
|
#: ../libgimp/gimpbrushselectbutton.c:170
|
||||||
msgid "Brush Selection"
|
msgid "Brush Selection"
|
||||||
msgstr "Pinselauswahl"
|
msgstr "Pinselauswahl"
|
||||||
|
Reference in New Issue
Block a user