From: fred Date: Wed, 27 Mar 2002 01:00:11 +0000 (+0000) Subject: lilypond-1.3.146 X-Git-Tag: release/1.5.59~795 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=740a4f733c5f5c777c862d0811e008394a4dd393;p=lilypond.git lilypond-1.3.146 --- diff --git a/Documentation/user/invoking.itexi b/Documentation/user/invoking.itexi index 9d23b38f20..9556542c6a 100644 --- a/Documentation/user/invoking.itexi +++ b/Documentation/user/invoking.itexi @@ -22,8 +22,10 @@ sequentially. @item -f,--format=@var{format} Output format for sheet music. Choices are tex (for @TeX{} -output), ps (for PostScript) and scm (for a Scheme -dump). +output), ps (for PostScript), scm (for a Scheme +dump), and as (for ASCIIScript). + +@c TODO: TFMFONTS For processing both the @TeX{} and the PostScript output, you must have appropriate environment variables set. For @TeX{}, you have to diff --git a/Documentation/user/macros.itexi b/Documentation/user/macros.itexi index 6d9bf7c2c8..77bcf27c3a 100644 --- a/Documentation/user/macros.itexi +++ b/Documentation/user/macros.itexi @@ -13,6 +13,59 @@ @end ifnotinfo + +@iftex +@macro separate + +@tex +\\hbox to\\hsize{\\hfill$\\heartsuit$\\hfill} +@end tex + +@end macro +@end iftex + +@c \heartsf was supposed to be filled? + +@c center is broken? +@ifnottex +@macro braakseparate + +@center *** + +@end macro +@end ifnottex + +@ifinfo +@macro separate + +@quotation +@quotation +@quotation +@quotation +@quotation +@quotation +*** +@end quotation +@end quotation +@end quotation +@end quotation +@end quotation +@end quotation +@end macro +@end ifinfo + +@ifhtml +@macro separate +@html +

***

+@end html +@end macro +@end ifhtml + +@c netscape 4.x doesn't handle html chars 4.0 :-( +@c


+@c

***

+ @ignore @c Huh, do outline mode and texinfo really fight eachother? diff --git a/buildscripts/clean-fonts.sh b/buildscripts/clean-fonts.sh index 9c132f67b1..e8d457f32e 100644 --- a/buildscripts/clean-fonts.sh +++ b/buildscripts/clean-fonts.sh @@ -4,7 +4,7 @@ # /var/spool/texmf/tfm/lilypond// # ? -VERSION="@TOPLEVEL_VERSION@ +VERSION="@TOPLEVEL_VERSION@" case $# in 0) diff --git a/buildscripts/lilypond-login.sh b/buildscripts/lilypond-login.sh index 436c53d0c1..e7913d0621 100644 --- a/buildscripts/lilypond-login.sh +++ b/buildscripts/lilypond-login.sh @@ -4,27 +4,30 @@ # # Red Hat-like systems should install this in /etc/profile.d/ -setenv GS_FONTPATH "@datadir@/afm:@datadir@/pfa:$GS_FONTPATH" -setenv GS_LIB "@datadir@/ps:$GS_LIB" +# strange shell, this C +set datadir="@datadir@" + +setenv GS_FONTPATH "$datadir/afm:@datadir@/pfa:$GS_FONTPATH" +setenv GS_LIB "$datadir/ps:$GS_LIB" # bit silly. for ly2dvi, overrules compiled-in datadir... # setenv LILYPONDPREFIX "@datadir@" # include an empty path component for the system wide includes. if ($?MFINPUTS) then - setenv MFINPUTS "/usr/share/lilypond/mf:${MFINPUTS}::" + setenv MFINPUTS "$datadir/mf:${MFINPUTS}::" else - setenv MFINPUTS "/usr/share/lilypond/mf::" + setenv MFINPUTS "$datadir/mf::" endif if ($?TEXINPUTS) then - setenv TEXINPUTS "/usr/share/lilypond/tex:${TEXINPUTS}::" + setenv TEXINPUTS "$datadir/tex:${TEXINPUTS}::" else - setenv TEXINPUTS "/usr/share/lilypond/tex::" + setenv TEXINPUTS "$datadir/tex::" endif if ($?TFMFONTS) then - setenv TFMFONTS "@datadir@/tfm:$TFMFONTS" + setenv TFMFONTS "$datadir/tfm:$TFMFONTS" else - setenv TFMFONTS "@datadir@/tfm:" + setenv TFMFONTS "$datadir/tfm:" endif diff --git a/lily/main.cc b/lily/main.cc index 0c6ee806b0..d0a4492d0e 100644 --- a/lily/main.cc +++ b/lily/main.cc @@ -101,20 +101,24 @@ static Getopt_long *oparser_p_static = 0; follow regular localisation guidelines). */ static Long_option_init options_static[] = { - {_i ("EXT"), "output-format", 'f', _i ("use output format EXT (scm, ps, tex or as)")}, + /* another bug in option parser: --output=foe is taken as an abbreviation + for --output-format */ + // {_i ("EXT"), "output-format", 'f', _i ("use output format EXT (scm, ps, tex or as)")}, + + {_i ("EXT"), "format", 'f', _i ("use output format EXT (scm, ps, tex or as)")}, {0, "help", 'h', _i ("this help")}, {_i ("FIELD"), "header", 'H', _i ("write header field to BASENAME.FIELD")}, {_i ("DIR"), "include", 'I', _i ("add DIR to search path")}, {_i ("FILE"), "init", 'i', _i ("use FILE as init file")}, {0, "dependencies", 'M', _i ("write Makefile dependencies for every input file")}, {_i ("DIR"), "dep-prefix", 'P', _i ("prepend DIR to dependencies")}, + {_i ("EXPR"), "evaluate", 'e',_i ("evalute EXPR as Scheme after .scm init is read")}, {0, "no-paper", 'm', _i ("produce MIDI output only")}, - {_i ("NAME"), "output", 'o', _i ("write output to NAME")}, + {_i ("FILE"), "output", 'o', _i ("write output to FILE")}, {0, "safe", 's', _i ("inhibit file output naming and exporting")}, {0, "version", 'v', _i ("print version number")}, {0, "verbose", 'V', _i ("verbose")}, {0, "warranty", 'w', _i ("show warranty and copyright")}, - {_i ("EXPR"), "evaluate", 'e',_i ("evalute EXPR as Scheme after .scm init is read")}, {0,0,0,0} }; diff --git a/po/de.po b/po/de.po index 6c5bc7513e..ba9075da20 100644 --- a/po/de.po +++ b/po/de.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: Lilypond 1.2.8\n" -"POT-Creation-Date: 2001-03-21 16:06+0100\n" +"POT-Creation-Date: 2001-04-02 13:40+0200\n" "PO-Revision-Date: 1999-09-18 01:30+0200\n" "Last-Translator: Erwin Dieterich \n" "Language-Team: LANGUAGE \n" @@ -13,147 +13,287 @@ msgstr "" "Content-Type: text/plain; charset=ISO-8859-1\n" "Content-Transfer-Encoding: ENCODING\n" -#: ly2dvi.py:86 main.cc:95 main.cc:105 +#: ly2dvi.py:88 +msgid "Generate .dvi with LaTeX for LilyPond" +msgstr "" + +#: data-file.cc:118 input.cc:85 ly2dvi.py:167 midi-parser.cc:100 mup2ly.py:93 +#: update-lily.py:113 warn.cc:23 +msgid "warning: " +msgstr "Warnung: " + +#: input.cc:90 ly2dvi.py:172 mup2ly.py:98 mup2ly.py:186 update-lily.py:118 +#: update-lily.py:206 warn.cc:9 warn.cc:17 +msgid "error: " +msgstr "Fehler: " + +#: ly2dvi.py:174 mup2ly.py:100 update-lily.py:120 +#, fuzzy +msgid "Exiting ... " +msgstr "Linie ... " + +#: ly2dvi.py:232 mup2ly.py:158 update-lily.py:178 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... FILE" +msgstr "Verwendung: %s [OPTIONEN] ... [DATEI]" + +#: ly2dvi.py:236 main.cc:119 main.cc:150 mup2ly.py:162 update-lily.py:182 +msgid "Options:" +msgstr "Optionen:" + +#: ly2dvi.py:240 main.cc:123 main.cc:173 mup2ly.py:166 update-lily.py:186 +#, fuzzy, c-format +msgid "Report bugs to %s" +msgstr "Melde Fehler an" + +#: ly2dvi.py:256 mup2ly.py:183 update-lily.py:203 +#, fuzzy, c-format +msgid "Invoking `%s'" +msgstr "Uralt-Bitte: `%s'" + +#: ly2dvi.py:260 mup2ly.py:186 update-lily.py:206 +#, c-format +msgid "command exited with value %d" +msgstr "" + +#: ly2dvi.py:262 mup2ly.py:188 update-lily.py:208 +msgid "(ignored)" +msgstr "" + +#: ly2dvi.py:272 update-lily.py:218 +#, fuzzy, c-format +msgid "Cleaning %s..." +msgstr "Uralt-Bitte: `%s'" + +#: ly2dvi.py:286 mup2ly.py:212 update-lily.py:232 +#, fuzzy, c-format +msgid "no such setting: %s" +msgstr "Kein solches instrument: `%s'" + +#: ly2dvi.py:298 main.cc:113 +msgid "write Makefile dependencies for every input file" +msgstr "Schreibe Makefile-Abhängigkeiten für jede Eingabedatei" + +#: ly2dvi.py:299 main.cc:95 main.cc:109 mup2ly.py:1111 update-lily.py:246 msgid "this help" msgstr "Diese Hilfe" -#: ly2dvi.py:87 -msgid "change global setting KEY to VAL" +#: ly2dvi.py:300 main.cc:111 main.cc:114 +msgid "DIR" +msgstr "DIR" + +#: ly2dvi.py:300 +#, fuzzy +msgid "add DIR to LilyPond's search path" +msgstr "Hänge DIR an den Suchpfad an" + +#: ly2dvi.py:301 +#, c-format +msgid "keep all output, and name the directory %s.dir" msgstr "" -#: ly2dvi.py:88 +#: ly2dvi.py:302 +msgid "don't run LilyPond" +msgstr "" + +#: ly2dvi.py:303 main.cc:116 +#, fuzzy +msgid "produce MIDI output only" +msgstr "Nur Midiausgabe" + +#: ly2dvi.py:304 main.cc:98 main.cc:112 main.cc:117 +msgid "FILE" +msgstr "DATEI" + +#: ly2dvi.py:304 +#, fuzzy +msgid "write ouput to FILE" +msgstr "Schreibe die Ausgabe in BASENAME[-x].Erweiterung" + +#: ly2dvi.py:306 #, fuzzy msgid "generate PostScript output" msgstr "Degenerierte Zwangsbedingungen" -#: ly2dvi.py:89 -msgid "keep all output, and name the directory ly2dvi.dir" +#: ly2dvi.py:307 +msgid "KEY=VAL" msgstr "" -#: ly2dvi.py:90 -msgid "don't run LilyPond" +#: ly2dvi.py:307 +msgid "change global setting KEY to VAL" msgstr "" -#: ly2dvi.py:91 main.cc:115 +#: ly2dvi.py:308 main.cc:120 mup2ly.py:1114 update-lily.py:250 #, fuzzy msgid "verbose" msgstr "Sei geschwätzig" -#: ly2dvi.py:92 main.cc:104 main.cc:114 +#: ly2dvi.py:309 main.cc:104 main.cc:119 mup2ly.py:1115 update-lily.py:251 msgid "print version number" msgstr "Zeige die Versionsnummer" -#: ly2dvi.py:93 main.cc:106 main.cc:116 +#: ly2dvi.py:310 main.cc:106 main.cc:121 mup2ly.py:1116 update-lily.py:253 msgid "show warranty and copyright" msgstr "Zeige Garantie und Urheberrechte" -#: ly2dvi.py:94 -msgid "dump all final output into DIR" -msgstr "" +#: ly2dvi.py:336 +#, fuzzy, c-format +msgid "Analyzing %s..." +msgstr "Uralt-Bitte: `%s'" -#: ly2dvi.py:95 main.cc:109 -msgid "write Makefile dependencies for every input file" -msgstr "Schreibe Makefile-Abhängigkeiten für jede Eingabedatei" +#: ly2dvi.py:381 +#, c-format +msgid "no lilypond output found for %s" +msgstr "" -#: data-file.cc:118 input.cc:85 ly2dvi.py:123 midi-parser.cc:100 warn.cc:23 -msgid "warning: " -msgstr "Warnung: " +#: ly2dvi.py:423 +#, fuzzy, c-format +msgid "invalid value: %s" +msgstr "Ungültiger Buchstabe `%c'" -#: input.cc:90 ly2dvi.py:128 ly2dvi.py:263 warn.cc:9 warn.cc:17 -msgid "error: " -msgstr "Fehler: " +#: ly2dvi.py:497 ly2dvi.py:514 +#, fuzzy, c-format +msgid "Running %s..." +msgstr "Uralt-Bitte: `%s'" -#: ly2dvi.py:130 -#, fuzzy -msgid "Exiting ... " -msgstr "Linie ... " +#: ly2dvi.py:654 scores.cc:44 +#, fuzzy, c-format +msgid "dependencies output to %s..." +msgstr "Ausgabe auf Papier auf %s..." -#: ly2dvi.py:149 +#: ly2dvi.py:665 #, fuzzy, c-format -msgid "Reading %s..." -msgstr "Uralt-Bitte: `%s'" +msgid "%s output to %s..." +msgstr "MIDI-Ausgabe nach %s..." -#: lilypond-stream.cc:111 ly2dvi.py:153 mapped-file-storage.cc:87 -#: paper-stream.cc:40 scores.cc:48 simple-file-storage.cc:44 text-stream.cc:23 +#: includable-lexer.cc:49 lily-guile.cc:139 ly2dvi.py:667 +#: midi-score-parser.cc:24 scores.cc:136 scores.cc:142 #, c-format -msgid "can't open file: `%s'" -msgstr "Kann die Datei %s nicht öffnen" +msgid "can't find file: `%s'" +msgstr "Kann Datei `%s' nicht finden" -#: ly2dvi.py:216 +#: ly2dvi.py:677 +msgid "no FILEs specified, can't invoke as filter" +msgstr "" + +#: mup2ly.py:51 +msgid "Convert mup to ly" +msgstr "" + +#: mup2ly.py:960 #, fuzzy, c-format -msgid "Usage: %s [OPTION]... FILE" -msgstr "Verwendung: %s [OPTIONEN] ... [DATEI]" +msgid "no such context: %s" +msgstr "Kein solches instrument: `%s'" -#: ly2dvi.py:218 -msgid "Generate .dvi with LaTeX for LilyPond" +#: mup2ly.py:1109 +msgid "debug" msgstr "" -#: ly2dvi.py:220 main.cc:119 main.cc:146 -msgid "Options:" -msgstr "Optionen:" +#: mup2ly.py:1110 +msgid "define macro NAME [optional expansion EXP]" +msgstr "" + +#: main.cc:117 mup2ly.py:1112 +#, fuzzy +msgid "write output to FILE" +msgstr "Schreibe die Ausgabe in BASENAME[-x].Erweiterung" -#: ly2dvi.py:224 -msgid "all output is written in the CURRENT directory" +#: mup2ly.py:1113 +msgid "only pre-process" msgstr "" -#: ly2dvi.py:226 main.cc:123 main.cc:169 +#: mup2ly.py:1190 #, fuzzy, c-format -msgid "Report bugs to %s" -msgstr "Melde Fehler an" +msgid "Processing %s..." +msgstr "Verarbeite..." -#: ly2dvi.py:260 +#: mup2ly.py:1203 #, fuzzy, c-format -msgid "Invoking `%s'" -msgstr "Uralt-Bitte: `%s'" +msgid "Writing %s..." +msgstr "Linie ... " + +#: update-lily.py:46 +msgid "Fetch and rebuild from latest source package" +msgstr "" -#: ly2dvi.py:263 +#: update-lily.py:238 #, c-format -msgid "command exited with value %d" +msgid "unpack and build in DIR [%s]" msgstr "" -#: ly2dvi.py:265 -msgid "(ignored)" +#: update-lily.py:239 +msgid "execute COMMAND, subtitute:" msgstr "" -#: ly2dvi.py:301 -#, fuzzy, c-format -msgid "no such setting: %s" -msgstr "Kein solches instrument: `%s'" +#: update-lily.py:240 +msgid "%b: build root" +msgstr "" -#: ly2dvi.py:309 +#: update-lily.py:241 #, c-format -msgid "Analyzing `%s'" +msgid "%n: package name" msgstr "" -#: ly2dvi.py:353 +#: update-lily.py:242 +#, fuzzy +msgid "%r: release directory" +msgstr "Kann ein `%s' weder finden noch erzeugen" + +#: update-lily.py:243 +msgid "%t: tarball" +msgstr "" + +#: update-lily.py:244 +msgid "%v: package version" +msgstr "" + +#: update-lily.py:247 #, c-format -msgid "no lilypond output found for %s" +msgid "keep all output, and name the directory %s" +msgstr "" + +#: update-lily.py:248 +msgid "upon failure notify EMAIL[,EMAIL]" +msgstr "" + +#: update-lily.py:249 +msgid "remove previous build" +msgstr "" + +#: update-lily.py:252 +#, c-format +msgid "fetch and build URL [%s]" msgstr "" -#: ly2dvi.py:395 +#: update-lily.py:358 #, fuzzy, c-format -msgid "invalid value: %s" -msgstr "Ungültiger Buchstabe `%c'" +msgid "listing %s..." +msgstr "Linie ... " -#: ly2dvi.py:602 scores.cc:44 +#: update-lily.py:418 +#, c-format +msgid "latest is %s" +msgstr "" + +#: update-lily.py:419 +#, c-format +msgid "relax, %s is up to date" +msgstr "" + +#: update-lily.py:427 update-lily.py:439 #, fuzzy, c-format -msgid "dependencies output to %s..." -msgstr "Ausgabe auf Papier auf %s..." +msgid "fetching %s..." +msgstr "Uralt-Bitte: `%s'" -#: ly2dvi.py:603 +#: update-lily.py:448 #, fuzzy, c-format -msgid "%s output to %s..." -msgstr "MIDI-Ausgabe nach %s..." +msgid "building %s..." +msgstr "Uralt-Bitte: `%s'" #: data-file.cc:54 msgid "EOF in a string" msgstr "Dateiende in Zeichenkette" -#: dstream.cc:186 -#, fuzzy -msgid "not enough fields in Dstream init" -msgstr "Nicht genug Felder in der Dstream Inititalisierung" - #: getopt-long.cc:145 #, c-format msgid "option `%s' requires an argument" @@ -187,6 +327,12 @@ msgstr "Position unbekannt" msgid "can't map file" msgstr "Kann die Datei nicht mappen" +#: lilypond-stream.cc:111 mapped-file-storage.cc:87 paper-stream.cc:40 +#: scores.cc:48 simple-file-storage.cc:44 text-stream.cc:23 +#, c-format +msgid "can't open file: `%s'" +msgstr "Kann die Datei %s nicht öffnen" + #: simple-file-storage.cc:56 #, fuzzy, c-format msgid "Huh? Got %d, expected %d characters" @@ -221,43 +367,43 @@ msgstr "Ich kann das Zeichen `%s' nicht finden" msgid "Error parsing AFM file: %s" msgstr "" -#: all-font-metrics.cc:84 +#: all-font-metrics.cc:95 #, c-format msgid "checksum mismatch for font file: `%s'" msgstr "" -#: all-font-metrics.cc:86 +#: all-font-metrics.cc:97 #, c-format msgid "does not match: `%s'" msgstr "" -#: all-font-metrics.cc:91 +#: all-font-metrics.cc:102 msgid "" " Rebuild all .afm files, and remove all .pk and .tfm files. Rerun with -V " "to show font paths." msgstr "" -#: all-font-metrics.cc:155 +#: all-font-metrics.cc:167 #, c-format msgid "can't find font: `%s'" msgstr "Kann Schrift `%s' nicht finden" -#: all-font-metrics.cc:156 +#: all-font-metrics.cc:168 #, fuzzy msgid "Loading default font" msgstr "Kann die Schrift %s nicht finden, lade die Standardschrift." -#: all-font-metrics.cc:171 +#: all-font-metrics.cc:183 #, fuzzy, c-format msgid "can't find default font: `%s'" msgstr "Kann Schrift `%s' nicht finden" -#: all-font-metrics.cc:172 includable-lexer.cc:51 scores.cc:137 +#: all-font-metrics.cc:184 includable-lexer.cc:51 scores.cc:137 #, c-format msgid "(search path: `%s')" msgstr "(Suchpfad: `%s')" -#: all-font-metrics.cc:173 parser.yy:1681 +#: all-font-metrics.cc:185 parser.yy:1685 msgid "Giving up" msgstr "" @@ -337,7 +483,7 @@ msgstr "Unerlaubte Subtraktion: nicht Teil eines Akkords: %s" msgid "invalid inversion pitch: not part of chord: %s" msgstr "Unerlaubter Baßton: gehört nicht zum Akkord: %s" -#: chord-tremolo-engraver.cc:141 percent-repeat-engraver.cc:162 +#: chord-tremolo-engraver.cc:141 percent-repeat-engraver.cc:193 #, fuzzy msgid "unterminated chord tremolo" msgstr "Unbeendeter Bindestrich" @@ -351,36 +497,26 @@ msgstr "Keiner darf eine Wiederholungsklammer drucken" msgid "Too many clashing notecolumns. Ignoring them." msgstr "Zu viele aneinanderstoßende Notenspalten. Ich ignoriere sie." -#: debug.cc:26 -#, fuzzy -msgid "floating point exception" -msgstr "Ausnahmefehler in einer Fließpunktberechnung" - -#: debug.cc:50 -#, fuzzy -msgid "can't set mem-checking!" -msgstr "Kann die Speicherüberprüfung nicht setzen" - #: dimensions.cc:13 msgid "NaN" msgstr "NaN" -#: dynamic-engraver.cc:198 span-dynamic-performer.cc:86 +#: dynamic-engraver.cc:197 span-dynamic-performer.cc:86 #, fuzzy msgid "can't find start of (de)crescendo" msgstr "Ich kann kein (De)crescendo bis zum Ende finden" -#: dynamic-engraver.cc:223 +#: dynamic-engraver.cc:222 #, fuzzy msgid "already have a crescendo" msgstr "Habe schon einen Balken" -#: dynamic-engraver.cc:224 +#: dynamic-engraver.cc:223 #, fuzzy msgid "already have a decrescendo" msgstr "Habe schon einen Balken" -#: dynamic-engraver.cc:318 +#: dynamic-engraver.cc:317 #, fuzzy msgid "unterminated (de)crescendo" msgstr "Nichtbeendetes Crescendo" @@ -417,11 +553,11 @@ msgstr "" "Unverknüpfte Verzierungsnoten. Ich verknüpfe sie mit der letzten " "musikalischen Spalte." -#: hairpin.cc:71 +#: hairpin.cc:93 msgid "decrescendo too small" msgstr "" -#: hairpin.cc:72 +#: hairpin.cc:94 #, fuzzy msgid "crescendo too small" msgstr "Crescendo" @@ -434,13 +570,15 @@ msgstr "Unbeendeter Bindestrich" msgid "Nothing to connect hyphen to on the left. Ignoring hyphen request." msgstr "" -#: includable-lexer.cc:49 lily-guile.cc:139 midi-score-parser.cc:24 -#: scores.cc:136 scores.cc:142 -#, c-format -msgid "can't find file: `%s'" -msgstr "Kann Datei `%s' nicht finden" +#: key-engraver.cc:99 +msgid "Conflicting key signatures found." +msgstr "" + +#: key-engraver.cc:100 +msgid "This was the other key definition." +msgstr "" -#: key-engraver.cc:103 key-performer.cc:77 +#: key-performer.cc:77 msgid "FIXME: key change merge" msgstr "" @@ -463,93 +601,73 @@ msgstr "" msgid "Calculating column positions..." msgstr "Berechne Position der Spalten..." -#: lyric-phrasing-engraver.cc:269 +#: lyric-phrasing-engraver.cc:284 msgid "lyrics found without any matching notehead" msgstr "" -#: lyric-phrasing-engraver.cc:274 +#: lyric-phrasing-engraver.cc:289 msgid "Huh? Melismatic note found to have associated lyrics." msgstr "" -#: main.cc:104 +#. another bug in option parser: --output=foe is taken as an abbreviation +#. for --output-format +#. {_i ("EXT"), "output-format", 'f', _i ("use output format EXT (scm, ps, tex or as)")}, +#: main.cc:108 msgid "EXT" msgstr "EXT" -#: main.cc:104 +#: main.cc:108 #, fuzzy msgid "use output format EXT (scm, ps, tex or as)" msgstr "Benutze das Ausgabeformat EXT" -#: main.cc:106 +#: main.cc:110 #, fuzzy msgid "FIELD" msgstr "DATEI" -#: main.cc:106 +#: main.cc:110 msgid "write header field to BASENAME.FIELD" msgstr "" -#: main.cc:107 main.cc:110 -msgid "DIR" -msgstr "DIR" - -#: main.cc:107 +#: main.cc:111 msgid "add DIR to search path" msgstr "Hänge DIR an den Suchpfad an" -#: main.cc:98 main.cc:108 -msgid "FILE" -msgstr "DATEI" - -#: main.cc:108 +#: main.cc:112 msgid "use FILE as init file" msgstr "Verwende FILE als Initialisierungsdatei" -#: main.cc:110 +#: main.cc:114 msgid "prepend DIR to dependencies" msgstr "" -#: main.cc:111 -#, fuzzy -msgid "produce MIDI output only" -msgstr "Nur Midiausgabe" - -#: main.cc:112 -#, fuzzy -msgid "NAME" -msgstr "BASENAME" - -#: main.cc:112 -#, fuzzy -msgid "write output to NAME" -msgstr "Schreibe die Ausgabe in BASENAME[-x].Erweiterung" - -#: main.cc:113 -msgid "inhibit file output naming and exporting" -msgstr "Unterdrücke die automatische Benennung von Ausgabedateien und Export" - -#: main.cc:117 +#: main.cc:115 msgid "EXPR" msgstr "" -#: main.cc:117 +#: main.cc:115 msgid "evalute EXPR as Scheme after .scm init is read" msgstr "" +#: main.cc:118 +msgid "inhibit file output naming and exporting" +msgstr "Unterdrücke die automatische Benennung von Ausgabedateien und Export" + #. #. No version number or newline here. It confuses help2man #. -#: main.cc:134 +#: main.cc:138 #, c-format msgid "Usage: %s [OPTION]... [FILE]..." msgstr "Benutzung: %s [OPTIONEN] ... [DATEI] ..." -#: main.cc:136 +#: main.cc:140 #, fuzzy msgid "Typeset music and or play MIDI from FILE" msgstr "Setze Musik oder spiele MIDI von DATEI" -#: main.cc:140 +#: main.cc:144 msgid "" "LilyPond is a music typesetter. It produces beautiful sheet music\n" "using a high level description file as input. LilyPond is part of \n" @@ -559,11 +677,11 @@ msgstr "" "Notenblätter erzeugen. Dazu verwendet es eine eigene Beschreibungssprache.\n" "lilyPond ist Teil des GNU-Projekts\n" -#: main.cc:150 +#: main.cc:154 msgid "This binary was compiled with the following options:" msgstr "Diese Programm wurde mit den folgenden Optionen übersetzt:" -#: main.cc:55 main.cc:177 +#: main.cc:55 main.cc:181 #, c-format msgid "" "This is free software. It is covered by the GNU General Public License,\n" @@ -576,17 +694,17 @@ msgstr "" "einhalten. Wenn Sie das Programm mit `%s --warranty starten, bekommen\n" "Sie mehr Informationen.\n" -#: main.cc:62 main.cc:184 main.cc:196 +#: main.cc:62 main.cc:188 main.cc:200 #, c-format msgid "Copyright (c) %s by" msgstr "Urheberrechte (Copyright) (c) %s bei" -#: main.cc:194 +#: main.cc:198 #, fuzzy msgid "GNU LilyPond -- The music typesetter" msgstr "GNU LilyPond -- Der Notensatz des GNU-Projekts" -#: main.cc:71 main.cc:202 +#: main.cc:71 main.cc:206 msgid "" " This program is free software; you can redistribute it and/or\n" "modify it under the terms of the GNU General Public License version 2\n" @@ -616,16 +734,16 @@ msgstr "" "the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139,\n" "USA.\n" -#: midi-item.cc:312 +#: midi-item.cc:138 #, fuzzy, c-format msgid "no such instrument: `%s'" msgstr "Kein solches instrument: `%s'" -#: midi-item.cc:402 +#: midi-item.cc:227 msgid "silly duration" msgstr "Unsinnige Dauer" -#: midi-item.cc:415 +#: midi-item.cc:240 msgid "silly pitch" msgstr "unsinnige Tonhöhe" @@ -634,23 +752,23 @@ msgstr "unsinnige Tonh msgid "Transposition by %s makes accidental larger than two" msgstr "Transponieren um %s macht Vorzecihen größer als zwei" -#: music.cc:224 +#: music.cc:232 msgid "ly_get_mus_property (): Not a Music" msgstr "" -#: music.cc:238 +#: music.cc:246 msgid "ly_set_mus_property (): Not a symbol" msgstr "" -#: music.cc:250 +#: music.cc:258 msgid "ly_set_mus_property (): not of type Music" msgstr "" -#: music.cc:264 +#: music.cc:272 msgid "ly_make_music (): Not a string" msgstr "" -#: music.cc:284 +#: music.cc:292 msgid "ly_music_name (): Not a music expression" msgstr "" @@ -688,7 +806,7 @@ msgstr "Uralt-Bitte: `%s'" msgid "paper output to %s..." msgstr "Ausgabe auf Papier auf %s..." -#: lilypond-stream.cc:93 paper-outputter.cc:85 performance.cc:95 +#: lilypond-stream.cc:93 paper-outputter.cc:85 performance.cc:99 msgid ", at " msgstr ", bei " @@ -732,9 +850,9 @@ msgstr "" msgid "none of these in my family: `%s'" msgstr "" -#: percent-repeat-engraver.cc:108 +#: percent-repeat-engraver.cc:118 #, fuzzy -msgid "Don't know yet how to handle this percent repeat." +msgid "Don't know how to handle a percent repeat of this length." msgstr "Weiß nicht, wie ich eine fehlende Tonart behandeln soll" #: percent-repeat-iterator.cc:53 @@ -746,16 +864,16 @@ msgstr "Keiner darf eine Wiederholungsklammer drucken" msgid "Track ... " msgstr "Stück ... " -#: performance.cc:79 +#: performance.cc:83 msgid "Creator: " msgstr "Erstellt von: " -#: performance.cc:109 +#: performance.cc:113 #, c-format msgid "from musical definition: %s" msgstr "von der musiaklischen Definition: %s" -#: performance.cc:164 +#: performance.cc:168 #, c-format msgid "MIDI output to %s..." msgstr "MIDI-Ausgabe nach %s..." @@ -792,12 +910,12 @@ msgstr "" msgid "Wrong type for property: %s, type: %s, value found: %s, type: %s" msgstr "Falsche Type für Besitz-Wert" -#: rest-collision.cc:190 +#: rest-collision.cc:194 #, fuzzy msgid "too many colliding rests" msgstr "Zu viele kollidierende Pausen." -#: rest-collision.cc:194 +#: rest-collision.cc:198 #, fuzzy msgid "too many notes for rest collision" msgstr "Zu viele Noten für kollidierende Pausen." @@ -822,7 +940,7 @@ msgstr "Habe Fehler gefunden, /* die Partitur wird nicht verarbeitet */" msgid "elapsed time: %.2f seconds" msgstr "verstrichene Zeit %.2f Sekunden" -#: score-engraver.cc:183 +#: score-engraver.cc:188 #, fuzzy, c-format msgid "unbound spanner `%s'" msgstr "Unbeschränkter Abstand `%s'" @@ -915,11 +1033,11 @@ msgstr "%s: TFM-Datei hat %u Parameter. Das ist mehr als die" #. How to shut up this warning, when no notes appeared because #. they were suicided by Thread_devnull_engraver? -#: tie-engraver.cc:215 tie-performer.cc:173 +#: tie-engraver.cc:220 tie-performer.cc:173 msgid "No ties were created!" msgstr "Es wurden keine Haltebögen erzeugt!" -#: tie-engraver.cc:234 +#: tie-engraver.cc:240 msgid "lonely tie" msgstr "Einsamer Haltebogen" @@ -1016,100 +1134,100 @@ msgstr "" msgid "First argument must be a procedure taking 1 argument" msgstr "" -#: parser.yy:1236 +#: parser.yy:1233 msgid "Expecting string as script definition" msgstr "" -#: parser.yy:1246 +#: parser.yy:1243 msgid "Can't specify direction for this request" msgstr "" -#: parser.yy:1371 +#: parser.yy:1368 msgid "Expecting musical-pitch value" msgstr "" -#: parser.yy:1382 +#: parser.yy:1379 #, fuzzy msgid "Must have duration object" msgstr "Setze kürzeste Dauer (?)" -#: parser.yy:1391 parser.yy:1399 parser.yy:1679 +#: parser.yy:1388 parser.yy:1396 parser.yy:1683 #, fuzzy msgid "Have to be in Lyric mode for lyrics" msgstr "Um Text zu verarbeiten, muß ich im Text-(Lyrics)-Modus sein" -#: parser.yy:1564 parser.yy:1593 +#: parser.yy:1549 parser.yy:1597 #, c-format msgid "not a duration: %d" msgstr "Keine Dauer: %d" -#: parser.yy:1602 +#: parser.yy:1606 #, fuzzy msgid "Have to be in Note mode for notes" msgstr "Für Noten muß ich im Noten-(Note)-Modus sein" -#: parser.yy:1698 +#: parser.yy:1702 #, fuzzy msgid "Have to be in Chord mode for chords" msgstr "Für Akkorde muß ich im Akkord-(Chord)-Modus sein" -#: parser.yy:1860 parser.yy:1878 +#: parser.yy:1864 parser.yy:1882 msgid "need integer number arg" msgstr "" -#: parser.yy:1864 +#: parser.yy:1868 msgid "Must be positive integer" msgstr "" -#: lexer.ll:166 +#: lexer.ll:167 msgid "EOF found inside a comment" msgstr "Während eines Kommentar war die Datei zu Ende (EOF gefunden)" -#: lexer.ll:180 +#: lexer.ll:181 msgid "\\maininput disallowed outside init files" msgstr "" -#: lexer.ll:204 +#: lexer.ll:205 #, fuzzy, c-format msgid "wrong or undefined identifier: `%s'" msgstr "Unbekannter Identifier: `%s'" #. backup rule -#: lexer.ll:209 +#: lexer.ll:210 #, fuzzy msgid "Missing end quote" msgstr "Endnote fehlt" #. backup rule -#: lexer.ll:231 lexer.ll:235 +#: lexer.ll:232 lexer.ll:236 msgid "white expected" msgstr "Erwarte Weiß" -#: lexer.ll:244 +#: lexer.ll:245 #, fuzzy msgid "Can't evaluate Scheme in safe mode" msgstr "Kann Scheme nicht interpretieren, wenn ich im sicheren Modus bin" -#: lexer.ll:336 +#: lexer.ll:330 msgid "Brace found at end of lyric. Did you forget a space?" msgstr "" -#: lexer.ll:440 +#: lexer.ll:434 #, c-format msgid "invalid character: `%c'" msgstr "Ungültiger Buchstabe `%c'" -#: lexer.ll:521 +#: lexer.ll:515 #, c-format msgid "unknown escaped string: `\\%s'" msgstr "Unbekannte Sonder-Zeichenkette" -#: lexer.ll:603 +#: lexer.ll:597 #, fuzzy, c-format msgid "incorrect lilypond version: %s (%s, %s)" msgstr "Falsche Version von Lilypond: %s (%s, %s)" -#: lexer.ll:604 +#: lexer.ll:598 msgid "Consider converting the input with the convert-ly script" msgstr "" @@ -1333,6 +1451,30 @@ msgstr "Erwarte MIDI-St msgid "invalid track length" msgstr "Unzulässige Länge für ein Stück" +#, fuzzy +#~ msgid "NAME" +#~ msgstr "BASENAME" + +#, fuzzy +#~ msgid "write output to NAME" +#~ msgstr "Schreibe die Ausgabe in BASENAME[-x].Erweiterung" + +#, fuzzy +#~ msgid "write ouput to NAME" +#~ msgstr "Schreibe die Ausgabe in BASENAME[-x].Erweiterung" + +#, fuzzy +#~ msgid "not enough fields in Dstream init" +#~ msgstr "Nicht genug Felder in der Dstream Inititalisierung" + +#, fuzzy +#~ msgid "floating point exception" +#~ msgstr "Ausnahmefehler in einer Fließpunktberechnung" + +#, fuzzy +#~ msgid "can't set mem-checking!" +#~ msgstr "Kann die Speicherüberprüfung nicht setzen" + #, fuzzy #~ msgid "Dependency file left in `%s'" #~ msgstr "Schreibe Datei mit Abhängigkeiten: `%s'..." diff --git a/po/fr.po b/po/fr.po index 71bc705d07..921e1a200c 100644 --- a/po/fr.po +++ b/po/fr.po @@ -6,152 +6,290 @@ msgid "" msgstr "" "Project-Id-Version: lilypond 1.3.18\n" -"POT-Creation-Date: 2001-03-21 16:06+0100\n" +"POT-Creation-Date: 2001-04-02 13:40+0200\n" "PO-Revision-Date: 1999-12-28 00:32 +1\n" "Last-Translator: Laurent Martelli \n" "Language-Team: \n" "MIME-Version: 1.0\n" -#: ly2dvi.py:86 main.cc:95 main.cc:105 +#: ly2dvi.py:88 +msgid "Generate .dvi with LaTeX for LilyPond" +msgstr "" + +#: data-file.cc:118 input.cc:85 ly2dvi.py:167 midi-parser.cc:100 mup2ly.py:93 +#: update-lily.py:113 warn.cc:23 +msgid "warning: " +msgstr "avertissement: " + +#: input.cc:90 ly2dvi.py:172 mup2ly.py:98 mup2ly.py:186 update-lily.py:118 +#: update-lily.py:206 warn.cc:9 warn.cc:17 +msgid "error: " +msgstr "erreur: " + +#: ly2dvi.py:174 mup2ly.py:100 update-lily.py:120 +#, fuzzy +msgid "Exiting ... " +msgstr "Ligne ..." + +#: ly2dvi.py:232 mup2ly.py:158 update-lily.py:178 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... FILE" +msgstr "Usage: %s [OPTION... [FICHIER]" + +#: ly2dvi.py:236 main.cc:119 main.cc:150 mup2ly.py:162 update-lily.py:182 +msgid "Options:" +msgstr "Options: " + +#: ly2dvi.py:240 main.cc:123 main.cc:173 mup2ly.py:166 update-lily.py:186 +#, fuzzy, c-format +msgid "Report bugs to %s" +msgstr "Rapporter les bugs à" + +#: ly2dvi.py:256 mup2ly.py:183 update-lily.py:203 +#, c-format +msgid "Invoking `%s'" +msgstr "" + +#: ly2dvi.py:260 mup2ly.py:186 update-lily.py:206 +#, c-format +msgid "command exited with value %d" +msgstr "" + +#: ly2dvi.py:262 mup2ly.py:188 update-lily.py:208 +msgid "(ignored)" +msgstr "" + +#: ly2dvi.py:272 update-lily.py:218 +#, fuzzy, c-format +msgid "Cleaning %s..." +msgstr "Création des voix..." + +#: ly2dvi.py:286 mup2ly.py:212 update-lily.py:232 +#, fuzzy, c-format +msgid "no such setting: %s" +msgstr "Pas d'instrument tel: `%s'" + +#: ly2dvi.py:298 main.cc:113 +msgid "write Makefile dependencies for every input file" +msgstr "" + +#: ly2dvi.py:299 main.cc:95 main.cc:109 mup2ly.py:1111 update-lily.py:246 msgid "this help" msgstr "cette aide" -#: ly2dvi.py:87 -msgid "change global setting KEY to VAL" +#: ly2dvi.py:300 main.cc:111 main.cc:114 +msgid "DIR" +msgstr "REP" + +#: ly2dvi.py:300 +#, fuzzy +msgid "add DIR to LilyPond's search path" +msgstr "ajoute REP au chemin de recherche" + +#: ly2dvi.py:301 +#, c-format +msgid "keep all output, and name the directory %s.dir" msgstr "" -#: ly2dvi.py:88 +#: ly2dvi.py:302 +msgid "don't run LilyPond" +msgstr "" + +#: ly2dvi.py:303 main.cc:116 +#, fuzzy +msgid "produce MIDI output only" +msgstr "produit seulement la sortie MIDI" + +#: ly2dvi.py:304 main.cc:98 main.cc:112 main.cc:117 +msgid "FILE" +msgstr "FICHIER" + +#: ly2dvi.py:304 +msgid "write ouput to FILE" +msgstr "" + +#: ly2dvi.py:306 msgid "generate PostScript output" msgstr "" -#: ly2dvi.py:89 -msgid "keep all output, and name the directory ly2dvi.dir" +#: ly2dvi.py:307 +msgid "KEY=VAL" msgstr "" -#: ly2dvi.py:90 -msgid "don't run LilyPond" +#: ly2dvi.py:307 +msgid "change global setting KEY to VAL" msgstr "" -#: ly2dvi.py:91 main.cc:115 +#: ly2dvi.py:308 main.cc:120 mup2ly.py:1114 update-lily.py:250 msgid "verbose" msgstr "" -#: ly2dvi.py:92 main.cc:104 main.cc:114 +#: ly2dvi.py:309 main.cc:104 main.cc:119 mup2ly.py:1115 update-lily.py:251 msgid "print version number" msgstr "afficher le numéro de version" -#: ly2dvi.py:93 main.cc:106 main.cc:116 +#: ly2dvi.py:310 main.cc:106 main.cc:121 mup2ly.py:1116 update-lily.py:253 msgid "show warranty and copyright" msgstr "" -#: ly2dvi.py:94 -msgid "dump all final output into DIR" -msgstr "" +#: ly2dvi.py:336 +#, fuzzy, c-format +msgid "Analyzing %s..." +msgstr "Création des voix..." -#: ly2dvi.py:95 main.cc:109 -msgid "write Makefile dependencies for every input file" +#: ly2dvi.py:381 +#, c-format +msgid "no lilypond output found for %s" msgstr "" -#: data-file.cc:118 input.cc:85 ly2dvi.py:123 midi-parser.cc:100 warn.cc:23 -msgid "warning: " -msgstr "avertissement: " +#: ly2dvi.py:423 +#, fuzzy, c-format +msgid "invalid value: %s" +msgstr "caractères illégal: `%c'" -#: input.cc:90 ly2dvi.py:128 ly2dvi.py:263 warn.cc:9 warn.cc:17 -msgid "error: " -msgstr "erreur: " +#: ly2dvi.py:497 ly2dvi.py:514 +#, fuzzy, c-format +msgid "Running %s..." +msgstr "Création des voix..." -#: ly2dvi.py:130 -#, fuzzy -msgid "Exiting ... " -msgstr "Ligne ..." +#: ly2dvi.py:654 scores.cc:44 +#, fuzzy, c-format +msgid "dependencies output to %s..." +msgstr "Sortie papier vers %s..." -#: ly2dvi.py:149 +#: ly2dvi.py:665 #, fuzzy, c-format -msgid "Reading %s..." -msgstr "Création des voix..." +msgid "%s output to %s..." +msgstr "Sortie de Lily vers %s..." -#: lilypond-stream.cc:111 ly2dvi.py:153 mapped-file-storage.cc:87 -#: paper-stream.cc:40 scores.cc:48 simple-file-storage.cc:44 text-stream.cc:23 +#: includable-lexer.cc:49 lily-guile.cc:139 ly2dvi.py:667 +#: midi-score-parser.cc:24 scores.cc:136 scores.cc:142 #, c-format -msgid "can't open file: `%s'" -msgstr "impossible d'ouvrir le fichier: `%s'" +msgid "can't find file: `%s'" +msgstr "ne peut pas trouver le fichier: `%s'" + +#: ly2dvi.py:677 +msgid "no FILEs specified, can't invoke as filter" +msgstr "" + +#: mup2ly.py:51 +msgid "Convert mup to ly" +msgstr "" -#: ly2dvi.py:216 +#: mup2ly.py:960 #, fuzzy, c-format -msgid "Usage: %s [OPTION]... FILE" -msgstr "Usage: %s [OPTION... [FICHIER]" +msgid "no such context: %s" +msgstr "Pas d'instrument tel: `%s'" -#: ly2dvi.py:218 -msgid "Generate .dvi with LaTeX for LilyPond" +#: mup2ly.py:1109 +msgid "debug" msgstr "" -#: ly2dvi.py:220 main.cc:119 main.cc:146 -msgid "Options:" -msgstr "Options: " +#: mup2ly.py:1110 +msgid "define macro NAME [optional expansion EXP]" +msgstr "" + +#: main.cc:117 mup2ly.py:1112 +msgid "write output to FILE" +msgstr "" -#: ly2dvi.py:224 -msgid "all output is written in the CURRENT directory" +#: mup2ly.py:1113 +msgid "only pre-process" msgstr "" -#: ly2dvi.py:226 main.cc:123 main.cc:169 +#: mup2ly.py:1190 #, fuzzy, c-format -msgid "Report bugs to %s" -msgstr "Rapporter les bugs à" +msgid "Processing %s..." +msgstr "Traitement..." + +#: mup2ly.py:1203 +#, fuzzy, c-format +msgid "Writing %s..." +msgstr "Ligne ..." + +#: update-lily.py:46 +msgid "Fetch and rebuild from latest source package" +msgstr "" -#: ly2dvi.py:260 +#: update-lily.py:238 #, c-format -msgid "Invoking `%s'" +msgid "unpack and build in DIR [%s]" +msgstr "" + +#: update-lily.py:239 +msgid "execute COMMAND, subtitute:" msgstr "" -#: ly2dvi.py:263 +#: update-lily.py:240 +msgid "%b: build root" +msgstr "" + +#: update-lily.py:241 #, c-format -msgid "command exited with value %d" +msgid "%n: package name" msgstr "" -#: ly2dvi.py:265 -msgid "(ignored)" +#: update-lily.py:242 +#, fuzzy +msgid "%r: release directory" +msgstr "ne peut pas trouver ou créer `%s'" + +#: update-lily.py:243 +msgid "%t: tarball" msgstr "" -#: ly2dvi.py:301 -#, fuzzy, c-format -msgid "no such setting: %s" -msgstr "Pas d'instrument tel: `%s'" +#: update-lily.py:244 +msgid "%v: package version" +msgstr "" -#: ly2dvi.py:309 +#: update-lily.py:247 #, c-format -msgid "Analyzing `%s'" +msgid "keep all output, and name the directory %s" +msgstr "" + +#: update-lily.py:248 +msgid "upon failure notify EMAIL[,EMAIL]" +msgstr "" + +#: update-lily.py:249 +msgid "remove previous build" msgstr "" -#: ly2dvi.py:353 +#: update-lily.py:252 #, c-format -msgid "no lilypond output found for %s" +msgid "fetch and build URL [%s]" msgstr "" -#: ly2dvi.py:395 +#: update-lily.py:358 #, fuzzy, c-format -msgid "invalid value: %s" -msgstr "caractères illégal: `%c'" +msgid "listing %s..." +msgstr "Ligne ..." -#: ly2dvi.py:602 scores.cc:44 +#: update-lily.py:418 +#, c-format +msgid "latest is %s" +msgstr "" + +#: update-lily.py:419 +#, c-format +msgid "relax, %s is up to date" +msgstr "" + +#: update-lily.py:427 update-lily.py:439 #, fuzzy, c-format -msgid "dependencies output to %s..." -msgstr "Sortie papier vers %s..." +msgid "fetching %s..." +msgstr "Création des voix..." -#: ly2dvi.py:603 +#: update-lily.py:448 #, fuzzy, c-format -msgid "%s output to %s..." -msgstr "Sortie de Lily vers %s..." +msgid "building %s..." +msgstr "Création des voix..." #: data-file.cc:54 #, fuzzy msgid "EOF in a string" msgstr "EOF dans une chaîne" -#: dstream.cc:186 -#, fuzzy -msgid "not enough fields in Dstream init" -msgstr "Pas assez de champs dans l'initialisation de Dstream." - #: getopt-long.cc:145 #, c-format msgid "option `%s' requires an argument" @@ -185,6 +323,12 @@ msgstr "position inconnue" msgid "can't map file" msgstr "impossible de mapper le fichier" +#: lilypond-stream.cc:111 mapped-file-storage.cc:87 paper-stream.cc:40 +#: scores.cc:48 simple-file-storage.cc:44 text-stream.cc:23 +#, c-format +msgid "can't open file: `%s'" +msgstr "impossible d'ouvrir le fichier: `%s'" + #: simple-file-storage.cc:56 #, fuzzy, c-format msgid "Huh? Got %d, expected %d characters" @@ -219,43 +363,43 @@ msgstr "impossible de trouver le caract msgid "Error parsing AFM file: %s" msgstr "" -#: all-font-metrics.cc:84 +#: all-font-metrics.cc:95 #, c-format msgid "checksum mismatch for font file: `%s'" msgstr "" -#: all-font-metrics.cc:86 +#: all-font-metrics.cc:97 #, c-format msgid "does not match: `%s'" msgstr "" -#: all-font-metrics.cc:91 +#: all-font-metrics.cc:102 msgid "" " Rebuild all .afm files, and remove all .pk and .tfm files. Rerun with -V " "to show font paths." msgstr "" -#: all-font-metrics.cc:155 +#: all-font-metrics.cc:167 #, fuzzy, c-format msgid "can't find font: `%s'" msgstr "ne peut pas trouver le fichier: `%s'" -#: all-font-metrics.cc:156 +#: all-font-metrics.cc:168 #, fuzzy msgid "Loading default font" msgstr "Impossible de trouver la police `%s', chargement la police par défaut" -#: all-font-metrics.cc:171 +#: all-font-metrics.cc:183 #, fuzzy, c-format msgid "can't find default font: `%s'" msgstr "Impossible de trouver la fonte par défaut `%s', abandon." -#: all-font-metrics.cc:172 includable-lexer.cc:51 scores.cc:137 +#: all-font-metrics.cc:184 includable-lexer.cc:51 scores.cc:137 #, fuzzy, c-format msgid "(search path: `%s')" msgstr "chemin de recherche= %s" -#: all-font-metrics.cc:173 parser.yy:1681 +#: all-font-metrics.cc:185 parser.yy:1685 msgid "Giving up" msgstr "" @@ -335,7 +479,7 @@ msgstr "soustraction invalide: ne fait pas partie de l'accord: %s" msgid "invalid inversion pitch: not part of chord: %s" msgstr "renversement invalide: ne fait pas partie de l'accord: %s" -#: chord-tremolo-engraver.cc:141 percent-repeat-engraver.cc:162 +#: chord-tremolo-engraver.cc:141 percent-repeat-engraver.cc:193 msgid "unterminated chord tremolo" msgstr "" @@ -348,36 +492,26 @@ msgstr "" msgid "Too many clashing notecolumns. Ignoring them." msgstr "Trop de colonnes de notes superposées. Je les ignore." -#: debug.cc:26 -#, fuzzy -msgid "floating point exception" -msgstr "Exceptions de virgule flottante" - -#: debug.cc:50 -#, fuzzy -msgid "can't set mem-checking!" -msgstr "impossible de positionner mem-checking" - #: dimensions.cc:13 msgid "NaN" msgstr "" -#: dynamic-engraver.cc:198 span-dynamic-performer.cc:86 +#: dynamic-engraver.cc:197 span-dynamic-performer.cc:86 #, fuzzy msgid "can't find start of (de)crescendo" msgstr "ne peut pas trouver un (de)crescendo à la fin" -#: dynamic-engraver.cc:223 +#: dynamic-engraver.cc:222 #, fuzzy msgid "already have a crescendo" msgstr "Il y a déjà une barre" -#: dynamic-engraver.cc:224 +#: dynamic-engraver.cc:223 #, fuzzy msgid "already have a decrescendo" msgstr "Il y a déjà une barre" -#: dynamic-engraver.cc:318 +#: dynamic-engraver.cc:317 #, fuzzy msgid "unterminated (de)crescendo" msgstr "crescendo non terminé" @@ -411,11 +545,11 @@ msgstr "pas une vrai variable" msgid "Unattached grace notes. Attaching to last musical column." msgstr "" -#: hairpin.cc:71 +#: hairpin.cc:93 msgid "decrescendo too small" msgstr "" -#: hairpin.cc:72 +#: hairpin.cc:94 #, fuzzy msgid "crescendo too small" msgstr "trop petit" @@ -428,13 +562,15 @@ msgstr "" msgid "Nothing to connect hyphen to on the left. Ignoring hyphen request." msgstr "" -#: includable-lexer.cc:49 lily-guile.cc:139 midi-score-parser.cc:24 -#: scores.cc:136 scores.cc:142 -#, c-format -msgid "can't find file: `%s'" -msgstr "ne peut pas trouver le fichier: `%s'" +#: key-engraver.cc:99 +msgid "Conflicting key signatures found." +msgstr "" + +#: key-engraver.cc:100 +msgid "This was the other key definition." +msgstr "" -#: key-engraver.cc:103 key-performer.cc:77 +#: key-performer.cc:77 msgid "FIXME: key change merge" msgstr "" @@ -457,91 +593,73 @@ msgstr "" msgid "Calculating column positions..." msgstr "Calcul de la position des colonnes..." -#: lyric-phrasing-engraver.cc:269 +#: lyric-phrasing-engraver.cc:284 msgid "lyrics found without any matching notehead" msgstr "" -#: lyric-phrasing-engraver.cc:274 +#: lyric-phrasing-engraver.cc:289 msgid "Huh? Melismatic note found to have associated lyrics." msgstr "" -#: main.cc:104 +#. another bug in option parser: --output=foe is taken as an abbreviation +#. for --output-format +#. {_i ("EXT"), "output-format", 'f', _i ("use output format EXT (scm, ps, tex or as)")}, +#: main.cc:108 msgid "EXT" msgstr "" -#: main.cc:104 +#: main.cc:108 msgid "use output format EXT (scm, ps, tex or as)" msgstr "" -#: main.cc:106 +#: main.cc:110 #, fuzzy msgid "FIELD" msgstr "FICHIER" -#: main.cc:106 +#: main.cc:110 msgid "write header field to BASENAME.FIELD" msgstr "" -#: main.cc:107 main.cc:110 -msgid "DIR" -msgstr "REP" - -#: main.cc:107 +#: main.cc:111 #, fuzzy msgid "add DIR to search path" msgstr "ajoute REP au chemin de recherche" -#: main.cc:98 main.cc:108 -msgid "FILE" -msgstr "FICHIER" - -#: main.cc:108 +#: main.cc:112 #, fuzzy msgid "use FILE as init file" msgstr "utilise FICHIER comme fichier d'initialisation" -#: main.cc:110 +#: main.cc:114 msgid "prepend DIR to dependencies" msgstr "" -#: main.cc:111 -#, fuzzy -msgid "produce MIDI output only" -msgstr "produit seulement la sortie MIDI" - -#: main.cc:112 -msgid "NAME" +#: main.cc:115 +msgid "EXPR" msgstr "" -#: main.cc:112 -msgid "write output to NAME" +#: main.cc:115 +msgid "evalute EXPR as Scheme after .scm init is read" msgstr "" -#: main.cc:113 +#: main.cc:118 msgid "inhibit file output naming and exporting" msgstr "" -#: main.cc:117 -msgid "EXPR" -msgstr "" - -#: main.cc:117 -msgid "evalute EXPR as Scheme after .scm init is read" -msgstr "" - #. #. No version number or newline here. It confuses help2man #. -#: main.cc:134 +#: main.cc:138 #, c-format msgid "Usage: %s [OPTION]... [FILE]..." msgstr "Usage: %s [OPTION]... [FICHIER]..." -#: main.cc:136 +#: main.cc:140 msgid "Typeset music and or play MIDI from FILE" msgstr "" -#: main.cc:140 +#: main.cc:144 #, fuzzy msgid "" "LilyPond is a music typesetter. It produces beautiful sheet music\n" @@ -552,12 +670,12 @@ msgstr "" "paritions à partir de description de gaut niveau en entrée. Lilypond\n" "fait partie du projet GNU.\n" -#: main.cc:150 +#: main.cc:154 #, fuzzy msgid "This binary was compiled with the following options:" msgstr "Cet exécutable a été compilé avec les options suivantes:" -#: main.cc:55 main.cc:177 +#: main.cc:55 main.cc:181 #, c-format msgid "" "This is free software. It is covered by the GNU General Public License,\n" @@ -565,17 +683,17 @@ msgid "" "certain conditions. Invoke as `%s --warranty' for more information.\n" msgstr "" -#: main.cc:62 main.cc:184 main.cc:196 +#: main.cc:62 main.cc:188 main.cc:200 #, c-format msgid "Copyright (c) %s by" msgstr "Copyright (c) %s par" -#: main.cc:194 +#: main.cc:198 #, fuzzy msgid "GNU LilyPond -- The music typesetter" msgstr "GNU LilyPond -- Il tipografo musicale del progetto GNU" -#: main.cc:71 main.cc:202 +#: main.cc:71 main.cc:206 msgid "" " This program is free software; you can redistribute it and/or\n" "modify it under the terms of the GNU General Public License version 2\n" @@ -592,16 +710,16 @@ msgid "" "USA.\n" msgstr "" -#: midi-item.cc:312 +#: midi-item.cc:138 #, fuzzy, c-format msgid "no such instrument: `%s'" msgstr "Pas d'instrument tel: `%s'" -#: midi-item.cc:402 +#: midi-item.cc:227 msgid "silly duration" msgstr "" -#: midi-item.cc:415 +#: midi-item.cc:240 msgid "silly pitch" msgstr "" @@ -610,23 +728,23 @@ msgstr "" msgid "Transposition by %s makes accidental larger than two" msgstr "" -#: music.cc:224 +#: music.cc:232 msgid "ly_get_mus_property (): Not a Music" msgstr "" -#: music.cc:238 +#: music.cc:246 msgid "ly_set_mus_property (): Not a symbol" msgstr "" -#: music.cc:250 +#: music.cc:258 msgid "ly_set_mus_property (): not of type Music" msgstr "" -#: music.cc:264 +#: music.cc:272 msgid "ly_make_music (): Not a string" msgstr "" -#: music.cc:284 +#: music.cc:292 msgid "ly_music_name (): Not a music expression" msgstr "" @@ -663,7 +781,7 @@ msgstr "" msgid "paper output to %s..." msgstr "Sortie papier vers %s..." -#: lilypond-stream.cc:93 paper-outputter.cc:85 performance.cc:95 +#: lilypond-stream.cc:93 paper-outputter.cc:85 performance.cc:99 msgid ", at " msgstr ", à " @@ -706,9 +824,9 @@ msgstr "" msgid "none of these in my family: `%s'" msgstr "" -#: percent-repeat-engraver.cc:108 +#: percent-repeat-engraver.cc:118 #, fuzzy -msgid "Don't know yet how to handle this percent repeat." +msgid "Don't know how to handle a percent repeat of this length." msgstr "ne sait pas traiter les clés vides" #: percent-repeat-iterator.cc:53 @@ -720,16 +838,16 @@ msgstr "" msgid "Track ... " msgstr "Piste ... " -#: performance.cc:79 +#: performance.cc:83 msgid "Creator: " msgstr "Auteur: " -#: performance.cc:109 +#: performance.cc:113 #, c-format msgid "from musical definition: %s" msgstr "" -#: performance.cc:164 +#: performance.cc:168 #, c-format msgid "MIDI output to %s..." msgstr "" @@ -766,11 +884,11 @@ msgstr "" msgid "Wrong type for property: %s, type: %s, value found: %s, type: %s" msgstr "Mauvais type pour la valeur de la propriété" -#: rest-collision.cc:190 +#: rest-collision.cc:194 msgid "too many colliding rests" msgstr "" -#: rest-collision.cc:194 +#: rest-collision.cc:198 msgid "too many notes for rest collision" msgstr "" @@ -792,7 +910,7 @@ msgstr "" msgid "elapsed time: %.2f seconds" msgstr "temps ecoulé: %.2f secondes" -#: score-engraver.cc:183 +#: score-engraver.cc:188 #, fuzzy, c-format msgid "unbound spanner `%s'" msgstr "traducteur inconnu `%s'" @@ -881,11 +999,11 @@ msgstr "" #. How to shut up this warning, when no notes appeared because #. they were suicided by Thread_devnull_engraver? -#: tie-engraver.cc:215 tie-performer.cc:173 +#: tie-engraver.cc:220 tie-performer.cc:173 msgid "No ties were created!" msgstr "Aucune liaison n'a été crée" -#: tie-engraver.cc:234 +#: tie-engraver.cc:240 msgid "lonely tie" msgstr "liaison solitaire" @@ -981,98 +1099,98 @@ msgstr "" msgid "First argument must be a procedure taking 1 argument" msgstr "" -#: parser.yy:1236 +#: parser.yy:1233 msgid "Expecting string as script definition" msgstr "" -#: parser.yy:1246 +#: parser.yy:1243 msgid "Can't specify direction for this request" msgstr "" -#: parser.yy:1371 +#: parser.yy:1368 msgid "Expecting musical-pitch value" msgstr "" -#: parser.yy:1382 +#: parser.yy:1379 #, fuzzy msgid "Must have duration object" msgstr "Positionne la plus petite durée (?)" -#: parser.yy:1391 parser.yy:1399 parser.yy:1679 +#: parser.yy:1388 parser.yy:1396 parser.yy:1683 #, fuzzy msgid "Have to be in Lyric mode for lyrics" msgstr "il fayt être en mode Parole pour les paroles" -#: parser.yy:1564 parser.yy:1593 +#: parser.yy:1549 parser.yy:1597 #, c-format msgid "not a duration: %d" msgstr "pas une durée: %d" -#: parser.yy:1602 +#: parser.yy:1606 #, fuzzy msgid "Have to be in Note mode for notes" msgstr "il faut être en mode Note pour les notes" -#: parser.yy:1698 +#: parser.yy:1702 #, fuzzy msgid "Have to be in Chord mode for chords" msgstr "il faut être en mode Accord pour les accords" -#: parser.yy:1860 parser.yy:1878 +#: parser.yy:1864 parser.yy:1882 msgid "need integer number arg" msgstr "" -#: parser.yy:1864 +#: parser.yy:1868 msgid "Must be positive integer" msgstr "" -#: lexer.ll:166 +#: lexer.ll:167 msgid "EOF found inside a comment" msgstr "EOF trouvé dans un commentaire" -#: lexer.ll:180 +#: lexer.ll:181 msgid "\\maininput disallowed outside init files" msgstr "" -#: lexer.ll:204 +#: lexer.ll:205 #, fuzzy, c-format msgid "wrong or undefined identifier: `%s'" msgstr "indentifiant non défini: `%s'" #. backup rule -#: lexer.ll:209 +#: lexer.ll:210 msgid "Missing end quote" msgstr "" #. backup rule -#: lexer.ll:231 lexer.ll:235 +#: lexer.ll:232 lexer.ll:236 msgid "white expected" msgstr "blanche attendue" -#: lexer.ll:244 +#: lexer.ll:245 msgid "Can't evaluate Scheme in safe mode" msgstr "" -#: lexer.ll:336 +#: lexer.ll:330 msgid "Brace found at end of lyric. Did you forget a space?" msgstr "" -#: lexer.ll:440 +#: lexer.ll:434 #, fuzzy, c-format msgid "invalid character: `%c'" msgstr "caractères illégal: `%c'" -#: lexer.ll:521 +#: lexer.ll:515 #, c-format msgid "unknown escaped string: `\\%s'" msgstr "chaîne d'échappement inconnue: `\\%s'" -#: lexer.ll:603 +#: lexer.ll:597 #, fuzzy, c-format msgid "incorrect lilypond version: %s (%s, %s)" msgstr "version de mudela incorrecte: %s (%s, %s)" -#: lexer.ll:604 +#: lexer.ll:598 msgid "Consider converting the input with the convert-ly script" msgstr "" @@ -1293,6 +1411,18 @@ msgstr "piste MIDI attendue" msgid "invalid track length" msgstr "taille de piste invalide" +#, fuzzy +#~ msgid "not enough fields in Dstream init" +#~ msgstr "Pas assez de champs dans l'initialisation de Dstream." + +#, fuzzy +#~ msgid "floating point exception" +#~ msgstr "Exceptions de virgule flottante" + +#, fuzzy +#~ msgid "can't set mem-checking!" +#~ msgstr "impossible de positionner mem-checking" + #, fuzzy #~ msgid "Dependency file left in `%s'" #~ msgstr "impossible d'ouvrir le fichier: `%s'" diff --git a/po/it.po b/po/it.po index 3177c6e791..6b158b271d 100644 --- a/po/it.po +++ b/po/it.po @@ -5,7 +5,7 @@ #, fuzzy msgid "" msgstr "" -"POT-Creation-Date: 2001-03-21 16:06+0100\n" +"POT-Creation-Date: 2001-04-02 13:40+0200\n" "Content-Type: text/plain; charset=ISO-8859-1\n" "Date: 1998-05-30 00:17:12+0200\n" "From: \n" @@ -13,149 +13,287 @@ msgstr "" "--output-dir=../po/out --add-comments --keyword=_ --keyword=_f\n" "Files: bow.cc int.cc\n" -#: ly2dvi.py:86 main.cc:95 main.cc:105 +#: ly2dvi.py:88 +msgid "Generate .dvi with LaTeX for LilyPond" +msgstr "" + +#: data-file.cc:118 input.cc:85 ly2dvi.py:167 midi-parser.cc:100 mup2ly.py:93 +#: update-lily.py:113 warn.cc:23 +msgid "warning: " +msgstr "attenzione: " + +#: input.cc:90 ly2dvi.py:172 mup2ly.py:98 mup2ly.py:186 update-lily.py:118 +#: update-lily.py:206 warn.cc:9 warn.cc:17 +msgid "error: " +msgstr "errore: " + +#: ly2dvi.py:174 mup2ly.py:100 update-lily.py:120 +msgid "Exiting ... " +msgstr "" + +#: ly2dvi.py:232 mup2ly.py:158 update-lily.py:178 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... FILE" +msgstr "Uso: %s [OPZIONE... [FILE]" + +#: ly2dvi.py:236 main.cc:119 main.cc:150 mup2ly.py:162 update-lily.py:182 +msgid "Options:" +msgstr "Opzioni: " + +#: ly2dvi.py:240 main.cc:123 main.cc:173 mup2ly.py:166 update-lily.py:186 +#, c-format +msgid "Report bugs to %s" +msgstr "" + +#: ly2dvi.py:256 mup2ly.py:183 update-lily.py:203 +#, c-format +msgid "Invoking `%s'" +msgstr "" + +#: ly2dvi.py:260 mup2ly.py:186 update-lily.py:206 +#, c-format +msgid "command exited with value %d" +msgstr "" + +#: ly2dvi.py:262 mup2ly.py:188 update-lily.py:208 +msgid "(ignored)" +msgstr "" + +#: ly2dvi.py:272 update-lily.py:218 +#, fuzzy, c-format +msgid "Cleaning %s..." +msgstr "Genero le voci..." + +#: ly2dvi.py:286 mup2ly.py:212 update-lily.py:232 +#, fuzzy, c-format +msgid "no such setting: %s" +msgstr "% strumento:" + +#: ly2dvi.py:298 main.cc:113 +#, fuzzy +msgid "write Makefile dependencies for every input file" +msgstr "" +" -d, --dependencies scrive le dependenze del Makefile per ogni file di " +"input\n" + +#: ly2dvi.py:299 main.cc:95 main.cc:109 mup2ly.py:1111 update-lily.py:246 msgid "this help" msgstr "" -#: ly2dvi.py:87 -msgid "change global setting KEY to VAL" +#: ly2dvi.py:300 main.cc:111 main.cc:114 +msgid "DIR" msgstr "" -#: ly2dvi.py:88 +#: ly2dvi.py:300 +#, fuzzy +msgid "add DIR to LilyPond's search path" +msgstr " -I, --include=DIR aggiunge DIR ai path di ricerca\n" + +#: ly2dvi.py:301 +#, c-format +msgid "keep all output, and name the directory %s.dir" +msgstr "" + +#: ly2dvi.py:302 +msgid "don't run LilyPond" +msgstr "" + +#: ly2dvi.py:303 main.cc:116 +#, fuzzy +msgid "produce MIDI output only" +msgstr " -M, --no-paper produce solo output midi\n" + +#: ly2dvi.py:304 main.cc:98 main.cc:112 main.cc:117 +msgid "FILE" +msgstr "" + +#: ly2dvi.py:304 +msgid "write ouput to FILE" +msgstr "" + +#: ly2dvi.py:306 #, fuzzy msgid "generate PostScript output" msgstr "vincoli degenerati" -#: ly2dvi.py:89 -msgid "keep all output, and name the directory ly2dvi.dir" +#: ly2dvi.py:307 +msgid "KEY=VAL" msgstr "" -#: ly2dvi.py:90 -msgid "don't run LilyPond" +#: ly2dvi.py:307 +msgid "change global setting KEY to VAL" msgstr "" -#: ly2dvi.py:91 main.cc:115 +#: ly2dvi.py:308 main.cc:120 mup2ly.py:1114 update-lily.py:250 msgid "verbose" msgstr "" -#: ly2dvi.py:92 main.cc:104 main.cc:114 +#: ly2dvi.py:309 main.cc:104 main.cc:119 mup2ly.py:1115 update-lily.py:251 msgid "print version number" msgstr "" -#: ly2dvi.py:93 main.cc:106 main.cc:116 +#: ly2dvi.py:310 main.cc:106 main.cc:121 mup2ly.py:1116 update-lily.py:253 #, fuzzy msgid "show warranty and copyright" msgstr " -w, --warranty mostra la garanzia e il copyright\n" -#: ly2dvi.py:94 -msgid "dump all final output into DIR" -msgstr "" +#: ly2dvi.py:336 +#, fuzzy, c-format +msgid "Analyzing %s..." +msgstr "Genero le voci..." -#: ly2dvi.py:95 main.cc:109 -#, fuzzy -msgid "write Makefile dependencies for every input file" +#: ly2dvi.py:381 +#, c-format +msgid "no lilypond output found for %s" msgstr "" -" -d, --dependencies scrive le dependenze del Makefile per ogni file di " -"input\n" -#: data-file.cc:118 input.cc:85 ly2dvi.py:123 midi-parser.cc:100 warn.cc:23 -msgid "warning: " -msgstr "attenzione: " +#: ly2dvi.py:423 +#, fuzzy, c-format +msgid "invalid value: %s" +msgstr "carattere illegale: `%c'" -#: input.cc:90 ly2dvi.py:128 ly2dvi.py:263 warn.cc:9 warn.cc:17 -msgid "error: " -msgstr "errore: " +#: ly2dvi.py:497 ly2dvi.py:514 +#, fuzzy, c-format +msgid "Running %s..." +msgstr "Genero le voci..." -#: ly2dvi.py:130 -msgid "Exiting ... " -msgstr "" +#: ly2dvi.py:654 scores.cc:44 +#, fuzzy, c-format +msgid "dependencies output to %s..." +msgstr "L'output stampato è inviato a %s..." -#: ly2dvi.py:149 +#: ly2dvi.py:665 #, fuzzy, c-format -msgid "Reading %s..." -msgstr "Genero le voci..." +msgid "%s output to %s..." +msgstr "L'output MIDI è inviato a %s..." -#: lilypond-stream.cc:111 ly2dvi.py:153 mapped-file-storage.cc:87 -#: paper-stream.cc:40 scores.cc:48 simple-file-storage.cc:44 text-stream.cc:23 +#: includable-lexer.cc:49 lily-guile.cc:139 ly2dvi.py:667 +#: midi-score-parser.cc:24 scores.cc:136 scores.cc:142 #, c-format -msgid "can't open file: `%s'" -msgstr "non posso aprire il file: `%s'" +msgid "can't find file: `%s'" +msgstr "non trovo il file: `%s'" + +#: ly2dvi.py:677 +msgid "no FILEs specified, can't invoke as filter" +msgstr "" -#: ly2dvi.py:216 +#: mup2ly.py:51 +msgid "Convert mup to ly" +msgstr "" + +#: mup2ly.py:960 #, fuzzy, c-format -msgid "Usage: %s [OPTION]... FILE" -msgstr "Uso: %s [OPZIONE... [FILE]" +msgid "no such context: %s" +msgstr "% strumento:" -#: ly2dvi.py:218 -msgid "Generate .dvi with LaTeX for LilyPond" +#: mup2ly.py:1109 +msgid "debug" msgstr "" -#: ly2dvi.py:220 main.cc:119 main.cc:146 -msgid "Options:" -msgstr "Opzioni: " +#: mup2ly.py:1110 +msgid "define macro NAME [optional expansion EXP]" +msgstr "" -#: ly2dvi.py:224 -msgid "all output is written in the CURRENT directory" +#: main.cc:117 mup2ly.py:1112 +msgid "write output to FILE" msgstr "" -#: ly2dvi.py:226 main.cc:123 main.cc:169 -#, c-format -msgid "Report bugs to %s" +#: mup2ly.py:1113 +msgid "only pre-process" +msgstr "" + +#: mup2ly.py:1190 +#, fuzzy, c-format +msgid "Processing %s..." +msgstr "Elaboro..." + +#: mup2ly.py:1203 +#, fuzzy, c-format +msgid "Writing %s..." +msgstr "Genero le voci..." + +#: update-lily.py:46 +msgid "Fetch and rebuild from latest source package" msgstr "" -#: ly2dvi.py:260 +#: update-lily.py:238 #, c-format -msgid "Invoking `%s'" +msgid "unpack and build in DIR [%s]" msgstr "" -#: ly2dvi.py:263 +#: update-lily.py:239 +msgid "execute COMMAND, subtitute:" +msgstr "" + +#: update-lily.py:240 +msgid "%b: build root" +msgstr "" + +#: update-lily.py:241 #, c-format -msgid "command exited with value %d" +msgid "%n: package name" msgstr "" -#: ly2dvi.py:265 -msgid "(ignored)" +#: update-lily.py:242 +#, fuzzy +msgid "%r: release directory" +msgstr "non trovo e non posso creare `%s'" + +#: update-lily.py:243 +msgid "%t: tarball" msgstr "" -#: ly2dvi.py:301 -#, fuzzy, c-format -msgid "no such setting: %s" -msgstr "% strumento:" +#: update-lily.py:244 +msgid "%v: package version" +msgstr "" -#: ly2dvi.py:309 +#: update-lily.py:247 #, c-format -msgid "Analyzing `%s'" +msgid "keep all output, and name the directory %s" msgstr "" -#: ly2dvi.py:353 +#: update-lily.py:248 +msgid "upon failure notify EMAIL[,EMAIL]" +msgstr "" + +#: update-lily.py:249 +msgid "remove previous build" +msgstr "" + +#: update-lily.py:252 #, c-format -msgid "no lilypond output found for %s" +msgid "fetch and build URL [%s]" msgstr "" -#: ly2dvi.py:395 +#: update-lily.py:358 #, fuzzy, c-format -msgid "invalid value: %s" -msgstr "carattere illegale: `%c'" +msgid "listing %s..." +msgstr "Genero le voci..." + +#: update-lily.py:418 +#, c-format +msgid "latest is %s" +msgstr "" + +#: update-lily.py:419 +#, c-format +msgid "relax, %s is up to date" +msgstr "" -#: ly2dvi.py:602 scores.cc:44 +#: update-lily.py:427 update-lily.py:439 #, fuzzy, c-format -msgid "dependencies output to %s..." -msgstr "L'output stampato è inviato a %s..." +msgid "fetching %s..." +msgstr "Genero le voci..." -#: ly2dvi.py:603 +#: update-lily.py:448 #, fuzzy, c-format -msgid "%s output to %s..." -msgstr "L'output MIDI è inviato a %s..." +msgid "building %s..." +msgstr "Genero le voci..." #: data-file.cc:54 msgid "EOF in a string" msgstr "EOF in una corda" -#: dstream.cc:186 -#, fuzzy -msgid "not enough fields in Dstream init" -msgstr "Non ci sono sufficienti campi in Dstream init." - #: getopt-long.cc:145 #, c-format msgid "option `%s' requires an argument" @@ -189,6 +327,12 @@ msgstr "posizione sconosciuta" msgid "can't map file" msgstr "non posso mappare il documento" +#: lilypond-stream.cc:111 mapped-file-storage.cc:87 paper-stream.cc:40 +#: scores.cc:48 simple-file-storage.cc:44 text-stream.cc:23 +#, c-format +msgid "can't open file: `%s'" +msgstr "non posso aprire il file: `%s'" + #: simple-file-storage.cc:56 #, fuzzy, c-format msgid "Huh? Got %d, expected %d characters" @@ -221,42 +365,42 @@ msgstr "non riesco a trovare il carattere `%s'" msgid "Error parsing AFM file: %s" msgstr "" -#: all-font-metrics.cc:84 +#: all-font-metrics.cc:95 #, c-format msgid "checksum mismatch for font file: `%s'" msgstr "" -#: all-font-metrics.cc:86 +#: all-font-metrics.cc:97 #, c-format msgid "does not match: `%s'" msgstr "" -#: all-font-metrics.cc:91 +#: all-font-metrics.cc:102 msgid "" " Rebuild all .afm files, and remove all .pk and .tfm files. Rerun with -V " "to show font paths." msgstr "" -#: all-font-metrics.cc:155 +#: all-font-metrics.cc:167 #, fuzzy, c-format msgid "can't find font: `%s'" msgstr "non trovo il file: `%s'" -#: all-font-metrics.cc:156 +#: all-font-metrics.cc:168 msgid "Loading default font" msgstr "" -#: all-font-metrics.cc:171 +#: all-font-metrics.cc:183 #, fuzzy, c-format msgid "can't find default font: `%s'" msgstr "non trovo il file: `%s'" -#: all-font-metrics.cc:172 includable-lexer.cc:51 scores.cc:137 +#: all-font-metrics.cc:184 includable-lexer.cc:51 scores.cc:137 #, fuzzy, c-format msgid "(search path: `%s')" msgstr "(Il path di caricamento è `%s'" -#: all-font-metrics.cc:173 parser.yy:1681 +#: all-font-metrics.cc:185 parser.yy:1685 msgid "Giving up" msgstr "" @@ -335,7 +479,7 @@ msgstr "" msgid "invalid inversion pitch: not part of chord: %s" msgstr "" -#: chord-tremolo-engraver.cc:141 percent-repeat-engraver.cc:162 +#: chord-tremolo-engraver.cc:141 percent-repeat-engraver.cc:193 #, fuzzy msgid "unterminated chord tremolo" msgstr "beam non terminato" @@ -349,36 +493,26 @@ msgstr "" msgid "Too many clashing notecolumns. Ignoring them." msgstr "Troppe collisioni tra colonne di note. Le ignoro." -#: debug.cc:26 -#, fuzzy -msgid "floating point exception" -msgstr "Eccezione di virgola mobile" - -#: debug.cc:50 -#, fuzzy -msgid "can't set mem-checking!" -msgstr "non posso settare mem-checking" - #: dimensions.cc:13 msgid "NaN" msgstr "" -#: dynamic-engraver.cc:198 span-dynamic-performer.cc:86 +#: dynamic-engraver.cc:197 span-dynamic-performer.cc:86 #, fuzzy msgid "can't find start of (de)crescendo" msgstr "non trovo un (de)crescendo fino alla fine" -#: dynamic-engraver.cc:223 +#: dynamic-engraver.cc:222 #, fuzzy msgid "already have a crescendo" msgstr "crescendo non terminato" -#: dynamic-engraver.cc:224 +#: dynamic-engraver.cc:223 #, fuzzy msgid "already have a decrescendo" msgstr "crescendo non terminato" -#: dynamic-engraver.cc:318 +#: dynamic-engraver.cc:317 #, fuzzy msgid "unterminated (de)crescendo" msgstr "crescendo non terminato" @@ -412,11 +546,11 @@ msgstr "non msgid "Unattached grace notes. Attaching to last musical column." msgstr "" -#: hairpin.cc:71 +#: hairpin.cc:93 msgid "decrescendo too small" msgstr "" -#: hairpin.cc:72 +#: hairpin.cc:94 #, fuzzy msgid "crescendo too small" msgstr "troppo piccolo" @@ -430,13 +564,15 @@ msgstr "beam non terminato" msgid "Nothing to connect hyphen to on the left. Ignoring hyphen request." msgstr "" -#: includable-lexer.cc:49 lily-guile.cc:139 midi-score-parser.cc:24 -#: scores.cc:136 scores.cc:142 -#, c-format -msgid "can't find file: `%s'" -msgstr "non trovo il file: `%s'" +#: key-engraver.cc:99 +msgid "Conflicting key signatures found." +msgstr "" + +#: key-engraver.cc:100 +msgid "This was the other key definition." +msgstr "" -#: key-engraver.cc:103 key-performer.cc:77 +#: key-performer.cc:77 msgid "FIXME: key change merge" msgstr "" @@ -459,106 +595,88 @@ msgstr "" msgid "Calculating column positions..." msgstr "Calcolo delle posizioni della colonne..." -#: lyric-phrasing-engraver.cc:269 +#: lyric-phrasing-engraver.cc:284 msgid "lyrics found without any matching notehead" msgstr "" -#: lyric-phrasing-engraver.cc:274 +#: lyric-phrasing-engraver.cc:289 msgid "Huh? Melismatic note found to have associated lyrics." msgstr "" -#: main.cc:104 +#. another bug in option parser: --output=foe is taken as an abbreviation +#. for --output-format +#. {_i ("EXT"), "output-format", 'f', _i ("use output format EXT (scm, ps, tex or as)")}, +#: main.cc:108 msgid "EXT" msgstr "" -#: main.cc:104 +#: main.cc:108 msgid "use output format EXT (scm, ps, tex or as)" msgstr "" -#: main.cc:106 +#: main.cc:110 msgid "FIELD" msgstr "" -#: main.cc:106 +#: main.cc:110 msgid "write header field to BASENAME.FIELD" msgstr "" -#: main.cc:107 main.cc:110 -msgid "DIR" -msgstr "" - -#: main.cc:107 +#: main.cc:111 #, fuzzy msgid "add DIR to search path" msgstr " -I, --include=DIR aggiunge DIR ai path di ricerca\n" -#: main.cc:98 main.cc:108 -msgid "FILE" -msgstr "" - -#: main.cc:108 +#: main.cc:112 #, fuzzy msgid "use FILE as init file" msgstr " -i, --init=NOMEFILE usa NOMEFILE come file iniziale\n" -#: main.cc:110 +#: main.cc:114 msgid "prepend DIR to dependencies" msgstr "" -#: main.cc:111 -#, fuzzy -msgid "produce MIDI output only" -msgstr " -M, --no-paper produce solo output midi\n" - -#: main.cc:112 -msgid "NAME" +#: main.cc:115 +msgid "EXPR" msgstr "" -#: main.cc:112 -msgid "write output to NAME" +#: main.cc:115 +msgid "evalute EXPR as Scheme after .scm init is read" msgstr "" -#: main.cc:113 +#: main.cc:118 #, fuzzy msgid "inhibit file output naming and exporting" msgstr "" " -s, --safe inibisce la rinomina dei file di output e " "l'esportazione di macro di TeX\n" -#: main.cc:117 -msgid "EXPR" -msgstr "" - -#: main.cc:117 -msgid "evalute EXPR as Scheme after .scm init is read" -msgstr "" - #. #. No version number or newline here. It confuses help2man #. -#: main.cc:134 +#: main.cc:138 #, c-format msgid "Usage: %s [OPTION]... [FILE]..." msgstr "Uso: %s [OPZIONE]... [FILE]..." -#: main.cc:136 +#: main.cc:140 #, fuzzy msgid "Typeset music and or play MIDI from FILE" msgstr "Stampa partitura oppure suona una song MIDI da FILE o " -#: main.cc:140 +#: main.cc:144 msgid "" "LilyPond is a music typesetter. It produces beautiful sheet music\n" "using a high level description file as input. LilyPond is part of \n" "the GNU Project.\n" msgstr "" -#: main.cc:150 +#: main.cc:154 #, fuzzy msgid "This binary was compiled with the following options:" msgstr "GNU LilyPond è stata compilata con le seguenti impostazioni:" -#: main.cc:55 main.cc:177 +#: main.cc:55 main.cc:181 #, c-format msgid "" "This is free software. It is covered by the GNU General Public License,\n" @@ -566,17 +684,17 @@ msgid "" "certain conditions. Invoke as `%s --warranty' for more information.\n" msgstr "" -#: main.cc:62 main.cc:184 main.cc:196 +#: main.cc:62 main.cc:188 main.cc:200 #, c-format msgid "Copyright (c) %s by" msgstr "Copyright (c) %s di" -#: main.cc:194 +#: main.cc:198 #, fuzzy msgid "GNU LilyPond -- The music typesetter" msgstr "GNU LilyPond -- Il tipografo musicale del progetto GNU" -#: main.cc:71 main.cc:202 +#: main.cc:71 main.cc:206 msgid "" " This program is free software; you can redistribute it and/or\n" "modify it under the terms of the GNU General Public License version 2\n" @@ -608,16 +726,16 @@ msgstr "" "Cambridge, MA 02136\n" "USA.\n" -#: midi-item.cc:312 +#: midi-item.cc:138 #, fuzzy, c-format msgid "no such instrument: `%s'" msgstr "% strumento:" -#: midi-item.cc:402 +#: midi-item.cc:227 msgid "silly duration" msgstr "indicazione durata priva di senso" -#: midi-item.cc:415 +#: midi-item.cc:240 msgid "silly pitch" msgstr "indicazione altezza priva di senso" @@ -626,23 +744,23 @@ msgstr "indicazione altezza priva di senso" msgid "Transposition by %s makes accidental larger than two" msgstr "la trasposizine di %s rende le alterazioni più che doppie" -#: music.cc:224 +#: music.cc:232 msgid "ly_get_mus_property (): Not a Music" msgstr "" -#: music.cc:238 +#: music.cc:246 msgid "ly_set_mus_property (): Not a symbol" msgstr "" -#: music.cc:250 +#: music.cc:258 msgid "ly_set_mus_property (): not of type Music" msgstr "" -#: music.cc:264 +#: music.cc:272 msgid "ly_make_music (): Not a string" msgstr "" -#: music.cc:284 +#: music.cc:292 msgid "ly_music_name (): Not a music expression" msgstr "" @@ -680,7 +798,7 @@ msgstr "Cosa? Non msgid "paper output to %s..." msgstr "L'output stampato è inviato a %s..." -#: lilypond-stream.cc:93 paper-outputter.cc:85 performance.cc:95 +#: lilypond-stream.cc:93 paper-outputter.cc:85 performance.cc:99 msgid ", at " msgstr ", a " @@ -724,9 +842,9 @@ msgstr "" msgid "none of these in my family: `%s'" msgstr "" -#: percent-repeat-engraver.cc:108 +#: percent-repeat-engraver.cc:118 #, fuzzy -msgid "Don't know yet how to handle this percent repeat." +msgid "Don't know how to handle a percent repeat of this length." msgstr "non so manipolare tasti vuoti" #: percent-repeat-iterator.cc:53 @@ -738,16 +856,16 @@ msgstr "" msgid "Track ... " msgstr "traccia " -#: performance.cc:79 +#: performance.cc:83 msgid "Creator: " msgstr "Autore: " -#: performance.cc:109 +#: performance.cc:113 #, c-format msgid "from musical definition: %s" msgstr "della definizione musicale: %s" -#: performance.cc:164 +#: performance.cc:168 #, c-format msgid "MIDI output to %s..." msgstr "L'output MIDI è inviato a %s..." @@ -784,12 +902,12 @@ msgstr "" msgid "Wrong type for property: %s, type: %s, value found: %s, type: %s" msgstr "Tipo sbagliato per il valore di una proprietà" -#: rest-collision.cc:190 +#: rest-collision.cc:194 #, fuzzy msgid "too many colliding rests" msgstr "Troppi crescendi" -#: rest-collision.cc:194 +#: rest-collision.cc:198 msgid "too many notes for rest collision" msgstr "" @@ -813,7 +931,7 @@ msgstr "ho trovato un errore, /*non sto elaborando lo spartito*/" msgid "elapsed time: %.2f seconds" msgstr "durata: %.2f secondi" -#: score-engraver.cc:183 +#: score-engraver.cc:188 #, fuzzy, c-format msgid "unbound spanner `%s'" msgstr "Spanner non legato `%s'" @@ -905,11 +1023,11 @@ msgstr "" #. How to shut up this warning, when no notes appeared because #. they were suicided by Thread_devnull_engraver? -#: tie-engraver.cc:215 tie-performer.cc:173 +#: tie-engraver.cc:220 tie-performer.cc:173 msgid "No ties were created!" msgstr "" -#: tie-engraver.cc:234 +#: tie-engraver.cc:240 msgid "lonely tie" msgstr "" @@ -1005,99 +1123,99 @@ msgstr "" msgid "First argument must be a procedure taking 1 argument" msgstr "" -#: parser.yy:1236 +#: parser.yy:1233 msgid "Expecting string as script definition" msgstr "" -#: parser.yy:1246 +#: parser.yy:1243 msgid "Can't specify direction for this request" msgstr "" -#: parser.yy:1371 +#: parser.yy:1368 msgid "Expecting musical-pitch value" msgstr "" -#: parser.yy:1382 +#: parser.yy:1379 #, fuzzy msgid "Must have duration object" msgstr "indicazione durata priva di senso" -#: parser.yy:1391 parser.yy:1399 parser.yy:1679 +#: parser.yy:1388 parser.yy:1396 parser.yy:1683 #, fuzzy msgid "Have to be in Lyric mode for lyrics" msgstr "bisogna essere in Lyric mode per i testi" -#: parser.yy:1564 parser.yy:1593 +#: parser.yy:1549 parser.yy:1597 #, c-format msgid "not a duration: %d" msgstr "non è una durata: %d" -#: parser.yy:1602 +#: parser.yy:1606 #, fuzzy msgid "Have to be in Note mode for notes" msgstr "bisogna essere in Note mode per le note" -#: parser.yy:1698 +#: parser.yy:1702 #, fuzzy msgid "Have to be in Chord mode for chords" msgstr "bisogna essere in Chord mode per gli accordi" -#: parser.yy:1860 parser.yy:1878 +#: parser.yy:1864 parser.yy:1882 msgid "need integer number arg" msgstr "" -#: parser.yy:1864 +#: parser.yy:1868 msgid "Must be positive integer" msgstr "" -#: lexer.ll:166 +#: lexer.ll:167 msgid "EOF found inside a comment" msgstr "ho trovato un EOF in un commento" -#: lexer.ll:180 +#: lexer.ll:181 msgid "\\maininput disallowed outside init files" msgstr "" -#: lexer.ll:204 +#: lexer.ll:205 #, fuzzy, c-format msgid "wrong or undefined identifier: `%s'" msgstr "indentificatore non definito: `%s'" #. backup rule -#: lexer.ll:209 +#: lexer.ll:210 #, fuzzy msgid "Missing end quote" msgstr "apice finale mancante" #. backup rule -#: lexer.ll:231 lexer.ll:235 +#: lexer.ll:232 lexer.ll:236 msgid "white expected" msgstr "aspettavo uno spazio bianco" -#: lexer.ll:244 +#: lexer.ll:245 msgid "Can't evaluate Scheme in safe mode" msgstr "" -#: lexer.ll:336 +#: lexer.ll:330 msgid "Brace found at end of lyric. Did you forget a space?" msgstr "" -#: lexer.ll:440 +#: lexer.ll:434 #, fuzzy, c-format msgid "invalid character: `%c'" msgstr "carattere illegale: `%c'" -#: lexer.ll:521 +#: lexer.ll:515 #, c-format msgid "unknown escaped string: `\\%s'" msgstr "stringa di escape sconosciuta: `\\%s'" -#: lexer.ll:603 +#: lexer.ll:597 #, fuzzy, c-format msgid "incorrect lilypond version: %s (%s, %s)" msgstr "versione di mudela errata: %s (%s, %s)" -#: lexer.ll:604 +#: lexer.ll:598 msgid "Consider converting the input with the convert-ly script" msgstr "" @@ -1329,6 +1447,18 @@ msgstr "mi spettavo una traccia MIDI" msgid "invalid track length" msgstr "lunghezza della traccia non valida" +#, fuzzy +#~ msgid "not enough fields in Dstream init" +#~ msgstr "Non ci sono sufficienti campi in Dstream init." + +#, fuzzy +#~ msgid "floating point exception" +#~ msgstr "Eccezione di virgola mobile" + +#, fuzzy +#~ msgid "can't set mem-checking!" +#~ msgstr "non posso settare mem-checking" + #, fuzzy #~ msgid "Dependency file left in `%s'" #~ msgstr "scrivo il file delle dipendenze: `%s'..." diff --git a/po/ja.po b/po/ja.po index cca31021b3..2ef4ff69a0 100644 --- a/po/ja.po +++ b/po/ja.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: lilypond 1.2.17\n" -"POT-Creation-Date: 2001-03-21 16:06+0100\n" +"POT-Creation-Date: 2001-04-02 13:40+0200\n" "PO-Revision-Date: 2000-03-29 20:50+0900\n" "Last-Translator: Daisuke Yamashita \n" "Language-Team: Japanese \n" @@ -13,146 +13,286 @@ msgstr "" "Content-Type: text/plain; charset=EUC-JP\n" "Content-Transfer-Encoding: 8bit\n" -#: ly2dvi.py:86 main.cc:95 main.cc:105 +#: ly2dvi.py:88 +msgid "Generate .dvi with LaTeX for LilyPond" +msgstr "" + +#: data-file.cc:118 input.cc:85 ly2dvi.py:167 midi-parser.cc:100 mup2ly.py:93 +#: update-lily.py:113 warn.cc:23 +msgid "warning: " +msgstr "·Ù¹ð: " + +#: input.cc:90 ly2dvi.py:172 mup2ly.py:98 mup2ly.py:186 update-lily.py:118 +#: update-lily.py:206 warn.cc:9 warn.cc:17 +msgid "error: " +msgstr "¥¨¥é¡¼: " + +#: ly2dvi.py:174 mup2ly.py:100 update-lily.py:120 +#, fuzzy +msgid "Exiting ... " +msgstr "¹Ô ..." + +#: ly2dvi.py:232 mup2ly.py:158 update-lily.py:178 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... FILE" +msgstr "»È¤¤Êý: %s [¥ª¥×¥·¥ç¥ó]... [¥Õ¥¡¥¤¥ë]" + +#: ly2dvi.py:236 main.cc:119 main.cc:150 mup2ly.py:162 update-lily.py:182 +msgid "Options:" +msgstr "¥ª¥×¥·¥ç¥ó:" + +#: ly2dvi.py:240 main.cc:123 main.cc:173 mup2ly.py:166 update-lily.py:186 +#, c-format +msgid "Report bugs to %s" +msgstr "¥Ð¥°¥ì¥Ý¡¼¥È¤Ï %s ¤Ø" + +#: ly2dvi.py:256 mup2ly.py:183 update-lily.py:203 +#, fuzzy, c-format +msgid "Invoking `%s'" +msgstr "Í×µá¤ò¼Î¤Æ¤Þ¤¹: `%s'" + +#: ly2dvi.py:260 mup2ly.py:186 update-lily.py:206 +#, c-format +msgid "command exited with value %d" +msgstr "" + +#: ly2dvi.py:262 mup2ly.py:188 update-lily.py:208 +msgid "(ignored)" +msgstr "" + +#: ly2dvi.py:272 update-lily.py:218 +#, fuzzy, c-format +msgid "Cleaning %s..." +msgstr "Í×µá¤ò¼Î¤Æ¤Þ¤¹: `%s'" + +#: ly2dvi.py:286 mup2ly.py:212 update-lily.py:232 +#, fuzzy, c-format +msgid "no such setting: %s" +msgstr "¤½¤ÎÍͤʳڴï¤Ï¤¢¤ê¤Þ¤»¤ó: `%s'" + +#: ly2dvi.py:298 main.cc:113 +msgid "write Makefile dependencies for every input file" +msgstr "Á´¤Æ¤ÎÆþÎÏ¥Õ¥¡¥¤¥ë¤Î Makefile °Í¸´Ø·¸¤ò½ñ¤­¹þ¤à" + +#: ly2dvi.py:299 main.cc:95 main.cc:109 mup2ly.py:1111 update-lily.py:246 msgid "this help" msgstr "¤³¤Î¥Ø¥ë¥×" -#: ly2dvi.py:87 -msgid "change global setting KEY to VAL" +#: ly2dvi.py:300 main.cc:111 main.cc:114 +msgid "DIR" +msgstr "DIR" + +#: ly2dvi.py:300 +#, fuzzy +msgid "add DIR to LilyPond's search path" +msgstr "DIR ¤ò¸¡º÷¥Ñ¥¹¤ËÄɲÃ" + +#: ly2dvi.py:301 +#, c-format +msgid "keep all output, and name the directory %s.dir" msgstr "" -#: ly2dvi.py:88 +#: ly2dvi.py:302 +msgid "don't run LilyPond" +msgstr "" + +#: ly2dvi.py:303 main.cc:116 +msgid "produce MIDI output only" +msgstr "MIDI ½ÐÎϤÎÀ¸À®¤Î¤ß" + +#: ly2dvi.py:304 main.cc:98 main.cc:112 main.cc:117 +msgid "FILE" +msgstr "FILE" + +#: ly2dvi.py:304 +#, fuzzy +msgid "write ouput to FILE" +msgstr "BASENAME[-x].³ÈÄ¥»Ò ¤Ø½ÐÎϤò½ñ¤­¹þ¤à" + +#: ly2dvi.py:306 #, fuzzy msgid "generate PostScript output" msgstr "À©¸Â¤ò´ËÏÂ" -#: ly2dvi.py:89 -msgid "keep all output, and name the directory ly2dvi.dir" +#: ly2dvi.py:307 +msgid "KEY=VAL" msgstr "" -#: ly2dvi.py:90 -msgid "don't run LilyPond" +#: ly2dvi.py:307 +msgid "change global setting KEY to VAL" msgstr "" -#: ly2dvi.py:91 main.cc:115 +#: ly2dvi.py:308 main.cc:120 mup2ly.py:1114 update-lily.py:250 #, fuzzy msgid "verbose" msgstr "¾ÜºÙ¤Ê¾ðÊó¤òɽ¼¨¤·¤Þ¤¹" -#: ly2dvi.py:92 main.cc:104 main.cc:114 +#: ly2dvi.py:309 main.cc:104 main.cc:119 mup2ly.py:1115 update-lily.py:251 msgid "print version number" msgstr "¥Ð¡¼¥¸¥ç¥óÈÖ¹æ¤òɽ¼¨" -#: ly2dvi.py:93 main.cc:106 main.cc:116 +#: ly2dvi.py:310 main.cc:106 main.cc:121 mup2ly.py:1116 update-lily.py:253 msgid "show warranty and copyright" msgstr "ÊݾڤÈÃøºî¸¢¤Ë¤Ä¤¤¤ÆÉ½¼¨¤¹¤ë" -#: ly2dvi.py:94 -msgid "dump all final output into DIR" -msgstr "" +#: ly2dvi.py:336 +#, fuzzy, c-format +msgid "Analyzing %s..." +msgstr "Í×µá¤ò¼Î¤Æ¤Þ¤¹: `%s'" -#: ly2dvi.py:95 main.cc:109 -msgid "write Makefile dependencies for every input file" -msgstr "Á´¤Æ¤ÎÆþÎÏ¥Õ¥¡¥¤¥ë¤Î Makefile °Í¸´Ø·¸¤ò½ñ¤­¹þ¤à" +#: ly2dvi.py:381 +#, c-format +msgid "no lilypond output found for %s" +msgstr "" -#: data-file.cc:118 input.cc:85 ly2dvi.py:123 midi-parser.cc:100 warn.cc:23 -msgid "warning: " -msgstr "·Ù¹ð: " +#: ly2dvi.py:423 +#, fuzzy, c-format +msgid "invalid value: %s" +msgstr "̵¸ú¤Êʸ»ú: `%c'" -#: input.cc:90 ly2dvi.py:128 ly2dvi.py:263 warn.cc:9 warn.cc:17 -msgid "error: " -msgstr "¥¨¥é¡¼: " +#: ly2dvi.py:497 ly2dvi.py:514 +#, fuzzy, c-format +msgid "Running %s..." +msgstr "Í×µá¤ò¼Î¤Æ¤Þ¤¹: `%s'" -#: ly2dvi.py:130 -#, fuzzy -msgid "Exiting ... " -msgstr "¹Ô ..." +#: ly2dvi.py:654 scores.cc:44 +#, fuzzy, c-format +msgid "dependencies output to %s..." +msgstr "%s ¤Ø paper ½ÐÎÏ..." -#: ly2dvi.py:149 +#: ly2dvi.py:665 #, fuzzy, c-format -msgid "Reading %s..." -msgstr "Í×µá¤ò¼Î¤Æ¤Þ¤¹: `%s'" +msgid "%s output to %s..." +msgstr "%s ¤Ø¤Î MIDI ½ÐÎÏ" -#: lilypond-stream.cc:111 ly2dvi.py:153 mapped-file-storage.cc:87 -#: paper-stream.cc:40 scores.cc:48 simple-file-storage.cc:44 text-stream.cc:23 +#: includable-lexer.cc:49 lily-guile.cc:139 ly2dvi.py:667 +#: midi-score-parser.cc:24 scores.cc:136 scores.cc:142 #, fuzzy, c-format -msgid "can't open file: `%s'" -msgstr "¥Õ¥¡¥¤¥ë¤ò³«¤±¤Þ¤»¤ó: `%s'" +msgid "can't find file: `%s'" +msgstr "¥Õ¥¡¥¤¥ë¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó: `%s'" + +#: ly2dvi.py:677 +msgid "no FILEs specified, can't invoke as filter" +msgstr "" -#: ly2dvi.py:216 +#: mup2ly.py:51 +msgid "Convert mup to ly" +msgstr "" + +#: mup2ly.py:960 #, fuzzy, c-format -msgid "Usage: %s [OPTION]... FILE" -msgstr "»È¤¤Êý: %s [¥ª¥×¥·¥ç¥ó]... [¥Õ¥¡¥¤¥ë]" +msgid "no such context: %s" +msgstr "¤½¤ÎÍͤʳڴï¤Ï¤¢¤ê¤Þ¤»¤ó: `%s'" -#: ly2dvi.py:218 -msgid "Generate .dvi with LaTeX for LilyPond" +#: mup2ly.py:1109 +msgid "debug" msgstr "" -#: ly2dvi.py:220 main.cc:119 main.cc:146 -msgid "Options:" -msgstr "¥ª¥×¥·¥ç¥ó:" +#: mup2ly.py:1110 +msgid "define macro NAME [optional expansion EXP]" +msgstr "" + +#: main.cc:117 mup2ly.py:1112 +#, fuzzy +msgid "write output to FILE" +msgstr "BASENAME[-x].³ÈÄ¥»Ò ¤Ø½ÐÎϤò½ñ¤­¹þ¤à" -#: ly2dvi.py:224 -msgid "all output is written in the CURRENT directory" +#: mup2ly.py:1113 +msgid "only pre-process" msgstr "" -#: ly2dvi.py:226 main.cc:123 main.cc:169 -#, c-format -msgid "Report bugs to %s" -msgstr "¥Ð¥°¥ì¥Ý¡¼¥È¤Ï %s ¤Ø" +#: mup2ly.py:1190 +#, fuzzy, c-format +msgid "Processing %s..." +msgstr "½èÍýÃæ..." -#: ly2dvi.py:260 +#: mup2ly.py:1203 #, fuzzy, c-format -msgid "Invoking `%s'" -msgstr "Í×µá¤ò¼Î¤Æ¤Þ¤¹: `%s'" +msgid "Writing %s..." +msgstr "¹Ô ..." + +#: update-lily.py:46 +msgid "Fetch and rebuild from latest source package" +msgstr "" -#: ly2dvi.py:263 +#: update-lily.py:238 #, c-format -msgid "command exited with value %d" +msgid "unpack and build in DIR [%s]" msgstr "" -#: ly2dvi.py:265 -msgid "(ignored)" +#: update-lily.py:239 +msgid "execute COMMAND, subtitute:" msgstr "" -#: ly2dvi.py:301 -#, fuzzy, c-format -msgid "no such setting: %s" -msgstr "¤½¤ÎÍͤʳڴï¤Ï¤¢¤ê¤Þ¤»¤ó: `%s'" +#: update-lily.py:240 +msgid "%b: build root" +msgstr "" -#: ly2dvi.py:309 +#: update-lily.py:241 #, c-format -msgid "Analyzing `%s'" +msgid "%n: package name" +msgstr "" + +#: update-lily.py:242 +#, fuzzy +msgid "%r: release directory" +msgstr "¸«¤Ä¤«¤é¤Ê¤¤¤«ºî¤ì¤Þ¤»¤ó: `%s'" + +#: update-lily.py:243 +msgid "%t: tarball" +msgstr "" + +#: update-lily.py:244 +msgid "%v: package version" msgstr "" -#: ly2dvi.py:353 +#: update-lily.py:247 #, c-format -msgid "no lilypond output found for %s" +msgid "keep all output, and name the directory %s" msgstr "" -#: ly2dvi.py:395 +#: update-lily.py:248 +msgid "upon failure notify EMAIL[,EMAIL]" +msgstr "" + +#: update-lily.py:249 +msgid "remove previous build" +msgstr "" + +#: update-lily.py:252 +#, c-format +msgid "fetch and build URL [%s]" +msgstr "" + +#: update-lily.py:358 #, fuzzy, c-format -msgid "invalid value: %s" -msgstr "̵¸ú¤Êʸ»ú: `%c'" +msgid "listing %s..." +msgstr "¹Ô ..." -#: ly2dvi.py:602 scores.cc:44 +#: update-lily.py:418 +#, c-format +msgid "latest is %s" +msgstr "" + +#: update-lily.py:419 +#, c-format +msgid "relax, %s is up to date" +msgstr "" + +#: update-lily.py:427 update-lily.py:439 #, fuzzy, c-format -msgid "dependencies output to %s..." -msgstr "%s ¤Ø paper ½ÐÎÏ..." +msgid "fetching %s..." +msgstr "Í×µá¤ò¼Î¤Æ¤Þ¤¹: `%s'" -#: ly2dvi.py:603 +#: update-lily.py:448 #, fuzzy, c-format -msgid "%s output to %s..." -msgstr "%s ¤Ø¤Î MIDI ½ÐÎÏ" +msgid "building %s..." +msgstr "Í×µá¤ò¼Î¤Æ¤Þ¤¹: `%s'" #: data-file.cc:54 msgid "EOF in a string" msgstr "ʸ»úÎóÃæ¤Ë EOF ¤¬¤¢¤ê¤Þ¤¹" -#: dstream.cc:186 -msgid "not enough fields in Dstream init" -msgstr "Dstream ½é´ü²½»þ¤Î¥Õ¥£¡¼¥ë¥É¤¬ÉÔ½½Ê¬" - #: getopt-long.cc:145 #, fuzzy, c-format msgid "option `%s' requires an argument" @@ -187,6 +327,12 @@ msgstr " msgid "can't map file" msgstr "¥Õ¥¡¥¤¥ë¤ò¥Þ¥Ã¥×¤Ç¤­¤Þ¤»¤ó" +#: lilypond-stream.cc:111 mapped-file-storage.cc:87 paper-stream.cc:40 +#: scores.cc:48 simple-file-storage.cc:44 text-stream.cc:23 +#, fuzzy, c-format +msgid "can't open file: `%s'" +msgstr "¥Õ¥¡¥¤¥ë¤ò³«¤±¤Þ¤»¤ó: `%s'" + #: simple-file-storage.cc:56 #, c-format msgid "Huh? Got %d, expected %d characters" @@ -219,42 +365,42 @@ msgstr " msgid "Error parsing AFM file: %s" msgstr "" -#: all-font-metrics.cc:84 +#: all-font-metrics.cc:95 #, c-format msgid "checksum mismatch for font file: `%s'" msgstr "" -#: all-font-metrics.cc:86 +#: all-font-metrics.cc:97 #, c-format msgid "does not match: `%s'" msgstr "" -#: all-font-metrics.cc:91 +#: all-font-metrics.cc:102 msgid "" " Rebuild all .afm files, and remove all .pk and .tfm files. Rerun with -V " "to show font paths." msgstr "" -#: all-font-metrics.cc:155 +#: all-font-metrics.cc:167 #, fuzzy, c-format msgid "can't find font: `%s'" msgstr "¥Õ¥©¥ó¥È¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó: `%s'" -#: all-font-metrics.cc:156 +#: all-font-metrics.cc:168 msgid "Loading default font" msgstr "¥Ç¥Õ¥©¥ë¥È¥Õ¥©¥ó¥È¤ò¥í¡¼¥É¤·¤Þ¤¹" -#: all-font-metrics.cc:171 +#: all-font-metrics.cc:183 #, fuzzy, c-format msgid "can't find default font: `%s'" msgstr "¥Ç¥Õ¥©¥ë¥È¥Õ¥©¥ó¥È¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó: `%s'" -#: all-font-metrics.cc:172 includable-lexer.cc:51 scores.cc:137 +#: all-font-metrics.cc:184 includable-lexer.cc:51 scores.cc:137 #, c-format msgid "(search path: `%s')" msgstr "(¸¡º÷¥Ñ¥¹: `%s')" -#: all-font-metrics.cc:173 parser.yy:1681 +#: all-font-metrics.cc:185 parser.yy:1685 msgid "Giving up" msgstr "Äü¤á¤Þ¤·¤¿" @@ -335,7 +481,7 @@ msgstr "̵ msgid "invalid inversion pitch: not part of chord: %s" msgstr "̵¸ú¤Êž²ó¥Ô¥Ã¥Á: ¥³¡¼¥É¤Î°ìÉô¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó: %s" -#: chord-tremolo-engraver.cc:141 percent-repeat-engraver.cc:162 +#: chord-tremolo-engraver.cc:141 percent-repeat-engraver.cc:193 #, fuzzy msgid "unterminated chord tremolo" msgstr "½ªÃ¼¤Î¤Ê¤¤¥Ï¥¤¥Õ¥ó" @@ -349,35 +495,26 @@ msgstr "È¿ msgid "Too many clashing notecolumns. Ignoring them." msgstr "Äà¤ê¹ç¤ï¤Ê¤¤²»É䤬¿¤¹¤®¤Þ¤¹¡£¤½¤ì¤é¤ò̵»ë¤·¤Þ¤¹¡£" -#: debug.cc:26 -msgid "floating point exception" -msgstr "ÉâÆ°¾®¿ôÅÀÎã³°" - -#: debug.cc:50 -#, fuzzy -msgid "can't set mem-checking!" -msgstr "¥á¥â¥ê¥Á¥§¥Ã¥¯¤òÀßÄê¤Ç¤­¤Þ¤»¤ó" - #: dimensions.cc:13 msgid "NaN" msgstr "NaN" -#: dynamic-engraver.cc:198 span-dynamic-performer.cc:86 +#: dynamic-engraver.cc:197 span-dynamic-performer.cc:86 #, fuzzy msgid "can't find start of (de)crescendo" msgstr "ËöÈø¤Ø¤Î(¥Ç)¥¯¥ì¥Ã¥·¥§¥ó¥É¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó" -#: dynamic-engraver.cc:223 +#: dynamic-engraver.cc:222 #, fuzzy msgid "already have a crescendo" msgstr "´û¤Ë³Ã¤¬¤¢¤ê¤Þ¤¹" -#: dynamic-engraver.cc:224 +#: dynamic-engraver.cc:223 #, fuzzy msgid "already have a decrescendo" msgstr "´û¤Ë³Ã¤¬¤¢¤ê¤Þ¤¹" -#: dynamic-engraver.cc:318 +#: dynamic-engraver.cc:317 #, fuzzy msgid "unterminated (de)crescendo" msgstr "½ªÎ»¤·¤Æ¤¤¤Ê¤¤¥¯¥ì¥Ã¥·¥§¥ó¥É" @@ -410,11 +547,11 @@ msgstr " msgid "Unattached grace notes. Attaching to last musical column." msgstr "Áõ¾þ²»É䤬¤Ä¤±¤é¤ì¤Þ¤»¤ó¤Ç¤·¤¿¡£Ä¾Á°¤Î¥«¥é¥à¤Ë¤Ä¤±¤Þ¤¹" -#: hairpin.cc:71 +#: hairpin.cc:93 msgid "decrescendo too small" msgstr "" -#: hairpin.cc:72 +#: hairpin.cc:94 #, fuzzy msgid "crescendo too small" msgstr "¥¯¥ì¥Ã¥·¥§¥ó¥É" @@ -427,13 +564,15 @@ msgstr " msgid "Nothing to connect hyphen to on the left. Ignoring hyphen request." msgstr "º¸Â¦¤Ë·Ò¤²¤ë¥Ï¥¤¥Õ¥ó¤¬¤¢¤ê¤Þ¤»¤ó¡£¥Ï¥¤¥Õ¥ó¤ÎÍ×µá¤ò̵»ë¤·¤Þ¤¹" -#: includable-lexer.cc:49 lily-guile.cc:139 midi-score-parser.cc:24 -#: scores.cc:136 scores.cc:142 -#, fuzzy, c-format -msgid "can't find file: `%s'" -msgstr "¥Õ¥¡¥¤¥ë¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó: `%s'" +#: key-engraver.cc:99 +msgid "Conflicting key signatures found." +msgstr "" + +#: key-engraver.cc:100 +msgid "This was the other key definition." +msgstr "" -#: key-engraver.cc:103 key-performer.cc:77 +#: key-performer.cc:77 msgid "FIXME: key change merge" msgstr "FIXME: ¥­¡¼Êѹ¹¤Î¥Þ¡¼¥¸" @@ -456,91 +595,72 @@ msgstr "" msgid "Calculating column positions..." msgstr "¥«¥é¥à°ÌÃÖ¤ò·×»»Ãæ..." -#: lyric-phrasing-engraver.cc:269 +#: lyric-phrasing-engraver.cc:284 msgid "lyrics found without any matching notehead" msgstr "" -#: lyric-phrasing-engraver.cc:274 +#: lyric-phrasing-engraver.cc:289 msgid "Huh? Melismatic note found to have associated lyrics." msgstr "" -#: main.cc:104 +#. another bug in option parser: --output=foe is taken as an abbreviation +#. for --output-format +#. {_i ("EXT"), "output-format", 'f', _i ("use output format EXT (scm, ps, tex or as)")}, +#: main.cc:108 msgid "EXT" msgstr "EXT" -#: main.cc:104 +#: main.cc:108 #, fuzzy msgid "use output format EXT (scm, ps, tex or as)" msgstr "½ÐÎÏ¥Õ¥©¡¼¥Þ¥Ã¥È EXT ¤ò»È¤¦" -#: main.cc:106 +#: main.cc:110 #, fuzzy msgid "FIELD" msgstr "FILE" -#: main.cc:106 +#: main.cc:110 msgid "write header field to BASENAME.FIELD" msgstr "" -#: main.cc:107 main.cc:110 -msgid "DIR" -msgstr "DIR" - -#: main.cc:107 +#: main.cc:111 msgid "add DIR to search path" msgstr "DIR ¤ò¸¡º÷¥Ñ¥¹¤ËÄɲÃ" -#: main.cc:98 main.cc:108 -msgid "FILE" -msgstr "FILE" - -#: main.cc:108 +#: main.cc:112 msgid "use FILE as init file" msgstr "FILE ¤ò½é´ü²½¥Õ¥¡¥¤¥ë¤È¤·¤Æ»ÈÍÑ" -#: main.cc:110 +#: main.cc:114 msgid "prepend DIR to dependencies" msgstr "" -#: main.cc:111 -msgid "produce MIDI output only" -msgstr "MIDI ½ÐÎϤÎÀ¸À®¤Î¤ß" - -#: main.cc:112 -#, fuzzy -msgid "NAME" -msgstr "BASENAME" - -#: main.cc:112 -#, fuzzy -msgid "write output to NAME" -msgstr "BASENAME[-x].³ÈÄ¥»Ò ¤Ø½ÐÎϤò½ñ¤­¹þ¤à" - -#: main.cc:113 -msgid "inhibit file output naming and exporting" -msgstr "̾Á°ÉÕ¤±¤È¥¨¥¯¥¹¥Ý¡¼¥È¤Î½ÐÎÏ¥Õ¥¡¥¤¥ë¤òÍÞÀ©¤¹¤ë" - -#: main.cc:117 +#: main.cc:115 msgid "EXPR" msgstr "" -#: main.cc:117 +#: main.cc:115 msgid "evalute EXPR as Scheme after .scm init is read" msgstr "" +#: main.cc:118 +msgid "inhibit file output naming and exporting" +msgstr "̾Á°ÉÕ¤±¤È¥¨¥¯¥¹¥Ý¡¼¥È¤Î½ÐÎÏ¥Õ¥¡¥¤¥ë¤òÍÞÀ©¤¹¤ë" + #. #. No version number or newline here. It confuses help2man #. -#: main.cc:134 +#: main.cc:138 #, c-format msgid "Usage: %s [OPTION]... [FILE]..." msgstr "»È¤¤Êý: %s [¥ª¥×¥·¥ç¥ó]... [¥Õ¥¡¥¤¥ë]..." -#: main.cc:136 +#: main.cc:140 msgid "Typeset music and or play MIDI from FILE" msgstr "¥Õ¥¡¥¤¥ë¤Î³Ú¶Ê¤òÁÈÈǤ·¤¿¤ê¡¢MIDI ±éÁÕ¤·¤¿¤ê¤¹¤ë" -#: main.cc:140 +#: main.cc:144 msgid "" "LilyPond is a music typesetter. It produces beautiful sheet music\n" "using a high level description file as input. LilyPond is part of \n" @@ -550,11 +670,11 @@ msgstr "" "Èþ¤·¤¤ÉèÌ̤òºîÀ®¤¹¤ë¤³¤È¤¬¤Ç¤­¤Þ¤¹¡£LilyPond ¤Ï GNU " "¥×¥í¥¸¥§¥¯¥È¤Î°ìÉô¤Ç¤¹¡£\n" -#: main.cc:150 +#: main.cc:154 msgid "This binary was compiled with the following options:" msgstr "¤³¤Î¥Ð¥¤¥Ê¥ê¤Ï°Ê²¼¤Î¥ª¥×¥·¥ç¥óÉÕ¤­¤Ç¥³¥ó¥Ñ¥¤¥ë¤µ¤ì¤Þ¤·¤¿" -#: main.cc:55 main.cc:177 +#: main.cc:55 main.cc:181 #, c-format msgid "" "This is free software. It is covered by the GNU General Public License,\n" @@ -570,17 +690,17 @@ msgstr "" "¤³¤ì¤ò²þÊѤ·¤¿¤ê¡¢Ê£À½¤òÇÛÉÛ¤·¤¿¤ê¤¹¤ë»ö¤Ï´¿·Þ¤µ¤ì¤Þ¤¹¡£\n" "`--warranty' ¥ª¥×¥·¥ç¥óÉÕ¤­¤Çµ¯Æ°¤¹¤ë¤È¡¢¤è¤ê¾ÜºÙ¤Ê¾ðÊ󤬯À¤é¤ì¤Þ¤¹¡£\n" -#: main.cc:62 main.cc:184 main.cc:196 +#: main.cc:62 main.cc:188 main.cc:200 #, c-format msgid "Copyright (c) %s by" msgstr "Copyright (c) %s by" -#: main.cc:194 +#: main.cc:198 #, fuzzy msgid "GNU LilyPond -- The music typesetter" msgstr "GNU LilyPond -- The GNU Project music typesetter" -#: main.cc:71 main.cc:202 +#: main.cc:71 main.cc:206 msgid "" " This program is free software; you can redistribute it and/or\n" "modify it under the terms of the GNU General Public License version 2\n" @@ -627,16 +747,16 @@ msgstr "" "¤Ç¤¹(COPYING ¥Õ¥¡¥¤¥ë¤ò»²¾È)¡£¤½¤¦¤Ç¤Ê¤¤¾ì¹ç¤Ï¡¢Free Software Foundation,\n" "Inc., 675 Mass Ave, Cambridge, MA 02139, USA ¤Ë¼ê»æ¤ò½ñ¤¤¤Æ¤¯¤À¤µ¤¤¡£\n" -#: midi-item.cc:312 +#: midi-item.cc:138 #, c-format msgid "no such instrument: `%s'" msgstr "¤½¤ÎÍͤʳڴï¤Ï¤¢¤ê¤Þ¤»¤ó: `%s'" -#: midi-item.cc:402 +#: midi-item.cc:227 msgid "silly duration" msgstr "Çϼ¯¤²¤¿²»Ä¹" -#: midi-item.cc:415 +#: midi-item.cc:240 msgid "silly pitch" msgstr "Çϼ¯¤²¤¿¥Ô¥Ã¥Á" @@ -645,23 +765,23 @@ msgstr " msgid "Transposition by %s makes accidental larger than two" msgstr "%s ¤ÎÊÑÄ´¤Ë¤è¤Ã¤Æ¡¢Æó¤Ä¤òͤ¨¤ëÇÉÀ¸²»¤¬ºî¤é¤ì¤Þ¤·¤¿" -#: music.cc:224 +#: music.cc:232 msgid "ly_get_mus_property (): Not a Music" msgstr "" -#: music.cc:238 +#: music.cc:246 msgid "ly_set_mus_property (): Not a symbol" msgstr "" -#: music.cc:250 +#: music.cc:258 msgid "ly_set_mus_property (): not of type Music" msgstr "" -#: music.cc:264 +#: music.cc:272 msgid "ly_make_music (): Not a string" msgstr "" -#: music.cc:284 +#: music.cc:292 msgid "ly_music_name (): Not a music expression" msgstr "" @@ -698,7 +818,7 @@ msgstr " msgid "paper output to %s..." msgstr "%s ¤Ø paper ½ÐÎÏ..." -#: lilypond-stream.cc:93 paper-outputter.cc:85 performance.cc:95 +#: lilypond-stream.cc:93 paper-outputter.cc:85 performance.cc:99 msgid ", at " msgstr ", at " @@ -740,9 +860,9 @@ msgstr " msgid "none of these in my family: `%s'" msgstr "¥Õ¥¡¥ß¥ê¤ÎÃæ¤Ë¤¢¤ê¤Þ¤»¤ó" -#: percent-repeat-engraver.cc:108 +#: percent-repeat-engraver.cc:118 #, fuzzy -msgid "Don't know yet how to handle this percent repeat." +msgid "Don't know how to handle a percent repeat of this length." msgstr "¶õ¤Î¥­¡¼¤Î°·¤¤Êý¤¬È½¤ê¤Þ¤»¤ó" #: percent-repeat-iterator.cc:53 @@ -754,16 +874,16 @@ msgstr "È¿ msgid "Track ... " msgstr "¥È¥é¥Ã¥¯ ..." -#: performance.cc:79 +#: performance.cc:83 msgid "Creator: " msgstr "ºî¶Ê¼Ô: " -#: performance.cc:109 +#: performance.cc:113 #, c-format msgid "from musical definition: %s" msgstr "²»³ÚŪÄêµÁ¤è¤ê: %s" -#: performance.cc:164 +#: performance.cc:168 #, c-format msgid "MIDI output to %s..." msgstr "%s ¤Ø¤Î MIDI ½ÐÎÏ" @@ -800,11 +920,11 @@ msgstr "" msgid "Wrong type for property: %s, type: %s, value found: %s, type: %s" msgstr "°À­ÃͤؤΥ¿¥¤¥×¤¬´Ö°ã¤Ã¤Æ¤¤¤Þ¤¹" -#: rest-collision.cc:190 +#: rest-collision.cc:194 msgid "too many colliding rests" msgstr "µÙÉä¤Î¾×ÆÍ¤¬Â¿¤¹¤®¤Þ¤¹" -#: rest-collision.cc:194 +#: rest-collision.cc:198 msgid "too many notes for rest collision" msgstr "µÙÉä¤Î¾×ÆÍ¤ËÂФ·¤Æ²»É䤬¿¤¹¤®¤Þ¤¹" @@ -826,7 +946,7 @@ msgstr " msgid "elapsed time: %.2f seconds" msgstr "·Ð²á»þ´Ö: %.2f ÉÃ" -#: score-engraver.cc:183 +#: score-engraver.cc:188 #, c-format msgid "unbound spanner `%s'" msgstr "ÊĤ¸¤Æ¤¤¤Ê¤¤¥¹¥Ñ¥Ê `%s'" @@ -915,11 +1035,11 @@ msgstr "%s: TFM #. How to shut up this warning, when no notes appeared because #. they were suicided by Thread_devnull_engraver? -#: tie-engraver.cc:215 tie-performer.cc:173 +#: tie-engraver.cc:220 tie-performer.cc:173 msgid "No ties were created!" msgstr "ºî¤é¤ì¤¿¥¿¥¤¤¬¤¢¤ê¤Þ¤»¤ó!" -#: tie-engraver.cc:234 +#: tie-engraver.cc:240 msgid "lonely tie" msgstr "°ì¤Ä¤À¤±¤Î¥¿¥¤" @@ -1015,95 +1135,95 @@ msgstr "" msgid "First argument must be a procedure taking 1 argument" msgstr "" -#: parser.yy:1236 +#: parser.yy:1233 msgid "Expecting string as script definition" msgstr "" -#: parser.yy:1246 +#: parser.yy:1243 msgid "Can't specify direction for this request" msgstr "¤³¤ÎÍ×µá¤ËÂФ¹¤ëÊý¸þ¤ò»ØÄꤹ¤ë¤³¤È¤Ï¤Ç¤­¤Þ¤»¤ó" -#: parser.yy:1371 +#: parser.yy:1368 msgid "Expecting musical-pitch value" msgstr "" -#: parser.yy:1382 +#: parser.yy:1379 #, fuzzy msgid "Must have duration object" msgstr "²»Ä¹¤òºÇ¾®¤ËÀßÄꤷ¤Þ¤¹" -#: parser.yy:1391 parser.yy:1399 parser.yy:1679 +#: parser.yy:1388 parser.yy:1396 parser.yy:1683 msgid "Have to be in Lyric mode for lyrics" msgstr "²Î»ì¤Ï Lyric ¥â¡¼¥ÉÆâ¤Ë½ñ¤¤¤Æ¤¯¤À¤µ¤¤" -#: parser.yy:1564 parser.yy:1593 +#: parser.yy:1549 parser.yy:1597 #, c-format msgid "not a duration: %d" msgstr "²»Ä¹¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó: %d" -#: parser.yy:1602 +#: parser.yy:1606 msgid "Have to be in Note mode for notes" msgstr "²»Éä¤Ï Note ¥â¡¼¥ÉÆâ¤Ë½ñ¤¤¤Æ¤¯¤À¤µ¤¤" -#: parser.yy:1698 +#: parser.yy:1702 msgid "Have to be in Chord mode for chords" msgstr "¥³¡¼¥É¤Ï Chord ¥â¡¼¥ÉÆâ¤Ë½ñ¤¤¤Æ¤¯¤À¤µ¤¤" -#: parser.yy:1860 parser.yy:1878 +#: parser.yy:1864 parser.yy:1882 msgid "need integer number arg" msgstr "" -#: parser.yy:1864 +#: parser.yy:1868 msgid "Must be positive integer" msgstr "" -#: lexer.ll:166 +#: lexer.ll:167 msgid "EOF found inside a comment" msgstr "¥³¥á¥ó¥ÈÆâ¤Ë EOF ¤¬¸«¤Ä¤«¤ê¤Þ¤·¤¿" -#: lexer.ll:180 +#: lexer.ll:181 msgid "\\maininput disallowed outside init files" msgstr "½é´ü²½¥Õ¥¡¥¤¥ë¤Î³°¤Ç¤Ï \\maininput ¤òµ­½Ò¤Ç¤­¤Þ¤»¤ó" -#: lexer.ll:204 +#: lexer.ll:205 #, fuzzy, c-format msgid "wrong or undefined identifier: `%s'" msgstr "̤ÄêµÁ¤Î¼±ÊÌ»Ò: `%s'" #. backup rule -#: lexer.ll:209 +#: lexer.ll:210 msgid "Missing end quote" msgstr "½ªÎ»¥¯¥ª¡¼¥È¤¬¤¢¤ê¤Þ¤»¤ó" #. backup rule -#: lexer.ll:231 lexer.ll:235 +#: lexer.ll:232 lexer.ll:236 msgid "white expected" msgstr "¶õÇò¤¬É¬ÍפǤ¹" -#: lexer.ll:244 +#: lexer.ll:245 msgid "Can't evaluate Scheme in safe mode" msgstr "°ÂÁ´¥â¡¼¥É¤Ç¤Ï Scheme ¤Îɾ²Á¤ò¤Ç¤­¤Þ¤»¤ó" -#: lexer.ll:336 +#: lexer.ll:330 msgid "Brace found at end of lyric. Did you forget a space?" msgstr "" -#: lexer.ll:440 +#: lexer.ll:434 #, c-format msgid "invalid character: `%c'" msgstr "̵¸ú¤Êʸ»ú: `%c'" -#: lexer.ll:521 +#: lexer.ll:515 #, c-format msgid "unknown escaped string: `\\%s'" msgstr "̤ÃΤΥ¨¥¹¥±¡¼¥×ʸ»úÎó: `\\%s'" -#: lexer.ll:603 +#: lexer.ll:597 #, fuzzy, c-format msgid "incorrect lilypond version: %s (%s, %s)" msgstr "´Ö°ã¤Ã¤¿ mudela ¥Ð¡¼¥¸¥ç¥ó: %s (%s, %s)" -#: lexer.ll:604 +#: lexer.ll:598 msgid "Consider converting the input with the convert-ly script" msgstr "" @@ -1319,6 +1439,28 @@ msgstr "MIDI msgid "invalid track length" msgstr "̵¸ú¤Ê¥È¥é¥Ã¥¯Ä¹¤Ç¤¹" +#, fuzzy +#~ msgid "NAME" +#~ msgstr "BASENAME" + +#, fuzzy +#~ msgid "write output to NAME" +#~ msgstr "BASENAME[-x].³ÈÄ¥»Ò ¤Ø½ÐÎϤò½ñ¤­¹þ¤à" + +#, fuzzy +#~ msgid "write ouput to NAME" +#~ msgstr "BASENAME[-x].³ÈÄ¥»Ò ¤Ø½ÐÎϤò½ñ¤­¹þ¤à" + +#~ msgid "not enough fields in Dstream init" +#~ msgstr "Dstream ½é´ü²½»þ¤Î¥Õ¥£¡¼¥ë¥É¤¬ÉÔ½½Ê¬" + +#~ msgid "floating point exception" +#~ msgstr "ÉâÆ°¾®¿ôÅÀÎã³°" + +#, fuzzy +#~ msgid "can't set mem-checking!" +#~ msgstr "¥á¥â¥ê¥Á¥§¥Ã¥¯¤òÀßÄê¤Ç¤­¤Þ¤»¤ó" + #, fuzzy #~ msgid "Dependency file left in `%s'" #~ msgstr "°Í¸´Ø·¸¥Õ¥¡¥¤¥ë¤Î½ñ¤­¹þ¤ß: `%s'..." diff --git a/po/lilypond.pot b/po/lilypond.pot index ac3781601d..8fcf5408d5 100644 --- a/po/lilypond.pot +++ b/po/lilypond.pot @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2001-03-21 16:06+0100\n" +"POT-Creation-Date: 2001-04-02 13:40+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -14,141 +14,277 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: ENCODING\n" -#: ly2dvi.py:86 main.cc:95 main.cc:105 +#: ly2dvi.py:88 +msgid "Generate .dvi with LaTeX for LilyPond" +msgstr "" + +#: data-file.cc:118 input.cc:85 ly2dvi.py:167 midi-parser.cc:100 mup2ly.py:93 +#: update-lily.py:113 warn.cc:23 +msgid "warning: " +msgstr "" + +#: input.cc:90 ly2dvi.py:172 mup2ly.py:98 mup2ly.py:186 update-lily.py:118 +#: update-lily.py:206 warn.cc:9 warn.cc:17 +msgid "error: " +msgstr "" + +#: ly2dvi.py:174 mup2ly.py:100 update-lily.py:120 +msgid "Exiting ... " +msgstr "" + +#: ly2dvi.py:232 mup2ly.py:158 update-lily.py:178 +#, c-format +msgid "Usage: %s [OPTION]... FILE" +msgstr "" + +#: ly2dvi.py:236 main.cc:119 main.cc:150 mup2ly.py:162 update-lily.py:182 +msgid "Options:" +msgstr "" + +#: ly2dvi.py:240 main.cc:123 main.cc:173 mup2ly.py:166 update-lily.py:186 +#, c-format +msgid "Report bugs to %s" +msgstr "" + +#: ly2dvi.py:256 mup2ly.py:183 update-lily.py:203 +#, c-format +msgid "Invoking `%s'" +msgstr "" + +#: ly2dvi.py:260 mup2ly.py:186 update-lily.py:206 +#, c-format +msgid "command exited with value %d" +msgstr "" + +#: ly2dvi.py:262 mup2ly.py:188 update-lily.py:208 +msgid "(ignored)" +msgstr "" + +#: ly2dvi.py:272 update-lily.py:218 +#, c-format +msgid "Cleaning %s..." +msgstr "" + +#: ly2dvi.py:286 mup2ly.py:212 update-lily.py:232 +#, c-format +msgid "no such setting: %s" +msgstr "" + +#: ly2dvi.py:298 main.cc:113 +msgid "write Makefile dependencies for every input file" +msgstr "" + +#: ly2dvi.py:299 main.cc:95 main.cc:109 mup2ly.py:1111 update-lily.py:246 msgid "this help" msgstr "" -#: ly2dvi.py:87 -msgid "change global setting KEY to VAL" +#: ly2dvi.py:300 main.cc:111 main.cc:114 +msgid "DIR" msgstr "" -#: ly2dvi.py:88 -msgid "generate PostScript output" +#: ly2dvi.py:300 +msgid "add DIR to LilyPond's search path" msgstr "" -#: ly2dvi.py:89 -msgid "keep all output, and name the directory ly2dvi.dir" +#: ly2dvi.py:301 +#, c-format +msgid "keep all output, and name the directory %s.dir" msgstr "" -#: ly2dvi.py:90 +#: ly2dvi.py:302 msgid "don't run LilyPond" msgstr "" -#: ly2dvi.py:91 main.cc:115 +#: ly2dvi.py:303 main.cc:116 +msgid "produce MIDI output only" +msgstr "" + +#: ly2dvi.py:304 main.cc:98 main.cc:112 main.cc:117 +msgid "FILE" +msgstr "" + +#: ly2dvi.py:304 +msgid "write ouput to FILE" +msgstr "" + +#: ly2dvi.py:306 +msgid "generate PostScript output" +msgstr "" + +#: ly2dvi.py:307 +msgid "KEY=VAL" +msgstr "" + +#: ly2dvi.py:307 +msgid "change global setting KEY to VAL" +msgstr "" + +#: ly2dvi.py:308 main.cc:120 mup2ly.py:1114 update-lily.py:250 msgid "verbose" msgstr "" -#: ly2dvi.py:92 main.cc:104 main.cc:114 +#: ly2dvi.py:309 main.cc:104 main.cc:119 mup2ly.py:1115 update-lily.py:251 msgid "print version number" msgstr "" -#: ly2dvi.py:93 main.cc:106 main.cc:116 +#: ly2dvi.py:310 main.cc:106 main.cc:121 mup2ly.py:1116 update-lily.py:253 msgid "show warranty and copyright" msgstr "" -#: ly2dvi.py:94 -msgid "dump all final output into DIR" +#: ly2dvi.py:336 +#, c-format +msgid "Analyzing %s..." msgstr "" -#: ly2dvi.py:95 main.cc:109 -msgid "write Makefile dependencies for every input file" +#: ly2dvi.py:381 +#, c-format +msgid "no lilypond output found for %s" msgstr "" -#: data-file.cc:118 input.cc:85 ly2dvi.py:123 midi-parser.cc:100 warn.cc:23 -msgid "warning: " +#: ly2dvi.py:423 +#, c-format +msgid "invalid value: %s" msgstr "" -#: input.cc:90 ly2dvi.py:128 ly2dvi.py:263 warn.cc:9 warn.cc:17 -msgid "error: " +#: ly2dvi.py:497 ly2dvi.py:514 +#, c-format +msgid "Running %s..." msgstr "" -#: ly2dvi.py:130 -msgid "Exiting ... " +#: ly2dvi.py:654 scores.cc:44 +#, c-format +msgid "dependencies output to %s..." msgstr "" -#: ly2dvi.py:149 +#: ly2dvi.py:665 #, c-format -msgid "Reading %s..." +msgid "%s output to %s..." msgstr "" -#: lilypond-stream.cc:111 ly2dvi.py:153 mapped-file-storage.cc:87 -#: paper-stream.cc:40 scores.cc:48 simple-file-storage.cc:44 text-stream.cc:23 +#: includable-lexer.cc:49 lily-guile.cc:139 ly2dvi.py:667 +#: midi-score-parser.cc:24 scores.cc:136 scores.cc:142 #, c-format -msgid "can't open file: `%s'" +msgid "can't find file: `%s'" msgstr "" -#: ly2dvi.py:216 +#: ly2dvi.py:677 +msgid "no FILEs specified, can't invoke as filter" +msgstr "" + +#: mup2ly.py:51 +msgid "Convert mup to ly" +msgstr "" + +#: mup2ly.py:960 #, c-format -msgid "Usage: %s [OPTION]... FILE" +msgid "no such context: %s" msgstr "" -#: ly2dvi.py:218 -msgid "Generate .dvi with LaTeX for LilyPond" +#: mup2ly.py:1109 +msgid "debug" msgstr "" -#: ly2dvi.py:220 main.cc:119 main.cc:146 -msgid "Options:" +#: mup2ly.py:1110 +msgid "define macro NAME [optional expansion EXP]" +msgstr "" + +#: main.cc:117 mup2ly.py:1112 +msgid "write output to FILE" msgstr "" -#: ly2dvi.py:224 -msgid "all output is written in the CURRENT directory" +#: mup2ly.py:1113 +msgid "only pre-process" msgstr "" -#: ly2dvi.py:226 main.cc:123 main.cc:169 +#: mup2ly.py:1190 #, c-format -msgid "Report bugs to %s" +msgid "Processing %s..." msgstr "" -#: ly2dvi.py:260 +#: mup2ly.py:1203 #, c-format -msgid "Invoking `%s'" +msgid "Writing %s..." msgstr "" -#: ly2dvi.py:263 +#: update-lily.py:46 +msgid "Fetch and rebuild from latest source package" +msgstr "" + +#: update-lily.py:238 #, c-format -msgid "command exited with value %d" +msgid "unpack and build in DIR [%s]" msgstr "" -#: ly2dvi.py:265 -msgid "(ignored)" +#: update-lily.py:239 +msgid "execute COMMAND, subtitute:" msgstr "" -#: ly2dvi.py:301 +#: update-lily.py:240 +msgid "%b: build root" +msgstr "" + +#: update-lily.py:241 #, c-format -msgid "no such setting: %s" +msgid "%n: package name" msgstr "" -#: ly2dvi.py:309 +#: update-lily.py:242 +msgid "%r: release directory" +msgstr "" + +#: update-lily.py:243 +msgid "%t: tarball" +msgstr "" + +#: update-lily.py:244 +msgid "%v: package version" +msgstr "" + +#: update-lily.py:247 #, c-format -msgid "Analyzing `%s'" +msgid "keep all output, and name the directory %s" +msgstr "" + +#: update-lily.py:248 +msgid "upon failure notify EMAIL[,EMAIL]" msgstr "" -#: ly2dvi.py:353 +#: update-lily.py:249 +msgid "remove previous build" +msgstr "" + +#: update-lily.py:252 #, c-format -msgid "no lilypond output found for %s" +msgid "fetch and build URL [%s]" msgstr "" -#: ly2dvi.py:395 +#: update-lily.py:358 #, c-format -msgid "invalid value: %s" +msgid "listing %s..." msgstr "" -#: ly2dvi.py:602 scores.cc:44 +#: update-lily.py:418 #, c-format -msgid "dependencies output to %s..." +msgid "latest is %s" msgstr "" -#: ly2dvi.py:603 +#: update-lily.py:419 #, c-format -msgid "%s output to %s..." +msgid "relax, %s is up to date" msgstr "" -#: data-file.cc:54 -msgid "EOF in a string" +#: update-lily.py:427 update-lily.py:439 +#, c-format +msgid "fetching %s..." msgstr "" -#: dstream.cc:186 -msgid "not enough fields in Dstream init" +#: update-lily.py:448 +#, c-format +msgid "building %s..." +msgstr "" + +#: data-file.cc:54 +msgid "EOF in a string" msgstr "" #: getopt-long.cc:145 @@ -183,6 +319,12 @@ msgstr "" msgid "can't map file" msgstr "" +#: lilypond-stream.cc:111 mapped-file-storage.cc:87 paper-stream.cc:40 +#: scores.cc:48 simple-file-storage.cc:44 text-stream.cc:23 +#, c-format +msgid "can't open file: `%s'" +msgstr "" + #: simple-file-storage.cc:56 #, c-format msgid "Huh? Got %d, expected %d characters" @@ -215,42 +357,42 @@ msgstr "" msgid "Error parsing AFM file: %s" msgstr "" -#: all-font-metrics.cc:84 +#: all-font-metrics.cc:95 #, c-format msgid "checksum mismatch for font file: `%s'" msgstr "" -#: all-font-metrics.cc:86 +#: all-font-metrics.cc:97 #, c-format msgid "does not match: `%s'" msgstr "" -#: all-font-metrics.cc:91 +#: all-font-metrics.cc:102 msgid "" " Rebuild all .afm files, and remove all .pk and .tfm files. Rerun with -V " "to show font paths." msgstr "" -#: all-font-metrics.cc:155 +#: all-font-metrics.cc:167 #, c-format msgid "can't find font: `%s'" msgstr "" -#: all-font-metrics.cc:156 +#: all-font-metrics.cc:168 msgid "Loading default font" msgstr "" -#: all-font-metrics.cc:171 +#: all-font-metrics.cc:183 #, c-format msgid "can't find default font: `%s'" msgstr "" -#: all-font-metrics.cc:172 includable-lexer.cc:51 scores.cc:137 +#: all-font-metrics.cc:184 includable-lexer.cc:51 scores.cc:137 #, c-format msgid "(search path: `%s')" msgstr "" -#: all-font-metrics.cc:173 parser.yy:1681 +#: all-font-metrics.cc:185 parser.yy:1685 msgid "Giving up" msgstr "" @@ -325,7 +467,7 @@ msgstr "" msgid "invalid inversion pitch: not part of chord: %s" msgstr "" -#: chord-tremolo-engraver.cc:141 percent-repeat-engraver.cc:162 +#: chord-tremolo-engraver.cc:141 percent-repeat-engraver.cc:193 msgid "unterminated chord tremolo" msgstr "" @@ -337,31 +479,23 @@ msgstr "" msgid "Too many clashing notecolumns. Ignoring them." msgstr "" -#: debug.cc:26 -msgid "floating point exception" -msgstr "" - -#: debug.cc:50 -msgid "can't set mem-checking!" -msgstr "" - #: dimensions.cc:13 msgid "NaN" msgstr "" -#: dynamic-engraver.cc:198 span-dynamic-performer.cc:86 +#: dynamic-engraver.cc:197 span-dynamic-performer.cc:86 msgid "can't find start of (de)crescendo" msgstr "" -#: dynamic-engraver.cc:223 +#: dynamic-engraver.cc:222 msgid "already have a crescendo" msgstr "" -#: dynamic-engraver.cc:224 +#: dynamic-engraver.cc:223 msgid "already have a decrescendo" msgstr "" -#: dynamic-engraver.cc:318 +#: dynamic-engraver.cc:317 msgid "unterminated (de)crescendo" msgstr "" @@ -393,11 +527,11 @@ msgstr "" msgid "Unattached grace notes. Attaching to last musical column." msgstr "" -#: hairpin.cc:71 +#: hairpin.cc:93 msgid "decrescendo too small" msgstr "" -#: hairpin.cc:72 +#: hairpin.cc:94 msgid "crescendo too small" msgstr "" @@ -409,13 +543,15 @@ msgstr "" msgid "Nothing to connect hyphen to on the left. Ignoring hyphen request." msgstr "" -#: includable-lexer.cc:49 lily-guile.cc:139 midi-score-parser.cc:24 -#: scores.cc:136 scores.cc:142 -#, c-format -msgid "can't find file: `%s'" +#: key-engraver.cc:99 +msgid "Conflicting key signatures found." msgstr "" -#: key-engraver.cc:103 key-performer.cc:77 +#: key-engraver.cc:100 +msgid "This was the other key definition." +msgstr "" + +#: key-performer.cc:77 msgid "FIXME: key change merge" msgstr "" @@ -438,98 +574,81 @@ msgstr "" msgid "Calculating column positions..." msgstr "" -#: lyric-phrasing-engraver.cc:269 +#: lyric-phrasing-engraver.cc:284 msgid "lyrics found without any matching notehead" msgstr "" -#: lyric-phrasing-engraver.cc:274 +#: lyric-phrasing-engraver.cc:289 msgid "Huh? Melismatic note found to have associated lyrics." msgstr "" -#: main.cc:104 +#. another bug in option parser: --output=foe is taken as an abbreviation +#. for --output-format +#. {_i ("EXT"), "output-format", 'f', _i ("use output format EXT (scm, ps, tex or as)")}, +#: main.cc:108 msgid "EXT" msgstr "" -#: main.cc:104 +#: main.cc:108 msgid "use output format EXT (scm, ps, tex or as)" msgstr "" -#: main.cc:106 +#: main.cc:110 msgid "FIELD" msgstr "" -#: main.cc:106 +#: main.cc:110 msgid "write header field to BASENAME.FIELD" msgstr "" -#: main.cc:107 main.cc:110 -msgid "DIR" -msgstr "" - -#: main.cc:107 +#: main.cc:111 msgid "add DIR to search path" msgstr "" -#: main.cc:98 main.cc:108 -msgid "FILE" -msgstr "" - -#: main.cc:108 +#: main.cc:112 msgid "use FILE as init file" msgstr "" -#: main.cc:110 +#: main.cc:114 msgid "prepend DIR to dependencies" msgstr "" -#: main.cc:111 -msgid "produce MIDI output only" -msgstr "" - -#: main.cc:112 -msgid "NAME" +#: main.cc:115 +msgid "EXPR" msgstr "" -#: main.cc:112 -msgid "write output to NAME" +#: main.cc:115 +msgid "evalute EXPR as Scheme after .scm init is read" msgstr "" -#: main.cc:113 +#: main.cc:118 msgid "inhibit file output naming and exporting" msgstr "" -#: main.cc:117 -msgid "EXPR" -msgstr "" - -#: main.cc:117 -msgid "evalute EXPR as Scheme after .scm init is read" -msgstr "" - #. #. No version number or newline here. It confuses help2man #. -#: main.cc:134 +#: main.cc:138 #, c-format msgid "Usage: %s [OPTION]... [FILE]..." msgstr "" -#: main.cc:136 +#: main.cc:140 msgid "Typeset music and or play MIDI from FILE" msgstr "" -#: main.cc:140 +#: main.cc:144 msgid "" "LilyPond is a music typesetter. It produces beautiful sheet music\n" "using a high level description file as input. LilyPond is part of \n" "the GNU Project.\n" msgstr "" -#: main.cc:150 +#: main.cc:154 msgid "This binary was compiled with the following options:" msgstr "" -#: main.cc:55 main.cc:177 +#: main.cc:55 main.cc:181 #, c-format msgid "" "This is free software. It is covered by the GNU General Public License,\n" @@ -537,16 +656,16 @@ msgid "" "certain conditions. Invoke as `%s --warranty' for more information.\n" msgstr "" -#: main.cc:62 main.cc:184 main.cc:196 +#: main.cc:62 main.cc:188 main.cc:200 #, c-format msgid "Copyright (c) %s by" msgstr "" -#: main.cc:194 +#: main.cc:198 msgid "GNU LilyPond -- The music typesetter" msgstr "" -#: main.cc:71 main.cc:202 +#: main.cc:71 main.cc:206 msgid "" " This program is free software; you can redistribute it and/or\n" "modify it under the terms of the GNU General Public License version 2\n" @@ -563,16 +682,16 @@ msgid "" "USA.\n" msgstr "" -#: midi-item.cc:312 +#: midi-item.cc:138 #, c-format msgid "no such instrument: `%s'" msgstr "" -#: midi-item.cc:402 +#: midi-item.cc:227 msgid "silly duration" msgstr "" -#: midi-item.cc:415 +#: midi-item.cc:240 msgid "silly pitch" msgstr "" @@ -581,23 +700,23 @@ msgstr "" msgid "Transposition by %s makes accidental larger than two" msgstr "" -#: music.cc:224 +#: music.cc:232 msgid "ly_get_mus_property (): Not a Music" msgstr "" -#: music.cc:238 +#: music.cc:246 msgid "ly_set_mus_property (): Not a symbol" msgstr "" -#: music.cc:250 +#: music.cc:258 msgid "ly_set_mus_property (): not of type Music" msgstr "" -#: music.cc:264 +#: music.cc:272 msgid "ly_make_music (): Not a string" msgstr "" -#: music.cc:284 +#: music.cc:292 msgid "ly_music_name (): Not a music expression" msgstr "" @@ -634,7 +753,7 @@ msgstr "" msgid "paper output to %s..." msgstr "" -#: lilypond-stream.cc:93 paper-outputter.cc:85 performance.cc:95 +#: lilypond-stream.cc:93 paper-outputter.cc:85 performance.cc:99 msgid ", at " msgstr "" @@ -676,8 +795,8 @@ msgstr "" msgid "none of these in my family: `%s'" msgstr "" -#: percent-repeat-engraver.cc:108 -msgid "Don't know yet how to handle this percent repeat." +#: percent-repeat-engraver.cc:118 +msgid "Don't know how to handle a percent repeat of this length." msgstr "" #: percent-repeat-iterator.cc:53 @@ -688,16 +807,16 @@ msgstr "" msgid "Track ... " msgstr "" -#: performance.cc:79 +#: performance.cc:83 msgid "Creator: " msgstr "" -#: performance.cc:109 +#: performance.cc:113 #, c-format msgid "from musical definition: %s" msgstr "" -#: performance.cc:164 +#: performance.cc:168 #, c-format msgid "MIDI output to %s..." msgstr "" @@ -732,11 +851,11 @@ msgstr "" msgid "Wrong type for property: %s, type: %s, value found: %s, type: %s" msgstr "" -#: rest-collision.cc:190 +#: rest-collision.cc:194 msgid "too many colliding rests" msgstr "" -#: rest-collision.cc:194 +#: rest-collision.cc:198 msgid "too many notes for rest collision" msgstr "" @@ -758,7 +877,7 @@ msgstr "" msgid "elapsed time: %.2f seconds" msgstr "" -#: score-engraver.cc:183 +#: score-engraver.cc:188 #, c-format msgid "unbound spanner `%s'" msgstr "" @@ -842,11 +961,11 @@ msgstr "" #. How to shut up this warning, when no notes appeared because #. they were suicided by Thread_devnull_engraver? -#: tie-engraver.cc:215 tie-performer.cc:173 +#: tie-engraver.cc:220 tie-performer.cc:173 msgid "No ties were created!" msgstr "" -#: tie-engraver.cc:234 +#: tie-engraver.cc:240 msgid "lonely tie" msgstr "" @@ -942,94 +1061,94 @@ msgstr "" msgid "First argument must be a procedure taking 1 argument" msgstr "" -#: parser.yy:1236 +#: parser.yy:1233 msgid "Expecting string as script definition" msgstr "" -#: parser.yy:1246 +#: parser.yy:1243 msgid "Can't specify direction for this request" msgstr "" -#: parser.yy:1371 +#: parser.yy:1368 msgid "Expecting musical-pitch value" msgstr "" -#: parser.yy:1382 +#: parser.yy:1379 msgid "Must have duration object" msgstr "" -#: parser.yy:1391 parser.yy:1399 parser.yy:1679 +#: parser.yy:1388 parser.yy:1396 parser.yy:1683 msgid "Have to be in Lyric mode for lyrics" msgstr "" -#: parser.yy:1564 parser.yy:1593 +#: parser.yy:1549 parser.yy:1597 #, c-format msgid "not a duration: %d" msgstr "" -#: parser.yy:1602 +#: parser.yy:1606 msgid "Have to be in Note mode for notes" msgstr "" -#: parser.yy:1698 +#: parser.yy:1702 msgid "Have to be in Chord mode for chords" msgstr "" -#: parser.yy:1860 parser.yy:1878 +#: parser.yy:1864 parser.yy:1882 msgid "need integer number arg" msgstr "" -#: parser.yy:1864 +#: parser.yy:1868 msgid "Must be positive integer" msgstr "" -#: lexer.ll:166 +#: lexer.ll:167 msgid "EOF found inside a comment" msgstr "" -#: lexer.ll:180 +#: lexer.ll:181 msgid "\\maininput disallowed outside init files" msgstr "" -#: lexer.ll:204 +#: lexer.ll:205 #, c-format msgid "wrong or undefined identifier: `%s'" msgstr "" #. backup rule -#: lexer.ll:209 +#: lexer.ll:210 msgid "Missing end quote" msgstr "" #. backup rule -#: lexer.ll:231 lexer.ll:235 +#: lexer.ll:232 lexer.ll:236 msgid "white expected" msgstr "" -#: lexer.ll:244 +#: lexer.ll:245 msgid "Can't evaluate Scheme in safe mode" msgstr "" -#: lexer.ll:336 +#: lexer.ll:330 msgid "Brace found at end of lyric. Did you forget a space?" msgstr "" -#: lexer.ll:440 +#: lexer.ll:434 #, c-format msgid "invalid character: `%c'" msgstr "" -#: lexer.ll:521 +#: lexer.ll:515 #, c-format msgid "unknown escaped string: `\\%s'" msgstr "" -#: lexer.ll:603 +#: lexer.ll:597 #, c-format msgid "incorrect lilypond version: %s (%s, %s)" msgstr "" -#: lexer.ll:604 +#: lexer.ll:598 msgid "Consider converting the input with the convert-ly script" msgstr "" diff --git a/po/nl.po b/po/nl.po index c61c02fa1e..d95267b662 100644 --- a/po/nl.po +++ b/po/nl.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: lilypond 1.3.59\n" -"POT-Creation-Date: 2001-03-21 16:06+0100\n" +"POT-Creation-Date: 2001-04-02 13:40+0200\n" "PO-Revision-Date: 2000-06-09 02:23+0200\n" "Last-Translator: Jan Nieuwenhuizen \n" "Language-Team: Dutch \n" @@ -20,148 +20,286 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Date: 1998-05-26 11:26:28+0200\n" "From: \n" -"Xgettext-Options: --c++ --default-domain=lilypond --join --output-dir=../po --add-comments --keyword=_\n" +"Xgettext-Options: --c++ --default-domain=lilypond --join --output-dir=../po " +"--add-comments --keyword=_\n" "Files: bow.cc int.cc\n" -#: ly2dvi.py:86 main.cc:95 main.cc:105 -msgid "this help" -msgstr "deze hulp" - -#: ly2dvi.py:87 -msgid "change global setting KEY to VAL" -msgstr "verander globale instelling SLEUTEL in WAARDE" - #: ly2dvi.py:88 -msgid "generate PostScript output" -msgstr "genereer PostScipt uitvoer" - -#: ly2dvi.py:89 -msgid "keep all output, and name the directory ly2dvi.dir" -msgstr "bewaar alle uitvoer, en noem de directory ly2dvi.dir" - -#: ly2dvi.py:90 -msgid "don't run LilyPond" -msgstr "draai LilyPond niet" - -#: ly2dvi.py:91 main.cc:115 -msgid "verbose" -msgstr "breedsprakig" - -#: ly2dvi.py:92 main.cc:104 main.cc:114 -msgid "print version number" -msgstr "druk versienummer af" - -#: ly2dvi.py:93 main.cc:106 main.cc:116 -msgid "show warranty and copyright" -msgstr "toon garantie en auteursrechten" - -#: ly2dvi.py:94 -msgid "dump all final output into DIR" -msgstr "dump alle uiteindelijke uivoer in DIR" - -#: ly2dvi.py:95 main.cc:109 -msgid "write Makefile dependencies for every input file" -msgstr "schrijf Makefile afhankelijkheden voor elk invoerbestand" +msgid "Generate .dvi with LaTeX for LilyPond" +msgstr "Genereer .dvi met LaTeX voor LilyPond" -#: data-file.cc:118 input.cc:85 ly2dvi.py:123 midi-parser.cc:100 warn.cc:23 +#: data-file.cc:118 input.cc:85 ly2dvi.py:167 midi-parser.cc:100 mup2ly.py:93 +#: update-lily.py:113 warn.cc:23 msgid "warning: " msgstr "waarschuwing: " -#: input.cc:90 ly2dvi.py:128 ly2dvi.py:263 warn.cc:9 warn.cc:17 +#: input.cc:90 ly2dvi.py:172 mup2ly.py:98 mup2ly.py:186 update-lily.py:118 +#: update-lily.py:206 warn.cc:9 warn.cc:17 msgid "error: " msgstr "fout: " -#: ly2dvi.py:130 +#: ly2dvi.py:174 mup2ly.py:100 update-lily.py:120 msgid "Exiting ... " msgstr "Beëidigen ..." -#: ly2dvi.py:149 -#, c-format -msgid "Reading %s..." -msgstr "Inlezen %s..." - -#: lilypond-stream.cc:111 ly2dvi.py:153 mapped-file-storage.cc:87 -#: paper-stream.cc:40 scores.cc:48 simple-file-storage.cc:44 text-stream.cc:23 -#, c-format -msgid "can't open file: `%s'" -msgstr "kan bestand niet openen: `%s'" - -#: ly2dvi.py:216 +#: ly2dvi.py:232 mup2ly.py:158 update-lily.py:178 #, c-format msgid "Usage: %s [OPTION]... FILE" msgstr "Gebruik: %s [OPTIE]... BESTAND" -#: ly2dvi.py:218 -msgid "Generate .dvi with LaTeX for LilyPond" -msgstr "Genereer .dvi met LaTeX voor LilyPond" - -#: ly2dvi.py:220 main.cc:119 main.cc:146 +#: ly2dvi.py:236 main.cc:119 main.cc:150 mup2ly.py:162 update-lily.py:182 msgid "Options:" msgstr "Opties:" -#: ly2dvi.py:224 -msgid "all output is written in the CURRENT directory" -msgstr "alle uitvoer wordt naar HUIDIGE directory geschreven" - -#: ly2dvi.py:226 main.cc:123 main.cc:169 +#: ly2dvi.py:240 main.cc:123 main.cc:173 mup2ly.py:166 update-lily.py:186 #, c-format msgid "Report bugs to %s" msgstr "" "Meld luizen in het programma aan %s;\n" "meld onjuistheden in de vertaling aan of " -#: ly2dvi.py:260 +#: ly2dvi.py:256 mup2ly.py:183 update-lily.py:203 #, c-format msgid "Invoking `%s'" msgstr "Uitvoeren `%s'" -#: ly2dvi.py:263 +#: ly2dvi.py:260 mup2ly.py:186 update-lily.py:206 #, c-format msgid "command exited with value %d" msgstr "opdracht eindigde met waarde %d" -#: ly2dvi.py:265 +#: ly2dvi.py:262 mup2ly.py:188 update-lily.py:208 msgid "(ignored)" msgstr "(genegeerd)" -#: ly2dvi.py:301 +#: ly2dvi.py:272 update-lily.py:218 +#, c-format +msgid "Cleaning %s..." +msgstr "Schoonmaken %s..." + +#: ly2dvi.py:286 mup2ly.py:212 update-lily.py:232 #, c-format msgid "no such setting: %s" msgstr "geen dergelijke instelling: %s" -#: ly2dvi.py:309 +#: ly2dvi.py:298 main.cc:113 +msgid "write Makefile dependencies for every input file" +msgstr "schrijf Makefile afhankelijkheden voor elk invoerbestand" + +#: ly2dvi.py:299 main.cc:95 main.cc:109 mup2ly.py:1111 update-lily.py:246 +msgid "this help" +msgstr "deze hulp" + +#: ly2dvi.py:300 main.cc:111 main.cc:114 +msgid "DIR" +msgstr "DIR" + +#: ly2dvi.py:300 +msgid "add DIR to LilyPond's search path" +msgstr "voeg DIR toe aan LilyPonds zoekpad" + +#: ly2dvi.py:301 +#, fuzzy, c-format +msgid "keep all output, and name the directory %s.dir" +msgstr "bewaar alle uitvoer, en noem de directory %s" + +#: ly2dvi.py:302 +msgid "don't run LilyPond" +msgstr "draai LilyPond niet" + +#: ly2dvi.py:303 main.cc:116 +msgid "produce MIDI output only" +msgstr "produceer alleen MIDI uitvoer" + +#: ly2dvi.py:304 main.cc:98 main.cc:112 main.cc:117 +msgid "FILE" +msgstr "BESTAND" + +#: ly2dvi.py:304 +msgid "write ouput to FILE" +msgstr "schrijf uitvoer naar BESTAND" + +#: ly2dvi.py:306 +msgid "generate PostScript output" +msgstr "genereer PostScipt uitvoer" + +#: ly2dvi.py:307 +msgid "KEY=VAL" +msgstr "SEUTEL=WAARDE" + +#: ly2dvi.py:307 +msgid "change global setting KEY to VAL" +msgstr "verander globale instelling SLEUTEL in WAARDE" + +#: ly2dvi.py:308 main.cc:120 mup2ly.py:1114 update-lily.py:250 +msgid "verbose" +msgstr "breedsprakig" + +#: ly2dvi.py:309 main.cc:104 main.cc:119 mup2ly.py:1115 update-lily.py:251 +msgid "print version number" +msgstr "druk versienummer af" + +#: ly2dvi.py:310 main.cc:106 main.cc:121 mup2ly.py:1116 update-lily.py:253 +msgid "show warranty and copyright" +msgstr "toon garantie en auteursrechten" + +#: ly2dvi.py:336 #, c-format -msgid "Analyzing `%s'" -msgstr "Analyseren `%s'" +msgid "Analyzing %s..." +msgstr "Analyseer %s..." -#: ly2dvi.py:353 +#: ly2dvi.py:381 #, c-format msgid "no lilypond output found for %s" msgstr "geen lilypond uitvoer gevonden voor %s" -#: ly2dvi.py:395 +#: ly2dvi.py:423 #, c-format msgid "invalid value: %s" msgstr "ongeldige waarde: %s" -#: ly2dvi.py:602 scores.cc:44 +#: ly2dvi.py:497 ly2dvi.py:514 +#, c-format +msgid "Running %s..." +msgstr "Uitvoeren %s..." + +#: ly2dvi.py:654 scores.cc:44 #, c-format msgid "dependencies output to %s..." msgstr "afhankelijkheden uitvoer naar %s..." -#: ly2dvi.py:603 +#: ly2dvi.py:665 #, c-format msgid "%s output to %s..." msgstr "%s uitvoer naar %s..." +#: includable-lexer.cc:49 lily-guile.cc:139 ly2dvi.py:667 +#: midi-score-parser.cc:24 scores.cc:136 scores.cc:142 +#, c-format +msgid "can't find file: `%s'" +msgstr "kan bestand niet vinden: `%s'" + +#: ly2dvi.py:677 +msgid "no FILEs specified, can't invoke as filter" +msgstr "geen BESTANDen gespecificeerd, kan niet uitvoeren als filter" + +#: mup2ly.py:51 +msgid "Convert mup to ly" +msgstr "" + +#: mup2ly.py:960 +#, fuzzy, c-format +msgid "no such context: %s" +msgstr "geen dergelijk instrument: `%s'" + +#: mup2ly.py:1109 +msgid "debug" +msgstr "" + +#: mup2ly.py:1110 +msgid "define macro NAME [optional expansion EXP]" +msgstr "" + +#: main.cc:117 mup2ly.py:1112 +msgid "write output to FILE" +msgstr "schrijf uitvoer naar BESTAND" + +#: mup2ly.py:1113 +msgid "only pre-process" +msgstr "" + +#: mup2ly.py:1190 +#, fuzzy, c-format +msgid "Processing %s..." +msgstr "Verwerken..." + +#: mup2ly.py:1203 +#, fuzzy, c-format +msgid "Writing %s..." +msgstr "Beëidigen ..." + +#: update-lily.py:46 +msgid "Fetch and rebuild from latest source package" +msgstr "" + +#: update-lily.py:238 +#, c-format +msgid "unpack and build in DIR [%s]" +msgstr "" + +#: update-lily.py:239 +msgid "execute COMMAND, subtitute:" +msgstr "" + +#: update-lily.py:240 +msgid "%b: build root" +msgstr "" + +#: update-lily.py:241 +#, c-format +msgid "%n: package name" +msgstr "" + +#: update-lily.py:242 +#, fuzzy +msgid "%r: release directory" +msgstr "kan directory niet scheppen: `%s'" + +#: update-lily.py:243 +msgid "%t: tarball" +msgstr "" + +#: update-lily.py:244 +msgid "%v: package version" +msgstr "" + +#: update-lily.py:247 +#, c-format +msgid "keep all output, and name the directory %s" +msgstr "bewaar alle uitvoer, en noem de directory %s" + +#: update-lily.py:248 +msgid "upon failure notify EMAIL[,EMAIL]" +msgstr "" + +#: update-lily.py:249 +msgid "remove previous build" +msgstr "" + +#: update-lily.py:252 +#, c-format +msgid "fetch and build URL [%s]" +msgstr "" + +#: update-lily.py:358 +#, fuzzy, c-format +msgid "listing %s..." +msgstr "Beëidigen ..." + +#: update-lily.py:418 +#, c-format +msgid "latest is %s" +msgstr "" + +#: update-lily.py:419 +#, c-format +msgid "relax, %s is up to date" +msgstr "" + +#: update-lily.py:427 update-lily.py:439 +#, fuzzy, c-format +msgid "fetching %s..." +msgstr "Inlezen %s..." + +#: update-lily.py:448 +#, fuzzy, c-format +msgid "building %s..." +msgstr "Inlezen %s..." + #: data-file.cc:54 msgid "EOF in a string" msgstr "EOF in een string" -#: dstream.cc:186 -msgid "not enough fields in Dstream init" -msgstr "onvoldoende velden in Dstream init" - #: getopt-long.cc:145 #, c-format msgid "option `%s' requires an argument" @@ -194,6 +332,12 @@ msgstr "positie onbekend" msgid "can't map file" msgstr "kan bestand niet inkaarten" +#: lilypond-stream.cc:111 mapped-file-storage.cc:87 paper-stream.cc:40 +#: scores.cc:48 simple-file-storage.cc:44 text-stream.cc:23 +#, c-format +msgid "can't open file: `%s'" +msgstr "kan bestand niet openen: `%s'" + #: simple-file-storage.cc:56 #, c-format msgid "Huh? Got %d, expected %d characters" @@ -226,17 +370,17 @@ msgstr "kan teken niet vinden genaamd: `%s'" msgid "Error parsing AFM file: %s" msgstr "Fout bij ontleden AFM bestand: %s" -#: all-font-metrics.cc:84 +#: all-font-metrics.cc:95 #, c-format msgid "checksum mismatch for font file: `%s'" msgstr "checksum fout voor font bestand: `%s'" -#: all-font-metrics.cc:86 +#: all-font-metrics.cc:97 #, c-format msgid "does not match: `%s'" msgstr "komt niet overeen met: `%s'" -#: all-font-metrics.cc:91 +#: all-font-metrics.cc:102 msgid "" " Rebuild all .afm files, and remove all .pk and .tfm files. Rerun with -V " "to show font paths." @@ -244,26 +388,26 @@ msgstr "" "Bouw alle .afm bestanden opnieuw en verwijder alle .pk en .tfm bestanden. " "Voer nog eens uit met -V om font paden te tonen." -#: all-font-metrics.cc:155 +#: all-font-metrics.cc:167 #, c-format msgid "can't find font: `%s'" msgstr "kan font niet vinden: `%s'" -#: all-font-metrics.cc:156 +#: all-font-metrics.cc:168 msgid "Loading default font" msgstr "Laad verstek font" -#: all-font-metrics.cc:171 +#: all-font-metrics.cc:183 #, c-format msgid "can't find default font: `%s'" msgstr "kan verstekfont niet vinden: `%s'" -#: all-font-metrics.cc:172 includable-lexer.cc:51 scores.cc:137 +#: all-font-metrics.cc:184 includable-lexer.cc:51 scores.cc:137 #, c-format msgid "(search path: `%s')" msgstr "(zoekpad: `%s')" -#: all-font-metrics.cc:173 parser.yy:1681 +#: all-font-metrics.cc:185 parser.yy:1685 msgid "Giving up" msgstr "Geef op" @@ -338,7 +482,7 @@ msgstr "ongeldige aftrek: maakt geen deel uit van accoord: %s" msgid "invalid inversion pitch: not part of chord: %s" msgstr "ongeldige inversie toon: geen onderdeel van accoord: %s" -#: chord-tremolo-engraver.cc:141 percent-repeat-engraver.cc:162 +#: chord-tremolo-engraver.cc:141 percent-repeat-engraver.cc:193 msgid "unterminated chord tremolo" msgstr "onbeëindigd akkoordtremolo" @@ -350,31 +494,23 @@ msgstr "niemand om tremolos af te drukken" msgid "Too many clashing notecolumns. Ignoring them." msgstr "Te veel botsende nootkolommen. Negeer ze." -#: debug.cc:26 -msgid "floating point exception" -msgstr "zwevende komma exceptie" - -#: debug.cc:50 -msgid "can't set mem-checking!" -msgstr "kan geheugen controle niet zetten!" - #: dimensions.cc:13 msgid "NaN" msgstr "NaN" -#: dynamic-engraver.cc:198 span-dynamic-performer.cc:86 +#: dynamic-engraver.cc:197 span-dynamic-performer.cc:86 msgid "can't find start of (de)crescendo" msgstr "kan start van (de)crescendo niet vinden" -#: dynamic-engraver.cc:223 +#: dynamic-engraver.cc:222 msgid "already have a crescendo" msgstr "heb al een crescendo" -#: dynamic-engraver.cc:224 +#: dynamic-engraver.cc:223 msgid "already have a decrescendo" msgstr "heb al een decrescendo" -#: dynamic-engraver.cc:318 +#: dynamic-engraver.cc:317 msgid "unterminated (de)crescendo" msgstr "onbeëindigd (de)crescendo" @@ -407,11 +543,11 @@ msgstr "geen Grace context voor handen" msgid "Unattached grace notes. Attaching to last musical column." msgstr "Losse grace noten. Maak ze vast aan vorige muziekale kolom." -#: hairpin.cc:71 +#: hairpin.cc:93 msgid "decrescendo too small" msgstr "decrescendo te klein" -#: hairpin.cc:72 +#: hairpin.cc:94 msgid "crescendo too small" msgstr "crescendo te klein" @@ -424,13 +560,15 @@ msgid "Nothing to connect hyphen to on the left. Ignoring hyphen request." msgstr "" "Niets om streepje aan linkerkant aan vast te maken. Negeer streepje verzoek." -#: includable-lexer.cc:49 lily-guile.cc:139 midi-score-parser.cc:24 -#: scores.cc:136 scores.cc:142 -#, c-format -msgid "can't find file: `%s'" -msgstr "kan bestand niet vinden: `%s'" +#: key-engraver.cc:99 +msgid "Conflicting key signatures found." +msgstr "Tegenstrijdige toonsoorten gevonden." + +#: key-engraver.cc:100 +msgid "This was the other key definition." +msgstr "Dit was de andere toonsoort definitie." -#: key-engraver.cc:103 key-performer.cc:77 +#: key-performer.cc:77 msgid "FIXME: key change merge" msgstr "MAAKME: toonsoort sleutel samenvoeging" @@ -453,87 +591,70 @@ msgstr "Aantal elementen: %d." msgid "Calculating column positions..." msgstr "Berekenen van kolomposities..." -#: lyric-phrasing-engraver.cc:269 +#: lyric-phrasing-engraver.cc:284 msgid "lyrics found without any matching notehead" msgstr "liedteksten gevonden zonder bijbehorend nootbolletje" -#: lyric-phrasing-engraver.cc:274 +#: lyric-phrasing-engraver.cc:289 msgid "Huh? Melismatic note found to have associated lyrics." msgstr "Huh? Melismatische noot blijkt bijbehorende liedtekst te hebben." -#: main.cc:104 +#. another bug in option parser: --output=foe is taken as an abbreviation +#. for --output-format +#. {_i ("EXT"), "output-format", 'f', _i ("use output format EXT (scm, ps, tex or as)")}, +#: main.cc:108 msgid "EXT" msgstr "EXT" -#: main.cc:104 +#: main.cc:108 msgid "use output format EXT (scm, ps, tex or as)" msgstr "gebruik uitvoer formaat EXT (scm, ps, tex of as)" -#: main.cc:106 +#: main.cc:110 msgid "FIELD" msgstr "VELD" -#: main.cc:106 +#: main.cc:110 msgid "write header field to BASENAME.FIELD" msgstr "schrijf kop veld naar BASISNAAM.VELD" -#: main.cc:107 main.cc:110 -msgid "DIR" -msgstr "DIR" - -#: main.cc:107 +#: main.cc:111 msgid "add DIR to search path" msgstr "voeg DIR toe aan zoekpad" -#: main.cc:98 main.cc:108 -msgid "FILE" -msgstr "BESTAND" - -#: main.cc:108 +#: main.cc:112 msgid "use FILE as init file" msgstr "gebruik BESTAND als initialisatiebestand" -#: main.cc:110 +#: main.cc:114 msgid "prepend DIR to dependencies" msgstr "voeg DIR voor aan afhankelijkheden" -#: main.cc:111 -msgid "produce MIDI output only" -msgstr "produceer alleen MIDI uitvoer" - -#: main.cc:112 -msgid "NAME" -msgstr "NAAM" - -#: main.cc:112 -msgid "write output to NAME" -msgstr "schrijf uitvoer naar NAAM" - -#: main.cc:113 -msgid "inhibit file output naming and exporting" -msgstr "verbied naamgeving van uitvoer bestand en exportering" - -#: main.cc:117 +#: main.cc:115 msgid "EXPR" msgstr "EXPR" -#: main.cc:117 +#: main.cc:115 msgid "evalute EXPR as Scheme after .scm init is read" msgstr "evalueer EXPR als Scheme nadat .scm init is gelezen" +#: main.cc:118 +msgid "inhibit file output naming and exporting" +msgstr "verbied naamgeving van uitvoer bestand en exportering" + #. #. No version number or newline here. It confuses help2man #. -#: main.cc:134 +#: main.cc:138 #, c-format msgid "Usage: %s [OPTION]... [FILE]..." msgstr "Gebruik: %s [OPTIE]... [BESTAND]..." -#: main.cc:136 +#: main.cc:140 msgid "Typeset music and or play MIDI from FILE" msgstr "Zet muziek en of speel MIDI van BESTAND" -#: main.cc:140 +#: main.cc:144 msgid "" "LilyPond is a music typesetter. It produces beautiful sheet music\n" "using a high level description file as input. LilyPond is part of \n" @@ -543,11 +664,11 @@ msgstr "" "uitgaande van een hoog niveau beschrijving bestand. LilyPond \n" "maakt deel uit van het GNU Project.\n" -#: main.cc:150 +#: main.cc:154 msgid "This binary was compiled with the following options:" msgstr "Dit programma is gecompileerd met de volgende instellingen:" -#: main.cc:55 main.cc:177 +#: main.cc:55 main.cc:181 #, c-format msgid "" "This is free software. It is covered by the GNU General Public License,\n" @@ -559,16 +680,16 @@ msgstr "" "onder bepaalde voorwaarden. Roep aan als `%s --warranty' voor meer\n" "informatie.\n" -#: main.cc:62 main.cc:184 main.cc:196 +#: main.cc:62 main.cc:188 main.cc:200 #, c-format msgid "Copyright (c) %s by" msgstr "Copyright (c) %s " -#: main.cc:194 +#: main.cc:198 msgid "GNU LilyPond -- The music typesetter" msgstr "GNU LilyPond -- De Muziekzetter" -#: main.cc:71 main.cc:202 +#: main.cc:71 main.cc:206 msgid "" " This program is free software; you can redistribute it and/or\n" "modify it under the terms of the GNU General Public License version 2\n" @@ -598,16 +719,16 @@ msgstr "" "zoniet, schrijf dan naar de Free Software Foundation, Inc.,\n" "675 Mass Ave, Cambridge, MA 02139, USA.\n" -#: midi-item.cc:312 +#: midi-item.cc:138 #, c-format msgid "no such instrument: `%s'" msgstr "geen dergelijk instrument: `%s'" -#: midi-item.cc:402 +#: midi-item.cc:227 msgid "silly duration" msgstr "rare duur" -#: midi-item.cc:415 +#: midi-item.cc:240 msgid "silly pitch" msgstr "rare toonhoogte" @@ -616,23 +737,23 @@ msgstr "rare toonhoogte" msgid "Transposition by %s makes accidental larger than two" msgstr "Transponering van %s geeft tripel kruizen/mollen" -#: music.cc:224 +#: music.cc:232 msgid "ly_get_mus_property (): Not a Music" msgstr "ly_get_mus_property (): Geen Muziek" -#: music.cc:238 +#: music.cc:246 msgid "ly_set_mus_property (): Not a symbol" msgstr "ly_set_mus_property (): Geen symbool" -#: music.cc:250 +#: music.cc:258 msgid "ly_set_mus_property (): not of type Music" msgstr "ly_set_mus_property (): niet van type Muziek" -#: music.cc:264 +#: music.cc:272 msgid "ly_make_music (): Not a string" msgstr "ly_make_music (): Geen string" -#: music.cc:284 +#: music.cc:292 msgid "ly_music_name (): Not a music expression" msgstr "ly_make_music (): Geen muziek expressie" @@ -669,7 +790,7 @@ msgstr "Schroot verzoek: `%s'" msgid "paper output to %s..." msgstr "papier uitvoer naar %s..." -#: lilypond-stream.cc:93 paper-outputter.cc:85 performance.cc:95 +#: lilypond-stream.cc:93 paper-outputter.cc:85 performance.cc:99 msgid ", at " msgstr ", bij " @@ -711,8 +832,9 @@ msgstr "Ben er zelf een: `%s'" msgid "none of these in my family: `%s'" msgstr "geen van deze in mijn gezin: `%s'" -#: percent-repeat-engraver.cc:108 -msgid "Don't know yet how to handle this percent repeat." +#: percent-repeat-engraver.cc:118 +#, fuzzy +msgid "Don't know how to handle a percent repeat of this length." msgstr "Weet nog niet hoe deze procent herhaling af te handelen." #: percent-repeat-iterator.cc:53 @@ -723,16 +845,16 @@ msgstr "niemand om een procent herhaling af te drukken" msgid "Track ... " msgstr "Spoor ... " -#: performance.cc:79 +#: performance.cc:83 msgid "Creator: " msgstr "Schepper: " -#: performance.cc:109 +#: performance.cc:113 #, c-format msgid "from musical definition: %s" msgstr "van muzikale definitie: %s" -#: performance.cc:164 +#: performance.cc:168 #, c-format msgid "MIDI output to %s..." msgstr "MIDI uitvoer naar %s..." @@ -769,11 +891,11 @@ msgstr "" msgid "Wrong type for property: %s, type: %s, value found: %s, type: %s" msgstr "Verkeerd type voor property: %s, type: %s, gevonden: %s, type: %s" -#: rest-collision.cc:190 +#: rest-collision.cc:194 msgid "too many colliding rests" msgstr "te veel botsende rusten" -#: rest-collision.cc:194 +#: rest-collision.cc:198 msgid "too many notes for rest collision" msgstr "te veel noten voor bosting met rusten" @@ -795,7 +917,7 @@ msgstr "Fouten gevonden, /*verwerk partituur niet */" msgid "elapsed time: %.2f seconds" msgstr "duur: %.2f seconden" -#: score-engraver.cc:183 +#: score-engraver.cc:188 #, c-format msgid "unbound spanner `%s'" msgstr "ongebonden spanner `%s'" @@ -880,11 +1002,11 @@ msgstr "" #. How to shut up this warning, when no notes appeared because #. they were suicided by Thread_devnull_engraver? -#: tie-engraver.cc:215 tie-performer.cc:173 +#: tie-engraver.cc:220 tie-performer.cc:173 msgid "No ties were created!" msgstr "Geen overbindingen geschapen!" -#: tie-engraver.cc:234 +#: tie-engraver.cc:240 msgid "lonely tie" msgstr "eenzame overbinding" @@ -982,94 +1104,94 @@ msgstr "Tweede argument moet een symbool zijn" msgid "First argument must be a procedure taking 1 argument" msgstr "Eerste argument moet een procedure zijn met 1 argument" -#: parser.yy:1236 +#: parser.yy:1233 msgid "Expecting string as script definition" msgstr "Verwacht string voor script definitie" -#: parser.yy:1246 +#: parser.yy:1243 msgid "Can't specify direction for this request" msgstr "Kan richting voor dit verzoek niet specificeren" -#: parser.yy:1371 +#: parser.yy:1368 msgid "Expecting musical-pitch value" msgstr "Verwacht musical-pitch waarde" -#: parser.yy:1382 +#: parser.yy:1379 msgid "Must have duration object" msgstr "Moet duur object hebben" -#: parser.yy:1391 parser.yy:1399 parser.yy:1679 +#: parser.yy:1388 parser.yy:1396 parser.yy:1683 msgid "Have to be in Lyric mode for lyrics" msgstr "Moet in Lyric modus zijn voor liedteksten" -#: parser.yy:1564 parser.yy:1593 +#: parser.yy:1549 parser.yy:1597 #, c-format msgid "not a duration: %d" msgstr "geen duur: %d" -#: parser.yy:1602 +#: parser.yy:1606 msgid "Have to be in Note mode for notes" msgstr "Moet in Note modus zijn voor noten" -#: parser.yy:1698 +#: parser.yy:1702 msgid "Have to be in Chord mode for chords" msgstr "Moet in Chord modus zijn voor accoorden" -#: parser.yy:1860 parser.yy:1878 +#: parser.yy:1864 parser.yy:1882 msgid "need integer number arg" msgstr "heb integer getal arg nogig" -#: parser.yy:1864 +#: parser.yy:1868 msgid "Must be positive integer" msgstr "Moet positieve integer zijn" -#: lexer.ll:166 +#: lexer.ll:167 msgid "EOF found inside a comment" msgstr "EOF gevonden in een kommentaar" -#: lexer.ll:180 +#: lexer.ll:181 msgid "\\maininput disallowed outside init files" msgstr "\\maininput niet toegestaan buiten init bestanden" -#: lexer.ll:204 +#: lexer.ll:205 #, c-format msgid "wrong or undefined identifier: `%s'" msgstr "verkeerde of ongedefiniëerde identifier: `%s'" #. backup rule -#: lexer.ll:209 +#: lexer.ll:210 msgid "Missing end quote" msgstr "Aanhalingsteken sluiten mist" #. backup rule -#: lexer.ll:231 lexer.ll:235 +#: lexer.ll:232 lexer.ll:236 msgid "white expected" msgstr "wit verwacht" -#: lexer.ll:244 +#: lexer.ll:245 msgid "Can't evaluate Scheme in safe mode" msgstr "Kan Scheme niet evalueren in veilige modus" -#: lexer.ll:336 +#: lexer.ll:330 msgid "Brace found at end of lyric. Did you forget a space?" msgstr "Accolade gevonden aan het eind van liedtektst. Een spatie vergeten?" -#: lexer.ll:440 +#: lexer.ll:434 #, c-format msgid "invalid character: `%c'" msgstr "ongeldig teken: `%c'" -#: lexer.ll:521 +#: lexer.ll:515 #, c-format msgid "unknown escaped string: `\\%s'" msgstr "onbekende ontsnapte string: `\\%s'" -#: lexer.ll:603 +#: lexer.ll:597 #, c-format msgid "incorrect lilypond version: %s (%s, %s)" msgstr "verkeerde lilypond versie: %s (%s, %s)" -#: lexer.ll:604 +#: lexer.ll:598 msgid "Consider converting the input with the convert-ly script" msgstr "Overweeg de invoer te converteren met het convert-ly script" @@ -1281,3 +1403,30 @@ msgstr "MIDI spoor verwacht" #: midi-track-parser.cc:353 msgid "invalid track length" msgstr "ongeldige spoorlengte" + +#~ msgid "keep all output, and name the directory ly2dvi.dir" +#~ msgstr "bewaar alle uitvoer, en noem de directory ly2dvi.dir" + +#~ msgid "NAME" +#~ msgstr "NAAM" + +#~ msgid "write output to NAME" +#~ msgstr "schrijf uitvoer naar NAAM" + +#~ msgid "write ouput to NAME" +#~ msgstr "schrijf uitvoer naar NAAM" + +#~ msgid "dump all final output into DIR" +#~ msgstr "dump alle uiteindelijke uivoer in DIR" + +#~ msgid "all output is written in the CURRENT directory" +#~ msgstr "alle uitvoer wordt naar HUIDIGE directory geschreven" + +#~ msgid "not enough fields in Dstream init" +#~ msgstr "onvoldoende velden in Dstream init" + +#~ msgid "floating point exception" +#~ msgstr "zwevende komma exceptie" + +#~ msgid "can't set mem-checking!" +#~ msgstr "kan geheugen controle niet zetten!" diff --git a/po/ru.po b/po/ru.po index 084e6304ff..0ec9012399 100644 --- a/po/ru.po +++ b/po/ru.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2001-03-21 16:06+0100\n" +"POT-Creation-Date: 2001-04-02 13:40+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: August S.Sigov \n" "Language-Team: Russian \n" @@ -14,144 +14,284 @@ msgstr "" "Content-Type: text/plain; charset=koi8-r\n" "Content-Transfer-Encoding: ENCODING\n" -#: ly2dvi.py:86 main.cc:95 main.cc:105 +#: ly2dvi.py:88 +msgid "Generate .dvi with LaTeX for LilyPond" +msgstr "" + +#: data-file.cc:118 input.cc:85 ly2dvi.py:167 midi-parser.cc:100 mup2ly.py:93 +#: update-lily.py:113 warn.cc:23 +msgid "warning: " +msgstr "ÐÒÅÄÕÐÒÅÖÄÁÀ: " + +#: input.cc:90 ly2dvi.py:172 mup2ly.py:98 mup2ly.py:186 update-lily.py:118 +#: update-lily.py:206 warn.cc:9 warn.cc:17 +msgid "error: " +msgstr "ÏÛÉÂËÁ: " + +#: ly2dvi.py:174 mup2ly.py:100 update-lily.py:120 +msgid "Exiting ... " +msgstr "" + +#: ly2dvi.py:232 mup2ly.py:158 update-lily.py:178 +#, fuzzy, c-format +msgid "Usage: %s [OPTION]... FILE" +msgstr "éÓÐÏÌØÚÏ×ÁÎÉÅ: %s [ïðãéñ]... [æáêì]" + +#: ly2dvi.py:236 main.cc:119 main.cc:150 mup2ly.py:162 update-lily.py:182 +msgid "Options:" +msgstr "ïÐÃÉÉ:" + +#: ly2dvi.py:240 main.cc:123 main.cc:173 mup2ly.py:166 update-lily.py:186 +#, c-format +msgid "Report bugs to %s" +msgstr "óÏÏÂÝÁÊÔÅ Ï ÏÛÉÂËÁÈ ÐÏ %s" + +#: ly2dvi.py:256 mup2ly.py:183 update-lily.py:203 +#, fuzzy, c-format +msgid "Invoking `%s'" +msgstr "÷ÙÂÒÁÓÙ×ÁÀ ÍÕÚÙËÕ: `%s'" + +#: ly2dvi.py:260 mup2ly.py:186 update-lily.py:206 +#, c-format +msgid "command exited with value %d" +msgstr "" + +#: ly2dvi.py:262 mup2ly.py:188 update-lily.py:208 +msgid "(ignored)" +msgstr "" + +#: ly2dvi.py:272 update-lily.py:218 +#, fuzzy, c-format +msgid "Cleaning %s..." +msgstr "÷ÙÂÒÁÓÙ×ÁÀ ÍÕÚÙËÕ: `%s'" + +#: ly2dvi.py:286 mup2ly.py:212 update-lily.py:232 +#, fuzzy, c-format +msgid "no such setting: %s" +msgstr "ÎÅÔ ÔÁËÏÇÏ ÉÎÓÔÒÕÍÅÎÔÁ: `%s'" + +#: ly2dvi.py:298 main.cc:113 +msgid "write Makefile dependencies for every input file" +msgstr "ÚÁÐÉÓÙ×ÁÔØ ÚÁ×ÉÓÉÍÏÓÔÉ Makefile ÄÌÑ ËÁÖÄÏÇÏ ×ÈÏÄÎÏÇÏ ÆÁÊÌÁ" + +#: ly2dvi.py:299 main.cc:95 main.cc:109 mup2ly.py:1111 update-lily.py:246 msgid "this help" msgstr "ÜÔÁ ÓÐÒÁ×ËÁ" -#: ly2dvi.py:87 -msgid "change global setting KEY to VAL" +#: ly2dvi.py:300 main.cc:111 main.cc:114 +msgid "DIR" +msgstr "ëáô" + +#: ly2dvi.py:300 +#, fuzzy +msgid "add DIR to LilyPond's search path" +msgstr "ÄÏÂÁ×ÉÔØ ëáô Ë ÐÕÔÉ ÐÏÉÓËÁ" + +#: ly2dvi.py:301 +#, c-format +msgid "keep all output, and name the directory %s.dir" msgstr "" -#: ly2dvi.py:88 +#: ly2dvi.py:302 +msgid "don't run LilyPond" +msgstr "" + +#: ly2dvi.py:303 main.cc:116 +msgid "produce MIDI output only" +msgstr "ÐÒÏÉÚ×ÏÄÉÔØ ×Ù×ÏÄ ÔÏÌØËÏ MIDI" + +#: ly2dvi.py:304 main.cc:98 main.cc:112 main.cc:117 +msgid "FILE" +msgstr "æáêì" + +#: ly2dvi.py:304 +#, fuzzy +msgid "write ouput to FILE" +msgstr "ÚÁÐÉÓÙ×ÁÔØ ×Ù×ÏÄ × ïóîï÷á[-x].ÒÁÓÛÉÒÅÎÉÅ" + +#: ly2dvi.py:306 msgid "generate PostScript output" msgstr "" -#: ly2dvi.py:89 -msgid "keep all output, and name the directory ly2dvi.dir" +#: ly2dvi.py:307 +msgid "KEY=VAL" msgstr "" -#: ly2dvi.py:90 -msgid "don't run LilyPond" +#: ly2dvi.py:307 +msgid "change global setting KEY to VAL" msgstr "" -#: ly2dvi.py:91 main.cc:115 +#: ly2dvi.py:308 main.cc:120 mup2ly.py:1114 update-lily.py:250 #, fuzzy msgid "verbose" msgstr "ÂÙÔØ ÂÏÌÔÌÉ×ÙÍ" -#: ly2dvi.py:92 main.cc:104 main.cc:114 +#: ly2dvi.py:309 main.cc:104 main.cc:119 mup2ly.py:1115 update-lily.py:251 msgid "print version number" msgstr "×Ù×ÏÄÉÔØ ÎÏÍÅÒ ×ÅÒÓÉÉ" -#: ly2dvi.py:93 main.cc:106 main.cc:116 +#: ly2dvi.py:310 main.cc:106 main.cc:121 mup2ly.py:1116 update-lily.py:253 msgid "show warranty and copyright" msgstr "ÐÏËÁÚÁÔØ ÇÁÒÁÎÔÉÀ É copyright" -#: ly2dvi.py:94 -msgid "dump all final output into DIR" -msgstr "" +#: ly2dvi.py:336 +#, fuzzy, c-format +msgid "Analyzing %s..." +msgstr "÷ÙÂÒÁÓÙ×ÁÀ ÍÕÚÙËÕ: `%s'" -#: ly2dvi.py:95 main.cc:109 -msgid "write Makefile dependencies for every input file" -msgstr "ÚÁÐÉÓÙ×ÁÔØ ÚÁ×ÉÓÉÍÏÓÔÉ Makefile ÄÌÑ ËÁÖÄÏÇÏ ×ÈÏÄÎÏÇÏ ÆÁÊÌÁ" +#: ly2dvi.py:381 +#, c-format +msgid "no lilypond output found for %s" +msgstr "" -#: data-file.cc:118 input.cc:85 ly2dvi.py:123 midi-parser.cc:100 warn.cc:23 -msgid "warning: " -msgstr "ÐÒÅÄÕÐÒÅÖÄÁÀ: " +#: ly2dvi.py:423 +#, fuzzy, c-format +msgid "invalid value: %s" +msgstr "ÎÅ×ÅÒÎÙÊ ÓÉÍ×ÏÌ: `%c'" -#: input.cc:90 ly2dvi.py:128 ly2dvi.py:263 warn.cc:9 warn.cc:17 -msgid "error: " -msgstr "ÏÛÉÂËÁ: " +#: ly2dvi.py:497 ly2dvi.py:514 +#, fuzzy, c-format +msgid "Running %s..." +msgstr "÷ÙÂÒÁÓÙ×ÁÀ ÍÕÚÙËÕ: `%s'" -#: ly2dvi.py:130 -msgid "Exiting ... " -msgstr "" +#: ly2dvi.py:654 scores.cc:44 +#, fuzzy, c-format +msgid "dependencies output to %s..." +msgstr "\"ÂÕÍÁÖÎÙÊ\" ×Ù×ÏÄ × %s..." -#: ly2dvi.py:149 +#: ly2dvi.py:665 #, fuzzy, c-format -msgid "Reading %s..." -msgstr "÷ÙÂÒÁÓÙ×ÁÀ ÍÕÚÙËÕ: `%s'" +msgid "%s output to %s..." +msgstr "×Ù×ÏÄ MIDI × %s..." -#: lilypond-stream.cc:111 ly2dvi.py:153 mapped-file-storage.cc:87 -#: paper-stream.cc:40 scores.cc:48 simple-file-storage.cc:44 text-stream.cc:23 +#: includable-lexer.cc:49 lily-guile.cc:139 ly2dvi.py:667 +#: midi-score-parser.cc:24 scores.cc:136 scores.cc:142 #, c-format -msgid "can't open file: `%s'" -msgstr "ÎÅ ÍÏÇÕ ÏÔËÒÙÔØ ÆÁÊÌ: `%s'" +msgid "can't find file: `%s'" +msgstr "ÎÅ ÍÏÇÕ ÎÁÊÔÉ ÆÁÊÌ: `%s'" + +#: ly2dvi.py:677 +msgid "no FILEs specified, can't invoke as filter" +msgstr "" -#: ly2dvi.py:216 +#: mup2ly.py:51 +msgid "Convert mup to ly" +msgstr "" + +#: mup2ly.py:960 #, fuzzy, c-format -msgid "Usage: %s [OPTION]... FILE" -msgstr "éÓÐÏÌØÚÏ×ÁÎÉÅ: %s [ïðãéñ]... [æáêì]" +msgid "no such context: %s" +msgstr "ÎÅÔ ÔÁËÏÇÏ ÉÎÓÔÒÕÍÅÎÔÁ: `%s'" -#: ly2dvi.py:218 -msgid "Generate .dvi with LaTeX for LilyPond" +#: mup2ly.py:1109 +msgid "debug" msgstr "" -#: ly2dvi.py:220 main.cc:119 main.cc:146 -msgid "Options:" -msgstr "ïÐÃÉÉ:" +#: mup2ly.py:1110 +msgid "define macro NAME [optional expansion EXP]" +msgstr "" + +#: main.cc:117 mup2ly.py:1112 +#, fuzzy +msgid "write output to FILE" +msgstr "ÚÁÐÉÓÙ×ÁÔØ ×Ù×ÏÄ × ïóîï÷á[-x].ÒÁÓÛÉÒÅÎÉÅ" -#: ly2dvi.py:224 -msgid "all output is written in the CURRENT directory" +#: mup2ly.py:1113 +msgid "only pre-process" msgstr "" -#: ly2dvi.py:226 main.cc:123 main.cc:169 -#, c-format -msgid "Report bugs to %s" -msgstr "óÏÏÂÝÁÊÔÅ Ï ÏÛÉÂËÁÈ ÐÏ %s" +#: mup2ly.py:1190 +#, fuzzy, c-format +msgid "Processing %s..." +msgstr "ïÂÒÁÂÁÔÙ×ÁÀ..." -#: ly2dvi.py:260 +#: mup2ly.py:1203 #, fuzzy, c-format -msgid "Invoking `%s'" +msgid "Writing %s..." msgstr "÷ÙÂÒÁÓÙ×ÁÀ ÍÕÚÙËÕ: `%s'" -#: ly2dvi.py:263 +#: update-lily.py:46 +msgid "Fetch and rebuild from latest source package" +msgstr "" + +#: update-lily.py:238 #, c-format -msgid "command exited with value %d" +msgid "unpack and build in DIR [%s]" msgstr "" -#: ly2dvi.py:265 -msgid "(ignored)" +#: update-lily.py:239 +msgid "execute COMMAND, subtitute:" msgstr "" -#: ly2dvi.py:301 -#, fuzzy, c-format -msgid "no such setting: %s" -msgstr "ÎÅÔ ÔÁËÏÇÏ ÉÎÓÔÒÕÍÅÎÔÁ: `%s'" +#: update-lily.py:240 +msgid "%b: build root" +msgstr "" -#: ly2dvi.py:309 +#: update-lily.py:241 #, c-format -msgid "Analyzing `%s'" +msgid "%n: package name" +msgstr "" + +#: update-lily.py:242 +#, fuzzy +msgid "%r: release directory" +msgstr "ÎÅ ÍÏÇÕ ÎÁÊÔÉ ÉÌÉ ÓÏÚÄÁÔØ: `%s'" + +#: update-lily.py:243 +msgid "%t: tarball" +msgstr "" + +#: update-lily.py:244 +msgid "%v: package version" msgstr "" -#: ly2dvi.py:353 +#: update-lily.py:247 #, c-format -msgid "no lilypond output found for %s" +msgid "keep all output, and name the directory %s" msgstr "" -#: ly2dvi.py:395 +#: update-lily.py:248 +msgid "upon failure notify EMAIL[,EMAIL]" +msgstr "" + +#: update-lily.py:249 +msgid "remove previous build" +msgstr "" + +#: update-lily.py:252 +#, c-format +msgid "fetch and build URL [%s]" +msgstr "" + +#: update-lily.py:358 #, fuzzy, c-format -msgid "invalid value: %s" -msgstr "ÎÅ×ÅÒÎÙÊ ÓÉÍ×ÏÌ: `%c'" +msgid "listing %s..." +msgstr "÷ÙÂÒÁÓÙ×ÁÀ ÍÕÚÙËÕ: `%s'" -#: ly2dvi.py:602 scores.cc:44 +#: update-lily.py:418 +#, c-format +msgid "latest is %s" +msgstr "" + +#: update-lily.py:419 +#, c-format +msgid "relax, %s is up to date" +msgstr "" + +#: update-lily.py:427 update-lily.py:439 #, fuzzy, c-format -msgid "dependencies output to %s..." -msgstr "\"ÂÕÍÁÖÎÙÊ\" ×Ù×ÏÄ × %s..." +msgid "fetching %s..." +msgstr "÷ÙÂÒÁÓÙ×ÁÀ ÍÕÚÙËÕ: `%s'" -#: ly2dvi.py:603 +#: update-lily.py:448 #, fuzzy, c-format -msgid "%s output to %s..." -msgstr "×Ù×ÏÄ MIDI × %s..." +msgid "building %s..." +msgstr "÷ÙÂÒÁÓÙ×ÁÀ ÍÕÚÙËÕ: `%s'" #: data-file.cc:54 msgid "EOF in a string" msgstr "EOF × ÓÔÒÏËÅ" -#: dstream.cc:186 -msgid "not enough fields in Dstream init" -msgstr "ÎÅ ÄÏÓÔÁÔÏÞÎÏ ÐÏÌÅÊ × Dstream init" - #: getopt-long.cc:145 #, c-format msgid "option `%s' requires an argument" @@ -184,6 +324,12 @@ msgstr " msgid "can't map file" msgstr "ÎÅ ÍÏÇÕ ÏÔÏÂÒÁÚÉÔØ ÆÁÊÌ × ÐÁÍÑÔØ" +#: lilypond-stream.cc:111 mapped-file-storage.cc:87 paper-stream.cc:40 +#: scores.cc:48 simple-file-storage.cc:44 text-stream.cc:23 +#, c-format +msgid "can't open file: `%s'" +msgstr "ÎÅ ÍÏÇÕ ÏÔËÒÙÔØ ÆÁÊÌ: `%s'" + #: simple-file-storage.cc:56 #, c-format msgid "Huh? Got %d, expected %d characters" @@ -216,42 +362,42 @@ msgstr " msgid "Error parsing AFM file: %s" msgstr "ïÛÉÂËÁ ÐÒÉ ÁÎÁÌÉÚÅ ÆÁÊÌÁ AFM" -#: all-font-metrics.cc:84 +#: all-font-metrics.cc:95 #, c-format msgid "checksum mismatch for font file: `%s'" msgstr "" -#: all-font-metrics.cc:86 +#: all-font-metrics.cc:97 #, c-format msgid "does not match: `%s'" msgstr "" -#: all-font-metrics.cc:91 +#: all-font-metrics.cc:102 msgid "" " Rebuild all .afm files, and remove all .pk and .tfm files. Rerun with -V " "to show font paths." msgstr "" -#: all-font-metrics.cc:155 +#: all-font-metrics.cc:167 #, c-format msgid "can't find font: `%s'" msgstr "ÎÅ ÍÏÇÕ ÎÁÊÔÉ ÛÒÉÆÔ: `%s'" -#: all-font-metrics.cc:156 +#: all-font-metrics.cc:168 msgid "Loading default font" msgstr "úÁÇÒÕÖÁÀ ÛÒÉÆÔ ÐÏ ÕÍÏÌÞÁÎÉÀ" -#: all-font-metrics.cc:171 +#: all-font-metrics.cc:183 #, c-format msgid "can't find default font: `%s'" msgstr "ÎÅ ÍÏÇÕ ÎÁÊÔÉ ÛÒÉÆÔ ÐÏ ÕÍÏÌÞÁÎÉÀ: `%s'" -#: all-font-metrics.cc:172 includable-lexer.cc:51 scores.cc:137 +#: all-font-metrics.cc:184 includable-lexer.cc:51 scores.cc:137 #, c-format msgid "(search path: `%s')" msgstr "(ÐÕÔØ ÐÏÉÓËÁ: `%s')" -#: all-font-metrics.cc:173 parser.yy:1681 +#: all-font-metrics.cc:185 parser.yy:1685 msgid "Giving up" msgstr "óÄÁÀÓØ" @@ -326,7 +472,7 @@ msgstr " msgid "invalid inversion pitch: not part of chord: %s" msgstr "" -#: chord-tremolo-engraver.cc:141 percent-repeat-engraver.cc:162 +#: chord-tremolo-engraver.cc:141 percent-repeat-engraver.cc:193 msgid "unterminated chord tremolo" msgstr "ÎÅÚÁËÏÎÞÅÎÎÏÅ ÔÒÅÍÏÌÏ ÁËËÏÒÄÁ" @@ -339,31 +485,23 @@ msgstr " msgid "Too many clashing notecolumns. Ignoring them." msgstr "óÌÉÛËÏÍ ÍÎÏÇÏ ÐÅÒÅÓÅËÁÀÝÉÈÓÑ ÓÔÏÌÂÃÏ× ÎÏÔ. éÇÎÏÒÉÒÕÀ." -#: debug.cc:26 -msgid "floating point exception" -msgstr "ÉÓËÌÀÞÅÎÉÅ ÁÒÉÆÍÅÔÉËÉ Ó ÐÌÁ×ÁÀÝÅÊ ÚÁÐÑÔÏÊ" - -#: debug.cc:50 -msgid "can't set mem-checking!" -msgstr "ÎÅ ÍÏÇÕ ×ËÌÀÞÉÔØ ÐÒÏ×ÅÒËÕ ÐÁÍÑÔÉ" - #: dimensions.cc:13 msgid "NaN" msgstr "NaN" -#: dynamic-engraver.cc:198 span-dynamic-performer.cc:86 +#: dynamic-engraver.cc:197 span-dynamic-performer.cc:86 msgid "can't find start of (de)crescendo" msgstr "ÎÅ ÍÏÇÕ ÎÁÊÔÉ ÎÁÞÁÌÏ (ÄÅ)ËÒÅÝÅÎÄÏ" -#: dynamic-engraver.cc:223 +#: dynamic-engraver.cc:222 msgid "already have a crescendo" msgstr "ËÒÅÝÅÎÄÏ ÕÖÅ ÅÓÔØ" -#: dynamic-engraver.cc:224 +#: dynamic-engraver.cc:223 msgid "already have a decrescendo" msgstr "ÄÅËÒÅÝÅÎÄÏ ÕÖÅ ÅÓÔØ" -#: dynamic-engraver.cc:318 +#: dynamic-engraver.cc:317 msgid "unterminated (de)crescendo" msgstr "ÎÅÚÁËÏÎÞÅÎÎÏÅ (ÄÅ)ËÒÅÝÅÎÄÏ" @@ -395,11 +533,11 @@ msgstr " msgid "Unattached grace notes. Attaching to last musical column." msgstr "æÏÒÛÌÁÇ ÂÅÚ ÐÒÉ×ÑÚËÉ. ðÒÉ×ÑÚÙ×ÁÀ Ë ÐÏÓÌÅÄÎÅÍÕ ÍÕÚÙËÁÌØÎÏÍÕ ÓÔÏÌÂÃÕ." -#: hairpin.cc:71 +#: hairpin.cc:93 msgid "decrescendo too small" msgstr "" -#: hairpin.cc:72 +#: hairpin.cc:94 #, fuzzy msgid "crescendo too small" msgstr "ËÒÅÝÅÎÄÏ" @@ -412,13 +550,15 @@ msgstr " msgid "Nothing to connect hyphen to on the left. Ignoring hyphen request." msgstr "îÅ Ë ÞÅÍÕ ÐÒÉÓÏÅÄÉÎÉÔØ ÐÅÒÅÎÏÓ ÓÌÅ×Á. éÇÎÏÒÉÒÕÀ ÚÁÐÒÏÓ ÐÅÒÅÎÏÓÁ." -#: includable-lexer.cc:49 lily-guile.cc:139 midi-score-parser.cc:24 -#: scores.cc:136 scores.cc:142 -#, c-format -msgid "can't find file: `%s'" -msgstr "ÎÅ ÍÏÇÕ ÎÁÊÔÉ ÆÁÊÌ: `%s'" +#: key-engraver.cc:99 +msgid "Conflicting key signatures found." +msgstr "" + +#: key-engraver.cc:100 +msgid "This was the other key definition." +msgstr "" -#: key-engraver.cc:103 key-performer.cc:77 +#: key-performer.cc:77 msgid "FIXME: key change merge" msgstr "éóðòá÷øíåîñ: ÓÌÉÑÎÉÅ ÓÍÅÎÙ ËÌÀÞÁ" @@ -441,91 +581,72 @@ msgstr "" msgid "Calculating column positions..." msgstr "÷ÙÞÉÓÌÑÀ ÐÏÚÉÃÉÉ ÓÔÏÌÂÃÏ×" -#: lyric-phrasing-engraver.cc:269 +#: lyric-phrasing-engraver.cc:284 msgid "lyrics found without any matching notehead" msgstr "" -#: lyric-phrasing-engraver.cc:274 +#: lyric-phrasing-engraver.cc:289 msgid "Huh? Melismatic note found to have associated lyrics." msgstr "" -#: main.cc:104 +#. another bug in option parser: --output=foe is taken as an abbreviation +#. for --output-format +#. {_i ("EXT"), "output-format", 'f', _i ("use output format EXT (scm, ps, tex or as)")}, +#: main.cc:108 msgid "EXT" msgstr "òáóû" -#: main.cc:104 +#: main.cc:108 #, fuzzy msgid "use output format EXT (scm, ps, tex or as)" msgstr "ÉÓÐÏÌØÚÏ×ÁÔØ ×ÙÈÏÄÎÏÊ ÆÏÒÍÁÔ òáóû" -#: main.cc:106 +#: main.cc:110 #, fuzzy msgid "FIELD" msgstr "æáêì" -#: main.cc:106 +#: main.cc:110 msgid "write header field to BASENAME.FIELD" msgstr "" -#: main.cc:107 main.cc:110 -msgid "DIR" -msgstr "ëáô" - -#: main.cc:107 +#: main.cc:111 msgid "add DIR to search path" msgstr "ÄÏÂÁ×ÉÔØ ëáô Ë ÐÕÔÉ ÐÏÉÓËÁ" -#: main.cc:98 main.cc:108 -msgid "FILE" -msgstr "æáêì" - -#: main.cc:108 +#: main.cc:112 msgid "use FILE as init file" msgstr "ÉÓÐÏÌØÚÏ×ÁÔØ æáêì ËÁË ÆÁÊÌ ÉÎÉÃÉÁÌÉÚÁÃÉÉ" -#: main.cc:110 +#: main.cc:114 msgid "prepend DIR to dependencies" msgstr "" -#: main.cc:111 -msgid "produce MIDI output only" -msgstr "ÐÒÏÉÚ×ÏÄÉÔØ ×Ù×ÏÄ ÔÏÌØËÏ MIDI" - -#: main.cc:112 -#, fuzzy -msgid "NAME" -msgstr "ïóîï÷á" - -#: main.cc:112 -#, fuzzy -msgid "write output to NAME" -msgstr "ÚÁÐÉÓÙ×ÁÔØ ×Ù×ÏÄ × ïóîï÷á[-x].ÒÁÓÛÉÒÅÎÉÅ" - -#: main.cc:113 -msgid "inhibit file output naming and exporting" -msgstr "ÓËÒÙÔØ ÉÍÅÎÏ×ÁÎÉÅ É ÜËÓÐÏÒÔ ×Ù×ÏÄÁ × ÆÁÊÌ" - -#: main.cc:117 +#: main.cc:115 msgid "EXPR" msgstr "" -#: main.cc:117 +#: main.cc:115 msgid "evalute EXPR as Scheme after .scm init is read" msgstr "" +#: main.cc:118 +msgid "inhibit file output naming and exporting" +msgstr "ÓËÒÙÔØ ÉÍÅÎÏ×ÁÎÉÅ É ÜËÓÐÏÒÔ ×Ù×ÏÄÁ × ÆÁÊÌ" + #. #. No version number or newline here. It confuses help2man #. -#: main.cc:134 +#: main.cc:138 #, c-format msgid "Usage: %s [OPTION]... [FILE]..." msgstr "éÓÐÏÌØÚÏ×ÁÎÉÅ: %s [ïðãéñ]... [æáêì]..." -#: main.cc:136 +#: main.cc:140 msgid "Typeset music and or play MIDI from FILE" msgstr "îÁÂÉÒÁÔØ ÍÕÚÙËÕ É/ÉÌÉ ÐÒÏÉÇÒÙ×ÁÔØ MIDI ÉÚ æáêìÁ" -#: main.cc:140 +#: main.cc:144 msgid "" "LilyPond is a music typesetter. It produces beautiful sheet music\n" "using a high level description file as input. LilyPond is part of \n" @@ -535,11 +656,11 @@ msgstr "" "ÎÁ ÂÕÍÁÇÅ, ÉÓÐÏÌØÚÕÑ ×ÙÓÏËÏÕÒÏ×ÎÅ×ÙÊ ÆÁÊÌ ÏÐÉÓÁÎÉÑ ÎÁ ××ÏÄÅ. Lilypond\n" "Ñ×ÌÑÅÔÓÑ ÞÁÓÔØÀ ðÒÏÅËÔÁ GNU.\n" -#: main.cc:150 +#: main.cc:154 msgid "This binary was compiled with the following options:" msgstr "üÔÏÔ ÉÓÐÏÌÎÑÅÍÙÊ ÆÁÊÌ ÂÙÌ ÓÏÂÒÁÎ ÓÏ ÓÌÅÄÕÀÝÉÍÉ ÏÐÃÉÑÍÉ:" -#: main.cc:55 main.cc:177 +#: main.cc:55 main.cc:181 #, c-format msgid "" "This is free software. It is covered by the GNU General Public License,\n" @@ -551,17 +672,17 @@ msgstr "" "ÐÒÉ ÓÏÂÌÀÄÅÎÉÉ ÎÅËÏÔÏÒÙÈ ÕÓÌÏ×ÉÊ. ÷ÙÚÙ×ÁÊÔÅ ËÁË `%s --warranty' ÄÌÑ\n" "ÐÏÌÕÞÅÎÉÑ ÄÏÐÏÌÎÉÔÅÌØÎÏÊ ÉÎÆÏÒÍÁÃÉÉ.\n" -#: main.cc:62 main.cc:184 main.cc:196 +#: main.cc:62 main.cc:188 main.cc:200 #, c-format msgid "Copyright (c) %s by" msgstr "÷ÓÅ ÐÒÁ×Á ÚÁÝÉÝÅÎÙ (c) %s by" -#: main.cc:194 +#: main.cc:198 #, fuzzy msgid "GNU LilyPond -- The music typesetter" msgstr "GNU LilyPond -- îÁÂÏÒÝÉË ÍÕÚÙËÉ ðÒÏÅËÔÁ GNU" -#: main.cc:71 main.cc:202 +#: main.cc:71 main.cc:206 msgid "" " This program is free software; you can redistribute it and/or\n" "modify it under the terms of the GNU General Public License version 2\n" @@ -578,16 +699,16 @@ msgid "" "USA.\n" msgstr "" -#: midi-item.cc:312 +#: midi-item.cc:138 #, c-format msgid "no such instrument: `%s'" msgstr "ÎÅÔ ÔÁËÏÇÏ ÉÎÓÔÒÕÍÅÎÔÁ: `%s'" -#: midi-item.cc:402 +#: midi-item.cc:227 msgid "silly duration" msgstr "ÇÌÕÐÁÑ ÐÒÏÄÏÌÖÉÔÅÌØÎÏÓÔØ" -#: midi-item.cc:415 +#: midi-item.cc:240 msgid "silly pitch" msgstr "ÇÌÕÐÙÊ ÔÏÎ" @@ -596,23 +717,23 @@ msgstr " msgid "Transposition by %s makes accidental larger than two" msgstr "" -#: music.cc:224 +#: music.cc:232 msgid "ly_get_mus_property (): Not a Music" msgstr "" -#: music.cc:238 +#: music.cc:246 msgid "ly_set_mus_property (): Not a symbol" msgstr "" -#: music.cc:250 +#: music.cc:258 msgid "ly_set_mus_property (): not of type Music" msgstr "" -#: music.cc:264 +#: music.cc:272 msgid "ly_make_music (): Not a string" msgstr "" -#: music.cc:284 +#: music.cc:292 msgid "ly_music_name (): Not a music expression" msgstr "" @@ -649,7 +770,7 @@ msgstr " msgid "paper output to %s..." msgstr "\"ÂÕÍÁÖÎÙÊ\" ×Ù×ÏÄ × %s..." -#: lilypond-stream.cc:93 paper-outputter.cc:85 performance.cc:95 +#: lilypond-stream.cc:93 paper-outputter.cc:85 performance.cc:99 msgid ", at " msgstr ", ×" @@ -691,9 +812,9 @@ msgstr " msgid "none of these in my family: `%s'" msgstr "ÏÎÉ ÍÎÅ ÎÅ ÒÏÄÓÔ×ÅÎÎÉËÉ" -#: percent-repeat-engraver.cc:108 +#: percent-repeat-engraver.cc:118 #, fuzzy -msgid "Don't know yet how to handle this percent repeat." +msgid "Don't know how to handle a percent repeat of this length." msgstr "îÅ ÚÎÁÀ, ÞÔÏ ÄÅÌÁÔØ Ó ÐÕÓÔÙÍÉ ËÌÀÞÁÍÉ" #: percent-repeat-iterator.cc:53 @@ -705,16 +826,16 @@ msgstr " msgid "Track ... " msgstr "äÏÒÏÖËÁ ..." -#: performance.cc:79 +#: performance.cc:83 msgid "Creator: " msgstr "óÏÚÄÁÔÅÌØ: " -#: performance.cc:109 +#: performance.cc:113 #, c-format msgid "from musical definition: %s" msgstr "ÉÚ ÍÕÚÙËÁÌØÎÏÊ ÎÏÔÁÃÉÉ %s" -#: performance.cc:164 +#: performance.cc:168 #, c-format msgid "MIDI output to %s..." msgstr "×Ù×ÏÄ MIDI × %s..." @@ -751,11 +872,11 @@ msgstr "" msgid "Wrong type for property: %s, type: %s, value found: %s, type: %s" msgstr "" -#: rest-collision.cc:190 +#: rest-collision.cc:194 msgid "too many colliding rests" msgstr "ÓÌÉÛËÏÍ ÍÎÏÇÏ ÎÁÌÅÚÁÀÝÉÈ ÐÁÕÚ" -#: rest-collision.cc:194 +#: rest-collision.cc:198 msgid "too many notes for rest collision" msgstr "" @@ -777,7 +898,7 @@ msgstr " msgid "elapsed time: %.2f seconds" msgstr "ÚÁÔÒÁÞÅÎÎÏÅ ×ÒÅÍÑ: %.2f ÓÅËÕÎÄ" -#: score-engraver.cc:183 +#: score-engraver.cc:188 #, c-format msgid "unbound spanner `%s'" msgstr "" @@ -866,11 +987,11 @@ msgstr "" #. How to shut up this warning, when no notes appeared because #. they were suicided by Thread_devnull_engraver? -#: tie-engraver.cc:215 tie-performer.cc:173 +#: tie-engraver.cc:220 tie-performer.cc:173 msgid "No ties were created!" msgstr "" -#: tie-engraver.cc:234 +#: tie-engraver.cc:240 msgid "lonely tie" msgstr "" @@ -966,95 +1087,95 @@ msgstr " msgid "First argument must be a procedure taking 1 argument" msgstr "" -#: parser.yy:1236 +#: parser.yy:1233 msgid "Expecting string as script definition" msgstr "" -#: parser.yy:1246 +#: parser.yy:1243 msgid "Can't specify direction for this request" msgstr "îÅ ÍÏÇÕ ÕËÁÚÁÔØ ÎÁÐÒÁ×ÌÅÎÉÅ ÄÌÑ ÜÔÏÇÏ ÚÁÐÒÏÓÁ" -#: parser.yy:1371 +#: parser.yy:1368 msgid "Expecting musical-pitch value" msgstr "" -#: parser.yy:1382 +#: parser.yy:1379 #, fuzzy msgid "Must have duration object" msgstr "ÕÓÔÁÎÏ×ÉÔØ ÎÁÉÍÅÎØÛÕÀ ÐÒÏÄÏÌÖÉÔÅÌØÎÏÓÔØ" -#: parser.yy:1391 parser.yy:1399 parser.yy:1679 +#: parser.yy:1388 parser.yy:1396 parser.yy:1683 msgid "Have to be in Lyric mode for lyrics" msgstr "äÏÌÖÅÎ ÂÙÔØ × ìÉÒÉÞÅÓËÏÍ ÒÅÖÉÍÅ ÄÌÑ ÌÉÒÉËÉ" -#: parser.yy:1564 parser.yy:1593 +#: parser.yy:1549 parser.yy:1597 #, c-format msgid "not a duration: %d" msgstr "ÎÅ ÐÒÏÄÏÌÖÉÔÅÌØÎÏÓÔØ: %d" -#: parser.yy:1602 +#: parser.yy:1606 msgid "Have to be in Note mode for notes" msgstr "äÏÌÖÅÎ ÂÙÔØ × îÏÔÎÏÍ ÒÅÖÉÍÅ ÄÌÑ ÎÏÔ" -#: parser.yy:1698 +#: parser.yy:1702 msgid "Have to be in Chord mode for chords" msgstr "äÏÌÖÅÎ ÂÙÔØ × áËËÏÒÄÎÏÍ ÒÅÖÉÍÅ ÄÌÑ ÁËËÏÒÄÏ×" -#: parser.yy:1860 parser.yy:1878 +#: parser.yy:1864 parser.yy:1882 msgid "need integer number arg" msgstr "" -#: parser.yy:1864 +#: parser.yy:1868 msgid "Must be positive integer" msgstr "" -#: lexer.ll:166 +#: lexer.ll:167 msgid "EOF found inside a comment" msgstr "ëÏÎÅà ÆÁÊÌÁ ×ÎÕÔÒÉ ËÏÍÍÅÎÔÁÒÉÑ" -#: lexer.ll:180 +#: lexer.ll:181 msgid "\\maininput disallowed outside init files" msgstr "" -#: lexer.ll:204 +#: lexer.ll:205 #, fuzzy, c-format msgid "wrong or undefined identifier: `%s'" msgstr "ÎÅÉÚ×ÅÓÔÎÁÑ ÍÅÔËÁ/ËÏÍÁÎÄÁ: `%s'" #. backup rule -#: lexer.ll:209 +#: lexer.ll:210 msgid "Missing end quote" msgstr "ïÔÓÕÔÓ×ÕÅÔ ÚÁËÌÀÞÉÔÅÌØÎÁÑ ËÁ×ÙÞËÁ" #. backup rule -#: lexer.ll:231 lexer.ll:235 +#: lexer.ll:232 lexer.ll:236 msgid "white expected" msgstr "× ÔÏ ×ÒÅÍÑ ËÁË ÏÖÉÄÁÌÏÓØ" -#: lexer.ll:244 +#: lexer.ll:245 msgid "Can't evaluate Scheme in safe mode" msgstr "îÅ ÍÏÇÕ ×ÙÐÏÌÎÑÔØ ËÏÄ ÓÈÅÍÙ × ÂÅÚÏÐÁÓÎÏÍ ÒÅÖÉÍÅ" -#: lexer.ll:336 +#: lexer.ll:330 msgid "Brace found at end of lyric. Did you forget a space?" msgstr "" -#: lexer.ll:440 +#: lexer.ll:434 #, c-format msgid "invalid character: `%c'" msgstr "ÎÅ×ÅÒÎÙÊ ÓÉÍ×ÏÌ: `%c'" -#: lexer.ll:521 +#: lexer.ll:515 #, c-format msgid "unknown escaped string: `\\%s'" msgstr "ÎÅÉÚ×ÅÓÔÎÁÑ escape-ÐÏÓÌÅÄÏ×ÁÔÅÌØÎÏÓÔØ: `\\%s'" -#: lexer.ll:603 +#: lexer.ll:597 #, fuzzy, c-format msgid "incorrect lilypond version: %s (%s, %s)" msgstr "ÎÅ×ÅÒÎÁÑ ×ÅÒÓÉÑ mudela: %s (%s, %s)" -#: lexer.ll:604 +#: lexer.ll:598 msgid "Consider converting the input with the convert-ly script" msgstr "" @@ -1269,6 +1390,27 @@ msgstr " msgid "invalid track length" msgstr "ÎÅ×ÅÒÎÁÑ ÄÌÉÎÁ ÄÏÒÏÖËÉ" +#, fuzzy +#~ msgid "NAME" +#~ msgstr "ïóîï÷á" + +#, fuzzy +#~ msgid "write output to NAME" +#~ msgstr "ÚÁÐÉÓÙ×ÁÔØ ×Ù×ÏÄ × ïóîï÷á[-x].ÒÁÓÛÉÒÅÎÉÅ" + +#, fuzzy +#~ msgid "write ouput to NAME" +#~ msgstr "ÚÁÐÉÓÙ×ÁÔØ ×Ù×ÏÄ × ïóîï÷á[-x].ÒÁÓÛÉÒÅÎÉÅ" + +#~ msgid "not enough fields in Dstream init" +#~ msgstr "ÎÅ ÄÏÓÔÁÔÏÞÎÏ ÐÏÌÅÊ × Dstream init" + +#~ msgid "floating point exception" +#~ msgstr "ÉÓËÌÀÞÅÎÉÅ ÁÒÉÆÍÅÔÉËÉ Ó ÐÌÁ×ÁÀÝÅÊ ÚÁÐÑÔÏÊ" + +#~ msgid "can't set mem-checking!" +#~ msgstr "ÎÅ ÍÏÇÕ ×ËÌÀÞÉÔØ ÐÒÏ×ÅÒËÕ ÐÁÍÑÔÉ" + #, fuzzy #~ msgid "Dependency file left in `%s'" #~ msgstr "úÁÐÉÓÙ×ÁÀ ÆÁÊÌ ÚÁ×ÉÓÉÍÏÓÔÅÊ: `%s'..." diff --git a/scripts/update-lily.py b/scripts/update-lily.py index b683bab2ff..99e7c68cfd 100644 --- a/scripts/update-lily.py +++ b/scripts/update-lily.py @@ -50,8 +50,10 @@ patch_dir = build_root + '/patches' notify = 0 build_command = ''' +set -x cd %b && [ -d %n-%v ] && exit 1 || true; +mkdir -p %n-%v ( tar xzf %r/%t && rm -f building && @@ -243,7 +245,7 @@ option_definitions = [ ), ('', 'h', 'help', _ ("this help")), ('', 'k', 'keep', _ ("keep all output, and name the directory %s") % temp_dir), - ('EMAIL', 'n', 'notify', _ ("upon failure notify EMAIL[,EMAIL]"), + ('EMAIL', 'n', 'notify', _ ("upon failure notify EMAIL[,EMAIL]")), ('', 'r', 'remove-previous', _ ("remove previous build")), ('', 'V', 'verbose', _ ("verbose")), ('', 'v', 'version', _ ("print version number")), @@ -445,11 +447,11 @@ if 1: progress (_ ("building %s...") % latest) os.chdir (build_root) - if build (latest) previous and remove_previous_p: + if build (latest) and previous and remove_previous_p: system ('rm -rf %s' % os.path.join (build_root, previous)) else: if notify: - system ('(date; uname -a) | mail -s "%s failed" %s' % (program_name, notify) + system ('(date; uname -a) | mail -s "%s failed" %s' % (program_name, notify)) sys.exit (1) os.chdir (original_dir)