use gimp_image_get_name().
2002-05-13 Sven Neumann <sven@gimp.org> * libgimp/gimpmenu.c: use gimp_image_get_name(). * plug-ins/common/deinterlace.c: don't use 'O' as mnemonic, it's already taken by the _OK button.
This commit is contained in:

committed by
Sven Neumann

parent
2e8fdca5aa
commit
d8c4461c20
@ -1,3 +1,10 @@
|
|||||||
|
2002-05-13 Sven Neumann <sven@gimp.org>
|
||||||
|
|
||||||
|
* libgimp/gimpmenu.c: use gimp_image_get_name().
|
||||||
|
|
||||||
|
* plug-ins/common/deinterlace.c: don't use 'O' as mnemonic, it's
|
||||||
|
already taken by the _OK button.
|
||||||
|
|
||||||
2002-05-13 Sven Neumann <sven@gimp.org>
|
2002-05-13 Sven Neumann <sven@gimp.org>
|
||||||
|
|
||||||
* libgimpwidgets/gimpwidgets.c: documentation fix.
|
* libgimpwidgets/gimpwidgets.c: documentation fix.
|
||||||
|
@ -19,6 +19,8 @@
|
|||||||
* Boston, MA 02111-1307, USA.
|
* Boston, MA 02111-1307, USA.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#include "config.h"
|
||||||
|
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
|
||||||
#ifdef __GNUC__
|
#ifdef __GNUC__
|
||||||
@ -29,6 +31,7 @@
|
|||||||
#include "gimp.h"
|
#include "gimp.h"
|
||||||
#include "gimpui.h"
|
#include "gimpui.h"
|
||||||
|
|
||||||
|
#include "libgimp-intl.h"
|
||||||
|
|
||||||
#define MENU_THUMBNAIL_WIDTH 24
|
#define MENU_THUMBNAIL_WIDTH 24
|
||||||
#define MENU_THUMBNAIL_HEIGHT 24
|
#define MENU_THUMBNAIL_HEIGHT 24
|
||||||
@ -120,8 +123,7 @@ gimp_image_menu_new (GimpConstraintFunc constraint,
|
|||||||
{
|
{
|
||||||
GtkWidget *menu;
|
GtkWidget *menu;
|
||||||
GtkWidget *menuitem;
|
GtkWidget *menuitem;
|
||||||
gchar *filename;
|
gchar *name;
|
||||||
gchar *basename;
|
|
||||||
gchar *label;
|
gchar *label;
|
||||||
gint32 *images;
|
gint32 *images;
|
||||||
gint nimages;
|
gint nimages;
|
||||||
@ -135,13 +137,11 @@ gimp_image_menu_new (GimpConstraintFunc constraint,
|
|||||||
for (i = 0, k = 0; i < nimages; i++)
|
for (i = 0, k = 0; i < nimages; i++)
|
||||||
if (!constraint || (* constraint) (images[i], -1, data))
|
if (!constraint || (* constraint) (images[i], -1, data))
|
||||||
{
|
{
|
||||||
filename = gimp_image_get_filename (images[i]);
|
name = gimp_image_get_name (images[i]);
|
||||||
basename = g_path_get_basename (filename);
|
|
||||||
g_free (filename);
|
|
||||||
|
|
||||||
label = g_strdup_printf ("%s-%d", basename, images[i]);
|
label = g_strdup_printf ("%s-%d", name, images[i]);
|
||||||
|
|
||||||
g_free (basename);
|
g_free (name);
|
||||||
|
|
||||||
menuitem = gtk_menu_item_new_with_label (label);
|
menuitem = gtk_menu_item_new_with_label (label);
|
||||||
g_signal_connect (G_OBJECT (menuitem), "activate",
|
g_signal_connect (G_OBJECT (menuitem), "activate",
|
||||||
@ -160,7 +160,7 @@ gimp_image_menu_new (GimpConstraintFunc constraint,
|
|||||||
|
|
||||||
if (k == 0)
|
if (k == 0)
|
||||||
{
|
{
|
||||||
menuitem = gtk_menu_item_new_with_label ("none");
|
menuitem = gtk_menu_item_new_with_label (_("None"));
|
||||||
gtk_widget_set_sensitive (menuitem, FALSE);
|
gtk_widget_set_sensitive (menuitem, FALSE);
|
||||||
gtk_menu_shell_append (GTK_MENU_SHELL (menu), menuitem);
|
gtk_menu_shell_append (GTK_MENU_SHELL (menu), menuitem);
|
||||||
gtk_widget_show (menuitem);
|
gtk_widget_show (menuitem);
|
||||||
@ -186,7 +186,6 @@ gimp_layer_menu_new (GimpConstraintFunc constraint,
|
|||||||
GtkWidget *menu;
|
GtkWidget *menu;
|
||||||
GtkWidget *menuitem;
|
GtkWidget *menuitem;
|
||||||
gchar *name;
|
gchar *name;
|
||||||
gchar *basename;
|
|
||||||
gchar *image_label;
|
gchar *image_label;
|
||||||
gchar *label;
|
gchar *label;
|
||||||
gint32 *images;
|
gint32 *images;
|
||||||
@ -206,14 +205,12 @@ gimp_layer_menu_new (GimpConstraintFunc constraint,
|
|||||||
for (i = 0, k = 0; i < nimages; i++)
|
for (i = 0, k = 0; i < nimages; i++)
|
||||||
if (!constraint || (* constraint) (images[i], -1, data))
|
if (!constraint || (* constraint) (images[i], -1, data))
|
||||||
{
|
{
|
||||||
name = gimp_image_get_filename (images[i]);
|
name = gimp_image_get_name (images[i]);
|
||||||
basename = g_path_get_basename (name);
|
|
||||||
|
image_label = g_strdup_printf ("%s-%d", name, images[i]);
|
||||||
|
|
||||||
g_free (name);
|
g_free (name);
|
||||||
|
|
||||||
image_label = g_strdup_printf ("%s-%d", basename, images[i]);
|
|
||||||
|
|
||||||
g_free (basename);
|
|
||||||
|
|
||||||
layers = gimp_image_get_layers (images[i], &nlayers);
|
layers = gimp_image_get_layers (images[i], &nlayers);
|
||||||
for (j = 0; j < nlayers; j++)
|
for (j = 0; j < nlayers; j++)
|
||||||
if (!constraint || (* constraint) (images[i], layers[j], data))
|
if (!constraint || (* constraint) (images[i], layers[j], data))
|
||||||
@ -241,7 +238,8 @@ gimp_layer_menu_new (GimpConstraintFunc constraint,
|
|||||||
gtk_widget_show(vbox);
|
gtk_widget_show(vbox);
|
||||||
|
|
||||||
wcolor_box = gtk_preview_new(GTK_PREVIEW_COLOR);
|
wcolor_box = gtk_preview_new(GTK_PREVIEW_COLOR);
|
||||||
gtk_preview_set_dither (GTK_PREVIEW (wcolor_box), GDK_RGB_DITHER_MAX);
|
gtk_preview_set_dither (GTK_PREVIEW (wcolor_box),
|
||||||
|
GDK_RGB_DITHER_MAX);
|
||||||
|
|
||||||
fill_preview_with_thumb (wcolor_box,
|
fill_preview_with_thumb (wcolor_box,
|
||||||
layers[j],
|
layers[j],
|
||||||
@ -282,7 +280,7 @@ gimp_layer_menu_new (GimpConstraintFunc constraint,
|
|||||||
|
|
||||||
if (k == 0)
|
if (k == 0)
|
||||||
{
|
{
|
||||||
menuitem = gtk_menu_item_new_with_label ("none");
|
menuitem = gtk_menu_item_new_with_label (_("None"));
|
||||||
gtk_widget_set_sensitive (menuitem, FALSE);
|
gtk_widget_set_sensitive (menuitem, FALSE);
|
||||||
gtk_menu_shell_append (GTK_MENU_SHELL (menu), menuitem);
|
gtk_menu_shell_append (GTK_MENU_SHELL (menu), menuitem);
|
||||||
gtk_widget_show (menuitem);
|
gtk_widget_show (menuitem);
|
||||||
@ -303,7 +301,6 @@ gimp_channel_menu_new (GimpConstraintFunc constraint,
|
|||||||
GtkWidget *menu;
|
GtkWidget *menu;
|
||||||
GtkWidget *menuitem;
|
GtkWidget *menuitem;
|
||||||
gchar *name;
|
gchar *name;
|
||||||
gchar *basename;
|
|
||||||
gchar *image_label;
|
gchar *image_label;
|
||||||
gchar *label;
|
gchar *label;
|
||||||
gint32 *images;
|
gint32 *images;
|
||||||
@ -323,14 +320,12 @@ gimp_channel_menu_new (GimpConstraintFunc constraint,
|
|||||||
for (i = 0, k = 0; i < nimages; i++)
|
for (i = 0, k = 0; i < nimages; i++)
|
||||||
if (!constraint || (* constraint) (images[i], -1, data))
|
if (!constraint || (* constraint) (images[i], -1, data))
|
||||||
{
|
{
|
||||||
name = gimp_image_get_filename (images[i]);
|
name = gimp_image_get_name (images[i]);
|
||||||
basename = g_path_get_basename (name);
|
|
||||||
|
image_label = g_strdup_printf ("%s-%d", name, images[i]);
|
||||||
|
|
||||||
g_free (name);
|
g_free (name);
|
||||||
|
|
||||||
image_label = g_strdup_printf ("%s-%d", basename, images[i]);
|
|
||||||
|
|
||||||
g_free (basename);
|
|
||||||
|
|
||||||
channels = gimp_image_get_channels (images[i], &nchannels);
|
channels = gimp_image_get_channels (images[i], &nchannels);
|
||||||
for (j = 0; j < nchannels; j++)
|
for (j = 0; j < nchannels; j++)
|
||||||
if (!constraint || (* constraint) (images[i], channels[j], data))
|
if (!constraint || (* constraint) (images[i], channels[j], data))
|
||||||
@ -400,7 +395,7 @@ gimp_channel_menu_new (GimpConstraintFunc constraint,
|
|||||||
|
|
||||||
if (k == 0)
|
if (k == 0)
|
||||||
{
|
{
|
||||||
menuitem = gtk_menu_item_new_with_label ("none");
|
menuitem = gtk_menu_item_new_with_label (_("None"));
|
||||||
gtk_widget_set_sensitive (menuitem, FALSE);
|
gtk_widget_set_sensitive (menuitem, FALSE);
|
||||||
gtk_menu_shell_append (GTK_MENU_SHELL (menu), menuitem);
|
gtk_menu_shell_append (GTK_MENU_SHELL (menu), menuitem);
|
||||||
gtk_widget_show (menuitem);
|
gtk_widget_show (menuitem);
|
||||||
@ -421,7 +416,6 @@ gimp_drawable_menu_new (GimpConstraintFunc constraint,
|
|||||||
GtkWidget *menu;
|
GtkWidget *menu;
|
||||||
GtkWidget *menuitem;
|
GtkWidget *menuitem;
|
||||||
gchar *name;
|
gchar *name;
|
||||||
gchar *basename;
|
|
||||||
gchar *image_label;
|
gchar *image_label;
|
||||||
gchar *label;
|
gchar *label;
|
||||||
gint32 *images;
|
gint32 *images;
|
||||||
@ -444,14 +438,12 @@ gimp_drawable_menu_new (GimpConstraintFunc constraint,
|
|||||||
for (i = 0, k = 0; i < nimages; i++)
|
for (i = 0, k = 0; i < nimages; i++)
|
||||||
if (!constraint || (* constraint) (images[i], -1, data))
|
if (!constraint || (* constraint) (images[i], -1, data))
|
||||||
{
|
{
|
||||||
name = gimp_image_get_filename (images[i]);
|
name = gimp_image_get_name (images[i]);
|
||||||
basename = g_path_get_basename (name);
|
|
||||||
|
image_label = g_strdup_printf ("%s-%d", name, images[i]);
|
||||||
|
|
||||||
g_free (name);
|
g_free (name);
|
||||||
|
|
||||||
image_label = g_strdup_printf ("%s-%d", basename, images[i]);
|
|
||||||
|
|
||||||
g_free (basename);
|
|
||||||
|
|
||||||
layers = gimp_image_get_layers (images[i], &nlayers);
|
layers = gimp_image_get_layers (images[i], &nlayers);
|
||||||
|
|
||||||
for (j = 0; j < nlayers; j++)
|
for (j = 0; j < nlayers; j++)
|
||||||
@ -585,7 +577,7 @@ gimp_drawable_menu_new (GimpConstraintFunc constraint,
|
|||||||
|
|
||||||
if (k == 0)
|
if (k == 0)
|
||||||
{
|
{
|
||||||
menuitem = gtk_menu_item_new_with_label ("none");
|
menuitem = gtk_menu_item_new_with_label (_("None"));
|
||||||
gtk_widget_set_sensitive (menuitem, FALSE);
|
gtk_widget_set_sensitive (menuitem, FALSE);
|
||||||
gtk_menu_shell_append (GTK_MENU_SHELL (menu), menuitem);
|
gtk_menu_shell_append (GTK_MENU_SHELL (menu), menuitem);
|
||||||
gtk_widget_show (menuitem);
|
gtk_widget_show (menuitem);
|
||||||
|
@ -288,7 +288,7 @@ deinterlace_dialog (void)
|
|||||||
&DeinterlaceValue,
|
&DeinterlaceValue,
|
||||||
GINT_TO_POINTER (DeinterlaceValue),
|
GINT_TO_POINTER (DeinterlaceValue),
|
||||||
|
|
||||||
_("Keep _Odd Fields"),
|
_("Keep O_dd Fields"),
|
||||||
GINT_TO_POINTER (ODD_FIELDS), NULL,
|
GINT_TO_POINTER (ODD_FIELDS), NULL,
|
||||||
|
|
||||||
_("Keep _Even Fields"),
|
_("Keep _Even Fields"),
|
||||||
|
@ -1,10 +1,16 @@
|
|||||||
|
2002-05-13 Sven Neumann <sven@gimp.org>
|
||||||
|
|
||||||
|
* POTFILES.in: added libgimp/gimpmenu.c.
|
||||||
|
|
||||||
|
* de.po: updated german translation.
|
||||||
|
|
||||||
2002-05-06 Pablo Saratxaga <pablo@mandrakesoft.com>
|
2002-05-06 Pablo Saratxaga <pablo@mandrakesoft.com>
|
||||||
|
|
||||||
* vi.po: Added Vietnamese file
|
* vi.po: Added Vietnamese file.
|
||||||
|
|
||||||
2002-04-30 Duarte Loreto <happyguy_pt@hotmail.com>
|
2002-04-30 Duarte Loreto <happyguy_pt@hotmail.com>
|
||||||
|
|
||||||
* pt.po: Converted Portuguese translation to UTF-8.
|
* pt.po: Converted Portuguese translation to UTF-8.
|
||||||
|
|
||||||
2002-04-15 Christophe Merlet <redfox@eikonex.org>
|
2002-04-15 Christophe Merlet <redfox@eikonex.org>
|
||||||
|
|
||||||
|
@ -2,6 +2,7 @@
|
|||||||
# marked to allow runtime translation of messages
|
# marked to allow runtime translation of messages
|
||||||
|
|
||||||
libgimp/gimpexport.c
|
libgimp/gimpexport.c
|
||||||
|
libgimp/gimpmenu.c
|
||||||
libgimp/gimpunit.c
|
libgimp/gimpunit.c
|
||||||
libgimpwidgets/gimpcolorbutton.c
|
libgimpwidgets/gimpcolorbutton.c
|
||||||
libgimpwidgets/gimpfileselection.c
|
libgimpwidgets/gimpfileselection.c
|
||||||
|
@ -6,9 +6,9 @@
|
|||||||
#
|
#
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: GIMP 1.1.24\n"
|
"Project-Id-Version: GIMP 1.3.6\n"
|
||||||
"POT-Creation-Date: 2002-03-28 14:51+0100\n"
|
"POT-Creation-Date: 2002-05-13 15:12+0200\n"
|
||||||
"PO-Revision-Date: 2002-02-28 11:20+0100\n"
|
"PO-Revision-Date: 2002-05-13 15:15+0200\n"
|
||||||
"Last-Translator: Sven Neumann <sven@gimp.org>\n"
|
"Last-Translator: Sven Neumann <sven@gimp.org>\n"
|
||||||
"Language-Team: German <de@li.org>\n"
|
"Language-Team: German <de@li.org>\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
@ -24,9 +24,8 @@ msgid "Merge Visible Layers"
|
|||||||
msgstr "Sichtbare Ebenen vereinen"
|
msgstr "Sichtbare Ebenen vereinen"
|
||||||
|
|
||||||
#: libgimp/gimpexport.c:179
|
#: libgimp/gimpexport.c:179
|
||||||
#, fuzzy
|
|
||||||
msgid "can't handle layer offsets, size or opacity"
|
msgid "can't handle layer offsets, size or opacity"
|
||||||
msgstr "kennt keine Ebenen"
|
msgstr "kennt keine Ebeneneigenschaften wie Versatz, Grösse und Transparenz"
|
||||||
|
|
||||||
#: libgimp/gimpexport.c:188 libgimp/gimpexport.c:197
|
#: libgimp/gimpexport.c:188 libgimp/gimpexport.c:197
|
||||||
msgid "can only handle layers as animation frames"
|
msgid "can only handle layers as animation frames"
|
||||||
@ -115,6 +114,8 @@ msgid ""
|
|||||||
"You are about to save %s as %s.\n"
|
"You are about to save %s as %s.\n"
|
||||||
"This will not save the visible layers."
|
"This will not save the visible layers."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
"Sie sichern %s als %s.\n"
|
||||||
|
"Die sichtbaren Ebenen werden dabei nicht gesichert."
|
||||||
|
|
||||||
#.
|
#.
|
||||||
#. * Plug-ins must have called gtk_init () before calling gimp_export ().
|
#. * Plug-ins must have called gtk_init () before calling gimp_export ().
|
||||||
@ -146,11 +147,16 @@ msgstr "Dieser Vorgang wird das Originalbild nicht verändern."
|
|||||||
|
|
||||||
#: libgimp/gimpexport.c:571
|
#: libgimp/gimpexport.c:571
|
||||||
msgid "a layer mask"
|
msgid "a layer mask"
|
||||||
msgstr ""
|
msgstr "eine Ebenenmaske"
|
||||||
|
|
||||||
#: libgimp/gimpexport.c:573
|
#: libgimp/gimpexport.c:573
|
||||||
msgid "a channel (saved selection)"
|
msgid "a channel (saved selection)"
|
||||||
msgstr ""
|
msgstr "einen Kanal (gesicherte Selektion)"
|
||||||
|
|
||||||
|
#: libgimp/gimpmenu.c:163 libgimp/gimpmenu.c:283 libgimp/gimpmenu.c:398
|
||||||
|
#: libgimp/gimpmenu.c:580
|
||||||
|
msgid "None"
|
||||||
|
msgstr "Keine"
|
||||||
|
|
||||||
#: libgimp/gimpunit.c:56
|
#: libgimp/gimpunit.c:56
|
||||||
msgid "percent"
|
msgid "percent"
|
||||||
@ -212,19 +218,19 @@ msgstr "_Rücksetzen"
|
|||||||
msgid "Visible"
|
msgid "Visible"
|
||||||
msgstr "Sichtbar"
|
msgstr "Sichtbar"
|
||||||
|
|
||||||
#: libgimpwidgets/gimpstock.c:155
|
#: libgimpwidgets/gimpstock.c:159
|
||||||
msgid "Transform"
|
msgid "Transform"
|
||||||
msgstr "Transformation"
|
msgstr "Transformation"
|
||||||
|
|
||||||
#: libgimpwidgets/gimpstock.c:158
|
#: libgimpwidgets/gimpstock.c:162
|
||||||
msgid "Rotate"
|
msgid "Rotate"
|
||||||
msgstr "Rotieren"
|
msgstr "Rotieren"
|
||||||
|
|
||||||
#: libgimpwidgets/gimpstock.c:159
|
#: libgimpwidgets/gimpstock.c:163
|
||||||
msgid "Scale"
|
msgid "Scale"
|
||||||
msgstr "Skalieren"
|
msgstr "Skalieren"
|
||||||
|
|
||||||
#: libgimpwidgets/gimpstock.c:160
|
#: libgimpwidgets/gimpstock.c:164
|
||||||
msgid "Shear"
|
msgid "Shear"
|
||||||
msgstr "Scheren"
|
msgstr "Scheren"
|
||||||
|
|
||||||
@ -244,7 +250,7 @@ msgstr "Einheit"
|
|||||||
msgid "Factor"
|
msgid "Factor"
|
||||||
msgstr "Faktor"
|
msgstr "Faktor"
|
||||||
|
|
||||||
#: libgimpwidgets/gimpwidgets.c:842
|
#: libgimpwidgets/gimpwidgets.c:845
|
||||||
msgid ""
|
msgid ""
|
||||||
"If the \"Time\" button is not pressed, use this value for random number "
|
"If the \"Time\" button is not pressed, use this value for random number "
|
||||||
"generator seed - this allows you to repeat a given \"random\" operation"
|
"generator seed - this allows you to repeat a given \"random\" operation"
|
||||||
@ -253,11 +259,11 @@ msgstr ""
|
|||||||
"Zufallsgenerator - dies ermgöglicht es \"zufällige\" Funktionen zu "
|
"Zufallsgenerator - dies ermgöglicht es \"zufällige\" Funktionen zu "
|
||||||
"wiederholen"
|
"wiederholen"
|
||||||
|
|
||||||
#: libgimpwidgets/gimpwidgets.c:847
|
#: libgimpwidgets/gimpwidgets.c:850
|
||||||
msgid "Time"
|
msgid "Time"
|
||||||
msgstr "Zeit"
|
msgstr "Zeit"
|
||||||
|
|
||||||
#: libgimpwidgets/gimpwidgets.c:856
|
#: libgimpwidgets/gimpwidgets.c:859
|
||||||
msgid ""
|
msgid ""
|
||||||
"Seed random number generator from the current time - this guarantees a "
|
"Seed random number generator from the current time - this guarantees a "
|
||||||
"reasonable randomization"
|
"reasonable randomization"
|
||||||
@ -265,17 +271,14 @@ msgstr ""
|
|||||||
"Speise Zufallsgenerator mit der aktuellen Zeit - dies garantiert eine "
|
"Speise Zufallsgenerator mit der aktuellen Zeit - dies garantiert eine "
|
||||||
"vernünftige Wahrscheinlichkeit"
|
"vernünftige Wahrscheinlichkeit"
|
||||||
|
|
||||||
#: libgimpwidgets/gimpwidgets.c:1170
|
#: libgimpwidgets/gimpwidgets.c:1173
|
||||||
msgid "Bytes"
|
msgid "Bytes"
|
||||||
msgstr "Byte"
|
msgstr "Byte"
|
||||||
|
|
||||||
#: libgimpwidgets/gimpwidgets.c:1171
|
#: libgimpwidgets/gimpwidgets.c:1174
|
||||||
msgid "KiloBytes"
|
msgid "KiloBytes"
|
||||||
msgstr "KiloByte"
|
msgstr "KiloByte"
|
||||||
|
|
||||||
#: libgimpwidgets/gimpwidgets.c:1172
|
#: libgimpwidgets/gimpwidgets.c:1175
|
||||||
msgid "MegaBytes"
|
msgid "MegaBytes"
|
||||||
msgstr "MegaByte"
|
msgstr "MegaByte"
|
||||||
|
|
||||||
#~ msgid "Paste"
|
|
||||||
#~ msgstr "Einfügen"
|
|
||||||
|
Reference in New Issue
Block a user