diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2011-10-21 15:12:13 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2011-10-21 15:12:13 +0200 |
commit | f34fdd3438efc2c66cbd7ceeaf06c70b814342ad (patch) | |
tree | 0917ec6f7a1cb84a5c689a7ebe7988e9a246c938 | |
parent | 3b5e1a089dc3f1193ddc73747524aa24fcab3899 (diff) | |
download | egawk-f34fdd3438efc2c66cbd7ceeaf06c70b814342ad.tar.gz egawk-f34fdd3438efc2c66cbd7ceeaf06c70b814342ad.tar.bz2 egawk-f34fdd3438efc2c66cbd7ceeaf06c70b814342ad.zip |
Add doc target to pc/Makefile.
-rw-r--r-- | pc/ChangeLog | 4 | ||||
-rw-r--r-- | pc/Makefile | 70 | ||||
-rw-r--r-- | po/da.gmo | bin | 48739 -> 48739 bytes | |||
-rw-r--r-- | po/da.po | 94 | ||||
-rw-r--r-- | po/de.gmo | bin | 52166 -> 52166 bytes | |||
-rw-r--r-- | po/de.po | 94 | ||||
-rw-r--r-- | po/es.gmo | bin | 51471 -> 51471 bytes | |||
-rw-r--r-- | po/es.po | 94 | ||||
-rw-r--r-- | po/fi.gmo | bin | 51684 -> 51684 bytes | |||
-rw-r--r-- | po/fi.po | 94 | ||||
-rw-r--r-- | po/fr.gmo | bin | 53311 -> 53311 bytes | |||
-rw-r--r-- | po/fr.po | 94 | ||||
-rw-r--r-- | po/gawk.pot | 94 | ||||
-rw-r--r-- | po/it.gmo | bin | 44316 -> 44316 bytes | |||
-rw-r--r-- | po/it.po | 94 | ||||
-rw-r--r-- | po/ja.gmo | bin | 55596 -> 55596 bytes | |||
-rw-r--r-- | po/ja.po | 94 | ||||
-rw-r--r-- | po/nl.gmo | bin | 49267 -> 49267 bytes | |||
-rw-r--r-- | po/nl.po | 94 | ||||
-rw-r--r-- | po/pl.gmo | bin | 50946 -> 50946 bytes | |||
-rw-r--r-- | po/pl.po | 94 | ||||
-rw-r--r-- | po/sv.gmo | bin | 48752 -> 48752 bytes | |||
-rw-r--r-- | po/sv.po | 94 |
23 files changed, 611 insertions, 497 deletions
diff --git a/pc/ChangeLog b/pc/ChangeLog index 8f676de6..08ed2bf6 100644 --- a/pc/ChangeLog +++ b/pc/ChangeLog @@ -1,3 +1,7 @@ +2011-10-18 Juan Manuel Guerrero <juan.guerrero@gmx.de> + + * Makefile: doc target to create all documentation files. + 2011-09-30 Eli Zaretskii <eliz@gnu.org> * config.h: Update packaging related versions. diff --git a/pc/Makefile b/pc/Makefile index 403a86ec..c6845c38 100644 --- a/pc/Makefile +++ b/pc/Makefile @@ -13,10 +13,11 @@ default: @echo " emx ..... OS/2 32-bit exe [emx/gcc; uses emxlibc.dll] " @echo " emxnt ... NT exe [emx/gcc with RSXNT] " @echo " emxbnd .. OS/2 and DOS 32-bit exe [emx/gcc] " - @echo " mingw32 . Windows32 exe [Mingw32 GNU C] " + @echo " mingw32 . Windows32 exe [Mingw32 GNU C] " @echo " ----------------------------------------------------- " @echo " test .... Perform tests (see README_d/README.pc) " @echo " install . Install gawk under $(prefix)/ " + @echo " doc ..... Create documentation " # Support dropped in 4.0 # - for DJGPP v1.x [DOS 32bit protected-mode executable] @@ -28,7 +29,7 @@ default: # @echo " msc6 .... DOS exe [Microsoft C 6.00a] " # @echo " msc6os2 . OS/2 exe [Microsoft C 6.00a] " # @echo " msc6bnd . OS/2 and DOS exe [Microsoft C 6.00a] " -# @echo " vcWin32 . Windows32 exe [Microsoft Visual C] " +# @echo " vcWin32 . Windows32 exe [Microsoft Visual C] " # Support dropped in 3.0 # - for Microsoft C 5.1 [16bit executable for OS/2 or DOS] # @echo " msc51 DOS exe [Microsoft C 5.1] " @@ -313,3 +314,68 @@ TAGS: tags: ctags awk.h *.y custom.h *.c *.h + +#======================================================================== +#================================= DOC ================================== +#======================================================================== + +DVIS = ./doc/gawk.dvi ./doc/gawkinet.dvi +PDFS = ./doc/gawk.pdf ./doc/gawkinet.pdf +PSS = ./doc/gawk.ps ./doc/gawkinet.ps +HTMLS = ./doc/gawk.html ./doc/gawkinet.html +INFOS = ./doc/gawk.info ./doc/gawkinet.info +TEXINFOS = ./doc/gawk.texi ./doc/gawkinet.texi + +TEXI2DVI = texi2dvi --build-dir=./doc +TEXI2PDF = $(TEXI2DVI) --pdf --batch +DVIPS = dvips +MAKEINFO = makeinfo --no-split --force +MAKEINFOHTML = $(MAKEINFO) --html + +TROFF = groff -t -Tps -U +#SEDME = sed -e "s/^level0 restore/level0 restore flashme 100 72 moveto (Copyright `date '+%m-%d-%y %T'`, FSF, Inc. (all)) show/" \ +# -e "s/^\/level0 save def/\/level0 save def 30 -48 translate/" + +SEDME = sed "s/^\/level0 save def/\/level0 save def 30 -48 translate/" + +SEDME2 = sed "/%%Page: 10 10/,/0 Cg EP/d" + +.SUFFIXES: .dvi .html .info .pdf .ps .texi + +.texi.info: + $(MAKEINFO) -o $@ $< + +.texi.html: + $(MAKEINFOHTML) -o $@ $< + +.texi.dvi: + $(TEXI2DVI) -o $@ $< + +.texi.pdf: + $(TEXI2PDF) -o $@ $< + +.dvi.ps: + $(DVIPS) -o $@ $< + +./doc/awkcard.tr: ./doc/awkcard.in + cd doc + sed "s,SRCDIR,.," < ./awkcard.in > ./awkcard.tr + cd .. + +./doc/awkcard.nc: export GROFF_TMPDIR ?= . +./doc/awkcard.nc: ./doc/macros ./doc/cardfonts ./doc/no.colors ./doc/awkcard.tr ./doc/ad.block ./doc/awkcard.in ./doc/setter.outline + cd doc + $(TROFF) ./macros ./cardfonts ./no.colors awkcard.tr | $(SEDME) | cat ./setter.outline - | $(SEDME2) > awkcard.ps + cd .. + +./doc/awkcard.ps: ./doc/awkcard.nc + cd doc + touch awkcard.nc + cd .. + +./doc/awkcard.pdf: ./doc/awkcard.ps + cd doc + ps2pdf ./awkcard.ps ./awkcard.pdf + cd .. + +doc: $(INFOS) $(DVIS) $(HTMLS) $(PSS) $(PDFS) ./doc/awkcard.ps ./doc/awkcard.pdf Binary files differ@@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: gawk 3.1.83\n" "Report-Msgid-Bugs-To: arnold@skeeve.com\n" -"POT-Creation-Date: 2011-10-09 21:16+0200\n" +"POT-Creation-Date: 2011-10-21 14:43+0200\n" "PO-Revision-Date: 2011-05-22 10:37+0200\n" "Last-Translator: Keld Simonsen <keld@keldix.com>\n" "Language-Team: Danish <dansk@dansk-gruppen.dk>\n" @@ -46,7 +46,7 @@ msgid "attempt to use scalar `%s' as an array" msgstr "forsøg på at bruge skalar '%s' som et array" #: array.c:302 array.c:707 builtin.c:80 builtin.c:1380 builtin.c:1422 -#: builtin.c:1435 builtin.c:1850 builtin.c:1862 eval.c:1135 eval.c:1139 +#: builtin.c:1435 builtin.c:1852 builtin.c:1864 eval.c:1135 eval.c:1139 #: eval.c:1495 eval.c:1812 #, c-format msgid "attempt to use array `%s' in a scalar context" @@ -768,193 +768,197 @@ msgstr "strftime: formatværdi i PROCINFO[\"strftime\"] har numerisk type" msgid "strftime: received non-numeric second argument" msgstr "strftime: fik et ikke-numerisk andet argument" -#: builtin.c:1681 +#: builtin.c:1677 +msgid "strftime: second argument less than 0 or too big for time_t" +msgstr "" + +#: builtin.c:1683 msgid "strftime: received non-string first argument" msgstr "strftime: fik et første argument som ikke er en streng" -#: builtin.c:1687 +#: builtin.c:1689 msgid "strftime: received empty format string" msgstr "strftime: fik en tom formatstreng" -#: builtin.c:1753 +#: builtin.c:1755 msgid "mktime: received non-string argument" msgstr "mktime: fik et argument som ikke er en streng" -#: builtin.c:1770 +#: builtin.c:1772 msgid "mktime: at least one of the values is out of the default range" msgstr "mktime: mindst én af værdierne er udenfor standardområdet" -#: builtin.c:1805 +#: builtin.c:1807 msgid "'system' function not allowed in sandbox mode" msgstr "'system'-funktion ikke tilladt i sandkasse-tilstand" -#: builtin.c:1810 +#: builtin.c:1812 msgid "system: received non-string argument" msgstr "system: fik et argument som ikke er en streng" -#: builtin.c:1865 eval.c:1159 eval.c:1790 eval.c:1803 +#: builtin.c:1867 eval.c:1159 eval.c:1790 eval.c:1803 #, c-format msgid "reference to uninitialized variable `%s'" msgstr "reference til ikke-initieret variabel '%s'" -#: builtin.c:1932 +#: builtin.c:1934 #, c-format msgid "reference to uninitialized field `$%d'" msgstr "reference til ikke-initieret felt '$%d'" -#: builtin.c:2019 +#: builtin.c:2021 msgid "tolower: received non-string argument" msgstr "tolower: fik et argument som ikke er en streng" -#: builtin.c:2053 +#: builtin.c:2055 msgid "toupper: received non-string argument" msgstr "toupper: fik et argument som ikke er en streng" -#: builtin.c:2089 +#: builtin.c:2091 msgid "atan2: received non-numeric first argument" msgstr "atan2: fik et ikke-numerisk første argument" -#: builtin.c:2091 +#: builtin.c:2093 msgid "atan2: received non-numeric second argument" msgstr "atan2: fik et ikke-numerisk andet argument" -#: builtin.c:2110 +#: builtin.c:2112 msgid "sin: received non-numeric argument" msgstr "sin: fik et ikke-numerisk argument" -#: builtin.c:2126 +#: builtin.c:2128 msgid "cos: received non-numeric argument" msgstr "cos: fik et ikke-numerisk argument" -#: builtin.c:2179 +#: builtin.c:2181 msgid "srand: received non-numeric argument" msgstr "srand: fik et ikke-numerisk argument" -#: builtin.c:2210 +#: builtin.c:2212 msgid "match: third argument is not an array" msgstr "match: tredje argument er ikke et array" -#: builtin.c:2474 +#: builtin.c:2476 msgid "gensub: third argument of 0 treated as 1" msgstr "gensub: 0 i tredje argument behandlet som 1" -#: builtin.c:2767 +#: builtin.c:2769 msgid "lshift: received non-numeric first argument" msgstr "lshift: fik et ikke-numerisk første argument" -#: builtin.c:2769 +#: builtin.c:2771 msgid "lshift: received non-numeric second argument" msgstr "lshift: fik et ikke-numerisk andet argument" -#: builtin.c:2775 +#: builtin.c:2777 #, c-format msgid "lshift(%lf, %lf): negative values will give strange results" msgstr "lshift(%lf, %lf): negative værdier vil give mærkelige resultater" -#: builtin.c:2777 +#: builtin.c:2779 #, c-format msgid "lshift(%lf, %lf): fractional values will be truncated" msgstr "lshift(%lf, %lf): kommatalsværdier vil blive trunkeret" -#: builtin.c:2779 +#: builtin.c:2781 #, c-format msgid "lshift(%lf, %lf): too large shift value will give strange results" msgstr "" "lshift(%lf, %lf): for store skifteværdier vil give mærkelige resultater" -#: builtin.c:2804 +#: builtin.c:2806 msgid "rshift: received non-numeric first argument" msgstr "rshift: fik et ikke-numerisk første argument" -#: builtin.c:2806 +#: builtin.c:2808 msgid "rshift: received non-numeric second argument" msgstr "rshift: fik et ikke-numerisk andet argument" -#: builtin.c:2812 +#: builtin.c:2814 #, c-format msgid "rshift(%lf, %lf): negative values will give strange results" msgstr "rshift(%lf, %lf): negative værdier vil give mærkelige resultater" -#: builtin.c:2814 +#: builtin.c:2816 #, c-format msgid "rshift(%lf, %lf): fractional values will be truncated" msgstr "rshift(%lf, %lf): kommatalsværdier vil blive trunkeret" -#: builtin.c:2816 +#: builtin.c:2818 #, c-format msgid "rshift(%lf, %lf): too large shift value will give strange results" msgstr "" "rshift(%lf, %lf): for store skifteværdier vil give mærkelige resultater" -#: builtin.c:2841 +#: builtin.c:2843 msgid "and: received non-numeric first argument" msgstr "and: fik et ikke-numerisk første argument" -#: builtin.c:2843 +#: builtin.c:2845 msgid "and: received non-numeric second argument" msgstr "and: fik et ikke-numerisk andet argument" -#: builtin.c:2849 +#: builtin.c:2851 #, c-format msgid "and(%lf, %lf): negative values will give strange results" msgstr "and(%lf, %lf): negative værdier vil give mærkelige resultater" -#: builtin.c:2851 +#: builtin.c:2853 #, c-format msgid "and(%lf, %lf): fractional values will be truncated" msgstr "and(%lf, %lf): kommatalsværdier vil blive trunkeret" -#: builtin.c:2876 +#: builtin.c:2878 msgid "or: received non-numeric first argument" msgstr "or: fik et ikke-numerisk første argument" -#: builtin.c:2878 +#: builtin.c:2880 msgid "or: received non-numeric second argument" msgstr "or: fik et ikke-numerisk andet argument" -#: builtin.c:2884 +#: builtin.c:2886 #, c-format msgid "or(%lf, %lf): negative values will give strange results" msgstr "or(%lf, %lf): negative værdier vil give mærkelige resultater" -#: builtin.c:2886 +#: builtin.c:2888 #, c-format msgid "or(%lf, %lf): fractional values will be truncated" msgstr "or(%lf, %lf): kommatalsværdier vil blive trunkeret" -#: builtin.c:2914 +#: builtin.c:2916 msgid "xor: received non-numeric first argument" msgstr "xor: fik et ikke-numerisk første argument" -#: builtin.c:2916 +#: builtin.c:2918 msgid "xor: received non-numeric second argument" msgstr "xor: fik et ikke-numerisk andet argument" -#: builtin.c:2922 +#: builtin.c:2924 #, c-format msgid "xor(%lf, %lf): negative values will give strange results" msgstr "xor(%lf, %lf): negative værdier vil give mærkelige resultater" -#: builtin.c:2924 +#: builtin.c:2926 #, c-format msgid "xor(%lf, %lf): fractional values will be truncated" msgstr "xor(%lf, %lf): kommatalsværdier vil blive trunkeret" -#: builtin.c:2948 builtin.c:2954 +#: builtin.c:2950 builtin.c:2956 msgid "compl: received non-numeric argument" msgstr "compl: fik et ikke-numerisk argument" -#: builtin.c:2956 +#: builtin.c:2958 #, c-format msgid "compl(%lf): negative value will give strange results" msgstr "compl(%lf): negative værdier vil give mærkelige resultater" -#: builtin.c:2958 +#: builtin.c:2960 #, c-format msgid "compl(%lf): fractional value will be truncated" msgstr "compl(%lf): kommatalsværdier vil blive trunkeret" -#: builtin.c:3127 +#: builtin.c:3129 #, c-format msgid "dcgettext: `%s' is not a valid locale category" msgstr "dcgettext: '%s' er ikke en gyldig lokalitetskategori" Binary files differ@@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: gawk 4.0.0\n" "Report-Msgid-Bugs-To: arnold@skeeve.com\n" -"POT-Creation-Date: 2011-10-09 21:16+0200\n" +"POT-Creation-Date: 2011-10-21 14:43+0200\n" "PO-Revision-Date: 2011-09-27 16:38+0200\n" "Last-Translator: Philipp Thomas <pth@suse.de>\n" "Language-Team: German <translation-team-de@lists.sourceforge.net>\n" @@ -42,7 +42,7 @@ msgid "attempt to use scalar `%s' as an array" msgstr "Es wird versucht, den Skalar »%s« als Array zu verwenden" #: array.c:302 array.c:707 builtin.c:80 builtin.c:1380 builtin.c:1422 -#: builtin.c:1435 builtin.c:1850 builtin.c:1862 eval.c:1135 eval.c:1139 +#: builtin.c:1435 builtin.c:1852 builtin.c:1864 eval.c:1135 eval.c:1139 #: eval.c:1495 eval.c:1812 #, c-format msgid "attempt to use array `%s' in a scalar context" @@ -786,198 +786,202 @@ msgstr "strftime: Formatwert in PROCINFO[\"strftime\"] ist numerischen Typs" msgid "strftime: received non-numeric second argument" msgstr "strftime: Das zweite Argument ist keine Zahl" -#: builtin.c:1681 +#: builtin.c:1677 +msgid "strftime: second argument less than 0 or too big for time_t" +msgstr "" + +#: builtin.c:1683 msgid "strftime: received non-string first argument" msgstr "strftime: Das erste Argument ist kein String" -#: builtin.c:1687 +#: builtin.c:1689 msgid "strftime: received empty format string" msgstr "strftime: Der Format-String ist leer" -#: builtin.c:1753 +#: builtin.c:1755 msgid "mktime: received non-string argument" msgstr "mktime: Das Argument ist kein String" -#: builtin.c:1770 +#: builtin.c:1772 msgid "mktime: at least one of the values is out of the default range" msgstr "mktime: mindestens einer der Werte ist außerhalb des normalen Bereichs" -#: builtin.c:1805 +#: builtin.c:1807 msgid "'system' function not allowed in sandbox mode" msgstr "Die Funktion »system« ist im Sandbox-Modus nicht erlaubt" -#: builtin.c:1810 +#: builtin.c:1812 msgid "system: received non-string argument" msgstr "system: Das Argument ist kein String" -#: builtin.c:1865 eval.c:1159 eval.c:1790 eval.c:1803 +#: builtin.c:1867 eval.c:1159 eval.c:1790 eval.c:1803 #, c-format msgid "reference to uninitialized variable `%s'" msgstr "Referenz auf die nicht initialisierte Variable »%s«" -#: builtin.c:1932 +#: builtin.c:1934 #, c-format msgid "reference to uninitialized field `$%d'" msgstr "Referenz auf das nicht initialisierte Feld »$%d«" -#: builtin.c:2019 +#: builtin.c:2021 msgid "tolower: received non-string argument" msgstr "tolower: das Argument ist kein String" -#: builtin.c:2053 +#: builtin.c:2055 msgid "toupper: received non-string argument" msgstr "toupper: das Argument ist kein String" -#: builtin.c:2089 +#: builtin.c:2091 msgid "atan2: received non-numeric first argument" msgstr "atan2: das erste Argument ist keine Zahl" -#: builtin.c:2091 +#: builtin.c:2093 msgid "atan2: received non-numeric second argument" msgstr "atan2: das zweite Argument ist keine Zahl" -#: builtin.c:2110 +#: builtin.c:2112 msgid "sin: received non-numeric argument" msgstr "sin: das Argument ist keine Zahl" -#: builtin.c:2126 +#: builtin.c:2128 msgid "cos: received non-numeric argument" msgstr "cos: das Argument ist keine Zahl" -#: builtin.c:2179 +#: builtin.c:2181 msgid "srand: received non-numeric argument" msgstr "srand: das Argument ist keine Zahl" -#: builtin.c:2210 +#: builtin.c:2212 msgid "match: third argument is not an array" msgstr "match: das dritte Argument ist kein Array" -#: builtin.c:2474 +#: builtin.c:2476 msgid "gensub: third argument of 0 treated as 1" msgstr "gensub: 0 als drittes Argument wird als 1 interpretiert" -#: builtin.c:2767 +#: builtin.c:2769 msgid "lshift: received non-numeric first argument" msgstr "lshift: das erste Argument ist keine Zahl" -#: builtin.c:2769 +#: builtin.c:2771 msgid "lshift: received non-numeric second argument" msgstr "lshift: das zweite Argument ist keine Zahl" -#: builtin.c:2775 +#: builtin.c:2777 #, c-format msgid "lshift(%lf, %lf): negative values will give strange results" msgstr "" "lshift(%lf, %lf): Negative Werte werden zu merkwürdigen Ergebnissen führen" -#: builtin.c:2777 +#: builtin.c:2779 #, c-format msgid "lshift(%lf, %lf): fractional values will be truncated" msgstr "lshift(%lf, %lf): Dezimalteil wird abgeschnitten" -#: builtin.c:2779 +#: builtin.c:2781 #, c-format msgid "lshift(%lf, %lf): too large shift value will give strange results" msgstr "" "lshift(%lf, %lf): Zu große Shift-Werte werden zu merkwürdigen Ergebnissen " "führen" -#: builtin.c:2804 +#: builtin.c:2806 msgid "rshift: received non-numeric first argument" msgstr "rshift: das erste Argument ist keine Zahl" -#: builtin.c:2806 +#: builtin.c:2808 msgid "rshift: received non-numeric second argument" msgstr "rshift: das zweite Argument ist keine Zahl" -#: builtin.c:2812 +#: builtin.c:2814 #, c-format msgid "rshift(%lf, %lf): negative values will give strange results" msgstr "" "rshift (%lf, %lf): Negative Werte werden zu merkwürdigen Ergebnissen führen" -#: builtin.c:2814 +#: builtin.c:2816 #, c-format msgid "rshift(%lf, %lf): fractional values will be truncated" msgstr "rshift(%lf, %lf): Dezimalteil wird abgeschnitten" -#: builtin.c:2816 +#: builtin.c:2818 #, c-format msgid "rshift(%lf, %lf): too large shift value will give strange results" msgstr "" "rshift(%lf, %lf): Zu große Shift-Werte werden zu merkwürdigen Ergebnissen " "führen" -#: builtin.c:2841 +#: builtin.c:2843 msgid "and: received non-numeric first argument" msgstr "and: das erste Argument ist keine Zahl" -#: builtin.c:2843 +#: builtin.c:2845 msgid "and: received non-numeric second argument" msgstr "and: das zweite Argument ist keine Zahl" -#: builtin.c:2849 +#: builtin.c:2851 #, c-format msgid "and(%lf, %lf): negative values will give strange results" msgstr "" "and(%lf, %lf): Negative Werte werden zu merkwürdigen Ergebnissen führen" -#: builtin.c:2851 +#: builtin.c:2853 #, c-format msgid "and(%lf, %lf): fractional values will be truncated" msgstr "and(%lf, %lf): Dezimalteil wird abgeschnitten" -#: builtin.c:2876 +#: builtin.c:2878 msgid "or: received non-numeric first argument" msgstr "or: das erste Argument ist keine Zahl" -#: builtin.c:2878 +#: builtin.c:2880 msgid "or: received non-numeric second argument" msgstr "or: das zweite Argument ist keine Zahl" -#: builtin.c:2884 +#: builtin.c:2886 #, c-format msgid "or(%lf, %lf): negative values will give strange results" msgstr "or(%lf, %lf): Negative Werte werden zu merkwürdigen Ergebnissen führen" -#: builtin.c:2886 +#: builtin.c:2888 #, c-format msgid "or(%lf, %lf): fractional values will be truncated" msgstr "or(%lf, %lf): Dezimalteil wird abgeschnitten" -#: builtin.c:2914 +#: builtin.c:2916 msgid "xor: received non-numeric first argument" msgstr "xor: das erste Argument ist keine Zahl" -#: builtin.c:2916 +#: builtin.c:2918 msgid "xor: received non-numeric second argument" msgstr "xor: das zweite Argument ist keine Zahl" -#: builtin.c:2922 +#: builtin.c:2924 #, c-format msgid "xor(%lf, %lf): negative values will give strange results" msgstr "xor(%lf, %lf: Negative Werte werden zu merkwürdigen Ergebnissen führen" -#: builtin.c:2924 +#: builtin.c:2926 #, c-format msgid "xor(%lf, %lf): fractional values will be truncated" msgstr "xor(%lf, %lf): Dezimalteil wird abgeschnitten" -#: builtin.c:2948 builtin.c:2954 +#: builtin.c:2950 builtin.c:2956 msgid "compl: received non-numeric argument" msgstr "compl: das erste Argument ist keine Zahl" -#: builtin.c:2956 +#: builtin.c:2958 #, c-format msgid "compl(%lf): negative value will give strange results" msgstr "compl(%lf): Negativer Wert wird zu merkwürdigen Ergebnissen führen" -#: builtin.c:2958 +#: builtin.c:2960 #, c-format msgid "compl(%lf): fractional value will be truncated" msgstr "compl(%lf): Dezimalteil wird abgeschnitten" -#: builtin.c:3127 +#: builtin.c:3129 #, c-format msgid "dcgettext: `%s' is not a valid locale category" msgstr "dcgettext: »%s« ist keine gültige Locale-Kategorie" Binary files differ@@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: gawk 4.0.0\n" "Report-Msgid-Bugs-To: arnold@skeeve.com\n" -"POT-Creation-Date: 2011-10-09 21:16+0200\n" +"POT-Creation-Date: 2011-10-21 14:43+0200\n" "PO-Revision-Date: 2011-08-14 12:02-0500\n" "Last-Translator: Cristian Othón Martínez Vera <cfuga@cfuga.mx>\n" "Language-Team: Spanish <es@li.org>\n" @@ -41,7 +41,7 @@ msgid "attempt to use scalar `%s' as an array" msgstr "se intentó usar el escalar `%s' como una matriz" #: array.c:302 array.c:707 builtin.c:80 builtin.c:1380 builtin.c:1422 -#: builtin.c:1435 builtin.c:1850 builtin.c:1862 eval.c:1135 eval.c:1139 +#: builtin.c:1435 builtin.c:1852 builtin.c:1864 eval.c:1135 eval.c:1139 #: eval.c:1495 eval.c:1812 #, c-format msgid "attempt to use array `%s' in a scalar context" @@ -785,196 +785,200 @@ msgstr "" msgid "strftime: received non-numeric second argument" msgstr "strftime: el segundo argumento recibido no es númerico" -#: builtin.c:1681 +#: builtin.c:1677 +msgid "strftime: second argument less than 0 or too big for time_t" +msgstr "" + +#: builtin.c:1683 msgid "strftime: received non-string first argument" msgstr "strftime: el primer argumento recibido no es una cadena" -#: builtin.c:1687 +#: builtin.c:1689 msgid "strftime: received empty format string" msgstr "strftime: se recibió una cadena de formato vacía" -#: builtin.c:1753 +#: builtin.c:1755 msgid "mktime: received non-string argument" msgstr "mktime: se recibió un argumento que no es una cadena" -#: builtin.c:1770 +#: builtin.c:1772 msgid "mktime: at least one of the values is out of the default range" msgstr "" "mktime: por lo menos uno de los valores está fuera del rango por defecto" -#: builtin.c:1805 +#: builtin.c:1807 msgid "'system' function not allowed in sandbox mode" msgstr "no se permite la función 'system' en modo sandbox" -#: builtin.c:1810 +#: builtin.c:1812 msgid "system: received non-string argument" msgstr "system: se recibió un argumento que no es una cadena" -#: builtin.c:1865 eval.c:1159 eval.c:1790 eval.c:1803 +#: builtin.c:1867 eval.c:1159 eval.c:1790 eval.c:1803 #, c-format msgid "reference to uninitialized variable `%s'" msgstr "referencia a la variable sin inicializar `%s'" -#: builtin.c:1932 +#: builtin.c:1934 #, c-format msgid "reference to uninitialized field `$%d'" msgstr "referencia al campo sin inicializar `$%d'" -#: builtin.c:2019 +#: builtin.c:2021 msgid "tolower: received non-string argument" msgstr "tolower: se recibió un argumento que no es una cadena" -#: builtin.c:2053 +#: builtin.c:2055 msgid "toupper: received non-string argument" msgstr "toupper: se recibió un argumento que no es una cadena" -#: builtin.c:2089 +#: builtin.c:2091 msgid "atan2: received non-numeric first argument" msgstr "atan2: el primer argumento recibido no es númerico" -#: builtin.c:2091 +#: builtin.c:2093 msgid "atan2: received non-numeric second argument" msgstr "atan2: el segundo argumento recibido no es númerico" -#: builtin.c:2110 +#: builtin.c:2112 msgid "sin: received non-numeric argument" msgstr "sin: se recibió un argumento que no es númerico" -#: builtin.c:2126 +#: builtin.c:2128 msgid "cos: received non-numeric argument" msgstr "cos: se recibió un argumento que no es númerico" -#: builtin.c:2179 +#: builtin.c:2181 msgid "srand: received non-numeric argument" msgstr "srand: se recibió un argumento que no es númerico" -#: builtin.c:2210 +#: builtin.c:2212 msgid "match: third argument is not an array" msgstr "match: el tercer argumento no es una matriz" -#: builtin.c:2474 +#: builtin.c:2476 msgid "gensub: third argument of 0 treated as 1" msgstr "gensub: el tercer argumento de 0 se trata como 1" -#: builtin.c:2767 +#: builtin.c:2769 msgid "lshift: received non-numeric first argument" msgstr "lshift: el primer argumento recibido no es númerico" -#: builtin.c:2769 +#: builtin.c:2771 msgid "lshift: received non-numeric second argument" msgstr "lshift: el segundo argumento recibido no es númerico" -#: builtin.c:2775 +#: builtin.c:2777 #, c-format msgid "lshift(%lf, %lf): negative values will give strange results" msgstr "lshift(%lf, %lf): los valores negativos darán resultados extraños" -#: builtin.c:2777 +#: builtin.c:2779 #, c-format msgid "lshift(%lf, %lf): fractional values will be truncated" msgstr "lshift(%lf, %lf): los valores fraccionarios se truncarán" -#: builtin.c:2779 +#: builtin.c:2781 #, c-format msgid "lshift(%lf, %lf): too large shift value will give strange results" msgstr "" "lshift(%lf, %lf): un valor de desplazamiento muy grande dará resultados " "extraños" -#: builtin.c:2804 +#: builtin.c:2806 msgid "rshift: received non-numeric first argument" msgstr "rshift: el primer argumento recibido no es númerico" -#: builtin.c:2806 +#: builtin.c:2808 msgid "rshift: received non-numeric second argument" msgstr "rshift: el segundo argumento recibido no es númerico" -#: builtin.c:2812 +#: builtin.c:2814 #, c-format msgid "rshift(%lf, %lf): negative values will give strange results" msgstr "rshift(%lf, %lf): los valores negativos darán resultados extraños" -#: builtin.c:2814 +#: builtin.c:2816 #, c-format msgid "rshift(%lf, %lf): fractional values will be truncated" msgstr "rshift(%lf, %lf): los valores fraccionarios serán truncados" -#: builtin.c:2816 +#: builtin.c:2818 #, c-format msgid "rshift(%lf, %lf): too large shift value will give strange results" msgstr "" "rshift(%lf, %lf): un valor de desplazamiento muy grande dará resultados " "extraños" -#: builtin.c:2841 +#: builtin.c:2843 msgid "and: received non-numeric first argument" msgstr "and: el primer argumento recibido no es númerico" -#: builtin.c:2843 +#: builtin.c:2845 msgid "and: received non-numeric second argument" msgstr "and: el segundo argumento recibido no es númerico" -#: builtin.c:2849 +#: builtin.c:2851 #, c-format msgid "and(%lf, %lf): negative values will give strange results" msgstr "and(%lf, %lf): los valores negativos darán resultados extraños" -#: builtin.c:2851 +#: builtin.c:2853 #, c-format msgid "and(%lf, %lf): fractional values will be truncated" msgstr "and(%lf, %lf): los valores fraccionarios serán truncados" -#: builtin.c:2876 +#: builtin.c:2878 msgid "or: received non-numeric first argument" msgstr "or: el primer argumento recibido no es númerico" -#: builtin.c:2878 +#: builtin.c:2880 msgid "or: received non-numeric second argument" msgstr "or: el segundo argumento recibido no es númerico" -#: builtin.c:2884 +#: builtin.c:2886 #, c-format msgid "or(%lf, %lf): negative values will give strange results" msgstr "or(%lf, %lf): los valores negativos darán resultados extraños" -#: builtin.c:2886 +#: builtin.c:2888 #, c-format msgid "or(%lf, %lf): fractional values will be truncated" msgstr "or(%lf, %lf): los valores fraccionarios serán truncados" -#: builtin.c:2914 +#: builtin.c:2916 msgid "xor: received non-numeric first argument" msgstr "xor: el primer argumento recibido no es númerico" -#: builtin.c:2916 +#: builtin.c:2918 msgid "xor: received non-numeric second argument" msgstr "xor: el segundo argumento recibido no es númerico" -#: builtin.c:2922 +#: builtin.c:2924 #, c-format msgid "xor(%lf, %lf): negative values will give strange results" msgstr "xor(%lf, %lf): los valores negativos darán resultados extraños" -#: builtin.c:2924 +#: builtin.c:2926 #, c-format msgid "xor(%lf, %lf): fractional values will be truncated" msgstr "xor(%lf, %lf): los valores fraccionarios se truncarán" -#: builtin.c:2948 builtin.c:2954 +#: builtin.c:2950 builtin.c:2956 msgid "compl: received non-numeric argument" msgstr "compl: se recibió un argumento que no es númerico" -#: builtin.c:2956 +#: builtin.c:2958 #, c-format msgid "compl(%lf): negative value will give strange results" msgstr "compl(%lf): el valor negativo dará resultados extraños" -#: builtin.c:2958 +#: builtin.c:2960 #, c-format msgid "compl(%lf): fractional value will be truncated" msgstr "compl(%lf): el valor fraccionario se truncará" -#: builtin.c:3127 +#: builtin.c:3129 #, c-format msgid "dcgettext: `%s' is not a valid locale category" msgstr "dcgettext: `%s' no es una categoría local válida" Binary files differ@@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: gawk 4.0.0\n" "Report-Msgid-Bugs-To: arnold@skeeve.com\n" -"POT-Creation-Date: 2011-10-09 21:16+0200\n" +"POT-Creation-Date: 2011-10-21 14:43+0200\n" "PO-Revision-Date: 2011-09-12 12:14+0200\n" "Last-Translator: Jorma Karvonen <karvonen.jorma@gmail.com>\n" "Language-Team: Finnish <translation-team-fi@lists.sourceforge.net>\n" @@ -42,7 +42,7 @@ msgid "attempt to use scalar `%s' as an array" msgstr "yritettiin käyttää skalaaria ”%s” taulukkona" #: array.c:302 array.c:707 builtin.c:80 builtin.c:1380 builtin.c:1422 -#: builtin.c:1435 builtin.c:1850 builtin.c:1862 eval.c:1135 eval.c:1139 +#: builtin.c:1435 builtin.c:1852 builtin.c:1864 eval.c:1135 eval.c:1139 #: eval.c:1495 eval.c:1812 #, c-format msgid "attempt to use array `%s' in a scalar context" @@ -772,191 +772,195 @@ msgstr "" msgid "strftime: received non-numeric second argument" msgstr "strftime: toinen vastaanotettu argumentti ei ole numeerinen" -#: builtin.c:1681 +#: builtin.c:1677 +msgid "strftime: second argument less than 0 or too big for time_t" +msgstr "" + +#: builtin.c:1683 msgid "strftime: received non-string first argument" msgstr "strftime: ensimmäinen vastaanotettu argumentti ei ole merkkijono" -#: builtin.c:1687 +#: builtin.c:1689 msgid "strftime: received empty format string" msgstr "strftime: vastaanotettu tyhjä muotomerkkijono" -#: builtin.c:1753 +#: builtin.c:1755 msgid "mktime: received non-string argument" msgstr "mktime: vastaanotettu argumentti ei ole merkkijono" -#: builtin.c:1770 +#: builtin.c:1772 msgid "mktime: at least one of the values is out of the default range" msgstr "mktime: vähintään yksi arvoista on oletuslukualueen ulkopuolella" -#: builtin.c:1805 +#: builtin.c:1807 msgid "'system' function not allowed in sandbox mode" msgstr "”system”-funktio ei ole sallittu hiekkalaatikkotilassa" -#: builtin.c:1810 +#: builtin.c:1812 msgid "system: received non-string argument" msgstr "system: vastaanotettu argumentti ei ole merkkijono" -#: builtin.c:1865 eval.c:1159 eval.c:1790 eval.c:1803 +#: builtin.c:1867 eval.c:1159 eval.c:1790 eval.c:1803 #, c-format msgid "reference to uninitialized variable `%s'" msgstr "viite alustamattomaan muuttujaan ”%s”" -#: builtin.c:1932 +#: builtin.c:1934 #, c-format msgid "reference to uninitialized field `$%d'" msgstr "viite alustamattomaan kenttään ”$%d”" -#: builtin.c:2019 +#: builtin.c:2021 msgid "tolower: received non-string argument" msgstr "tolower: vastaanotettu argumentti ei ole merkkijono" -#: builtin.c:2053 +#: builtin.c:2055 msgid "toupper: received non-string argument" msgstr "toupper: vastaanotettu argumentti ei ole merkkijono" -#: builtin.c:2089 +#: builtin.c:2091 msgid "atan2: received non-numeric first argument" msgstr "atan2: ensimmäinen vastaanotettu argumentti ei ole numeerinen" -#: builtin.c:2091 +#: builtin.c:2093 msgid "atan2: received non-numeric second argument" msgstr "atan2: toinen vastaanotettu argumentti ei ole numeerinen" -#: builtin.c:2110 +#: builtin.c:2112 msgid "sin: received non-numeric argument" msgstr "sin: vastaanotettu argumentti ei ole numeerinen" -#: builtin.c:2126 +#: builtin.c:2128 msgid "cos: received non-numeric argument" msgstr "cos: vastaanotettu argumentti ei ole numeerinen" -#: builtin.c:2179 +#: builtin.c:2181 msgid "srand: received non-numeric argument" msgstr "srand: vastaanotettu argumentti ei ole numeerinen" -#: builtin.c:2210 +#: builtin.c:2212 msgid "match: third argument is not an array" msgstr "match: kolmas argumentti ei ole taulukko" -#: builtin.c:2474 +#: builtin.c:2476 msgid "gensub: third argument of 0 treated as 1" msgstr "gensub: 0-arvoinen kolmas argumentti käsitellään kuin 1" -#: builtin.c:2767 +#: builtin.c:2769 msgid "lshift: received non-numeric first argument" msgstr "lshift: ensimmäinen vastaanotettu argumentti ei ole numeerinen" -#: builtin.c:2769 +#: builtin.c:2771 msgid "lshift: received non-numeric second argument" msgstr "lshift: toinen vastaanotettu argumentti ei ole numeerinen" -#: builtin.c:2775 +#: builtin.c:2777 #, c-format msgid "lshift(%lf, %lf): negative values will give strange results" msgstr "lshift(%lf, %lf): negatiiviset arvot antavat outoja tuloksia" -#: builtin.c:2777 +#: builtin.c:2779 #, c-format msgid "lshift(%lf, %lf): fractional values will be truncated" msgstr "lshift(%lf, %lf): jaosarvot typistetään" -#: builtin.c:2779 +#: builtin.c:2781 #, c-format msgid "lshift(%lf, %lf): too large shift value will give strange results" msgstr "lshift(%lf, %lf): liian suuri siirrosarvo antaa outoja tuloksia" -#: builtin.c:2804 +#: builtin.c:2806 msgid "rshift: received non-numeric first argument" msgstr "rshift: ensimmäinen vastaanotettu argumentti ei ole numeerinen" -#: builtin.c:2806 +#: builtin.c:2808 msgid "rshift: received non-numeric second argument" msgstr "rshift: toinen vastaanotettu argumentti ei ole numeerinen" -#: builtin.c:2812 +#: builtin.c:2814 #, c-format msgid "rshift(%lf, %lf): negative values will give strange results" msgstr "rshift(%lf, %lf): negatiiviset arvot antavat outoja tuloksia" -#: builtin.c:2814 +#: builtin.c:2816 #, c-format msgid "rshift(%lf, %lf): fractional values will be truncated" msgstr "rshift(%lf, %lf): jaosarvot typistetään" -#: builtin.c:2816 +#: builtin.c:2818 #, c-format msgid "rshift(%lf, %lf): too large shift value will give strange results" msgstr "rshift(%lf, %lf): liian suuri siirrosarvo antaa outoja tuloksia" -#: builtin.c:2841 +#: builtin.c:2843 msgid "and: received non-numeric first argument" msgstr "and: ensimmäinen vastaanotettu argumentti ei ole numeerinen" -#: builtin.c:2843 +#: builtin.c:2845 msgid "and: received non-numeric second argument" msgstr "and: toinen vastaanotettu argumentti ei ole numeerinen" -#: builtin.c:2849 +#: builtin.c:2851 #, c-format msgid "and(%lf, %lf): negative values will give strange results" msgstr "and(%lf, %lf): negatiiviset arvot antavat outoja tuloksia" -#: builtin.c:2851 +#: builtin.c:2853 #, c-format msgid "and(%lf, %lf): fractional values will be truncated" msgstr "and(%lf, %lf): jaosarvot typistetään" -#: builtin.c:2876 +#: builtin.c:2878 msgid "or: received non-numeric first argument" msgstr "or: ensimmäinen vastaanotettu argumentti ei ole numeerinen" -#: builtin.c:2878 +#: builtin.c:2880 msgid "or: received non-numeric second argument" msgstr "or: toinen vastaanotettu argumentti ei ole numeerinen" -#: builtin.c:2884 +#: builtin.c:2886 #, c-format msgid "or(%lf, %lf): negative values will give strange results" msgstr "or(%lf, %lf): negatiiviset arvot antavat outoja tuloksia" -#: builtin.c:2886 +#: builtin.c:2888 #, c-format msgid "or(%lf, %lf): fractional values will be truncated" msgstr "or(%lf, %lf): jaosarvot typistetään" -#: builtin.c:2914 +#: builtin.c:2916 msgid "xor: received non-numeric first argument" msgstr "xor: ensimmäinen vastaanotettu argumentti ei ole numeerinen" -#: builtin.c:2916 +#: builtin.c:2918 msgid "xor: received non-numeric second argument" msgstr "xor: toinen vastaanotettu argumentti ei ole numeerinen" -#: builtin.c:2922 +#: builtin.c:2924 #, c-format msgid "xor(%lf, %lf): negative values will give strange results" msgstr "xor(%lf, %lf): negatiiviset arvot antavat outoja tuloksia" -#: builtin.c:2924 +#: builtin.c:2926 #, c-format msgid "xor(%lf, %lf): fractional values will be truncated" msgstr "xor(%lf, %lf): jaosarvot typistetään" -#: builtin.c:2948 builtin.c:2954 +#: builtin.c:2950 builtin.c:2956 msgid "compl: received non-numeric argument" msgstr "compl: vastaanotettu argumentti ei ole numeerinen" -#: builtin.c:2956 +#: builtin.c:2958 #, c-format msgid "compl(%lf): negative value will give strange results" msgstr "compl(%lf): negatiiviset arvot antavat outoja tuloksia" -#: builtin.c:2958 +#: builtin.c:2960 #, c-format msgid "compl(%lf): fractional value will be truncated" msgstr "compl(%lf): jaosarvo typistetään" -#: builtin.c:3127 +#: builtin.c:3129 #, c-format msgid "dcgettext: `%s' is not a valid locale category" msgstr "dcgettext: ”%s” ei ole kelvollinen paikallinen kategoria" Binary files differ@@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: gawk 4.0.0\n" "Report-Msgid-Bugs-To: arnold@skeeve.com\n" -"POT-Creation-Date: 2011-10-09 21:16+0200\n" +"POT-Creation-Date: 2011-10-21 14:43+0200\n" "PO-Revision-Date: 2011-07-16 16:50+0200\n" "Last-Translator: Jean-Philippe Guérard <jean-philippe.guerard@corbeaunoir." "org>\n" @@ -45,7 +45,7 @@ msgid "attempt to use scalar `%s' as an array" msgstr "tentative d'utiliser le scalaire « %s » comme tableau" #: array.c:302 array.c:707 builtin.c:80 builtin.c:1380 builtin.c:1422 -#: builtin.c:1435 builtin.c:1850 builtin.c:1862 eval.c:1135 eval.c:1139 +#: builtin.c:1435 builtin.c:1852 builtin.c:1864 eval.c:1135 eval.c:1139 #: eval.c:1495 eval.c:1812 #, c-format msgid "attempt to use array `%s' in a scalar context" @@ -777,199 +777,203 @@ msgstr "" msgid "strftime: received non-numeric second argument" msgstr "strftime : le second argument n'est pas numérique" -#: builtin.c:1681 +#: builtin.c:1677 +msgid "strftime: second argument less than 0 or too big for time_t" +msgstr "" + +#: builtin.c:1683 msgid "strftime: received non-string first argument" msgstr "strftim : le premier argument n'est pas une chaîne" -#: builtin.c:1687 +#: builtin.c:1689 msgid "strftime: received empty format string" msgstr "strftime : la chaîne de formatage est vide" -#: builtin.c:1753 +#: builtin.c:1755 msgid "mktime: received non-string argument" msgstr "mktime : l'argument n'est pas une chaîne" -#: builtin.c:1770 +#: builtin.c:1772 msgid "mktime: at least one of the values is out of the default range" msgstr "" "mktime : au moins l'une des valeurs est en dehors de la plage par défaut" -#: builtin.c:1805 +#: builtin.c:1807 msgid "'system' function not allowed in sandbox mode" msgstr "La fonction « system » est interdite en isolement (mode sandbox)" -#: builtin.c:1810 +#: builtin.c:1812 msgid "system: received non-string argument" msgstr "system : l'argument n'est pas une chaîne" -#: builtin.c:1865 eval.c:1159 eval.c:1790 eval.c:1803 +#: builtin.c:1867 eval.c:1159 eval.c:1790 eval.c:1803 #, c-format msgid "reference to uninitialized variable `%s'" msgstr "référence à une variable non initialisée « %s »" -#: builtin.c:1932 +#: builtin.c:1934 #, c-format msgid "reference to uninitialized field `$%d'" msgstr "référence à un champ non initialisé « $%d »" -#: builtin.c:2019 +#: builtin.c:2021 msgid "tolower: received non-string argument" msgstr "tolower : l'argument n'est pas une chaîne" -#: builtin.c:2053 +#: builtin.c:2055 msgid "toupper: received non-string argument" msgstr "toupper : l'argument n'est pas une chaîne" -#: builtin.c:2089 +#: builtin.c:2091 msgid "atan2: received non-numeric first argument" msgstr "atan2 : le premier argument n'est pas numérique" -#: builtin.c:2091 +#: builtin.c:2093 msgid "atan2: received non-numeric second argument" msgstr "atan2 : le second argument n'est pas numérique" -#: builtin.c:2110 +#: builtin.c:2112 msgid "sin: received non-numeric argument" msgstr "sin : l'argument n'est pas numérique" -#: builtin.c:2126 +#: builtin.c:2128 msgid "cos: received non-numeric argument" msgstr "cos : l'argument n'est pas numérique" -#: builtin.c:2179 +#: builtin.c:2181 msgid "srand: received non-numeric argument" msgstr "srand : l'argument n'est pas numérique" -#: builtin.c:2210 +#: builtin.c:2212 msgid "match: third argument is not an array" msgstr "match : le 3e argument n'est pas un tableau" -#: builtin.c:2474 +#: builtin.c:2476 msgid "gensub: third argument of 0 treated as 1" msgstr "gensub : le 3e argument vaut 0, il sera traité comme un 1" -#: builtin.c:2767 +#: builtin.c:2769 msgid "lshift: received non-numeric first argument" msgstr "lshift : le premier argument n'est pas numérique" -#: builtin.c:2769 +#: builtin.c:2771 msgid "lshift: received non-numeric second argument" msgstr "lshift : le second argument reçu n'est pas numérique" -#: builtin.c:2775 +#: builtin.c:2777 #, c-format msgid "lshift(%lf, %lf): negative values will give strange results" msgstr "" "lshift(%lf, %lf) : les valeurs négatives donneront des résultats inattendus" -#: builtin.c:2777 +#: builtin.c:2779 #, c-format msgid "lshift(%lf, %lf): fractional values will be truncated" msgstr "lshift(%lf, %lf) : les valeurs non entières seront tronquées" -#: builtin.c:2779 +#: builtin.c:2781 #, c-format msgid "lshift(%lf, %lf): too large shift value will give strange results" msgstr "" "lshift(%lf, %lf) : un décalage trop grand donnera des résultats inattendus" -#: builtin.c:2804 +#: builtin.c:2806 msgid "rshift: received non-numeric first argument" msgstr "rshift : le premier argument n'est pas numérique" -#: builtin.c:2806 +#: builtin.c:2808 msgid "rshift: received non-numeric second argument" msgstr "rshift : le second argument reçu n'est pas numérique" -#: builtin.c:2812 +#: builtin.c:2814 #, c-format msgid "rshift(%lf, %lf): negative values will give strange results" msgstr "" "rshift(%lf, %lf) : les valeurs négatives donneront des résultats inattendus" -#: builtin.c:2814 +#: builtin.c:2816 #, c-format msgid "rshift(%lf, %lf): fractional values will be truncated" msgstr "rshift(%lf, %lf) : les valeurs non entières seront tronquées" -#: builtin.c:2816 +#: builtin.c:2818 #, c-format msgid "rshift(%lf, %lf): too large shift value will give strange results" msgstr "" "rshift(%lf, %lf) : un décalage trop grand donnera des résultats inattendus" -#: builtin.c:2841 +#: builtin.c:2843 msgid "and: received non-numeric first argument" msgstr "and : le premier argument n'est pas numérique" -#: builtin.c:2843 +#: builtin.c:2845 msgid "and: received non-numeric second argument" msgstr "and : le second argument reçu n'est pas numérique" -#: builtin.c:2849 +#: builtin.c:2851 #, c-format msgid "and(%lf, %lf): negative values will give strange results" msgstr "" "and(%lf, %lf) : les valeurs négatives donneront des résultats inattendus" -#: builtin.c:2851 +#: builtin.c:2853 #, c-format msgid "and(%lf, %lf): fractional values will be truncated" msgstr "and(%lf, %lf): les valeurs non entières seront tronquées" -#: builtin.c:2876 +#: builtin.c:2878 msgid "or: received non-numeric first argument" msgstr "or : le premier argument n'est pas numérique" -#: builtin.c:2878 +#: builtin.c:2880 msgid "or: received non-numeric second argument" msgstr "or : le second argument reçu n'est pas numérique" -#: builtin.c:2884 +#: builtin.c:2886 #, c-format msgid "or(%lf, %lf): negative values will give strange results" msgstr "" "or(%lf, %lf) : les valeurs négatives donneront des résultats inattendus" -#: builtin.c:2886 +#: builtin.c:2888 #, c-format msgid "or(%lf, %lf): fractional values will be truncated" msgstr "or(%lf, %lf) : les valeurs non entières seront tronquées" -#: builtin.c:2914 +#: builtin.c:2916 msgid "xor: received non-numeric first argument" msgstr "xor : le premier argument n'est pas numérique" -#: builtin.c:2916 +#: builtin.c:2918 msgid "xor: received non-numeric second argument" msgstr "xor : le second argument reçu n'est pas numérique" -#: builtin.c:2922 +#: builtin.c:2924 #, c-format msgid "xor(%lf, %lf): negative values will give strange results" msgstr "" "xor(%lf, %lf) : les valeurs négatives donneront des résultats inattendus" -#: builtin.c:2924 +#: builtin.c:2926 #, c-format msgid "xor(%lf, %lf): fractional values will be truncated" msgstr "xor(%lf, %lf) : les valeurs non entières seront tronquées" -#: builtin.c:2948 builtin.c:2954 +#: builtin.c:2950 builtin.c:2956 msgid "compl: received non-numeric argument" msgstr "compl : l'argument n'est pas numérique" -#: builtin.c:2956 +#: builtin.c:2958 #, c-format msgid "compl(%lf): negative value will give strange results" msgstr "compl(%lf) : les valeurs négatives donneront des résultats inattendus" -#: builtin.c:2958 +#: builtin.c:2960 #, c-format msgid "compl(%lf): fractional value will be truncated" msgstr "compl(%lf) : les valeurs non entières seront tronquées" -#: builtin.c:3127 +#: builtin.c:3129 #, c-format msgid "dcgettext: `%s' is not a valid locale category" msgstr "dcgettext : « %s » n'est pas dans un catégorie valide de la locale" diff --git a/po/gawk.pot b/po/gawk.pot index d017a0e5..77ea3c80 100644 --- a/po/gawk.pot +++ b/po/gawk.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: gawk 4.0.0a\n" "Report-Msgid-Bugs-To: arnold@skeeve.com\n" -"POT-Creation-Date: 2011-10-09 21:16+0200\n" +"POT-Creation-Date: 2011-10-21 14:43+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -42,7 +42,7 @@ msgid "attempt to use scalar `%s' as an array" msgstr "" #: array.c:302 array.c:707 builtin.c:80 builtin.c:1380 builtin.c:1422 -#: builtin.c:1435 builtin.c:1850 builtin.c:1862 eval.c:1135 eval.c:1139 +#: builtin.c:1435 builtin.c:1852 builtin.c:1864 eval.c:1135 eval.c:1139 #: eval.c:1495 eval.c:1812 #, c-format msgid "attempt to use array `%s' in a scalar context" @@ -742,191 +742,195 @@ msgstr "" msgid "strftime: received non-numeric second argument" msgstr "" -#: builtin.c:1681 +#: builtin.c:1677 +msgid "strftime: second argument less than 0 or too big for time_t" +msgstr "" + +#: builtin.c:1683 msgid "strftime: received non-string first argument" msgstr "" -#: builtin.c:1687 +#: builtin.c:1689 msgid "strftime: received empty format string" msgstr "" -#: builtin.c:1753 +#: builtin.c:1755 msgid "mktime: received non-string argument" msgstr "" -#: builtin.c:1770 +#: builtin.c:1772 msgid "mktime: at least one of the values is out of the default range" msgstr "" -#: builtin.c:1805 +#: builtin.c:1807 msgid "'system' function not allowed in sandbox mode" msgstr "" -#: builtin.c:1810 +#: builtin.c:1812 msgid "system: received non-string argument" msgstr "" -#: builtin.c:1865 eval.c:1159 eval.c:1790 eval.c:1803 +#: builtin.c:1867 eval.c:1159 eval.c:1790 eval.c:1803 #, c-format msgid "reference to uninitialized variable `%s'" msgstr "" -#: builtin.c:1932 +#: builtin.c:1934 #, c-format msgid "reference to uninitialized field `$%d'" msgstr "" -#: builtin.c:2019 +#: builtin.c:2021 msgid "tolower: received non-string argument" msgstr "" -#: builtin.c:2053 +#: builtin.c:2055 msgid "toupper: received non-string argument" msgstr "" -#: builtin.c:2089 +#: builtin.c:2091 msgid "atan2: received non-numeric first argument" msgstr "" -#: builtin.c:2091 +#: builtin.c:2093 msgid "atan2: received non-numeric second argument" msgstr "" -#: builtin.c:2110 +#: builtin.c:2112 msgid "sin: received non-numeric argument" msgstr "" -#: builtin.c:2126 +#: builtin.c:2128 msgid "cos: received non-numeric argument" msgstr "" -#: builtin.c:2179 +#: builtin.c:2181 msgid "srand: received non-numeric argument" msgstr "" -#: builtin.c:2210 +#: builtin.c:2212 msgid "match: third argument is not an array" msgstr "" -#: builtin.c:2474 +#: builtin.c:2476 msgid "gensub: third argument of 0 treated as 1" msgstr "" -#: builtin.c:2767 +#: builtin.c:2769 msgid "lshift: received non-numeric first argument" msgstr "" -#: builtin.c:2769 +#: builtin.c:2771 msgid "lshift: received non-numeric second argument" msgstr "" -#: builtin.c:2775 +#: builtin.c:2777 #, c-format msgid "lshift(%lf, %lf): negative values will give strange results" msgstr "" -#: builtin.c:2777 +#: builtin.c:2779 #, c-format msgid "lshift(%lf, %lf): fractional values will be truncated" msgstr "" -#: builtin.c:2779 +#: builtin.c:2781 #, c-format msgid "lshift(%lf, %lf): too large shift value will give strange results" msgstr "" -#: builtin.c:2804 +#: builtin.c:2806 msgid "rshift: received non-numeric first argument" msgstr "" -#: builtin.c:2806 +#: builtin.c:2808 msgid "rshift: received non-numeric second argument" msgstr "" -#: builtin.c:2812 +#: builtin.c:2814 #, c-format msgid "rshift(%lf, %lf): negative values will give strange results" msgstr "" -#: builtin.c:2814 +#: builtin.c:2816 #, c-format msgid "rshift(%lf, %lf): fractional values will be truncated" msgstr "" -#: builtin.c:2816 +#: builtin.c:2818 #, c-format msgid "rshift(%lf, %lf): too large shift value will give strange results" msgstr "" -#: builtin.c:2841 +#: builtin.c:2843 msgid "and: received non-numeric first argument" msgstr "" -#: builtin.c:2843 +#: builtin.c:2845 msgid "and: received non-numeric second argument" msgstr "" -#: builtin.c:2849 +#: builtin.c:2851 #, c-format msgid "and(%lf, %lf): negative values will give strange results" msgstr "" -#: builtin.c:2851 +#: builtin.c:2853 #, c-format msgid "and(%lf, %lf): fractional values will be truncated" msgstr "" -#: builtin.c:2876 +#: builtin.c:2878 msgid "or: received non-numeric first argument" msgstr "" -#: builtin.c:2878 +#: builtin.c:2880 msgid "or: received non-numeric second argument" msgstr "" -#: builtin.c:2884 +#: builtin.c:2886 #, c-format msgid "or(%lf, %lf): negative values will give strange results" msgstr "" -#: builtin.c:2886 +#: builtin.c:2888 #, c-format msgid "or(%lf, %lf): fractional values will be truncated" msgstr "" -#: builtin.c:2914 +#: builtin.c:2916 msgid "xor: received non-numeric first argument" msgstr "" -#: builtin.c:2916 +#: builtin.c:2918 msgid "xor: received non-numeric second argument" msgstr "" -#: builtin.c:2922 +#: builtin.c:2924 #, c-format msgid "xor(%lf, %lf): negative values will give strange results" msgstr "" -#: builtin.c:2924 +#: builtin.c:2926 #, c-format msgid "xor(%lf, %lf): fractional values will be truncated" msgstr "" -#: builtin.c:2948 builtin.c:2954 +#: builtin.c:2950 builtin.c:2956 msgid "compl: received non-numeric argument" msgstr "" -#: builtin.c:2956 +#: builtin.c:2958 #, c-format msgid "compl(%lf): negative value will give strange results" msgstr "" -#: builtin.c:2958 +#: builtin.c:2960 #, c-format msgid "compl(%lf): fractional value will be truncated" msgstr "" -#: builtin.c:3127 +#: builtin.c:3129 #, c-format msgid "dcgettext: `%s' is not a valid locale category" msgstr "" Binary files differ@@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: gawk 3.1.81\n" "Report-Msgid-Bugs-To: arnold@skeeve.com\n" -"POT-Creation-Date: 2011-10-09 21:16+0200\n" +"POT-Creation-Date: 2011-10-21 14:43+0200\n" "PO-Revision-Date: 2011-03-19 16:52+0100\n" "Last-Translator: Antonio Colombo <azc100@gmail.com>\n" "Language-Team: Italian <it@li.org>\n" @@ -40,7 +40,7 @@ msgid "attempt to use scalar `%s' as an array" msgstr "tentativo di usare scalare '%s' come vettore" #: array.c:302 array.c:707 builtin.c:80 builtin.c:1380 builtin.c:1422 -#: builtin.c:1435 builtin.c:1850 builtin.c:1862 eval.c:1135 eval.c:1139 +#: builtin.c:1435 builtin.c:1852 builtin.c:1864 eval.c:1135 eval.c:1139 #: eval.c:1495 eval.c:1812 #, c-format msgid "attempt to use array `%s' in a scalar context" @@ -767,191 +767,195 @@ msgstr "" msgid "strftime: received non-numeric second argument" msgstr "strftime: il secondo argomento non numerico" -#: builtin.c:1681 +#: builtin.c:1677 +msgid "strftime: second argument less than 0 or too big for time_t" +msgstr "" + +#: builtin.c:1683 msgid "strftime: received non-string first argument" msgstr "strftime: il primo argomento non una stringa" -#: builtin.c:1687 +#: builtin.c:1689 msgid "strftime: received empty format string" msgstr "strftime: 'format' una stringa nulla" -#: builtin.c:1753 +#: builtin.c:1755 msgid "mktime: received non-string argument" msgstr "mktime: l'argomento non una stringa" -#: builtin.c:1770 +#: builtin.c:1772 msgid "mktime: at least one of the values is out of the default range" msgstr "mktime: almeno un valore fuori dall'intervallo di default" -#: builtin.c:1805 +#: builtin.c:1807 msgid "'system' function not allowed in sandbox mode" msgstr "la funzione 'system' non permessa in modo 'sandbox'" -#: builtin.c:1810 +#: builtin.c:1812 msgid "system: received non-string argument" msgstr "system: l'argomento non una stringa" -#: builtin.c:1865 eval.c:1159 eval.c:1790 eval.c:1803 +#: builtin.c:1867 eval.c:1159 eval.c:1790 eval.c:1803 #, c-format msgid "reference to uninitialized variable `%s'" msgstr "riferimento a variabile non inizializzata `%s'" -#: builtin.c:1932 +#: builtin.c:1934 #, c-format msgid "reference to uninitialized field `$%d'" msgstr "riferimento a variabile non inizializzata `$%d'" -#: builtin.c:2019 +#: builtin.c:2021 msgid "tolower: received non-string argument" msgstr "tolower: l'argomento non una stringa" -#: builtin.c:2053 +#: builtin.c:2055 msgid "toupper: received non-string argument" msgstr "toupper: l'argomento non una stringa" -#: builtin.c:2089 +#: builtin.c:2091 msgid "atan2: received non-numeric first argument" msgstr "atan2: il primo argomento non numerico" -#: builtin.c:2091 +#: builtin.c:2093 msgid "atan2: received non-numeric second argument" msgstr "atan2: il secondo argomento non numerico" -#: builtin.c:2110 +#: builtin.c:2112 msgid "sin: received non-numeric argument" msgstr "sin: l'argomento non numerico" -#: builtin.c:2126 +#: builtin.c:2128 msgid "cos: received non-numeric argument" msgstr "cos: l'argomento non numerico" -#: builtin.c:2179 +#: builtin.c:2181 msgid "srand: received non-numeric argument" msgstr "srand: l'argomento non numerico" -#: builtin.c:2210 +#: builtin.c:2212 msgid "match: third argument is not an array" msgstr "match: il terzo argomento non un vettore" -#: builtin.c:2474 +#: builtin.c:2476 msgid "gensub: third argument of 0 treated as 1" msgstr "gensub: il terzo argomento 0, trattato come 1" -#: builtin.c:2767 +#: builtin.c:2769 msgid "lshift: received non-numeric first argument" msgstr "lshift: il primo argomento non numerico" -#: builtin.c:2769 +#: builtin.c:2771 msgid "lshift: received non-numeric second argument" msgstr "lshift: il secondo argomento non numerico" -#: builtin.c:2775 +#: builtin.c:2777 #, c-format msgid "lshift(%lf, %lf): negative values will give strange results" msgstr "lshift(%lf, %lf): valori negativi daranno risultati strani" -#: builtin.c:2777 +#: builtin.c:2779 #, c-format msgid "lshift(%lf, %lf): fractional values will be truncated" msgstr "lshift(%lf, %lf): valori con decimali verranno troncati" -#: builtin.c:2779 +#: builtin.c:2781 #, c-format msgid "lshift(%lf, %lf): too large shift value will give strange results" msgstr "lshift(%lf, %lf): valori troppo alti daranno risultati strani" -#: builtin.c:2804 +#: builtin.c:2806 msgid "rshift: received non-numeric first argument" msgstr "rshift: il primo argomento non numerico" -#: builtin.c:2806 +#: builtin.c:2808 msgid "rshift: received non-numeric second argument" msgstr "rshift: il secondo argomento non numerico" -#: builtin.c:2812 +#: builtin.c:2814 #, c-format msgid "rshift(%lf, %lf): negative values will give strange results" msgstr "rshift(%lf, %lf): valori negativi daranno risultati strani" -#: builtin.c:2814 +#: builtin.c:2816 #, c-format msgid "rshift(%lf, %lf): fractional values will be truncated" msgstr "rshift(%lf, %lf): valori con decimali verranno troncati" -#: builtin.c:2816 +#: builtin.c:2818 #, c-format msgid "rshift(%lf, %lf): too large shift value will give strange results" msgstr "rshift(%lf, %lf): valori troppo alti daranno risultati strani" -#: builtin.c:2841 +#: builtin.c:2843 msgid "and: received non-numeric first argument" msgstr "and: il primo argomento non numerico" -#: builtin.c:2843 +#: builtin.c:2845 msgid "and: received non-numeric second argument" msgstr "and: il secondo argomento non numerico" -#: builtin.c:2849 +#: builtin.c:2851 #, c-format msgid "and(%lf, %lf): negative values will give strange results" msgstr "and(%lf, %lf): valori negativi daranno risultati strani" -#: builtin.c:2851 +#: builtin.c:2853 #, c-format msgid "and(%lf, %lf): fractional values will be truncated" msgstr "and(%lf, %lf): valori con decimali verranno troncati" -#: builtin.c:2876 +#: builtin.c:2878 msgid "or: received non-numeric first argument" msgstr "or: il primo argomento non numerico" -#: builtin.c:2878 +#: builtin.c:2880 msgid "or: received non-numeric second argument" msgstr "or: il secondo argomento non numerico" -#: builtin.c:2884 +#: builtin.c:2886 #, c-format msgid "or(%lf, %lf): negative values will give strange results" msgstr "or(%lf, %lf): valori negativi daranno risultati strani" -#: builtin.c:2886 +#: builtin.c:2888 #, c-format msgid "or(%lf, %lf): fractional values will be truncated" msgstr "or(%lf, %lf): valori con decimali verranno troncati" -#: builtin.c:2914 +#: builtin.c:2916 msgid "xor: received non-numeric first argument" msgstr "xor: il primo argomento non numerico" -#: builtin.c:2916 +#: builtin.c:2918 msgid "xor: received non-numeric second argument" msgstr "xor: il secondo argomento non numerico" -#: builtin.c:2922 +#: builtin.c:2924 #, c-format msgid "xor(%lf, %lf): negative values will give strange results" msgstr "xor(%lf, %lf): valori negativi daranno risultati strani" -#: builtin.c:2924 +#: builtin.c:2926 #, c-format msgid "xor(%lf, %lf): fractional values will be truncated" msgstr "xor(%lf, %lf): valori con decimali verranno troncati" -#: builtin.c:2948 builtin.c:2954 +#: builtin.c:2950 builtin.c:2956 msgid "compl: received non-numeric argument" msgstr "compl: l'argomento non numerico" -#: builtin.c:2956 +#: builtin.c:2958 #, c-format msgid "compl(%lf): negative value will give strange results" msgstr "compl(%lf): valore negativo dar risultati strani" -#: builtin.c:2958 +#: builtin.c:2960 #, c-format msgid "compl(%lf): fractional value will be truncated" msgstr "compl(%lf): valore con decimali verr troncato" -#: builtin.c:3127 +#: builtin.c:3129 #, c-format msgid "dcgettext: `%s' is not a valid locale category" msgstr "dcgettext: `%s' non una categoria 'locale' valida" Binary files differ@@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: gawk 4.0.0\n" "Report-Msgid-Bugs-To: arnold@skeeve.com\n" -"POT-Creation-Date: 2011-10-09 21:16+0200\n" +"POT-Creation-Date: 2011-10-21 14:43+0200\n" "PO-Revision-Date: 2011-07-17 08:28+0900\n" "Last-Translator: Yasuaki Taniguchi <yasuakit@gmail.com>\n" "Language-Team: Japanese <translation-team-ja@lists.sourceforge.net>\n" @@ -43,7 +43,7 @@ msgid "attempt to use scalar `%s' as an array" msgstr "スカラー `%s' を配列として使用する試みです" #: array.c:302 array.c:707 builtin.c:80 builtin.c:1380 builtin.c:1422 -#: builtin.c:1435 builtin.c:1850 builtin.c:1862 eval.c:1135 eval.c:1139 +#: builtin.c:1435 builtin.c:1852 builtin.c:1864 eval.c:1135 eval.c:1139 #: eval.c:1495 eval.c:1812 #, c-format msgid "attempt to use array `%s' in a scalar context" @@ -758,191 +758,195 @@ msgstr "strftime: PROCINFO[\"strftime\"] の書式の値は数値型です" msgid "strftime: received non-numeric second argument" msgstr "strftime: 非数値の第二引数を受け取りました" -#: builtin.c:1681 +#: builtin.c:1677 +msgid "strftime: second argument less than 0 or too big for time_t" +msgstr "" + +#: builtin.c:1683 msgid "strftime: received non-string first argument" msgstr "strftime: 非文字列の第一引数を受け取りました" -#: builtin.c:1687 +#: builtin.c:1689 msgid "strftime: received empty format string" msgstr "strftime: 空の書式文字列を受け取りました" -#: builtin.c:1753 +#: builtin.c:1755 msgid "mktime: received non-string argument" msgstr "mktime: 非文字列引数を受け取りました" -#: builtin.c:1770 +#: builtin.c:1772 msgid "mktime: at least one of the values is out of the default range" msgstr "mktime: 一つ以上の値がデフォルトの範囲を超えています" -#: builtin.c:1805 +#: builtin.c:1807 msgid "'system' function not allowed in sandbox mode" msgstr "サンドボックスモードでは 'system' 関数は許可されていません" -#: builtin.c:1810 +#: builtin.c:1812 msgid "system: received non-string argument" msgstr "system: 文字列では無い引数を受け取りました" -#: builtin.c:1865 eval.c:1159 eval.c:1790 eval.c:1803 +#: builtin.c:1867 eval.c:1159 eval.c:1790 eval.c:1803 #, c-format msgid "reference to uninitialized variable `%s'" msgstr "初期化されていない変数 `%s' への参照です" -#: builtin.c:1932 +#: builtin.c:1934 #, c-format msgid "reference to uninitialized field `$%d'" msgstr "初期化されていないフィールド `$%d' への参照です" -#: builtin.c:2019 +#: builtin.c:2021 msgid "tolower: received non-string argument" msgstr "tolower: 非文字列引数を受け取りました" -#: builtin.c:2053 +#: builtin.c:2055 msgid "toupper: received non-string argument" msgstr "toupper: 非文字列引数を受け取りました" -#: builtin.c:2089 +#: builtin.c:2091 msgid "atan2: received non-numeric first argument" msgstr "atan2: 非数値の第一引数を受け取りました" -#: builtin.c:2091 +#: builtin.c:2093 msgid "atan2: received non-numeric second argument" msgstr "atan2: 非数値の第二引数を受け取りました" -#: builtin.c:2110 +#: builtin.c:2112 msgid "sin: received non-numeric argument" msgstr "sin: 非数値の引数を受け取りました" -#: builtin.c:2126 +#: builtin.c:2128 msgid "cos: received non-numeric argument" msgstr "cos: 非数値の引数を受け取りました" -#: builtin.c:2179 +#: builtin.c:2181 msgid "srand: received non-numeric argument" msgstr "srand: 非数値の引数を受け取りました" -#: builtin.c:2210 +#: builtin.c:2212 msgid "match: third argument is not an array" msgstr "match: 第三引数が配列ではありません" -#: builtin.c:2474 +#: builtin.c:2476 msgid "gensub: third argument of 0 treated as 1" msgstr "gensub: 第三引数が 0 です。1 を代わりに使用します" -#: builtin.c:2767 +#: builtin.c:2769 msgid "lshift: received non-numeric first argument" msgstr "lshift: 非数値の第一引数を受け取りました" -#: builtin.c:2769 +#: builtin.c:2771 msgid "lshift: received non-numeric second argument" msgstr "lshift: 非数値の第二引数を受け取りました" -#: builtin.c:2775 +#: builtin.c:2777 #, c-format msgid "lshift(%lf, %lf): negative values will give strange results" msgstr "lshift(%lf, %lf): 負の数値を使用すると異常な結果になります" -#: builtin.c:2777 +#: builtin.c:2779 #, c-format msgid "lshift(%lf, %lf): fractional values will be truncated" msgstr "lshift(%lf, %lf): 小数点以下は切り捨てられます" -#: builtin.c:2779 +#: builtin.c:2781 #, c-format msgid "lshift(%lf, %lf): too large shift value will give strange results" msgstr "lshift(%lf, %lf): シフト値が大き過ぎると異常な結果になります" -#: builtin.c:2804 +#: builtin.c:2806 msgid "rshift: received non-numeric first argument" msgstr "rshift: 非数値の第一引数を受け取りました" -#: builtin.c:2806 +#: builtin.c:2808 msgid "rshift: received non-numeric second argument" msgstr "rshift: 非数値の第二引数を受け取りました" -#: builtin.c:2812 +#: builtin.c:2814 #, c-format msgid "rshift(%lf, %lf): negative values will give strange results" msgstr "rshift(%lf, %lf): 負の数値を使用すると異常な結果になります" -#: builtin.c:2814 +#: builtin.c:2816 #, c-format msgid "rshift(%lf, %lf): fractional values will be truncated" msgstr "rshift(%lf, %lf): 小数点以下は切り捨てられます" -#: builtin.c:2816 +#: builtin.c:2818 #, c-format msgid "rshift(%lf, %lf): too large shift value will give strange results" msgstr "rshift(%lf, %lf): シフト値が大き過ぎると異常な結果になります" -#: builtin.c:2841 +#: builtin.c:2843 msgid "and: received non-numeric first argument" msgstr "and: 非数値の第一引数を受け取りました" -#: builtin.c:2843 +#: builtin.c:2845 msgid "and: received non-numeric second argument" msgstr "and: 非数値の第二引数を受け取りました" -#: builtin.c:2849 +#: builtin.c:2851 #, c-format msgid "and(%lf, %lf): negative values will give strange results" msgstr "and(%lf, %lf): 負の数値を使用すると異常な結果になります" -#: builtin.c:2851 +#: builtin.c:2853 #, c-format msgid "and(%lf, %lf): fractional values will be truncated" msgstr "and(%lf, %lf): 小数点以下は切り捨てられます" -#: builtin.c:2876 +#: builtin.c:2878 msgid "or: received non-numeric first argument" msgstr "or: 非数値の第一引数を受け取りました" -#: builtin.c:2878 +#: builtin.c:2880 msgid "or: received non-numeric second argument" msgstr "or: 非数値の第二引数を受け取りました" -#: builtin.c:2884 +#: builtin.c:2886 #, c-format msgid "or(%lf, %lf): negative values will give strange results" msgstr "or(%lf, %lf): 負の数値を使用すると異常な結果になります" -#: builtin.c:2886 +#: builtin.c:2888 #, c-format msgid "or(%lf, %lf): fractional values will be truncated" msgstr "or(%lf, %lf): 小数点以下は切り捨てられます" -#: builtin.c:2914 +#: builtin.c:2916 msgid "xor: received non-numeric first argument" msgstr "xor: 非数値の第一引数を受け取りました" -#: builtin.c:2916 +#: builtin.c:2918 msgid "xor: received non-numeric second argument" msgstr "xor: 非数値の第二引数を受け取りました" -#: builtin.c:2922 +#: builtin.c:2924 #, c-format msgid "xor(%lf, %lf): negative values will give strange results" msgstr "xor(%lf, %lf): 負の数値を使用すると異常な結果になります" -#: builtin.c:2924 +#: builtin.c:2926 #, c-format msgid "xor(%lf, %lf): fractional values will be truncated" msgstr "xor(%lf, %lf): 小数点以下は切り捨てられます" -#: builtin.c:2948 builtin.c:2954 +#: builtin.c:2950 builtin.c:2956 msgid "compl: received non-numeric argument" msgstr "compl: 非数値の引数を受け取りました" -#: builtin.c:2956 +#: builtin.c:2958 #, c-format msgid "compl(%lf): negative value will give strange results" msgstr "compl(%lf): 負の数値を使用すると異常な結果になります" -#: builtin.c:2958 +#: builtin.c:2960 #, c-format msgid "compl(%lf): fractional value will be truncated" msgstr "compl(%lf): 小数点以下は切り捨てられます" -#: builtin.c:3127 +#: builtin.c:3129 #, c-format msgid "dcgettext: `%s' is not a valid locale category" msgstr "dcgettext: `%s' は無効なロケール区分です" Binary files differ@@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: gawk 4.0.0\n" "Report-Msgid-Bugs-To: arnold@skeeve.com\n" -"POT-Creation-Date: 2011-10-09 21:16+0200\n" +"POT-Creation-Date: 2011-10-21 14:43+0200\n" "PO-Revision-Date: 2011-07-17 21:44+0200\n" "Last-Translator: Benno Schulenberg <benno@vertaalt.nl>\n" "Language-Team: Dutch <vertaling@vrijschrift.org>\n" @@ -46,7 +46,7 @@ msgid "attempt to use scalar `%s' as an array" msgstr "scalair '%s' wordt gebruikt als array" #: array.c:302 array.c:707 builtin.c:80 builtin.c:1380 builtin.c:1422 -#: builtin.c:1435 builtin.c:1850 builtin.c:1862 eval.c:1135 eval.c:1139 +#: builtin.c:1435 builtin.c:1852 builtin.c:1864 eval.c:1135 eval.c:1139 #: eval.c:1495 eval.c:1812 #, c-format msgid "attempt to use array `%s' in a scalar context" @@ -767,191 +767,195 @@ msgstr "strftime: opmaakwaarde in PROCINFO[\"strftime\"] is numeriek" msgid "strftime: received non-numeric second argument" msgstr "strftime: tweede argument is geen getal" -#: builtin.c:1681 +#: builtin.c:1677 +msgid "strftime: second argument less than 0 or too big for time_t" +msgstr "" + +#: builtin.c:1683 msgid "strftime: received non-string first argument" msgstr "strftime: eerste argument is geen string" -#: builtin.c:1687 +#: builtin.c:1689 msgid "strftime: received empty format string" msgstr "strftime: opmaakstring is leeg" -#: builtin.c:1753 +#: builtin.c:1755 msgid "mktime: received non-string argument" msgstr "mktime: argument is geen string" -#: builtin.c:1770 +#: builtin.c:1772 msgid "mktime: at least one of the values is out of the default range" msgstr "mktime: minstens één van waarden valt buiten het standaardbereik" -#: builtin.c:1805 +#: builtin.c:1807 msgid "'system' function not allowed in sandbox mode" msgstr "'system'-functie is niet toegestaan in sandbox-modus" -#: builtin.c:1810 +#: builtin.c:1812 msgid "system: received non-string argument" msgstr "system: argument is geen string" -#: builtin.c:1865 eval.c:1159 eval.c:1790 eval.c:1803 +#: builtin.c:1867 eval.c:1159 eval.c:1790 eval.c:1803 #, c-format msgid "reference to uninitialized variable `%s'" msgstr "verwijzing naar ongeïnitialiseerde variabele '%s'" -#: builtin.c:1932 +#: builtin.c:1934 #, c-format msgid "reference to uninitialized field `$%d'" msgstr "verwijzing naar ongeïnitialiseerd veld '$%d'" -#: builtin.c:2019 +#: builtin.c:2021 msgid "tolower: received non-string argument" msgstr "tolower: argument is geen string" -#: builtin.c:2053 +#: builtin.c:2055 msgid "toupper: received non-string argument" msgstr "toupper: argument is geen string" -#: builtin.c:2089 +#: builtin.c:2091 msgid "atan2: received non-numeric first argument" msgstr "atan2: eerste argument is geen getal" -#: builtin.c:2091 +#: builtin.c:2093 msgid "atan2: received non-numeric second argument" msgstr "atan2: tweede argument is geen getal" -#: builtin.c:2110 +#: builtin.c:2112 msgid "sin: received non-numeric argument" msgstr "sin: argument is geen getal" -#: builtin.c:2126 +#: builtin.c:2128 msgid "cos: received non-numeric argument" msgstr "cos: argument is geen getal" -#: builtin.c:2179 +#: builtin.c:2181 msgid "srand: received non-numeric argument" msgstr "srand: argument is geen getal" -#: builtin.c:2210 +#: builtin.c:2212 msgid "match: third argument is not an array" msgstr "match: derde argument is geen array" -#: builtin.c:2474 +#: builtin.c:2476 msgid "gensub: third argument of 0 treated as 1" msgstr "gensub: derde argument is 0; wordt beschouwd als 1" -#: builtin.c:2767 +#: builtin.c:2769 msgid "lshift: received non-numeric first argument" msgstr "lshift: eerste argument is geen getal" -#: builtin.c:2769 +#: builtin.c:2771 msgid "lshift: received non-numeric second argument" msgstr "lshift: tweede argument is geen getal" -#: builtin.c:2775 +#: builtin.c:2777 #, c-format msgid "lshift(%lf, %lf): negative values will give strange results" msgstr "lshift(%lf, %lf): negatieve waarden geven rare resultaten" -#: builtin.c:2777 +#: builtin.c:2779 #, c-format msgid "lshift(%lf, %lf): fractional values will be truncated" msgstr "lshift(%lf, %lf): cijfers na de komma worden afgekapt" -#: builtin.c:2779 +#: builtin.c:2781 #, c-format msgid "lshift(%lf, %lf): too large shift value will give strange results" msgstr "lshift(%lf, %lf): te grote opschuifwaarden geven rare resultaten" -#: builtin.c:2804 +#: builtin.c:2806 msgid "rshift: received non-numeric first argument" msgstr "rshift: eerste argument is geen getal" -#: builtin.c:2806 +#: builtin.c:2808 msgid "rshift: received non-numeric second argument" msgstr "rshift: tweede argument is geen getal" -#: builtin.c:2812 +#: builtin.c:2814 #, c-format msgid "rshift(%lf, %lf): negative values will give strange results" msgstr "rshift(%lf, %lf): negatieve waarden geven rare resultaten" -#: builtin.c:2814 +#: builtin.c:2816 #, c-format msgid "rshift(%lf, %lf): fractional values will be truncated" msgstr "rshift(%lf, %lf): cijfers na de komma worden afgekapt" -#: builtin.c:2816 +#: builtin.c:2818 #, c-format msgid "rshift(%lf, %lf): too large shift value will give strange results" msgstr "rshift(%lf, %lf): te grote opschuifwaarden geven rare resultaten" -#: builtin.c:2841 +#: builtin.c:2843 msgid "and: received non-numeric first argument" msgstr "and: eerste argument is geen getal" -#: builtin.c:2843 +#: builtin.c:2845 msgid "and: received non-numeric second argument" msgstr "and: tweede argument is geen getal" -#: builtin.c:2849 +#: builtin.c:2851 #, c-format msgid "and(%lf, %lf): negative values will give strange results" msgstr "and(%lf, %lf): negatieve waarden geven rare resultaten" -#: builtin.c:2851 +#: builtin.c:2853 #, c-format msgid "and(%lf, %lf): fractional values will be truncated" msgstr "and(%lf, %lf): cijfers na de komma worden afgekapt" -#: builtin.c:2876 +#: builtin.c:2878 msgid "or: received non-numeric first argument" msgstr "or: eerste argument is geen getal" -#: builtin.c:2878 +#: builtin.c:2880 msgid "or: received non-numeric second argument" msgstr "or: tweede argument is geen getal" -#: builtin.c:2884 +#: builtin.c:2886 #, c-format msgid "or(%lf, %lf): negative values will give strange results" msgstr "or(%lf, %lf): negatieve waarden geven rare resultaten" -#: builtin.c:2886 +#: builtin.c:2888 #, c-format msgid "or(%lf, %lf): fractional values will be truncated" msgstr "or(%lf, %lf): cijfers na de komma worden afgekapt" -#: builtin.c:2914 +#: builtin.c:2916 msgid "xor: received non-numeric first argument" msgstr "xor: eerste argument is geen getal" -#: builtin.c:2916 +#: builtin.c:2918 msgid "xor: received non-numeric second argument" msgstr "xor: tweede argument is geen getal" -#: builtin.c:2922 +#: builtin.c:2924 #, c-format msgid "xor(%lf, %lf): negative values will give strange results" msgstr "xor(%lf, %lf): negatieve waarden geven rare resultaten" -#: builtin.c:2924 +#: builtin.c:2926 #, c-format msgid "xor(%lf, %lf): fractional values will be truncated" msgstr "xor(%lf, %lf): cijfers na de komma worden afgekapt" -#: builtin.c:2948 builtin.c:2954 +#: builtin.c:2950 builtin.c:2956 msgid "compl: received non-numeric argument" msgstr "compl: argument is geen getal" -#: builtin.c:2956 +#: builtin.c:2958 #, c-format msgid "compl(%lf): negative value will give strange results" msgstr "compl(%lf): negatieve waarden geven rare resultaten" -#: builtin.c:2958 +#: builtin.c:2960 #, c-format msgid "compl(%lf): fractional value will be truncated" msgstr "compl(%lf): cijfers na de komma worden afgekapt" -#: builtin.c:3127 +#: builtin.c:3129 #, c-format msgid "dcgettext: `%s' is not a valid locale category" msgstr "dcgettext: '%s' is geen geldige taalregio-deelcategorie" Binary files differ@@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: gawk 3.1.81\n" "Report-Msgid-Bugs-To: arnold@skeeve.com\n" -"POT-Creation-Date: 2011-10-09 21:16+0200\n" +"POT-Creation-Date: 2011-10-21 14:43+0200\n" "PO-Revision-Date: 2011-05-14 11:41-0400\n" "Last-Translator: Wojciech Polak <polak@gnu.org>\n" "Language-Team: Polish <translation-team-pl@lists.sourceforge.net>\n" @@ -45,7 +45,7 @@ msgid "attempt to use scalar `%s' as an array" msgstr "próba użycia skalaru `%s' jako tablicy" #: array.c:302 array.c:707 builtin.c:80 builtin.c:1380 builtin.c:1422 -#: builtin.c:1435 builtin.c:1850 builtin.c:1862 eval.c:1135 eval.c:1139 +#: builtin.c:1435 builtin.c:1852 builtin.c:1864 eval.c:1135 eval.c:1139 #: eval.c:1495 eval.c:1812 #, c-format msgid "attempt to use array `%s' in a scalar context" @@ -781,193 +781,197 @@ msgstr "" msgid "strftime: received non-numeric second argument" msgstr "strftime: otrzymano drugi argument, który nie jest liczbą" -#: builtin.c:1681 +#: builtin.c:1677 +msgid "strftime: second argument less than 0 or too big for time_t" +msgstr "" + +#: builtin.c:1683 msgid "strftime: received non-string first argument" msgstr "strftime: otrzymano pierwszy argument, który nie jest łańcuchem" -#: builtin.c:1687 +#: builtin.c:1689 msgid "strftime: received empty format string" msgstr "strftime: otrzymano pusty łańcuch formatujący" -#: builtin.c:1753 +#: builtin.c:1755 msgid "mktime: received non-string argument" msgstr "mktime: otrzymano argument, który nie jest łańcuchem" -#: builtin.c:1770 +#: builtin.c:1772 msgid "mktime: at least one of the values is out of the default range" msgstr "mktime: przynajmniej jedna z wartości jest poza domyślnym zakresem" -#: builtin.c:1805 +#: builtin.c:1807 msgid "'system' function not allowed in sandbox mode" msgstr "funkcja 'system' nie jest dozwolona w trybie piaskownicy" -#: builtin.c:1810 +#: builtin.c:1812 msgid "system: received non-string argument" msgstr "system: otrzymano argument, który nie jest łańcuchem" -#: builtin.c:1865 eval.c:1159 eval.c:1790 eval.c:1803 +#: builtin.c:1867 eval.c:1159 eval.c:1790 eval.c:1803 #, c-format msgid "reference to uninitialized variable `%s'" msgstr "odwołanie do niezainicjowanej zmiennej `%s'" -#: builtin.c:1932 +#: builtin.c:1934 #, c-format msgid "reference to uninitialized field `$%d'" msgstr "odwołanie do niezainicjowanego pola `$%d'" -#: builtin.c:2019 +#: builtin.c:2021 msgid "tolower: received non-string argument" msgstr "tolower: otrzymano argument, który nie jest łańcuchem" -#: builtin.c:2053 +#: builtin.c:2055 msgid "toupper: received non-string argument" msgstr "toupper: otrzymano argument, który nie jest łańcuchem" -#: builtin.c:2089 +#: builtin.c:2091 msgid "atan2: received non-numeric first argument" msgstr "atan2: otrzymano pierwszy argument, który nie jest liczbą" -#: builtin.c:2091 +#: builtin.c:2093 msgid "atan2: received non-numeric second argument" msgstr "atan2: otrzymano drugi argument, który nie jest liczbą" -#: builtin.c:2110 +#: builtin.c:2112 msgid "sin: received non-numeric argument" msgstr "sin: otrzymano argument, który nie jest liczbą" -#: builtin.c:2126 +#: builtin.c:2128 msgid "cos: received non-numeric argument" msgstr "cos: otrzymano argument, który nie jest liczbą" -#: builtin.c:2179 +#: builtin.c:2181 msgid "srand: received non-numeric argument" msgstr "srand: otrzymano argument, który nie jest liczbą" -#: builtin.c:2210 +#: builtin.c:2212 msgid "match: third argument is not an array" msgstr "match: otrzymano trzeci argument, który nie jest tablicą" -#: builtin.c:2474 +#: builtin.c:2476 msgid "gensub: third argument of 0 treated as 1" msgstr "gensub: trzeci argument 0 potraktowany jako 1" -#: builtin.c:2767 +#: builtin.c:2769 msgid "lshift: received non-numeric first argument" msgstr "lshift: otrzymano pierwszy argument, który nie jest liczbą" -#: builtin.c:2769 +#: builtin.c:2771 msgid "lshift: received non-numeric second argument" msgstr "lshift: otrzymano drugi argument, który nie jest liczbą" -#: builtin.c:2775 +#: builtin.c:2777 #, c-format msgid "lshift(%lf, %lf): negative values will give strange results" msgstr "lshift(%lf, %lf): ujemne wartości spowodują dziwne wyniki" -#: builtin.c:2777 +#: builtin.c:2779 #, c-format msgid "lshift(%lf, %lf): fractional values will be truncated" msgstr "lshift(%lf, %lf): ułamkowe wartości zostaną obcięte" -#: builtin.c:2779 +#: builtin.c:2781 #, c-format msgid "lshift(%lf, %lf): too large shift value will give strange results" msgstr "" "lshift(%lf, %lf): zbyt duża wartość przesunięcia spowoduje dziwne wyniki" -#: builtin.c:2804 +#: builtin.c:2806 msgid "rshift: received non-numeric first argument" msgstr "rshift: otrzymano pierwszy argument, który nie jest liczbą" -#: builtin.c:2806 +#: builtin.c:2808 msgid "rshift: received non-numeric second argument" msgstr "rshift: otrzymano drugi argument, który nie jest liczbą" -#: builtin.c:2812 +#: builtin.c:2814 #, c-format msgid "rshift(%lf, %lf): negative values will give strange results" msgstr "rshift(%lf, %lf): ujemne wartości spowodują dziwne wyniki" -#: builtin.c:2814 +#: builtin.c:2816 #, c-format msgid "rshift(%lf, %lf): fractional values will be truncated" msgstr "rshift(%lf, %lf): ułamkowe wartości zostaną obcięte" -#: builtin.c:2816 +#: builtin.c:2818 #, c-format msgid "rshift(%lf, %lf): too large shift value will give strange results" msgstr "" "rshift(%lf, %lf): zbyt duża wartość przesunięcia spowoduje dziwne wyniki" -#: builtin.c:2841 +#: builtin.c:2843 msgid "and: received non-numeric first argument" msgstr "and: otrzymano pierwszy argument, który nie jest liczbą" -#: builtin.c:2843 +#: builtin.c:2845 msgid "and: received non-numeric second argument" msgstr "and: otrzymano drugi argument, który nie jest liczbą" -#: builtin.c:2849 +#: builtin.c:2851 #, c-format msgid "and(%lf, %lf): negative values will give strange results" msgstr "and(%lf, %lf): ujemne wartości spowodują dziwne wyniki" -#: builtin.c:2851 +#: builtin.c:2853 #, c-format msgid "and(%lf, %lf): fractional values will be truncated" msgstr "and(%lf, %lf): ułamkowe wartości zostaną obcięte" -#: builtin.c:2876 +#: builtin.c:2878 msgid "or: received non-numeric first argument" msgstr "or: otrzymano pierwszy argument, który nie jest liczbą" -#: builtin.c:2878 +#: builtin.c:2880 msgid "or: received non-numeric second argument" msgstr "or: otrzymano drugi argument, który nie jest liczbą" -#: builtin.c:2884 +#: builtin.c:2886 #, c-format msgid "or(%lf, %lf): negative values will give strange results" msgstr "or(%lf, %lf): ujemne wartości spowodują dziwne wyniki" -#: builtin.c:2886 +#: builtin.c:2888 #, c-format msgid "or(%lf, %lf): fractional values will be truncated" msgstr "or(%lf, %lf): ułamkowe wartości zostaną obcięte" -#: builtin.c:2914 +#: builtin.c:2916 msgid "xor: received non-numeric first argument" msgstr "xor: otrzymano pierwszy argument, który nie jest liczbą" -#: builtin.c:2916 +#: builtin.c:2918 msgid "xor: received non-numeric second argument" msgstr "xor: otrzymano drugi argument, który nie jest liczbą" -#: builtin.c:2922 +#: builtin.c:2924 #, c-format msgid "xor(%lf, %lf): negative values will give strange results" msgstr "xor(%lf, %lf): ujemne wartości spowodują dziwne wyniki" -#: builtin.c:2924 +#: builtin.c:2926 #, c-format msgid "xor(%lf, %lf): fractional values will be truncated" msgstr "xor(%lf, %lf): ułamkowe wartości zostaną obcięte" -#: builtin.c:2948 builtin.c:2954 +#: builtin.c:2950 builtin.c:2956 msgid "compl: received non-numeric argument" msgstr "compl: otrzymano argument, który nie jest liczbą" -#: builtin.c:2956 +#: builtin.c:2958 #, c-format msgid "compl(%lf): negative value will give strange results" msgstr "compl(%lf): ujemne wartości spowodują dziwne wyniki" -#: builtin.c:2958 +#: builtin.c:2960 #, c-format msgid "compl(%lf): fractional value will be truncated" msgstr "compl(%lf): ułamkowe wartości zostaną obcięte" -#: builtin.c:3127 +#: builtin.c:3129 #, c-format msgid "dcgettext: `%s' is not a valid locale category" msgstr "dcgettext: `%s' nie jest prawidłową kategorią lokalizacji" Binary files differ@@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: gawk 4.0.0\n" "Report-Msgid-Bugs-To: arnold@skeeve.com\n" -"POT-Creation-Date: 2011-10-09 21:16+0200\n" +"POT-Creation-Date: 2011-10-21 14:43+0200\n" "PO-Revision-Date: 2011-07-16 15:20+0200\n" "Last-Translator: Gran Uddeborg <goeran@uddeborg.se>\n" "Language-Team: Swedish <tp-sv@listor.tp-sv.se>\n" @@ -44,7 +44,7 @@ msgid "attempt to use scalar `%s' as an array" msgstr "frsk att anvnda skalren \"%s\" som en vektor" #: array.c:302 array.c:707 builtin.c:80 builtin.c:1380 builtin.c:1422 -#: builtin.c:1435 builtin.c:1850 builtin.c:1862 eval.c:1135 eval.c:1139 +#: builtin.c:1435 builtin.c:1852 builtin.c:1864 eval.c:1135 eval.c:1139 #: eval.c:1495 eval.c:1812 #, c-format msgid "attempt to use array `%s' in a scalar context" @@ -773,191 +773,195 @@ msgstr "strftime: formatvrde i PROCINFO[\"strftime\"] har numerisk typ" msgid "strftime: received non-numeric second argument" msgstr "strftime: fick ett ickenumeriskt andra argument" -#: builtin.c:1681 +#: builtin.c:1677 +msgid "strftime: second argument less than 0 or too big for time_t" +msgstr "" + +#: builtin.c:1683 msgid "strftime: received non-string first argument" msgstr "strftime: fick ett frsta argument som inte r en strng" -#: builtin.c:1687 +#: builtin.c:1689 msgid "strftime: received empty format string" msgstr "strftime: fick en tom formatstrng" -#: builtin.c:1753 +#: builtin.c:1755 msgid "mktime: received non-string argument" msgstr "mktime: fick ett argument som inte r en strng" -#: builtin.c:1770 +#: builtin.c:1772 msgid "mktime: at least one of the values is out of the default range" msgstr "mktime: tminstone ett av vrdena r utanfr standardintervallet" -#: builtin.c:1805 +#: builtin.c:1807 msgid "'system' function not allowed in sandbox mode" msgstr "funktionen \"system\" r inte tillten i sandldelge" -#: builtin.c:1810 +#: builtin.c:1812 msgid "system: received non-string argument" msgstr "system: fick ett argument som inte r en strng" -#: builtin.c:1865 eval.c:1159 eval.c:1790 eval.c:1803 +#: builtin.c:1867 eval.c:1159 eval.c:1790 eval.c:1803 #, c-format msgid "reference to uninitialized variable `%s'" msgstr "referens till icke initierad variabel \"%s\"" -#: builtin.c:1932 +#: builtin.c:1934 #, c-format msgid "reference to uninitialized field `$%d'" msgstr "referens till icke initierat flt \"$%d\"" -#: builtin.c:2019 +#: builtin.c:2021 msgid "tolower: received non-string argument" msgstr "tolower: fick ett argument som inte r en strng" -#: builtin.c:2053 +#: builtin.c:2055 msgid "toupper: received non-string argument" msgstr "toupper: fick ett argument som inte r en strng" -#: builtin.c:2089 +#: builtin.c:2091 msgid "atan2: received non-numeric first argument" msgstr "atan2: fick ett ickenumeriskt frsta argument" -#: builtin.c:2091 +#: builtin.c:2093 msgid "atan2: received non-numeric second argument" msgstr "atan2: fick ett ickenumeriskt andra argument" -#: builtin.c:2110 +#: builtin.c:2112 msgid "sin: received non-numeric argument" msgstr "sin: fick ett ickenumeriskt argument" -#: builtin.c:2126 +#: builtin.c:2128 msgid "cos: received non-numeric argument" msgstr "cos: fick ett ickenumeriskt argument" -#: builtin.c:2179 +#: builtin.c:2181 msgid "srand: received non-numeric argument" msgstr "srand: fick ett ickenumeriskt argument" -#: builtin.c:2210 +#: builtin.c:2212 msgid "match: third argument is not an array" msgstr "match: tredje argumentet r inte en vektor" -#: builtin.c:2474 +#: builtin.c:2476 msgid "gensub: third argument of 0 treated as 1" msgstr "gensub: nollan i tredje argumentet behandlad som en etta" -#: builtin.c:2767 +#: builtin.c:2769 msgid "lshift: received non-numeric first argument" msgstr "lshift: fick ett ickenumeriskt frsta argument" -#: builtin.c:2769 +#: builtin.c:2771 msgid "lshift: received non-numeric second argument" msgstr "lshift: fick ett ickenumeriskt andra argument" -#: builtin.c:2775 +#: builtin.c:2777 #, c-format msgid "lshift(%lf, %lf): negative values will give strange results" msgstr "lshift(%lf, %lf): negativa vrden kommer ge konstiga resultat" -#: builtin.c:2777 +#: builtin.c:2779 #, c-format msgid "lshift(%lf, %lf): fractional values will be truncated" msgstr "lshift(%lf, %lf): flyttalsvrden kommer trunkeras" -#: builtin.c:2779 +#: builtin.c:2781 #, c-format msgid "lshift(%lf, %lf): too large shift value will give strange results" msgstr "lshift(%lf, %lf): fr stora skiftvrden kommer ge konstiga resultat" -#: builtin.c:2804 +#: builtin.c:2806 msgid "rshift: received non-numeric first argument" msgstr "rshift: fick ett ickenumeriskt frsta argument" -#: builtin.c:2806 +#: builtin.c:2808 msgid "rshift: received non-numeric second argument" msgstr "rshift: fick ett ickenumeriskt andra argument" -#: builtin.c:2812 +#: builtin.c:2814 #, c-format msgid "rshift(%lf, %lf): negative values will give strange results" msgstr "rshift(%lf, %lf): negativa vrden kommer ge konstiga resultat" -#: builtin.c:2814 +#: builtin.c:2816 #, c-format msgid "rshift(%lf, %lf): fractional values will be truncated" msgstr "rshift(%lf, %lf): flyttalsvrden kommer trunkeras" -#: builtin.c:2816 +#: builtin.c:2818 #, c-format msgid "rshift(%lf, %lf): too large shift value will give strange results" msgstr "rshift(%lf, %lf): fr stora skiftvrden kommer ge konstiga resultat" -#: builtin.c:2841 +#: builtin.c:2843 msgid "and: received non-numeric first argument" msgstr "and: fick ett ickenumeriskt frsta argument" -#: builtin.c:2843 +#: builtin.c:2845 msgid "and: received non-numeric second argument" msgstr "and: fick ett ickenumeriskt andra argument" -#: builtin.c:2849 +#: builtin.c:2851 #, c-format msgid "and(%lf, %lf): negative values will give strange results" msgstr "and(%lf, %lf): negativa vrden kommer ge konstiga resultat" -#: builtin.c:2851 +#: builtin.c:2853 #, c-format msgid "and(%lf, %lf): fractional values will be truncated" msgstr "and(%lf, %lf): flyttalsvrden kommer trunkeras" -#: builtin.c:2876 +#: builtin.c:2878 msgid "or: received non-numeric first argument" msgstr "or: fick ett ickenumeriskt frsta argument" -#: builtin.c:2878 +#: builtin.c:2880 msgid "or: received non-numeric second argument" msgstr "or: fick ett ickenumeriskt andra argument" -#: builtin.c:2884 +#: builtin.c:2886 #, c-format msgid "or(%lf, %lf): negative values will give strange results" msgstr "or(%lf, %lf): negativa vrden kommer ge konstiga resultat" -#: builtin.c:2886 +#: builtin.c:2888 #, c-format msgid "or(%lf, %lf): fractional values will be truncated" msgstr "or(%lf, %lf): flyttalsvrden kommer trunkeras" -#: builtin.c:2914 +#: builtin.c:2916 msgid "xor: received non-numeric first argument" msgstr "xor: fick ett ickenumeriskt frsta argument" -#: builtin.c:2916 +#: builtin.c:2918 msgid "xor: received non-numeric second argument" msgstr "xor: fick ett ickenumeriskt andra argument" -#: builtin.c:2922 +#: builtin.c:2924 #, c-format msgid "xor(%lf, %lf): negative values will give strange results" msgstr "xor(%lf, %lf): negativa vrden kommer ge konstiga resultat" -#: builtin.c:2924 +#: builtin.c:2926 #, c-format msgid "xor(%lf, %lf): fractional values will be truncated" msgstr "xor(%lf, %lf): flyttalsvrden kommer trunkeras" -#: builtin.c:2948 builtin.c:2954 +#: builtin.c:2950 builtin.c:2956 msgid "compl: received non-numeric argument" msgstr "compl: fick ett ickenumeriskt argument" -#: builtin.c:2956 +#: builtin.c:2958 #, c-format msgid "compl(%lf): negative value will give strange results" msgstr "compl(%lf): negativa vrden kommer ge konstiga resultat" -#: builtin.c:2958 +#: builtin.c:2960 #, c-format msgid "compl(%lf): fractional value will be truncated" msgstr "compl(%lf): flyttalsvrden kommer trunkeras" -#: builtin.c:3127 +#: builtin.c:3129 #, c-format msgid "dcgettext: `%s' is not a valid locale category" msgstr "dcgettext: \"%s\" r inte en giltig lokalkategori" |