From dfdac71ff4127b7793d848fbb8a7c468dc183bd5 Mon Sep 17 00:00:00 2001 From: Marc Lehmann Date: Sun, 25 Jun 2000 19:10:00 +0000 Subject: [PATCH] see plug-ins/perl/Changes --- plug-ins/perl/Changes | 1 + plug-ins/perl/Gimp/Fu.pm | 2 - plug-ins/perl/TODO | 2 + plug-ins/perl/examples/logulator | 1796 ------------------------------ plug-ins/perl/po/ChangeLog | 16 - plug-ins/perl/po/da.po | 144 +-- plug-ins/perl/po/de.po | 1704 ++++++++++++++-------------- plug-ins/perl/po/fi.po | 1575 +++++++++++++------------- plug-ins/perl/po/fr.po | 107 +- plug-ins/perl/po/it.po | 143 ++- plug-ins/perl/po/ja.po | 83 +- plug-ins/perl/po/no.po | 273 +++-- plug-ins/perl/po/ru.po | 279 ++--- plug-ins/perl/po/uk.po | 142 +-- 14 files changed, 2157 insertions(+), 4110 deletions(-) diff --git a/plug-ins/perl/Changes b/plug-ins/perl/Changes index cc168bc386..bf8a49b8a2 100644 --- a/plug-ins/perl/Changes +++ b/plug-ins/perl/Changes @@ -8,6 +8,7 @@ Revision history for Gimp-Perl extension. - added ... to hopefully all plug-ins that open a dialog. - make clean wrongly deleted po/Makefile. - po/Makefile.PL left temporary files around. + - trimmed examples/logulator down by two thirds. 1.2 Thu May 11 18:55:13 CEST 2000 - image types updated to reflect gimp's reality. diff --git a/plug-ins/perl/Gimp/Fu.pm b/plug-ins/perl/Gimp/Fu.pm index aadcfbb4ad..6a7c524e0f 100644 --- a/plug-ins/perl/Gimp/Fu.pm +++ b/plug-ins/perl/Gimp/Fu.pm @@ -6,8 +6,6 @@ use File::Basename; require Exporter; -warn "$0\n"; - =head1 NAME Gimp::Fu - "easy to use" framework for Gimp scripts diff --git a/plug-ins/perl/TODO b/plug-ins/perl/TODO index 5b92f36efc..14c728285b 100644 --- a/plug-ins/perl/TODO +++ b/plug-ins/perl/TODO @@ -24,6 +24,8 @@ API generalization gimp_desaturate -> drawable bugs + STIFTUNG, FOUNDATION etc.. => ask. + * URGENT: deinit might block... tis'is bad, but not close'ing is also bad * --enable-perl-prefix, --with-perl=, --with-perl-cc= * URGENT: podperl doesn't work. * try to work around the redhat-undef $fh => no close problem. diff --git a/plug-ins/perl/examples/logulator b/plug-ins/perl/examples/logulator index ebf673e088..c469079ff0 100755 --- a/plug-ins/perl/examples/logulator +++ b/plug-ins/perl/examples/logulator @@ -1,8 +1,5 @@ #!/usr/app/bin/perl -eval 'exec /usr/app/bin/perl -S $0 ${1+"$@"}' - if 0; # not running under some shell - use Gimp qw(:auto __ N_); use Gimp::Fu; use Gimp::Util; @@ -136,420 +133,6 @@ sub max { # converted scripts start here ############################################################################# -sub script_fu_3d_outline_logo { - my ($text_pattern, $text, $size, $font, $outline_blur_radius, $shadow_blur_radius, $bump_map_blur_radius, $s_offset_x, $s_offset_y) = @_; - do { - my $img = gimp_image_new (256, 256, RGB_IMAGE); - my $text_layer = gimp_text_fontname ($img, -1, 0, 0, $text, 30, 1, $size, PIXELS, $font); - my $width = gimp_drawable_width ($text_layer); - my $height = gimp_drawable_height ($text_layer); - my $bg_layer = gimp_layer_new ($img, $width, $height, RGB_IMAGE, "Background", 100, NORMAL_MODE); - my $pattern = gimp_layer_new ($img, $width, $height, RGBA_IMAGE, "Pattern", 100, NORMAL_MODE); - my $old_fg = gimp_palette_get_foreground (); - my $old_bg = gimp_palette_get_background (); - - gimp_image_undo_disable ($img); - gimp_image_resize ($img, $width, $height, 0, 0); - gimp_image_add_layer ($img, $pattern, 1); - gimp_image_add_layer ($img, $bg_layer, 2); - gimp_edit_fill ($bg_layer, BG_IMAGE_FILL); - gimp_edit_clear ($pattern); - gimp_layer_set_preserve_trans ($text_layer, 0); - plug_in_gauss_iir ($img, $text_layer, $outline_blur_radius, 1, 1); - gimp_layer_set_visible ($pattern, 0); - $layer2 = gimp_image_merge_visible_layers ($img, 1); - plug_in_edge ($img, $layer2, 2, 1); - $layer3 = gimp_layer_copy ($layer2, 1); - gimp_image_add_layer ($img, $layer3, 2); - plug_in_gauss_iir ($img, $layer2, $bump_map_blur_radius, 1, 1); - gimp_selection_all ($img); - gimp_patterns_set_pattern ($text_pattern); - gimp_bucket_fill ($pattern, PATTERN_BUCKET_FILL, NORMAL_MODE, 100, 0, 0, 0, 0); - plug_in_bump_map ($img, $pattern, $layer2, 110.0, 45.0, 4, 0, 0, 0, 0, 1, 0, 0); - $pattern_mask = gimp_layer_create_mask ($pattern, ALPHA_MASK); - gimp_image_add_layer_mask ($img, $pattern, $pattern_mask); - gimp_selection_all ($img); - gimp_edit_copy ($layer3); - $floating_sel = gimp_edit_paste ($pattern_mask, 0); - gimp_floating_sel_anchor ($floating_sel); - gimp_image_remove_layer_mask ($img, $pattern, APPLY); - gimp_invert ($layer3); - plug_in_gauss_iir ($img, $layer3, $shadow_blur_radius, 1, 1); - gimp_channel_ops_offset ($layer3, 0, 1, $s_offset_x, $s_offset_y); - gimp_layer_set_visible ($layer2, 0); - gimp_layer_set_visible ($pattern, 1); - $final = gimp_image_flatten ($img); - gimp_palette_set_background ($old_bg); - gimp_palette_set_foreground ($old_fg); - gimp_image_undo_enable ($img); - gimp_display_new ($img); - }; -} - -register "perl_fu_3d_outline_logo", - "Creates outlined texts with drop shadow", - "Creates outlined texts with drop shadow", - "Hrvoje Horvat (hhorvat\@open.hr)", - "Hrvoje Horvat", - "07 April, 1998", - N_"/Filters/Logulator/3D Outline...", - "", - [ - [PF_PATTERN, 'pattern', "Pattern", "Parque #1"], - [PF_STRING, 'text_string', "Text String", "The Gimp"], - [PF_ADJUSTMENT,'font_size_pixels', "Font Size (pixels)", [100, 2, 1000, 1, 10, 0, 1]], - [PF_FONT, 'font', "Font", "-*-Roostheavy-*-r-*-*-24-*-*-*-p-*-*-*"], - [PF_VALUE, 'outline_blur_radius',"Outline blur radius", "5"], - [PF_VALUE, 'shadow_blur_radius',"Shadow blur radius", "10"], - [PF_VALUE, 'bumpmap_alpha_layer_blur_radius',"Bump-map (alpha layer) blur radius", "5"], - [PF_VALUE, 'shadow_x_offset', "Shadow X offset", "0"], - [PF_VALUE, 'shadow_y_offset', "Shadow Y offset", "0"], - ], - \&script_fu_3d_outline_logo; -sub script_fu_alien_glow_logo { - my ($text, $size, $font, $glow_color) = @_; - do { - my $img = gimp_image_new (256, 256, RGB_IMAGE); - my $border = $size / 4; - my $grow = $size / 30; - my $feather = $size / 4; - my $text_layer = gimp_text_fontname ($img, -1, 0, 0, $text, $border, 1, $size, PIXELS, $font); - my $width = gimp_drawable_width ($text_layer); - my $height = gimp_drawable_height ($text_layer); - my $bg_layer = gimp_layer_new ($img, $width, $height, RGB_IMAGE, "Background", 100, NORMAL_MODE); - my $glow_layer = gimp_layer_new ($img, $width, $height, RGBA_IMAGE, "Alien Glow", 100, NORMAL_MODE); - my $old_fg = gimp_palette_get_foreground (); - my $old_bg = gimp_palette_get_background (); - - gimp_image_undo_disable ($img); - gimp_image_resize ($img, $width, $height, 0, 0); - gimp_image_add_layer ($img, $bg_layer, 1); - gimp_image_add_layer ($img, $glow_layer, 1); - gimp_layer_set_preserve_trans ($text_layer, 1); - gimp_palette_set_background ([0, 0, 0]); - gimp_edit_fill ($bg_layer, BG_IMAGE_FILL); - gimp_edit_clear ($glow_layer); - gimp_selection_layer_alpha ($text_layer); - gimp_selection_grow ($img, $grow); - gimp_selection_feather ($img, $feather); - gimp_palette_set_background ($glow_color); - gimp_edit_fill ($glow_layer, BG_IMAGE_FILL); - gimp_selection_none ($img); - gimp_palette_set_background ([0, 0, 0]); - gimp_palette_set_foreground ([79, 79, 79]); - gimp_blend ($text_layer, FG_BG_RGB, NORMAL_MODE, SHAPEBURST_ANGULAR, 100, 0, REPEAT_NONE, 0, 0, 0, 0, 0, 1, 1); - gimp_layer_set_name ($text_layer, $text); - gimp_palette_set_background ($old_bg); - gimp_palette_set_foreground ($old_fg); - gimp_image_undo_enable ($img); - gimp_display_new ($img); - }; -} - -register "perl_fu_alien_glow_logo", - "Create an X-Files-esque logo with the specified glow color", - "Create an X-Files-esque logo with the specified glow color", - "Spencer Kimball", - "Spencer Kimball", - "1997", - N_"/Filters/Logulator/Alien Glow", - "", - [ - [PF_STRING, 'text_string', "Text String", "ALIEN"], - [PF_ADJUSTMENT,'font_size_pixels', "Font Size (pixels)", [150, 2, 1000, 1, 10, 0, 1]], - [PF_FONT, 'font', "Font", "-*-futura_poster-*-r-*-*-24-*-*-*-p-*-*-*"], - [PF_COLOUR, 'glow_color', "Glow Color", [63, 252, 0]], - ], - \&script_fu_alien_glow_logo; -sub script_fu_basic1_logo { - my ($text, $size, $font, $bg_color, $text_color) = @_; - do { - my $img = gimp_image_new (256, 256, RGB_IMAGE); - my $text_layer = gimp_text_fontname ($img, -1, 0, 0, $text, 10, 1, $size, PIXELS, $font); - my $width = gimp_drawable_width ($text_layer); - my $height = gimp_drawable_height ($text_layer); - my $bg_layer = gimp_layer_new ($img, $width, $height, RGB_IMAGE, "Background", 100, NORMAL_MODE); - my $shadow_layer = gimp_layer_new ($img, $width, $height, RGBA_IMAGE, "Shadow", 100, MULTIPLY_MODE); - my $old_fg = gimp_palette_get_foreground (); - my $old_bg = gimp_palette_get_background (); - - gimp_image_undo_disable ($img); - gimp_image_resize ($img, $width, $height, 0, 0); - gimp_image_add_layer ($img, $shadow_layer, 1); - gimp_image_add_layer ($img, $bg_layer, 2); - gimp_palette_set_background ($text_color); - gimp_layer_set_preserve_trans ($text_layer, 1); - gimp_edit_fill ($text_layer, BG_IMAGE_FILL); - gimp_palette_set_background ($bg_color); - gimp_edit_fill ($bg_layer, BG_IMAGE_FILL); - gimp_edit_clear ($shadow_layer); - gimp_selection_layer_alpha ($text_layer); - gimp_palette_set_background ([0, 0, 0]); - gimp_selection_feather ($img, 7.5); - gimp_edit_fill ($shadow_layer, BG_IMAGE_FILL); - gimp_selection_none ($img); - gimp_palette_set_foreground ([255, 255, 255]); - gimp_blend ($text_layer, FG_BG_RGB, MULTIPLY_MODE, RADIAL, 100, 20, REPEAT_NONE, 0, 0, 0, 0, 0, $width, $height); - gimp_layer_translate ($shadow_layer, 3, 3); - gimp_layer_set_name ($text_layer, $text); - gimp_palette_set_background ($old_bg); - gimp_palette_set_foreground ($old_fg); - gimp_image_undo_enable ($img); - gimp_display_new ($img); - }; -} - -register "perl_fu_basic1_logo", - "Creates a simple logo with a drop shadow", - "Creates a simple logo with a drop shadow", - "Spencer Kimball", - "Spencer Kimball", - "1996", - N_"/Filters/Logulator/Basic I", - "", - [ - [PF_STRING, 'text_string', "Text String", "The Gimp"], - [PF_ADJUSTMENT,'font_size_pixels', "Font Size (pixels)", [100, 2, 1000, 1, 10, 0, 1]], - [PF_FONT, 'font', "Font", "-*-Dragonwick-*-r-*-*-24-*-*-*-p-*-*-*"], - [PF_COLOUR, 'background_color', "Background Color", [255, 255, 255]], - [PF_COLOUR, 'text_color', "Text Color", [6, 6, 206]], - ], - \&script_fu_basic1_logo; -sub color_highlight { - my ($color) = @_; - do { - my $r = @{$color}[0]; - my $g = @{$color}[1]; - my $b = @{$color}[2]; - - $r = ($r + (255 - $r) * 0.75); - $g = ($g + (255 - $g) * 0.75); - $b = ($b + (255 - $b) * 0.75); - [$r, $g, $b]; - }; -} - -sub script_fu_basic2_logo { - my ($text, $size, $font, $bg_color, $text_color) = @_; - do { - my $img = gimp_image_new (256, 256, RGB_IMAGE); - my $text_layer = gimp_text_fontname ($img, -1, 0, 0, $text, 10, 1, $size, PIXELS, $font); - my $width = gimp_drawable_width ($text_layer); - my $height = gimp_drawable_height ($text_layer); - my $bg_layer = gimp_layer_new ($img, $width, $height, RGB_IMAGE, "Background", 100, NORMAL_MODE); - my $highlight_layer = gimp_layer_copy ($text_layer, 1); - my $shadow_layer = gimp_layer_new ($img, $width, $height, RGBA_IMAGE, "Shadow", 100, MULTIPLY_MODE); - my $old_fg = gimp_palette_get_foreground (); - my $old_bg = gimp_palette_get_background (); - - gimp_image_undo_disable ($img); - gimp_image_resize ($img, $width, $height, 0, 0); - gimp_image_add_layer ($img, $bg_layer, 1); - gimp_image_add_layer ($img, $shadow_layer, 1); - gimp_image_add_layer ($img, $highlight_layer, 1); - gimp_palette_set_background ($text_color); - gimp_layer_set_preserve_trans ($text_layer, 1); - gimp_edit_fill ($text_layer, BG_IMAGE_FILL); - gimp_edit_clear ($shadow_layer); - gimp_palette_set_background (color_highlight ($text_color)); - gimp_layer_set_preserve_trans ($highlight_layer, 1); - gimp_edit_fill ($highlight_layer, BG_IMAGE_FILL); - gimp_palette_set_background ($bg_color); - gimp_drawable_fill ($bg_layer, BG_IMAGE_FILL); - gimp_selection_layer_alpha ($text_layer); - gimp_palette_set_background ([0, 0, 0]); - gimp_selection_feather ($img, 7.5); - gimp_edit_fill ($shadow_layer, BG_IMAGE_FILL); - gimp_selection_none ($img); - gimp_palette_set_foreground ([255, 255, 255]); - gimp_blend ($text_layer, FG_BG_RGB, MULTIPLY_MODE, RADIAL, 100, 20, REPEAT_NONE, 0, 0, 0, 0, 0, $width, $height); - gimp_layer_translate ($shadow_layer, 3, 3); - gimp_layer_translate ($highlight_layer, -2, -2); - gimp_layer_set_name ($text_layer, $text); - gimp_layer_set_name ($highlight_layer, "Highlight"); - gimp_palette_set_background ($old_bg); - gimp_palette_set_foreground ($old_fg); - gimp_image_undo_enable ($img); - gimp_display_new ($img); - }; -} - -register "perl_fu_basic2_logo", - "Creates a simple logo with a shadow and a highlight", - "Creates a simple logo with a shadow and a highlight", - "Spencer Kimball", - "Spencer Kimball", - "1996", - N_"/Filters/Logulator/Basic II", - "", - [ - [PF_STRING, 'text_string', "Text String", "SCRIPT-FU"], - [PF_ADJUSTMENT,'font_size_pixels', "Font Size (pixels)", [150, 2, 1000, 1, 10, 0, 1]], - [PF_FONT, 'font', "Font", "-*-futura_poster-*-r-*-*-24-*-*-*-p-*-*-*"], - [PF_COLOUR, 'background_color', "Background Color", [255, 255, 255]], - [PF_COLOUR, 'text_color', "Text Color", [206, 6, 50]], - ], - \&script_fu_basic2_logo; -sub scale { - my ($size, $percent) = @_; - $size * $percent; -} - -sub script_fu_blended_logo { - my ($text, $size, $font, $bg_color, $text_color, $blend_fg, $blend_bg) = @_; - my $blend_mode = FG_BG_HSV; - do { - my $img = gimp_image_new (256, 256, RGB_IMAGE); - my $b_size = scale ($size, 0.1); - my $b_size_2 = scale ($size, 0.05); - my $f_size = scale ($size, 0.075); - my $ds_size = scale ($size, 0.05); - my $ts_size = ($b_size_2 - 3); - my $text_layer = gimp_text_fontname ($img, -1, 0, 0, $text, $b_size, 1, $size, PIXELS, $font); - my $width = gimp_drawable_width ($text_layer); - my $height = gimp_drawable_height ($text_layer); - my $blend_layer = gimp_layer_new ($img, $width, $height, RGBA_IMAGE, "Blend", 100, NORMAL_MODE); - my $shadow_layer = gimp_layer_new ($img, $width, $height, RGBA_IMAGE, "Shadow", 100, NORMAL_MODE); - my $text_shadow_layer = gimp_layer_new ($img, $width, $height, RGBA_IMAGE, "Text Shadow", 100, MULTIPLY_MODE); - my $tsl_layer_mask = gimp_layer_create_mask ($text_shadow_layer, BLACK_MASK); - my $drop_shadow_layer = gimp_layer_new ($img, $width, $height, RGBA_IMAGE, "Drop Shadow", 100, MULTIPLY_MODE); - my $dsl_layer_mask = gimp_layer_create_mask ($drop_shadow_layer, BLACK_MASK); - my $old_fg = gimp_palette_get_foreground (); - my $old_bg = gimp_palette_get_background (); - - gimp_image_undo_disable ($img); - gimp_image_resize ($img, $width, $height, 0, 0); - gimp_image_add_layer ($img, $shadow_layer, 1); - gimp_image_add_layer ($img, $blend_layer, 1); - gimp_image_add_layer ($img, $drop_shadow_layer, 1); - gimp_image_add_layer ($img, $text_shadow_layer, 0); - gimp_selection_none ($img); - gimp_edit_clear ($text_shadow_layer); - gimp_edit_clear ($drop_shadow_layer); - gimp_palette_set_background ($text_color); - gimp_layer_set_preserve_trans ($text_layer, 1); - gimp_edit_fill ($text_layer, BG_IMAGE_FILL); - gimp_palette_set_background ($bg_color); - gimp_drawable_fill ($shadow_layer, BG_IMAGE_FILL); - gimp_rect_select ($img, $b_size_2, $b_size_2, ($width - $b_size), ($height - $b_size), REPLACE, 1, $b_size_2); - gimp_palette_set_background ([0, 0, 0]); - gimp_edit_fill ($shadow_layer, BG_IMAGE_FILL); - gimp_selection_layer_alpha ($text_layer); - gimp_image_add_layer_mask ($img, $text_shadow_layer, $tsl_layer_mask); - gimp_palette_set_background ([255, 255, 255]); - gimp_edit_fill ($tsl_layer_mask, BG_IMAGE_FILL); - gimp_selection_feather ($img, $f_size); - gimp_palette_set_background ([63, 63, 63]); - gimp_edit_fill ($drop_shadow_layer, BG_IMAGE_FILL); - gimp_palette_set_background ([0, 0, 0]); - gimp_edit_fill ($text_shadow_layer, BG_IMAGE_FILL); - gimp_palette_set_foreground ([255, 255, 255]); - gimp_blend ($text_shadow_layer, FG_BG_RGB, NORMAL_MODE, SHAPEBURST_ANGULAR, 100, 0, REPEAT_NONE, 0, 0, 0, 0, 0, 1, 1); - gimp_selection_none ($img); - gimp_palette_set_foreground ($blend_fg); - gimp_palette_set_background ($blend_bg); - gimp_blend ($blend_layer, $blend_mode, NORMAL_MODE, LINEAR, 100, 0, REPEAT_NONE, 0, 0, 0, 0, 0, $width, 0); - gimp_layer_translate ($text_layer, -($b_size_2), -($b_size_2)); - gimp_layer_translate ($blend_layer, -($b_size), -($b_size)); - gimp_layer_translate ($text_shadow_layer, -($ts_size), -($ts_size)); - gimp_layer_translate ($drop_shadow_layer, $ds_size, $ds_size); - gimp_selection_layer_alpha ($blend_layer); - gimp_image_add_layer_mask ($img, $drop_shadow_layer, $dsl_layer_mask); - gimp_palette_set_background ([255, 255, 255]); - gimp_edit_fill ($dsl_layer_mask, BG_IMAGE_FILL); - gimp_image_remove_layer_mask ($img, $drop_shadow_layer, APPLY); - gimp_selection_none ($img); - gimp_layer_set_name ($text_layer, $text); - gimp_palette_set_foreground ($old_fg); - gimp_palette_set_background ($old_bg); - gimp_image_undo_enable ($img); - gimp_display_new ($img); - }; -} - -register "perl_fu_blended_logo", - "Creates logos with blended backgrounds, highlights, and shadows", - "Creates logos with blended backgrounds, highlights, and shadows", - "Spencer Kimball", - "Spencer Kimball", - "1996", - N_"/Filters/Logulator/Blended", - "", - [ - [PF_STRING, 'text_string', "Text String", "The GIMP"], - [PF_ADJUSTMENT,'font_size_pixels', "Font Size (pixels)", [150, 2, 1000, 1, 10, 0, 1]], - [PF_FONT, 'font', "Font", "-*-Crillee-*-r-*-*-24-*-*-*-p-*-*-*"], - [PF_COLOUR, 'background_color', "Background Color", [255, 255, 255]], - [PF_COLOUR, 'text_color', "Text Color", [124, 174, 255]], - [PF_COLOUR, 'starting_blend', "Starting Blend", [22, 9, 129]], - [PF_COLOUR, 'ending_blend', "Ending Blend", [129, 9, 82]], - ], - \&script_fu_blended_logo; -sub script_fu_bovinated_logo { - my ($text, $size, $font) = @_; - do { - my $img = gimp_image_new (256, 256, RGB_IMAGE); - my $border = $size / 4; - my $text_layer = gimp_text_fontname ($img, -1, 0, 0, $text, $border, 1, $size, PIXELS, $font); - my $width = gimp_drawable_width ($text_layer); - my $height = gimp_drawable_height ($text_layer); - my $bg_layer = gimp_layer_new ($img, $width, $height, RGBA_IMAGE, "Background", 100, NORMAL_MODE); - my $blur_layer = gimp_layer_new ($img, $width, $height, RGBA_IMAGE, "Blur", 100, NORMAL_MODE); - my $old_fg = gimp_palette_get_foreground (); - my $old_bg = gimp_palette_get_background (); - - gimp_image_undo_disable ($img); - gimp_image_resize ($img, $width, $height, 0, 0); - gimp_image_add_layer ($img, $bg_layer, 1); - gimp_image_add_layer ($img, $blur_layer, 1); - gimp_selection_all ($img); - gimp_edit_fill ($bg_layer, BG_IMAGE_FILL); - gimp_selection_none ($img); - gimp_layer_set_preserve_trans ($blur_layer, 1); - gimp_palette_set_background ([255, 255, 255]); - gimp_selection_all ($img); - gimp_edit_fill ($blur_layer, BG_IMAGE_FILL); - gimp_edit_clear ($blur_layer); - gimp_palette_set_background ([191, 191, 191]); - gimp_selection_none ($img); - gimp_layer_set_preserve_trans ($blur_layer, 0); - gimp_selection_layer_alpha ($text_layer); - gimp_edit_fill ($blur_layer, BG_IMAGE_FILL); - plug_in_gauss_rle ($img, $blur_layer, 5.0, 1, 1); - gimp_selection_none ($img); - gimp_layer_set_preserve_trans ($text_layer, 1); - gimp_selection_all ($img); - plug_in_solid_noise ($img, $text_layer, 0, 0, 23, 1, 16.0, 4.0); - gimp_brightness_contrast ($text_layer, 0, 127); - gimp_selection_none ($img); - gimp_layer_set_preserve_trans ($text_layer, 0); - gimp_layer_set_name ($text_layer, $text); - plug_in_bump_map ($img, $text_layer, $blur_layer, 135, 50, 10, 0, 0, 0, 30, 1, 0, 0); - gimp_layer_set_offsets ($blur_layer, 5, 5); - gimp_invert ($blur_layer); - gimp_layer_set_opacity ($blur_layer, 50.0); - gimp_image_set_active_layer ($img, $text_layer); - gimp_palette_set_background ($old_bg); - gimp_palette_set_foreground ($old_fg); - gimp_image_undo_enable ($img); - gimp_display_new ($img); - }; -} - -register "perl_fu_bovinated_logo", - "Makes Cow-spotted logos", - "Makes Cow-spotted logos", - "Brian McFee ", - "Brian McFee", - "April 1998", - N_"/Filters/Logulator/Bovination", - "", - [ - [PF_STRING, 'text_string', "Text String", "Fear the Cow"], - [PF_ADJUSTMENT,'font_size_pixels', "Font Size (pixels)", [80, 2, 1000, 1, 10, 0, 1]], - [PF_FONT, 'font', "Font", "-*-roostheavy-*-r-*-*-24-*-*-*-p-*-*-*"], - ], - \&script_fu_bovinated_logo; sub carve_brush { my ($brush_size) = @_; $brush_size <= 5 ? "Circle (05)" @@ -710,417 +293,7 @@ register "perl_fu_carved_logo", [PF_TOGGLE, 'carve_raised_text',"Carve Raised Text", 0], ], \&script_fu_carved_logo; -sub script_fu_chalk_logo { - my ($text, $size, $font, $bg_color, $chalk_color) = @_; - do { - my $img = gimp_image_new (256, 256, RGB_IMAGE); - my $border = $size / 4; - my $text_layer = gimp_text_fontname ($img, -1, 0, 0, $text, $border, 1, $size, PIXELS, $font); - my $width = gimp_drawable_width ($text_layer); - my $height = gimp_drawable_height ($text_layer); - my $bg_layer = gimp_layer_new ($img, $width, $height, RGB_IMAGE, "Background", 100, NORMAL_MODE); - my $old_fg = gimp_palette_get_foreground (); - my $old_bg = gimp_palette_get_background (); - - gimp_image_undo_disable ($img); - gimp_image_resize ($img, $width, $height, 0, 0); - gimp_image_add_layer ($img, $bg_layer, 1); - gimp_palette_set_background ($bg_color); - gimp_edit_fill ($bg_layer, BG_IMAGE_FILL); - gimp_palette_set_background ($chalk_color); - gimp_selection_layer_alpha ($text_layer); - gimp_edit_fill ($text_layer, BG_IMAGE_FILL); - gimp_selection_none ($img); - plug_in_gauss_rle ($img, $text_layer, 2.0, 1, 1); - plug_in_spread ($img, $text_layer, 5.0, 5.0); - plug_in_ripple ($img, $text_layer, 27, 2, 0, 0, 0, 1, 1); - plug_in_ripple ($img, $text_layer, 27, 2, 1, 0, 0, 1, 1); - plug_in_sobel ($img, $text_layer, 1, 1, 1); - gimp_levels ($text_layer, 0, 0, 120, 3.5, 0, 255); - gimp_rect_select ($img, 0, 0, $width, 1, ADD, 0, 0); - gimp_edit_clear ($text_layer); - gimp_selection_none ($img); - gimp_layer_set_preserve_trans ($text_layer, 1); - gimp_layer_set_name ($text_layer, $text); - gimp_palette_set_background ($old_bg); - gimp_palette_set_foreground ($old_fg); - gimp_image_undo_enable ($img); - gimp_display_new ($img); - }; -} -register "perl_fu_chalk_logo", - "Chalk scribbled logos", - "Chalk scribbled logos", - "Manish Singh ", - "Manish Singh", - "October 1997", - N_"/Filters/Logulator/Chalk", - "", - [ - [PF_STRING, 'text_string', "Text String", "CHALK"], - [PF_ADJUSTMENT,'font_size_pixels', "Font Size (pixels)", [150, 2, 1000, 1, 10, 0, 1]], - [PF_FONT, 'font', "Font", "-*-Cooper-*-r-*-*-24-*-*-*-p-*-*-*"], - [PF_COLOUR, 'background_color', "Background Color", [0, 0, 0]], - [PF_COLOUR, 'chalk_color', "Chalk Color", [255, 255, 255]], - ], - \&script_fu_chalk_logo; -sub script_fu_logo_chip_away { - my ($text, $font, $font_size, $spread_amount, $blur_amount, $invert, $drop_shadow, $keep_bump, $bg_fill, $keep_back, $pattern) = @_; - do { - my $img = gimp_image_new (256, 256, RGB_IMAGE); - my $text_layer = gimp_text_fontname ($img, -1, 0, 0, $text, 30, 1, $font_size, PIXELS, $font); - my $width = gimp_drawable_width ($text_layer); - my $height = gimp_drawable_height ($text_layer); - my $bg_layer = gimp_layer_new ($img, $width, $height, RGB_IMAGE, "Background", 100, NORMAL_MODE); - my $bump_layer = gimp_layer_new ($img, $width, $height, RGBA_IMAGE, "Bump Layer", 100, NORMAL_MODE); - my $old_fg = gimp_palette_get_foreground (); - my $old_bg = gimp_palette_get_background (); - - gimp_image_undo_disable ($img); - gimp_image_resize ($img, $width, $height, 0, 0); - gimp_image_add_layer ($img, $bg_layer, 1); - gimp_layer_set_preserve_trans ($text_layer, 1); - gimp_patterns_set_pattern ($pattern); - gimp_palette_set_background ([255, 255, 255]); - gimp_selection_all ($img); - if ($bg_fill) { - gimp_bucket_fill ($bg_layer, 2, NORMAL_MODE, 100, 255, 0, 1, 1); - } else { - gimp_edit_fill ($bg_layer, BG_IMAGE_FILL); - } - gimp_selection_all ($img); - gimp_edit_clear ($bump_layer); - gimp_selection_none ($img); - gimp_selection_layer_alpha ($text_layer); - gimp_edit_fill ($bump_layer, BG_IMAGE_FILL); - gimp_bucket_fill ($text_layer, 2, NORMAL_MODE, 100, 255, 0, 1, 1); - gimp_selection_none ($img); - gimp_image_add_layer ($img, $bump_layer, 1); - gimp_layer_set_preserve_trans ($bump_layer, 0); - plug_in_spread ($img, $bump_layer, $spread_amount, $spread_amount); - gimp_selection_layer_alpha ($bump_layer); - plug_in_gauss_rle ($img, $bump_layer, $blur_amount, 1, 1); - gimp_selection_none ($img); - plug_in_bump_map ($img, $text_layer, $bump_layer, 135.00, 25.0, 60, 0, 0, 0, 0, 1, $invert, 1); - gimp_layer_set_visible ($bump_layer, 0); - if ($drop_shadow) { - do { - do { - my $shadow_layer = gimp_layer_new ($img, $width, $height, RGBA_IMAGE, "Shadow layer", 100, NORMAL_MODE); - - gimp_selection_all ($img); - gimp_edit_clear ($shadow_layer); - gimp_selection_none ($img); - gimp_selection_layer_alpha ($text_layer); - gimp_palette_set_background ([0, 0, 0]); - gimp_edit_fill ($shadow_layer, BG_IMAGE_FILL); - gimp_selection_none ($img); - plug_in_gauss_rle ($img, $shadow_layer, 5, 1, 1); - gimp_image_add_layer ($img, $shadow_layer, 1); - gimp_layer_translate ($shadow_layer, 6, 6); - }; - }; - } - if (!$keep_bump) { - gimp_image_remove_layer ($img, $bump_layer); - } - if (!$keep_back) { - gimp_image_remove_layer ($img, $bg_layer); - } - gimp_palette_set_foreground ($old_fg); - gimp_palette_set_background ($old_bg); - gimp_image_undo_enable ($img); - gimp_display_new ($img); - }; -} - -register "perl_fu_logo_chip_away", - "Chip away effect", - "Chip away effect", - "Adrian Likins ", - "Adrian Likins ", - "1997", - N_"/Filters/Logulator/Chip Away", - "", - [ - [PF_STRING, 'text_string', "Text String", "Sloth"], - [PF_FONT, 'font', "Font", "-*-roostheavy-*-r-*-*-24-*-*-*-p-*-*-*"], - [PF_ADJUSTMENT,'font_size_pixels', "Font Size (pixels)", [200, 2, 1000, 1, 10, 0, 1]], - [PF_VALUE, 'chip_amount', "Chip Amount", "30"], - [PF_VALUE, 'blur_amount', "Blur Amount", "3"], - [PF_TOGGLE, 'invert', "Invert?", 0], - [PF_TOGGLE, 'drop_shadow', "Drop Shadow?", 1], - [PF_TOGGLE, 'keep_bump_layer', "Keep Bump layer?", 0], - [PF_TOGGLE, 'fill_bg_with_pattern',"Fill bg with pattern?", 1], - [PF_TOGGLE, 'keep_background', "Keep Background?", 1], - [PF_PATTERN, 'pattern', "Pattern", "Burlwood"], - ], - \&script_fu_logo_chip_away; -sub script_fu_chrome_logo { - my ($text, $size, $font, $bg_color) = @_; - do { - my $img = gimp_image_new (256, 256, RGB_IMAGE); - my $b_size = $size * 0.2; - my $offx1 = $size * 0.04; - my $offy1 = $size * 0.03; - my $offx2 = $size * -(0.04); - my $offy2 = $size * -(0.03); - my $feather = $size * 0.05; - my $text_layer = gimp_text_fontname ($img, -1, 0, 0, $text, $b_size, 1, $size, PIXELS, $font); - my $width = gimp_drawable_width ($text_layer); - my $height = gimp_drawable_height ($text_layer); - my $layer1 = gimp_layer_new ($img, $width, $height, RGBA_IMAGE, "Layer 1", 100, DIFFERENCE_MODE); - my $layer2 = gimp_layer_new ($img, $width, $height, RGBA_IMAGE, "Layer 2", 100, DIFFERENCE_MODE); - my $layer3 = gimp_layer_new ($img, $width, $height, RGBA_IMAGE, "Layer 3", 100, NORMAL_MODE); - my $shadow = gimp_layer_new ($img, $width, $height, RGBA_IMAGE, "Drop Shadow", 100, NORMAL_MODE); - my $background = gimp_layer_new ($img, $width, $height, RGB_IMAGE, "Background", 100, NORMAL_MODE); - my $layer_mask = gimp_layer_create_mask ($layer1, BLACK_MASK); - my $old_fg = gimp_palette_get_foreground (); - my $old_bg = gimp_palette_get_background (); - - gimp_image_undo_disable ($img); - gimp_image_resize ($img, $width, $height, 0, 0); - gimp_image_add_layer ($img, $background, 1); - gimp_image_add_layer ($img, $shadow, 1); - gimp_image_add_layer ($img, $layer3, 1); - gimp_image_add_layer ($img, $layer2, 1); - gimp_image_add_layer ($img, $layer1, 1); - gimp_palette_set_background ([255, 255, 255]); - gimp_selection_none ($img); - gimp_edit_fill ($layer1, BG_IMAGE_FILL); - gimp_edit_fill ($layer2, BG_IMAGE_FILL); - gimp_edit_fill ($layer3, BG_IMAGE_FILL); - gimp_edit_clear ($shadow); - gimp_selection_layer_alpha ($text_layer); - gimp_layer_set_visible ($text_layer, 0); - gimp_layer_set_visible ($shadow, 0); - gimp_layer_set_visible ($background, 0); - gimp_palette_set_background ([0, 0, 0]); - gimp_edit_fill ($layer1, BG_IMAGE_FILL); - gimp_selection_translate ($img, $offx1, $offy1); - gimp_selection_feather ($img, $feather); - gimp_edit_fill ($layer2, BG_IMAGE_FILL); - gimp_selection_translate ($img, 2 * $offx2, 2 * $offy2); - gimp_edit_fill ($layer3, BG_IMAGE_FILL); - gimp_selection_none ($img); - $layer1 = gimp_image_merge_visible_layers ($img, CLIP_TO_IMAGE); - gimp_invert ($layer1); - gimp_image_add_layer_mask ($img, $layer1, $layer_mask); - gimp_selection_layer_alpha ($text_layer); - gimp_palette_set_background ([255, 255, 255]); - gimp_selection_feather ($img, $feather); - gimp_edit_fill ($layer_mask, BG_IMAGE_FILL); - gimp_palette_set_background ([0, 0, 0]); - gimp_selection_translate ($img, $offx1, $offy1); - gimp_edit_fill ($shadow, BG_IMAGE_FILL); - gimp_selection_none ($img); - gimp_palette_set_background ($bg_color); - gimp_edit_fill ($background, BG_IMAGE_FILL); - gimp_image_remove_layer ($img, $text_layer); - gimp_layer_set_visible ($shadow, 1); - gimp_layer_set_visible ($background, 1); - gimp_layer_set_name ($layer1, $text); - gimp_palette_set_foreground ($old_fg); - gimp_palette_set_background ($old_bg); - gimp_image_undo_enable ($img); - gimp_display_new ($img); - }; -} - -register "perl_fu_chrome_logo", - "Somewhat simplistic, but cool chromed logos", - "Somewhat simplistic, but cool chromed logos", - "Spencer Kimball", - "Spencer Kimball & Peter Mattis", - "1997", - N_"/Filters/Logulator/Chrome", - "", - [ - [PF_STRING, 'text_string', "Text String", "The GIMP"], - [PF_ADJUSTMENT,'font_size_pixels', "Font Size (pixels)", [100, 2, 1000, 1, 10, 0, 1]], - [PF_FONT, 'font', "Font", "-*-Bodoni-*-r-*-*-24-*-*-*-p-*-*-*"], - [PF_COLOUR, 'background_color', "Background Color", [191, 191, 191]], - ], - \&script_fu_chrome_logo; -sub script_fu_comic_logo { - my ($text, $size, $font, $gradient, $ol_width) = @_; - do { - my $img = gimp_image_new (256, 256, RGB_IMAGE); - my $border = $size / 4; - my $text_layer = gimp_text_fontname ($img, -1, 0, 0, $text, $border, 1, $size, PIXELS, $font); - my $width = gimp_drawable_width ($text_layer); - my $height = gimp_drawable_height ($text_layer); - my $bg_layer = gimp_layer_new ($img, $width, $height, RGBA_IMAGE, "Background", 100, NORMAL_MODE); - my $white_layer = gimp_layer_copy ($text_layer, 1); - my $black_layer = gimp_layer_copy ($text_layer, 1); - my $old_fg = gimp_palette_get_foreground (); - my $old_bg = gimp_palette_get_background (); - - gimp_image_undo_disable ($img); - gimp_image_resize ($img, $width, $height, 0, 0); - gimp_image_add_layer ($img, $bg_layer, 1); - gimp_image_add_layer ($img, $white_layer, 1); - gimp_layer_set_name ($white_layer, "White"); - gimp_image_add_layer ($img, $black_layer, 1); - gimp_layer_set_name ($black_layer, "Black"); - gimp_selection_all ($img); - gimp_edit_fill ($bg_layer, BG_IMAGE_FILL); - gimp_selection_none ($img); - gimp_layer_set_preserve_trans ($white_layer, 1); - gimp_palette_set_background ([255, 255, 255]); - gimp_selection_all ($img); - gimp_edit_fill ($white_layer, BG_IMAGE_FILL); - gimp_layer_set_preserve_trans ($white_layer, 0); - plug_in_spread ($img, $white_layer, 3 * $ol_width, 3 * $ol_width); - plug_in_gauss_rle ($img, $white_layer, 2 * $ol_width, 1, 1); - plug_in_threshold_alpha ($img, $white_layer, 0); - gimp_selection_none ($img); - gimp_palette_set_background ([0, 0, 0]); - gimp_layer_set_preserve_trans ($black_layer, 1); - gimp_selection_all ($img); - gimp_edit_fill ($black_layer, BG_IMAGE_FILL); - gimp_selection_none ($img); - gimp_layer_set_preserve_trans ($black_layer, 0); - plug_in_gauss_rle ($img, $black_layer, $ol_width, 1, 1); - plug_in_threshold_alpha ($img, $black_layer, 0); - gimp_gradients_set_active ($gradient); - gimp_layer_set_preserve_trans ($text_layer, 1); - gimp_selection_all ($img); - gimp_blend ($text_layer, CUSTOM, NORMAL_MODE, LINEAR, 100, 0, REPEAT_NONE, 0, 0, 0, 0, 2 * $border, 0, ($height - $border)); - plug_in_noisify ($img, $text_layer, 0, 0.20, 0.20, 0.20, 0.20); - gimp_selection_none ($img); - gimp_layer_set_preserve_trans ($text_layer, 0); - gimp_brightness_contrast ($text_layer, 0, 30); - plug_in_threshold_alpha ($img, $text_layer, 60); - gimp_layer_set_name ($text_layer, $text); - gimp_image_set_active_layer ($img, $text_layer); - gimp_palette_set_background ($old_bg); - gimp_palette_set_foreground ($old_fg); - gimp_image_undo_enable ($img); - gimp_display_new ($img); - }; -} - -register "perl_fu_comic_logo", - "Comic-book Style Logos", - "Comic-book Style Logos", - "Brian McFee ", - "Brian McFee", - "April 1998", - N_"/Filters/Logulator/Comic Book", - "", - [ - [PF_STRING, 'text_string', "Text String", "Moo"], - [PF_ADJUSTMENT,'font_size_pixels', "Font Size (pixels)", [85, 2, 1000, 1, 10, 0, 1]], - [PF_FONT, 'font', "Font", "-*-tribeca-*-i-*-*-24-*-*-*-p-*-*-*"], - [PF_GRADIENT, 'gradient', "Gradient", "Incandescent"], - [PF_VALUE, 'outline_width', "Outline width", "5"], - ], - \&script_fu_comic_logo; -sub script_fu_cool_metal_logo { - my ($text, $size, $font, $bg_color, $seascape) = @_; - do { - my $img = gimp_image_new (256, 256, RGB_IMAGE); - my $feather = $size / 5; - my $smear = 7.5; - my $period = $size / 3; - my $amplitude = $size / 40; - my $shrink = (1 + $size / 30); - my $depth = $size / 20; - my $text_layer = gimp_text_fontname ($img, -1, 0, 0, $text, 0, 1, $size, PIXELS, $font); - my $width = gimp_drawable_width ($text_layer); - my $height = gimp_drawable_height ($text_layer); - my $img_width = ($width + 0.15 * $height + 10); - my $img_height = (1.85 * $height + 10); - my $bg_layer = gimp_layer_new ($img, $img_width, $img_height, RGB_IMAGE, "Background", 100, NORMAL_MODE); - my $shadow_layer = gimp_layer_new ($img, $img_width, $img_height, RGBA_IMAGE, "Shadow", 100, NORMAL_MODE); - my $reflect_layer = gimp_layer_new ($img, $width, $height, RGBA_IMAGE, "Reflection", 100, NORMAL_MODE); - my $channel = 0; - my $fs = 0; - my $layer_mask = 0; - my $old_gradient = gimp_gradients_get_active (); - my $old_fg = gimp_palette_get_foreground (); - my $old_bg = gimp_palette_get_background (); - - gimp_image_undo_disable ($img); - gimp_image_resize ($img, $img_width, $img_height, 0, 0); - gimp_image_add_layer ($img, $bg_layer, 1); - gimp_image_add_layer ($img, $reflect_layer, 1); - gimp_image_add_layer ($img, $shadow_layer, 1); - gimp_layer_set_preserve_trans ($text_layer, 1); - gimp_palette_set_background ($bg_color); - gimp_edit_fill ($bg_layer, BG_IMAGE_FILL); - gimp_edit_clear ($reflect_layer); - gimp_palette_set_background ([0, 0, 0]); - gimp_edit_fill ($shadow_layer, BG_IMAGE_FILL); - if ($seascape == 1) { - gimp_gradients_set_active ("Horizon_2"); - } else { - gimp_gradients_set_active ("Horizon_1"); - } - gimp_blend ($text_layer, CUSTOM, NORMAL_MODE, LINEAR, 100, 0, REPEAT_NONE, 0, 0, 0, 0, 0, 0, ($height + 5)); - gimp_rect_select ($img, 0, ($height / 2 - $feather), $img_width, 2 * $feather, REPLACE, 0, 0); - plug_in_gauss_iir ($img, $text_layer, $smear, 1, 1); - gimp_selection_none ($img); - plug_in_ripple ($img, $text_layer, $period, $amplitude, 1, 0, 1, 1, 0); - gimp_layer_translate ($text_layer, 5, 5); - gimp_layer_resize ($text_layer, $img_width, $img_height, 5, 5); - gimp_selection_layer_alpha ($text_layer); - $channel = gimp_selection_save ($img); - gimp_selection_shrink ($img, $shrink); - gimp_selection_invert ($img); - plug_in_gauss_rle ($img, $channel, $feather, 1, 1); - gimp_selection_layer_alpha ($text_layer); - gimp_selection_invert ($img); - gimp_palette_set_background ([0, 0, 0]); - gimp_edit_fill ($channel, BG_IMAGE_FILL); - gimp_selection_none ($img); - plug_in_bump_map ($img, $text_layer, $channel, 135, 45, $depth, 0, 0, 0, 0, 0, 0, 0); - gimp_selection_layer_alpha ($text_layer); - $fs = gimp_selection_float ($shadow_layer, 0, 0); - gimp_edit_clear ($shadow_layer); - gimp_perspective ($fs, 0, (5 + 0.15 * $height), ($height - 0.15 * $height), (5 + $width + 0.15 * $height), ($height - 0.15 * $height), 5, $height, (5 + $width), $height); - gimp_floating_sel_anchor ($fs); - plug_in_gauss_rle ($img, $shadow_layer, $smear, 1, 1); - gimp_rect_select ($img, 5, 5, $width, $height, REPLACE, 0, 0); - gimp_edit_copy ($text_layer); - $fs = gimp_edit_paste ($reflect_layer, 0); - gimp_floating_sel_anchor ($fs); - gimp_scale ($reflect_layer, 0, 0, 0, $width, 0.85 * $height); - gimp_flip ($reflect_layer, 1); - gimp_layer_set_offsets ($reflect_layer, 5, (3 + $height)); - $layer_mask = gimp_layer_create_mask ($reflect_layer, WHITE_MASK); - gimp_image_add_layer_mask ($img, $reflect_layer, $layer_mask); - gimp_palette_set_foreground ([255, 255, 255]); - gimp_palette_set_background ([0, 0, 0]); - gimp_blend ($layer_mask, FG_BG_RGB, NORMAL_MODE, LINEAR, 100, 0, REPEAT_NONE, 0, 0, 0, 0, -($height / 2), 0, $height); - gimp_image_remove_channel ($img, $channel); - gimp_layer_set_name ($text_layer, $text); - gimp_gradients_set_active ($old_gradient); - gimp_palette_set_background ($old_bg); - gimp_palette_set_foreground ($old_fg); - gimp_image_undo_enable ($img); - gimp_display_new ($img); - }; -} - -register "perl_fu_cool_metal_logo", - "Metallic logos with reflections and perspective shadows", - "Metallic logos with reflections and perspective shadows", - "Spencer Kimball & Rob Malda", - "Spencer Kimball & Rob Malda", - "1997", - N_"/Filters/Logulator/Cool Metal", - "", - [ - [PF_STRING, 'text_string', "Text String", "Cool Metal"], - [PF_ADJUSTMENT,'font_size_pixels', "Font Size (pixels)", [100, 2, 1000, 1, 10, 0, 1]], - [PF_FONT, 'font', "Font", "-*-Crillee-*-r-*-*-24-*-*-*-p-*-*-*"], - [PF_COLOUR, 'background_color', "Background Color", [255, 255, 255]], - [PF_TOGGLE, 'seascape', "Seascape", 0], - ], - \&script_fu_cool_metal_logo; sub set_pt { my ($a, $index, $x, $y) = @_; do { @@ -1342,365 +515,7 @@ register "perl_fu_crystal_logo", [PF_FILE, 'environment_map', "Environment Map", "".'/usr/local/share/gimp'."/scripts/beavis.jpg"], ], \&script_fu_crystal_logo; -sub min { - my ($a, $b) = @_; - if ($a < $b) { - $a; - } else { - $b; - } -} -sub script_fu_frosty_logo { - my ($text, $size, $font, $bg_color) = @_; - do { - my $img = gimp_image_new (256, 256, RGB_IMAGE); - my $border = $size / 7.5; # to avoid the ugly effect of the shadow, if the offset is excessive - my $text_layer = gimp_text_fontname ($img, -1, 0, 0, $text, $border * 2, 1, $size, PIXELS, $font); - my $width = gimp_drawable_width ($text_layer); - my $height = gimp_drawable_height ($text_layer); - my $text_layer_mask = gimp_layer_create_mask ($text_layer, BLACK_MASK); - my $sparkle_layer = gimp_layer_new ($img, $width, $height, RGBA_IMAGE, "Sparkle", 100, NORMAL_MODE); - my $matte_layer = gimp_layer_new ($img, $width, $height, RGBA_IMAGE, "Matte", 100, NORMAL_MODE); - # to soften a bit the shadow effect, set opacity to 70 - my $shadow_layer = gimp_layer_new ($img, $width, $height, RGBA_IMAGE, "Shadow", 70, MULTIPLY_MODE); - my $bg_layer = gimp_layer_new ($img, $width, $height, RGB_IMAGE, "Background", 100, NORMAL_MODE); - my $selection = 0; - my $old_fg = gimp_palette_get_foreground (); - my $old_bg = gimp_palette_get_background (); - my $old_brush = gimp_brushes_get_brush (); - my $old_paint_mode = gimp_brushes_get_paint_mode (); - - gimp_image_undo_disable ($img); - gimp_image_resize ($img, $width, $height, 0, 0); - gimp_image_add_layer ($img, $sparkle_layer, 2); - gimp_image_add_layer ($img, $matte_layer, 3); - gimp_image_add_layer ($img, $shadow_layer, 4); - gimp_image_add_layer ($img, $bg_layer, 5); - gimp_selection_none ($img); - gimp_edit_clear ($sparkle_layer); - gimp_edit_clear ($matte_layer); - gimp_edit_clear ($shadow_layer); - gimp_selection_layer_alpha ($text_layer); - $selection = gimp_selection_save ($img); - gimp_selection_feather ($img, $border); - gimp_palette_set_background ([0, 0, 0]); - gimp_edit_fill ($sparkle_layer, BG_IMAGE_FILL); - plug_in_noisify ($img, $sparkle_layer, 0, 0.2, 0.2, 0.2, 0.0); - plug_in_c_astretch ($img, $sparkle_layer); - gimp_selection_none ($img); - plug_in_sparkle ($img, $sparkle_layer, 0.03, 0.45, min ($width, $height) / 2, 6, 15, 1.0, 0.0, 0.0, 0.0, 0, 0, 0, 0); - gimp_levels ($sparkle_layer, 1, 0, 255, 0.2, 0, 255); - gimp_levels ($sparkle_layer, 2, 0, 255, 0.7, 0, 255); - gimp_selection_layer_alpha ($sparkle_layer); - gimp_palette_set_foreground ([0, 0, 0]); - gimp_brushes_set_brush ("Circle Fuzzy (11)"); - gimp_edit_stroke ($matte_layer); - gimp_selection_feather ($img, $border); - gimp_edit_fill ($shadow_layer, BG_IMAGE_FILL); - gimp_selection_none ($img); - gimp_palette_set_background ($bg_color); - gimp_edit_fill ($bg_layer, BG_IMAGE_FILL); - gimp_palette_set_background ([0, 0, 0]); - gimp_edit_fill ($text_layer, BG_IMAGE_FILL); - gimp_image_add_layer_mask ($img, $text_layer, $text_layer_mask); - gimp_selection_load ($selection); - gimp_palette_set_background ([255, 255, 255]); - gimp_edit_fill ($text_layer_mask, BG_IMAGE_FILL); - gimp_selection_feather ($img, $border); - gimp_selection_translate ($img, $border / 2, $border / 2); - gimp_edit_fill ($text_layer, BG_IMAGE_FILL); - gimp_image_remove_layer_mask ($img, $text_layer, 0); - gimp_selection_load ($selection); - gimp_brushes_set_brush ("Circle Fuzzy (07)"); - gimp_brushes_set_paint_mode (BEHIND_MODE); - gimp_palette_set_foreground ([186, 241, 255]); - gimp_edit_stroke ($text_layer); - gimp_selection_none ($img); - gimp_image_remove_channel ($img, $selection); - gimp_palette_set_foreground ($old_fg); - gimp_palette_set_background ($old_bg); - gimp_brushes_set_brush ($old_brush); - gimp_brushes_set_paint_mode ($old_paint_mode); - gimp_layer_translate ($shadow_layer, $border, $border); - gimp_image_undo_enable ($img); - gimp_display_new ($img); - }; -} - -register "perl_fu_frosty_logo", - "Frozen logos with drop shadows", - "Frozen logos with drop shadows", - "Spencer Kimball & Ed Mackey", - "Spencer Kimball & Ed Mackey", - "1997", - N_"/Filters/Logulator/Frosty", - "", - [ - [PF_STRING, 'text_string', "Text String", "The GIMP"], - [PF_ADJUSTMENT,'font_size_pixels', "Font Size (pixels)", [100, 2, 1000, 1, 10, 0, 1]], - [PF_FONT, 'font', "Font", "-*-Becker-*-r-*-*-24-*-*-*-p-*-*-*"], - [PF_COLOUR, 'background_color', "Background Color", [255, 255, 255]], - ], - \&script_fu_frosty_logo; -sub script_fu_glossy_logo { - my ($text, $size, $font, $blend_gradient_text, $blend_gradient_outline, $grow_size, $bg_color, $use_pattern_text, $pattern_text, $use_pattern_outline, $pattern_outline, $use_pattern_overlay, $pattern_overlay, $shadow_toggle, $s_offset_x, $s_offset_y, $flatten_toggle) = @_; - do { - my $img = gimp_image_new (256, 256, RGB_IMAGE); - my $text_layer = gimp_text_fontname ($img, -1, 0, 0, $text, 30, 1, $size, PIXELS, $font); - my $width = gimp_drawable_width ($text_layer); - my $height = gimp_drawable_height ($text_layer); - my $bg_layer = gimp_layer_new ($img, $width, $height, RGBA_IMAGE, "Background", 100, NORMAL_MODE); - my $grow_me = gimp_layer_copy ($text_layer, 1); - my $old_gradient = gimp_gradients_get_active (); - my $old_patterns = gimp_patterns_get_pattern (); - my $old_fg = gimp_palette_get_foreground (); - my $old_bg = gimp_palette_get_background (); - - gimp_image_undo_disable ($img); - gimp_image_resize ($img, $width, $height, 0, 0); - gimp_layer_set_name ($grow_me, "Grow-me"); - gimp_image_add_layer ($img, $grow_me, 1); - gimp_image_add_layer ($img, $bg_layer, 2); - gimp_palette_set_background ($bg_color); - gimp_selection_all ($img); - gimp_bucket_fill ($bg_layer, BG_BUCKET_FILL, NORMAL_MODE, 100, 0, 0, 0, 0); - gimp_selection_none ($img); - gimp_palette_set_background ($old_bg); - gimp_selection_layer_alpha ($text_layer); - if ($use_pattern_text) { - do { - gimp_patterns_set_pattern ($pattern_text); - gimp_bucket_fill ($text_layer, PATTERN_BUCKET_FILL, NORMAL_MODE, 100, 0, 0, 0, 0); - gimp_patterns_set_pattern ($old_patterns); - }; - } - if (!$use_pattern_text) { - do { - gimp_gradients_set_active ($blend_gradient_text); - gimp_blend ($text_layer, CUSTOM, NORMAL_MODE, LINEAR, 100, 0, REPEAT_NONE, 0, 0, 0, 0, 0, 0, ($height + 5)); - }; - } - gimp_selection_none ($img); - gimp_selection_layer_alpha ($grow_me); - gimp_selection_grow ($img, $grow_size); - if ($use_pattern_outline) { - do { - gimp_patterns_set_pattern ($pattern_outline); - gimp_bucket_fill ($grow_me, PATTERN_BUCKET_FILL, NORMAL_MODE, 100, 0, 0, 0, 0); - gimp_patterns_set_pattern ($old_patterns); - }; - } - if (!$use_pattern_outline) { - do { - gimp_gradients_set_active ($blend_gradient_outline); - gimp_blend ($grow_me, CUSTOM, NORMAL_MODE, LINEAR, 100, 0, REPEAT_NONE, 0, 0, 0, 0, 0, 0, ($height + 5)); - }; - } - gimp_selection_none ($img); - plug_in_bump_map ($img, $grow_me, $text_layer, 110.0, 45.0, 3, 0, 0, 0, 0, 1, 0, 0); - gimp_layer_set_mode ($text_layer, SCREEN_MODE); - if ($use_pattern_overlay) { - do { - gimp_selection_layer_alpha ($grow_me); - gimp_patterns_set_pattern ($pattern_overlay); - gimp_bucket_fill ($grow_me, PATTERN_BUCKET_FILL, OVERLAY_MODE, 100, 0, 0, 0, 0); - gimp_patterns_set_pattern ($old_patterns); - gimp_selection_none ($img); - }; - } - if ($shadow_toggle == 1) { - do { - $drop_sh_layer = gimp_layer_copy ($text_layer, 1); - gimp_layer_set_mode ($drop_sh_layer, NORMAL_MODE); - gimp_image_add_layer ($img, $drop_sh_layer, 2); - gimp_selection_layer_alpha ($drop_sh_layer); - gimp_palette_set_background ([0, 0, 0]); - gimp_edit_fill ($drop_sh_layer, BG_IMAGE_FILL); - gimp_selection_none ($img); - plug_in_gauss_rle ($drop_sh_layer, 15, 1, 1); - gimp_layer_set_offsets ($drop_sh_layer, $s_offset_x, $s_offset_y); - gimp_layer_set_opacity ($drop_sh_layer, 80); - }; - } - if ($flatten_toggle == 1) { - do { - $final = gimp_image_flatten ($img); - }; - } - gimp_gradients_set_active ($old_gradient); - gimp_palette_set_background ($old_bg); - gimp_palette_set_foreground ($old_fg); - gimp_image_undo_enable ($img); - gimp_display_new ($img); - }; -} - -register "perl_fu_glossy_logo", - "Creates anything you can create with it :)", - "Creates anything you can create with it :)", - "Hrvoje Horvat (hhorvat\@open.hr)", - "Hrvoje Horvat", - "14/04/1998", - N_"/Filters/Logulator/Glossy", - "", - [ - [PF_STRING, 'text_string', "Text String", "Galaxy"], - [PF_ADJUSTMENT,'font_size_pixels', "Font Size (pixels)", [100, 2, 1000, 1, 10, 0, 1]], - [PF_FONT, 'font', "Font", "-*-Eras-*-r-*-*-24-*-*-*-p-*-*-*"], - [PF_GRADIENT, 'blend_gradient_text',"Blend Gradient (text)", "Shadows_2"], - [PF_GRADIENT, 'blend_gradient_outline',"Blend Gradient (outline)", "Shadows_2"], - [PF_VALUE, 'how_big_outline', "How big outline?", "5"], - [PF_COLOUR, 'background_color', "Background Color", [255, 255, 255]], - [PF_TOGGLE, 'use_pattern_for_text_instead_of_gradient',"Use pattern for text instead of gradient", 0], - [PF_PATTERN, 'pattern_text', "Pattern (text)", "Electric Blue"], - [PF_TOGGLE, 'use_pattern_for_outline_instead_of_gradient',"Use pattern for outline instead of gradient", 0], - [PF_PATTERN, 'pattern_outline', "Pattern (outline)", "Electric Blue"], - [PF_TOGGLE, 'use_pattern_overlay',"Use pattern overlay", 0], - [PF_PATTERN, 'pattern_overlay', "Pattern (overlay)", "Parque #1"], - [PF_TOGGLE, 'shadow_toggle', "Shadow?", 1], - [PF_VALUE, 's_offset_x', "Shadow X offset", "8"], - [PF_VALUE, 's_offset_y', "Shadow Y offset", "8"], - [PF_TOGGLE, 'flatten_toggle', "Flatten image?", 0], - ], - \&script_fu_glossy_logo; -sub script_fu_glowing_logo { - my ($text, $size, $font, $bg_color) = @_; - do { - my $img = gimp_image_new (256, 256, RGB_IMAGE); - my $border = $size / 4; - my $grow = $size / 4; - my $feather1 = $size / 3; - my $feather2 = $size / 7; - my $feather3 = $size / 10; - my $text_layer = gimp_text_fontname ($img, -1, 0, 0, $text, $border, 1, $size, PIXELS, $font); - my $width = gimp_drawable_width ($text_layer); - my $height = gimp_drawable_height ($text_layer); - my $glow_layer = gimp_layer_copy ($text_layer, 1); - my $bg_layer = gimp_layer_new ($img, $width, $height, RGB_IMAGE, "Background", 100, NORMAL_MODE); - my $old_fg = gimp_palette_get_foreground (); - my $old_bg = gimp_palette_get_background (); - - gimp_image_undo_disable ($img); - gimp_image_resize ($img, $width, $height, 0, 0); - gimp_image_add_layer ($img, $bg_layer, 1); - gimp_image_add_layer ($img, $glow_layer, 1); - gimp_selection_none ($img); - gimp_palette_set_background ($bg_color); - gimp_edit_fill ($bg_layer, BG_IMAGE_FILL); - gimp_layer_set_preserve_trans ($text_layer, 1); - gimp_palette_set_background ([0, 0, 0]); - gimp_edit_fill ($text_layer, BG_IMAGE_FILL); - gimp_selection_layer_alpha ($text_layer); - gimp_selection_feather ($img, $feather1); - gimp_palette_set_background ([221, 0, 0]); - gimp_edit_fill ($glow_layer, BG_IMAGE_FILL); - gimp_edit_fill ($glow_layer, BG_IMAGE_FILL); - gimp_edit_fill ($glow_layer, BG_IMAGE_FILL); - gimp_selection_layer_alpha ($text_layer); - gimp_selection_feather ($img, $feather2); - gimp_palette_set_background ([232, 217, 18]); - gimp_edit_fill ($glow_layer, BG_IMAGE_FILL); - gimp_edit_fill ($glow_layer, BG_IMAGE_FILL); - gimp_selection_layer_alpha ($text_layer); - gimp_selection_feather ($img, $feather3); - gimp_palette_set_background ([255, 255, 255]); - gimp_edit_fill ($glow_layer, BG_IMAGE_FILL); - gimp_selection_none ($img); - gimp_layer_set_name ($text_layer, $text); - gimp_layer_set_mode ($text_layer, OVERLAY_MODE); - gimp_layer_set_name ($glow_layer, "Glow Layer"); - gimp_palette_set_background ($old_bg); - gimp_palette_set_foreground ($old_fg); - gimp_image_undo_enable ($img); - gimp_display_new ($img); - }; -} - -register "perl_fu_glowing_logo", - "Glowing hot logos", - "Glowing hot logos", - "Spencer Kimball", - "Spencer Kimball", - "1997", - N_"/Filters/Logulator/Glowing Hot", - "", - [ - [PF_STRING, 'text_string', "Text String", "GLOWING"], - [PF_ADJUSTMENT,'font_size_pixels', "Font Size (pixels)", [150, 2, 1000, 1, 10, 0, 1]], - [PF_FONT, 'font', "Font", "-*-Slogan-*-r-*-*-24-*-*-*-p-*-*-*"], - [PF_COLOUR, 'background_color', "Background Color", [7, 0, 20]], - ], - \&script_fu_glowing_logo; -sub script_fu_gradient_bevel_logo { - my ($text, $size, $font, $bevel_height, $bevel_width) = @_; - do { - my $img = gimp_image_new (256, 256, RGB_IMAGE); - my $border = $size / 4; - my $text_layer = gimp_text_fontname ($img, -1, 0, 0, $text, $border, 1, $size, PIXELS, $font); - my $width = gimp_drawable_width ($text_layer); - my $height = gimp_drawable_height ($text_layer); - my $indentX = ($border + 12); - my $indentY = ($border + $height / 8); - my $bg_layer = gimp_layer_new ($img, $width, $height, RGBA_IMAGE, "Background", 100, NORMAL_MODE); - my $blur_layer = gimp_layer_new ($img, $width, $height, RGBA_IMAGE, "Blur", 100, NORMAL_MODE); - my $old_fg = gimp_palette_get_foreground (); - my $old_bg = gimp_palette_get_background (); - - gimp_image_undo_disable ($img); - gimp_image_resize ($img, $width, $height, 0, 0); - gimp_image_add_layer ($img, $bg_layer, 1); - gimp_image_add_layer ($img, $blur_layer, 1); - gimp_selection_all ($img); - gimp_edit_fill ($bg_layer, BG_IMAGE_FILL); - gimp_selection_none ($img); - gimp_layer_set_preserve_trans ($blur_layer, 1); - gimp_palette_set_background ([255, 255, 255]); - gimp_selection_all ($img); - gimp_edit_fill ($blur_layer, BG_IMAGE_FILL); - gimp_edit_clear ($blur_layer); - gimp_selection_none ($img); - gimp_layer_set_preserve_trans ($blur_layer, 0); - gimp_selection_layer_alpha ($text_layer); - gimp_edit_fill ($blur_layer, BG_IMAGE_FILL); - plug_in_gauss_rle ($img, $blur_layer, $bevel_width, 1, 1); - gimp_selection_none ($img); - gimp_palette_set_background ([127, 127, 127]); - gimp_palette_set_foreground ([255, 255, 255]); - gimp_layer_set_preserve_trans ($text_layer, 1); - gimp_selection_all ($img); - gimp_blend ($text_layer, FG_BG_RGB, NORMAL_MODE, RADIAL, 95, 0, REPEAT_NONE, 0, 0, 0, $indentX, $indentY, $indentX, ($height - $indentY)); - gimp_selection_none ($img); - gimp_layer_set_preserve_trans ($text_layer, 0); - gimp_layer_set_name ($text_layer, $text); - plug_in_bump_map ($img, $text_layer, $blur_layer, 115, $bevel_height, 5, 0, 0, 0, 15, 1, 0, 0); - gimp_layer_set_offsets ($blur_layer, 5, 5); - gimp_invert ($blur_layer); - gimp_layer_set_opacity ($blur_layer, 50.0); - gimp_image_set_active_layer ($img, $text_layer); - gimp_palette_set_background ($old_bg); - gimp_palette_set_foreground ($old_fg); - gimp_image_undo_enable ($img); - gimp_display_new ($img); - }; -} - -register "perl_fu_gradient_bevel_logo", - "Makes Shiny Bevelly text", - "Makes Shiny Bevelly text", - "Brian McFee ", - "Brian McFee", - "April 1998", - N_"/Filters/Logulator/Gradient Bevel", - "", - [ - [PF_STRING, 'text_string', "Text String", "Moo"], - [PF_ADJUSTMENT,'font_size_pixels', "Font Size (pixels)", [90, 2, 1000, 1, 10, 0, 1]], - [PF_FONT, 'font', "Font", "-*-futura_poster-*-r-*-*-24-*-*-*-p-*-*-*"], - [PF_VALUE, 'bevel_height_sharpness',"Bevel Height (sharpness)", "40"], - [PF_VALUE, 'bevel_width', "Bevel Width", "2.5"], - ], - \&script_fu_gradient_bevel_logo; sub script_fu_i26_gunya2 { my ($text, $text_color, $frame_color, $font, $font_size, $frame_size) = @_; do { @@ -1780,215 +595,7 @@ register "perl_fu_i26_gunya2", [PF_VALUE, 'frame_size', "Frame Size", "2"], ], \&script_fu_i26_gunya2; -sub set_pt { - my ($a, $index, $x, $y) = @_; - do { - $a->[$index * 2] = $x; - $a->[($index * 2 + 1)] = $y; - }; -} -sub neon_spline1 { - - do { - my $a = (6,"byte",[]); - - set_pt ($a, 0, 0, 0); - set_pt ($a, 1, 127, 145); - set_pt ($a, 2, 255, 255); - $a; - }; -} - -sub neon_spline2 { - - do { - my $a = (6,"byte",[]); - - set_pt ($a, 0, 0, 0); - set_pt ($a, 1, 110, 150); - set_pt ($a, 2, 255, 255); - $a; - }; -} - -sub neon_spline3 { - - do { - my $a = (6,"byte",[]); - - set_pt ($a, 0, 0, 0); - set_pt ($a, 1, 100, 185); - set_pt ($a, 2, 255, 255); - $a; - }; -} - -sub find_hue_offset { - my ($color) = @_; - do { - my $R = @{$color}[0]; - my $G = @{$color}[1]; - my $B = @{$color}[2]; - my $max_val = max ($R, $G, $B); - my $min_val = min ($R, $G, $B); - my $delta = ($max_val - $min_val); - my $hue = 0; - - if ($max == 0) { - 0; - } else { - do { - $max_val == $R ? set_ ($hue, ($G - $B) / 1.0 * $delta) - : $max_val == $G ? set_ ($hue, (2 + ($B - $R) / 1.0 * $delta)) - : $max_val == $B ? set_ ($hue, (4 + ($R - $G) / 1.0 * $delta)) - : die 'cond fell off the end'; - $hue = $hue * 60; - if ($hue < 0) { - $hue = ($hue + 360); - } - if ($hue > 360) { - $hue = ($hue - 360); - } - if ($hue > 180) { - $hue = ($hue - 360); - } - $hue; - }; - } - }; -} - -sub script_fu_neon_logo { - my ($text, $size, $font, $bg_color, $glow_color, $shadow) = @_; - do { - my $img = gimp_image_new (256, 256, RGB_IMAGE); - my $tube_hue = find_hue_offset ($glow_color); - my $border = $size / 4; - my $shrink = $size / 14; - my $grow = $size / 40; - my $feather = $size / 5; - my $feather1 = $size / 25; - my $feather2 = $size / 12; - my $inc_shrink = $size / 100; - my $shadow_shrink = $size / 40; - my $shadow_feather = $size / 20; - my $shadow_offx = $size / 10; - my $shadow_offy = $size / 10; - my $tube_layer = gimp_text_fontname ($img, -1, 0, 0, $text, $border, 1, $size, PIXELS, $font); - #get the actual height of the text the user has in the drawable - gimp_selection_layer_alpha ($tube_layer); - $float_layer = gimp_selection_float ($tube_layer, 0, 0); - $float_height = $float_layer->height; - gimp_floating_sel_anchor ($float_layer); - my $width = gimp_drawable_width ($tube_layer); - my $height = gimp_drawable_height ($tube_layer); - my $glow_layer = gimp_layer_new ($img, $width, $height, RGBA_IMAGE, "Neon Glow", 100, NORMAL_MODE); - my $bg_layer = gimp_layer_new ($img, $width, $height, RGB_IMAGE, "Background", 100, NORMAL_MODE); - my $shadow_layer = ($shadow) ? (gimp_layer_new ($img, $width, $height, RGBA_IMAGE, "Shadow", 100, NORMAL_MODE)) : (0); - my $selection = 0; - my $old_fg = gimp_palette_get_foreground (); - my $old_bg = gimp_palette_get_background (); - - gimp_image_undo_disable ($img); - gimp_image_resize ($img, $width, $height, 0, 0); - gimp_image_add_layer ($img, $bg_layer, 1); - if (not ($shadow == 0)) { - do { - gimp_image_add_layer ($img, $shadow_layer, 1); - gimp_edit_clear ($shadow_layer); - }; - } - gimp_image_add_layer ($img, $glow_layer, 1); - gimp_palette_set_background ([0, 0, 0]); - gimp_selection_layer_alpha ($tube_layer); - $selection = gimp_selection_save ($img); - gimp_selection_none ($img); - gimp_edit_clear ($glow_layer); - gimp_edit_fill ($tube_layer, BG_IMAGE_FILL); - gimp_palette_set_background ($bg_color); - gimp_edit_fill ($bg_layer, BG_IMAGE_FILL); - gimp_selection_load ($selection); - gimp_palette_set_background ([255, 255, 255]); - gimp_edit_fill ($tube_layer, BG_IMAGE_FILL); - gimp_selection_shrink ($img, $shrink); - gimp_palette_set_background ([0, 0, 0]); - gimp_edit_fill ($selection, BG_IMAGE_FILL); - if ($float_height >= 100) { - gimp_edit_fill ($tube_layer, BG_IMAGE_FILL); #this way the user has to choose a REAL big font - } #in order to get the original effect!! - gimp_selection_none ($img); - if (not ($feather1 == 0)) { - plug_in_gauss_rle ($img, $tube_layer, $feather1, 1, 1); - } - gimp_selection_load ($selection); - if (not ($feather2 == 0)) { - plug_in_gauss_rle ($img, $tube_layer, $feather2, 1, 1); - } - gimp_brightness_contrast ($tube_layer, -10, 15); - gimp_selection_none ($img); - gimp_hue_saturation ($tube_layer, 0, $tube_hue, -15, 70); - gimp_selection_load ($selection); - gimp_selection_feather ($img, $inc_shrink); - if ($size < 100) { - gimp_selection_shrink ($img, $inc_shrink * 2); #this is to avoid the strange error if - } else { #gimp_selection_shrink is called with 0 - gimp_selection_shrink ($img, $inc_shrink); - } - gimp_curves_spline ($tube_layer, 0, 6, neon_spline1 ()); - gimp_selection_load ($selection); - gimp_selection_feather ($img, $inc_shrink); - gimp_selection_shrink ($img, $inc_shrink * 2); - gimp_curves_spline ($tube_layer, 0, 6, neon_spline2 ()); - gimp_selection_load ($selection); - gimp_selection_feather ($img, $inc_shrink); - gimp_selection_shrink ($img, $inc_shrink * 3); - gimp_curves_spline ($tube_layer, 0, 6, neon_spline3 ()); - gimp_selection_load ($selection); - gimp_selection_grow ($img, $grow); - gimp_selection_invert ($img); - gimp_edit_clear ($tube_layer); - gimp_selection_invert ($img); - gimp_selection_feather ($img, $feather); - gimp_palette_set_background ($glow_color); - gimp_edit_fill ($glow_layer, BG_IMAGE_FILL); - if (not ($shadow == 0)) { - do { - gimp_selection_layer_alpha ($tube_layer); - gimp_selection_shrink ($img, $shadow_shrink); - gimp_selection_feather ($img, $shadow_feather); - gimp_selection_translate ($img, $shadow_offx, $shadow_offy); - gimp_palette_set_background ([0, 0, 0]); - gimp_edit_fill ($shadow_layer, BG_IMAGE_FILL); - }; - } - gimp_selection_none ($img); - gimp_layer_set_name ($tube_layer, "Neon Tubes"); - gimp_palette_set_background ($old_bg); - gimp_palette_set_foreground ($old_fg); - gimp_image_remove_channel ($img, $selection); - gimp_image_undo_enable ($img); - gimp_display_new ($img); - }; -} - -register "perl_fu_neon_logo", - "Neon logos", - "Neon logos", - "Spencer Kimball", - "Spencer Kimball", - "1997", - N_"/Filters/Logulator/Neon", - "", - [ - [PF_STRING, 'text_string', "Text String", "NEON"], - [PF_ADJUSTMENT,'font_size_pixels', "Font Size (pixels)", [150, 2, 1000, 1, 10, 0, 1]], - [PF_FONT, 'font', "Font", "-*-Blippo-*-*-*-*-24-*-*-*-*-*-*-*"], - [PF_COLOUR, 'background_color', "Background Color", [0, 0, 0]], - [PF_COLOUR, 'glow_color', "Glow Color", [38, 211, 255]], - [PF_TOGGLE, 'create_shadow', "Create Shadow?", 0], - ], - \&script_fu_neon_logo; sub script_fu_newsprint_text { my ($string, $font, $font_size, $cell_size, $density) = @_; do { @@ -2323,410 +930,7 @@ register "perl_fu_speed_text", [PF_ADJUSTMENT,'density', "Density (%)", [80, 0, 100, 1, 10, 0, 0]], ], \&script_fu_speed_text; -sub script_fu_starburst_logo { - my ($text, $size, $fontname, $burst_color, $bg_color) = @_; - do { - my $img = gimp_image_new (256, 256, RGB_IMAGE); - my $off = $size * 0.03; - my $count = -1; - my $feather = $size * 0.04; - my $border = ($feather + $off); - my $text_layer = gimp_text_fontname ($img, -1, 0, 0, $text, $border, 1, $size, PIXELS, $fontname); - my $width = gimp_drawable_width ($text_layer); - my $height = gimp_drawable_height ($text_layer); - my $burst_coords = [$width * 0.5, $height * 0.5]; - my $burstradius = min ($height, $width) * 0.35; - my $bg_layer = gimp_layer_new ($img, $width, $height, RGB_IMAGE, "Background", 100, NORMAL_MODE); - my $shadow_layer = gimp_layer_new ($img, $width, $height, RGBA_IMAGE, "Shadow", 100, NORMAL_MODE); - my $burst_layer = gimp_layer_new ($img, $width, $height, RGBA_IMAGE, "Burst", 100, NORMAL_MODE); - my $layer_mask = gimp_layer_create_mask ($burst_layer, BLACK_MASK); - my $old_pattern = gimp_patterns_get_pattern (); - my $old_fg = gimp_palette_get_foreground (); - my $old_bg = gimp_palette_get_background (); - - gimp_image_undo_disable ($img); - gimp_image_resize ($img, $width, $height, 0, 0); - gimp_image_add_layer ($img, $bg_layer, 1); - gimp_image_add_layer ($img, $shadow_layer, 1); - gimp_image_add_layer ($img, $burst_layer, 0); - gimp_image_add_layer_mask ($img, $burst_layer, $layer_mask); - gimp_layer_set_preserve_trans ($text_layer, 1); - gimp_palette_set_background ($bg_color); - gimp_edit_fill ($bg_layer, BG_IMAGE_FILL); - gimp_edit_clear ($shadow_layer); - gimp_edit_clear ($burst_layer); - gimp_selection_all ($img); - gimp_patterns_set_pattern ("Crack"); - gimp_bucket_fill ($text_layer, PATTERN_BUCKET_FILL, NORMAL_MODE, 100, 0, 0, 0, 0); - gimp_selection_none ($img); - gimp_selection_layer_alpha ($text_layer); - gimp_palette_set_background ([255, 255, 255]); - gimp_edit_fill ($layer_mask, BG_IMAGE_FILL); - gimp_selection_none ($img); - plug_in_nova ($img, $burst_layer, @{$burst_coords}[0], cdr ($burst_coords), $burst_color, $burstradius, 100, 0); - gimp_selection_layer_alpha ($text_layer); - gimp_palette_set_background ([0, 0, 0]); - gimp_selection_feather ($img, $feather); - gimp_selection_translate ($img, -1, -1); - - while ($count < $off) { - gimp_edit_fill ($shadow_layer, BG_IMAGE_FILL); - gimp_selection_translate ($img, 1, 1); - $count = ($count + 1); - } - gimp_selection_none ($img); - gimp_layer_set_name ($text_layer, $text); - gimp_patterns_set_pattern ($old_pattern); - gimp_palette_set_background ($old_bg); - gimp_palette_set_foreground ($old_fg); - gimp_image_undo_enable ($img); - gimp_display_new ($img); - }; -} -register "perl_fu_starburst_logo", - "Starburst as inspired by GIMP News", - "Starburst as inspired by GIMP News", - "Spencer Kimball & Xach Beane", - "Spencer Kimball & Xach Beane", - "1997", - N_"/Filters/Logulator/Starburst", - "", - [ - [PF_STRING, 'text_string', "Text String", "GIMP"], - [PF_ADJUSTMENT,'font_size_pixels', "Font Size (pixels)", [150, 0, 512, 1, 10, 0, 1]], - [PF_FONT, 'font', "Font", "-*-blippo-*-r-*-*-24-*-*-*-p-*-*-*"], - [PF_COLOUR, 'burst_color', "Burst Color", [60, 196, 33]], - [PF_COLOUR, 'bg_color', "BG Color", [255, 255, 255]], - ], - \&script_fu_starburst_logo; -sub find_blend_coords { - my ($w, $h) = @_; - do { - my $denom = ($w / $h + $h / $w); - my $bx = -2 * $h / $denom; - my $by = -2 * $w / $denom; - - [$bx, $by]; - }; -} - -sub find_nova_x_coord { - my ($drawable, $x1, $x2, $y) = @_; - do { - my $x = 0; - my $alpha = 3; - my $range = ($x2 - $x1); - my $min_clearance = 5; - my $val = []; - my $val_left = []; - my $val_right = []; - my $val_top = []; - my $val_bottom = []; - my $limit = 100; - my $clearance = 0; - - - while (($clearance == 0 and $limit > 0)) { - $x = (rand ($range) + $x1); - $val = @{[gimp_drawable_get_pixel ($drawable, $x, $y)]}[1]; - $val_left = @{[gimp_drawable_get_pixel ($drawable, ($x - $min_clearance), $y)]}[1]; - $val_right = @{[gimp_drawable_get_pixel ($drawable, ($x + $min_clearance), $y)]}[1]; - $val_top = @{[gimp_drawable_get_pixel ($drawable, $x, ($y - $min_clearance))]}[1]; - $val_bottom = @{[gimp_drawable_get_pixel ($drawable, $x, ($y + $min_clearance))]}[1]; - if (($val->[$alpha] == 0 and $val_left->[$alpha] == 0 and $val_right->[$alpha] == 0 and $val_top->[$alpha] == 0 and $val_bottom->[$alpha] == 0)) { - $clearance = 1; - } else { - $limit = ($limit - 1); - } - } - $x; - }; -} - -sub script_fu_starscape_logo { - my ($text, $size, $fontname, $glow_color) = @_; - do { - my $img = gimp_image_new (256, 256, RGB_IMAGE); - my $border = $size / 4; - my $grow = $size / 30; - my $offx = $size * 0.03; - my $offy = $size * 0.02; - my $feather = $size / 4; - my $shadow_feather = $size / 25; - my $text_layer = gimp_text_fontname ($img, -1, 0, 0, $text, $border, 1, $size, PIXELS, $fontname); - my $width = gimp_drawable_width ($text_layer); - my $height = gimp_drawable_height ($text_layer); - my $w = ($width - $border * 2) / 2.0 * 0.75; - my $h = ($height - $border * 2) / 2.0 * 0.75; - my $novay = $height * 0.3; - my $novax = find_nova_x_coord ($text_layer, $width * 0.2, $width * 0.8, $novay); - my $novaradius = min ($height, $width) / 7.0; - my $cx = $width / 2.0; - my $cy = $height / 2.0; - my $bx = ($cx + @{find_blend_coords ($w, $h)}[0]); - my $by = ($cy + cdr (find_blend_coords ($w, $h))); - my $bg_layer = gimp_layer_new ($img, $width, $height, RGB_IMAGE, "Background", 100, NORMAL_MODE); - my $glow_layer = gimp_layer_new ($img, $width, $height, RGBA_IMAGE, "Glow", 100, NORMAL_MODE); - my $shadow_layer = gimp_layer_new ($img, $width, $height, RGBA_IMAGE, "Drop Shadow", 100, NORMAL_MODE); - my $bump_channel = gimp_channel_new ($img, $width, $height, "Bump Map", 50, [0, 0, 0]); - my $old_pattern = gimp_patterns_get_pattern (); - my $old_fg = gimp_palette_get_foreground (); - my $old_bg = gimp_palette_get_background (); - - gimp_image_undo_disable ($img); - gimp_image_resize ($img, $width, $height, 0, 0); - gimp_image_add_layer ($img, $bg_layer, 1); - gimp_image_add_layer ($img, $glow_layer, 1); - gimp_image_add_layer ($img, $shadow_layer, 1); - gimp_layer_set_preserve_trans ($text_layer, 1); - gimp_palette_set_background ([0, 0, 0]); - gimp_edit_fill ($bg_layer, BG_IMAGE_FILL); - gimp_edit_clear ($shadow_layer); - gimp_edit_clear ($glow_layer); - gimp_selection_layer_alpha ($text_layer); - gimp_selection_grow ($img, $grow); - gimp_selection_feather ($img, $feather); - gimp_palette_set_background ($glow_color); - gimp_selection_feather ($img, $feather); - gimp_edit_fill ($glow_layer, BG_IMAGE_FILL); - gimp_selection_layer_alpha ($text_layer); - gimp_selection_feather ($img, $shadow_feather); - gimp_palette_set_background ([0, 0, 0]); - gimp_selection_translate ($img, $offx, $offy); - gimp_edit_fill ($shadow_layer, BG_IMAGE_FILL); - gimp_selection_none ($img); - gimp_palette_set_background ([31, 31, 31]); - gimp_palette_set_foreground ([255, 255, 255]); - gimp_blend ($text_layer, FG_BG_RGB, NORMAL_MODE, BILINEAR, 100, 0, REPEAT_NONE, 0, 0, 0, $cx, $cy, $bx, $by); - plug_in_nova ($img, $glow_layer, $novax, $novay, $glow_color, $novaradius, 100, 0); - gimp_selection_all ($img); - gimp_patterns_set_pattern ("Stone"); - gimp_bucket_fill ($bump_channel, PATTERN_BUCKET_FILL, NORMAL_MODE, 100, 0, 0, 0, 0); - plug_in_bump_map ($img, $text_layer, $bump_channel, 135.0, 45.0, 4, 0, 0, 0, 0, 0, 0, 0); - gimp_image_remove_channel ($img, $bump_channel); - gimp_selection_none ($img); - gimp_layer_set_name ($text_layer, $text); - gimp_patterns_set_pattern ($old_pattern); - gimp_palette_set_background ($old_bg); - gimp_palette_set_foreground ($old_fg); - gimp_image_undo_enable ($img); - gimp_display_new ($img); - }; -} - -register "perl_fu_starscape_logo", - "Starscape using the Nova plug-in", - "Starscape using the Nova plug-in", - "Spencer Kimball", - "Spencer Kimball", - "1997", - N_"/Filters/Logulator/Starscape", - "", - [ - [PF_STRING, 'text_string', "Text String", "Nova"], - [PF_ADJUSTMENT,'font_size_pixels', "Font Size (pixels)", [150, 1, 1000, 1, 10, 0, 1]], - [PF_FONT, 'font', "Font", "-*-engraver-*-r-*-*-24-*-*-*-p-*-*-*"], - [PF_COLOUR, 'glow_color', "Glow Color", [28, 65, 188]], - ], - \&script_fu_starscape_logo; -sub script_fu_t_o_p_logo { - my ($text, $size, $fontname, $hit_rate, $edge_size, $edge_only, $base_color, $bg_color) = @_; - do { - my $img = gimp_image_new (256, 256, RGB_IMAGE); - my $border = $size / 5; - my $text_layer = gimp_text_fontname ($img, -1, 0, 0, $text, $border * 2, 1, $size, PIXELS, $fontname); - my $width = gimp_drawable_width ($text_layer); - my $height = gimp_drawable_height ($text_layer); - my $text_layer_mask = gimp_layer_create_mask ($text_layer, BLACK_MASK); - my $sparkle_layer = gimp_layer_new ($img, $width, $height, RGBA_IMAGE, "Sparkle", 100, NORMAL_MODE); - my $shadow_layer = gimp_layer_new ($img, $width, $height, RGBA_IMAGE, "Shadow", 90, ADDITION_MODE); - my $bg_layer = gimp_layer_new ($img, $width, $height, RGB_IMAGE, "Background", 100, NORMAL_MODE); - my $selection = 0; - my $white = [255, 255, 255]; - my $old_fg = gimp_palette_get_foreground (); - my $old_bg = gimp_palette_get_background (); - my $old_brush = gimp_brushes_get_brush (); - my $old_paint_mode = gimp_brushes_get_paint_mode (); - - gimp_image_undo_disable ($img); - gimp_image_resize ($img, $width, $height, 0, 0); - gimp_image_add_layer ($img, $sparkle_layer, 2); - gimp_image_add_layer ($img, $shadow_layer, 3); - gimp_image_add_layer ($img, $bg_layer, 4); - gimp_selection_none ($img); - gimp_edit_clear ($shadow_layer); - gimp_edit_clear ($sparkle_layer); - gimp_palette_set_background ($base_color); - gimp_edit_fill ($sparkle_layer, BG_IMAGE_FILL); - gimp_palette_set_background ($base_color); - gimp_selection_layer_alpha ($text_layer); - $selection = gimp_selection_save ($img); - gimp_selection_grow ($img, $edge_size); - plug_in_noisify ($img, $sparkle_layer, 0, 0.1 * $hit_rate, 0.1 * $hit_rate, 0.1 * $hit_rate, 0.0); - gimp_selection_border ($img, $edge_size); - plug_in_noisify ($img, $sparkle_layer, 0, $hit_rate, $hit_rate, $hit_rate, 0.0); - gimp_selection_none ($img); - plug_in_sparkle ($img, $sparkle_layer, 0.03, 0.49, $width, 6, 15, 1.0, 0.0, 0.0, 0.0, 0, 0, 0, 0); - gimp_selection_load ($selection); - gimp_selection_shrink ($img, $edge_size); - gimp_levels ($sparkle_layer, 0, 0, 255, 1.2, 0, 255); - gimp_selection_load ($selection); - gimp_selection_border ($img, $edge_size); - gimp_levels ($sparkle_layer, 0, 0, 255, 0.5, 0, 255); - gimp_selection_load ($selection); - gimp_selection_grow ($img, $edge_size / 2.0); - gimp_selection_invert ($img); - gimp_edit_clear ($sparkle_layer); - if ($edge_only) { - do { - gimp_selection_load ($selection); - gimp_selection_shrink ($img, $edge_size / 2.0); - gimp_edit_clear ($sparkle_layer); - gimp_selection_load ($selection); - gimp_selection_grow ($img, $edge_size / 2.0); - gimp_selection_invert ($img); - }; - } - gimp_palette_set_foreground ([0, 0, 0]); - gimp_palette_set_background ([255, 255, 255]); - gimp_brushes_set_brush ("Circle Fuzzy (11)"); - gimp_selection_feather ($img, $border); - gimp_edit_fill ($shadow_layer, BG_IMAGE_FILL); - gimp_selection_none ($img); - gimp_palette_set_background ($base_color); - gimp_edit_fill ($bg_layer, BG_IMAGE_FILL); - gimp_selection_load ($selection); - gimp_brushes_set_brush ("Circle Fuzzy (07)"); - gimp_palette_set_foreground ([255, 255, 255]); - gimp_selection_none ($img); - gimp_palette_set_foreground ($old_fg); - gimp_palette_set_background ($old_bg); - gimp_brushes_set_brush ($old_brush); - gimp_brushes_set_paint_mode ($old_paint_mode); - gimp_layer_set_visible ($text_layer, 0); - gimp_image_set_active_layer ($img, $sparkle_layer); - gimp_image_undo_enable ($img); - gimp_display_new ($img); - }; -} - -register "perl_fu_t_o_p_logo", - "Trace of Particles Effect", - "Trace of Particles Effect", - "Shuji Narazaki (narazaki\@InetQ.or.jp)", - "Shuji Narazaki", - "1997", - N_"/Filters/Logulator/Particle Trace", - "", - [ - [PF_STRING, 'text_string', "Text String", "The GIMP"], - [PF_ADJUSTMENT,'font_size_pixels',"Font size (in pixels)", [100, 1, 1000, 1, 10, 0, 1]], - [PF_FONT, 'font', "Font", "-*-becker-*-r-*-*-24-*-*-*-p-*-*-*"], - [PF_ADJUSTMENT,'hit_rate', "Hit Rate [0.0,1.0]", [0.2, 0, 1, .01, .01, 0, 0]], - [PF_ADJUSTMENT,'edge_width', "Edge Width", [2, 0, 128, 1, 1, 0, 0]], - [PF_TOGGLE, 'edge_only', "Edge Only?", 0], - [PF_COLOUR, 'base_color', "Base Color", [0, 40, 0]], - [PF_COLOUR, 'background_color', "Background Color", [255, 255, 255]], - ], - \&script_fu_t_o_p_logo; -sub scale { - my ($size, $percent) = @_; - $size * $percent; -} - -sub script_fu_textured_logo { - my ($text_pattern, $tile_type, $text, $size, $fontname, $bg_color, $blend_fg, $blend_bg) = @_; - do { - my $img = gimp_image_new (256, 256, RGB_IMAGE); - my $b_size = scale ($size, 0.1); - my $b_size_2 = scale ($size, 0.05); - my $f_size = scale ($size, 0.075); - my $ds_size = scale ($size, 0.05); - my $ts_size = ($b_size_2 - 3); - my $text_layer = gimp_text_fontname ($img, -1, 0, 0, $text, $b_size, 1, $size, PIXELS, $fontname); - my $width = gimp_drawable_width ($text_layer); - my $height = gimp_drawable_height ($text_layer); - my $blend_layer = gimp_layer_new ($img, $width, $height, RGBA_IMAGE, "Blend", 100, NORMAL_MODE); - my $shadow_layer = gimp_layer_new ($img, $width, $height, RGBA_IMAGE, "Shadow", 100, NORMAL_MODE); - my $text_shadow_layer = gimp_layer_new ($img, $width, $height, RGBA_IMAGE, "Text Shadow", 100, MULTIPLY_MODE); - my $tsl_layer_mask = gimp_layer_create_mask ($text_shadow_layer, BLACK_MASK); - my $drop_shadow_layer = gimp_layer_new ($img, $width, $height, RGBA_IMAGE, "Drop Shadow", 100, MULTIPLY_MODE); - my $dsl_layer_mask = gimp_layer_create_mask ($drop_shadow_layer, BLACK_MASK); - my $old_fg = gimp_palette_get_foreground (); - my $old_bg = gimp_palette_get_background (); - - gimp_image_undo_disable ($img); - gimp_image_resize ($img, $width, $height, 0, 0); - gimp_image_add_layer ($img, $shadow_layer, 1); - gimp_image_add_layer ($img, $blend_layer, 1); - gimp_image_add_layer ($img, $drop_shadow_layer, 1); - gimp_image_add_layer ($img, $text_shadow_layer, 0); - gimp_selection_all ($img); - gimp_patterns_set_pattern ($text_pattern); - gimp_layer_set_preserve_trans ($text_layer, 1); - gimp_bucket_fill ($text_layer, PATTERN_BUCKET_FILL, NORMAL_MODE, 100, 0, 0, 0, 0); - gimp_selection_none ($img); - gimp_edit_clear ($text_shadow_layer); - gimp_edit_clear ($drop_shadow_layer); - gimp_palette_set_background ($bg_color); - gimp_drawable_fill ($shadow_layer, BG_IMAGE_FILL); - gimp_rect_select ($img, $b_size_2, $b_size_2, ($width - $b_size), ($height - $b_size), REPLACE, 1, $b_size_2); - gimp_palette_set_background ([0, 0, 0]); - gimp_edit_fill ($shadow_layer, BG_IMAGE_FILL); - gimp_selection_layer_alpha ($text_layer); - gimp_image_add_layer_mask ($img, $text_shadow_layer, $tsl_layer_mask); - gimp_palette_set_background ([255, 255, 255]); - gimp_edit_fill ($tsl_layer_mask, BG_IMAGE_FILL); - gimp_selection_feather ($img, $f_size); - gimp_palette_set_background ([63, 63, 63]); - gimp_edit_fill ($drop_shadow_layer, BG_IMAGE_FILL); - gimp_palette_set_background ([0, 0, 0]); - gimp_edit_fill ($text_shadow_layer, BG_IMAGE_FILL); - gimp_palette_set_foreground ([255, 255, 255]); - gimp_blend ($text_shadow_layer, FG_BG_RGB, NORMAL_MODE, SHAPEBURST_ANGULAR, 100, 0, REPEAT_NONE, 0, 0, 0, 0, 0, 1, 1); - gimp_selection_none ($img); - gimp_palette_set_foreground ($blend_fg); - gimp_palette_set_background ($blend_bg); - gimp_blend ($blend_layer, FG_BG_RGB, NORMAL_MODE, LINEAR, 100, 0, REPEAT_NONE, 0, 0, 0, 0, 0, $width, 0); - plug_in_mosaic ($img, $blend_layer, 12, 1, 1, 0.7, 135, 0.2, 1, 0, $tile_type, 1, 0); - gimp_layer_translate ($text_layer, -($b_size_2), -($b_size_2)); - gimp_layer_translate ($blend_layer, -($b_size), -($b_size)); - gimp_layer_translate ($text_shadow_layer, -($ts_size), -($ts_size)); - gimp_layer_translate ($drop_shadow_layer, $ds_size, $ds_size); - gimp_selection_layer_alpha ($blend_layer); - gimp_image_add_layer_mask ($img, $drop_shadow_layer, $dsl_layer_mask); - gimp_palette_set_background ([255, 255, 255]); - gimp_edit_fill ($dsl_layer_mask, BG_IMAGE_FILL); - gimp_image_remove_layer_mask ($img, $drop_shadow_layer, APPLY); - gimp_selection_none ($img); - gimp_layer_set_name ($text_layer, $text); - gimp_palette_set_foreground ($old_fg); - gimp_palette_set_background ($old_bg); - gimp_image_undo_enable ($img); - gimp_display_new ($img); - }; -} - -register "perl_fu_textured_logo", - "Creates textured logos with blended backgrounds, highlights, and shadows", - "Creates textured logos with blended backgrounds, highlights, and shadows", - "Spencer Kimball", - "Spencer Kimball", - "1996", - N_"/Filters/Logulator/Textured", - "", - [ - [PF_PATTERN, 'text_pattern', "Text Pattern", "Fibers"], - [PF_ADJUSTMENT,'mosaic_tile_type',"Mosaic Tile Type; Squares 0, HEX 1, Oct 2", [0, 0, 2, 1, 1, 0, 1]], - [PF_STRING, 'text_string', "Text String", "The GIMP"], - [PF_ADJUSTMENT,'font_size_pixels', "Font Size (pixels)", [200, 1, 1000, 1, 10, 0, 1]], - [PF_FONT, 'font', "Font", "-*-cuneifontlight-*-r-*-*-24-*-*-*-p-*-*-*"], - [PF_COLOUR, 'background_color', "Background Color", [255, 255, 255]], - [PF_COLOUR, 'starting_blend', "Starting Blend", [32, 106, 0]], - [PF_COLOUR, 'ending_blend', "Ending Blend", [0, 0, 106]], - ], - \&script_fu_textured_logo; sub script_fu_title_header { my ($text, $size, $fontname) = @_; do { diff --git a/plug-ins/perl/po/ChangeLog b/plug-ins/perl/po/ChangeLog index fa82f03259..b10957f083 100644 --- a/plug-ins/perl/po/ChangeLog +++ b/plug-ins/perl/po/ChangeLog @@ -1,19 +1,3 @@ -2000-06-18 Sven Neumann - - * it.po: updates to italian translation by Daniele Medri - -Tue Jun 13 19:56:45 CEST 2000 Stanislav Brabec - - * cs.po: Updated translation. - -Fri Jun 9 15:29:26 CEST 2000 Stanislav Brabec - - * cs.po: Updated translation. - -2000-06-07 Ville HautamДki - - * fi.po: addad finnish translation (far from complete) - 2000-06-04 Valek Filippov * ru.po: Updated russian translation. diff --git a/plug-ins/perl/po/da.po b/plug-ins/perl/po/da.po index 99bea3a412..451b31924e 100644 --- a/plug-ins/perl/po/da.po +++ b/plug-ins/perl/po/da.po @@ -13,15 +13,6 @@ msgstr "" "Content-Type: text/plain; charset=iso-8859-1\n" "Content-Transfer-Encoding: 8-bit\n" -msgid "/Filters/Logulator/Bovination" -msgstr "/Filter/Logulator/Bovination" - -msgid "/Filters/Logulator/Blended" -msgstr "/Filtre/Logulator/Blandet" - -msgid "/Filters/Logulator/Basic I" -msgstr "/Filtre/Logulator/Basic I" - msgid "FATAL: unable to create $tmp: $!\n" msgstr "FATAL: kunne ikke oprette '$tmp': $!\n" @@ -34,10 +25,6 @@ msgstr "" msgid "/Filters/Web/Prepare for GIF..." msgstr "/Filtre/Web/Forbered for GIF..." -#, fuzzy -msgid "/Filters/Logulator/3D Outline..." -msgstr "/Filter/Logulator/3D-omrids" - #, fuzzy msgid "/Filters/Animation/Animate Cells..." msgstr "/Filter/Animation/Celleanimation" @@ -63,9 +50,6 @@ msgstr "bliver kaldt som '%s', men '%s' er ikke registreret i pdb" msgid "argument type %s expected (not %s)" msgstr "argument af type %s forventet (ikke %s)" -msgid "/Filters/Logulator/Glowing Hot" -msgstr "/Filter/Logulator/Gloende hed" - msgid "Browse" msgstr "Gennemse" @@ -104,9 +88,6 @@ msgstr "" "pikselstЬrrelsen stemmer ikke, pdl har %d kanaler med piksler men %d kanaler " "behЬves" -msgid "/Filters/Logulator/Basic II" -msgstr "/Filtre/Logulator/Basic II" - msgid "Load" msgstr "IndlФs" @@ -234,9 +215,6 @@ msgstr "" msgid "/Image/Alpha/Alpha2Color..." msgstr "/Bilde/Alfa/Alfa-til-farve..." -msgid "/Filters/Logulator/Starburst" -msgstr "/Filtre/Logulator/Stjerneskud" - msgid "/Filters/Logulator/SOTA Chrome" msgstr "/Filter/Logulator/SOTA krom" @@ -313,9 +291,6 @@ msgstr "/Filtre/Kort/Billeflise" msgid "/Guides/To Selection..." msgstr "/Guider/Til udvalg" -msgid "/Filters/Logulator/Comic Book" -msgstr "/Filtre/Logulator/Tegneserie" - msgid "/Guides/Remove Guides" msgstr "/Guider/Fjern guider" @@ -366,9 +341,6 @@ msgstr "PDB-udforsker - olof udgaven (stadig en alfa-version)" msgid "Illegal default font description for $function: $val\n" msgstr "Ugyldig standard skrifttypebeskrivelse for $function: $val\n" -msgid "/Filters/Logulator/Chalk" -msgstr "/Filter/Logulator/Kridt" - msgid "unable to convert Gimp::Drawable into Gimp::GDrawable (id %d)" msgstr "kunne ikke konvertere Gimp::Drawable til Gimp::GDrawable (id %d)" @@ -550,9 +522,6 @@ msgstr "kun guddommelige skalarv msgid "dimension mismatch, pdl has dimension %d but at most %d dimensions allowed" msgstr "dimensionsfejl, pdl har dimension %d men mindst %d dimensioner tillades" -msgid "/Filters/Logulator/Glossy" -msgstr "/Filter/Logulator/Glittet" - msgid "WARNING" msgstr "ADVARSEL" @@ -568,9 +537,6 @@ msgstr "/Filtre/Renderer/Tilpas tekst..." msgid "Unable to convert a reference to type '%s'" msgstr "Kunne ikke konvertere en reference til type '%s'" -msgid "/Filters/Logulator/Particle Trace" -msgstr "/Filtre/Logulator/Partikkelspor" - msgid "argument incompatible with type IMAGE" msgstr "argumentet er ikke kompatibelt med type IMAGE" @@ -595,9 +561,6 @@ msgstr "/Filtre/Kort/Pikselkort..." msgid "Color" msgstr "Farve" -msgid "/Filters/Logulator/Alien Glow" -msgstr "/Filtre/Logulator/Fremmed glЬd" - msgid "FATAL: canonicalize_colour did not return a value!" msgstr "FATAL: canonicalize_colour returnerede ikke en vФrdi!" @@ -641,12 +604,12 @@ msgstr "accepterer forbindelser p msgid "perl-arrayref required as datatype for a gimp-array" msgstr "perl-arraydef behЬves som datatype for en gimp-array" -msgid "/Xtns/Create_Images" -msgstr "/Xtns/Opret billeder" - msgid "required callback 'query' not found\n" msgstr "nЬdvendigt tilbagekald 'query' ikke fundet\n" +msgid "/Xtns/Create_Images" +msgstr "/Xtns/Opret billeder" + msgid "Save $name" msgstr "Gem $name" @@ -764,15 +727,9 @@ msgstr "NAVN" msgid "Help" msgstr "HjФlp" -msgid "/Filters/Logulator/Cool Metal" -msgstr "/Filter/Logulator/Cool Metal" - msgid "/Filters/Logulator/Carved" msgstr "/Filtre/Logulator/SkЕret" -msgid "/Filters/Logulator/Textured" -msgstr "/Filtre/Logulator/Tekstur" - msgid "no font specified, using default" msgstr "ingen skrifttype specificeret, bruger standard" @@ -795,19 +752,16 @@ msgstr "/Filter/Logulator/Fart-Tekst" msgid "unable to grok colour specification" msgstr "kunne ikke forstЕ farvespecifikationen" -msgid "You need at least 2 layers to perform prep4gif" -msgstr "Du skal have mindst 2 lag for at udfЬre prep4gif" - #, fuzzy msgid "/Edit/Repeat & Duplicate..." msgstr "/Rediger/Gentag & duplikИr" +msgid "You need at least 2 layers to perform prep4gif" +msgstr "Du skal have mindst 2 lag for at udfЬre prep4gif" + msgid "too many arguments" msgstr "for mange argumenter" -msgid "/Filters/Logulator/Gradient Bevel" -msgstr "/Filter/Logulator/FarveforlЬb" - msgid "-*-helvetica-medium-r-normal-*-34-*-*-*-p-*-iso8859-1" msgstr "-*-helvetica-medium-r-normal-*-34-*-*-*-p-*-iso8859-1" @@ -876,9 +830,6 @@ msgstr "(UINITIALISERET)" msgid "closing connection %d (%d requests in %g seconds)" msgstr "lukker forbindelse %d (%d forespЬrgseler pЕ %g sekunder)" -msgid "/Filters/Logulator/Frosty" -msgstr "/Filtre/Logulator/Frosty" - #, fuzzy msgid "/Xtns/Render/Golden Mean..." msgstr "/Xtns/Render/Gyldent snit" @@ -893,9 +844,6 @@ msgstr "/Guider/Centreringsguide" msgid "server version $Gimp::VERSION started" msgstr "server version $Gimp::VERSION startede" -msgid "authorization unnecessary" -msgstr "Autorisering unЬdvendig" - msgid "" "$function: calling $AUTOLOAD without specifying the :auto import tag is " "deprecated!\n" @@ -903,6 +851,9 @@ msgstr "" "$function: kald af $AUTOLOAD uden at specificere :auto import tag'en er " "forФldet!\n" +msgid "authorization unnecessary" +msgstr "Autorisering unЬdvendig" + msgid "/Filters/Enhance/Warp Sharp..." msgstr "/Filter/Forbedr/Warp skarpning..." @@ -942,12 +893,6 @@ msgstr "/Udvd/Perl eksempel indstik" msgid "You can't run this script without an ALPHA CHANNEL!!" msgstr "Du kan ikke kЬre dette skript uden en ALFA KANAL!!" -msgid "/Filters/Logulator/Neon" -msgstr "/Filter/Logulator/Neon" - -msgid "/Filters/Logulator/Chrome" -msgstr "/Filter/Logulator/Krom" - #, fuzzy msgid "/Filters/Misc/Magick..." msgstr "/Filter/Forskelligt/Magick" @@ -962,14 +907,11 @@ msgstr "/Udvalg/Afrund..." msgid "Unable to read temporary image tile $tmp: $!" msgstr "Kunne ikke lФse midlertidig billedflise $tmp: $!" -msgid "export failed" -msgstr "Eksport fejlede" - msgid "Help for " msgstr "HjФlp om " -msgid "/Filters/Logulator/Chip Away" -msgstr "/Filtre/Logulator/Hug af" +msgid "export failed" +msgstr "Eksport fejlede" msgid "dunno how to pass arg type %d" msgstr "VИd ikke hvordan argumenttype %d skal videresendes" @@ -1012,9 +954,6 @@ msgstr "/Udvalg/Trekant" msgid "/Filters/Animation/BlowInOut..." msgstr "/Filtre/Animation/BlФsIndUd" -msgid "/Filters/Logulator/Starscape" -msgstr "/Filter/Logulator/Starscape" - msgid "/Filters/Enhance/2x2 Contrast Enhance" msgstr "/Filtre/Enhance/2x2 kontrast forbedring" @@ -1044,3 +983,64 @@ msgstr "ugyldig kommando modtaget, afbryder forbindelsen" msgid "(none)" msgstr "(ingen)" + +#~ msgid "/Filters/Logulator/Bovination" +#~ msgstr "/Filter/Logulator/Bovination" + +#~ msgid "/Filters/Logulator/Blended" +#~ msgstr "/Filtre/Logulator/Blandet" + +#~ msgid "/Filters/Logulator/Basic I" +#~ msgstr "/Filtre/Logulator/Basic I" + +#, fuzzy +#~ msgid "/Filters/Logulator/3D Outline..." +#~ msgstr "/Filter/Logulator/3D-omrids" + +#~ msgid "/Filters/Logulator/Glowing Hot" +#~ msgstr "/Filter/Logulator/Gloende hed" + +#~ msgid "/Filters/Logulator/Basic II" +#~ msgstr "/Filtre/Logulator/Basic II" + +#~ msgid "/Filters/Logulator/Starburst" +#~ msgstr "/Filtre/Logulator/Stjerneskud" + +#~ msgid "/Filters/Logulator/Comic Book" +#~ msgstr "/Filtre/Logulator/Tegneserie" + +#~ msgid "/Filters/Logulator/Chalk" +#~ msgstr "/Filter/Logulator/Kridt" + +#~ msgid "/Filters/Logulator/Glossy" +#~ msgstr "/Filter/Logulator/Glittet" + +#~ msgid "/Filters/Logulator/Particle Trace" +#~ msgstr "/Filtre/Logulator/Partikkelspor" + +#~ msgid "/Filters/Logulator/Alien Glow" +#~ msgstr "/Filtre/Logulator/Fremmed glЬd" + +#~ msgid "/Filters/Logulator/Cool Metal" +#~ msgstr "/Filter/Logulator/Cool Metal" + +#~ msgid "/Filters/Logulator/Textured" +#~ msgstr "/Filtre/Logulator/Tekstur" + +#~ msgid "/Filters/Logulator/Gradient Bevel" +#~ msgstr "/Filter/Logulator/FarveforlЬb" + +#~ msgid "/Filters/Logulator/Frosty" +#~ msgstr "/Filtre/Logulator/Frosty" + +#~ msgid "/Filters/Logulator/Neon" +#~ msgstr "/Filter/Logulator/Neon" + +#~ msgid "/Filters/Logulator/Chrome" +#~ msgstr "/Filter/Logulator/Krom" + +#~ msgid "/Filters/Logulator/Chip Away" +#~ msgstr "/Filtre/Logulator/Hug af" + +#~ msgid "/Filters/Logulator/Starscape" +#~ msgstr "/Filter/Logulator/Starscape" diff --git a/plug-ins/perl/po/de.po b/plug-ins/perl/po/de.po index 105e273f66..deb62160b0 100644 --- a/plug-ins/perl/po/de.po +++ b/plug-ins/perl/po/de.po @@ -14,243 +14,186 @@ msgstr "" "Content-Type: text/plain; charset=iso-8859-1\n" "Content-Transfer-Encoding: 8bit\n" -msgid "/Filters/Logulator/Starburst" -msgstr "/Filter/Logulator/Sternenexplosion" - -msgid "expected perl-server at other end of socket, got @r\n" -msgstr "Perl-Server auf der Gegenseite erwartet, Antwort war jedoch @r\n" - -msgid "too many" -msgstr "zu viele" - -msgid "/Filters/Logulator/Transparent Logo..." -msgstr "/Filter/Logulator/Transparentes Logo..." - -msgid "$s: not an integer\n" -msgstr "$s: kein Integer\n" - -msgid "/Filters/Logulator/Blended" -msgstr "/Filter/Logulator/Blended" - -msgid "/Select/Round Rectangular Selection..." -msgstr "/Auswahl/Rechteckauswahl abrunden..." - -msgid "/Guides/To Selection..." -msgstr "/Hilfslinien/Als Auswahl..." - -msgid "Help for " -msgstr "Hilfe fЭr " - -msgid "illegal parasite specification, expected three array members" -msgstr "UngЭltige Parasiten-Spezifikation; erwarte drei Feldelemente" - -msgid "Last Modified" -msgstr "Zuletzt geДndert" - -msgid "unable to read '$fn': $!" -msgstr "Konnte '$fn' nicht lesen: $!" - -msgid "/Filters/Logulator/Cool Metal" -msgstr "/Filter/Logulator/Cool Metal" - -msgid "/Filters/Map/Image Tile..." -msgstr "/Filter/Abbilden/Bildmosaik..." - -msgid "/Filters/Logulator/Crystal" -msgstr "/Filter/Logulator/Crystal" - -msgid "/Filters/Logulator/Alien Glow" -msgstr "/Filter/Logulator/Alien Glow" - -msgid "Unable to read temporary image tile $tmp: $!" -msgstr "Konnte temporДre Bilddatei '$tmp' nicht lesen: $!" - -msgid "run_mode must be INTERACTIVE, NONINTERACTIVE or RUN_WITH_LAST_VALS\n" -msgstr "" -"run_mode muъ entweder INTERACTIVE, NONINTERACTIVE or RUN_WITH_LAST_VALS " -"sein\n" - -msgid "Font Selection Dialog ($desc)" -msgstr "Schriftarten-Auswahl ($desc)" - -msgid "xlfd_unpack: unmatched XLFD '$fontname'\n" -msgstr "xlfd_unpack: Kann keine Schrift zu XLFD '$fontname' finden\n" - -msgid "/Filters/Noise/Xach Vision..." -msgstr "/Filter/Rauschen/Xachs Vision..." - -msgid "" -"$function: function name contains unusual characters, good style is to use " -"only 0-9, a-z and _" -msgstr "" -"$function: Funktionenname enthДlt ungewЖhnliche Zeichen; es sollten nur 0-9, " -"a-z und _ benutzt werden." - -msgid "Help" -msgstr "Hilfe" - -msgid "/Image/Alpha/Clear Alpha..." -msgstr "/Bild/Alpha/Alpha reinigen..." - -msgid "unable to fork: $!" -msgstr "Konnte nicht forken: $!" - -msgid "/Filters/Map/Pixelmap..." -msgstr "/Filter/Abbilden/Pixelabbildung..." - -msgid "FG" -msgstr "VG" - msgid "FATAL: unable to create $tmp: $!\n" msgstr "FATAL: Konnte '$tmp' nicht Rendern: $!\n" -msgid "/Filters/Logulator" -msgstr "/Filter/Logulator" +msgid "" +"Expected an INT32 but got '%s'. Add '*1' if you really intend to pass in a string" +msgstr "" +"An dieser Stelle wird ein INT32 erwartet, kein '%s'. Wenn hier wirklich ein " +"String stehen soll bitte ein *1 anhДngen" -msgid "dunno how to return param type %d" -msgstr "Parametertyp %d kann nicht zurЭckgegeben werden" - -msgid "/Filters/Logulator/Chip Away" -msgstr "/Filter/Logulator/Chip Away" - -msgid "/Image/Alpha/Alpha2Color..." -msgstr "/Bild/Alpha/Alpha zu Farbe..." - -msgid "/Filters/Logulator/Bovination" -msgstr "/Filter/Logulator/Bovination" - -msgid "Image Types" -msgstr "Bildtypen" - -msgid "/Filters/Render/Stampify..." -msgstr "/Filter/Render/Briefmarke..." - -msgid "could not connect to the gimp server (make sure Perl-Server is running)" -msgstr "Konnte den Gimp-Server nicht finden. LДuft der Perl-Server nicht?" - -msgid "/Xtns/Render/Stamps..." -msgstr "/Xtns/Render/Briefmarke..." - -msgid "More..." -msgstr "Mehr..." - -msgid "/Filters/Logulator/Particle Trace" -msgstr "/Filter/Logulator/Partikelspur" - -msgid "/Xtns/Render/Logos/Firetext..." -msgstr "/Xtns/Render/Logo/Feuerlogo..." - -msgid "interface=... tag is no longer supported\n" -msgstr "Das interface=...-Tag wird nicht mehr unterstЭtzt\n" - -msgid "Text" -msgstr "Text" - -msgid "/Filters/Render/Random Blends..." -msgstr "/Filter/Render/ZufДllige VerlДufe..." - -msgid "Synopsis" -msgstr "Synopsis" - -msgid "Plug-In Path" -msgstr "Plugin-Pfad" - -msgid "unable to convert Gimp::Drawable into Gimp::GDrawable (id %d)" -msgstr "Konnte Gimp::Drawable nicht in Gimp::GDrawable konvertieren (id %d)" - -msgid "Restore values to the previous ones" -msgstr "Parameter auf vorherige Werte zurЭcksetzen" - -msgid "Illegal default font description for $function: $val\n" -msgstr "Illegale Schriftart angegeben fЭr $function: $val\n" - -msgid "parameter '$entry->[1]' is not optional\n" -msgstr "Parameter '$entry->[1]' ist nicht optional\n" - -msgid "-*-courier-medium-r-normal--*-120-*-*-*-*-*" -msgstr "-*-courier-medium-r-normal--*-120-*-*-*-*-*" - -msgid "WARNING: client tried to unlock without holding a lock" -msgstr "WARNUNG: Client hat versucht, eine nichtexistente Sperre aufzuheben" - -msgid "/Xtns/Perl/Control Center..." -msgstr "/Xtns/Perl/Kontrollzenter..." - -msgid "register called with too many or wrong arguments\n" -msgstr "'register' mit zu vielen oder falschen Argumenten aufgerufen\n" +msgid "/Filters/Web/Prepare for GIF..." +msgstr "/Filter/Web/FЭr GIF aufbereiten..." msgid "/Filters/Animation/Animate Cells..." msgstr "/Filter/Animation/Zellenanimation..." -msgid "Spin Layer SRC (250ms)" -msgstr "Spinebene QUELLE (250ms)" - msgid "" -"malformed paramdef, expected [PARAM_TYPE,\"NAME\",\"DESCRIPTION\"] or " -"PARAM_TYPE" +" interface-arguments are\n" +" -o | --output write image to disk, don't display\n" +" -i | --interact let the user edit the values first\n" +" script-arguments are\n" msgstr "" -"UngЭltige Parameterdefinition, [PARAM_TYPE,\"NAME\",\"DESCRIPTION\"] oder " -"PARAM_TYPE wird erwartet" +" Interface-Argumente sind\n" +" -o | --output schreibe Bild auf Platte, ohne es\n" +" anzuzeigen\n" +" -i | --interact erlaube dem Benutzer, zunДchst die\n" +" Parameter zu Дndern\n" +" Skript-Argumente sind\n" -msgid "" -"gimp_pixel_rgns_register supports only 1, 2 or 3 arguments, upgrade to " -"gimp-1.1 and report this error" +msgid "/Xtns/Render/Font Table..." +msgstr "/Xtns/Render/Schrift-Tabelle..." + +msgid "being called as '%s', but '%s' not registered in the pdb" +msgstr "Wurde als '%s' aufgerufen, '%s' ist aber nicht in der PDB registriert" + +msgid "argument type %s expected (not %s)" +msgstr "Argument vom Typ %s erwartet, nicht %s" + +msgid "Browse" +msgstr "Suchen" + +msgid "Reset all values to their default" +msgstr "Auf Standardwerte zurЭcksetzen" + +msgid "WARNING: client tried to unlock without holding a lock" +msgstr "WARNUNG: Client hat versucht, eine nichtexistente Sperre aufzuheben" + +msgid "$_: illegal switch, try $0 --help\n" +msgstr "$_: Unbekannter Schalter, versuchen Sie $0 --help\n" + +msgid "required callback 'run' not found\n" +msgstr "BenЖtigte Callback-Funktion 'run' wurde nicht gefunden\n" + +msgid "/Xtns/Render/Logos/Glowing Steel" +msgstr "/Xtns/Render/Logos/GlЭhender Stahl" + +msgid "Brush Selection Dialog" +msgstr "Pinselauswahl" + +msgid "gimp procedure '%s' not found" +msgstr "Gimp-Funktion '%s' nicht gefunden" + +msgid "Pattern Selection Dialog" +msgstr "Musterauswahl" + +msgid "/Filters/Web/Perl-o-tine..." +msgstr "/Filter/Web/Perl-o-tine..." + +msgid "function '$exe' not found in this script (must be one of " msgstr "" -msgid "last argument to gimp_pattern_select_widget must be scalar ref" -msgstr "" -"Das letze Argument von gimp_pattern_select_widget muъ eine Referenz auf " -"einen Skalar sein" +msgid "pixel size mismatch, pdl has %d channel pixels but %d channels are required" +msgstr "Pixeldatentyp stimmt nicht Эberein: pdl hat %d KanДle, erwartet werden %d" -msgid "" -"\n" -"\n" -"EMBEDDED POD DOCUMENTATION:\n" -"\n" -msgstr "" -"\n" -"\n" -"EINGEBETTETE POD-DOKUMENTATION:\n" -"\n" +msgid "Load" +msgstr "Laden" -msgid "Fileselector for $name" -msgstr "Dateiauswahl for $name" +msgid "/Xtns/Render" +msgstr "/Xtns/Render" -msgid "/Xtns/Render/Pixelgenerator..." -msgstr "/Xtns/Render/Pixelgenerator..." +msgid "/Xtns/Perl/Control Center..." +msgstr "/Xtns/Perl/Kontrollzenter..." -msgid "/Filters/Noise/Feedback..." -msgstr "/Filter/Rauschen/Feedback..." +msgid "illegal parasite specification, reference expected" +msgstr "Illegale Form fЭr Parasite, es wird eine Referenz erwartet" -msgid "/Filters/Distorts/MirrorSplit..." -msgstr "/Filter/Verzerren/Spiegel..." +msgid "Date/Version" +msgstr "Datum/Version" -msgid "/Xtns/Animation/Billboard..." +msgid "Status" +msgstr "Status" + +msgid "/Layers/Center Layer" +msgstr "/Ebenen/Ebene zentrieren" + +msgid "wrong authorization, aborting connection" +msgstr "Falscher Autorisierungscode, Verbindung wird abgebrochen" + +msgid "BG" +msgstr "HG" + +msgid "/Xtns/Render/Bricks..." +msgstr "/Xtns/Render/Steine..." + +#, fuzzy +msgid "/Xtns/Animation/Seth Spin..." msgstr "/Xtns/Animation/Billboard..." -msgid "unable to create listening unix socket: $!\n" -msgstr "Konnte keine Unix-Domain-socket anlegen: $!\n" +msgid "illegal type for colour specification" +msgstr "Die Farbangabe hat einen falschen Typ" -msgid ", %d bytes data]" -msgstr ", %d bytes Daten]" +msgid "xlfd_unpack: unmatched XLFD '$fontname'\n" +msgstr "xlfd_unpack: Kann keine Schrift zu XLFD '$fontname' finden\n" -msgid "server requests authorization, but no authorization available\n" -msgstr "Server benЖtigt eine Autorisierung\n" +msgid "/Xtns/Render/Povray/Preferences..." +msgstr "/Xtns/Render/Povray/Einstellungen..." + +msgid "/Filters/Render/Random Blends..." +msgstr "/Filter/Render/ZufДllige VerlДufe..." + +msgid "Plug-In Path" +msgstr "Plugin-Pfad" + +msgid "You can't run this script with an INDEXED image!!" +msgstr "Dieses Program arbeitet nicht mit dem indizierten Bildformat!!" + +msgid "/Filters/Render/Terral Text..." +msgstr "/Filter/Render/Terral-Text..." + +msgid "/Guides/Guide Grid..." +msgstr "/Hilfslinien/Raster..." + +msgid "accepted unix connection" +msgstr "Unix-Verbindung angenommen" + +msgid "server going down..." +msgstr "Server beendet sich..." + +msgid "trying to start gimp with options \"$opt\"\n" +msgstr "Ich versuche, Gimp mit den Schaltern \"$opt\" zu starten\n" msgid "pdl height != region height" msgstr "pdl HЖhe != HЖhe der Region" -msgid "/Guides/Center Guide..." -msgstr "/Hilfslinien/Zentriert..." +msgid "expected perl-server at other end of socket, got @r\n" +msgstr "Perl-Server auf der Gegenseite erwartet, Antwort war jedoch @r\n" -msgid "Close" -msgstr "Schlieъen" +msgid "received QUIT request" +msgstr "QUIT-Anfrage erhalten" -msgid "unable to open $rgb_db_path" -msgstr "Konnte $rgb_db_path nicht Жffnen" +msgid "/Xtns/Gimp::Fu Example..." +msgstr "/Xtns/Gimp::Fu Beispiel..." -msgid "You can't run this script with an INDEXED image!!" -msgstr "Dieses Program arbeitet nicht mit dem indizierten Bildformat!!" +msgid " = [argument error]\n" +msgstr " = [Argumentfehler]\n" + +msgid "%s arguments for function '%s'" +msgstr "%s Argumente fЭr die Funktion '%s'" + +msgid " matching functions" +msgstr " passende Funktionen" + +msgid "/Xtns/Render/Random Art #1..." +msgstr "/Xtns/Render/ZufДllige Kunst #1..." + +msgid "" +"Usage: $0 [gimp-args..] [interface-args..] [script-args..]\n" +" gimp-arguments are\n" +" -gimp used internally only\n" +" -h | -help | --help | -? print some help\n" +" -v | --verbose be more verbose in what you do\n" +" --host|--tcp HOST[:PORT] connect to HOST (optionally using PORT)\n" +" (for more info, see Gimp::Net(3))\n" +msgstr "" +"Aufruf: $0 [gimp-arg..] [interface-arg..] [script-arg..]\n" +" gimp-argumente sind\n" +" -gimp nur fЭr interne Benutzung\n" +" -h | -help | --help | -? zeige diese Hilfe an\n" +" -v | --verbose gibt mehr Informationen aus als normal\n" +" --host|--tcp HOST[:PORT] verbinde mit HOST (optional mit PORT)\n" +" (siehe Gimp::Net(3) fЭr mehr Infos)\n" msgid "" "An even number of frames is needed for spin back.\n" @@ -259,165 +202,136 @@ msgstr "" "Eine gerade Anzahl von Szenen ist notwendig, um rЭckwДrts zu drehen.\n" "Die Anzahl der Szenen wurde auf $frames erhЖht" -msgid "/Filters/Render/Add Glow" -msgstr "/Filter/Render/GlЭhen hinzufЭgen" - -msgid "/Filters/Logulator/Basic I" -msgstr "/Filter/Logulator/Einfach I" - -msgid "function name contains dashes instead of underscores" -msgstr "Funktionsname enthДlt Minuszeichen anstatt Unterstriche" - -msgid "required callback 'run' not found\n" -msgstr "BenЖtigte Callback-Funktion 'run' wurde nicht gefunden\n" - -msgid "" -"$function: argument name '$p->[1]' contains illegal characters, only 0-9, " -"a-z and _ allowed" -msgstr "" -"$function: Argumentname '$p->[1]' enthДlt unzulДssige Zeichen; nur 0-9, a-z " -"und _ sind erlaubt" - -msgid "required callback 'query' not found\n" -msgstr "BenЖtigte Callback-Funktion 'query' wurde nicht gefunden\n" - -msgid "" -"Expected an INT32 but got '%s'. Add '*1' if you really intend to pass in a " -"string" -msgstr "" -"An dieser Stelle wird ein INT32 erwartet, kein '%s'. Wenn hier wirklich ein " -"String stehen soll bitte ein *1 anhДngen" - -msgid "" -"invalid GIMP_HOST: 'spawn' is not a valid connection method for the server" -msgstr "" -"ungЭltige GIMP_HOST-Angabe: 'spawn' ist keine gЭltige Verbindungsart fЭr den " -"Server" - -msgid "wrong authorization, aborting connection" -msgstr "Falscher Autorisierungscode, Verbindung wird abgebrochen" - -msgid "WARNING" -msgstr "WARNUNG" - -msgid "Brush Selection Dialog" -msgstr "Pinselauswahl" - -msgid "/Filters/Render/Terral Text..." -msgstr "/Filter/Render/Terral-Text..." - -msgid "/Filters/Logulator/3D Outline..." -msgstr "/Filter/Logulator/3D-Umriъ..." - -msgid "(none)" -msgstr "(nichts ausgewДhlt)" - -msgid "authorization required for tcp connections" -msgstr "TCP-Verbindungen erfordern eine Autorisierung" - -msgid "" -"Expected an INT32 but got '%s'. Maybe you meant '%s' instead and forgot to " -"'use strict'" -msgstr "" -"Erwarte ein INT32, bekam aber '%s'. Vielleicht meinten Sie '%s' und haben " -"vergessen 'use strict' zu benutzen." - -msgid "[undefined]" -msgstr "[undefiniert]" - -msgid "/Guides/Remove Guides" -msgstr "/Hilfslinien/Hilfslinien entfernen" - -msgid "unable to open Gimp::Net communications socket: $!\n" -msgstr "Konnte den Gimp::Net Kommunikationskanal nicht Жffnen: $!\n" - -msgid "WARNING: shared locking requested but not implemented" -msgstr "" -"WARNUNG: gemeinsames Locking wurde versucht, ist aber noch nicht " -"implementiert" - -msgid "You can't run this script without an ALPHA CHANNEL!!" -msgstr "Dieses Program kann nicht ohne Alpha-Kanal arbeiten!!" +msgid "/Image/Alpha/Alpha2Color..." +msgstr "/Bild/Alpha/Alpha zu Farbe..." msgid "/Filters/Logulator/SOTA Chrome" msgstr "/Filter/Logultaor/SOTA Chrome" -msgid "/Xtns/Render/Yin-Yang..." -msgstr "/Xtns/Render/Yin-Yang..." - msgid "%s: procedural database execution failed" msgstr "%s: PDB-Aufruf fehlgeschlagen" -msgid "/Video/VCR Console..." -msgstr "/Video/VCR Console..." - -msgid "/Filters/Animation/Seth Spin..." -msgstr "/Filter/Animation/Seths Dreher..." - -msgid ", authorization required" -msgstr ", Autorisierung notwendig" - -msgid "unable to create socketpair for gimp communications: $!" -msgstr "Konnte kein Socket-Paar fЭr die Kommunikation mit Gimp erstellen: $!" - -msgid "/Xtns/Render/Golden Mean..." -msgstr "/Xtns/Render/Goldener Schnitt..." - -msgid "trying to start gimp with options \"$opt\"\n" -msgstr "Ich versuche, Gimp mit den Schaltern \"$opt\" zu starten\n" - -msgid "/View/3D Surface..." -msgstr "/Ansicht/3D-OberflДche..." - -msgid "/Xtns/Render/Logos/Inner Bevel..." -msgstr "/Xtns/Render/Logo/Inner Bevel..." - -msgid "" -"menupath _must_ start with , , , or !" -msgstr "" -"MenЭpfad _muъ_ mit , , , oder anfangen!" +msgid "authorization required for tcp connections" +msgstr "TCP-Verbindungen erfordern eine Autorisierung" msgid "/Xtns/Perl/Server" msgstr "/Xtns/Perl/Server" -msgid "/Filters/Misc/Magick..." -msgstr "/Filter/Verschiedenes/Magick..." +msgid "function name contains dashes instead of underscores" +msgstr "Funktionsname enthДlt Minuszeichen anstatt Unterstriche" -msgid "accepted unix connection" -msgstr "Unix-Verbindung angenommen" +msgid "authorization ok, but: $r[1]\n" +msgstr "Autorisierung OK, aber: $r[1]\n" -msgid "/Edit/Repeat & Duplicate..." -msgstr "/Bearbeiten/Wiederholen & Verdoppeln..." +msgid "a color must have three components (array elements)" +msgstr "" +"Eine Farbe muъ aus drei Komponenten bestehen (einem Feld mit drei Elementen)" -msgid "/Filters/Colors/Map To Gradient..." -msgstr "/Filter/Farben/Auf Farbverlauf abbilden..." +msgid "Spin Layer SRC (250ms)" +msgstr "Spinebene QUELLE (250ms)" + +msgid "$_: unknown/illegal file-save option" +msgstr "$_: Unbekannte oder Illegale Option fЭr file-save" + +msgid "TYPE" +msgstr "TYP" + +msgid "Gradient Selection Dialog" +msgstr "Farbverlaufs-Auswahl" + +msgid "Function Info" +msgstr "Mehr Info" + +msgid "unable to open $rgb_db_path" +msgstr "Konnte $rgb_db_path nicht Жffnen" msgid "/Filters/Logulator/Imigre-26" msgstr "/Filter/Logulator/Imigre-26" -msgid "gimp_tile_get_data is not yet implemented\n" -msgstr "gimp_tile_get_data ist noch nicht implementiert\n" +msgid "Text" +msgstr "Text" -msgid "dunno how to pass arg type %d" -msgstr "Kann Argumenttyp %d nicht Эbergeben" +msgid "/Filters/Colors/Colour To Alpha..." +msgstr "/Filter/Farben/Farbe zu Alpha" -msgid "Browse" -msgstr "Suchen" +msgid "/Xtns/Perl" +msgstr "/Xtns/Perl" -msgid "received QUIT request" -msgstr "QUIT-Anfrage erhalten" +msgid "no additional information available, use --help\n" +msgstr "keine wetere Information verfЭgbar, benutzen Sie --help\n" -msgid "unable to create '$fn': $!" -msgstr "Konnte '$fn' nicht anlegen: $!" +msgid "/Xtns/Parasite Editor..." +msgstr "/Xtns/Parasiten-Editor..." -msgid "Author" -msgstr "Autor" +msgid "gimp_tile_set_data is not yet implemented\n" +msgstr "gimp_tile_set_data wurde noch nicht implementiert\n" -msgid "unable to create listening tcp socket: $!\n" -msgstr "Konnte TCP-Socket nicht erstellen: $!\n" +msgid "Visual Scriptor" +msgstr "Visual Scriptor" -msgid "-*-helvetica-medium-r-normal-*-34-*-*-*-p-*-iso8859-1" -msgstr "-*-helvetica-medium-r-normal-*-34-*-*-*-p-*-iso8859-1" +msgid "No horizontal or vertical guides found. Aborted." +msgstr "Keine horizontalen oder vertikalen Hilfslienien gefunden. Abbruch." + +msgid "/Filters/Map/Image Tile..." +msgstr "/Filter/Abbilden/Bildmosaik..." + +msgid "/Guides/To Selection..." +msgstr "/Hilfslinien/Als Auswahl..." + +msgid "/Guides/Remove Guides" +msgstr "/Hilfslinien/Hilfslinien entfernen" + +msgid "get current background colour from the gimp" +msgstr "эbernehme die aktuelle Hintergrundfarbe von Gimp" + +msgid "/Xtns/PDB Explorer..." +msgstr "/Xtns/PDB-Explorer..." + +msgid "WARNING: shared locking requested but not implemented" +msgstr "" +"WARNUNG: gemeinsames Locking wurde versucht, ist aber noch nicht implementiert" + +msgid "parameter '$entry->[1]' is not optional\n" +msgstr "Parameter '$entry->[1]' ist nicht optional\n" + +msgid "$s: not an integer\n" +msgstr "$s: kein Integer\n" + +msgid "unable to read '$fn': $!" +msgstr "Konnte '$fn' nicht lesen: $!" + +msgid "[undefined]" +msgstr "[undefiniert]" + +msgid "function/macro \"$name\" not found in $class" +msgstr "Funktion oder Macro \"$name\" existiert nicht in $class" + +msgid "accepted tcp connection from " +msgstr "TCP-Verbindung angenommen von " + +msgid "/Xtns/Render/Pixelgenerator..." +msgstr "/Xtns/Render/Pixelgenerator..." + +msgid "illegal parasite specification, expected three array members" +msgstr "UngЭltige Parasiten-Spezifikation; erwarte drei Feldelemente" + +msgid "unable to read temporary file $tmp: $!" +msgstr "Konnte temporaere Datei $tmp nicht lesen: $!" + +msgid "/Xtns/Render/Yin-Yang..." +msgstr "/Xtns/Render/Yin-Yang..." + +msgid "PDB Explorer - the olof edition (yet still an alpha version)" +msgstr "PDB-Explorer - Edition 'Olof' (noch immer eine Alpha-Version)" + +msgid "Illegal default font description for $function: $val\n" +msgstr "Illegale Schriftart angegeben fЭr $function: $val\n" + +msgid "unable to convert Gimp::Drawable into Gimp::GDrawable (id %d)" +msgstr "Konnte Gimp::Drawable nicht in Gimp::GDrawable konvertieren (id %d)" + +msgid "/Select/Round Rectangular Selection..." +msgstr "/Auswahl/Rechteckauswahl abrunden..." msgid "" "BLURB:\n" @@ -436,359 +350,68 @@ msgstr "" "\n" "$help" -msgid "OK" -msgstr "OK" - -msgid "gimp_tile_set_data is not yet implemented\n" -msgstr "gimp_tile_set_data wurde noch nicht implementiert\n" - -msgid "argument incompatible with type IMAGE" -msgstr "Argument inkompatibel mit Typ IMAGE" +msgid "Fileselector for $name" +msgstr "Dateiauswahl for $name" msgid "accepting connections on port $port" msgstr "Akzeptiere Verbindungen auf Port $port" -msgid "Description" -msgstr "Beschreibung" +msgid "/Filters/Logulator/Blended II..." +msgstr "/Filter/Logulator/Verlauf II..." + +msgid "" +"$function: function name contains unusual characters, good style is to use only " +"0-9, a-z and _" +msgstr "" +"$function: Funktionenname enthДlt ungewЖhnliche Zeichen; es sollten nur 0-9, a-z " +"und _ benutzt werden." + +msgid "menupath _must_ start with , , , or !" +msgstr "" +"MenЭpfad _muъ_ mit , , , oder anfangen!" + +msgid "/Filters/Render/Highlight Edges..." +msgstr "/Filter/Render/Ecken betonen..." + +msgid "Spin Layer DEST (250ms)" +msgstr "Spin Ebene ZIEL (250ms)" + +msgid "register called with too many or wrong arguments\n" +msgstr "'register' mit zu vielen oder falschen Argumenten aufgerufen\n" + +msgid "$_ is not a valid import tag for package $pkg" +msgstr "$_ ist kein gЭltiger Import-Tag fЭr $pkg" msgid "params and return_vals must be array refs (even if empty)!" msgstr "" "'params' und 'return_vals' mЭssen Arrayreferenzen sein (auch, wenn sie leer " "sind)!" -msgid "/Filters/Logulator/Newsprint text" -msgstr "/Filter/Logulator/Zeitungsdruck Text" +msgid "/Filters/Colors/Map To Gradient..." +msgstr "/Filter/Farben/Auf Farbverlauf abbilden..." -msgid "/Filters/Animation/BlowInOut..." -msgstr "/Filter/Animation/Verwehen..." +msgid "/Xtns/Render/Logos/Firetext..." +msgstr "/Xtns/Render/Logo/Feuerlogo..." -msgid "/Filters/Render/Fit Text..." -msgstr "/Filter/Render/Text einpassen..." - -msgid "$_: illegal switch, try $0 --help\n" -msgstr "$_: Unbekannter Schalter, versuchen Sie $0 --help\n" - -msgid "Unable to convert a reference to type '%s'" -msgstr "Konnte Referenz auf Typ '%s' nicht konvertieren" - -msgid "/Guides/Guide Grid..." -msgstr "/Hilfslinien/Raster..." - -msgid "/Xtns/PDB Explorer..." -msgstr "/Xtns/PDB-Explorer..." - -msgid "/Filters/Logulator/Starscape" -msgstr "/Filter/Logulator/Starscape" - -msgid "/Filters/Distorts/Windify..." -msgstr "/Filter/Verzerren/Verwehen..." - -msgid "/Filters/Apply Perl Expression..." -msgstr "/Filter/Perl-Ausdruck anwenden..." - -msgid "gimp procedure '%s' not found" -msgstr "Gimp-Funktion '%s' nicht gefunden" - -msgid "Visual Scriptor" -msgstr "Visual Scriptor" - -msgid "server going down..." -msgstr "Server beendet sich..." - -msgid "Saving '$filename' as COLORHTML..." -msgstr "Speichere '$filename' als COLORHTML..." - -msgid "/Filters/Map/Xach Blocks..." -msgstr "/Filter/Abbilden/Xach-BlЖcke..." - -msgid "unable to read temporary file $tmp: $!" -msgstr "Konnte temporaere Datei $tmp nicht lesen: $!" - -msgid "being called as '%s', but '%s' not registered in the pdb" -msgstr "Wurde als '%s' aufgerufen, '%s' ist aber nicht in der PDB registriert" - -msgid "Shortcuts" -msgstr "AbkЭrzungen" - -msgid "/Filters/Logulator/Speed text" -msgstr "/Filter/Logulator/Schneller Text" - -msgid "/Xtns/Create_Images" -msgstr "/Xtns/Bilder erzeugen" - -msgid "/Xtns/Parasite Editor..." -msgstr "/Xtns/Parasiten-Editor..." - -msgid "9x15bold" -msgstr "9x15bold" - -msgid "unauthorized command received, aborting connection" -msgstr "Anfrage ohne Autorisierung empfangen, Verbindung abgebrochen" - -msgid "%s: procedural database execution failed on invalid input arguments" -msgstr "%s: PDB-Aufruf fehlgeschlagen wegen ungЭltiger Argumente" - -msgid "/Xtns/Visual Scriptor..." -msgstr "/Xtns/Visual Scriptor..." - -msgid "NAME" -msgstr "NAME" - -msgid "WARNING: $function returned something that is not an image: \"$img\"\n" -msgstr "" -"WARNING: $function gab kein Bild, sondern etwas anderes zurЭck: \"$img\"\n" - -msgid "/Filters/Logulator/Frosty" -msgstr "/Filter/Logulator/Frostig" - -msgid "/Filters/Logulator/Web title header" -msgstr "/Filter/Logulator/Web Titelzeile" - -msgid "/Filters/Colors/Fire..." -msgstr "/Filter/Farben/Feuer..." - -msgid "FATAL: canonicalize_colour did not return a value!" -msgstr "FATAL: canonicalize_colour lieferte keinen Wert zurЭck!" - -msgid "export failed" -msgstr "Export fehlgeschlagen" - -msgid "" -" interface-arguments are\n" -" -o | --output write image to disk, don't display\n" -" -i | --interact let the user edit the values first\n" -" script-arguments are\n" -msgstr "" -" Interface-Argumente sind\n" -" -o | --output schreibe Bild auf Platte, ohne es\n" -" anzuzeigen\n" -" -i | --interact erlaube dem Benutzer, zunДchst die\n" -" Parameter zu Дndern\n" -" Skript-Argumente sind\n" - -msgid "/Filters/Edge-Detect/2x2 Edge Detect" -msgstr "/Filter/Kanten finden/2x2 Kantenfinder" - -msgid "/Layers/Center Layer" -msgstr "/Ebenen/Ebene zentrieren" - -msgid "closing connection %d (%d requests in %g seconds)" -msgstr "Schlieъe Verbindung %d (%d Anfragen in %g Sekunden)" - -msgid "/Filters/Logulator/Basic II" -msgstr "/Filter/Logulator/Einfach II" - -msgid "Reset all values to their default" -msgstr "Auf Standardwerte zurЭcksetzen" - -msgid "/Filters/Misc/Border Average..." -msgstr "/Filter/Verschiedenes/Rahmenfarbe..." - -msgid "" -"Usage: $0 [gimp-args..] [interface-args..] [script-args..]\n" -" gimp-arguments are\n" -" -gimp used internally only\n" -" -h | -help | --help | -? print some help\n" -" -v | --verbose be more verbose in what you do\n" -" --host|--tcp HOST[:PORT] connect to HOST (optionally using " -"PORT)\n" -" (for more info, see Gimp::Net(3))\n" -msgstr "" -"Aufruf: $0 [gimp-arg..] [interface-arg..] [script-arg..]\n" -" gimp-argumente sind\n" -" -gimp nur fЭr interne Benutzung\n" -" -h | -help | --help | -? zeige diese Hilfe an\n" -" -v | --verbose gibt mehr Informationen aus als " -"normal\n" -" --host|--tcp HOST[:PORT] verbinde mit HOST (optional mit PORT)\n" -" (siehe Gimp::Net(3) fЭr mehr Infos)\n" - -msgid "too many arguments" -msgstr "Zu viele Argumente" - -msgid "" -"dimension mismatch, pdl has dimension %d but at most %d dimensions allowed" -msgstr "UngЭltige Dimension: pdl hat die Dimension %d, hЖchstens %d erlaubt" - -msgid "Load" -msgstr "Laden" - -msgid "unable to grok colour specification" -msgstr "Konnte Farbangabe nicht verstehen" - -msgid "no additional information available, use --help\n" -msgstr "keine wetere Information verfЭgbar, benutzen Sie --help\n" - -msgid "" -"the gtk perl module is required to open a dialog\n" -"window, running with default values" -msgstr "" -"Das Gtk-Perl-Modul ist notwendig um ein Dialogfenster anzuzeigen\n" -"das Programm benutzt deshalb die Standardwerte" - -msgid " matching functions" -msgstr " passende Funktionen" - -msgid "Gradient Selection Dialog" -msgstr "Farbverlaufs-Auswahl" - -msgid "authorization ok, but: $r[1]\n" -msgstr "Autorisierung OK, aber: $r[1]\n" - -msgid "Cannot call '$AUTOLOAD' at this time" -msgstr "'$AUTOLOAD' kann an dieser Stelle nicht aufgerufen werden" - -msgid "function/macro \"$name\" not found in $class" -msgstr "Funktion oder Macro \"$name\" existiert nicht in $class" - -msgid "arguments to main not yet supported!" -msgstr "Argumente fЭr main werden noch nicht unterstЭtzt" - -msgid "accepting connections in $host" -msgstr "Akzeptiere Verbindungen in $host" - -msgid " (press Tab to complete)" -msgstr " (Tab-Taste zum ErgДnzen)" - -msgid "Save $name" -msgstr "Speichere $name" - -msgid "/Filters/Render/TeX String..." -msgstr "/Filter/Render/TeX-Ausdruck..." - -msgid "/Filters/Enhance/Warp Sharp..." -msgstr "/Filter/Verbessern/Warp SchДrfen..." - -msgid "/Filters/Web/Prepare for GIF..." -msgstr "/Filter/Web/FЭr GIF aufbereiten..." - -msgid "illegal type for colour specification" -msgstr "Die Farbangabe hat einen falschen Typ" - -msgid " plug-in called without both image and drawable arguments!\n" -msgstr "-Plugin wurde ohne 'image' und 'drawable' aufgerufen!\n" - -msgid "Seth Spin..." -msgstr "Seths Dreher..." - -msgid "get current background colour from the gimp" -msgstr "эbernehme die aktuelle Hintergrundfarbe von Gimp" - -msgid "No horizontal or vertical guides found. Aborted." -msgstr "Keine horizontalen oder vertikalen Hilfslienien gefunden. Abbruch." - -msgid "/Filters/Logulator/Glowing Hot" -msgstr "/Filter/Logulator/GlЭhend heiъ" - -msgid "accepting connections on port $Gimp::Net::default_tcp_port" -msgstr "Akzeptiere Verbindungen auf $Gimp::Net::default_tcp_port" - -msgid "Menu Path" -msgstr "Menupfad" - -msgid "TYPE" -msgstr "TYP" - -msgid "/Xtns/Render/Povray/Texture..." -msgstr "/Xtns/Render/Povray/Textur..." - -msgid "You need at least 2 layers to perform prep4gif" -msgstr "prep4gif benЖtigt mindestens zwei Ebenen!" - -msgid "/Filters/Blur/2x2 Blur" -msgstr "/Filter/Weichzeichnen/2x2 Weichzeichner" - -msgid "conversion to type $pf_type2string{$type} is not yet implemented\n" -msgstr "" -"Konvertierung nach $pf_type2string{$type} wird noch nicht unterstЭtzt\n" - -msgid "interface '$interface_type' unsupported." -msgstr "Schnittstellentyp '$interface_type' wird nicht unterstЭtzt." - -msgid "/Filters/Logulator/Neon" -msgstr "/Filter/Logulator/Neon" - -msgid "/Filters/Enhance/2x2 Contrast Enhance" -msgstr "/Filters/Verbessern/2x2 Kontrastverbesserung" - -msgid " plug-in called without the 3 standard arguments!\n" -msgstr "-Plugin wurde ohne die drei Standardargumente aufgerufen!\n" - -msgid "Unable to grok '%s' as colour specifier" -msgstr "Konnte die Farbe '%s' nicht finden" - -msgid "gimp-perl-pixel functions require the PDL::Core module" -msgstr "Die Gimp-perl-Pixelfunktionen benЖtigen das PDL::Core-Modul" - -msgid "a color must have three components (array elements)" -msgstr "" -"Eine Farbe muъ aus drei Komponenten bestehen (einem Feld mit drei Elementen)" - -msgid "Defaults" -msgstr "Standardwerte" - -msgid "Copyright" -msgstr "Copyright" - -msgid "/Select/Triangle..." -msgstr "/Auswahl/Dreieck..." - -msgid "/Filters/Render/Burst..." -msgstr "/Filter/Render/Ausbruch..." - -msgid "WARNING: client disconnected while holding an active lock\n" -msgstr "" -"WARNING: Verbindung zum Client wurde getrennt wДhrend ein lock aktiv war\n" - -msgid "/Xtns/Render/Logos" -msgstr "/Xtns/Render/Logos" - -msgid "/Xtns/Gimp::Fu Example..." -msgstr "/Xtns/Gimp::Fu Beispiel..." - -msgid "server version $Gimp::VERSION started" -msgstr "Server Version $Gimp::VERSION gestartet" - -msgid "argument is not of type %s" -msgstr "Argument nicht vom Typ %s" - -msgid "Background" -msgstr "Hintergrund" - -msgid "%s arguments for function '%s'" -msgstr "%s Argumente fЭr die Funktion '%s'" - -msgid "/Xtns/Render/Logos/Glowing Steel" -msgstr "/Xtns/Render/Logos/GlЭhender Stahl" - -msgid "only blessed scalars accepted here" -msgstr "Objekt (nicht Referenz oder Skalar) benЖtigt" - -msgid "expected protocol version $Gimp::_PROT_VERSION, but server uses $r[0]\n" -msgstr "" -"Protokollversion $Gimp::_PROT_VERSION erwartet, Server benutzt aber $r[0]\n" - -msgid "illegal parasite specification, arrayref expected" -msgstr "Illegaler Typ fЭr 'parasite', erwarte Referenz auf Array" - -msgid "" -"dimension mismatch, pdl has dimension %d but at least %d dimensions required" -msgstr "Dimension falsch: pdl hat die Dimension %d, Minimum ist aber %d" +msgid "unable to accept unix connection: $!\n" +msgstr "Konnte Unix-Verbindung nicht annehmen: $!\n" msgid "Save" msgstr "Sichern" -msgid "/Filters/Logulator/Carved" -msgstr "/Filter/Logulator/Geschnitzt" +msgid "" +"\n" +"\n" +"EMBEDDED POD DOCUMENTATION:\n" +"\n" +msgstr "" +"\n" +"\n" +"EINGEBETTETE POD-DOKUMENTATION:\n" +"\n" -msgid "/Filters/Logulator/Textured" -msgstr "/Filter/Logulator/Texturiert" - -msgid "Function Info" -msgstr "Mehr Info" - -msgid "no font specified, using default" -msgstr "Keine Schriftart angegeben, benutze den Standardwert" +msgid "/Filters/Logulator" +msgstr "/Filter/Logulator" msgid "" "the gtk perl module is required to run\n" @@ -797,223 +420,588 @@ msgstr "" "Um dieses Plugin im interaktiven Modus benutzen \n" "zu kЖnnen, wird das gtk perl Modul benЖtigt.\n" -msgid "authorization failed: $r[1]\n" -msgstr "Autorisierung fehlgeschlagen: $r[1]\n" +msgid "interface '$interface_type' unsupported." +msgstr "Schnittstellentyp '$interface_type' wird nicht unterstЭtzt." -msgid "/Filters/Logulator/Glossy" -msgstr "/Filter/Logulator/Glatt" +msgid "unable to accept tcp connection: $!\n" +msgstr "Konnte TCP-Verbindung nicht annehmen: $!\n" + +msgid "/Image/Alpha/Clear Alpha..." +msgstr "/Bild/Alpha/Alpha reinigen..." + +msgid "" +"dimension mismatch, pdl has dimension %d but at least %d dimensions required" +msgstr "Dimension falsch: pdl hat die Dimension %d, Minimum ist aber %d" + +msgid "[unfinished]\n" +msgstr "[abgebrochen]\n" + +msgid "could not connect to the gimp server (make sure Perl-Server is running)" +msgstr "Konnte den Gimp-Server nicht finden. LДuft der Perl-Server nicht?" + +msgid "/Filters/Logulator/Crystal" +msgstr "/Filter/Logulator/Crystal" + +msgid "Cannot call '$AUTOLOAD' at this time" +msgstr "'$AUTOLOAD' kann an dieser Stelle nicht aufgerufen werden" + +msgid "/Xtns/Render/Povray/Texture..." +msgstr "/Xtns/Render/Povray/Textur..." + +msgid "unauthorized command received, aborting connection" +msgstr "Anfrage ohne Autorisierung empfangen, Verbindung abgebrochen" + +msgid "/Xtns/Animation/Billboard..." +msgstr "/Xtns/Animation/Billboard..." + +msgid "Defaults" +msgstr "Standardwerte" + +msgid "/Filters/Render/Add Dust..." +msgstr "/Filter/Render/Staub..." + +msgid "text string is empty" +msgstr "Textstring ist leer" + +msgid "server requests authorization, but no authorization available\n" +msgstr "Server benЖtigt eine Autorisierung\n" + +msgid "/Xtns/Visual Scriptor..." +msgstr "/Xtns/Visual Scriptor..." + +msgid "/Xtns/Render/Logos" +msgstr "/Xtns/Render/Logos" + +msgid "Image Types" +msgstr "Bildtypen" + +msgid "Menu Path" +msgstr "Menupfad" + +msgid "9x15bold" +msgstr "9x15bold" + +msgid "Unable to grok '%s' as colour specifier" +msgstr "Konnte die Farbe '%s' nicht finden" + +msgid "Accelerator" +msgstr "Tastenkombination" + +msgid "gimp-perl-pixel functions require the PDL::Core module" +msgstr "Die Gimp-perl-Pixelfunktionen benЖtigen das PDL::Core-Modul" + +msgid "dunno how to return param type %d" +msgstr "Parametertyp %d kann nicht zurЭckgegeben werden" + +msgid "Cancel" +msgstr "Abbrechen" + +msgid "only blessed scalars accepted here" +msgstr "Objekt (nicht Referenz oder Skalar) benЖtigt" + +msgid "dimension mismatch, pdl has dimension %d but at most %d dimensions allowed" +msgstr "UngЭltige Dimension: pdl hat die Dimension %d, hЖchstens %d erlaubt" + +msgid "WARNING" +msgstr "WARNUNG" + +msgid "argument is not of type %s" +msgstr "Argument nicht vom Typ %s" + +msgid "Description" +msgstr "Beschreibung" + +msgid "/Filters/Render/Fit Text..." +msgstr "/Filter/Render/Text einpassen..." + +msgid "Unable to convert a reference to type '%s'" +msgstr "Konnte Referenz auf Typ '%s' nicht konvertieren" + +msgid "argument incompatible with type IMAGE" +msgstr "Argument inkompatibel mit Typ IMAGE" + +msgid "/Filters/Blur/2x2 Blur" +msgstr "/Filter/Weichzeichnen/2x2 Weichzeichner" + +msgid "not enough" +msgstr "nicht genЭgend" + +msgid "/Filters/Render/Burst..." +msgstr "/Filter/Render/Ausbruch..." + +msgid "-*-courier-medium-r-normal--*-120-*-*-*-*-*" +msgstr "-*-courier-medium-r-normal--*-120-*-*-*-*-*" + +msgid "Synopsis" +msgstr "Synopsis" + +msgid "/Filters/Map/Pixelmap..." +msgstr "/Filter/Abbilden/Pixelabbildung..." + +msgid "Color" +msgstr "Farbe" + +msgid "FATAL: canonicalize_colour did not return a value!" +msgstr "FATAL: canonicalize_colour lieferte keinen Wert zurЭck!" + +msgid "/Filters/Apply Perl Expression..." +msgstr "/Filter/Perl-Ausdruck anwenden..." + +msgid "DESCRIPTION" +msgstr "BESCHREIBUNG" + +msgid "Unable to open '$filename' for writing: $!\n" +msgstr "Konnte '$filename' nicht zum Schreiben Жffnen: $!\n" + +msgid "/Filters/Distorts/MirrorSplit..." +msgstr "/Filter/Verzerren/Spiegel..." + +msgid "accepting connections in $host" +msgstr "Akzeptiere Verbindungen in $host" + +msgid " plug-in called without the 5 standard arguments!\n" +msgstr "-Plugin wurde ohne die fЭnf Standardargumente aufgerufen!\n" + +msgid "unable to create socketpair for gimp communications: $!" +msgstr "Konnte kein Socket-Paar fЭr die Kommunikation mit Gimp erstellen: $!" + +msgid "unable to create '$fn': $!" +msgstr "Konnte '$fn' nicht anlegen: $!" msgid "Previous" msgstr "Vorherige" +msgid "WARNING: $function returned something that is not an image: \"$img\"\n" +msgstr "WARNING: $function gab kein Bild, sondern etwas anderes zurЭck: \"$img\"\n" + msgid "Command" msgstr "Befehl" -msgid "/Filters/Logulator/Chalk" -msgstr "/Filter/Logulator/Kreide" +msgid "accepting connections on port $Gimp::Net::default_tcp_port" +msgstr "Akzeptiere Verbindungen auf $Gimp::Net::default_tcp_port" -msgid "/Xtns/Render/Bricks..." -msgstr "/Xtns/Render/Steine..." +msgid "perl-arrayref required as datatype for a gimp-array" +msgstr "Ein gimp-array muъ in Perl als Arrayreferenz angegeben werden" + +msgid "required callback 'query' not found\n" +msgstr "BenЖtigte Callback-Funktion 'query' wurde nicht gefunden\n" + +msgid "/Xtns/Create_Images" +msgstr "/Xtns/Bilder erzeugen" + +msgid "Save $name" +msgstr "Speichere $name" + +msgid "run_mode must be INTERACTIVE, NONINTERACTIVE or RUN_WITH_LAST_VALS\n" +msgstr "" +"run_mode muъ entweder INTERACTIVE, NONINTERACTIVE or RUN_WITH_LAST_VALS sein\n" + +msgid "/Video/VCR Console..." +msgstr "/Video/VCR Console..." + +msgid "/Filters/Edge-Detect/2x2 Edge Detect" +msgstr "/Filter/Kanten finden/2x2 Kantenfinder" + +msgid "Copyright" +msgstr "Copyright" + +msgid "interface=... tag is no longer supported\n" +msgstr "Das interface=...-Tag wird nicht mehr unterstЭtzt\n" + +msgid "" +"Expected an INT32 but got '%s'. Maybe you meant '%s' instead and forgot to 'use " +"strict'" +msgstr "" +"Erwarte ein INT32, bekam aber '%s'. Vielleicht meinten Sie '%s' und haben " +"vergessen 'use strict' zu benutzen." + +msgid "/Filters/Logulator/Transparent Logo..." +msgstr "/Filter/Logulator/Transparentes Logo..." + +msgid "" +"malformed paramdef, expected [PARAM_TYPE,\"NAME\",\"DESCRIPTION\"] or PARAM_TYPE" +msgstr "" +"UngЭltige Parameterdefinition, [PARAM_TYPE,\"NAME\",\"DESCRIPTION\"] oder " +"PARAM_TYPE wird erwartet" + +msgid "Background" +msgstr "Hintergrund" + +msgid "last argument to gimp_pattern_select_widget must be scalar ref" +msgstr "" +"Das letze Argument von gimp_pattern_select_widget muъ eine Referenz auf einen " +"Skalar sein" + +msgid "/Xtns/Render/Stamps..." +msgstr "/Xtns/Render/Briefmarke..." + +msgid "accepting connections on $unix_path" +msgstr "Akzeptiere Verbindungen auf $unix_path" + +msgid "Load $name" +msgstr "Lade $name" + +msgid "/Filters/Noise/Ditherize..." +msgstr "/Filter/Rauschen/Rastern..." + +msgid "Saving '$filename' as DATAURL..." +msgstr "Speichere '$filename' im DATAURL-Format..." + +msgid ", %d bytes data]" +msgstr ", %d bytes Daten]" + +msgid "unable to create listening tcp socket: $!\n" +msgstr "Konnte TCP-Socket nicht erstellen: $!\n" + +msgid "" +"gimp_pixel_rgns_register supports only 1, 2 or 3 arguments, upgrade to gimp-1.1 " +"and report this error" +msgstr "" + +msgid "/Filters/Render/Brushed Metal..." +msgstr "/Filter/Render/GebЭrstetes Metall..." + +msgid "Bumpmap" +msgstr "Bumpmap" + +msgid "Saving '$filename' as COLORHTML..." +msgstr "Speichere '$filename' als COLORHTML..." + +msgid "required callback 'net' not found\n" +msgstr "Erforderlicher Aufruf 'net' nicht gefunden\n" + +msgid "too many" +msgstr "zu viele" + +msgid "/Filters/Render/Add Glow" +msgstr "/Filter/Render/GlЭhen hinzufЭgen" + +msgid "Author" +msgstr "Autor" + +msgid "More..." +msgstr "Mehr..." + +msgid "arguments to main not yet supported!" +msgstr "Argumente fЭr main werden noch nicht unterstЭtzt" + +msgid "Seth Spin..." +msgstr "Seths Dreher..." + +msgid "/Filters/Logulator/Newsprint text" +msgstr "/Filter/Logulator/Zeitungsdruck Text" + +msgid "/Filters/Noise/Xach Vision..." +msgstr "/Filter/Rauschen/Xachs Vision..." + +msgid "WARNING: client disconnected while holding an active lock\n" +msgstr "WARNING: Verbindung zum Client wurde getrennt wДhrend ein lock aktiv war\n" + +msgid "NAME" +msgstr "NAME" + +msgid "Help" +msgstr "Hilfe" + +msgid "/Filters/Logulator/Carved" +msgstr "/Filter/Logulator/Geschnitzt" + +msgid "no font specified, using default" +msgstr "Keine Schriftart angegeben, benutze den Standardwert" + +msgid "conversion to type $pf_type2string{$type} is not yet implemented\n" +msgstr "Konvertierung nach $pf_type2string{$type} wird noch nicht unterstЭtzt\n" + +msgid "gimp_tile_get_data is not yet implemented\n" +msgstr "gimp_tile_get_data ist noch nicht implementiert\n" + +msgid "/Filters/Map/Xach Shadows..." +msgstr "/Filter/Abbilden/Xach-Schatten..." + +msgid "/Filters/Map/Xach Blocks..." +msgstr "/Filter/Abbilden/Xach-BlЖcke..." + +msgid "/Filters/Logulator/Speed text" +msgstr "/Filter/Logulator/Schneller Text" + +msgid "unable to grok colour specification" +msgstr "Konnte Farbangabe nicht verstehen" + +msgid "/Edit/Repeat & Duplicate..." +msgstr "/Bearbeiten/Wiederholen & Verdoppeln..." + +msgid "You need at least 2 layers to perform prep4gif" +msgstr "prep4gif benЖtigt mindestens zwei Ebenen!" + +msgid "too many arguments" +msgstr "Zu viele Argumente" + +msgid "-*-helvetica-medium-r-normal-*-34-*-*-*-p-*-iso8859-1" +msgstr "-*-helvetica-medium-r-normal-*-34-*-*-*-p-*-iso8859-1" + +msgid "expected protocol version $Gimp::_PROT_VERSION, but server uses $r[0]\n" +msgstr "" +"Protokollversion $Gimp::_PROT_VERSION erwartet, Server benutzt aber $r[0]\n" + +msgid "Restore values to the previous ones" +msgstr "Parameter auf vorherige Werte zurЭcksetzen" + +msgid " plug-in called without both image and drawable arguments!\n" +msgstr "-Plugin wurde ohne 'image' und 'drawable' aufgerufen!\n" + +msgid ", authorization required" +msgstr ", Autorisierung notwendig" + +msgid "/Filters/Noise/Feedback..." +msgstr "/Filter/Rauschen/Feedback..." + +msgid "unable to create listening unix socket: $!\n" +msgstr "Konnte keine Unix-Domain-socket anlegen: $!\n" + +msgid "invalid GIMP_HOST: 'spawn' is not a valid connection method for the server" +msgstr "" +"ungЭltige GIMP_HOST-Angabe: 'spawn' ist keine gЭltige Verbindungsart fЭr den " +"Server" + +msgid "Last Modified" +msgstr "Zuletzt geДndert" + +msgid "/View/3D Surface..." +msgstr "/Ansicht/3D-OberflДche..." + +msgid "Shortcuts" +msgstr "AbkЭrzungen" + +msgid "" +"the gtk perl module is required to open a dialog\n" +"window, running with default values" +msgstr "" +"Das Gtk-Perl-Modul ist notwendig um ein Dialogfenster anzuzeigen\n" +"das Programm benutzt deshalb die Standardwerte" + +msgid "/Filters/Logulator/Web title header" +msgstr "/Filter/Logulator/Web Titelzeile" + +msgid "/Filters/Web/Webify..." +msgstr "/Filter/Web/VerWEBben..." + +msgid " plug-in called without the 3 standard arguments!\n" +msgstr "-Plugin wurde ohne die drei Standardargumente aufgerufen!\n" + +msgid "Font Selection Dialog ($desc)" +msgstr "Schriftarten-Auswahl ($desc)" + +msgid "%s: procedural database execution failed on invalid input arguments" +msgstr "%s: PDB-Aufruf fehlgeschlagen wegen ungЭltiger Argumente" + +msgid "(UNINITIALIZED)" +msgstr "(UNINITIALISIERT)" + +msgid "closing connection %d (%d requests in %g seconds)" +msgstr "Schlieъe Verbindung %d (%d Anfragen in %g Sekunden)" + +msgid "/Xtns/Render/Golden Mean..." +msgstr "/Xtns/Render/Goldener Schnitt..." + +msgid "authorization failed: $r[1]\n" +msgstr "Autorisierung fehlgeschlagen: $r[1]\n" + +msgid "/Guides/Center Guide..." +msgstr "/Hilfslinien/Zentriert..." + +msgid "server version $Gimp::VERSION started" +msgstr "Server Version $Gimp::VERSION gestartet" msgid "" "$function: calling $AUTOLOAD without specifying the :auto import tag is " "deprecated!\n" msgstr "" -"$function: $AUTOLOAD sollte nicht ohne den :auto import tag aufgerufen " -"werden!\n" - -msgid "DESCRIPTION" -msgstr "BESCHREIBUNG" - -msgid "Accelerator" -msgstr "Tastenkombination" - -msgid "Cancel" -msgstr "Abbrechen" - -msgid "/Filters/Map/Xach Shadows..." -msgstr "/Filter/Abbilden/Xach-Schatten..." - -msgid "argument type %s expected (not %s)" -msgstr "Argument vom Typ %s erwartet, nicht %s" - -msgid "BG" -msgstr "HG" - -msgid "" -"pixel size mismatch, pdl has %d channel pixels but %d channels are required" -msgstr "" -"Pixeldatentyp stimmt nicht Эberein: pdl hat %d KanДle, erwartet werden %d" - -msgid "/Filters/Render/Highlight Edges..." -msgstr "/Filter/Render/Ecken betonen..." - -msgid "Spin Layer DEST (250ms)" -msgstr "Spin Ebene ZIEL (250ms)" - -msgid "This module was built without support for PDL." -msgstr "Dieses Modul wurde ohne PDL-UnterstЭtzung Эbersetzt." - -msgid "[unfinished]\n" -msgstr "[abgebrochen]\n" - -msgid "/Xtns/Homepage-Logo" -msgstr "/Xtns/Homepagelogo" - -msgid "Bumpmap" -msgstr "Bumpmap" - -msgid "Date/Version" -msgstr "Datum/Version" - -msgid "$function: argument/return value '$p->[1]' has illegal type '$p->[0]'" -msgstr "" -"$function: Argument-/RЭckgabewert '$p->[1]' ist vom unzulДssigen Typ " -"'$p->[0]'" - -msgid "required callback 'net' not found\n" -msgstr "Erforderlicher Aufruf 'net' nicht gefunden\n" - -msgid "function '$exe' not found in this script (must be one of " -msgstr "" - -msgid "/Filters/Colors/Colour To Alpha..." -msgstr "/Filter/Farben/Farbe zu Alpha" - -msgid "/Xtns/Perl" -msgstr "/Xtns/Perl" - -msgid "/Xtns/Render/Random Art #1..." -msgstr "/Xtns/Render/ZufДllige Kunst #1..." - -msgid "accepted tcp connection from " -msgstr "TCP-Verbindung angenommen von " - -msgid "Status" -msgstr "Status" - -msgid "Load $name" -msgstr "Lade $name" - -msgid " plug-in called without the 5 standard arguments!\n" -msgstr "-Plugin wurde ohne die fЭnf Standardargumente aufgerufen!\n" - -msgid "unable to accept unix connection: $!\n" -msgstr "Konnte Unix-Verbindung nicht annehmen: $!\n" - -msgid "/Xtns/Render/Povray/Preferences..." -msgstr "/Xtns/Render/Povray/Einstellungen..." - -msgid "/Xtns/Perl Example Plug-in" -msgstr "/Xtns/Perl Beispiel-Plugin" - -msgid "unable to accept tcp connection: $!\n" -msgstr "Konnte TCP-Verbindung nicht annehmen: $!\n" - -msgid "(UNINITIALIZED)" -msgstr "(UNINITIALISIERT)" - -msgid "/Filters/Render/Brushed Metal..." -msgstr "/Filter/Render/GebЭrstetes Metall..." - -msgid "perl-arrayref required as datatype for a gimp-array" -msgstr "Ein gimp-array muъ in Perl als Arrayreferenz angegeben werden" - -msgid "/Filters/Web/Webify..." -msgstr "/Filter/Web/VerWEBben..." - -msgid "/Filters/Logulator/Comic Book" -msgstr "/Filter/Logulator/Comic-Heft" - -msgid "Unable to open '$filename' for writing: $!\n" -msgstr "Konnte '$filename' nicht zum Schreiben Жffnen: $!\n" - -msgid "Unsupported argumenttype $type" -msgstr "Argumenttyp $type wird nicht unterstЭtzt" - -msgid "/Filters/Logulator/Gradient Bevel" -msgstr "/Filter/Logulator/Farbverlauf" - -msgid "/Filters/Logulator/Chrome" -msgstr "/Filter/Logulator/Chrom" - -msgid "/Xtns/Render/Povray" -msgstr "/Xtns/Render/Povray" - -msgid "Color" -msgstr "Farbe" +"$function: $AUTOLOAD sollte nicht ohne den :auto import tag aufgerufen werden!\n" msgid "authorization unnecessary" msgstr "Autorisierung unnЖtig" -msgid "illegal parasite specification, reference expected" -msgstr "Illegale Form fЭr Parasite, es wird eine Referenz erwartet" +msgid "/Filters/Enhance/Warp Sharp..." +msgstr "/Filter/Verbessern/Warp SchДrfen..." -msgid "/Xtns/Render/Font Table..." -msgstr "/Xtns/Render/Schrift-Tabelle..." +msgid "unable to open Gimp::Net communications socket: $!\n" +msgstr "Konnte den Gimp::Net Kommunikationskanal nicht Жffnen: $!\n" -msgid "/Filters/Logulator/Blended II..." -msgstr "/Filter/Logulator/Verlauf II..." - -msgid "Saving '$filename' as DATAURL..." -msgstr "Speichere '$filename' im DATAURL-Format..." - -msgid "Edit" -msgstr "Edieren" - -msgid "text string is empty" -msgstr "Textstring ist leer" +msgid "/Xtns/Render/Logos/Inner Bevel..." +msgstr "/Xtns/Render/Logo/Inner Bevel..." msgid "/Filters/Distorts/Scratches..." msgstr "/Filter/Verzerren/Kratzer..." -msgid "$_: unknown/illegal file-save option" -msgstr "$_: Unbekannte oder Illegale Option fЭr file-save" +msgid "Close" +msgstr "Schlieъen" -msgid "/Xtns/Render" -msgstr "/Xtns/Render" +msgid "illegal parasite specification, arrayref expected" +msgstr "Illegaler Typ fЭr 'parasite', erwarte Referenz auf Array" -msgid " = [argument error]\n" -msgstr " = [Argumentfehler]\n" +msgid "/Filters/Misc/Border Average..." +msgstr "/Filter/Verschiedenes/Rahmenfarbe..." -msgid "/Select/Round..." -msgstr "/Auswahl/Abrunden..." +msgid "unable to fork: $!" +msgstr "Konnte nicht forken: $!" -msgid "plug-in returned %d more values than expected" -msgstr "Plugin gab %d Werte mehr als erwartet zurЭck" - -msgid "$_ is not a valid import tag for package $pkg" -msgstr "$_ ist kein gЭltiger Import-Tag fЭr $pkg" - -msgid "url size is too large ($max > 1024)\n" -msgstr "URL zu lang ($max > 1024)\n" - -msgid "illegal command received, aborting connection" -msgstr "UngЭltige Anfrage empfange, Vebrindung abgebrochen" - -msgid "/Filters/Noise/Ditherize..." -msgstr "/Filter/Rauschen/Rastern..." - -msgid "Pattern Selection Dialog" -msgstr "Musterauswahl" +msgid "Unsupported argumenttype $type" +msgstr "Argumenttyp $type wird nicht unterstЭtzt" msgid "get current foreground colour from the gimp" msgstr "эbernehme die aktuelle Vordergrundfarbe von Gimp" -msgid "/Filters/Render/Add Dust..." -msgstr "/Filter/Render/Staub..." +msgid "/Xtns/Perl Example Plug-in" +msgstr "/Xtns/Perl Beispiel-Plugin" -msgid "PDB Explorer - the olof edition (yet still an alpha version)" -msgstr "PDB-Explorer - Edition 'Olof' (noch immer eine Alpha-Version)" +msgid "You can't run this script without an ALPHA CHANNEL!!" +msgstr "Dieses Program kann nicht ohne Alpha-Kanal arbeiten!!" -msgid "not enough" -msgstr "nicht genЭgend" +msgid "/Filters/Misc/Magick..." +msgstr "/Filter/Verschiedenes/Magick..." -msgid "/Filters/Web/Perl-o-tine..." -msgstr "/Filter/Web/Perl-o-tine..." +msgid "/Filters/Render/Stampify..." +msgstr "/Filter/Render/Briefmarke..." + +msgid "/Select/Round..." +msgstr "/Auswahl/Abrunden..." + +msgid "Unable to read temporary image tile $tmp: $!" +msgstr "Konnte temporДre Bilddatei '$tmp' nicht lesen: $!" + +msgid "Help for " +msgstr "Hilfe fЭr " + +msgid "export failed" +msgstr "Export fehlgeschlagen" + +msgid "dunno how to pass arg type %d" +msgstr "Kann Argumenttyp %d nicht Эbergeben" + +msgid "/Xtns/Render/Povray" +msgstr "/Xtns/Render/Povray" + +msgid "/Filters/Distorts/Windify..." +msgstr "/Filter/Verzerren/Verwehen..." + +msgid " (press Tab to complete)" +msgstr " (Tab-Taste zum ErgДnzen)" + +msgid "This module was built without support for PDL." +msgstr "Dieses Modul wurde ohne PDL-UnterstЭtzung Эbersetzt." + +msgid "plug-in returned %d more values than expected" +msgstr "Plugin gab %d Werte mehr als erwartet zurЭck" + +msgid "/Xtns/Homepage-Logo" +msgstr "/Xtns/Homepagelogo" + +msgid "FG" +msgstr "VG" + +msgid "url size is too large ($max > 1024)\n" +msgstr "URL zu lang ($max > 1024)\n" + +msgid "$function: argument/return value '$p->[1]' has illegal type '$p->[0]'" +msgstr "" +"$function: Argument-/RЭckgabewert '$p->[1]' ist vom unzulДssigen Typ '$p->[0]'" + +msgid "Edit" +msgstr "Edieren" + +msgid "/Select/Triangle..." +msgstr "/Auswahl/Dreieck..." + +msgid "/Filters/Animation/BlowInOut..." +msgstr "/Filter/Animation/Verwehen..." + +msgid "/Filters/Enhance/2x2 Contrast Enhance" +msgstr "/Filters/Verbessern/2x2 Kontrastverbesserung" msgid "/Layers/Stack/Reorder Layers..." msgstr "/Ebenen/Stapel/Ebenen umordnen..." -msgid "accepting connections on $unix_path" -msgstr "Akzeptiere Verbindungen auf $unix_path" +msgid "" +"$function: argument name '$p->[1]' contains illegal characters, only 0-9, a-z " +"and _ allowed" +msgstr "" +"$function: Argumentname '$p->[1]' enthДlt unzulДssige Zeichen; nur 0-9, a-z und " +"_ sind erlaubt" + +msgid "/Filters/Colors/Fire..." +msgstr "/Filter/Farben/Feuer..." + +msgid "/Filters/Render/TeX String..." +msgstr "/Filter/Render/TeX-Ausdruck..." + +msgid "OK" +msgstr "OK" + +msgid "illegal command received, aborting connection" +msgstr "UngЭltige Anfrage empfange, Vebrindung abgebrochen" + +msgid "(none)" +msgstr "(nichts ausgewДhlt)" + +#~ msgid "/Filters/Logulator/Bovination" +#~ msgstr "/Filter/Logulator/Bovination" + +#~ msgid "/Filters/Logulator/Blended" +#~ msgstr "/Filter/Logulator/Blended" + +#~ msgid "/Filters/Logulator/Basic I" +#~ msgstr "/Filter/Logulator/Einfach I" + +#~ msgid "/Filters/Logulator/3D Outline..." +#~ msgstr "/Filter/Logulator/3D-Umriъ..." + +#~ msgid "/Filters/Logulator/Glowing Hot" +#~ msgstr "/Filter/Logulator/GlЭhend heiъ" + +#~ msgid "/Filters/Logulator/Basic II" +#~ msgstr "/Filter/Logulator/Einfach II" + +#~ msgid "/Filters/Logulator/Starburst" +#~ msgstr "/Filter/Logulator/Sternenexplosion" + +#~ msgid "/Filters/Logulator/Comic Book" +#~ msgstr "/Filter/Logulator/Comic-Heft" + +#~ msgid "/Filters/Logulator/Chalk" +#~ msgstr "/Filter/Logulator/Kreide" + +#~ msgid "/Filters/Logulator/Glossy" +#~ msgstr "/Filter/Logulator/Glatt" + +#~ msgid "/Filters/Logulator/Particle Trace" +#~ msgstr "/Filter/Logulator/Partikelspur" + +#~ msgid "/Filters/Logulator/Alien Glow" +#~ msgstr "/Filter/Logulator/Alien Glow" + +#~ msgid "/Filters/Logulator/Cool Metal" +#~ msgstr "/Filter/Logulator/Cool Metal" + +#~ msgid "/Filters/Logulator/Textured" +#~ msgstr "/Filter/Logulator/Texturiert" + +#~ msgid "/Filters/Logulator/Gradient Bevel" +#~ msgstr "/Filter/Logulator/Farbverlauf" + +#~ msgid "/Filters/Logulator/Frosty" +#~ msgstr "/Filter/Logulator/Frostig" + +#~ msgid "/Filters/Logulator/Neon" +#~ msgstr "/Filter/Logulator/Neon" + +#~ msgid "/Filters/Logulator/Chrome" +#~ msgstr "/Filter/Logulator/Chrom" + +#~ msgid "/Filters/Logulator/Chip Away" +#~ msgstr "/Filter/Logulator/Chip Away" + +#~ msgid "/Filters/Logulator/Starscape" +#~ msgstr "/Filter/Logulator/Starscape" + +#~ msgid "/Filters/Animation/Seth Spin..." +#~ msgstr "/Filter/Animation/Seths Dreher..." diff --git a/plug-ins/perl/po/fi.po b/plug-ins/perl/po/fi.po index 254b2a1ef9..af37e57138 100644 --- a/plug-ins/perl/po/fi.po +++ b/plug-ins/perl/po/fi.po @@ -14,480 +14,19 @@ msgstr "" "Content-Type: text/plain; charset=iso-8859-1\n" "Content-Transfer-Encoding: 8bit\n" -msgid "/Filters/Logulator/Starburst" -msgstr "" - -msgid "expected perl-server at other end of socket, got @r\n" -msgstr "odotettu perl-serveri soketin toisella puolella sai @r\n" - -msgid "too many" -msgstr "liian monta" - -msgid "/Filters/Logulator/Transparent Logo..." -msgstr "" - -msgid "$s: not an integer\n" -msgstr "$s: ei ole kokonaisluku\n" - -msgid "/Filters/Logulator/Blended" -msgstr "" - -msgid "/Select/Round Rectangular Selection..." -msgstr "" - -msgid "/Guides/To Selection..." -msgstr "" - -msgid "Help for " -msgstr "Apua " - -msgid "illegal parasite specification, expected three array members" -msgstr "vДДrД parasiitti operaatio, odotettiin kolmea taulukon kohtaa" - -msgid "Last Modified" -msgstr "Viimeksi muutettu" - -msgid "unable to read '$fn': $!" -msgstr "mahdoton lukea '$fn': $!" - -msgid "/Filters/Logulator/Cool Metal" -msgstr "" - -msgid "/Filters/Map/Image Tile..." -msgstr "" - -msgid "/Filters/Logulator/Crystal" -msgstr "" - -msgid "/Filters/Logulator/Alien Glow" -msgstr "" - -msgid "Unable to read temporary image tile $tmp: $!" -msgstr "Mahdoton lukea vДliaikasi kuva tiedoston laattaa $tmp: $!" - -msgid "run_mode must be INTERACTIVE, NONINTERACTIVE or RUN_WITH_LAST_VALS\n" -msgstr "run_mode tДytyy olla INTERACTIVE, NONINTERACTIVE tai RUN_WITH_LAST_VALS\n" - -msgid "Font Selection Dialog ($desc)" -msgstr "Fontin valinta dialogi ($desc)" - -msgid "xlfd_unpack: unmatched XLFD '$fontname'\n" -msgstr "xlfd_unpack: ei mДtsДД XLFD '$fontname'\n" - -msgid "/Filters/Noise/Xach Vision..." -msgstr "" - -msgid "$function: function name contains unusual characters, good style is to use only 0-9, a-z and _" -msgstr "" - -msgid "Help" -msgstr "Apua" - -msgid "/Image/Alpha/Clear Alpha..." -msgstr "" - -msgid "/Filters/Map/Pixelmap..." -msgstr "" - -msgid "unable to fork: $!" -msgstr "ei voi forkata: $!" - -msgid "FG" -msgstr "FG" - msgid "FATAL: unable to create $tmp: $!\n" msgstr "FATAALI: ei voi luoda $tmp: $!\n" -msgid "/Filters/Logulator" +msgid "" +"Expected an INT32 but got '%s'. Add '*1' if you really intend to pass in a string" msgstr "" -msgid "dunno how to return param type %d" -msgstr "ei voi palauttaa parametriД tyyppiД %d" - -msgid "/Filters/Logulator/Chip Away" -msgstr "" - -msgid "/Image/Alpha/Alpha2Color..." -msgstr "" - -msgid "/Filters/Logulator/Bovination" -msgstr "" - -msgid "Image Types" -msgstr "Kuva tyypit" - -msgid "/Filters/Render/Stampify..." -msgstr "" - -msgid "could not connect to the gimp server (make sure Perl-Server is running)" -msgstr "ei voi luoda yhteytty gimp serveriin (pidД huolta, ettД Perl-Server on kДynnissД" - -msgid "/Xtns/Render/Stamps..." -msgstr "" - -msgid "More..." -msgstr "LisДД..." - -msgid "/Filters/Logulator/Particle Trace" -msgstr "" - -msgid "/Xtns/Render/Logos/Firetext..." -msgstr "" - -msgid "interface=... tag is no longer supported\n" -msgstr "" - -msgid "Text" -msgstr "Teksti" - -msgid "/Filters/Render/Random Blends..." -msgstr "" - -msgid "Synopsis" -msgstr "Yhteenveto" - -msgid "Plug-In Path" -msgstr "LiitДnnДisen polku" - -msgid "unable to convert Gimp::Drawable into Gimp::GDrawable (id %d)" -msgstr "" - -msgid "Restore values to the previous ones" -msgstr "Palauta arvot edellisistД" - -msgid "Illegal default font description for $function: $val\n" -msgstr "Laiton perus fonttin kuvaus $function: $val\n" - -msgid "parameter '$entry->[1]' is not optional\n" -msgstr "parametri '$entry->[1]' ei ole optionaalinen\n" - -msgid "-*-courier-medium-r-normal--*-120-*-*-*-*-*" -msgstr "-*-courier-medium-r-normal--*-120-*-*-*-*-*" - -msgid "WARNING: client tried to unlock without holding a lock" -msgstr "" - -msgid "/Xtns/Perl/Control Center..." -msgstr "" - -msgid "register called with too many or wrong arguments\n" +msgid "/Filters/Web/Prepare for GIF..." msgstr "" msgid "/Filters/Animation/Animate Cells..." msgstr "" -msgid "Spin Layer SRC (250ms)" -msgstr "" - -msgid "malformed paramdef, expected [PARAM_TYPE,\"NAME\",\"DESCRIPTION\"] or PARAM_TYPE" -msgstr "" - -msgid "gimp_pixel_rgns_register supports only 1, 2 or 3 arguments, upgrade to gimp-1.1 and report this error" -msgstr "" - -msgid "last argument to gimp_pattern_select_widget must be scalar ref" -msgstr "" - -msgid "\n\nEMBEDDED POD DOCUMENTATION:\n\n" -msgstr "" - -msgid "Fileselector for $name" -msgstr "" - -msgid "/Xtns/Render/Pixelgenerator..." -msgstr "" - -msgid "/Filters/Distorts/MirrorSplit..." -msgstr "" - -msgid "/Filters/Noise/Feedback..." -msgstr "" - -msgid "/Xtns/Animation/Billboard..." -msgstr "" - -msgid "unable to create listening unix socket: $!\n" -msgstr "" - -msgid ", %d bytes data]" -msgstr "" - -msgid "server requests authorization, but no authorization available\n" -msgstr "" - -msgid "pdl height != region height" -msgstr "" - -msgid "/Guides/Center Guide..." -msgstr "" - -msgid "Close" -msgstr "" - -msgid "unable to open $rgb_db_path" -msgstr "" - -msgid "You can't run this script with an INDEXED image!!" -msgstr "" - -msgid "An even number of frames is needed for spin back.\nAdjusted frames up to $frames" -msgstr "" - -msgid "/Filters/Render/Add Glow" -msgstr "" - -msgid "/Filters/Logulator/Basic I" -msgstr "" - -msgid "function name contains dashes instead of underscores" -msgstr "" - -msgid "required callback 'run' not found\n" -msgstr "" - -msgid "$function: argument name '$p->[1]' contains illegal characters, only 0-9, a-z and _ allowed" -msgstr "" - -msgid "required callback 'query' not found\n" -msgstr "" - -msgid "Expected an INT32 but got '%s'. Add '*1' if you really intend to pass in a string" -msgstr "" - -msgid "invalid GIMP_HOST: 'spawn' is not a valid connection method for the server" -msgstr "" - -msgid "wrong authorization, aborting connection" -msgstr "" - -msgid "WARNING" -msgstr "" - -msgid "Brush Selection Dialog" -msgstr "" - -msgid "/Filters/Render/Terral Text..." -msgstr "" - -msgid "/Filters/Logulator/3D Outline..." -msgstr "" - -msgid "(none)" -msgstr "" - -msgid "authorization required for tcp connections" -msgstr "" - -msgid "Expected an INT32 but got '%s'. Maybe you meant '%s' instead and forgot to 'use strict'" -msgstr "" - -msgid "[undefined]" -msgstr "" - -msgid "/Guides/Remove Guides" -msgstr "" - -msgid "unable to open Gimp::Net communications socket: $!\n" -msgstr "" - -msgid "WARNING: shared locking requested but not implemented" -msgstr "" - -msgid "You can't run this script without an ALPHA CHANNEL!!" -msgstr "" - -msgid "/Xtns/Render/Yin-Yang..." -msgstr "" - -msgid "/Filters/Logulator/SOTA Chrome" -msgstr "" - -msgid "%s: procedural database execution failed" -msgstr "" - -msgid "/Video/VCR Console..." -msgstr "" - -msgid ", authorization required" -msgstr "" - -msgid "/Xtns/Render/Golden Mean..." -msgstr "" - -msgid "unable to create socketpair for gimp communications: $!" -msgstr "" - -msgid "/View/3D Surface..." -msgstr "" - -msgid "trying to start gimp with options \"$opt\"\n" -msgstr "" - -msgid "/Xtns/Render/Logos/Inner Bevel..." -msgstr "" - -msgid "menupath _must_ start with , , , or !" -msgstr "" - -msgid "/Xtns/Perl/Server" -msgstr "" - -msgid "/Filters/Misc/Magick..." -msgstr "" - -msgid "accepted unix connection" -msgstr "" - -msgid "/Edit/Repeat & Duplicate..." -msgstr "" - -msgid "/Filters/Colors/Map To Gradient..." -msgstr "" - -msgid "/Filters/Logulator/Imigre-26" -msgstr "" - -msgid "gimp_tile_get_data is not yet implemented\n" -msgstr "" - -msgid "dunno how to pass arg type %d" -msgstr "" - -msgid "Browse" -msgstr "" - -msgid "received QUIT request" -msgstr "" - -msgid "Author" -msgstr "" - -msgid "unable to create '$fn': $!" -msgstr "" - -msgid "unable to create listening tcp socket: $!\n" -msgstr "" - -msgid "-*-helvetica-medium-r-normal-*-34-*-*-*-p-*-iso8859-1" -msgstr "" - -msgid "BLURB:\n\n$blurb\n\nHELP:\n\n$help" -msgstr "" - -msgid "OK" -msgstr "" - -msgid "gimp_tile_set_data is not yet implemented\n" -msgstr "" - -msgid "argument incompatible with type IMAGE" -msgstr "" - -msgid "accepting connections on port $port" -msgstr "" - -msgid "Description" -msgstr "" - -msgid "params and return_vals must be array refs (even if empty)!" -msgstr "" - -msgid "/Filters/Logulator/Newsprint text" -msgstr "" - -msgid "/Filters/Animation/BlowInOut..." -msgstr "" - -msgid "/Filters/Render/Fit Text..." -msgstr "" - -msgid "$_: illegal switch, try $0 --help\n" -msgstr "" - -msgid "Unable to convert a reference to type '%s'" -msgstr "" - -msgid "/Guides/Guide Grid..." -msgstr "" - -msgid "/Xtns/PDB Explorer..." -msgstr "" - -msgid "/Filters/Logulator/Starscape" -msgstr "" - -msgid "/Filters/Distorts/Windify..." -msgstr "" - -msgid "/Filters/Apply Perl Expression..." -msgstr "" - -msgid "gimp procedure '%s' not found" -msgstr "" - -msgid "Visual Scriptor" -msgstr "" - -msgid "server going down..." -msgstr "" - -msgid "/Filters/Map/Xach Blocks..." -msgstr "" - -msgid "unable to read temporary file $tmp: $!" -msgstr "" - -msgid "Saving '$filename' as COLORHTML..." -msgstr "" - -msgid "being called as '%s', but '%s' not registered in the pdb" -msgstr "" - -msgid "Shortcuts" -msgstr "" - -msgid "/Filters/Logulator/Speed text" -msgstr "" - -msgid "/Xtns/Create_Images" -msgstr "" - -msgid "/Xtns/Parasite Editor..." -msgstr "" - -msgid "9x15bold" -msgstr "" - -msgid "unauthorized command received, aborting connection" -msgstr "" - -msgid "%s: procedural database execution failed on invalid input arguments" -msgstr "" - -msgid "/Xtns/Visual Scriptor..." -msgstr "" - -msgid "NAME" -msgstr "" - -msgid "WARNING: $function returned something that is not an image: \"$img\"\n" -msgstr "" - -msgid "/Filters/Logulator/Frosty" -msgstr "" - -msgid "/Filters/Colors/Fire..." -msgstr "" - -msgid "/Filters/Logulator/Web title header" -msgstr "" - -msgid "FATAL: canonicalize_colour did not return a value!" -msgstr "" - -msgid "export failed" -msgstr "" - msgid "" " interface-arguments are\n" " -o | --output write image to disk, don't display\n" @@ -495,22 +34,139 @@ msgid "" " script-arguments are\n" msgstr "" -msgid "/Filters/Edge-Detect/2x2 Edge Detect" +msgid "/Xtns/Render/Font Table..." msgstr "" -msgid "/Layers/Center Layer" +msgid "being called as '%s', but '%s' not registered in the pdb" msgstr "" -msgid "closing connection %d (%d requests in %g seconds)" +msgid "argument type %s expected (not %s)" +msgstr "" + +msgid "Browse" msgstr "" msgid "Reset all values to their default" msgstr "" -msgid "/Filters/Logulator/Basic II" +msgid "WARNING: client tried to unlock without holding a lock" msgstr "" -msgid "/Filters/Misc/Border Average..." +msgid "$_: illegal switch, try $0 --help\n" +msgstr "" + +msgid "required callback 'run' not found\n" +msgstr "" + +msgid "/Xtns/Render/Logos/Glowing Steel" +msgstr "" + +msgid "Brush Selection Dialog" +msgstr "" + +msgid "gimp procedure '%s' not found" +msgstr "" + +msgid "Pattern Selection Dialog" +msgstr "" + +msgid "/Filters/Web/Perl-o-tine..." +msgstr "" + +msgid "function '$exe' not found in this script (must be one of " +msgstr "" + +msgid "pixel size mismatch, pdl has %d channel pixels but %d channels are required" +msgstr "" + +msgid "Load" +msgstr "" + +msgid "/Xtns/Render" +msgstr "" + +msgid "/Xtns/Perl/Control Center..." +msgstr "" + +msgid "illegal parasite specification, reference expected" +msgstr "" + +msgid "Date/Version" +msgstr "" + +msgid "Status" +msgstr "" + +msgid "/Layers/Center Layer" +msgstr "" + +msgid "wrong authorization, aborting connection" +msgstr "" + +msgid "BG" +msgstr "" + +msgid "/Xtns/Render/Bricks..." +msgstr "" + +msgid "/Xtns/Animation/Seth Spin..." +msgstr "" + +msgid "illegal type for colour specification" +msgstr "" + +msgid "xlfd_unpack: unmatched XLFD '$fontname'\n" +msgstr "xlfd_unpack: ei mДtsДД XLFD '$fontname'\n" + +msgid "/Xtns/Render/Povray/Preferences..." +msgstr "" + +msgid "/Filters/Render/Random Blends..." +msgstr "" + +msgid "Plug-In Path" +msgstr "LiitДnnДisen polku" + +msgid "You can't run this script with an INDEXED image!!" +msgstr "" + +msgid "/Filters/Render/Terral Text..." +msgstr "" + +msgid "/Guides/Guide Grid..." +msgstr "" + +msgid "accepted unix connection" +msgstr "" + +msgid "server going down..." +msgstr "" + +msgid "trying to start gimp with options \"$opt\"\n" +msgstr "" + +msgid "pdl height != region height" +msgstr "" + +msgid "expected perl-server at other end of socket, got @r\n" +msgstr "odotettu perl-serveri soketin toisella puolella sai @r\n" + +msgid "received QUIT request" +msgstr "" + +msgid "/Xtns/Gimp::Fu Example..." +msgstr "" + +msgid " = [argument error]\n" +msgstr "" + +msgid "%s arguments for function '%s'" +msgstr "" + +msgid " matching functions" +msgstr "" + +msgid "/Xtns/Render/Random Art #1..." msgstr "" msgid "" @@ -523,257 +179,58 @@ msgid "" " (for more info, see Gimp::Net(3))\n" msgstr "" -msgid "too many arguments" +msgid "" +"An even number of frames is needed for spin back.\n" +"Adjusted frames up to $frames" msgstr "" -msgid "dimension mismatch, pdl has dimension %d but at most %d dimensions allowed" +msgid "/Image/Alpha/Alpha2Color..." msgstr "" -msgid "Load" +msgid "/Filters/Logulator/SOTA Chrome" msgstr "" -msgid "unable to grok colour specification" +msgid "%s: procedural database execution failed" msgstr "" -msgid "no additional information available, use --help\n" +msgid "authorization required for tcp connections" msgstr "" -msgid "the gtk perl module is required to open a dialog\nwindow, running with default values" +msgid "/Xtns/Perl/Server" msgstr "" -msgid "Gradient Selection Dialog" -msgstr "" - -msgid " matching functions" +msgid "function name contains dashes instead of underscores" msgstr "" msgid "authorization ok, but: $r[1]\n" msgstr "" -msgid "Cannot call '$AUTOLOAD' at this time" +msgid "a color must have three components (array elements)" msgstr "" -msgid "function/macro \"$name\" not found in $class" +msgid "Spin Layer SRC (250ms)" msgstr "" -msgid "arguments to main not yet supported!" -msgstr "" - -msgid "accepting connections in $host" -msgstr "" - -msgid " (press Tab to complete)" -msgstr "" - -msgid "Save $name" -msgstr "" - -msgid "/Filters/Render/TeX String..." -msgstr "" - -msgid "/Filters/Enhance/Warp Sharp..." -msgstr "" - -msgid "/Filters/Web/Prepare for GIF..." -msgstr "" - -msgid "illegal type for colour specification" -msgstr "" - -msgid " plug-in called without both image and drawable arguments!\n" -msgstr "" - -msgid "Seth Spin..." -msgstr "" - -msgid "get current background colour from the gimp" -msgstr "" - -msgid "No horizontal or vertical guides found. Aborted." -msgstr "" - -msgid "/Filters/Logulator/Glowing Hot" -msgstr "" - -msgid "accepting connections on port $Gimp::Net::default_tcp_port" -msgstr "" - -msgid "Menu Path" +msgid "$_: unknown/illegal file-save option" msgstr "" msgid "TYPE" msgstr "" -msgid "/Xtns/Render/Povray/Texture..." -msgstr "" - -msgid "You need at least 2 layers to perform prep4gif" -msgstr "" - -msgid "/Filters/Blur/2x2 Blur" -msgstr "" - -msgid "conversion to type $pf_type2string{$type} is not yet implemented\n" -msgstr "" - -msgid "interface '$interface_type' unsupported." -msgstr "" - -msgid "/Filters/Logulator/Neon" -msgstr "" - -msgid "/Filters/Enhance/2x2 Contrast Enhance" -msgstr "" - -msgid " plug-in called without the 3 standard arguments!\n" -msgstr "" - -msgid "Unable to grok '%s' as colour specifier" -msgstr "" - -msgid "gimp-perl-pixel functions require the PDL::Core module" -msgstr "" - -msgid "a color must have three components (array elements)" -msgstr "" - -msgid "Defaults" -msgstr "" - -msgid "Copyright" -msgstr "" - -msgid "/Select/Triangle..." -msgstr "" - -msgid "/Filters/Render/Burst..." -msgstr "" - -msgid "WARNING: client disconnected while holding an active lock\n" -msgstr "" - -msgid "/Xtns/Gimp::Fu Example..." -msgstr "" - -msgid "/Xtns/Render/Logos" -msgstr "" - -msgid "server version $Gimp::VERSION started" -msgstr "" - -msgid "argument is not of type %s" -msgstr "" - -msgid "Background" -msgstr "" - -msgid "%s arguments for function '%s'" -msgstr "" - -msgid "/Xtns/Render/Logos/Glowing Steel" -msgstr "" - -msgid "only blessed scalars accepted here" -msgstr "" - -msgid "expected protocol version $Gimp::_PROT_VERSION, but server uses $r[0]\n" -msgstr "" - -msgid "illegal parasite specification, arrayref expected" -msgstr "" - -msgid "Save" -msgstr "" - -msgid "dimension mismatch, pdl has dimension %d but at least %d dimensions required" -msgstr "" - -msgid "/Filters/Logulator/Carved" -msgstr "" - -msgid "/Filters/Logulator/Textured" +msgid "Gradient Selection Dialog" msgstr "" msgid "Function Info" msgstr "" -msgid "no font specified, using default" +msgid "unable to open $rgb_db_path" msgstr "" -msgid "the gtk perl module is required to run\nthis plug-in in interactive mode\n" +msgid "/Filters/Logulator/Imigre-26" msgstr "" -msgid "authorization failed: $r[1]\n" -msgstr "" - -msgid "Previous" -msgstr "" - -msgid "/Filters/Logulator/Glossy" -msgstr "" - -msgid "Command" -msgstr "" - -msgid "/Filters/Logulator/Chalk" -msgstr "" - -msgid "$function: calling $AUTOLOAD without specifying the :auto import tag is deprecated!\n" -msgstr "" - -msgid "/Xtns/Render/Bricks..." -msgstr "" - -msgid "DESCRIPTION" -msgstr "" - -msgid "Accelerator" -msgstr "" - -msgid "Cancel" -msgstr "" - -msgid "/Filters/Map/Xach Shadows..." -msgstr "" - -msgid "BG" -msgstr "" - -msgid "argument type %s expected (not %s)" -msgstr "" - -msgid "pixel size mismatch, pdl has %d channel pixels but %d channels are required" -msgstr "" - -msgid "/Filters/Render/Highlight Edges..." -msgstr "" - -msgid "This module was built without support for PDL." -msgstr "" - -msgid "[unfinished]\n" -msgstr "" - -msgid "Spin Layer DEST (250ms)" -msgstr "" - -msgid "/Xtns/Homepage-Logo" -msgstr "" - -msgid "Bumpmap" -msgstr "" - -msgid "Date/Version" -msgstr "" - -msgid "$function: argument/return value '$p->[1]' has illegal type '$p->[0]'" -msgstr "" - -msgid "required callback 'net' not found\n" -msgstr "" - -msgid "function '$exe' not found in this script (must be one of " -msgstr "" +msgid "Text" +msgstr "Teksti" msgid "/Filters/Colors/Colour To Alpha..." msgstr "" @@ -781,140 +238,654 @@ msgstr "" msgid "/Xtns/Perl" msgstr "" -msgid "/Xtns/Render/Random Art #1..." +msgid "no additional information available, use --help\n" +msgstr "" + +msgid "/Xtns/Parasite Editor..." +msgstr "" + +msgid "gimp_tile_set_data is not yet implemented\n" +msgstr "" + +msgid "Visual Scriptor" +msgstr "" + +msgid "No horizontal or vertical guides found. Aborted." +msgstr "" + +msgid "/Filters/Map/Image Tile..." +msgstr "" + +msgid "/Guides/To Selection..." +msgstr "" + +msgid "/Guides/Remove Guides" +msgstr "" + +msgid "get current background colour from the gimp" +msgstr "" + +msgid "/Xtns/PDB Explorer..." +msgstr "" + +msgid "WARNING: shared locking requested but not implemented" +msgstr "" + +msgid "parameter '$entry->[1]' is not optional\n" +msgstr "parametri '$entry->[1]' ei ole optionaalinen\n" + +msgid "$s: not an integer\n" +msgstr "$s: ei ole kokonaisluku\n" + +msgid "unable to read '$fn': $!" +msgstr "mahdoton lukea '$fn': $!" + +msgid "[undefined]" +msgstr "" + +msgid "function/macro \"$name\" not found in $class" msgstr "" msgid "accepted tcp connection from " msgstr "" -msgid "Status" +msgid "/Xtns/Render/Pixelgenerator..." msgstr "" -msgid "Load $name" +msgid "illegal parasite specification, expected three array members" +msgstr "vДДrД parasiitti operaatio, odotettiin kolmea taulukon kohtaa" + +msgid "unable to read temporary file $tmp: $!" msgstr "" -msgid " plug-in called without the 5 standard arguments!\n" -msgstr "" - -msgid "unable to accept unix connection: $!\n" -msgstr "" - -msgid "/Xtns/Perl Example Plug-in" -msgstr "" - -msgid "/Xtns/Render/Povray/Preferences..." -msgstr "" - -msgid "unable to accept tcp connection: $!\n" -msgstr "" - -msgid "(UNINITIALIZED)" -msgstr "" - -msgid "/Filters/Render/Brushed Metal..." -msgstr "" - -msgid "perl-arrayref required as datatype for a gimp-array" -msgstr "" - -msgid "/Filters/Web/Webify..." -msgstr "" - -msgid "/Filters/Logulator/Comic Book" -msgstr "" - -msgid "Unable to open '$filename' for writing: $!\n" -msgstr "" - -msgid "Unsupported argumenttype $type" -msgstr "" - -msgid "/Filters/Logulator/Gradient Bevel" -msgstr "" - -msgid "/Filters/Logulator/Chrome" -msgstr "" - -msgid "/Xtns/Render/Povray" -msgstr "" - -msgid "Color" -msgstr "" - -msgid "authorization unnecessary" -msgstr "" - -msgid "illegal parasite specification, reference expected" -msgstr "" - -msgid "/Xtns/Render/Font Table..." -msgstr "" - -msgid "Edit" -msgstr "" - -msgid "/Filters/Logulator/Blended II..." -msgstr "" - -msgid "Saving '$filename' as DATAURL..." -msgstr "" - -msgid "text string is empty" -msgstr "" - -msgid "/Filters/Distorts/Scratches..." -msgstr "" - -msgid "$_: unknown/illegal file-save option" -msgstr "" - -msgid "/Xtns/Render" -msgstr "" - -msgid " = [argument error]\n" -msgstr "" - -msgid "/Select/Round..." -msgstr "" - -msgid "plug-in returned %d more values than expected" -msgstr "" - -msgid "$_ is not a valid import tag for package $pkg" -msgstr "" - -msgid "url size is too large ($max > 1024)\n" -msgstr "" - -msgid "illegal command received, aborting connection" -msgstr "" - -msgid "/Filters/Noise/Ditherize..." -msgstr "" - -msgid "/Xtns/Animation/Seth Spin..." -msgstr "" - -msgid "get current foreground colour from the gimp" -msgstr "" - -msgid "Pattern Selection Dialog" -msgstr "" - -msgid "/Filters/Render/Add Dust..." -msgstr "" - -msgid "not enough" +msgid "/Xtns/Render/Yin-Yang..." msgstr "" msgid "PDB Explorer - the olof edition (yet still an alpha version)" msgstr "" -msgid "/Filters/Web/Perl-o-tine..." +msgid "Illegal default font description for $function: $val\n" +msgstr "Laiton perus fonttin kuvaus $function: $val\n" + +msgid "unable to convert Gimp::Drawable into Gimp::GDrawable (id %d)" +msgstr "" + +msgid "/Select/Round Rectangular Selection..." +msgstr "" + +msgid "" +"BLURB:\n" +"\n" +"$blurb\n" +"\n" +"HELP:\n" +"\n" +"$help" +msgstr "" + +msgid "Fileselector for $name" +msgstr "" + +msgid "accepting connections on port $port" +msgstr "" + +msgid "/Filters/Logulator/Blended II..." +msgstr "" + +msgid "" +"$function: function name contains unusual characters, good style is to use only " +"0-9, a-z and _" +msgstr "" + +msgid "menupath _must_ start with , , , or !" +msgstr "" + +msgid "/Filters/Render/Highlight Edges..." +msgstr "" + +msgid "Spin Layer DEST (250ms)" +msgstr "" + +msgid "register called with too many or wrong arguments\n" +msgstr "" + +msgid "$_ is not a valid import tag for package $pkg" +msgstr "" + +msgid "params and return_vals must be array refs (even if empty)!" +msgstr "" + +msgid "/Filters/Colors/Map To Gradient..." +msgstr "" + +msgid "/Xtns/Render/Logos/Firetext..." +msgstr "" + +msgid "unable to accept unix connection: $!\n" +msgstr "" + +msgid "Save" +msgstr "" + +msgid "" +"\n" +"\n" +"EMBEDDED POD DOCUMENTATION:\n" +"\n" +msgstr "" + +msgid "/Filters/Logulator" +msgstr "" + +msgid "" +"the gtk perl module is required to run\n" +"this plug-in in interactive mode\n" +msgstr "" + +msgid "interface '$interface_type' unsupported." +msgstr "" + +msgid "unable to accept tcp connection: $!\n" +msgstr "" + +msgid "/Image/Alpha/Clear Alpha..." +msgstr "" + +msgid "" +"dimension mismatch, pdl has dimension %d but at least %d dimensions required" +msgstr "" + +msgid "[unfinished]\n" +msgstr "" + +msgid "could not connect to the gimp server (make sure Perl-Server is running)" +msgstr "" +"ei voi luoda yhteytty gimp serveriin (pidД huolta, ettД Perl-Server on kДynnissД" + +msgid "/Filters/Logulator/Crystal" +msgstr "" + +msgid "Cannot call '$AUTOLOAD' at this time" +msgstr "" + +msgid "/Xtns/Render/Povray/Texture..." +msgstr "" + +msgid "unauthorized command received, aborting connection" +msgstr "" + +msgid "/Xtns/Animation/Billboard..." +msgstr "" + +msgid "Defaults" +msgstr "" + +msgid "/Filters/Render/Add Dust..." +msgstr "" + +msgid "text string is empty" +msgstr "" + +msgid "server requests authorization, but no authorization available\n" +msgstr "" + +msgid "/Xtns/Visual Scriptor..." +msgstr "" + +msgid "/Xtns/Render/Logos" +msgstr "" + +msgid "Image Types" +msgstr "Kuva tyypit" + +msgid "Menu Path" +msgstr "" + +msgid "9x15bold" +msgstr "" + +msgid "Unable to grok '%s' as colour specifier" +msgstr "" + +msgid "Accelerator" +msgstr "" + +msgid "gimp-perl-pixel functions require the PDL::Core module" +msgstr "" + +msgid "dunno how to return param type %d" +msgstr "ei voi palauttaa parametriД tyyppiД %d" + +msgid "Cancel" +msgstr "" + +msgid "only blessed scalars accepted here" +msgstr "" + +msgid "dimension mismatch, pdl has dimension %d but at most %d dimensions allowed" +msgstr "" + +msgid "WARNING" +msgstr "" + +msgid "argument is not of type %s" +msgstr "" + +msgid "Description" +msgstr "" + +msgid "/Filters/Render/Fit Text..." +msgstr "" + +msgid "Unable to convert a reference to type '%s'" +msgstr "" + +msgid "argument incompatible with type IMAGE" +msgstr "" + +msgid "/Filters/Blur/2x2 Blur" +msgstr "" + +msgid "not enough" +msgstr "" + +msgid "/Filters/Render/Burst..." +msgstr "" + +msgid "-*-courier-medium-r-normal--*-120-*-*-*-*-*" +msgstr "-*-courier-medium-r-normal--*-120-*-*-*-*-*" + +msgid "Synopsis" +msgstr "Yhteenveto" + +msgid "/Filters/Map/Pixelmap..." +msgstr "" + +msgid "Color" +msgstr "" + +msgid "FATAL: canonicalize_colour did not return a value!" +msgstr "" + +msgid "/Filters/Apply Perl Expression..." +msgstr "" + +msgid "DESCRIPTION" +msgstr "" + +msgid "Unable to open '$filename' for writing: $!\n" +msgstr "" + +msgid "/Filters/Distorts/MirrorSplit..." +msgstr "" + +msgid "accepting connections in $host" +msgstr "" + +msgid " plug-in called without the 5 standard arguments!\n" +msgstr "" + +msgid "unable to create socketpair for gimp communications: $!" +msgstr "" + +msgid "unable to create '$fn': $!" +msgstr "" + +msgid "Previous" +msgstr "" + +msgid "WARNING: $function returned something that is not an image: \"$img\"\n" +msgstr "" + +msgid "Command" +msgstr "" + +msgid "accepting connections on port $Gimp::Net::default_tcp_port" +msgstr "" + +msgid "perl-arrayref required as datatype for a gimp-array" +msgstr "" + +msgid "required callback 'query' not found\n" +msgstr "" + +msgid "/Xtns/Create_Images" +msgstr "" + +msgid "Save $name" +msgstr "" + +msgid "run_mode must be INTERACTIVE, NONINTERACTIVE or RUN_WITH_LAST_VALS\n" +msgstr "run_mode tДytyy olla INTERACTIVE, NONINTERACTIVE tai RUN_WITH_LAST_VALS\n" + +msgid "/Video/VCR Console..." +msgstr "" + +msgid "/Filters/Edge-Detect/2x2 Edge Detect" +msgstr "" + +msgid "Copyright" +msgstr "" + +msgid "interface=... tag is no longer supported\n" +msgstr "" + +msgid "" +"Expected an INT32 but got '%s'. Maybe you meant '%s' instead and forgot to 'use " +"strict'" +msgstr "" + +msgid "/Filters/Logulator/Transparent Logo..." +msgstr "" + +msgid "" +"malformed paramdef, expected [PARAM_TYPE,\"NAME\",\"DESCRIPTION\"] or PARAM_TYPE" +msgstr "" + +msgid "Background" +msgstr "" + +msgid "last argument to gimp_pattern_select_widget must be scalar ref" +msgstr "" + +msgid "/Xtns/Render/Stamps..." +msgstr "" + +msgid "accepting connections on $unix_path" +msgstr "" + +msgid "Load $name" +msgstr "" + +msgid "/Filters/Noise/Ditherize..." +msgstr "" + +msgid "Saving '$filename' as DATAURL..." +msgstr "" + +msgid ", %d bytes data]" +msgstr "" + +msgid "unable to create listening tcp socket: $!\n" +msgstr "" + +msgid "" +"gimp_pixel_rgns_register supports only 1, 2 or 3 arguments, upgrade to gimp-1.1 " +"and report this error" +msgstr "" + +msgid "/Filters/Render/Brushed Metal..." +msgstr "" + +msgid "Bumpmap" +msgstr "" + +msgid "Saving '$filename' as COLORHTML..." +msgstr "" + +msgid "required callback 'net' not found\n" +msgstr "" + +msgid "too many" +msgstr "liian monta" + +msgid "/Filters/Render/Add Glow" +msgstr "" + +msgid "Author" +msgstr "" + +msgid "More..." +msgstr "LisДД..." + +msgid "arguments to main not yet supported!" +msgstr "" + +msgid "Seth Spin..." +msgstr "" + +msgid "/Filters/Logulator/Newsprint text" +msgstr "" + +msgid "/Filters/Noise/Xach Vision..." +msgstr "" + +msgid "WARNING: client disconnected while holding an active lock\n" +msgstr "" + +msgid "NAME" +msgstr "" + +msgid "Help" +msgstr "Apua" + +msgid "/Filters/Logulator/Carved" +msgstr "" + +msgid "no font specified, using default" +msgstr "" + +msgid "conversion to type $pf_type2string{$type} is not yet implemented\n" +msgstr "" + +msgid "gimp_tile_get_data is not yet implemented\n" +msgstr "" + +msgid "/Filters/Map/Xach Shadows..." +msgstr "" + +msgid "/Filters/Map/Xach Blocks..." +msgstr "" + +msgid "/Filters/Logulator/Speed text" +msgstr "" + +msgid "unable to grok colour specification" +msgstr "" + +msgid "/Edit/Repeat & Duplicate..." +msgstr "" + +msgid "You need at least 2 layers to perform prep4gif" +msgstr "" + +msgid "too many arguments" +msgstr "" + +msgid "-*-helvetica-medium-r-normal-*-34-*-*-*-p-*-iso8859-1" +msgstr "" + +msgid "expected protocol version $Gimp::_PROT_VERSION, but server uses $r[0]\n" +msgstr "" + +msgid "Restore values to the previous ones" +msgstr "Palauta arvot edellisistД" + +msgid " plug-in called without both image and drawable arguments!\n" +msgstr "" + +msgid ", authorization required" +msgstr "" + +msgid "/Filters/Noise/Feedback..." +msgstr "" + +msgid "unable to create listening unix socket: $!\n" +msgstr "" + +msgid "invalid GIMP_HOST: 'spawn' is not a valid connection method for the server" +msgstr "" + +msgid "Last Modified" +msgstr "Viimeksi muutettu" + +msgid "/View/3D Surface..." +msgstr "" + +msgid "Shortcuts" +msgstr "" + +msgid "" +"the gtk perl module is required to open a dialog\n" +"window, running with default values" +msgstr "" + +msgid "/Filters/Logulator/Web title header" +msgstr "" + +msgid "/Filters/Web/Webify..." +msgstr "" + +msgid " plug-in called without the 3 standard arguments!\n" +msgstr "" + +msgid "Font Selection Dialog ($desc)" +msgstr "Fontin valinta dialogi ($desc)" + +msgid "%s: procedural database execution failed on invalid input arguments" +msgstr "" + +msgid "(UNINITIALIZED)" +msgstr "" + +msgid "closing connection %d (%d requests in %g seconds)" +msgstr "" + +msgid "/Xtns/Render/Golden Mean..." +msgstr "" + +msgid "authorization failed: $r[1]\n" +msgstr "" + +msgid "/Guides/Center Guide..." +msgstr "" + +msgid "server version $Gimp::VERSION started" +msgstr "" + +msgid "" +"$function: calling $AUTOLOAD without specifying the :auto import tag is " +"deprecated!\n" +msgstr "" + +msgid "authorization unnecessary" +msgstr "" + +msgid "/Filters/Enhance/Warp Sharp..." +msgstr "" + +msgid "unable to open Gimp::Net communications socket: $!\n" +msgstr "" + +msgid "/Xtns/Render/Logos/Inner Bevel..." +msgstr "" + +msgid "/Filters/Distorts/Scratches..." +msgstr "" + +msgid "Close" +msgstr "" + +msgid "illegal parasite specification, arrayref expected" +msgstr "" + +msgid "/Filters/Misc/Border Average..." +msgstr "" + +msgid "unable to fork: $!" +msgstr "ei voi forkata: $!" + +msgid "Unsupported argumenttype $type" +msgstr "" + +msgid "get current foreground colour from the gimp" +msgstr "" + +msgid "/Xtns/Perl Example Plug-in" +msgstr "" + +msgid "You can't run this script without an ALPHA CHANNEL!!" +msgstr "" + +msgid "/Filters/Misc/Magick..." +msgstr "" + +msgid "/Filters/Render/Stampify..." +msgstr "" + +msgid "/Select/Round..." +msgstr "" + +msgid "Unable to read temporary image tile $tmp: $!" +msgstr "Mahdoton lukea vДliaikasi kuva tiedoston laattaa $tmp: $!" + +msgid "Help for " +msgstr "Apua " + +msgid "export failed" +msgstr "" + +msgid "dunno how to pass arg type %d" +msgstr "" + +msgid "/Xtns/Render/Povray" +msgstr "" + +msgid "/Filters/Distorts/Windify..." +msgstr "" + +msgid " (press Tab to complete)" +msgstr "" + +msgid "This module was built without support for PDL." +msgstr "" + +msgid "plug-in returned %d more values than expected" +msgstr "" + +msgid "/Xtns/Homepage-Logo" +msgstr "" + +msgid "FG" +msgstr "FG" + +msgid "url size is too large ($max > 1024)\n" +msgstr "" + +msgid "$function: argument/return value '$p->[1]' has illegal type '$p->[0]'" +msgstr "" + +msgid "Edit" +msgstr "" + +msgid "/Select/Triangle..." +msgstr "" + +msgid "/Filters/Animation/BlowInOut..." +msgstr "" + +msgid "/Filters/Enhance/2x2 Contrast Enhance" msgstr "" msgid "/Layers/Stack/Reorder Layers..." msgstr "" -msgid "accepting connections on $unix_path" +msgid "" +"$function: argument name '$p->[1]' contains illegal characters, only 0-9, a-z " +"and _ allowed" +msgstr "" + +msgid "/Filters/Colors/Fire..." +msgstr "" + +msgid "/Filters/Render/TeX String..." +msgstr "" + +msgid "OK" +msgstr "" + +msgid "illegal command received, aborting connection" +msgstr "" + +msgid "(none)" msgstr "" diff --git a/plug-ins/perl/po/fr.po b/plug-ins/perl/po/fr.po index f702aca7e1..c973fe12f0 100644 --- a/plug-ins/perl/po/fr.po +++ b/plug-ins/perl/po/fr.po @@ -13,15 +13,6 @@ msgstr "" "Content-Type: text/plain; charset=iso-8859-1\n" "Content-Transfer-Encoding: 8bit\n" -msgid "/Filters/Logulator/Bovination" -msgstr "/Filtres/Logomatic/Bovin" - -msgid "/Filters/Logulator/Blended" -msgstr "/Filtres/Logomatic/Fondu" - -msgid "/Filters/Logulator/Basic I" -msgstr "/Filtres/Logomatic/Basique I" - msgid "FATAL: unable to create $tmp: $!\n" msgstr "Erreur fatale : impossible de crИer $tmp : $!\n" @@ -35,10 +26,6 @@ msgstr "" msgid "/Filters/Web/Prepare for GIF..." msgstr "/Filtres/Web/PrИparer pour GIF" -#, fuzzy -msgid "/Filters/Logulator/3D Outline..." -msgstr "/Filtres/Logomatic/Fondu" - # Not too sure about this one. #, fuzzy msgid "/Filters/Animation/Animate Cells..." @@ -66,9 +53,6 @@ msgstr "appel msgid "argument type %s expected (not %s)" msgstr "le type d'argument attendu est %s, pas %s" -msgid "/Filters/Logulator/Glowing Hot" -msgstr "/Filtres/Logomatic/ChauffИ au rouge" - msgid "Browse" msgstr "Parcourir" @@ -105,9 +89,6 @@ msgstr "" msgid "pixel size mismatch, pdl has %d channel pixels but %d channels are required" msgstr "" -msgid "/Filters/Logulator/Basic II" -msgstr "/Filtres/Logomatic/Basique II" - msgid "Load" msgstr "Charger" @@ -227,10 +208,6 @@ msgstr "" msgid "/Image/Alpha/Alpha2Color..." msgstr "/Image/Couleurs/Alpha vers couleur" -# BOF -msgid "/Filters/Logulator/Starburst" -msgstr "/Filtres/Logomatic/Explosion laser" - msgid "/Filters/Logulator/SOTA Chrome" msgstr "/Filtres/Logomatic/Super Chrome" @@ -307,9 +284,6 @@ msgstr "/Filtres/Carte/Carreler" msgid "/Guides/To Selection..." msgstr "/Filtres/Bruit/Vision (Xach)..." -msgid "/Filters/Logulator/Comic Book" -msgstr "/Filtres/Logomatic/Bande dessinИe" - msgid "/Guides/Remove Guides" msgstr "/Guides/Supprimer les guides" @@ -361,9 +335,6 @@ msgstr "" msgid "Illegal default font description for $function: $val\n" msgstr "" -msgid "/Filters/Logulator/Chalk" -msgstr "/Filtres/Logomatic/Craie" - msgid "unable to convert Gimp::Drawable into Gimp::GDrawable (id %d)" msgstr "" @@ -532,9 +503,6 @@ msgstr "" msgid "dimension mismatch, pdl has dimension %d but at most %d dimensions allowed" msgstr "" -msgid "/Filters/Logulator/Glossy" -msgstr "" - msgid "WARNING" msgstr "" @@ -550,9 +518,6 @@ msgstr "" msgid "Unable to convert a reference to type '%s'" msgstr "" -msgid "/Filters/Logulator/Particle Trace" -msgstr "" - msgid "argument incompatible with type IMAGE" msgstr "" @@ -578,9 +543,6 @@ msgstr "/Filtres/Carte/Ombres (Xach)" msgid "Color" msgstr "" -msgid "/Filters/Logulator/Alien Glow" -msgstr "" - msgid "FATAL: canonicalize_colour did not return a value!" msgstr "" @@ -625,10 +587,10 @@ msgstr "" msgid "perl-arrayref required as datatype for a gimp-array" msgstr "" -msgid "/Xtns/Create_Images" +msgid "required callback 'query' not found\n" msgstr "" -msgid "required callback 'query' not found\n" +msgid "/Xtns/Create_Images" msgstr "" msgid "Save $name" @@ -742,15 +704,9 @@ msgstr "" msgid "Help" msgstr "" -msgid "/Filters/Logulator/Cool Metal" -msgstr "" - msgid "/Filters/Logulator/Carved" msgstr "" -msgid "/Filters/Logulator/Textured" -msgstr "" - msgid "no font specified, using default" msgstr "" @@ -774,17 +730,14 @@ msgstr "" msgid "unable to grok colour specification" msgstr "" -msgid "You need at least 2 layers to perform prep4gif" -msgstr "" - #, fuzzy msgid "/Edit/Repeat & Duplicate..." msgstr "/иdition/RИpИter & dupliquer" -msgid "too many arguments" +msgid "You need at least 2 layers to perform prep4gif" msgstr "" -msgid "/Filters/Logulator/Gradient Bevel" +msgid "too many arguments" msgstr "" msgid "-*-helvetica-medium-r-normal-*-34-*-*-*-p-*-iso8859-1" @@ -849,9 +802,6 @@ msgstr "" msgid "closing connection %d (%d requests in %g seconds)" msgstr "" -msgid "/Filters/Logulator/Frosty" -msgstr "" - #, fuzzy msgid "/Xtns/Render/Golden Mean..." msgstr "/Extensions/SynthХse/Yin-Yang" @@ -866,14 +816,14 @@ msgstr "/Guides/Centrer le guide" msgid "server version $Gimp::VERSION started" msgstr "" -msgid "authorization unnecessary" -msgstr "" - msgid "" "$function: calling $AUTOLOAD without specifying the :auto import tag is " "deprecated!\n" msgstr "" +msgid "authorization unnecessary" +msgstr "" + #, fuzzy msgid "/Filters/Enhance/Warp Sharp..." msgstr "/Filtres/Carte/Ombres (Xach)" @@ -915,12 +865,6 @@ msgstr "" msgid "You can't run this script without an ALPHA CHANNEL!!" msgstr "" -msgid "/Filters/Logulator/Neon" -msgstr "" - -msgid "/Filters/Logulator/Chrome" -msgstr "" - #, fuzzy msgid "/Filters/Misc/Magick..." msgstr "/Filtres/Divers/Magique" @@ -935,13 +879,10 @@ msgstr "" msgid "Unable to read temporary image tile $tmp: $!" msgstr "" -msgid "export failed" -msgstr "" - msgid "Help for " msgstr "" -msgid "/Filters/Logulator/Chip Away" +msgid "export failed" msgstr "" msgid "dunno how to pass arg type %d" @@ -989,9 +930,6 @@ msgstr "/Filtres/Web/Perl-o-tine..." msgid "/Filters/Animation/BlowInOut..." msgstr "/Filtres/Animation/Animer (superposition)" -msgid "/Filters/Logulator/Starscape" -msgstr "" - msgid "/Filters/Enhance/2x2 Contrast Enhance" msgstr "" @@ -1021,5 +959,34 @@ msgstr "" msgid "(none)" msgstr "" +#~ msgid "/Filters/Logulator/Bovination" +#~ msgstr "/Filtres/Logomatic/Bovin" + +#~ msgid "/Filters/Logulator/Blended" +#~ msgstr "/Filtres/Logomatic/Fondu" + +#~ msgid "/Filters/Logulator/Basic I" +#~ msgstr "/Filtres/Logomatic/Basique I" + +#, fuzzy +#~ msgid "/Filters/Logulator/3D Outline..." +#~ msgstr "/Filtres/Logomatic/Fondu" + +#~ msgid "/Filters/Logulator/Glowing Hot" +#~ msgstr "/Filtres/Logomatic/ChauffИ au rouge" + +#~ msgid "/Filters/Logulator/Basic II" +#~ msgstr "/Filtres/Logomatic/Basique II" + +# BOF +#~ msgid "/Filters/Logulator/Starburst" +#~ msgstr "/Filtres/Logomatic/Explosion laser" + +#~ msgid "/Filters/Logulator/Comic Book" +#~ msgstr "/Filtres/Logomatic/Bande dessinИe" + +#~ msgid "/Filters/Logulator/Chalk" +#~ msgstr "/Filtres/Logomatic/Craie" + #~ msgid "/Filters/" #~ msgstr "/Filtres" diff --git a/plug-ins/perl/po/it.po b/plug-ins/perl/po/it.po index f83a943dcc..90f6de2723 100644 --- a/plug-ins/perl/po/it.po +++ b/plug-ins/perl/po/it.po @@ -11,15 +11,6 @@ msgstr "" "Date: mer set 8 02:12:22 CEST 1999\n" "From: Marco Munari \n" -msgid "/Filters/Logulator/Bovination" -msgstr "/Filtri/Logulator/Bovination" - -msgid "/Filters/Logulator/Blended" -msgstr "/Filtri/Logulator/Blended" - -msgid "/Filters/Logulator/Basic I" -msgstr "/Filtri/Logulator/Basic I" - msgid "FATAL: unable to create $tmp: $!\n" msgstr "FATALITA`: incapace di creare $tmp: $!\n" @@ -32,9 +23,6 @@ msgstr "" msgid "/Filters/Web/Prepare for GIF..." msgstr "/Filtri/Web/Prepara per GIF" -msgid "/Filters/Logulator/3D Outline..." -msgstr "/Filtri/Logulator/3D Outline..." - msgid "/Filters/Animation/Animate Cells..." msgstr "/Filtri/Animazione/Animazione Celle..." @@ -59,9 +47,6 @@ msgstr "being called as '%s', but '%s' not registered in the pdb" msgid "argument type %s expected (not %s)" msgstr "atteso argomento di tipo %s (non %s)" -msgid "/Filters/Logulator/Glowing Hot" -msgstr "/Filtri/Logulator/Glowing Hot" - msgid "Browse" msgstr "Esplora" @@ -102,9 +87,6 @@ msgstr "" "grandezza dei pixel non prevista, pdl ha %d pixel di canali ma sono richiesti %d " "canali" -msgid "/Filters/Logulator/Basic II" -msgstr "/Filtri/Logulator/Basic II" - msgid "Load" msgstr "Carico" @@ -195,7 +177,6 @@ msgstr " abbinando funzioni" # msgid "Internal error: unable to convert reference in sv2net, please report!" # msgstr "Errore interno: impossibile convertire referenze in sv2net!" - msgid "/Xtns/Render/Random Art #1..." msgstr "/Xtns/Render/Arte Casuale #1..." @@ -228,9 +209,6 @@ msgstr "" msgid "/Image/Alpha/Alpha2Color..." msgstr "/Immagine/Alpha/Alfa a colore" -msgid "/Filters/Logulator/Starburst" -msgstr "/Filtri/Logulator/Starburst" - msgid "/Filters/Logulator/SOTA Chrome" msgstr "/Filtri/Logulator/SOTA Chrome" @@ -304,9 +282,6 @@ msgstr "/Filtri/Map/Tile Immagine..." msgid "/Guides/To Selection..." msgstr "/Guide/A selezione..." -msgid "/Filters/Logulator/Comic Book" -msgstr "/Filtri/Logulator/Comic Book" - # msgid "Internal error: stashname too long, please report!" # msgstr "Errore interno: stashname troppo lungo, please report!" msgid "/Guides/Remove Guides" @@ -357,9 +332,6 @@ msgstr "PDB Explorer - edizione olof (versione alpha)" msgid "Illegal default font description for $function: $val\n" msgstr "Font descriprion di default illegale per $function: $val\n" -msgid "/Filters/Logulator/Chalk" -msgstr "/Filtri/Logulator/Chalk" - msgid "unable to convert Gimp::Drawable into Gimp::GDrawable (id %d)" msgstr "non riesco a convertire Gimp::Drawable in Gimp::GDrawable (id %d)" @@ -546,9 +518,6 @@ msgstr "" "dimensione non prevista, pdl ha dimensione %d ma al piu` sono permesse %d " "dimensioni" -msgid "/Filters/Logulator/Glossy" -msgstr "/Filtri/Logulator/Glossy" - msgid "WARNING" msgstr "ATTENZIONE" @@ -564,9 +533,6 @@ msgstr "/Filtri/Render/Riempi Testo..." msgid "Unable to convert a reference to type '%s'" msgstr "Incapace di convertire un riferimento a tipo '%s'" -msgid "/Filters/Logulator/Particle Trace" -msgstr "/Filtri/Logulator/Particle Trace" - msgid "argument incompatible with type IMAGE" msgstr "argomento incompatibile con tipo IMAGE" @@ -591,9 +557,6 @@ msgstr "/Filtri/Map/Pixelmap..." msgid "Color" msgstr "Colore" -msgid "/Filters/Logulator/Alien Glow" -msgstr "/Filtri/Logulator/Alien Glow" - msgid "FATAL: canonicalize_colour did not return a value!" msgstr "Avviso: canonicalize_colour non ha ricevuto nessun valore!" @@ -639,12 +602,12 @@ msgstr "ora accetto connessioni alla porta $Gimp::Net::default_tcp_port" msgid "perl-arrayref required as datatype for a gimp-array" msgstr "perl-arrayref richiesto come tipo di dati per gimp-array" -msgid "/Xtns/Create_Images" -msgstr "/Xtns/Crea_Immagine" - msgid "required callback 'query' not found\n" msgstr "callback 'query' richiesto e non trovato\n" +msgid "/Xtns/Create_Images" +msgstr "/Xtns/Crea_Immagine" + msgid "Save $name" msgstr "Salva $name" @@ -761,15 +724,9 @@ msgstr "NOME" msgid "Help" msgstr "Aiuto" -msgid "/Filters/Logulator/Cool Metal" -msgstr "/Filtri/Logulator/Cool Metal" - msgid "/Filters/Logulator/Carved" msgstr "/Filtri/Logulator/Carved" -msgid "/Filters/Logulator/Textured" -msgstr "/Filtri/Logulator/Textured" - msgid "no font specified, using default" msgstr "nessun font specificato, utilizzo valore preimpostato" @@ -791,18 +748,15 @@ msgstr "/Filtri/Logulator/Speed text" msgid "unable to grok colour specification" msgstr "impossibile accettare specificazione di colore" -msgid "You need at least 2 layers to perform prep4gif" -msgstr "E' necessario avere almeno 2 livelli per utilizzare prep4gif" - msgid "/Edit/Repeat & Duplicate..." msgstr "/Modifica/Ripeti e duplica..." +msgid "You need at least 2 layers to perform prep4gif" +msgstr "E' necessario avere almeno 2 livelli per utilizzare prep4gif" + msgid "too many arguments" msgstr "troppi argomenti" -msgid "/Filters/Logulator/Gradient Bevel" -msgstr "/Filtri/Logulator/Gradient Bevel" - msgid "-*-helvetica-medium-r-normal-*-34-*-*-*-p-*-iso8859-1" msgstr "-*-helvetica-medium-r-normal-*-34-*-*-*-p-*-iso8859-1" @@ -870,9 +824,6 @@ msgstr "(NON INIZIALIZZATO)" msgid "closing connection %d (%d requests in %g seconds)" msgstr "ora chiudo connessione %d (%d richiesto in %g secondi)" -msgid "/Filters/Logulator/Frosty" -msgstr "/Filtri/Logulator/Frosty" - msgid "/Xtns/Render/Golden Mean..." msgstr "/Xtns/Render/Effetto oro..." @@ -885,9 +836,6 @@ msgstr "/Guide/Centra guide..." msgid "server version $Gimp::VERSION started" msgstr "versione del server $Gimp::VERSION avviata" -msgid "authorization unnecessary" -msgstr "autorizzazione non necessaria" - msgid "" "$function: calling $AUTOLOAD without specifying the :auto import tag is " "deprecated!\n" @@ -895,6 +843,9 @@ msgstr "" "$function: il richiamo a $AUTOLOAD senza specificare il tag di importazione " ":auto viene deprecato!\n" +msgid "authorization unnecessary" +msgstr "autorizzazione non necessaria" + msgid "/Filters/Enhance/Warp Sharp..." msgstr "/Filtri/Avanzati/Warp Sharp..." @@ -931,12 +882,6 @@ msgstr "/Xtns/Plug-in Perl di Esempio" msgid "You can't run this script without an ALPHA CHANNEL!!" msgstr "Non Х possibile eseguire lo script senza un CANALE ALPHA!!" -msgid "/Filters/Logulator/Neon" -msgstr "/Filtri/Logulator/Neon" - -msgid "/Filters/Logulator/Chrome" -msgstr "/Filtri/Logulator/Chrome" - msgid "/Filters/Misc/Magick..." msgstr "/Filtri/Misc/Magick..." @@ -949,14 +894,11 @@ msgstr "/Selezione/Arrotondata..." msgid "Unable to read temporary image tile $tmp: $!" msgstr "Impossibile leggere il file temporaneo $tmp: $!" -msgid "export failed" -msgstr "esportazione fallita" - msgid "Help for " msgstr "Aiuto per " -msgid "/Filters/Logulator/Chip Away" -msgstr "/Filtri/Logulator/Chip Away" +msgid "export failed" +msgstr "esportazione fallita" msgid "dunno how to pass arg type %d" msgstr "impossibile passare tipo di argomento %d" @@ -999,9 +941,6 @@ msgstr "/Selezione/Triangolo..." msgid "/Filters/Animation/BlowInOut..." msgstr "/Filtri/Animazione/BlowInOut..." -msgid "/Filters/Logulator/Starscape" -msgstr "/Filtri/Logulator/Starscape" - msgid "/Filters/Enhance/2x2 Contrast Enhance" msgstr "/Filtri/Enhance/2x2 Rafforza Contrasto" @@ -1033,6 +972,66 @@ msgstr "ricevuto comando illegale, chiudo connessione" msgid "(none)" msgstr "(niente)" +#~ msgid "/Filters/Logulator/Bovination" +#~ msgstr "/Filtri/Logulator/Bovination" + +#~ msgid "/Filters/Logulator/Blended" +#~ msgstr "/Filtri/Logulator/Blended" + +#~ msgid "/Filters/Logulator/Basic I" +#~ msgstr "/Filtri/Logulator/Basic I" + +#~ msgid "/Filters/Logulator/3D Outline..." +#~ msgstr "/Filtri/Logulator/3D Outline..." + +#~ msgid "/Filters/Logulator/Glowing Hot" +#~ msgstr "/Filtri/Logulator/Glowing Hot" + +#~ msgid "/Filters/Logulator/Basic II" +#~ msgstr "/Filtri/Logulator/Basic II" + +#~ msgid "/Filters/Logulator/Starburst" +#~ msgstr "/Filtri/Logulator/Starburst" + +#~ msgid "/Filters/Logulator/Comic Book" +#~ msgstr "/Filtri/Logulator/Comic Book" + +#~ msgid "/Filters/Logulator/Chalk" +#~ msgstr "/Filtri/Logulator/Chalk" + +#~ msgid "/Filters/Logulator/Glossy" +#~ msgstr "/Filtri/Logulator/Glossy" + +#~ msgid "/Filters/Logulator/Particle Trace" +#~ msgstr "/Filtri/Logulator/Particle Trace" + +#~ msgid "/Filters/Logulator/Alien Glow" +#~ msgstr "/Filtri/Logulator/Alien Glow" + +#~ msgid "/Filters/Logulator/Cool Metal" +#~ msgstr "/Filtri/Logulator/Cool Metal" + +#~ msgid "/Filters/Logulator/Textured" +#~ msgstr "/Filtri/Logulator/Textured" + +#~ msgid "/Filters/Logulator/Gradient Bevel" +#~ msgstr "/Filtri/Logulator/Gradient Bevel" + +#~ msgid "/Filters/Logulator/Frosty" +#~ msgstr "/Filtri/Logulator/Frosty" + +#~ msgid "/Filters/Logulator/Neon" +#~ msgstr "/Filtri/Logulator/Neon" + +#~ msgid "/Filters/Logulator/Chrome" +#~ msgstr "/Filtri/Logulator/Chrome" + +#~ msgid "/Filters/Logulator/Chip Away" +#~ msgstr "/Filtri/Logulator/Chip Away" + +#~ msgid "/Filters/Logulator/Starscape" +#~ msgstr "/Filtri/Logulator/Starscape" + #~ msgid "/Filters/" #~ msgstr "/Filtri/" diff --git a/plug-ins/perl/po/ja.po b/plug-ins/perl/po/ja.po index d90561a3a5..acb6938353 100644 --- a/plug-ins/perl/po/ja.po +++ b/plug-ins/perl/po/ja.po @@ -13,15 +13,6 @@ msgstr "" "Content-Type: text/plain; charset=EUC-JP\n" "Content-Transfer-Encoding: 8bit\n" -msgid "/Filters/Logulator/Bovination" -msgstr "" - -msgid "/Filters/Logulator/Blended" -msgstr "" - -msgid "/Filters/Logulator/Basic I" -msgstr "" - msgid "FATAL: unable to create $tmp: $!\n" msgstr "" @@ -32,10 +23,6 @@ msgstr "" msgid "/Filters/Web/Prepare for GIF..." msgstr "" -#, fuzzy -msgid "/Filters/Logulator/3D Outline..." -msgstr "/╔у╔ё╔К╔©/©╖/╡п" - #, fuzzy msgid "/Filters/Animation/Animate Cells..." msgstr "/╔у╔ё╔К╔©/ф╟╡Х/ф╟╡Х╔╩╔К" @@ -57,9 +44,6 @@ msgstr "" msgid "argument type %s expected (not %s)" msgstr "" -msgid "/Filters/Logulator/Glowing Hot" -msgstr "" - msgid "Browse" msgstr "" @@ -96,9 +80,6 @@ msgstr "" msgid "pixel size mismatch, pdl has %d channel pixels but %d channels are required" msgstr "" -msgid "/Filters/Logulator/Basic II" -msgstr "" - msgid "Load" msgstr "фи╓ъ╧Ч╓ъ" @@ -216,9 +197,6 @@ msgstr "" msgid "/Image/Alpha/Alpha2Color..." msgstr "" -msgid "/Filters/Logulator/Starburst" -msgstr "" - msgid "/Filters/Logulator/SOTA Chrome" msgstr "" @@ -295,9 +273,6 @@ msgstr "/ msgid "/Guides/To Selection..." msgstr "/╔╛╔╓╔и/а╙бРнн╟Х╓ь" -msgid "/Filters/Logulator/Comic Book" -msgstr "" - msgid "/Guides/Remove Guides" msgstr "" @@ -349,9 +324,6 @@ msgstr "" msgid "Illegal default font description for $function: $val\n" msgstr "" -msgid "/Filters/Logulator/Chalk" -msgstr "" - msgid "unable to convert Gimp::Drawable into Gimp::GDrawable (id %d)" msgstr "" @@ -518,9 +490,6 @@ msgstr "" msgid "dimension mismatch, pdl has dimension %d but at most %d dimensions allowed" msgstr "" -msgid "/Filters/Logulator/Glossy" -msgstr "" - msgid "WARNING" msgstr "" @@ -536,9 +505,6 @@ msgstr "/ msgid "Unable to convert a reference to type '%s'" msgstr "" -msgid "/Filters/Logulator/Particle Trace" -msgstr "" - msgid "argument incompatible with type IMAGE" msgstr "" @@ -564,9 +530,6 @@ msgstr "/ msgid "Color" msgstr "" -msgid "/Filters/Logulator/Alien Glow" -msgstr "" - msgid "FATAL: canonicalize_colour did not return a value!" msgstr "" @@ -610,12 +573,12 @@ msgstr "" msgid "perl-arrayref required as datatype for a gimp-array" msgstr "" -msgid "/Xtns/Create_Images" -msgstr "/Ёхд╔/╡ХаЭ╨Ню╝" - msgid "required callback 'query' not found\n" msgstr "" +msgid "/Xtns/Create_Images" +msgstr "/Ёхд╔/╡ХаЭ╨Ню╝" + msgid "Save $name" msgstr "" @@ -727,15 +690,9 @@ msgstr "" msgid "Help" msgstr "╔ь╔К╔в" -msgid "/Filters/Logulator/Cool Metal" -msgstr "" - msgid "/Filters/Logulator/Carved" msgstr "" -msgid "/Filters/Logulator/Textured" -msgstr "" - msgid "no font specified, using default" msgstr "" @@ -758,17 +715,14 @@ msgstr "" msgid "unable to grok colour specification" msgstr "" -msgid "You need at least 2 layers to perform prep4gif" -msgstr "" - #, fuzzy msgid "/Edit/Repeat & Duplicate..." msgstr "/╔у╔ё╔К╔©/╡╪еи╓Й/гкнЖ..." -msgid "too many arguments" +msgid "You need at least 2 layers to perform prep4gif" msgstr "" -msgid "/Filters/Logulator/Gradient Bevel" +msgid "too many arguments" msgstr "" msgid "-*-helvetica-medium-r-normal-*-34-*-*-*-p-*-iso8859-1" @@ -833,9 +787,6 @@ msgstr "" msgid "closing connection %d (%d requests in %g seconds)" msgstr "" -msgid "/Filters/Logulator/Frosty" -msgstr "" - #, fuzzy msgid "/Xtns/Render/Golden Mean..." msgstr "/Ёхд╔/╡╪еи╓Й/╓Л╓С╓╛" @@ -850,14 +801,14 @@ msgstr "/ msgid "server version $Gimp::VERSION started" msgstr "" -msgid "authorization unnecessary" -msgstr "" - msgid "" "$function: calling $AUTOLOAD without specifying the :auto import tag is " "deprecated!\n" msgstr "" +msgid "authorization unnecessary" +msgstr "" + #, fuzzy msgid "/Filters/Enhance/Warp Sharp..." msgstr "/╔у╔ё╔К╔©/╔ч╔ц╔в/Xach ╠ф╓д╓╠..." @@ -898,12 +849,6 @@ msgstr "/ msgid "You can't run this script without an ALPHA CHANNEL!!" msgstr "" -msgid "/Filters/Logulator/Neon" -msgstr "" - -msgid "/Filters/Logulator/Chrome" -msgstr "" - #, fuzzy msgid "/Filters/Misc/Magick..." msgstr "/╔у╔ё╔К╔©/╔н╔╓╔╨/╔у╔ё║╪╔и╔п╔ц╔╞" @@ -918,13 +863,10 @@ msgstr "" msgid "Unable to read temporary image tile $tmp: $!" msgstr "" -msgid "export failed" -msgstr "" - msgid "Help for " msgstr "" -msgid "/Filters/Logulator/Chip Away" +msgid "export failed" msgstr "" msgid "dunno how to pass arg type %d" @@ -968,9 +910,6 @@ msgstr "/ msgid "/Filters/Animation/BlowInOut..." msgstr "/╔у╔ё╔К╔©/ф╟╡Х/ф╟╡Х╔╩╔К" -msgid "/Filters/Logulator/Starscape" -msgstr "" - msgid "/Filters/Enhance/2x2 Contrast Enhance" msgstr "" @@ -998,3 +937,7 @@ msgstr "" msgid "(none)" msgstr "" + +#, fuzzy +#~ msgid "/Filters/Logulator/3D Outline..." +#~ msgstr "/╔у╔ё╔К╔©/©╖/╡п" diff --git a/plug-ins/perl/po/no.po b/plug-ins/perl/po/no.po index 14dbd7bc3a..b8d5ea5612 100644 --- a/plug-ins/perl/po/no.po +++ b/plug-ins/perl/po/no.po @@ -13,27 +13,14 @@ msgstr "" "Content-Type: text/plain; charset=iso-8859-1\n" "Content-Transfer-Encoding: 8-bit\n" -msgid "/Filters/Logulator/Bovination" -msgstr "/Filtre/Logulator/Bovination" - -msgid "/Filters/Logulator/Blended" -msgstr "/Filtre/Logulator/Blandet" - -msgid "/Filters/Logulator/Basic I" -msgstr "/Filtre/Logulator/Basic I" - msgid "FATAL: unable to create $tmp: $!\n" msgstr "FATAL: kunne ikke opprette $tmp: $!\n" msgid "" -"Expected an INT32 but got '%s'. Add '*1' if you really intend to pass in a " -"string" +"Expected an INT32 but got '%s'. Add '*1' if you really intend to pass in a string" msgstr "" -"Forventet en INT32 men fikk '%s'. Legg til '*1' hvis du virkelig Ьnsket Е " -"sende en streng" - -msgid "/Filters/Logulator/3D Outline..." -msgstr "/Filtre/Logulator/3D outline..." +"Forventet en INT32 men fikk '%s'. Legg til '*1' hvis du virkelig Ьnsket Е sende " +"en streng" msgid "/Filters/Web/Prepare for GIF..." msgstr "/Filtre/Web/Forbered for GIF..." @@ -61,9 +48,6 @@ msgstr "blir kalt som '%s', men '%s' er ikke registrert i pdb" msgid "argument type %s expected (not %s)" msgstr "argumenttype %s ventet (ikke %s)" -msgid "/Filters/Logulator/Glowing Hot" -msgstr "/Filtre/Logulator/GlЬdende het" - msgid "Browse" msgstr "Bla gjennom" @@ -73,12 +57,12 @@ msgstr "Nullstill alle verdier til sine utgangsverdier" msgid "WARNING: client tried to unlock without holding a lock" msgstr "ADVARSEL: klienten forsЬkte Е fjerne en lЕs uten Е holde den" -msgid "required callback 'run' not found\n" -msgstr "nЬdvendig tilbakekall 'run' ikke funnet\n" - msgid "$_: illegal switch, try $0 --help\n" msgstr "$_: ugyldig flagg, prЬv $0 --help\n" +msgid "required callback 'run' not found\n" +msgstr "nЬdvendig tilbakekall 'run' ikke funnet\n" + msgid "/Xtns/Render/Logos/Glowing Steel" msgstr "/Utvd/Render/Logoer/GlЬdende stЕl" @@ -97,15 +81,11 @@ msgstr "/Filtre/Web/Perl-o-tine..." msgid "function '$exe' not found in this script (must be one of " msgstr "funksjonen '$exe' ikke funnet i dette skriptet (mЕ vФre en av " -msgid "" -"pixel size mismatch, pdl has %d channel pixels but %d channels are required" +msgid "pixel size mismatch, pdl has %d channel pixels but %d channels are required" msgstr "" "pikselstЬrrelsen stemmer ikke, pdl har %d kanaler med piksler men %d kanaler " "behЬves" -msgid "/Filters/Logulator/Basic II" -msgstr "/Filtre/Logulator/Basic II" - msgid "Load" msgstr "Last" @@ -172,12 +152,12 @@ msgstr "tjeneren g msgid "trying to start gimp with options \"$opt\"\n" msgstr "prЬver Е starte gimp med alternativene \"$opt\"\n" -msgid "expected perl-server at other end of socket, got @r\n" -msgstr "forventet perl-tjener pЕ andre siden av socketen, fant @r\n" - msgid "pdl height != region height" msgstr "pdl hЬyde != regionhЬyde" +msgid "expected perl-server at other end of socket, got @r\n" +msgstr "forventet perl-tjener pЕ andre siden av socketen, fant @r\n" + msgid "received QUIT request" msgstr "mottok AVSLUTT-forespЬrsel" @@ -202,8 +182,7 @@ msgid "" " -gimp used internally only\n" " -h | -help | --help | -? print some help\n" " -v | --verbose be more verbose in what you do\n" -" --host|--tcp HOST[:PORT] connect to HOST (optionally using " -"PORT)\n" +" --host|--tcp HOST[:PORT] connect to HOST (optionally using PORT)\n" " (for more info, see Gimp::Net(3))\n" msgstr "" "Bruk: $0 [gimp-arg..] [grensesnitt-arg..] [skript-arg..]\n" @@ -225,9 +204,6 @@ msgstr "" msgid "/Image/Alpha/Alpha2Color..." msgstr "/Bilde/Alpha/Alpha-til-farge..." -msgid "/Filters/Logulator/Starburst" -msgstr "/Filtre/Logulator/Stjerneskudd" - msgid "/Filters/Logulator/SOTA Chrome" msgstr "/Filtre/Logulator/SOTA-krom" @@ -300,9 +276,6 @@ msgstr "/Filtre/Kart/Bildeflis..." msgid "/Guides/To Selection..." msgstr "/Guider/Til utvalg..." -msgid "/Filters/Logulator/Comic Book" -msgstr "/Filtre/Logulator/Tegneserie" - msgid "/Guides/Remove Guides" msgstr "/Guider/Fjern guider" @@ -351,15 +324,12 @@ msgstr "PDB-leser - olof utgaven (fremdeles en alpha-versjon)" msgid "Illegal default font description for $function: $val\n" msgstr "Ugyldig standard skrifttypebeskrivelse for $function: $val\n" -msgid "/Select/Round Rectangular Selection..." -msgstr "/Velg/Rundt rektangulФrt utvalg..." - -msgid "/Filters/Logulator/Chalk" -msgstr "/Filtre/Logulator/Kritt" - msgid "unable to convert Gimp::Drawable into Gimp::GDrawable (id %d)" msgstr "kunne ikke konvertere Gimp::Drawable til Gimp::GDrawable (id %d)" +msgid "/Select/Round Rectangular Selection..." +msgstr "/Velg/Rundt rektangulФrt utvalg..." + msgid "" "BLURB:\n" "\n" @@ -387,16 +357,14 @@ msgid "/Filters/Logulator/Blended II..." msgstr "/Filtre/Logulator/Blandet II..." msgid "" -"$function: function name contains unusual characters, good style is to use " -"only 0-9, a-z and _" +"$function: function name contains unusual characters, good style is to use only " +"0-9, a-z and _" msgstr "" "$function: funksjonsnavnet inneholder uvanlige tegn, god stil er Е bruke kun " "0-9, a-z og _" -msgid "" -"menupath _must_ start with , , , or !" -msgstr "" -"menystien _mЕ_ starte med , , , eller !" +msgid "menupath _must_ start with , , , or !" +msgstr "menystien _mЕ_ starte med , , , eller !" msgid "/Filters/Render/Highlight Edges..." msgstr "/Filtre/Render/Lys opp kanter..." @@ -407,12 +375,12 @@ msgstr "Spinn lag DEST (250ms)" msgid "register called with too many or wrong arguments\n" msgstr "register kalt med for mange eller gale argumenter\n" -msgid "params and return_vals must be array refs (even if empty)!" -msgstr "params og return_vals mЕ vФre tabellreferanser (selv om de er tomme)!" - msgid "$_ is not a valid import tag for package $pkg" msgstr "$_ er ikke en gyldig import-tag for pakken $pkg" +msgid "params and return_vals must be array refs (even if empty)!" +msgstr "params og return_vals mЕ vФre tabellreferanser (selv om de er tomme)!" + msgid "/Filters/Colors/Map To Gradient..." msgstr "/Filtre/Farger/Tilegne til gradient..." @@ -456,15 +424,13 @@ msgstr "/Bilde/Alpha/Nullstill alpha..." msgid "" "dimension mismatch, pdl has dimension %d but at least %d dimensions required" -msgstr "" -"dimensjonsfeil, pdl har dimensjon %d men minst %d dimensjon er nЬdvendig" +msgstr "dimensjonsfeil, pdl har dimensjon %d men minst %d dimensjon er nЬdvendig" msgid "[unfinished]\n" msgstr "[uferdig]\n" msgid "could not connect to the gimp server (make sure Perl-Server is running)" -msgstr "" -"kunne ikke koble til gimp tjeneren (forsikre deg om at Perl-Server kjЬrer)" +msgstr "kunne ikke koble til gimp tjeneren (forsikre deg om at Perl-Server kjЬrer)" msgid "/Filters/Logulator/Crystal" msgstr "/Filtre/Logulator/Krystall" @@ -491,8 +457,7 @@ msgid "text string is empty" msgstr "tekststrengen er tom" msgid "server requests authorization, but no authorization available\n" -msgstr "" -"tjeneren forespЬr autorisasjon, men ingen autorisasjon er tilgjengelig\n" +msgstr "tjeneren forespЬr autorisasjon, men ingen autorisasjon er tilgjengelig\n" msgid "/Xtns/Visual Scriptor..." msgstr "/Utvd/Visuell skripter..." @@ -506,12 +471,12 @@ msgstr "Bildetyper" msgid "Menu Path" msgstr "Menysti" -msgid "Unable to grok '%s' as colour specifier" -msgstr "Kunne ikke forstЕ '%s' som fargespesifikasjon" - msgid "9x15bold" msgstr "9x15uthevet" +msgid "Unable to grok '%s' as colour specifier" +msgstr "Kunne ikke forstЕ '%s' som fargespesifikasjon" + msgid "Accelerator" msgstr "Aksellerator" @@ -527,19 +492,15 @@ msgstr "Avbryt" msgid "only blessed scalars accepted here" msgstr "kun velsignede skalarverdier aksepteres her" -msgid "" -"dimension mismatch, pdl has dimension %d but at most %d dimensions allowed" +msgid "dimension mismatch, pdl has dimension %d but at most %d dimensions allowed" msgstr "dimensjonsfeil, pdl har dimensjon %d men minst %d dimensjoner tillates" -msgid "/Filters/Logulator/Glossy" -msgstr "/Filtre/Logulator/Glossy" - -msgid "argument is not of type %s" -msgstr "argumentet er ikke av type %d" - msgid "WARNING" msgstr "ADVARSEL" +msgid "argument is not of type %s" +msgstr "argumentet er ikke av type %d" + msgid "Description" msgstr "Beskrivelse" @@ -549,9 +510,6 @@ msgstr "/Filtre/Render/Tilpass tekst..." msgid "Unable to convert a reference to type '%s'" msgstr "Kunne ikke konvertere en referanse til type '%s'" -msgid "/Filters/Logulator/Particle Trace" -msgstr "/Filtre/Logulator/Partikkelspor" - msgid "argument incompatible with type IMAGE" msgstr "argumentet er ikke kompatibelt med type IMAGE" @@ -576,9 +534,6 @@ msgstr "/Filtre/Kart/Pikselkart..." msgid "Color" msgstr "Farge" -msgid "/Filters/Logulator/Alien Glow" -msgstr "/Filtre/Logulator/Fremmed glЬd" - msgid "FATAL: canonicalize_colour did not return a value!" msgstr "FATAL: canonicalize_colour returnerte ikke en verdi!" @@ -631,8 +586,7 @@ msgid "Save $name" msgstr "Lagre $name" msgid "run_mode must be INTERACTIVE, NONINTERACTIVE or RUN_WITH_LAST_VALS\n" -msgstr "" -"run_mode mЕ vФre INTERACTIVE, NONINTERACTIVE eller RUN_WITH_LAST_VALS\n" +msgstr "run_mode mЕ vФre INTERACTIVE, NONINTERACTIVE eller RUN_WITH_LAST_VALS\n" msgid "/Video/VCR Console..." msgstr "/Video/VCR-konsoll..." @@ -647,21 +601,20 @@ msgid "interface=... tag is no longer supported\n" msgstr "grensesnitt=... tag er ikke stЬttet lenger\n" msgid "" -"Expected an INT32 but got '%s'. Maybe you meant '%s' instead and forgot to " -"'use strict'" +"Expected an INT32 but got '%s'. Maybe you meant '%s' instead and forgot to 'use " +"strict'" msgstr "" -"Forventet en INT32 men fikk '%s'. Kanskje du mente '%s' i stedet, og glemte " -"Е 'bruk streng'" +"Forventet en INT32 men fikk '%s'. Kanskje du mente '%s' i stedet, og glemte Е " +"'bruk streng'" msgid "/Filters/Logulator/Transparent Logo..." msgstr "/Filtre/Logulator/Gjennomsiktig logo..." msgid "" -"malformed paramdef, expected [PARAM_TYPE,\"NAME\",\"DESCRIPTION\"] or " -"PARAM_TYPE" +"malformed paramdef, expected [PARAM_TYPE,\"NAME\",\"DESCRIPTION\"] or PARAM_TYPE" msgstr "" -"feilformatert paramdef, forventet [PARAM_TYPE,\"NAME\",\"DESCRIPTION\"] " -"eller PARAM_TYPE" +"feilformatert paramdef, forventet [PARAM_TYPE,\"NAME\",\"DESCRIPTION\"] eller " +"PARAM_TYPE" msgid "Background" msgstr "Bakgrunn" @@ -691,8 +644,8 @@ msgid "unable to create listening tcp socket: $!\n" msgstr "kunne ikke opprette lyttende tcp socket: $!\n" msgid "" -"gimp_pixel_rgns_register supports only 1, 2 or 3 arguments, upgrade to " -"gimp-1.1 and report this error" +"gimp_pixel_rgns_register supports only 1, 2 or 3 arguments, upgrade to gimp-1.1 " +"and report this error" msgstr "" "gimp_pixel_rgns_register stЬtter kun 1, 2 eller 3 argumenter, oppgrader til " "gimp-1.1 og rapporter denne feilen" @@ -706,12 +659,12 @@ msgstr "Bumpmap" msgid "Saving '$filename' as COLORHTML..." msgstr "Lagrer '$filname' som COLORHTML..." -msgid "too many" -msgstr "for mange" - msgid "required callback 'net' not found\n" msgstr "nЬdvendig tilbakekall 'net' ikke funnet\n" +msgid "too many" +msgstr "for mange" + msgid "/Filters/Render/Add Glow" msgstr "/Filtre/Render/Legg til glЬd" @@ -724,12 +677,12 @@ msgstr "Mer..." msgid "arguments to main not yet supported!" msgstr "argumenter til main er ikke stЬttet ennЕ!" -msgid "/Filters/Logulator/Newsprint text" -msgstr "/Filtre/Logulator/Newsprint tekst" - msgid "Seth Spin..." msgstr "Seth spin..." +msgid "/Filters/Logulator/Newsprint text" +msgstr "/Filtre/Logulator/Newsprint tekst" + msgid "/Filters/Noise/Xach Vision..." msgstr "/Filtre/StЬy/Xach vision..." @@ -742,49 +695,39 @@ msgstr "NAVN" msgid "Help" msgstr "Hjelp" -msgid "/Filters/Logulator/Cool Metal" -msgstr "/Filtre/Logulator/KjЬlig metall" - msgid "/Filters/Logulator/Carved" msgstr "/Filtre/Logulator/SkjФrt" -msgid "/Filters/Logulator/Textured" -msgstr "/Filtre/Logulator/Tekstur" - msgid "no font specified, using default" msgstr "ingen skrifttype spesifisert, bruker standard" +msgid "conversion to type $pf_type2string{$type} is not yet implemented\n" +msgstr "konvertering til type $pf_type2string{type} er ikke implementert ennЕ\n" + msgid "gimp_tile_get_data is not yet implemented\n" msgstr "gimp_tile_get_data er ikke implementert ennЕ\n" -msgid "conversion to type $pf_type2string{$type} is not yet implemented\n" -msgstr "" -"konvertering til type $pf_type2string{type} er ikke implementert ennЕ\n" +msgid "/Filters/Map/Xach Shadows..." +msgstr "/Filtre/Kart/Xach skygger..." msgid "/Filters/Map/Xach Blocks..." msgstr "/Filtre/Kart/Xach blokker..." -msgid "/Filters/Map/Xach Shadows..." -msgstr "/Filtre/Kart/Xach skygger..." - msgid "/Filters/Logulator/Speed text" msgstr "/Filtre/Logulator/Hurtigtekst" msgid "unable to grok colour specification" msgstr "kunne ikke forstЕ fargespesifikasjonen" -msgid "You need at least 2 layers to perform prep4gif" -msgstr "Du mЕ ha minst 2 lag for Е utfЬre prep4gif" - msgid "/Edit/Repeat & Duplicate..." msgstr "/Rediger/Gjenta & dupliser..." +msgid "You need at least 2 layers to perform prep4gif" +msgstr "Du mЕ ha minst 2 lag for Е utfЬre prep4gif" + msgid "too many arguments" msgstr "for mange argumenter" -msgid "/Filters/Logulator/Gradient Bevel" -msgstr "/Filtre/Logulator/Gradient bevel" - msgid "-*-helvetica-medium-r-normal-*-34-*-*-*-p-*-iso8859-1" msgstr "-*-helvetica-medium-r-normal-*-34-*-*-*-p-*-iso8859-1" @@ -796,8 +739,7 @@ msgid "Restore values to the previous ones" msgstr "Gjenopprett verdier til de tidligere" msgid " plug-in called without both image and drawable arguments!\n" -msgstr "" -" tillegg kalt uten argumenter for bЕde bilde og tegnbart objekt!\n" +msgstr " tillegg kalt uten argumenter for bЕde bilde og tegnbart objekt!\n" msgid ", authorization required" msgstr ", autorisasjon nЬdvendig" @@ -808,8 +750,7 @@ msgstr "/Filtre/St msgid "unable to create listening unix socket: $!\n" msgstr "kunne ikke opprette lyttende unix socket: $!\n" -msgid "" -"invalid GIMP_HOST: 'spawn' is not a valid connection method for the server" +msgid "invalid GIMP_HOST: 'spawn' is not a valid connection method for the server" msgstr "" "ugyldig GIMP_HOST: 'spawn' er ikke en gyldig forbindelsesmetode for tjeneren" @@ -842,8 +783,7 @@ msgid "Font Selection Dialog ($desc)" msgstr "Skrifttypevalg dialg ($desc)" msgid "%s: procedural database execution failed on invalid input arguments" -msgstr "" -"%s: kjЬring av prosedyredatabasen feilet pЕ ugyldig argumenter for inndata" +msgstr "%s: kjЬring av prosedyredatabasen feilet pЕ ugyldig argumenter for inndata" msgid "(UNINITIALIZED)" msgstr "(UINITIALISERT)" @@ -851,9 +791,6 @@ msgstr "(UINITIALISERT)" msgid "closing connection %d (%d requests in %g seconds)" msgstr "lukker forbindelse %d (%d forespЬrseler pЕ %g sekunder)" -msgid "/Filters/Logulator/Frosty" -msgstr "/Filtre/Logulator/Frosty" - msgid "/Xtns/Render/Golden Mean..." msgstr "/Utvd/Render/Gyllen middelverdi..." @@ -866,9 +803,6 @@ msgstr "/Guider/Sentreringsguide..." msgid "server version $Gimp::VERSION started" msgstr "tjener versjon $Gimp::VERSION startet" -msgid "authorization unnecessary" -msgstr "autorisasjon ikke nЬdvendig" - msgid "" "$function: calling $AUTOLOAD without specifying the :auto import tag is " "deprecated!\n" @@ -876,6 +810,9 @@ msgstr "" "$function: kall av $AUTOLOAD uten Е spesifisere :auto import tag'en er " "utdatert!\n" +msgid "authorization unnecessary" +msgstr "autorisasjon ikke nЬdvendig" + msgid "/Filters/Enhance/Warp Sharp..." msgstr "/Filtre/Enhance/Warp sharp..." @@ -906,17 +843,11 @@ msgstr "Ikke st msgid "get current foreground colour from the gimp" msgstr "hent aktiv forgrunnsfarge fra gimp" -msgid "You can't run this script without an ALPHA CHANNEL!!" -msgstr "Du kan ikke kjЬre dette skriptet uten en ALPHA KANAL!!" - msgid "/Xtns/Perl Example Plug-in" msgstr "/Utvd/Perl eksempel tillegg" -msgid "/Filters/Logulator/Neon" -msgstr "/Filtre/Logulator/Neon" - -msgid "/Filters/Logulator/Chrome" -msgstr "/Filtre/Logulator/Krom" +msgid "You can't run this script without an ALPHA CHANNEL!!" +msgstr "Du kan ikke kjЬre dette skriptet uten en ALPHA KANAL!!" msgid "/Filters/Misc/Magick..." msgstr "/Filtre/Forskjellig/Magick..." @@ -936,9 +867,6 @@ msgstr "Hjelp om " msgid "export failed" msgstr "eksport feilet" -msgid "/Filters/Logulator/Chip Away" -msgstr "/Filtre/Logulator/Hugg bort" - msgid "dunno how to pass arg type %d" msgstr "kan ikke sende argumenttype %d" @@ -978,21 +906,18 @@ msgstr "/Velg/Triangel..." msgid "/Filters/Animation/BlowInOut..." msgstr "/Filtre/Animasjon/BlЕsinnut..." -msgid "/Filters/Logulator/Starscape" -msgstr "/Filtre/Logulator/Starscape" +msgid "/Filters/Enhance/2x2 Contrast Enhance" +msgstr "/Filtre/Enhance/2x2 kontrast enhance" msgid "/Layers/Stack/Reorder Layers..." msgstr "/Lag/Stable/Omorganiser lagene..." -msgid "/Filters/Enhance/2x2 Contrast Enhance" -msgstr "/Filtre/Enhance/2x2 kontrast enhance" - msgid "" -"$function: argument name '$p->[1]' contains illegal characters, only 0-9, " -"a-z and _ allowed" +"$function: argument name '$p->[1]' contains illegal characters, only 0-9, a-z " +"and _ allowed" msgstr "" -"$function: argumentnavn 'p->[1]' inneholder ugyldige tegn, kun 0-9, a-z og _ " -"er tillatt" +"$function: argumentnavn 'p->[1]' inneholder ugyldige tegn, kun 0-9, a-z og _ er " +"tillatt" msgid "/Filters/Colors/Fire..." msgstr "/Filtre/Farger/Flamme..." @@ -1008,3 +933,63 @@ msgstr "ugyldig kommando mottatt, avbryter forbindelsen" msgid "(none)" msgstr "(ingen)" + +#~ msgid "/Filters/Logulator/Bovination" +#~ msgstr "/Filtre/Logulator/Bovination" + +#~ msgid "/Filters/Logulator/Blended" +#~ msgstr "/Filtre/Logulator/Blandet" + +#~ msgid "/Filters/Logulator/Basic I" +#~ msgstr "/Filtre/Logulator/Basic I" + +#~ msgid "/Filters/Logulator/3D Outline..." +#~ msgstr "/Filtre/Logulator/3D outline..." + +#~ msgid "/Filters/Logulator/Glowing Hot" +#~ msgstr "/Filtre/Logulator/GlЬdende het" + +#~ msgid "/Filters/Logulator/Basic II" +#~ msgstr "/Filtre/Logulator/Basic II" + +#~ msgid "/Filters/Logulator/Starburst" +#~ msgstr "/Filtre/Logulator/Stjerneskudd" + +#~ msgid "/Filters/Logulator/Comic Book" +#~ msgstr "/Filtre/Logulator/Tegneserie" + +#~ msgid "/Filters/Logulator/Chalk" +#~ msgstr "/Filtre/Logulator/Kritt" + +#~ msgid "/Filters/Logulator/Glossy" +#~ msgstr "/Filtre/Logulator/Glossy" + +#~ msgid "/Filters/Logulator/Particle Trace" +#~ msgstr "/Filtre/Logulator/Partikkelspor" + +#~ msgid "/Filters/Logulator/Alien Glow" +#~ msgstr "/Filtre/Logulator/Fremmed glЬd" + +#~ msgid "/Filters/Logulator/Cool Metal" +#~ msgstr "/Filtre/Logulator/KjЬlig metall" + +#~ msgid "/Filters/Logulator/Textured" +#~ msgstr "/Filtre/Logulator/Tekstur" + +#~ msgid "/Filters/Logulator/Gradient Bevel" +#~ msgstr "/Filtre/Logulator/Gradient bevel" + +#~ msgid "/Filters/Logulator/Frosty" +#~ msgstr "/Filtre/Logulator/Frosty" + +#~ msgid "/Filters/Logulator/Neon" +#~ msgstr "/Filtre/Logulator/Neon" + +#~ msgid "/Filters/Logulator/Chrome" +#~ msgstr "/Filtre/Logulator/Krom" + +#~ msgid "/Filters/Logulator/Chip Away" +#~ msgstr "/Filtre/Logulator/Hugg bort" + +#~ msgid "/Filters/Logulator/Starscape" +#~ msgstr "/Filtre/Logulator/Starscape" diff --git a/plug-ins/perl/po/ru.po b/plug-ins/perl/po/ru.po index e235161957..174d2e18ab 100644 --- a/plug-ins/perl/po/ru.po +++ b/plug-ins/perl/po/ru.po @@ -12,32 +12,18 @@ msgstr "" "Content-Type: text/plain; charset=koi8-r\n" "Content-Transfer-Encoding: 8-bit\n" -msgid "/Filters/Logulator/Bovination" -msgstr "/Фильтры/Регистратор/Bovination" - -msgid "/Filters/Logulator/Blended" -msgstr "/Фильтры/Регистратор/Смешанный" - -msgid "/Filters/Logulator/Basic I" -msgstr "/Фильтры/Регистратор/Основа I" - msgid "FATAL: unable to create $tmp: $!\n" msgstr "ФАТАЛЬНАЯ ОШИБКА: невозможно создать $tmp: $!\n" -msgid "/Filters/Animation/Seth Spin..." -msgstr "/Фильтры/Анимация/Seth Spin..." - msgid "" -"Expected an INT32 but got '%s'. Add '*1' if you really intend to pass in a " -"string" -msgstr "Ожидалось INT32, а получено '%s'. Добавьте '*1' если вы действительно намереваетесь посылать строку" +"Expected an INT32 but got '%s'. Add '*1' if you really intend to pass in a string" +msgstr "" +"Ожидалось INT32, а получено '%s'. Добавьте '*1' если вы действительно " +"намереваетесь посылать строку" msgid "/Filters/Web/Prepare for GIF..." msgstr "/Фильтры/Web/Подготовить для GIF..." -msgid "/Filters/Logulator/3D Outline..." -msgstr "/Фильтры/Регистратор/3D контур..." - msgid "/Filters/Animation/Animate Cells..." msgstr "/Фильтры/Анимация/Анимировать клетки..." @@ -57,9 +43,6 @@ msgstr " msgid "argument type %s expected (not %s)" msgstr "ожидался аргумент типа %s (а не %s)" -msgid "/Filters/Logulator/Glowing Hot" -msgstr "/Фильтры/Регистратор/Glowing Hot" - msgid "Browse" msgstr "Просмотр" @@ -69,10 +52,10 @@ msgstr " msgid "WARNING: client tried to unlock without holding a lock" msgstr "" -msgid "required callback 'run' not found\n" +msgid "$_: illegal switch, try $0 --help\n" msgstr "" -msgid "$_: illegal switch, try $0 --help\n" +msgid "required callback 'run' not found\n" msgstr "" msgid "/Xtns/Render/Logos/Glowing Steel" @@ -93,13 +76,9 @@ msgstr "/ msgid "function '$exe' not found in this script (must be one of " msgstr "" -msgid "" -"pixel size mismatch, pdl has %d channel pixels but %d channels are required" +msgid "pixel size mismatch, pdl has %d channel pixels but %d channels are required" msgstr "" -msgid "/Filters/Logulator/Basic II" -msgstr "/Фильтры/Регистратор/Основа II" - msgid "Load" msgstr "Загрузить" @@ -130,6 +109,10 @@ msgstr " msgid "/Xtns/Render/Bricks..." msgstr "/Расш./Визуализация/Кирпичи..." +#, fuzzy +msgid "/Xtns/Animation/Seth Spin..." +msgstr "/Расш./Анимация/Доска объявлений..." + msgid "illegal type for colour specification" msgstr "неправильный тип спецификации цвета" @@ -163,12 +146,12 @@ msgstr "" msgid "trying to start gimp with options \"$opt\"\n" msgstr "попытка запуска Gimp с параметром \"$opt\"\n" -msgid "expected perl-server at other end of socket, got @r\n" -msgstr "на другом конце сокета ожидался perl-сервер, получено @r\n" - msgid "pdl height != region height" msgstr "pdl-высота != высота области" +msgid "expected perl-server at other end of socket, got @r\n" +msgstr "на другом конце сокета ожидался perl-сервер, получено @r\n" + msgid "received QUIT request" msgstr "получен запрос на выход (QUIT)" @@ -193,8 +176,7 @@ msgid "" " -gimp used internally only\n" " -h | -help | --help | -? print some help\n" " -v | --verbose be more verbose in what you do\n" -" --host|--tcp HOST[:PORT] connect to HOST (optionally using " -"PORT)\n" +" --host|--tcp HOST[:PORT] connect to HOST (optionally using PORT)\n" " (for more info, see Gimp::Net(3))\n" msgstr "" @@ -206,9 +188,6 @@ msgstr "" msgid "/Image/Alpha/Alpha2Color..." msgstr "/Изображение/Альфа/Альфа-канал -> Цвет..." -msgid "/Filters/Logulator/Starburst" -msgstr "/Фильтры/Регистратор/Взрыв звезды" - msgid "/Filters/Logulator/SOTA Chrome" msgstr "/Фильтры/Регистратор/SOTA хром" @@ -274,8 +253,7 @@ msgstr " msgid "No horizontal or vertical guides found. Aborted." msgstr "" -"Не найдено ни вертикальных ни горизонтальных направляющих. Выполнение " -"прервано." +"Не найдено ни вертикальных ни горизонтальных направляющих. Выполнение прервано." msgid "/Filters/Map/Image Tile..." msgstr "/Фильтры/Отображение/Image Tile..." @@ -283,9 +261,6 @@ msgstr "/ msgid "/Guides/To Selection..." msgstr "/Направляющие/В выделение..." -msgid "/Filters/Logulator/Comic Book" -msgstr "/Фильтры/Регистратор/Комикс" - msgid "/Guides/Remove Guides" msgstr "/Направляющие/Удалить" @@ -334,15 +309,12 @@ msgstr " msgid "Illegal default font description for $function: $val\n" msgstr "Недопустимое описание шрифта по умолчанию для $function: $val\n" -msgid "/Select/Round Rectangular Selection..." -msgstr "/Выделение/Выделение скругленного прямоугольника..." - -msgid "/Filters/Logulator/Chalk" -msgstr "/Фильтры/Регистратор/Мел" - msgid "unable to convert Gimp::Drawable into Gimp::GDrawable (id %d)" msgstr "невозможно преобразовать Gimp::Drawable в Gimp::GDrawable (id %d)" +msgid "/Select/Round Rectangular Selection..." +msgstr "/Выделение/Выделение скругленного прямоугольника..." + msgid "" "BLURB:\n" "\n" @@ -370,17 +342,15 @@ msgid "/Filters/Logulator/Blended II..." msgstr "/Фильтры/Регистратор/Смешанный II..." msgid "" -"$function: function name contains unusual characters, good style is to use " -"only 0-9, a-z and _" +"$function: function name contains unusual characters, good style is to use only " +"0-9, a-z and _" msgstr "" "$function: название функции содержит необычные символы, хороший стиль - " "использование только 0-9, a-z and _" -msgid "" -"menupath _must_ start with , , , or !" +msgid "menupath _must_ start with , , , or !" msgstr "" -"путь меню _должен_ начинаться с , , , или " -"!" +"путь меню _должен_ начинаться с , , , или !" msgid "/Filters/Render/Highlight Edges..." msgstr "/Фильтры/Визуализация/Яркие края..." @@ -389,14 +359,15 @@ msgid "Spin Layer DEST (250ms)" msgstr "" msgid "register called with too many or wrong arguments\n" -msgstr "регистр вызван со слишком большим числом аргументов или с неверными аргументами\n" - -msgid "params and return_vals must be array refs (even if empty)!" -msgstr "params и return_vals должны быть ссылками на массив (даже если пусты)!" +msgstr "" +"регистр вызван со слишком большим числом аргументов или с неверными аргументами\n" msgid "$_ is not a valid import tag for package $pkg" msgstr "" +msgid "params and return_vals must be array refs (even if empty)!" +msgstr "params и return_vals должны быть ссылками на массив (даже если пусты)!" + msgid "/Filters/Colors/Map To Gradient..." msgstr "/Фильтры/Цвета/Отобразить в градиент..." @@ -414,7 +385,11 @@ msgid "" "\n" "EMBEDDED POD DOCUMENTATION:\n" "\n" -msgstr "\n\nВСТРОЕННАЯ ДОКУМЕНТАЦИЯ В ФОРМАТЕ POD:\n\n" +msgstr "" +"\n" +"\n" +"ВСТРОЕННАЯ ДОКУМЕНТАЦИЯ В ФОРМАТЕ POD:\n" +"\n" msgid "/Filters/Logulator" msgstr "/Фильтры/Регистратор" @@ -443,7 +418,8 @@ msgid "[unfinished]\n" msgstr "[незавершенное]\n" msgid "could not connect to the gimp server (make sure Perl-Server is running)" -msgstr "невозможно подключиться к серверу gimp (убедитесь, что Perl-Server запущен)" +msgstr "" +"невозможно подключиться к серверу gimp (убедитесь, что Perl-Server запущен)" msgid "/Filters/Logulator/Crystal" msgstr "/Фильтры/Регистратор/Кристалл" @@ -484,12 +460,12 @@ msgstr " msgid "Menu Path" msgstr "Путь меню" -msgid "Unable to grok '%s' as colour specifier" -msgstr "" - msgid "9x15bold" msgstr "9x15bold" +msgid "Unable to grok '%s' as colour specifier" +msgstr "" + msgid "Accelerator" msgstr "Ускоритель" @@ -505,19 +481,15 @@ msgstr " msgid "only blessed scalars accepted here" msgstr "" -msgid "" -"dimension mismatch, pdl has dimension %d but at most %d dimensions allowed" +msgid "dimension mismatch, pdl has dimension %d but at most %d dimensions allowed" msgstr "" -msgid "/Filters/Logulator/Glossy" -msgstr "/Фильтры/Регистратор/Глянец" - -msgid "argument is not of type %s" -msgstr "аргумент не типа %s" - msgid "WARNING" msgstr "ВНИМАНИЕ" +msgid "argument is not of type %s" +msgstr "аргумент не типа %s" + msgid "Description" msgstr "Описание" @@ -527,9 +499,6 @@ msgstr "/ msgid "Unable to convert a reference to type '%s'" msgstr "" -msgid "/Filters/Logulator/Particle Trace" -msgstr "/Фильтры/Регистратор/След частицы" - msgid "argument incompatible with type IMAGE" msgstr "аргумент несовместим с типом ИЗОБРАЖЕНИЕ" @@ -554,9 +523,6 @@ msgstr "/ msgid "Color" msgstr "Цвет" -msgid "/Filters/Logulator/Alien Glow" -msgstr "/Фильтры/Регистратор/Чужое свечение" - msgid "FATAL: canonicalize_colour did not return a value!" msgstr "ФАТАЛЬНО: canonicalize_colour не вернуло значение!" @@ -609,8 +575,7 @@ msgid "Save $name" msgstr "Сохранить $name" msgid "run_mode must be INTERACTIVE, NONINTERACTIVE or RUN_WITH_LAST_VALS\n" -msgstr "" -"run_mode должен быть INTERACTIVE, NONINTERACTIVE или RUN_WITH_LAST_VALS\n" +msgstr "run_mode должен быть INTERACTIVE, NONINTERACTIVE или RUN_WITH_LAST_VALS\n" msgid "/Video/VCR Console..." msgstr "/Видео/Пульт видеомагнитофона..." @@ -625,16 +590,17 @@ msgid "interface=... tag is no longer supported\n" msgstr "тэг interface=... больше не поддерживается\n" msgid "" -"Expected an INT32 but got '%s'. Maybe you meant '%s' instead and forgot to " -"'use strict'" -msgstr "Ожидалось INT32, а получено '%s'. Возможно вы имели в виду '%s' вместо этого и забыли про 'use strict'" +"Expected an INT32 but got '%s'. Maybe you meant '%s' instead and forgot to 'use " +"strict'" +msgstr "" +"Ожидалось INT32, а получено '%s'. Возможно вы имели в виду '%s' вместо этого и " +"забыли про 'use strict'" msgid "/Filters/Logulator/Transparent Logo..." msgstr "/Фильтры/Регистратор/Прозрачная эмблема..." msgid "" -"malformed paramdef, expected [PARAM_TYPE,\"NAME\",\"DESCRIPTION\"] or " -"PARAM_TYPE" +"malformed paramdef, expected [PARAM_TYPE,\"NAME\",\"DESCRIPTION\"] or PARAM_TYPE" msgstr "" msgid "Background" @@ -665,8 +631,8 @@ msgid "unable to create listening tcp socket: $!\n" msgstr "" msgid "" -"gimp_pixel_rgns_register supports only 1, 2 or 3 arguments, upgrade to " -"gimp-1.1 and report this error" +"gimp_pixel_rgns_register supports only 1, 2 or 3 arguments, upgrade to gimp-1.1 " +"and report this error" msgstr "" msgid "/Filters/Render/Brushed Metal..." @@ -678,12 +644,12 @@ msgstr "" msgid "Saving '$filename' as COLORHTML..." msgstr "Сохранение '$filename' как COLORHTML..." -msgid "too many" -msgstr "слишком много" - msgid "required callback 'net' not found\n" msgstr "" +msgid "too many" +msgstr "слишком много" + msgid "/Filters/Render/Add Glow" msgstr "/Фильтры/Визуализация/Добавить свечение" @@ -696,12 +662,12 @@ msgstr " msgid "arguments to main not yet supported!" msgstr "" -msgid "/Filters/Logulator/Newsprint text" -msgstr "/Фильтры/Регистратор/Газетный текст" - msgid "Seth Spin..." msgstr "" +msgid "/Filters/Logulator/Newsprint text" +msgstr "/Фильтры/Регистратор/Газетный текст" + msgid "/Filters/Noise/Xach Vision..." msgstr "/Фильтры/Шум/Xach-видение..." @@ -714,53 +680,45 @@ msgstr " msgid "Help" msgstr "Справка" -msgid "/Filters/Logulator/Cool Metal" -msgstr "/Фильтры/Регистратор/Прохладный метал" - msgid "/Filters/Logulator/Carved" msgstr "/Фильтры/Регистратор/Вырезка" -msgid "/Filters/Logulator/Textured" -msgstr "/Фильтры/Регистратор/Текстурированное" - msgid "no font specified, using default" msgstr "шрифт не указан, используется установленный по умолчанию" +msgid "conversion to type $pf_type2string{$type} is not yet implemented\n" +msgstr "преобразование к типу $pf_type2string{$type} еще не реализовано\n" + +msgid "gimp_tile_get_data is not yet implemented\n" +msgstr "gimp_tile_get_data еще не реализовано\n" + msgid "/Filters/Map/Xach Shadows..." msgstr "/Фильтры/Отображение/Xach-тени..." msgid "/Filters/Map/Xach Blocks..." msgstr "/Фильтры/Отображение/Xach-блоки..." -msgid "gimp_tile_get_data is not yet implemented\n" -msgstr "gimp_tile_get_data еще не реализовано\n" - -msgid "conversion to type $pf_type2string{$type} is not yet implemented\n" -msgstr "преобразование к типу $pf_type2string{$type} еще не реализовано\n" - msgid "/Filters/Logulator/Speed text" msgstr "/Фильтры/Регистратор/Скоростной текст" msgid "unable to grok colour specification" msgstr "" -msgid "You need at least 2 layers to perform prep4gif" -msgstr "Вам нужны хотя бы 2 слоя для выполнения prep4gif" - msgid "/Edit/Repeat & Duplicate..." msgstr "/Правка/Повтор и дублирование..." +msgid "You need at least 2 layers to perform prep4gif" +msgstr "Вам нужны хотя бы 2 слоя для выполнения prep4gif" + msgid "too many arguments" msgstr "слишком много аргументов" -msgid "/Filters/Logulator/Gradient Bevel" -msgstr "/Фильтры/Регистратор/Градиентный скос" - msgid "-*-helvetica-medium-r-normal-*-34-*-*-*-p-*-iso8859-1" msgstr "-*-helvetica-medium-r-normal-*-34-*-*-*-p-*-*-*" msgid "expected protocol version $Gimp::_PROT_VERSION, but server uses $r[0]\n" -msgstr "ожидаемая версия протокола $Gimp::_PROT_VERSION, а сервер использует $r[0]\n" +msgstr "" +"ожидаемая версия протокола $Gimp::_PROT_VERSION, а сервер использует $r[0]\n" msgid "Restore values to the previous ones" msgstr "" @@ -777,16 +735,15 @@ msgstr "/ msgid "unable to create listening unix socket: $!\n" msgstr "" -msgid "" -"invalid GIMP_HOST: 'spawn' is not a valid connection method for the server" +msgid "invalid GIMP_HOST: 'spawn' is not a valid connection method for the server" msgstr "" -msgid "/View/3D Surface..." -msgstr "/Вид/3D поверхность..." - msgid "Last Modified" msgstr "Последнее измененное" +msgid "/View/3D Surface..." +msgstr "/Вид/3D поверхность..." + msgid "Shortcuts" msgstr "Сокращения" @@ -816,9 +773,6 @@ msgstr "( msgid "closing connection %d (%d requests in %g seconds)" msgstr "" -msgid "/Filters/Logulator/Frosty" -msgstr "/Фильтры/Регистратор/Мороз" - msgid "/Xtns/Render/Golden Mean..." msgstr "/Расш./Визуализация/Золотая середина..." @@ -831,14 +785,14 @@ msgstr "/ msgid "server version $Gimp::VERSION started" msgstr "запущен сервер версии $Gimp::VERSION" -msgid "authorization unnecessary" -msgstr "авторизация не нужна" - msgid "" "$function: calling $AUTOLOAD without specifying the :auto import tag is " "deprecated!\n" msgstr "" +msgid "authorization unnecessary" +msgstr "авторизация не нужна" + msgid "/Filters/Enhance/Warp Sharp..." msgstr "/Фильтры/Улучшение/Warp Sharp..." @@ -875,12 +829,6 @@ msgstr "/ msgid "You can't run this script without an ALPHA CHANNEL!!" msgstr "Вы не можете запустить этот скрипт без Альфа-канала!!!" -msgid "/Filters/Logulator/Neon" -msgstr "/Фильтры/Регистратор/Неон" - -msgid "/Filters/Logulator/Chrome" -msgstr "/Фильтры/Регистратор/Хром" - msgid "/Filters/Misc/Magick..." msgstr "/ФИльтры/Разное/Магия..." @@ -899,9 +847,6 @@ msgstr " msgid "export failed" msgstr "сбой экспортирования" -msgid "/Filters/Logulator/Chip Away" -msgstr "/Фильтры/Регистратор/Chip Away" - msgid "dunno how to pass arg type %d" msgstr "неизвестно как передать аргумент типа %d" @@ -941,18 +886,15 @@ msgstr "/ msgid "/Filters/Animation/BlowInOut..." msgstr "/Фильтры/Анимация/BlowInOut..." -msgid "/Filters/Logulator/Starscape" -msgstr "/Фильтры/Регистратор/Starscape" +msgid "/Filters/Enhance/2x2 Contrast Enhance" +msgstr "/Фильтры/Улучшение/2х2 Улучшение контраста" msgid "/Layers/Stack/Reorder Layers..." msgstr "/Слои/Стопка/Переупорядочить..." -msgid "/Filters/Enhance/2x2 Contrast Enhance" -msgstr "/Фильтры/Улучшение/2х2 Улучшение контраста" - msgid "" -"$function: argument name '$p->[1]' contains illegal characters, only 0-9, " -"a-z and _ allowed" +"$function: argument name '$p->[1]' contains illegal characters, only 0-9, a-z " +"and _ allowed" msgstr "" msgid "/Filters/Colors/Fire..." @@ -969,3 +911,66 @@ msgstr " msgid "(none)" msgstr "(нет)" + +#~ msgid "/Filters/Logulator/Bovination" +#~ msgstr "/Фильтры/Регистратор/Bovination" + +#~ msgid "/Filters/Logulator/Blended" +#~ msgstr "/Фильтры/Регистратор/Смешанный" + +#~ msgid "/Filters/Logulator/Basic I" +#~ msgstr "/Фильтры/Регистратор/Основа I" + +#~ msgid "/Filters/Logulator/3D Outline..." +#~ msgstr "/Фильтры/Регистратор/3D контур..." + +#~ msgid "/Filters/Logulator/Glowing Hot" +#~ msgstr "/Фильтры/Регистратор/Glowing Hot" + +#~ msgid "/Filters/Logulator/Basic II" +#~ msgstr "/Фильтры/Регистратор/Основа II" + +#~ msgid "/Filters/Logulator/Starburst" +#~ msgstr "/Фильтры/Регистратор/Взрыв звезды" + +#~ msgid "/Filters/Logulator/Comic Book" +#~ msgstr "/Фильтры/Регистратор/Комикс" + +#~ msgid "/Filters/Logulator/Chalk" +#~ msgstr "/Фильтры/Регистратор/Мел" + +#~ msgid "/Filters/Logulator/Glossy" +#~ msgstr "/Фильтры/Регистратор/Глянец" + +#~ msgid "/Filters/Logulator/Particle Trace" +#~ msgstr "/Фильтры/Регистратор/След частицы" + +#~ msgid "/Filters/Logulator/Alien Glow" +#~ msgstr "/Фильтры/Регистратор/Чужое свечение" + +#~ msgid "/Filters/Logulator/Cool Metal" +#~ msgstr "/Фильтры/Регистратор/Прохладный метал" + +#~ msgid "/Filters/Logulator/Textured" +#~ msgstr "/Фильтры/Регистратор/Текстурированное" + +#~ msgid "/Filters/Logulator/Gradient Bevel" +#~ msgstr "/Фильтры/Регистратор/Градиентный скос" + +#~ msgid "/Filters/Logulator/Frosty" +#~ msgstr "/Фильтры/Регистратор/Мороз" + +#~ msgid "/Filters/Logulator/Neon" +#~ msgstr "/Фильтры/Регистратор/Неон" + +#~ msgid "/Filters/Logulator/Chrome" +#~ msgstr "/Фильтры/Регистратор/Хром" + +#~ msgid "/Filters/Logulator/Chip Away" +#~ msgstr "/Фильтры/Регистратор/Chip Away" + +#~ msgid "/Filters/Logulator/Starscape" +#~ msgstr "/Фильтры/Регистратор/Starscape" + +#~ msgid "/Filters/Animation/Seth Spin..." +#~ msgstr "/Фильтры/Анимация/Seth Spin..." diff --git a/plug-ins/perl/po/uk.po b/plug-ins/perl/po/uk.po index e738e8e2da..6762c8bc85 100644 --- a/plug-ins/perl/po/uk.po +++ b/plug-ins/perl/po/uk.po @@ -12,15 +12,6 @@ msgstr "" "Content-Type: text/plain; charset=koi8-u\n" "Content-Transfer-Encoding: 8-bit\n" -msgid "/Filters/Logulator/Bovination" -msgstr "/Ф╕льтри/Ре╓стратор/Bovination" - -msgid "/Filters/Logulator/Blended" -msgstr "/Ф╕льтри/Ре╓стратор/Зм╕шаний" - -msgid "/Filters/Logulator/Basic I" -msgstr "/Ф╕льтри/Ре╓стратор/Основний I" - msgid "FATAL: unable to create $tmp: $!\n" msgstr "ПОМИЛКА: невдалося створити $tmp: $!\n" @@ -31,9 +22,6 @@ msgstr "" msgid "/Filters/Web/Prepare for GIF..." msgstr "/Ф╕льтри/WWW/П╕дготувати для GIF..." -msgid "/Filters/Logulator/3D Outline..." -msgstr "/Ф╕льтри/Logulator/3D Контур..." - msgid "/Filters/Animation/Animate Cells..." msgstr "/Ф╕льтри/Ан╕мац╕я/Ан╕мувати ком╕рки..." @@ -53,9 +41,6 @@ msgstr "" msgid "argument type %s expected (not %s)" msgstr "" -msgid "/Filters/Logulator/Glowing Hot" -msgstr "/Ф╕льтри/Ре╓стратор/Glowing Hot" - msgid "Browse" msgstr "Перегляд" @@ -92,9 +77,6 @@ msgstr "" msgid "pixel size mismatch, pdl has %d channel pixels but %d channels are required" msgstr "" -msgid "/Filters/Logulator/Basic II" -msgstr "/Ф╕льтри/Logulator/Основний II" - msgid "Load" msgstr "Завантажити" @@ -203,9 +185,6 @@ msgstr "" msgid "/Image/Alpha/Alpha2Color..." msgstr "/Зображення/Альфа/Альфа в кол╕р..." -msgid "/Filters/Logulator/Starburst" -msgstr "/Ф╕льтри/Logulator/Starburst" - msgid "/Filters/Logulator/SOTA Chrome" msgstr "/Ф╕льтри/Logulator/SOTA Хром" @@ -279,9 +258,6 @@ msgstr "/ msgid "/Guides/To Selection..." msgstr "/Направляюч╕/У вид╕лення..." -msgid "/Filters/Logulator/Comic Book" -msgstr "/Ф╕льтри/Logulator/Ком╕кси" - msgid "/Guides/Remove Guides" msgstr "/Направляюч╕/Видалити" @@ -330,9 +306,6 @@ msgstr " msgid "Illegal default font description for $function: $val\n" msgstr "" -msgid "/Filters/Logulator/Chalk" -msgstr "/Ф╕льтри/Logulator/Крейда" - msgid "unable to convert Gimp::Drawable into Gimp::GDrawable (id %d)" msgstr "" @@ -497,9 +470,6 @@ msgstr "" msgid "dimension mismatch, pdl has dimension %d but at most %d dimensions allowed" msgstr "" -msgid "/Filters/Logulator/Glossy" -msgstr "/Ф╕льтри/Logulator/Глянс" - msgid "WARNING" msgstr "ПОПЕРЕДЖЕННЯ" @@ -515,9 +485,6 @@ msgstr "/ msgid "Unable to convert a reference to type '%s'" msgstr "" -msgid "/Filters/Logulator/Particle Trace" -msgstr "/Ф╕льтри/Logulator/Сл╕д частки" - msgid "argument incompatible with type IMAGE" msgstr "" @@ -542,9 +509,6 @@ msgstr "/ msgid "Color" msgstr "Кол╕р" -msgid "/Filters/Logulator/Alien Glow" -msgstr "/Ф╕льтри/Logulator/Чуже сяйво" - msgid "FATAL: canonicalize_colour did not return a value!" msgstr "" @@ -587,12 +551,12 @@ msgstr "" msgid "perl-arrayref required as datatype for a gimp-array" msgstr "" -msgid "/Xtns/Create_Images" -msgstr "/Розш./Створити_зображення" - msgid "required callback 'query' not found\n" msgstr "" +msgid "/Xtns/Create_Images" +msgstr "/Розш./Створити_зображення" + msgid "Save $name" msgstr "Зберегти $name" @@ -700,15 +664,9 @@ msgstr " msgid "Help" msgstr "Дов╕дка" -msgid "/Filters/Logulator/Cool Metal" -msgstr "/Ф╕льтри/Logulator/Холодний метал" - msgid "/Filters/Logulator/Carved" msgstr "/Ф╕льтри/Logulator/Вир╕зка" -msgid "/Filters/Logulator/Textured" -msgstr "/Ф╕льтри/Logulator/Текстура" - msgid "no font specified, using default" msgstr "шрифту не вказано, використову╓ться типовий" @@ -730,18 +688,15 @@ msgstr "/ msgid "unable to grok colour specification" msgstr "" -msgid "You need at least 2 layers to perform prep4gif" -msgstr "" - msgid "/Edit/Repeat & Duplicate..." msgstr "/Редагування/Повторення та дублювання" +msgid "You need at least 2 layers to perform prep4gif" +msgstr "" + msgid "too many arguments" msgstr "недто багато аргумент╕в" -msgid "/Filters/Logulator/Gradient Bevel" -msgstr "/Ф╕льтри/Logulator/Град╕╓нтний ск╕с" - msgid "-*-helvetica-medium-r-normal-*-34-*-*-*-p-*-iso8859-1" msgstr "-*-helvetica-medium-r-normal-*-34-*-*-*-p-*-koi8-u" @@ -801,9 +756,6 @@ msgstr "( msgid "closing connection %d (%d requests in %g seconds)" msgstr "" -msgid "/Filters/Logulator/Frosty" -msgstr "/Ф╕льтри/Logulator/Мороз" - msgid "/Xtns/Render/Golden Mean..." msgstr "/Розш./В╕зуал╕зац╕я/Золота середина..." @@ -816,14 +768,14 @@ msgstr "/ msgid "server version $Gimp::VERSION started" msgstr "серверну верс╕ю $Gimp::VERSION запущено" -msgid "authorization unnecessary" -msgstr "авторизац╕я непотр╕бна" - msgid "" "$function: calling $AUTOLOAD without specifying the :auto import tag is " "deprecated!\n" msgstr "" +msgid "authorization unnecessary" +msgstr "авторизац╕я непотр╕бна" + msgid "/Filters/Enhance/Warp Sharp..." msgstr "" @@ -860,12 +812,6 @@ msgstr "/ msgid "You can't run this script without an ALPHA CHANNEL!!" msgstr "" -msgid "/Filters/Logulator/Neon" -msgstr "/Ф╕льтри/Logulator/Неон" - -msgid "/Filters/Logulator/Chrome" -msgstr "/Ф╕льтри/Logulator/Хром" - msgid "/Filters/Misc/Magick..." msgstr "/Ф╕льтри/Р╕зне/Маг╕я..." @@ -878,14 +824,11 @@ msgstr "" msgid "Unable to read temporary image tile $tmp: $!" msgstr "" -msgid "export failed" -msgstr "" - msgid "Help for " msgstr "Дов╕дка про " -msgid "/Filters/Logulator/Chip Away" -msgstr "/Ф╕льтри/Logulator/Chip Away" +msgid "export failed" +msgstr "" msgid "dunno how to pass arg type %d" msgstr "" @@ -926,9 +869,6 @@ msgstr "/ msgid "/Filters/Animation/BlowInOut..." msgstr "/Ф╕льтри/Ан╕мац╕я/BlowInOut..." -msgid "/Filters/Logulator/Starscape" -msgstr "/Ф╕льтри/Logulator/Starscape" - msgid "/Filters/Enhance/2x2 Contrast Enhance" msgstr "/Ф╕льтри/Покращення/2х2 Покращення контрасту" @@ -954,3 +894,63 @@ msgstr " msgid "(none)" msgstr "(нема╓)" + +#~ msgid "/Filters/Logulator/Bovination" +#~ msgstr "/Ф╕льтри/Ре╓стратор/Bovination" + +#~ msgid "/Filters/Logulator/Blended" +#~ msgstr "/Ф╕льтри/Ре╓стратор/Зм╕шаний" + +#~ msgid "/Filters/Logulator/Basic I" +#~ msgstr "/Ф╕льтри/Ре╓стратор/Основний I" + +#~ msgid "/Filters/Logulator/3D Outline..." +#~ msgstr "/Ф╕льтри/Logulator/3D Контур..." + +#~ msgid "/Filters/Logulator/Glowing Hot" +#~ msgstr "/Ф╕льтри/Ре╓стратор/Glowing Hot" + +#~ msgid "/Filters/Logulator/Basic II" +#~ msgstr "/Ф╕льтри/Logulator/Основний II" + +#~ msgid "/Filters/Logulator/Starburst" +#~ msgstr "/Ф╕льтри/Logulator/Starburst" + +#~ msgid "/Filters/Logulator/Comic Book" +#~ msgstr "/Ф╕льтри/Logulator/Ком╕кси" + +#~ msgid "/Filters/Logulator/Chalk" +#~ msgstr "/Ф╕льтри/Logulator/Крейда" + +#~ msgid "/Filters/Logulator/Glossy" +#~ msgstr "/Ф╕льтри/Logulator/Глянс" + +#~ msgid "/Filters/Logulator/Particle Trace" +#~ msgstr "/Ф╕льтри/Logulator/Сл╕д частки" + +#~ msgid "/Filters/Logulator/Alien Glow" +#~ msgstr "/Ф╕льтри/Logulator/Чуже сяйво" + +#~ msgid "/Filters/Logulator/Cool Metal" +#~ msgstr "/Ф╕льтри/Logulator/Холодний метал" + +#~ msgid "/Filters/Logulator/Textured" +#~ msgstr "/Ф╕льтри/Logulator/Текстура" + +#~ msgid "/Filters/Logulator/Gradient Bevel" +#~ msgstr "/Ф╕льтри/Logulator/Град╕╓нтний ск╕с" + +#~ msgid "/Filters/Logulator/Frosty" +#~ msgstr "/Ф╕льтри/Logulator/Мороз" + +#~ msgid "/Filters/Logulator/Neon" +#~ msgstr "/Ф╕льтри/Logulator/Неон" + +#~ msgid "/Filters/Logulator/Chrome" +#~ msgstr "/Ф╕льтри/Logulator/Хром" + +#~ msgid "/Filters/Logulator/Chip Away" +#~ msgstr "/Ф╕льтри/Logulator/Chip Away" + +#~ msgid "/Filters/Logulator/Starscape" +#~ msgstr "/Ф╕льтри/Logulator/Starscape"