diff --git a/ChangeLog b/ChangeLog index 9b825bf331..34118cf1ee 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,18 @@ +2000-05-07 Sven Neumann + + * gimprc.in + * gimprc.win32 + * app/gimprc.c: set default image size back to 256x256, default + to local paint options and info-window-follows-mouse. + + * app/brightness_contrast.c + * app/docindex.c + * app/hue_saturation.c: picky changes on some labels. + + * app/tips_dialog.c: applied (sort of) gimp-quinet-20000504-0, + which replaces the message "Show tip next time" in the + Tip Of The Day dialog with "Show tip next time GIMP starts". + 2000-05-06 Nick Lamb * plug-ins/bmp/bmpread.c: Fixed long standing "RLE" bug, but diff --git a/app/base/hue-saturation.c b/app/base/hue-saturation.c index dd9075d2cb..d0d7db540e 100644 --- a/app/base/hue-saturation.c +++ b/app/base/hue-saturation.c @@ -381,7 +381,7 @@ hue_saturation_dialog_new (void) gtk_container_add (GTK_CONTAINER (GTK_DIALOG (hsd->shell)->vbox), main_vbox); /* The main hbox containing hue partitions and sliders */ - main_hbox = gtk_hbox_new (FALSE, 4); + main_hbox = gtk_hbox_new (FALSE, 12); gtk_box_pack_start (GTK_BOX (main_vbox), main_hbox, FALSE, FALSE, 0); /* The table containing hue partitions */ @@ -451,7 +451,7 @@ hue_saturation_dialog_new (void) gtk_box_pack_start (GTK_BOX (vbox), table, FALSE, FALSE, 0); /* Create the hue scale widget */ - label = gtk_label_new (_("Hue")); + label = gtk_label_new (_("Hue:")); gtk_misc_set_alignment (GTK_MISC (label), 1.0, 1.0); gtk_table_attach (GTK_TABLE (table), label, 0, 1, 0, 1, GTK_SHRINK | GTK_FILL, GTK_SHRINK | GTK_FILL, 0, 0); @@ -485,7 +485,7 @@ hue_saturation_dialog_new (void) gtk_widget_show (abox); /* Create the lightness scale widget */ - label = gtk_label_new (_("Lightness")); + label = gtk_label_new (_("Lightness:")); gtk_misc_set_alignment (GTK_MISC (label), 1.0, 1.0); gtk_table_attach (GTK_TABLE (table), label, 0, 1, 1, 2, GTK_SHRINK | GTK_FILL, GTK_SHRINK | GTK_FILL, 0, 0); @@ -519,7 +519,7 @@ hue_saturation_dialog_new (void) gtk_widget_show (abox); /* Create the saturation scale widget */ - label = gtk_label_new (_("Saturation")); + label = gtk_label_new (_("Saturation:")); gtk_misc_set_alignment (GTK_MISC (label), 1.0, 1.0); gtk_table_attach (GTK_TABLE (table), label, 0, 1, 2, 3, GTK_SHRINK | GTK_FILL, GTK_SHRINK | GTK_FILL, 0, 0); diff --git a/app/brightness_contrast.c b/app/brightness_contrast.c index 6ea8c90b4c..bdf569d786 100644 --- a/app/brightness_contrast.c +++ b/app/brightness_contrast.c @@ -231,7 +231,7 @@ brightness_contrast_dialog_new (void) gtk_box_pack_start (GTK_BOX (vbox), table, FALSE, FALSE, 0); /* Create the brightness scale widget */ - label = gtk_label_new (_("Brightness")); + label = gtk_label_new (_("Brightness:")); gtk_misc_set_alignment (GTK_MISC (label), 1.0, 1.0); gtk_table_attach (GTK_TABLE (table), label, 0, 1, 0, 1, GTK_SHRINK | GTK_FILL, GTK_SHRINK | GTK_FILL, 0, 0); @@ -262,7 +262,7 @@ brightness_contrast_dialog_new (void) gtk_widget_show (abox); /* Create the contrast scale widget */ - label = gtk_label_new (_("Contrast")); + label = gtk_label_new (_("Contrast:")); gtk_misc_set_alignment (GTK_MISC (label), 1.0, 1.0); gtk_table_attach (GTK_TABLE (table), label, 0, 1, 1, 2, GTK_SHRINK | GTK_FILL, GTK_SHRINK | GTK_FILL, 0, 0); diff --git a/app/dialogs/tips-dialog.c b/app/dialogs/tips-dialog.c index 8302ebe0f6..303ee45347 100644 --- a/app/dialogs/tips-dialog.c +++ b/app/dialogs/tips-dialog.c @@ -141,7 +141,8 @@ tips_dialog_create (void) gtk_box_pack_end (GTK_BOX (vbox), hbox, FALSE, FALSE, 0); gtk_widget_show (hbox); - button = gtk_check_button_new_with_label (_("Show tip next time")); + button = + gtk_check_button_new_with_label (_("Show tip next time GIMP starts")); gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (button), show_tips); gtk_signal_connect (GTK_OBJECT (button), "toggled", diff --git a/app/docindex.c b/app/docindex.c index 2b5c9a37e1..46ae1ecc23 100644 --- a/app/docindex.c +++ b/app/docindex.c @@ -112,7 +112,7 @@ static OpsButton ops_buttons[] = { folder_xpm, idea_open_callback, open_ext_callbacks, N_("Open the selected entry\n" " Raise window if already open\n" - " Load Image dialog"), NULL, + " Load Image dialog"), NULL, NULL, 0 }, { raise_xpm, idea_up_callback, raise_ext_callbacks, N_("Move the selected entry up in the index\n" diff --git a/app/gimprc.c b/app/gimprc.c index 69ac7642e4..3b589efa0a 100644 --- a/app/gimprc.c +++ b/app/gimprc.c @@ -144,9 +144,8 @@ gboolean confirm_on_close = TRUE; gboolean save_session_info = TRUE; gboolean save_device_status = FALSE; gboolean always_restore_session = TRUE; -gint default_width = 983; -gint default_height = 857; -/* temporary default size increase to stress test stuff. -- austin 7/11/99 */ +gint default_width = 256; +gint default_height = 256; gint default_type = RGB; gdouble default_xresolution = 72.0; gdouble default_yresolution = 72.0; @@ -161,14 +160,14 @@ gdouble monitor_yres = 72.0; gboolean using_xserver_resolution = FALSE; gint num_processors = 1; gchar *image_title_format = NULL; -gboolean global_paint_options = TRUE; +gboolean global_paint_options = FALSE; gboolean show_indicators = TRUE; gint max_new_image_size = 33554432; /* 32 MB */ gint thumbnail_mode = 1; gboolean trust_dirty_flag = FALSE; gboolean use_help = TRUE; gboolean nav_window_per_display = FALSE; -gboolean info_window_follows_mouse = FALSE; +gboolean info_window_follows_mouse = TRUE; gint help_browser = HELP_BROWSER_GIMP; extern char * module_db_load_inhibit; diff --git a/app/gui/tips-dialog.c b/app/gui/tips-dialog.c index 8302ebe0f6..303ee45347 100644 --- a/app/gui/tips-dialog.c +++ b/app/gui/tips-dialog.c @@ -141,7 +141,8 @@ tips_dialog_create (void) gtk_box_pack_end (GTK_BOX (vbox), hbox, FALSE, FALSE, 0); gtk_widget_show (hbox); - button = gtk_check_button_new_with_label (_("Show tip next time")); + button = + gtk_check_button_new_with_label (_("Show tip next time GIMP starts")); gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (button), show_tips); gtk_signal_connect (GTK_OBJECT (button), "toggled", diff --git a/app/hue_saturation.c b/app/hue_saturation.c index dd9075d2cb..d0d7db540e 100644 --- a/app/hue_saturation.c +++ b/app/hue_saturation.c @@ -381,7 +381,7 @@ hue_saturation_dialog_new (void) gtk_container_add (GTK_CONTAINER (GTK_DIALOG (hsd->shell)->vbox), main_vbox); /* The main hbox containing hue partitions and sliders */ - main_hbox = gtk_hbox_new (FALSE, 4); + main_hbox = gtk_hbox_new (FALSE, 12); gtk_box_pack_start (GTK_BOX (main_vbox), main_hbox, FALSE, FALSE, 0); /* The table containing hue partitions */ @@ -451,7 +451,7 @@ hue_saturation_dialog_new (void) gtk_box_pack_start (GTK_BOX (vbox), table, FALSE, FALSE, 0); /* Create the hue scale widget */ - label = gtk_label_new (_("Hue")); + label = gtk_label_new (_("Hue:")); gtk_misc_set_alignment (GTK_MISC (label), 1.0, 1.0); gtk_table_attach (GTK_TABLE (table), label, 0, 1, 0, 1, GTK_SHRINK | GTK_FILL, GTK_SHRINK | GTK_FILL, 0, 0); @@ -485,7 +485,7 @@ hue_saturation_dialog_new (void) gtk_widget_show (abox); /* Create the lightness scale widget */ - label = gtk_label_new (_("Lightness")); + label = gtk_label_new (_("Lightness:")); gtk_misc_set_alignment (GTK_MISC (label), 1.0, 1.0); gtk_table_attach (GTK_TABLE (table), label, 0, 1, 1, 2, GTK_SHRINK | GTK_FILL, GTK_SHRINK | GTK_FILL, 0, 0); @@ -519,7 +519,7 @@ hue_saturation_dialog_new (void) gtk_widget_show (abox); /* Create the saturation scale widget */ - label = gtk_label_new (_("Saturation")); + label = gtk_label_new (_("Saturation:")); gtk_misc_set_alignment (GTK_MISC (label), 1.0, 1.0); gtk_table_attach (GTK_TABLE (table), label, 0, 1, 2, 3, GTK_SHRINK | GTK_FILL, GTK_SHRINK | GTK_FILL, 0, 0); diff --git a/app/tips_dialog.c b/app/tips_dialog.c index 8302ebe0f6..303ee45347 100644 --- a/app/tips_dialog.c +++ b/app/tips_dialog.c @@ -141,7 +141,8 @@ tips_dialog_create (void) gtk_box_pack_end (GTK_BOX (vbox), hbox, FALSE, FALSE, 0); gtk_widget_show (hbox); - button = gtk_check_button_new_with_label (_("Show tip next time")); + button = + gtk_check_button_new_with_label (_("Show tip next time GIMP starts")); gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (button), show_tips); gtk_signal_connect (GTK_OBJECT (button), "toggled", diff --git a/app/tools/brightness_contrast.c b/app/tools/brightness_contrast.c index 6ea8c90b4c..bdf569d786 100644 --- a/app/tools/brightness_contrast.c +++ b/app/tools/brightness_contrast.c @@ -231,7 +231,7 @@ brightness_contrast_dialog_new (void) gtk_box_pack_start (GTK_BOX (vbox), table, FALSE, FALSE, 0); /* Create the brightness scale widget */ - label = gtk_label_new (_("Brightness")); + label = gtk_label_new (_("Brightness:")); gtk_misc_set_alignment (GTK_MISC (label), 1.0, 1.0); gtk_table_attach (GTK_TABLE (table), label, 0, 1, 0, 1, GTK_SHRINK | GTK_FILL, GTK_SHRINK | GTK_FILL, 0, 0); @@ -262,7 +262,7 @@ brightness_contrast_dialog_new (void) gtk_widget_show (abox); /* Create the contrast scale widget */ - label = gtk_label_new (_("Contrast")); + label = gtk_label_new (_("Contrast:")); gtk_misc_set_alignment (GTK_MISC (label), 1.0, 1.0); gtk_table_attach (GTK_TABLE (table), label, 0, 1, 1, 2, GTK_SHRINK | GTK_FILL, GTK_SHRINK | GTK_FILL, 0, 0); diff --git a/app/tools/gimpbrightnesscontrasttool.c b/app/tools/gimpbrightnesscontrasttool.c index 6ea8c90b4c..bdf569d786 100644 --- a/app/tools/gimpbrightnesscontrasttool.c +++ b/app/tools/gimpbrightnesscontrasttool.c @@ -231,7 +231,7 @@ brightness_contrast_dialog_new (void) gtk_box_pack_start (GTK_BOX (vbox), table, FALSE, FALSE, 0); /* Create the brightness scale widget */ - label = gtk_label_new (_("Brightness")); + label = gtk_label_new (_("Brightness:")); gtk_misc_set_alignment (GTK_MISC (label), 1.0, 1.0); gtk_table_attach (GTK_TABLE (table), label, 0, 1, 0, 1, GTK_SHRINK | GTK_FILL, GTK_SHRINK | GTK_FILL, 0, 0); @@ -262,7 +262,7 @@ brightness_contrast_dialog_new (void) gtk_widget_show (abox); /* Create the contrast scale widget */ - label = gtk_label_new (_("Contrast")); + label = gtk_label_new (_("Contrast:")); gtk_misc_set_alignment (GTK_MISC (label), 1.0, 1.0); gtk_table_attach (GTK_TABLE (table), label, 0, 1, 1, 2, GTK_SHRINK | GTK_FILL, GTK_SHRINK | GTK_FILL, 0, 0); diff --git a/app/tools/gimphuesaturationtool.c b/app/tools/gimphuesaturationtool.c index dd9075d2cb..d0d7db540e 100644 --- a/app/tools/gimphuesaturationtool.c +++ b/app/tools/gimphuesaturationtool.c @@ -381,7 +381,7 @@ hue_saturation_dialog_new (void) gtk_container_add (GTK_CONTAINER (GTK_DIALOG (hsd->shell)->vbox), main_vbox); /* The main hbox containing hue partitions and sliders */ - main_hbox = gtk_hbox_new (FALSE, 4); + main_hbox = gtk_hbox_new (FALSE, 12); gtk_box_pack_start (GTK_BOX (main_vbox), main_hbox, FALSE, FALSE, 0); /* The table containing hue partitions */ @@ -451,7 +451,7 @@ hue_saturation_dialog_new (void) gtk_box_pack_start (GTK_BOX (vbox), table, FALSE, FALSE, 0); /* Create the hue scale widget */ - label = gtk_label_new (_("Hue")); + label = gtk_label_new (_("Hue:")); gtk_misc_set_alignment (GTK_MISC (label), 1.0, 1.0); gtk_table_attach (GTK_TABLE (table), label, 0, 1, 0, 1, GTK_SHRINK | GTK_FILL, GTK_SHRINK | GTK_FILL, 0, 0); @@ -485,7 +485,7 @@ hue_saturation_dialog_new (void) gtk_widget_show (abox); /* Create the lightness scale widget */ - label = gtk_label_new (_("Lightness")); + label = gtk_label_new (_("Lightness:")); gtk_misc_set_alignment (GTK_MISC (label), 1.0, 1.0); gtk_table_attach (GTK_TABLE (table), label, 0, 1, 1, 2, GTK_SHRINK | GTK_FILL, GTK_SHRINK | GTK_FILL, 0, 0); @@ -519,7 +519,7 @@ hue_saturation_dialog_new (void) gtk_widget_show (abox); /* Create the saturation scale widget */ - label = gtk_label_new (_("Saturation")); + label = gtk_label_new (_("Saturation:")); gtk_misc_set_alignment (GTK_MISC (label), 1.0, 1.0); gtk_table_attach (GTK_TABLE (table), label, 0, 1, 2, 3, GTK_SHRINK | GTK_FILL, GTK_SHRINK | GTK_FILL, 0, 0); diff --git a/app/tools/hue_saturation.c b/app/tools/hue_saturation.c index dd9075d2cb..d0d7db540e 100644 --- a/app/tools/hue_saturation.c +++ b/app/tools/hue_saturation.c @@ -381,7 +381,7 @@ hue_saturation_dialog_new (void) gtk_container_add (GTK_CONTAINER (GTK_DIALOG (hsd->shell)->vbox), main_vbox); /* The main hbox containing hue partitions and sliders */ - main_hbox = gtk_hbox_new (FALSE, 4); + main_hbox = gtk_hbox_new (FALSE, 12); gtk_box_pack_start (GTK_BOX (main_vbox), main_hbox, FALSE, FALSE, 0); /* The table containing hue partitions */ @@ -451,7 +451,7 @@ hue_saturation_dialog_new (void) gtk_box_pack_start (GTK_BOX (vbox), table, FALSE, FALSE, 0); /* Create the hue scale widget */ - label = gtk_label_new (_("Hue")); + label = gtk_label_new (_("Hue:")); gtk_misc_set_alignment (GTK_MISC (label), 1.0, 1.0); gtk_table_attach (GTK_TABLE (table), label, 0, 1, 0, 1, GTK_SHRINK | GTK_FILL, GTK_SHRINK | GTK_FILL, 0, 0); @@ -485,7 +485,7 @@ hue_saturation_dialog_new (void) gtk_widget_show (abox); /* Create the lightness scale widget */ - label = gtk_label_new (_("Lightness")); + label = gtk_label_new (_("Lightness:")); gtk_misc_set_alignment (GTK_MISC (label), 1.0, 1.0); gtk_table_attach (GTK_TABLE (table), label, 0, 1, 1, 2, GTK_SHRINK | GTK_FILL, GTK_SHRINK | GTK_FILL, 0, 0); @@ -519,7 +519,7 @@ hue_saturation_dialog_new (void) gtk_widget_show (abox); /* Create the saturation scale widget */ - label = gtk_label_new (_("Saturation")); + label = gtk_label_new (_("Saturation:")); gtk_misc_set_alignment (GTK_MISC (label), 1.0, 1.0); gtk_table_attach (GTK_TABLE (table), label, 0, 1, 2, 3, GTK_SHRINK | GTK_FILL, GTK_SHRINK | GTK_FILL, 0, 0); diff --git a/etc/gimprc.in b/etc/gimprc.in index 2f07d9ad13..969ddd217d 100644 --- a/etc/gimprc.in +++ b/etc/gimprc.in @@ -279,10 +279,11 @@ (image-title-format "%D*%f-%p.%i (%t) %z%%") # Global paint options -# By default options for the paint tools are global, e.g. all paint tools -# use the options you specify in the brushes dialog. You can change this -# so each tool has its own settings by uncommenting the next line. -# (no-global-paint-options) +# By default options for the paint tools are local, e.g. all paint tools +# use the options you specify in their tool options dialog. If you wish +# to have global settings in the brushes dialog that affect all paint tools, +# you can change this by uncommenting the next line. +# (global-paint-options) # Maximal new image size # To prevent mistakes Gimp will warn you if you try to create a very large diff --git a/etc/gimprc.win32 b/etc/gimprc.win32 index 860b02010c..f57e4ad8ba 100644 --- a/etc/gimprc.win32 +++ b/etc/gimprc.win32 @@ -259,10 +259,11 @@ (image-title-format "%f-%p.%i (%t) %z%%") # Global paint options -# By default options for the paint tools are global, e.g. all paint tools -# use the options you specify in the brushes dialog. You can change this -# so each tool has its own settings by uncommenting the next line. -# (no-global-paint-options) +# By default options for the paint tools are local, e.g. all paint tools +# use the options you specify in their tool options dialog. If you wish +# to have global settings in the brushes dialog that affect all paint tools, +# you can change this by uncommenting the next line. +# (global-paint-options) # Maximal new image size # To prevent mistakes Gimp will warn you if you try to create a very large diff --git a/gimprc.in b/gimprc.in index 2f07d9ad13..969ddd217d 100644 --- a/gimprc.in +++ b/gimprc.in @@ -279,10 +279,11 @@ (image-title-format "%D*%f-%p.%i (%t) %z%%") # Global paint options -# By default options for the paint tools are global, e.g. all paint tools -# use the options you specify in the brushes dialog. You can change this -# so each tool has its own settings by uncommenting the next line. -# (no-global-paint-options) +# By default options for the paint tools are local, e.g. all paint tools +# use the options you specify in their tool options dialog. If you wish +# to have global settings in the brushes dialog that affect all paint tools, +# you can change this by uncommenting the next line. +# (global-paint-options) # Maximal new image size # To prevent mistakes Gimp will warn you if you try to create a very large diff --git a/gimprc.win32 b/gimprc.win32 index 860b02010c..f57e4ad8ba 100644 --- a/gimprc.win32 +++ b/gimprc.win32 @@ -259,10 +259,11 @@ (image-title-format "%f-%p.%i (%t) %z%%") # Global paint options -# By default options for the paint tools are global, e.g. all paint tools -# use the options you specify in the brushes dialog. You can change this -# so each tool has its own settings by uncommenting the next line. -# (no-global-paint-options) +# By default options for the paint tools are local, e.g. all paint tools +# use the options you specify in their tool options dialog. If you wish +# to have global settings in the brushes dialog that affect all paint tools, +# you can change this by uncommenting the next line. +# (global-paint-options) # Maximal new image size # To prevent mistakes Gimp will warn you if you try to create a very large diff --git a/po/ChangeLog b/po/ChangeLog index 6517a984aa..364ad29fb1 100644 --- a/po/ChangeLog +++ b/po/ChangeLog @@ -1,3 +1,7 @@ +2000-05-07 Sven Neumann + + * de.po: updated german translation + 2000-05-04 Kjartan Maraas * no.po: Updated Norwegian translation. diff --git a/po/de.po b/po/de.po index 6a84515b15..9e9d7dc00e 100644 --- a/po/de.po +++ b/po/de.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: GIMP 1.1.21\n" -"POT-Creation-Date: 2000-05-04 10:29+0200\n" -"PO-Revision-Date: 2000-05-04 10:33+02:00\n" +"POT-Creation-Date: 2000-05-07 11:42+0200\n" +"PO-Revision-Date: 2000-05-07 11:54+02:00\n" "Last-Translator: Sven Neumann \n" "Language-Team: German \n" "MIME-Version: 1.0\n" @@ -46,7 +46,7 @@ msgstr "Druck:" msgid "-*-helvetica-bold-r-normal--*-140-*-*-*-*-*-*" msgstr "-*-helvetica-bold-r-normal--*-140-*-*-*-*-*-*" -#: app/app_procs.c:278 app/app_procs.c:280 app/interface.c:568 +#: app/app_procs.c:278 app/app_procs.c:280 app/interface.c:560 msgid "The GIMP" msgstr "GIMP" @@ -120,15 +120,15 @@ msgstr "Beenden" #: app/channels_dialog.c:2502 app/channels_dialog.c:2665 #: app/color_balance.c:275 app/color_notebook.c:125 app/convert.c:506 #: app/curves.c:562 app/file_new_dialog.c:207 app/file_new_dialog.c:357 -#: app/gdisplay_color_ui.c:129 app/gdisplay_ops.c:305 app/gimpprogress.c:112 +#: app/gdisplay_color_ui.c:135 app/gdisplay_ops.c:305 app/gimpprogress.c:112 #: app/global_edit.c:772 app/gradient.c:1768 app/gradient.c:4840 -#: app/gradient.c:5401 app/hue_saturation.c:374 app/interface.c:1035 +#: app/gradient.c:5401 app/hue_saturation.c:374 app/interface.c:1027 #: app/layers_dialog.c:3441 app/layers_dialog.c:3623 app/layers_dialog.c:3715 #: app/layers_dialog.c:3967 app/levels.c:340 app/palette.c:1826 #: app/posterize.c:202 app/preferences_dialog.c:1455 app/qmask.c:281 #: app/resize.c:195 app/resize.c:1341 app/threshold.c:275 -#: app/user_install.c:548 app/user_install.c:1190 modules/cdisplay_gamma.c:358 -#: modules/cdisplay_highcontrast.c:352 +#: app/user_install.c:548 app/user_install.c:1190 modules/cdisplay_gamma.c:331 +#: modules/cdisplay_highcontrast.c:325 msgid "Cancel" msgstr "Abbrechen" @@ -280,13 +280,13 @@ msgstr "Helligkeit-Kontrast funktioniert nicht bei indizierten Bildern." #: app/channels_dialog.c:2500 app/channels_dialog.c:2663 #: app/color_balance.c:271 app/color_notebook.c:122 app/convert.c:504 #: app/curves.c:558 app/file_new_dialog.c:207 app/file_new_dialog.c:353 -#: app/gdisplay_color_ui.c:127 app/gimpui.c:122 app/hue_saturation.c:370 +#: app/gdisplay_color_ui.c:133 app/gimpui.c:122 app/hue_saturation.c:370 #: app/layers_dialog.c:3439 app/layers_dialog.c:3621 app/layers_dialog.c:3713 #: app/layers_dialog.c:3965 app/levels.c:336 app/module_db.c:281 #: app/posterize.c:198 app/preferences_dialog.c:1451 app/qmask.c:279 #: app/resize.c:193 app/resize.c:1341 app/threshold.c:271 -#: app/user_install.c:1188 modules/cdisplay_gamma.c:351 -#: modules/cdisplay_highcontrast.c:345 +#: app/user_install.c:1188 modules/cdisplay_gamma.c:329 +#: modules/cdisplay_highcontrast.c:323 msgid "OK" msgstr "OK" @@ -300,13 +300,13 @@ msgstr "Standard" #. Create the brightness scale widget #: app/brightness_contrast.c:234 -msgid "Brightness" -msgstr "Helligkeit" +msgid "Brightness:" +msgstr "Helligkeit:" #. Create the contrast scale widget #: app/brightness_contrast.c:265 -msgid "Contrast" -msgstr "Kontrast" +msgid "Contrast:" +msgstr "Kontrast:" #. The preview toggle #: app/brightness_contrast.c:300 app/color_balance.c:441 app/curves.c:682 @@ -322,14 +322,13 @@ msgstr "Pinseleditor" #. The close button #: app/brush_edit.c:216 app/brush_select.c:281 app/by_color_select.c:696 #: app/color_notebook.c:122 app/color_picker.c:297 app/colormap_dialog.i.c:173 -#: app/crop.c:1054 app/devices.c:755 app/docindexif.c:105 -#: app/errorconsole.c:281 app/gdisplay_ops.c:305 app/gradient.c:800 -#: app/gradient_select.c:153 app/histogram_tool.c:276 app/info_window.c:255 -#: app/lc_dialog.c:195 app/measure.c:321 app/nav_window.c:1344 -#: app/palette.c:2072 app/palette.c:2088 app/palette.c:3118 -#: app/palette_select.c:66 app/pattern_select.c:172 -#: app/preferences_dialog.c:364 app/tips_dialog.c:159 app/tools.c:1087 -#: app/undo_history.c:752 +#: app/crop.c:1054 app/devices.c:755 app/docindex.c:759 app/errorconsole.c:281 +#: app/gdisplay_ops.c:305 app/gradient.c:800 app/gradient_select.c:153 +#: app/histogram_tool.c:276 app/info_window.c:255 app/lc_dialog.c:195 +#: app/measure.c:321 app/nav_window.c:1344 app/palette.c:2072 +#: app/palette.c:2088 app/palette.c:3118 app/palette_select.c:66 +#: app/pattern_select.c:172 app/preferences_dialog.c:364 app/tips_dialog.c:160 +#: app/tools.c:1087 app/undo_history.c:752 msgid "Close" msgstr "Schließen" @@ -449,7 +448,7 @@ msgid "Replace" msgstr "Ersetzen" #: app/by_color_select.c:760 app/colormap_dialog.i.c:130 -#: app/gdisplay_color_ui.c:114 +#: app/gdisplay_color_ui.c:120 msgid "Add" msgstr "Hinzufügen" @@ -751,43 +750,43 @@ msgstr "Bild:" msgid "none" msgstr "Kein" -#: app/commands.c:331 +#: app/commands.c:332 msgid "Feather Selection" msgstr "Auswahl ausblenden" -#: app/commands.c:334 +#: app/commands.c:335 msgid "Feather Selection by:" msgstr "Auswahl ausblenden um:" -#: app/commands.c:367 +#: app/commands.c:368 msgid "Shrink Selection" msgstr "Auswahl verkleinern" -#: app/commands.c:370 +#: app/commands.c:371 msgid "Shrink Selection by:" msgstr "Auswahl verkleinern um:" -#: app/commands.c:379 +#: app/commands.c:380 msgid "Shrink from image border" msgstr "Verkleinere von Bildrand" -#: app/commands.c:401 +#: app/commands.c:402 msgid "Grow Selection" msgstr "Auswahl vergrößern" -#: app/commands.c:404 +#: app/commands.c:405 msgid "Grow Selection by:" msgstr "Auswahl vergrößern um:" -#: app/commands.c:424 +#: app/commands.c:425 msgid "Border Selection" msgstr "Randauswahl" -#: app/commands.c:427 +#: app/commands.c:428 msgid "Border Selection by:" msgstr "Randauswahl um:" -#: app/commands.c:1314 +#: app/commands.c:1322 msgid "Resize Error: Both width and height must be greater than zero." msgstr "" "Fehler beim Verändern der Bildgröße:\n" @@ -1026,71 +1025,40 @@ msgstr "Ger msgid "Pasted Layer" msgstr "Eingefügte Ebene" -#: app/docindex.c:575 -msgid "This file cannot be moved up." -msgstr "Diese Datei kann nicht nach oben verschoben werden." +#: app/docindex.c:113 +msgid "" +"Open the selected entry\n" +" Raise window if already open\n" +" Load Image dialog" +msgstr "" +"Öffne den ausgewählten Eintrag\n" +" Fenster rauf wenn bereits geöffnet\n" +" Bild Öffnen-Dialog" -#: app/docindex.c:579 -msgid "There's no selection to move up." -msgstr "Es gibt keine Auswahl, die nach oben verschoben werden kann." +#: app/docindex.c:118 +msgid "" +"Move the selected entry up in the index\n" +" To top" +msgstr "" +"Bewege den ausgewählten Eintrag nach oben\n" +" Ganz nach oben" -#: app/docindex.c:593 -msgid "This file cannot be moved down." -msgstr "Diese Datei kann nicht nach unten verschoben werden." +#: app/docindex.c:122 +msgid "" +"Move the selected entry down in the index\n" +" To bottom" +msgstr "" +"Bewege den ausgewählten Eintrag nach unten\n" +" Ganz nach unten" -#: app/docindex.c:597 -msgid "There's no selection to move down." -msgstr "Es gibt keine Auswahl, die nach unten verschoben werden kann." - -#: app/docindex.c:613 -msgid "There's no selection to remove." -msgstr "Es gibt keine Auswahl, die entfernt werden kann." - -#: app/docindexif.c:85 -msgid "Open" -msgstr "Öffnen" - -#: app/docindexif.c:85 -msgid "Open a file" -msgstr "Datei öffnen" - -#: app/docindexif.c:90 app/gdisplay_color_ui.c:116 -msgid "Up" -msgstr "Hoch" - -#: app/docindexif.c:90 -msgid "Move the selected entry up in the index" -msgstr "Bewege den ausgewählten Eintrag nach oben" - -#: app/docindexif.c:95 app/gdisplay_color_ui.c:117 -msgid "Down" -msgstr "Runter" - -#: app/docindexif.c:95 -msgid "Move the selected entry down in the index" -msgstr "Bewege den ausgewählten Eintrag nach unten" - -#: app/docindexif.c:100 app/gdisplay_color_ui.c:115 -msgid "Remove" -msgstr "Entfernen" - -#: app/docindexif.c:100 +#: app/docindex.c:126 msgid "Remove the selected entry from the index" msgstr "Entferne den ausgewählten Eintrag aus der Liste" -#: app/docindexif.c:105 -msgid "Close the Document Index" -msgstr "Dokumentenindex schließen" - -#. Set the GOWindow title -#: app/docindexif.c:238 +#: app/docindex.c:753 msgid "Document Index" msgstr "Dokumentenindex" -#: app/docindexif.c:245 -msgid "GTK successfully started" -msgstr "GTK erfolgreich gestartet" - #: app/dodgeburn.c:139 msgid "Exposure:" msgstr "Belichtung:" @@ -1379,19 +1347,31 @@ msgstr "Indiziert leer" msgid "indexed" msgstr "Indiziert" -#: app/gdisplay_color_ui.c:118 +#: app/gdisplay_color_ui.c:121 +msgid "Remove" +msgstr "Entfernen" + +#: app/gdisplay_color_ui.c:122 +msgid "Up" +msgstr "Hoch" + +#: app/gdisplay_color_ui.c:123 +msgid "Down" +msgstr "Runter" + +#: app/gdisplay_color_ui.c:124 msgid "Configure" msgstr "Konfigurieren" -#: app/gdisplay_color_ui.c:121 +#: app/gdisplay_color_ui.c:127 msgid "Color Display Filters" msgstr "Anzeigenfarbfilter" -#: app/gdisplay_color_ui.c:145 +#: app/gdisplay_color_ui.c:153 msgid "Available Filters" msgstr "Verfügbare Filter" -#: app/gdisplay_color_ui.c:168 +#: app/gdisplay_color_ui.c:176 msgid "Active Filters" msgstr "Aktive Filter" @@ -2196,21 +2176,19 @@ msgid "Hue / Lightness / Saturation Adjustments" msgstr "Farbton / Helligkeit / Sättigung" #. Create the hue scale widget -#: app/hue_saturation.c:454 app/layers_dialog.c:382 app/paint_funcs.c:94 -#: app/tool_options.c:929 -msgid "Hue" -msgstr "Farbton" +#: app/hue_saturation.c:454 +msgid "Hue:" +msgstr "Farbton:" #. Create the lightness scale widget #: app/hue_saturation.c:488 -msgid "Lightness" -msgstr "Helligkeit" +msgid "Lightness:" +msgstr "Helligkeit:" #. Create the saturation scale widget -#: app/hue_saturation.c:522 app/layers_dialog.c:383 app/paint_funcs.c:95 -#: app/tool_options.c:930 -msgid "Saturation" -msgstr "Sättigung" +#: app/hue_saturation.c:522 +msgid "Saturation:" +msgstr "Sättigung:" #: app/image_new.c:62 app/info_window.c:65 app/info_window.c:534 #: app/preferences_dialog.c:1624 @@ -2405,7 +2383,7 @@ msgstr "Geschwindigkeit:" msgid "Shape" msgstr "Form" -#: app/interface.c:313 +#: app/interface.c:305 msgid "" "Foreground & background colors. The black and white squares reset colors. " "The arrows swap colors. Double click to select a color from a colorrequester." @@ -2633,6 +2611,14 @@ msgstr "Nur Abdunkeln" msgid "Lighten Only" msgstr "Nur Aufhellen" +#: app/layers_dialog.c:382 app/paint_funcs.c:94 app/tool_options.c:929 +msgid "Hue" +msgstr "Farbton" + +#: app/layers_dialog.c:383 app/paint_funcs.c:95 app/tool_options.c:930 +msgid "Saturation" +msgstr "Sättigung" + #: app/layers_dialog.c:395 msgid "Keep Trans." msgstr "Erhalte Transp." @@ -2903,749 +2889,749 @@ msgstr "Grad" #. /File #. the underscore installs an accelerator using the character that follows -#: app/menus.c:88 +#: app/menus.c:87 msgid "/_File" msgstr "/_Datei" #. /File -#: app/menus.c:90 app/menus.c:196 +#: app/menus.c:89 app/menus.c:195 msgid "/File/New..." msgstr "/Datei/Neu..." -#: app/menus.c:92 app/menus.c:198 +#: app/menus.c:91 app/menus.c:197 msgid "/File/Open..." msgstr "/Datei/Öffnen..." -#: app/menus.c:99 +#: app/menus.c:98 msgid "/File/Acquire" msgstr "/Datei/Holen" -#: app/menus.c:104 +#: app/menus.c:103 msgid "/File/Preferences..." msgstr "/Datei/Einstellungen..." -#: app/menus.c:111 +#: app/menus.c:110 msgid "/File/Dialogs/Layers, Channels & Paths..." msgstr "/Datei/Dialoge/Ebenen, Kanäle und Pfade..." -#: app/menus.c:113 +#: app/menus.c:112 msgid "/File/Dialogs/Tool Options..." msgstr "/Datei/Dialoge/Werkzeugeinstellungen..." -#: app/menus.c:118 +#: app/menus.c:117 msgid "/File/Dialogs/Brushes..." msgstr "/Datei/Dialoge/Pinsel..." -#: app/menus.c:120 +#: app/menus.c:119 msgid "/File/Dialogs/Patterns..." msgstr "/Datei/Dialoge/Muster..." -#: app/menus.c:122 +#: app/menus.c:121 msgid "/File/Dialogs/Gradients..." msgstr "/Datei/Dialoge/Farbverläufe..." -#: app/menus.c:124 +#: app/menus.c:123 msgid "/File/Dialogs/Palette..." msgstr "/Datei/Dialoge/Farbpalette..." -#: app/menus.c:126 +#: app/menus.c:125 msgid "/File/Dialogs/Indexed Palette..." msgstr "/Datei/Dialoge/Indizierte Palette..." -#: app/menus.c:131 +#: app/menus.c:130 msgid "/File/Dialogs/Input Devices..." msgstr "/Datei/Dialoge/Eingabegeräte..." -#: app/menus.c:133 +#: app/menus.c:132 msgid "/File/Dialogs/Device Status..." msgstr "/Datei/Dialoge/Gerätestatus..." -#: app/menus.c:138 +#: app/menus.c:137 msgid "/File/Dialogs/Document Index..." msgstr "/Datei/Dialoge/Dokumentenindex..." -#: app/menus.c:140 +#: app/menus.c:139 msgid "/File/Dialogs/Error Console..." msgstr "/Datei/Dialoge/Fehlerkonsole..." -#: app/menus.c:142 +#: app/menus.c:141 msgid "/File/Dialogs/Display Filters..." msgstr "/Datei/Dialoge/Darstellungsfilter..." -#: app/menus.c:152 app/menus.c:211 +#: app/menus.c:151 app/menus.c:210 msgid "/File/Quit" msgstr "/Datei/Beenden" #. /Xtns #. the underscore installs an accelerator using the character that follows -#: app/menus.c:158 +#: app/menus.c:157 msgid "/_Xtns" msgstr "/_Xtns" -#: app/menus.c:160 +#: app/menus.c:159 msgid "/Xtns/Module Browser..." msgstr "/Xtns/Modul-Browser..." #. /Help #. the underscore installs an accelerator using the character that follows -#: app/menus.c:169 +#: app/menus.c:168 msgid "/_Help" msgstr "/_Hilfe" -#: app/menus.c:171 +#: app/menus.c:170 msgid "/Help/Help..." msgstr "/Hilfe/Hilfe..." -#: app/menus.c:173 +#: app/menus.c:172 msgid "/Help/Context Help..." msgstr "/Hilfe/Kontext Hilfe..." -#: app/menus.c:175 +#: app/menus.c:174 msgid "/Help/Tip of the Day..." msgstr "/Hilfe/Tip des Tages..." -#: app/menus.c:177 +#: app/menus.c:176 msgid "/Help/About..." msgstr "/Hilfe/Über..." -#: app/menus.c:179 +#: app/menus.c:178 msgid "/Help/Dump Items (Debug)" msgstr "/Hilfe/Dump Items (Debug)" -#: app/menus.c:200 +#: app/menus.c:199 msgid "/File/Save" msgstr "/Datei/Sichern" -#: app/menus.c:202 +#: app/menus.c:201 msgid "/File/Save As..." msgstr "/Datei/Sichern unter..." -#: app/menus.c:204 +#: app/menus.c:203 msgid "/File/Revert" msgstr "/Datei/Zurücksetzen" -#: app/menus.c:209 +#: app/menus.c:208 msgid "/File/Close" msgstr "/Datei/Schließen" #. /Edit -#: app/menus.c:219 +#: app/menus.c:218 msgid "/Edit/Undo" msgstr "/Bearbeiten/Rückgängig" -#: app/menus.c:221 +#: app/menus.c:220 msgid "/Edit/Redo" msgstr "/Bearbeiten/Wiederholen" -#: app/menus.c:226 +#: app/menus.c:225 msgid "/Edit/Cut" msgstr "/Bearbeiten/Ausschneiden" -#: app/menus.c:228 +#: app/menus.c:227 msgid "/Edit/Copy" msgstr "/Bearbeiten/Kopieren" -#: app/menus.c:230 +#: app/menus.c:229 msgid "/Edit/Paste" msgstr "/Bearbeiten/Einfügen" -#: app/menus.c:232 +#: app/menus.c:231 msgid "/Edit/Paste Into" msgstr "/Bearbeiten/Einfügen in Auswahl" -#: app/menus.c:234 +#: app/menus.c:233 msgid "/Edit/Paste as New" msgstr "/Bearbeiten/Einfügen als Neu" #. /Edit/Buffer -#: app/menus.c:239 +#: app/menus.c:238 msgid "/Edit/Buffer/Cut Named..." msgstr "/Bearbeiten/Ablage/Ausschneiden..." -#: app/menus.c:241 +#: app/menus.c:240 msgid "/Edit/Buffer/Copy Named..." msgstr "/Bearbeiten/Ablage/Kopieren..." -#: app/menus.c:243 +#: app/menus.c:242 msgid "/Edit/Buffer/Paste Named..." msgstr "/Bearbeiten/Ablage/Einfügen..." -#: app/menus.c:248 +#: app/menus.c:247 msgid "/Edit/Clear" msgstr "/Bearbeiten/Löschen" -#: app/menus.c:250 +#: app/menus.c:249 msgid "/Edit/Fill with FG Color" msgstr "/Bearbeiten/Füllen mit VG-Farbe" -#: app/menus.c:252 +#: app/menus.c:251 msgid "/Edit/Fill with BG Color" msgstr "/Bearbeiten/Füllen mit HG-Farbe" -#: app/menus.c:254 +#: app/menus.c:253 msgid "/Edit/Stroke" msgstr "/Bearbeiten/Nachfahren" #. /Select -#: app/menus.c:262 +#: app/menus.c:261 msgid "/Select/Invert" msgstr "/Auswahl/Invertieren" -#: app/menus.c:264 +#: app/menus.c:263 msgid "/Select/All" msgstr "/Auswahl/Alles" -#: app/menus.c:266 +#: app/menus.c:265 msgid "/Select/None" msgstr "/Auswahl/Nichts" -#: app/menus.c:268 +#: app/menus.c:267 msgid "/Select/Float" msgstr "/Auswahl/Schwebend" -#: app/menus.c:273 +#: app/menus.c:272 msgid "/Select/Feather..." msgstr "/Auswahl/Ausblenden..." -#: app/menus.c:275 +#: app/menus.c:274 msgid "/Select/Sharpen" msgstr "/Auswahl/Schärfen" -#: app/menus.c:277 +#: app/menus.c:276 msgid "/Select/Shrink..." msgstr "/Auswahl/Verkleinern..." -#: app/menus.c:279 +#: app/menus.c:278 msgid "/Select/Grow..." msgstr "/Auswahl/Vergrößern..." -#: app/menus.c:281 +#: app/menus.c:280 msgid "/Select/Border..." msgstr "/Auswahl/Rand..." -#: app/menus.c:286 +#: app/menus.c:285 msgid "/Select/Save to Channel" msgstr "/Auswahl/In Kanal sichern" #. /View -#: app/menus.c:291 +#: app/menus.c:290 msgid "/View/Zoom In" msgstr "/Ansicht/Hineinzoomen" -#: app/menus.c:293 +#: app/menus.c:292 msgid "/View/Zoom Out" msgstr "/Ansicht/Herauszoomen" #. /View/Zoom -#: app/menus.c:298 +#: app/menus.c:297 msgid "/View/Zoom/16:1" msgstr "/Ansicht/Zoom/16:1" -#: app/menus.c:300 +#: app/menus.c:299 msgid "/View/Zoom/8:1" msgstr "/Ansicht/Zoom/8:1" -#: app/menus.c:302 +#: app/menus.c:301 msgid "/View/Zoom/4:1" msgstr "/Ansicht/Zoom/4:1" -#: app/menus.c:304 +#: app/menus.c:303 msgid "/View/Zoom/2:1" msgstr "/Ansicht/Zoom/2:1" -#: app/menus.c:306 +#: app/menus.c:305 msgid "/View/Zoom/1:1" msgstr "/Ansicht/Zoom/1:1" -#: app/menus.c:308 +#: app/menus.c:307 msgid "/View/Zoom/1:2" msgstr "/Ansicht/Zoom/1:2" -#: app/menus.c:310 +#: app/menus.c:309 msgid "/View/Zoom/1:4" msgstr "/Ansicht/Zoom/1:4" -#: app/menus.c:312 +#: app/menus.c:311 msgid "/View/Zoom/1:8" msgstr "/Ansicht/Zoom/1:8" -#: app/menus.c:314 +#: app/menus.c:313 msgid "/View/Zoom/1:16" msgstr "/Ansicht/Zoom/1:16" -#: app/menus.c:317 +#: app/menus.c:316 msgid "/View/Dot for Dot" msgstr "/Ansicht/Punkt für Punkt" -#: app/menus.c:322 +#: app/menus.c:321 msgid "/View/Info Window..." msgstr "/Ansicht/Information..." -#: app/menus.c:324 +#: app/menus.c:323 msgid "/View/Nav. Window..." msgstr "/Ansicht/Navigation..." -#: app/menus.c:329 +#: app/menus.c:328 msgid "/View/Toggle Selection" msgstr "/Ansicht/Auswahl" -#: app/menus.c:331 +#: app/menus.c:330 msgid "/View/Toggle Rulers" msgstr "/Ansicht/Lineale" -#: app/menus.c:333 +#: app/menus.c:332 msgid "/View/Toggle Statusbar" msgstr "/Ansicht/Statusleiste" -#: app/menus.c:335 +#: app/menus.c:334 msgid "/View/Toggle Guides" msgstr "/Ansicht/Hilfslinien" -#: app/menus.c:337 +#: app/menus.c:336 msgid "/View/Snap to Guides" msgstr "/Ansicht/Magnetische Hilfslinien" -#: app/menus.c:342 +#: app/menus.c:341 msgid "/View/New View" msgstr "/Ansicht/Neues Fenster" -#: app/menus.c:344 +#: app/menus.c:343 msgid "/View/Shrink Wrap" msgstr "/Ansicht/Fenster anpassen" #. /Image/Mode -#: app/menus.c:349 +#: app/menus.c:348 msgid "/Image/Mode/RGB" msgstr "/Bild/Modus/RGB" -#: app/menus.c:351 +#: app/menus.c:350 msgid "/Image/Mode/Grayscale" msgstr "/Bild/Modus/Graustufen" -#: app/menus.c:353 +#: app/menus.c:352 msgid "/Image/Mode/Indexed..." msgstr "/Bild/Modus/Indiziert..." #. /Image/Colors -#: app/menus.c:361 +#: app/menus.c:360 msgid "/Image/Colors/Desaturate" msgstr "/Bild/Farben/Sättigung entfernen" -#: app/menus.c:363 +#: app/menus.c:362 msgid "/Image/Colors/Invert" msgstr "/Bild/Farben/Invertieren" #. /Image/Colors/Auto -#: app/menus.c:371 +#: app/menus.c:370 msgid "/Image/Colors/Auto/Equalize" msgstr "/Bild/Farben/Automatisch/Angleichen" #. /Image/Alpha -#: app/menus.c:379 +#: app/menus.c:378 msgid "/Image/Alpha/Add Alpha Channel" msgstr "/Bild/Alpha/Alphakanal hinzufügen" #. /Image/Transforms -#: app/menus.c:384 +#: app/menus.c:383 msgid "/Image/Transforms/Offset..." msgstr "/Bild/Transformationen/Versatz..." -#: app/menus.c:386 +#: app/menus.c:385 msgid "/Image/Transforms/Rotate" msgstr "/Bild/Transformationen/Rotieren" -#: app/menus.c:393 +#: app/menus.c:392 msgid "/Image/Canvas Size..." msgstr "/Bild/Größe verändern..." -#: app/menus.c:395 +#: app/menus.c:394 msgid "/Image/Scale Image..." msgstr "/Bild/Skalieren..." -#: app/menus.c:397 +#: app/menus.c:396 msgid "/Image/Duplicate" msgstr "/Bild/Duplizieren" #. /Layers -#: app/menus.c:405 +#: app/menus.c:404 msgid "/Layers/Layers, Channels & Paths..." msgstr "/Ebenen/Ebenen, Kanäle und Pfade..." -#: app/menus.c:409 +#: app/menus.c:408 msgid "/Layers/Layer to Imagesize" msgstr "/Ebenen/Ebene auf Bildgröße" #. /Layers/Stack -#: app/menus.c:414 +#: app/menus.c:413 msgid "/Layers/Stack/Previous Layer" msgstr "/Ebenen/Stapel/Vorherige Ebene" -#: app/menus.c:416 +#: app/menus.c:415 msgid "/Layers/Stack/Next Layer" msgstr "/Ebenen/Stapel/Nächste Ebene" -#: app/menus.c:418 +#: app/menus.c:417 msgid "/Layers/Stack/Raise Layer" msgstr "/Ebenen/Stapel/Ebene erhöhen" -#: app/menus.c:420 +#: app/menus.c:419 msgid "/Layers/Stack/Lower Layer" msgstr "/Ebenen/Stapel/Ebene absenken" -#: app/menus.c:422 +#: app/menus.c:421 msgid "/Layers/Stack/Layer to Top" msgstr "/Ebenen/Stapel/Ebene nach ganz oben" -#: app/menus.c:424 +#: app/menus.c:423 msgid "/Layers/Stack/Layer to Bottom" msgstr "/Ebenen/Stapel/Ebene nach ganz unten" #. /Layers/Rotate -#: app/menus.c:431 +#: app/menus.c:430 msgid "/Layers/Rotate" msgstr "/Ebenen/Rotieren" -#: app/menus.c:436 +#: app/menus.c:435 msgid "/Layers/Anchor Layer" msgstr "/Ebenen/Ebene verankern" -#: app/menus.c:438 +#: app/menus.c:437 msgid "/Layers/Merge Visible Layers..." msgstr "/Ebenen/Sichtbare Ebenen vereinen..." -#: app/menus.c:440 +#: app/menus.c:439 msgid "/Layers/Flatten Image" msgstr "/Ebenen/Bild zusammenfügen" -#: app/menus.c:445 +#: app/menus.c:444 msgid "/Layers/Mask to Selection" msgstr "/Ebenen/Auswahl aus Maske" -#: app/menus.c:450 +#: app/menus.c:449 msgid "/Layers/Add Alpha Channel" msgstr "/Ebenen/Alphakanal hinzufügen" -#: app/menus.c:452 +#: app/menus.c:451 msgid "/Layers/Alpha to Selection" msgstr "/Ebenen/Auswahl aus Alphakanal" #. /Tools -#: app/menus.c:460 +#: app/menus.c:459 msgid "/Tools/Toolbox" msgstr "/Werkzeuge/Werkzeugkasten" -#: app/menus.c:462 +#: app/menus.c:461 msgid "/Tools/Default Colors" msgstr "/Werkzeuge/Standardfarben" -#: app/menus.c:464 +#: app/menus.c:463 msgid "/Tools/Swap Colors" msgstr "/Werkzeuge/Farben tauschen" #. /Dialogs -#: app/menus.c:471 +#: app/menus.c:470 msgid "/Dialogs/Layers, Channels & Paths..." msgstr "/Dialoge/Ebenen, Kanäle und Pfade..." -#: app/menus.c:473 +#: app/menus.c:472 msgid "/Dialogs/Tool Options..." msgstr "/Dialoge/Werkzeugeinstellungen..." -#: app/menus.c:478 +#: app/menus.c:477 msgid "/Dialogs/Brushes..." msgstr "/Dialoge/Pinsel..." -#: app/menus.c:480 +#: app/menus.c:479 msgid "/Dialogs/Patterns..." msgstr "/Dialoge/Muster..." -#: app/menus.c:482 +#: app/menus.c:481 msgid "/Dialogs/Gradients..." msgstr "/Dialoge/Farbverläufe..." -#: app/menus.c:484 +#: app/menus.c:483 msgid "/Dialogs/Palette..." msgstr "/Dialoge/Farbpalette...." -#: app/menus.c:486 +#: app/menus.c:485 msgid "/Dialogs/Indexed Palette..." msgstr "/Dialoge/Indizierte Palette..." -#: app/menus.c:491 +#: app/menus.c:490 msgid "/Dialogs/Input Devices..." msgstr "/Dialoge/Eingabegeräte..." -#: app/menus.c:493 +#: app/menus.c:492 msgid "/Dialogs/Device Status..." msgstr "/Dialoge/Gerätestatus..." -#: app/menus.c:498 +#: app/menus.c:497 msgid "/Dialogs/Document Index..." msgstr "/Dialoge/Dokumentenindex..." -#: app/menus.c:500 +#: app/menus.c:499 msgid "/Dialogs/Error Console..." msgstr "/Dialoge/Fehlerkonsole..." -#: app/menus.c:502 +#: app/menus.c:501 msgid "/Dialogs/Display Filters..." msgstr "/Dialoge/Darstellungsfilter..." -#: app/menus.c:504 +#: app/menus.c:503 msgid "/Dialogs/Undo History..." msgstr "/Dialoge/Journal..." #. /Filters -#: app/menus.c:513 +#: app/menus.c:512 msgid "/Filters/Repeat Last" msgstr "/Filter/Wiederhole letzten Vorgang" -#: app/menus.c:515 +#: app/menus.c:514 msgid "/Filters/Re-Show Last" msgstr "/Filter/Zeige letzten Vorgang nochmal" -#: app/menus.c:520 +#: app/menus.c:519 msgid "/Filters/Blur" msgstr "/Filter/Weichzeichnen" -#: app/menus.c:522 +#: app/menus.c:521 msgid "/Filters/Colors" msgstr "/Filter/Farben" -#: app/menus.c:524 +#: app/menus.c:523 msgid "/Filters/Noise" msgstr "/Filter/Rauschen" -#: app/menus.c:526 +#: app/menus.c:525 msgid "/Filters/Edge-Detect" msgstr "/Filter/Kanten finden" -#: app/menus.c:528 +#: app/menus.c:527 msgid "/Filters/Enhance" msgstr "/Filter/Verbessern" -#: app/menus.c:530 +#: app/menus.c:529 msgid "/Filters/Generic" msgstr "/Filter/Allgemein" -#: app/menus.c:535 +#: app/menus.c:534 msgid "/Filters/Glass Effects" msgstr "/Filter/Glas-Effekte" -#: app/menus.c:537 +#: app/menus.c:536 msgid "/Filters/Light Effects" msgstr "/Filter/Licht-Effekte" -#: app/menus.c:539 +#: app/menus.c:538 msgid "/Filters/Distorts" msgstr "/Filter/Verzerren" -#: app/menus.c:541 +#: app/menus.c:540 msgid "/Filters/Artistic" msgstr "/Filter/Künstlerisch" -#: app/menus.c:543 +#: app/menus.c:542 msgid "/Filters/Map" msgstr "/Filter/Abbilden" -#: app/menus.c:545 +#: app/menus.c:544 msgid "/Filters/Render" msgstr "/Filter/Render" -#: app/menus.c:547 +#: app/menus.c:546 msgid "/Filters/Web" msgstr "/Filter/Web" -#: app/menus.c:552 +#: app/menus.c:551 msgid "/Filters/Animation" msgstr "/Filter/Animation" -#: app/menus.c:554 +#: app/menus.c:553 msgid "/Filters/Combine" msgstr "/Filter/Kombinieren" -#: app/menus.c:559 +#: app/menus.c:558 msgid "/Filters/Toys" msgstr "/Filter/Viel Spaß" -#: app/menus.c:572 +#: app/menus.c:571 msgid "/Automatic" msgstr "/Automatisch" -#: app/menus.c:586 +#: app/menus.c:585 msgid "/By Extension" msgstr "/Nach Endung" -#: app/menus.c:600 +#: app/menus.c:599 msgid "/New Layer..." msgstr "/Ebene anlegen..." #. /Stack -#: app/menus.c:605 +#: app/menus.c:604 msgid "/Stack/Raise Layer" msgstr "/Stapel/Ebene erhöhen" -#: app/menus.c:607 +#: app/menus.c:606 msgid "/Stack/Lower Layer" msgstr "/Stapel/Ebene absenken" -#: app/menus.c:609 +#: app/menus.c:608 msgid "/Stack/Layer to Top" msgstr "/Stapel/Ebene nach ganz oben" -#: app/menus.c:611 +#: app/menus.c:610 msgid "/Stack/Layer to Bottom" msgstr "/Stapel/Ebene nach ganz unten" -#: app/menus.c:614 +#: app/menus.c:613 msgid "/Duplicate Layer" msgstr "/Ebene duplizieren" -#: app/menus.c:616 +#: app/menus.c:615 msgid "/Anchor Layer" msgstr "/Ebene verankern" -#: app/menus.c:618 +#: app/menus.c:617 msgid "/Delete Layer" msgstr "/Ebene löschen" -#: app/menus.c:623 +#: app/menus.c:622 msgid "/Layer Boundary Size..." msgstr "/Ebenengröße verändern... " -#: app/menus.c:625 +#: app/menus.c:624 msgid "/Layer to Imagesize" msgstr "/Ebene auf Bildgrösse" -#: app/menus.c:627 +#: app/menus.c:626 msgid "/Scale Layer..." msgstr "/Ebene skalieren..." -#: app/menus.c:632 +#: app/menus.c:631 msgid "/Merge Visible Layers..." msgstr "/Sichtbare Ebenen vereinen..." -#: app/menus.c:634 +#: app/menus.c:633 msgid "/Merge Down" msgstr "/Nach unten vereinen" -#: app/menus.c:636 +#: app/menus.c:635 msgid "/Flatten Image" msgstr "/Bild zusammenfügen" -#: app/menus.c:641 +#: app/menus.c:640 msgid "/Add Layer Mask..." msgstr "/Ebenenmaske hinzufügen..." -#: app/menus.c:643 +#: app/menus.c:642 msgid "/Apply Layer Mask" msgstr "/Ebenenmaske anwenden..." -#: app/menus.c:645 +#: app/menus.c:644 msgid "/Delete Layer Mask" msgstr "/Ebenenmaske löschen" -#: app/menus.c:647 +#: app/menus.c:646 msgid "/Mask to Selection" msgstr "/Auswahl aus Maske" -#: app/menus.c:652 +#: app/menus.c:651 msgid "/Add Alpha Channel" msgstr "/Alphakanal hinzufügen" -#: app/menus.c:654 +#: app/menus.c:653 msgid "/Alpha to Selection" msgstr "/Auswahl aus Alphakanal" -#: app/menus.c:659 +#: app/menus.c:658 msgid "/Edit Layer Attributes..." msgstr "/Ebeneneigenschaften..." -#: app/menus.c:670 +#: app/menus.c:669 msgid "/New Channel..." msgstr "/Kanal anlegen..." -#: app/menus.c:672 +#: app/menus.c:671 msgid "/Raise Channel" msgstr "/Kanal erhöhen" -#: app/menus.c:674 +#: app/menus.c:673 msgid "/Lower Channel" msgstr "/Kanal absenken" -#: app/menus.c:676 +#: app/menus.c:675 msgid "/Duplicate Channel" msgstr "/Kanal duplizieren" -#: app/menus.c:681 +#: app/menus.c:680 msgid "/Channel to Selection" msgstr "/Auswahl aus Kanal" -#: app/menus.c:683 +#: app/menus.c:682 msgid "/Add to Selection" msgstr "/Zur Auswahl hinzufügen" -#: app/menus.c:685 +#: app/menus.c:684 msgid "/Subtract from Selection" msgstr "/Von Auswahl abziehen" -#: app/menus.c:687 +#: app/menus.c:686 msgid "/Intersect with Selection" msgstr "/Mit Auswahl schneiden" -#: app/menus.c:692 +#: app/menus.c:691 msgid "/Delete Channel" msgstr "/Kanal löschen" -#: app/menus.c:697 +#: app/menus.c:696 msgid "/Edit Channel Attributes..." msgstr "/Kanaleigenschaften..." -#: app/menus.c:708 +#: app/menus.c:707 msgid "/New Path" msgstr "/Pfad anlegen" -#: app/menus.c:710 +#: app/menus.c:709 msgid "/Duplicate Path" msgstr "/Pfad duplizieren" -#: app/menus.c:712 +#: app/menus.c:711 msgid "/Path to Selection" msgstr "/Pfad zur Auswahl" -#: app/menus.c:714 +#: app/menus.c:713 msgid "/Selection to Path" msgstr "/Pfad aus Auswahl" -#: app/menus.c:716 +#: app/menus.c:715 msgid "/Stroke Path" msgstr "/Pfad nachziehen" -#: app/menus.c:718 +#: app/menus.c:717 msgid "/Delete Path" msgstr "/Pfad löschen" -#: app/menus.c:723 +#: app/menus.c:722 msgid "/Copy Path" msgstr "/Pfad kopieren" -#: app/menus.c:725 +#: app/menus.c:724 msgid "/Paste Path" msgstr "/Pfad einfügen" -#: app/menus.c:727 +#: app/menus.c:726 msgid "/Import Path..." msgstr "/Pfad importieren..." -#: app/menus.c:729 +#: app/menus.c:728 msgid "/Export Path..." msgstr "/Pfad exportieren..." -#: app/menus.c:734 +#: app/menus.c:733 msgid "/Edit Path Attributes..." msgstr "/Pfadeigenschaften..." -#: app/menus.c:1265 +#: app/menus.c:1263 #, c-format msgid "Error opening file: %s\n" msgstr "Kann Datei nicht öffnen: %s\n" @@ -4928,19 +4914,19 @@ msgstr "gimp_tips.de.txt" msgid "GIMP Tip of the Day" msgstr "GIMP Tip des Tages" -#: app/tips_dialog.c:144 -msgid "Show tip next time" -msgstr "Tips das nächste Mal anzeigen" +#: app/tips_dialog.c:145 +msgid "Show tip next time GIMP starts" +msgstr "Tips beim nächsten Start anzeigen" -#: app/tips_dialog.c:174 +#: app/tips_dialog.c:175 msgid "Previous Tip" msgstr "Vorheriger Tip" -#: app/tips_dialog.c:182 +#: app/tips_dialog.c:183 msgid "Next Tip" msgstr "Nächster Tip" -#: app/tips_dialog.c:284 +#: app/tips_dialog.c:285 msgid "" "Your GIMP tips file appears to be missing!\n" "There should be a file called gimp_tips.txt in the\n" @@ -6122,7 +6108,7 @@ msgid "" "resolution." msgstr "" "Um Bilder in ihrer natürlichen Größe darzustellen, muß GIMP\n" -"die Aüflösung Ihres Bildschirms kennen." +"die Auflösung Ihres Bildschirms kennen." #: app/user_install.c:876 msgid "Aborting Installation..." @@ -6261,27 +6247,27 @@ msgstr "" "hat indizierte Farbpaletten falsch gesichert.\n" "Farben wurden durch Graustufen ersetzt." -#: modules/cdisplay_gamma.c:91 +#: modules/cdisplay_gamma.c:96 msgid "Gamma color display filter" msgstr "Gamma-Anzeigenfarbfilter" -#: modules/cdisplay_gamma.c:326 +#: modules/cdisplay_gamma.c:324 msgid "Gamma" msgstr "Gamma" -#: modules/cdisplay_gamma.c:336 +#: modules/cdisplay_gamma.c:343 msgid "Gamma:" msgstr "Gamma:" -#: modules/cdisplay_highcontrast.c:91 +#: modules/cdisplay_highcontrast.c:96 msgid "High Contrast color display filter" msgstr "Hochkontrast-Anzeigenfarbfilter" -#: modules/cdisplay_highcontrast.c:320 +#: modules/cdisplay_highcontrast.c:318 msgid "High Contrast" msgstr "Hochkontrast" -#: modules/cdisplay_highcontrast.c:330 +#: modules/cdisplay_highcontrast.c:337 msgid "Contrast Cycles:" msgstr "Kontrastverstärkung:"