mirror of https://github.com/GNOME/gimp.git
parent
f10c926ff5
commit
0f2b38038c
|
@ -1,3 +1,9 @@
|
|||
2000-03-20 Michael Natterer <mitch@gimp.org>
|
||||
|
||||
* plug-ins/gfig/gfig.c: fixed a SEGV I have introduced by
|
||||
accidentially replacing g_malloc0() with g_new() instead of
|
||||
g_new0(). Andy found the crash, thanks.
|
||||
|
||||
Mon Mar 20 19:15:19 CET 2000 Stanislav Brabec <utx@penguin.cz>
|
||||
|
||||
* app/preferences_dialog.c: Typo fix.
|
||||
|
|
|
@ -7460,7 +7460,7 @@ d_update_circle (GdkPoint *pnt)
|
|||
|
||||
draw_circle (pnt);
|
||||
|
||||
edge_pnt = g_new (DobjPoints, 1);
|
||||
edge_pnt = g_new0 (DobjPoints, 1);
|
||||
|
||||
edge_pnt->pnt.x = pnt->x;
|
||||
edge_pnt->pnt.y = pnt->y;
|
||||
|
|
|
@ -1,3 +1,11 @@
|
|||
2000-03-20 Michael Natterer <mitch@gimp.org>
|
||||
|
||||
* de.po: added newlines to some strings appearing in the
|
||||
installation dialog's footer line.
|
||||
|
||||
Please do the same for your langunage if this line determines the
|
||||
width of the dialog.
|
||||
|
||||
Mon Mar 20 14:11:57 CET 2000 Stanislav Brabec <utx@penguin.cz>
|
||||
|
||||
* cs.po: Updated translation.
|
||||
|
|
8
po/de.po
8
po/de.po
|
@ -2721,7 +2721,9 @@ msgstr ""
|
|||
|
||||
#: app/install.c:665
|
||||
msgid "Click \"Continue\" to enter the GIMP user installation."
|
||||
msgstr "Drücken Sie \"Weiter\" um die GIMP Benutzerinstallation zu starten."
|
||||
msgstr ""
|
||||
"Drücken Sie \"Weiter\" um die\n"
|
||||
"GIMP Benutzerinstallation zu starten."
|
||||
|
||||
#: app/install.c:668
|
||||
msgid ""
|
||||
|
@ -2777,7 +2779,9 @@ msgstr "Pers
|
|||
|
||||
#: app/install.c:714
|
||||
msgid "Click \"Continue\" to create your personal GIMP directory."
|
||||
msgstr "Drücken Sie \"Weiter\" um Ihr persönliches GIMP-Verzeichnis anzulegen."
|
||||
msgstr ""
|
||||
"Drücken Sie \"Weiter\" um Ihr\n"
|
||||
"persönliches GIMP-Verzeichnis anzulegen."
|
||||
|
||||
#: app/install.c:731
|
||||
#, c-format
|
||||
|
|
Loading…
Reference in New Issue