added -std1 check for DU4

* configure.in: added -std1 check for DU4

* gimptool.in: added strip options

* plug-ins/hrz/hrz.c: #ifndef'd NeXT out munmap call

* plug-ins/maze/maze.c: commented out some debug code differently
so NeXT compiler won't barf.

* configure.in
* po/sv.po: added a preliminary Swedish translation from
Tomas Ogren <stric@ing.umu.se>

-Yosh
This commit is contained in:
Manish Singh
1998-09-09 10:07:21 +00:00
parent 21c343913a
commit bdc82fb50a
10 changed files with 862 additions and 32 deletions

View File

@ -1,3 +1,18 @@
Wed Sep 9 03:02:17 PDT 1998 Manish Singh <yosh@gimp.org>
* configure.in: added -std1 check for DU4
* gimptool.in: added strip options
* plug-ins/hrz/hrz.c: #ifndef'd NeXT out munmap call
* plug-ins/maze/maze.c: commented out some debug code differently
so NeXT compiler won't barf.
* configure.in
* po/sv.po: added a preliminary Swedish translation from
Tomas Ogren <stric@ing.umu.se>
Tue Sep 8 18:28:44 1998 Jay Cox (jaycox@earthlink.net)
* app/brush_generated.c: more carefull when the active brush

View File

@ -404,7 +404,6 @@ app_init_update_status(char *label1val,
if(no_interface == FALSE && no_splash == FALSE && win_initstatus)
{
GdkRectangle area = {0, 0, -1, -1};
if(label1val
&& strcmp(label1val, GTK_LABEL(label1)->label))
{

View File

@ -62,17 +62,9 @@ AC_PROG_MAKE_SET
AC_PROG_CPP
dnl i18n stuff
ALL_LINGUAS=""
ALL_LINGUAS="sv"
AM_GNU_GETTEXT
dnl NeXTStep cc seems to need this
AC_MSG_CHECKING([whether C compiler needs -posix])
AC_TRY_COMPILE([#include <dirent.h>], [DIR *dir;], posix=no, posix=yes)
AC_MSG_RESULT($posix)
if test "$posix" = yes; then
CFLAGS="$CFLAGS -posix"
fi
dnl Check for GTK+
AM_PATH_GTK(1.1.0,,
AC_MSG_ERROR(Test for GTK failed. See the file 'INSTALL' for help.))
@ -99,6 +91,35 @@ if eval "test x$GCC = xyes"; then
fi
fi
dnl DU4 native cc currently needs -std1 for ANSI mode (instead of K&R)
AC_MSG_CHECKING([for extra flags to get ANSI library prototypes])
gimp_save_LIBS=$LIBS
LIBS="$LIBS -lm"
AC_TRY_RUN([#include <math.h>
int main (void) { return (log(1) != log(1.)); }],
AC_MSG_RESULT(none needed),
gimp_save_CFLAGS=$CFLAGS
CFLAGS="$CFLAGS -std1"
AC_TRY_RUN([#include <math.h>
int main (void) { return (log(1) != log(1.)); }],
AC_MSG_RESULT(-std1),
AC_MSG_RESULT()
CFLAGS=$gimp_save_CFLAGS
AC_MSG_WARN([No ANSI prototypes found in library. (-std1 didn't work.)])))
LIBS=$gimp_save_LIBS
dnl NeXTStep cc seems to need this
AC_MSG_CHECKING([for extra flags for POSIX compliance])
AC_TRY_COMPILE([#include <dirent.h>], [DIR *dir;],
AC_MSG_RESULT(none needed),
gimp_save_CFLAGS=$CFLAGS
CFLAGS="$CFLAGS -posix"
AC_TRY_COMPILE([#include <dirent.h>], [DIR *dir;],
AC_MSG_RESULT(-posix),
AC_MSG_RESULT()
CFLAGS=$gimp_save_CFLAGS
AC_MSG_ERROR([Could not determine POSIX flag. (-posix didn't work.)])))
gimp_save_CPPFLAGS="$CPPFLAGS"
gimp_save_LDFLAGS="$LDFLAGS"
gimp_save_LIBS="$LIBS"

View File

@ -43,7 +43,10 @@ The --install options can be prefixed with --install-admin instead to install
a plug-in or script in the site directory instead of a user directory.
For plug-ins which do not use GTK+, the --build and --install options can be
appended with --noui for appropriate settings.
appended with -noui for appropriate settings.
All binary build and install options can be appended with -strip to discard
debugging information.
EOF
exit $1
@ -70,6 +73,10 @@ else
gtk_libs=`$GTK_CONFIG --libs`
fi
if test x${INSTALL+set} != xset ; then
INSTALL='@INSTALL@'
fi
if test x${CC+set} != xset ; then
cc='@CC@'
else
@ -181,22 +188,31 @@ while test $# -gt 0; do
echo -L@libdir@ -lgimp-@LT_RELEASE@ $my_glib_libs
;;
--install-bin | --install-admin-bin \
| --install-bin-strip | --install-admin-bin-strip \
| --install-script | --install-admin-script)
case $1 in
--install-bin)
install_cmd="@INSTALL@ @INSTALL_PROGRAM@"
install_cmd="@INSTALL_PROGRAM@"
install_dir="$HOME/@gimpdir@/plug-ins"
;;
--install-bin-strip)
install_cmd="@INSTALL_PROGRAM@ -s"
install_dir="$HOME/@gimpdir@/plug-ins"
;;
--install-admin-bin)
install_cmd="@INSTALL@ @INSTALL_PROGRAM@"
install_cmd="@INSTALL_PROGRAM@"
install_dir="$plug_in_dir/plug-ins"
;;
--install-admin-bin-strip)
install_cmd="@INSTALL_PROGRAM@ -s"
install_dir="$plug_in_dir/plug-ins"
;;
--install-script)
install_cmd="@INSTALL@ @INSTALL_DATA@"
install_cmd="@INSTALL_DATA@"
install_dir="$HOME/.gimp/scripts"
;;
--install-admin-script)
install_cmd="@INSTALL@ @INSTALL_DATA@"
install_cmd="@INSTALL_DATA@"
install_dir="$data_dir/scripts"
;;
esac
@ -216,8 +232,14 @@ while test $# -gt 0; do
fi
;;
--build | --install | --install-admin \
| --build-noui | --install-noui | --install-admin-noui)
case $1 in
| --build-strip | --install-strip | --install-admin-strip \
| --build-noui | --install-noui | --install-admin-noui \
| --build-noui-strip | --install-noui-strip | --install-admin-noui-strip)
opt=`echo $1 | sed 's/-strip$//'`
if test "x$opt" != "x$1" ; then
cflags=`echo $cflags | sed -e 's/-g //g' -e 's/ -g//g'`
fi
case $opt in
--build | --build-noui)
install_dir=. ;;
--install | --install-noui)
@ -225,7 +247,7 @@ while test $# -gt 0; do
--install-admin | --install-admin-noui)
install_dir="$plug_in_dir/plug-ins" ;;
esac
noui=`echo $1 | sed 's/^.*\(noui\)$/\1/'`
noui=`echo $opt | sed 's/^.*\(noui\)$/\1/'`
if test "$noui" = "noui" ; then
gimp_cflags=`$0 --cflags-noui`
gimp_libs=`$0 --libs-noui`

View File

@ -43,7 +43,10 @@ The --install options can be prefixed with --install-admin instead to install
a plug-in or script in the site directory instead of a user directory.
For plug-ins which do not use GTK+, the --build and --install options can be
appended with --noui for appropriate settings.
appended with -noui for appropriate settings.
All binary build and install options can be appended with -strip to discard
debugging information.
EOF
exit $1
@ -70,6 +73,10 @@ else
gtk_libs=`$GTK_CONFIG --libs`
fi
if test x${INSTALL+set} != xset ; then
INSTALL='@INSTALL@'
fi
if test x${CC+set} != xset ; then
cc='@CC@'
else
@ -181,22 +188,31 @@ while test $# -gt 0; do
echo -L@libdir@ -lgimp-@LT_RELEASE@ $my_glib_libs
;;
--install-bin | --install-admin-bin \
| --install-bin-strip | --install-admin-bin-strip \
| --install-script | --install-admin-script)
case $1 in
--install-bin)
install_cmd="@INSTALL@ @INSTALL_PROGRAM@"
install_cmd="@INSTALL_PROGRAM@"
install_dir="$HOME/@gimpdir@/plug-ins"
;;
--install-bin-strip)
install_cmd="@INSTALL_PROGRAM@ -s"
install_dir="$HOME/@gimpdir@/plug-ins"
;;
--install-admin-bin)
install_cmd="@INSTALL@ @INSTALL_PROGRAM@"
install_cmd="@INSTALL_PROGRAM@"
install_dir="$plug_in_dir/plug-ins"
;;
--install-admin-bin-strip)
install_cmd="@INSTALL_PROGRAM@ -s"
install_dir="$plug_in_dir/plug-ins"
;;
--install-script)
install_cmd="@INSTALL@ @INSTALL_DATA@"
install_cmd="@INSTALL_DATA@"
install_dir="$HOME/.gimp/scripts"
;;
--install-admin-script)
install_cmd="@INSTALL@ @INSTALL_DATA@"
install_cmd="@INSTALL_DATA@"
install_dir="$data_dir/scripts"
;;
esac
@ -216,8 +232,14 @@ while test $# -gt 0; do
fi
;;
--build | --install | --install-admin \
| --build-noui | --install-noui | --install-admin-noui)
case $1 in
| --build-strip | --install-strip | --install-admin-strip \
| --build-noui | --install-noui | --install-admin-noui \
| --build-noui-strip | --install-noui-strip | --install-admin-noui-strip)
opt=`echo $1 | sed 's/-strip$//'`
if test "x$opt" != "x$1" ; then
cflags=`echo $cflags | sed -e 's/-g //g' -e 's/ -g//g'`
fi
case $opt in
--build | --build-noui)
install_dir=. ;;
--install | --install-noui)
@ -225,7 +247,7 @@ while test $# -gt 0; do
--install-admin | --install-admin-noui)
install_dir="$plug_in_dir/plug-ins" ;;
esac
noui=`echo $1 | sed 's/^.*\(noui\)$/\1/'`
noui=`echo $opt | sed 's/^.*\(noui\)$/\1/'`
if test "$noui" = "noui" ; then
gimp_cflags=`$0 --cflags-noui`
gimp_libs=`$0 --libs-noui`

View File

@ -316,7 +316,9 @@ load_image (char *filename)
do_hrz_load(mapped, &pixel_rgn);
/* close the file */
#ifndef NeXT /* @#%@! NeXTStep */
munmap(mapped, 256*240*3);
#endif
/* Tell the GIMP to display the image.
*/

View File

@ -177,13 +177,13 @@ fp_render_preview(GtkWidget *preview,
/*DO SATURATION FIRST*/
if (changewhat != NONEATALL) {
if (M!=m)
if (M!=m) {
for (k=0; k<3; k++)
if (backupP[k] == M)
P[k] = MAX(P[k]+partial*Current.satAdj[JudgeBy][Inten],middle);
else if (backupP[k] == m)
P[k] = MIN(P[k]-partial*Current.satAdj[JudgeBy][Inten],middle);
}
P[0] += partial*Current.redAdj[JudgeBy][Inten];
P[1] += partial*Current.greenAdj[JudgeBy][Inten];
P[2] += partial*Current.blueAdj[JudgeBy][Inten];
@ -203,13 +203,14 @@ fp_render_preview(GtkWidget *preview,
case SATURATION:
for (JudgeBy=BY_HUE; JudgeBy<JUDGE_BY; JudgeBy++)
for (k=0; k<3; k++)
if (M!=m)
if (M!=m) {
if (backupP[k] == M)
P[k] = MAX(P[k]+
partial*tempSat[JudgeBy][Inten],middle);
else if (backupP[k] == m)
P[k] = MIN(P[k]-
partial*tempSat[JudgeBy][Inten],middle);
}
break;
case VALUE:

View File

@ -316,7 +316,9 @@ load_image (char *filename)
do_hrz_load(mapped, &pixel_rgn);
/* close the file */
#ifndef NeXT /* @#%@! NeXTStep */
munmap(mapped, 256*240*3);
#endif
/* Tell the GIMP to display the image.
*/

View File

@ -668,8 +668,8 @@ mask_maze(gint32 drawable_ID, guchar *maz, guint mw, guint mh,
} /* next yy */
} /* next pr sel_rgn tile thing */
/* #ifdef MAZE_DEBUG
maze_dump(maz,mw,mh);
#endif */
#ifdef MAZE_DEBUG
/* maze_dump(maz,mw,mh); */
#endif
} /* mask_maze */
#endif /* 0 */

746
po/sv.po Normal file
View File

@ -0,0 +1,746 @@
# Swedish translation of GIMP 1.1.0
# Copyright (C) 1998 Free Software Foundation, Inc.
# Tomas <20>gren <stric@ing.umu.se>, 1998.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: GIMP 1.1.0\n"
"POT-Creation-Date: 1998-08-29 15:37-0700\n"
"PO-Revision-Date: 1998-09-09 01:40+0200\n"
"Last-Translator: Tomas <20>gren <stric@ing.umu.se>\n"
"Language-Team: Tomas <20>gren <stric@ing.umu.se>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=iso-8859-1\n"
"Content-Transfer-Encoding: 8-bit\n"
#: app/about_dialog.c:151
msgid "About the GIMP"
msgstr "Om GIMP"
#: app/about_dialog.c:194
msgid "-Adobe-Helvetica-Medium-R-Normal--*-140-*-*-*-*-*-*"
msgstr "-Adobe-Helvetica-Medium-R-Normal--*-140-*-*-*-*-*-*"
#: app/about_dialog.c:197
msgid "Version "
msgstr "Version "
#: app/about_dialog.c:198
msgid " brought to you by"
msgstr " presenterat av"
#: app/about_dialog.c:204
msgid "Spencer Kimball and Peter Mattis"
msgstr "Spencer Kimball och Peter Mattis"
#: app/about_dialog.c:237
msgid "Please visit http://www.gimp.org/ for more info"
msgstr "Bes<65>k g<>rna http://www.gimp.org/ f<>r mer information"
#: app/main.c:245
msgid "GIMP version"
msgstr "GIMP version"
#: app/main.c:249
#, c-format
msgid "Usage: %s [option ...] [files ...]\n"
msgstr "Anv<6E>ndning: %s [flagga ...] [fil ...]\n"
#: app/main.c:250
msgid "Valid options are:\n"
msgstr "Giltiga flaggor <20>r:\n"
#: app/main.c:251
msgid " -h --help Output this help.\n"
msgstr " -h --help Skriv ut denna hj<68>lptext.\n"
#: app/main.c:252
msgid " -v --version Output version info.\n"
msgstr " -v --version Skriv ut versionsinformation.\n"
#: app/main.c:253
msgid " -b --batch <commands> Run in batch mode.\n"
msgstr " -b --batch <kommandon> K<>r i fler-jobbs-l<>ge.\n"
#: app/main.c:254
msgid " -g --gimprc <gimprc> Use an alternate gimprc file.\n"
msgstr " -g --gimprc <gimprc> Anv<6E>nd en alternativ gimprc fil.\n"
#: app/main.c:255
msgid " -n --no-interface Run without a user interface.\n"
msgstr " -n --no-interface K<>r utan anv<6E>ndargr<67>nssnitt.\n"
#: app/main.c:256
msgid " -r --restore-session Try to restore saved session.\n"
msgstr " -r --restore-session F<>rs<72>k <20>terst<73>ll sparad session.\n"
#: app/main.c:257
msgid ""
" --no-data Do not load patterns, gradients, palettes, "
"brushes.\n"
msgstr ""
" --no-data Ladda inte in m<>nster, f<>rgskalor, f<>rgpaletter, "
"penslar.\n"
#: app/main.c:258
msgid " --verbose Show startup messages.\n"
msgstr " --verbose Visa startmeddelanden.\n"
#: app/main.c:259
msgid " --no-splash Do not show the startup window.\n"
msgstr " --no-splash Visa inte start-f<>nstret.\n"
#: app/main.c:260
msgid " --no-splash-image Do not add an image to the startup window.\n"
msgstr " --no-splash-image Visa ingen bild i start-f<>nstret.\n"
#: app/main.c:261
msgid ""
" --no-shm Do not use shared memory between GIMP and its "
"plugins.\n"
msgstr ""
" --no-shm Anv<6E>nd inte delat minne mellan GIMP och dess "
"till<6C>gg.\n"
#: app/main.c:262
msgid " --no-xshm Do not use the X Shared Memory extension.\n"
msgstr " --no-xshm Anv<6E>nd inte 'X Shared Memory' till<6C>gget.\n"
#: app/main.c:263
msgid ""
" --console-messages Display warnings to console instead of a dialog "
"box.\n"
msgstr ""
" --console-messages Visa varningsmeddelanden till konsollen, inte ett "
"separat dialogf<67>nster.\n"
#: app/main.c:264
msgid " --debug-handlers Enable debugging signal handlers.\n"
msgstr " --debug-handlers Anv<6E>nd avlusningssignalhanterare.\n"
#: app/main.c:265
msgid ""
" --display <display> Use the designated X display.\n"
"\n"
msgstr ""
" --display <display> Anv<6E>nd en speciell X 'display'.\n"
"\n"
#: app/main.c:266
msgid " --system-gimprc <gimprc> Use an alternate system gimprc file.\n"
msgstr " --system-gimprc <gimprc> Anv<6E>nd en alternativ system gimprc fil.\n"
#: app/main.c:322
msgid "sighup caught"
msgstr "fick signal 'sighup'"
#: app/main.c:325
msgid "sigint caught"
msgstr "fick signal 'sigint'"
#: app/main.c:328
msgid "sigquit caught"
msgstr "fick signal 'sigquit'"
#: app/main.c:331
msgid "sigabrt caught"
msgstr "fick signal 'sigabrt'"
#: app/main.c:334
msgid "sigbus caught"
msgstr "fick signal 'sigbus'"
#: app/main.c:337
msgid "sigsegv caught"
msgstr "fick signal 'sigsegv'"
#: app/main.c:340
msgid "sigpipe caught"
msgstr "fick signal 'sigpipe'"
#: app/main.c:343
msgid "sigterm caught"
msgstr "fick signal 'sigterm'"
#: app/main.c:346
msgid "sigfpe caught"
msgstr "fick signal 'sigfpe'"
#: app/main.c:349
msgid "unknown signal"
msgstr "fick ok<6F>nd signal"
#: app/menus.c:49 app/menus.c:75
msgid "/File/New"
msgstr "/Arkiv/Ny"
#: app/menus.c:50 app/menus.c:76
msgid "/File/Open"
msgstr "/Arkiv/<2F>ppna"
#: app/menus.c:51
msgid "/File/About..."
msgstr "/Arkiv/Om..."
#: app/menus.c:52 app/menus.c:79
msgid "/File/Preferences..."
msgstr "/Arkiv/Inst<73>llningar..."
#: app/menus.c:53
msgid "/File/Tip of the day"
msgstr "/Arkiv/Dagens tips"
#: app/menus.c:54 app/menus.c:65 app/menus.c:70 app/menus.c:80 app/menus.c:85
msgid "/File/---"
msgstr "/Arkiv/---"
#: app/menus.c:55
msgid "/File/Dialogs/Brushes..."
msgstr "/Arkiv/F<>nster/Penslar..."
#: app/menus.c:56
msgid "/File/Dialogs/Patterns..."
msgstr "/Arkiv/F<>nster/M<>nster..."
#: app/menus.c:57
msgid "/File/Dialogs/Palette..."
msgstr "/Arkiv/F<>nster/Palett..."
#: app/menus.c:58
msgid "/File/Dialogs/Gradient Editor..."
msgstr "/Arkiv/F<>nster/F<>rgskale-editor..."
#: app/menus.c:59
msgid "/File/Dialogs/Layers & Channels..."
msgstr "/Arkiv/F<>nster/Lager och kanaler..."
#: app/menus.c:60
msgid "/File/Dialogs/Tool Options..."
msgstr "/Arkiv/F<>nster/Verktygsinst<73>llningar..."
#: app/menus.c:61
msgid "/File/Dialogs/Input Devices..."
msgstr "/Arkiv/F<>nster/Inmatningsenheter"
#: app/menus.c:62
msgid "/File/Dialogs/Device Status..."
msgstr "/Arkiv/F<>nster/Enhetsstatus..."
#: app/menus.c:63
msgid "/File/Dialogs/Document Index..."
msgstr "/Arkiv/F<>nster/Dokumentindex..."
#: app/menus.c:64
msgid "/File/Dialogs/Error Console..."
msgstr "/Arkiv/F<>nster/Felmeddelanden..."
#: app/menus.c:71 app/menus.c:84
msgid "/File/Quit"
msgstr "/Arkiv/Avsluta"
#: app/menus.c:77
msgid "/File/Save"
msgstr "/Arkiv/Spara"
#: app/menus.c:78
msgid "/File/Save as"
msgstr "/Arkiv/Spara som"
#: app/menus.c:83
msgid "/File/Close"
msgstr "/Arkiv/St<53>ng"
#: app/menus.c:87
msgid "/Edit/Cut"
msgstr "/Redigera/Klipp ut"
#: app/menus.c:88
msgid "/Edit/Copy"
msgstr "/Redigera/Kopiera"
#: app/menus.c:89
msgid "/Edit/Paste"
msgstr "/Redigera/Klistra in"
#: app/menus.c:90
msgid "/Edit/Paste Into"
msgstr "/Redigera/Klistra in i"
#: app/menus.c:91
msgid "/Edit/Clear"
msgstr "/Redigera/Rensa"
#: app/menus.c:92
msgid "/Edit/Fill"
msgstr "/Redigera/Fyll"
#: app/menus.c:93
msgid "/Edit/Stroke"
msgstr "/Redigera/Stryk"
#: app/menus.c:94
msgid "/Edit/Undo"
msgstr "/Redigera/<2F>ngra"
#: app/menus.c:95
msgid "/Edit/Redo"
msgstr "/Redigera/G<>r om"
#: app/menus.c:96 app/menus.c:100
msgid "/Edit/---"
msgstr "/Redigera/---"
#: app/menus.c:97
msgid "/Edit/Cut Named"
msgstr "/Redigera/Klipp ut namngiven"
#: app/menus.c:98
msgid "/Edit/Copy Named"
msgstr "/Redigera/Kopiera namngiven"
#: app/menus.c:99
msgid "/Edit/Paste Named"
msgstr "/Redigera/Klistra in namngiven"
#: app/menus.c:102
msgid "/Select/Toggle"
msgstr "/Markera/V<>xla p<>|av"
#: app/menus.c:103
msgid "/Select/Invert"
msgstr "/Markera/Invertera"
#: app/menus.c:104
msgid "/Select/All"
msgstr "/Markera/Allt"
#: app/menus.c:105
msgid "/Select/None"
msgstr "/Markera/Inget"
#: app/menus.c:106
msgid "/Select/Float"
msgstr "/Markera/Flytande"
#: app/menus.c:107
msgid "/Select/Sharpen"
msgstr "/Markera/Sk<53>rpa"
#: app/menus.c:108
msgid "/Select/Border"
msgstr "/Markera/Kant"
#: app/menus.c:109
msgid "/Select/Feather"
msgstr "/Markera/Fj<46>der"
#: app/menus.c:110
msgid "/Select/Grow"
msgstr "/Markera/<2F>ka"
#: app/menus.c:111
msgid "/Select/Shrink"
msgstr "/Markera/Minska"
#: app/menus.c:112
msgid "/Select/Save To Channel"
msgstr "/Markera/Spara till kanal"
#.
#. { "/Select/By Color...", NULL, tools_select_cmd_callback, BY_COLOR_SELECT },
#.
#: app/menus.c:117
msgid "/View/Zoom In"
msgstr "/Visa/Zooma in"
#: app/menus.c:118
msgid "/View/Zoom Out"
msgstr "/Visa/Zooma ut"
#: app/menus.c:119
msgid "/View/Zoom/16:1"
msgstr "/Visa/Zooma/16:1"
#: app/menus.c:120
msgid "/View/Zoom/8:1"
msgstr "/Visa/Zooma/8:1"
#: app/menus.c:121
msgid "/View/Zoom/4:1"
msgstr "/Visa/Zooma/4:1"
#: app/menus.c:122
msgid "/View/Zoom/2:1"
msgstr "/Visa/Zooma/2:1"
#: app/menus.c:123
msgid "/View/Zoom/1:1"
msgstr "/Visa/Zooma/1:1"
#: app/menus.c:124
msgid "/View/Zoom/1:2"
msgstr "/Visa/Zooma/1:2"
#: app/menus.c:125
msgid "/View/Zoom/1:4"
msgstr "/Visa/Zooma/1:4"
#: app/menus.c:126
msgid "/View/Zoom/1:8"
msgstr "/Visa/Zooma/1:8"
#: app/menus.c:127
msgid "/View/Zoom/1:16"
msgstr "/Visa/Zooma/1:16"
#: app/menus.c:128
msgid "/View/Window Info..."
msgstr "/Visa/F<>nsterinformation"
#: app/menus.c:129
msgid "/View/Toggle Rulers"
msgstr "/Visa/Visa linjaler"
#: app/menus.c:130
msgid "/View/Toggle Statusbar"
msgstr "/Visa/Visa statusrad"
#: app/menus.c:131
msgid "/View/Toggle Guides"
msgstr "/Visa/Visa hj<68>lplinjer"
#: app/menus.c:132
msgid "/View/Snap To Guides"
msgstr "/Visa/Sn<53>pp mot hj<68>lplinjer"
#: app/menus.c:133
msgid "/View/---"
msgstr "/Visa/---"
#: app/menus.c:134
msgid "/View/New View"
msgstr "/Visa/Ny vy"
#: app/menus.c:135
msgid "/View/Shrink Wrap"
msgstr "/Visa/Visa optimalt f<>nster"
#: app/menus.c:137
msgid "/Image/Colors/Equalize"
msgstr "/Bild/F<>rger/J<>mna ut"
#: app/menus.c:138
msgid "/Image/Colors/Invert"
msgstr "/Bild/F<>rger/Invertera"
#.
#. { N_("/Image/Colors/Posterize"), NULL, tools_select_cmd_callback, POSTERIZE },
#. { N_("/Image/Colors/Threshold"), NULL, tools_select_cmd_callback, THRESHOLD },
#. { N_("/Image/Colors/---"), NULL, NULL, 0, "<Separator>" },
#. { N_("/Image/Colors/Color Balance"), NULL, tools_select_cmd_callback, COLOR_BALANCE },
#. { N_("/Image/Colors/Brightness-Contrast"), NULL, tools_select_cmd_callback, BRIGHTNESS_CONTRAST },
#. { N_("/Image/Colors/Hue-Saturation"), NULL, tools_select_cmd_callback, 0 },
#. { N_("/Image/Colors/Curves"), NULL, tools_select_cmd_callback, CURVES },
#. { N_("/Image/Colors/Levels"), NULL, tools_select_cmd_callback, LEVELS },
#.
#: app/menus.c:149
msgid "/Image/Colors/---"
msgstr "/Bild/F<>rger/---"
#: app/menus.c:150
msgid "/Image/Colors/Desaturate"
msgstr "/Bild/F<>rger/Avf<76>rga"
#: app/menus.c:151
msgid "/Image/Channel Ops/Duplicate"
msgstr "/Bild/Kanaler/Duplicera"
#: app/menus.c:152
msgid "/Image/Channel Ops/Offset"
msgstr "/Bild/Kanaler/Offset"
#: app/menus.c:153
msgid "/Image/Alpha/Add Alpha Channel"
msgstr "/Bild/Alfa/L<>gg till alfa-kanal"
#. { N_("/Image/Histogram"), NULL, tools_select_cmd_callback, HISTOGRAM},
#: app/menus.c:155 app/menus.c:159 app/menus.c:162 app/menus.c:164
msgid "/Image/---"
msgstr "/Bild/---"
#: app/menus.c:156
msgid "/Image/RGB"
msgstr "/Bild/RGB"
#: app/menus.c:157
msgid "/Image/Grayscale"
msgstr "/Bild/Gr<47>skala"
#: app/menus.c:158
msgid "/Image/Indexed"
msgstr "/Bild/Indexerad"
#: app/menus.c:160
msgid "/Image/Resize"
msgstr "/Bild/<2F>ndra storlek"
#: app/menus.c:161
msgid "/Image/Scale"
msgstr "/Bild/Skala om"
#: app/menus.c:166
msgid "/Layers/Layers & Channels..."
msgstr "/Lager/Lager och kanaler..."
#: app/menus.c:167
msgid "/Layers/Raise Layer"
msgstr "/Lager/H<>j lager"
#: app/menus.c:168
msgid "/Layers/Lower Layer"
msgstr "/Lager/S<>nk lager"
#: app/menus.c:169
msgid "/Layers/Anchor Layer"
msgstr "/Lager/Ankra lager"
#: app/menus.c:170
msgid "/Layers/Merge Visible Layers"
msgstr "/Lager/Sammanfoga synliga lager"
#: app/menus.c:171
msgid "/Layers/Flatten Image"
msgstr "/Lager/Platta till bilden"
#: app/menus.c:172
msgid "/Layers/Alpha To Selection"
msgstr "/Lager/Alfa-kanal till markering"
#: app/menus.c:173
msgid "/Layers/Mask To Selection"
msgstr "/Lager/Mask till markering"
#: app/menus.c:174
msgid "/Layers/Add Alpha Channel"
msgstr "/Lager/L<>gg till alfa-kanal"
#. { N_("/Tools/Rect Select"), "R", tools_select_cmd_callback, RECT_SELECT },
#. { N_("/Tools/Ellipse Select"), "E", tools_select_cmd_callback, ELLIPSE_SELECT },
#. { N_("/Tools/Free Select"), "F", tools_select_cmd_callback, FREE_SELECT },
#. { N_("/Tools/Fuzzy Select"), "Z", tools_select_cmd_callback, FUZZY_SELECT },
#. { N_("/Tools/Bezier Select"), "B", tools_select_cmd_callback, BEZIER_SELECT },
#. { N_("/Tools/Intelligent Scissors"), "I", tools_select_cmd_callback, ISCISSORS },
#. { N_("/Tools/Move"), "M", tools_select_cmd_callback, MOVE },
#. { N_("/Tools/Magnify"), "<shift>M", tools_select_cmd_callback, MAGNIFY },
#. { N_("/Tools/Crop"), "<shift>C", tools_select_cmd_callback, CROP },
#. { N_("/Tools/Transform"), "<shift>T", tools_select_cmd_callback, ROTATE },
#. { N_("/Tools/Flip"), "<shift>F", tools_select_cmd_callback, FLIP_HORZ },
#. { N_("/Tools/Text"), "T", tools_select_cmd_callback, TEXT },
#. { N_("/Tools/Color Picker"), "O", tools_select_cmd_callback, COLOR_PICKER },
#. { N_("/Tools/Bucket Fill"), "<shift>B", tools_select_cmd_callback, BUCKET_FILL },
#. { N_("/Tools/Blend"), "L", tools_select_cmd_callback, BLEND },
#. { N_("/Tools/Paintbrush"), "P", tools_select_cmd_callback, PAINTBRUSH },
#. { N_("/Tools/Pencil"), "<shift>P", tools_select_cmd_callback, PENCIL },
#. { N_("/Tools/Eraser"), "<shift>E", tools_select_cmd_callback, ERASER },
#. { N_("/Tools/Airbrush"), "A", tools_select_cmd_callback, AIRBRUSH },
#. { N_("/Tools/Clone"), "C", tools_select_cmd_callback, CLONE },
#. { N_("/Tools/Convolve"), "V", tools_select_cmd_callback, CONVOLVE },
#. { N_("/Tools/Ink"), "K", tools_select_cmd_callback, INK },
#. { N_("/Tools/Default Colors"), "D", tools_default_colors_cmd_callback, 0 },
#. { N_("/Tools/Swap Colors"), "X", tools_swap_colors_cmd_callback, 0 },
#: app/menus.c:200
msgid "/Tools/Toolbox"
msgstr "/Verktyg/Verktygsl<73>da"
#: app/menus.c:201
msgid "/Tools/---"
msgstr "/Verktyg/---"
#: app/menus.c:202
msgid "/Tools/Default Colors"
msgstr "/Verktyg/Standardf<64>rger"
#: app/menus.c:203
msgid "/Tools/Swap Colors"
msgstr "/Verktyg/Byt f<>rgplats"
#: app/menus.c:204
msgid "/Filters/"
msgstr "/Filter/"
#: app/menus.c:205
msgid "/Filters/Repeat last"
msgstr "/Filter/Upprepa senaste"
#: app/menus.c:206
msgid "/Filters/Re-show last"
msgstr "/Filter/Visa senaste"
#: app/menus.c:207
msgid "/Filters/---"
msgstr "/Filter/---"
#: app/menus.c:209
msgid "/Script-Fu/"
msgstr "/Script-Fu/"
#: app/menus.c:211
msgid "/Dialogs/Brushes..."
msgstr "/F<>nster/Penslar..."
#: app/menus.c:212
msgid "/Dialogs/Patterns..."
msgstr "/F<>nster/M<>nster..."
#: app/menus.c:213
msgid "/Dialogs/Palette..."
msgstr "/F<>nster/Palett..."
#: app/menus.c:214
msgid "/Dialogs/Gradient Editor..."
msgstr "/F<>nster/F<>rgskale-editor"
#: app/menus.c:215
msgid "/Dialogs/Layers & Channels..."
msgstr "/F<>nster/Lager och kanaler..."
#: app/menus.c:216
msgid "/Dialogs/Indexed Palette..."
msgstr "/F<>nster/Indexerad palett..."
#: app/menus.c:217
msgid "/Dialogs/Tool Options..."
msgstr "/F<>nster/Verktygsinst<73>llningar..."
#: app/menus.c:218
msgid "/Dialogs/Input Devices..."
msgstr "/F<>nster/Inmatningsenheter..."
#: app/menus.c:219
msgid "/Dialogs/Device Status..."
msgstr "/F<>nster/Enhetsstatus..."
#: app/menus.c:226
msgid "/Automatic"
msgstr "/Automatiskt"
#: app/menus.c:234
msgid "/By extension"
msgstr "/Per fil<69>ndelse"
#: app/menus.c:347
#, c-format
msgid ""
"Unable to set sensitivity for menu which doesn't exist:\n"
"%s"
msgstr ""
"Kunde inte s<>tta k<>nslighet f<>r meny som inte existerar:\n"
"%s"
#: app/menus.c:372
#, c-format
msgid ""
"Unable to set state for menu which doesn't exist:\n"
"%s"
msgstr ""
"Kunde inte s<>tta tillst<73>nd f<>r meny som inte existerar:\n"
"%s"
#: app/menus.c:414
#, c-format
msgid "Error opening file: %s\n"
msgstr "Kunde inte <20>ppna fil: %s\n"
#: app/menus.c:436 app/menus.c:506
#, c-format
msgid "/File/MRU%02d"
msgstr ""
#: app/regex.c:976
msgid "Success"
msgstr ""
#. REG_NOERROR
#: app/regex.c:977
msgid "No match"
msgstr ""
#. REG_NOMATCH
#: app/regex.c:978
msgid "Invalid regular expression"
msgstr ""
#. REG_BADPAT
#: app/regex.c:979
msgid "Invalid collation character"
msgstr ""
#. REG_ECOLLATE
#: app/regex.c:980
msgid "Invalid character class name"
msgstr ""
#. REG_ECTYPE
#: app/regex.c:981
msgid "Trailing backslash"
msgstr ""
#. REG_EESCAPE
#: app/regex.c:982
msgid "Invalid back reference"
msgstr ""
#. REG_ESUBREG
#: app/regex.c:983
msgid "Unmatched [ or [^"
msgstr ""
#. REG_EBRACK
#: app/regex.c:984
msgid "Unmatched ( or \\("
msgstr ""
#. REG_EPAREN
#: app/regex.c:985
msgid "Unmatched \\{"
msgstr ""
#. REG_EBRACE
#: app/regex.c:986
msgid "Invalid content of \\{\\}"
msgstr ""
#. REG_BADBR
#: app/regex.c:987
msgid "Invalid range end"
msgstr ""
#. REG_ERANGE
#: app/regex.c:988
msgid "Memory exhausted"
msgstr ""
#. REG_ESPACE
#: app/regex.c:989
msgid "Invalid preceding regular expression"
msgstr ""
#. REG_BADRPT
#: app/regex.c:990
msgid "Premature end of regular expression"
msgstr ""
#. REG_EEND
#: app/regex.c:991
msgid "Regular expression too big"
msgstr ""
#. REG_ESIZE
#: app/regex.c:992
msgid "Unmatched ) or \\)"
msgstr ""
#: app/regex.c:5442
msgid "No previous regular expression"
msgstr ""