From: janneke Date: Wed, 31 Mar 2004 14:19:22 +0000 (+0000) Subject: * po/nl.po: Update. X-Git-Tag: release/2.3.9^2~457 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=0ca0b11bc8bd8bb3647c03baa1ad548e19669b43;p=lilypond.git * po/nl.po: Update. * lily/scm-option.cc (LY_DEFINE): Name of the program is lilypond-bin. * lily/event.cc (to_relative_octave): Translatable sentence should be one string. * python/lilylib.py (warranty): Year range is not translatable. It's 2004 already! * flower/warn.cc (non_fatal_error, warning, programming_error): Remove whitespace from translated string. --- diff --git a/ChangeLog b/ChangeLog index fcd6ce2a65..15aa795e7e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,18 @@ +2004-03-31 Jan Nieuwenhuizen + + * po/nl.po: Update. + + * lily/scm-option.cc (LY_DEFINE): Name of the program is lilypond-bin. + + * lily/event.cc (to_relative_octave): Translatable sentence should + be one string. + + * python/lilylib.py (warranty): Year range is not translatable. + It's 2004 already! + + * flower/warn.cc (non_fatal_error, warning, programming_error): + Remove whitespace from translated string. + 2004-03-31 Han-Wen Nienhuys * configure.in: check for C language. diff --git a/flower/warn.cc b/flower/warn.cc index 40a2b8a331..8bd71328cb 100644 --- a/flower/warn.cc +++ b/flower/warn.cc @@ -22,13 +22,13 @@ message (String s) void warning (String s) { - message (_f ("warning: %s\n", s.to_str0 ())); + message (_f ("warning: %s", s.to_str0 ()) + "\n"); } void non_fatal_error (String s) { - message (_f ("error: %s\n", s.to_str0 ())); + message (_f ("error: %s", s.to_str0 ()) + "\n"); } void @@ -41,7 +41,7 @@ error (String s) void programming_error (String s) { - message (_f ("programming error: %s (Continuing; crossing fingers)\n", - s.to_str0 ())); + message (_f ("programming error: %s", s) + "\n"); + message (_ ("Continuing; crossing fingers") + "\n"); } diff --git a/lily/accidental-engraver.cc b/lily/accidental-engraver.cc index 18acdfe966..022b2fe1f8 100644 --- a/lily/accidental-engraver.cc +++ b/lily/accidental-engraver.cc @@ -191,7 +191,7 @@ number_accidentals (bool *different, number = max (number, n); } else - warning (_f ("unknown accidental typesetting: %s. Ignored", + warning (_f ("ignoring unknown accidental: %s", ly_symbol2string (type).to_str0 ())); } diff --git a/lily/all-font-metrics.cc b/lily/all-font-metrics.cc index fb6d20b773..d2450498b3 100644 --- a/lily/all-font-metrics.cc +++ b/lily/all-font-metrics.cc @@ -104,9 +104,13 @@ All_font_metrics::find_afm (String name) s += " TFM: " + to_string ((int) tfm->info_.checksum); s += " AFM: " + to_string ((int) afm->checksum_); s += "\n"; - s += _ (" Rebuild all .afm files, and remove all .pk and .tfm files.\nRerun with -V to show font paths.\n"); - s += _("A script for removing font-files is delivered with the source-code,\n" - "in buildscripts/clean-fonts.sh"); + s += _ ("Rebuild all .afm files, and remove all .pk and .tfm files."); + s += "\n"; + s += _ ("Rerun with -V to show font paths."); + s += "\n"; + s += _("A script for removing font-files is delivered with the source-code:"); + s += "\n"; + s += "buildscripts/clean-fonts.sh"; error (s); } } diff --git a/lily/beam.cc b/lily/beam.cc index b63dd020b3..130dc8f3e4 100644 --- a/lily/beam.cc +++ b/lily/beam.cc @@ -153,7 +153,7 @@ Beam::before_line_breaking (SCM smob) SCM stems = me->get_property ("stems"); if (scm_ilength (stems) == 1) { - me->warning (_ ("Beam has less than two stems. Removing beam.")); + me->warning (_ ("removing beam with less than two stems")); unsmob_grob (gh_car (stems))->set_property ("beam", SCM_EOL); me->suicide (); @@ -1037,9 +1037,7 @@ Beam::shift_region_to_valid (SCM grob) } if (feasible_left_point.is_empty ()) - { - warning (_ ("Not sure that we can find a nice beam slope (no viable initial configuration found).")); - } + warning (_ ("no viable initial configuration found: may not find good beam slope")); else if (!feasible_left_point.contains (y)) { if (isinf (feasible_left_point[DOWN])) diff --git a/lily/event.cc b/lily/event.cc index 004f0eb32e..baa5ad15c9 100644 --- a/lily/event.cc +++ b/lily/event.cc @@ -66,15 +66,13 @@ Event::to_relative_octave (Pitch last) if (gh_number_p (check) && new_pit.get_octave () != gh_scm2int (check)) { - String s =_("Failed octave check, got: "); - s += new_pit.to_string (); - new_pit = Pitch (gh_scm2int (check), - new_pit.get_notename (), - new_pit.get_alteration ()); - - s += " expected "; - s += new_pit.to_string (); - origin ()->warning (s); + Pitch expected_pit (gh_scm2int (check), + new_pit.get_notename (), + new_pit.get_alteration ()); + origin ()->warning (_f ("octave check failed; expected %s, found: %s", + expected_pit.to_string (), + new_pit.to_string ())); + new_pit = expected_pit; } set_property ("pitch", new_pit.smobbed_copy ()); diff --git a/lily/hyphen-engraver.cc b/lily/hyphen-engraver.cc index 96839f8f99..b1614ca9ab 100644 --- a/lily/hyphen-engraver.cc +++ b/lily/hyphen-engraver.cc @@ -93,7 +93,7 @@ Hyphen_engraver::finalize () if (!hyphen_->get_bound (RIGHT)) { - hyphen_->warning (_ ("unterminated hyphen; removing")); + hyphen_->warning (_ ("removing unterminated hyphen")); hyphen_->suicide (); } diff --git a/lily/kpath.cc b/lily/kpath.cc index bc2ac1a3fa..50cb5c3545 100644 --- a/lily/kpath.cc +++ b/lily/kpath.cc @@ -72,9 +72,7 @@ kpathsea_find_tfm (char const * name) #if (KPATHSEA && HAVE_KPSE_FIND_FILE) char * name_ptr = kpse_find_file (name, kpse_tfm_format, true); if (!name_ptr) - { - warning (_f ("Kpathsea couldn't find TFM file `%s'", name)); - } + warning (_f ("kpathsea can not find TFM file: `%s'", name)); else return name_ptr; diff --git a/lily/lexer.ll b/lily/lexer.ll index f75e6998bc..ad5d4e2276 100644 --- a/lily/lexer.ll +++ b/lily/lexer.ll @@ -180,7 +180,9 @@ HYPHEN -- yy_pop_state(); this->here_input().source_file_->name_ = s; - progress_indication (_f("\nRenamed input to `%s'\n", s.to_str0())); + progress_indication ("\n"); + progress_indication (_f ("input renamed to: `%s'", s.to_str0 ())); + progress_indication ("\n"); scm_module_define (gh_car (scopes_), ly_symbol2scm ("input-file-name"), scm_makfrom0str (s.to_str0())); diff --git a/lily/ligature-engraver.cc b/lily/ligature-engraver.cc index f1b120d146..c74058e18c 100644 --- a/lily/ligature-engraver.cc +++ b/lily/ligature-engraver.cc @@ -276,7 +276,7 @@ Ligature_engraver::acknowledge_grob (Grob_info info) } if (Rest::has_interface (info.grob_)) { - info.music_cause ()->origin ()->warning (_ ("ligature may not contain rest; ignoring rest")); + info.music_cause ()->origin ()->warning (_ ("ignoring rest: ligature may not contain rest")); prev_start_req_->origin ()->warning (_ ("ligature was started here")); // TODO: maybe better should stop ligature here rather than // ignoring the rest? diff --git a/lily/main.cc b/lily/main.cc index a2a9ceec93..80cf2a133a 100644 --- a/lily/main.cc +++ b/lily/main.cc @@ -200,7 +200,7 @@ usage () printf ("\n\n"); printf (_ ("LilyPond produces beautiful music notation.").to_str0 ()); printf ("\n"); - printf (_f ("For more information, see %s,", PROGRAM_URL).to_str0 ()); + printf (_f ("For more information, see %s", PROGRAM_URL).to_str0 ()); printf ("\n\n"); printf (_ ("Options:").to_str0 ()); printf ("\n"); diff --git a/lily/midi-stream.cc b/lily/midi-stream.cc index e5c760e7c0..ef88ef9f42 100644 --- a/lily/midi-stream.cc +++ b/lily/midi-stream.cc @@ -37,7 +37,7 @@ Midi_stream::operator << (String str) sz, n, out_file_); if (written != sz * n) - warning (_ ("Could not write file. Disk full?")); + warning (_ ("could not write file: `%s'")); return *this; } diff --git a/lily/rest.cc b/lily/rest.cc index 16b5032ec1..1bec02a6fa 100644 --- a/lily/rest.cc +++ b/lily/rest.cc @@ -128,17 +128,13 @@ Rest::brew_internal_stencil (SCM smob) String style; SCM style_scm = me->get_property ("style"); if (gh_symbol_p (style_scm)) - { - style = ly_scm2string (scm_symbol_to_string (style_scm)); - } + style = ly_scm2string (scm_symbol_to_string (style_scm)); Font_metric *fm = Font_interface::get_default_font (me); String font_char = glyph_name (me, balltype, style); Stencil out = fm->find_by_name (font_char); if (out.is_empty ()) - { - me->warning (_f ("rest `%s' not found, ", font_char.to_str0 ())); - } + me->warning (_f ("rest `%s' not found", font_char.to_str0 ())); return out.smobbed_copy (); } diff --git a/lily/scm-option.cc b/lily/scm-option.cc index 4cff8e63ae..aac158ba92 100644 --- a/lily/scm-option.cc +++ b/lily/scm-option.cc @@ -57,7 +57,7 @@ LY_DEFINE (ly_option_usage, "ly:option-usage", 0, 0, 0, (SCM), puts (""); printf (_(" The function ly-set-option allows for access to some internal variables.").to_str0 ()); puts ("\n"); - printf (_ ("Usage: lilypond -e \"(ly-set-option SYMBOL VAL)\"").to_str0 ()); + printf (_ ("Usage: lilypond-bin -e \"(ly-set-option SYMBOL VAL)\"").to_str0 ()); puts ("\n"); printf (_ ("Where SYMBOL VAL pair is any of:").to_str0 ()); puts (""); diff --git a/lily/spacing-spanner.cc b/lily/spacing-spanner.cc index 139ba29f0f..21780b9a76 100644 --- a/lily/spacing-spanner.cc +++ b/lily/spacing-spanner.cc @@ -382,9 +382,7 @@ Spacing_spanner::set_springs (SCM smob) { global_shortest = find_shortest (me, all); if (verbose_global_b) - { - progress_indication (_f ("Global shortest duration is %s\n", global_shortest.to_string ())); - } + progress_indication (_f ("Global shortest duration is %s", global_shortest.to_string ()) + "\n"); } prune_loose_columns (me, &all, global_shortest); set_implicit_neighbor_columns (all); diff --git a/lily/system.cc b/lily/system.cc index 0237dbbd3f..94d77d48d3 100644 --- a/lily/system.cc +++ b/lily/system.cc @@ -332,7 +332,7 @@ System::pre_processing () unsmob_grob (ly_car (s))->discretionary_processing (); if (verbose_global_b) - progress_indication (_f ("Grob count %d ", element_count ())); + progress_indication (_f ("Grob count %d", element_count ())); for (SCM s = get_property ("all-elements"); gh_pair_p (s); s = ly_cdr (s)) diff --git a/po/lilypond.pot b/po/lilypond.pot index c40398a956..3fb723997e 100644 --- a/po/lilypond.pot +++ b/po/lilypond.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2004-03-28 17:42+0200\n" +"POT-Creation-Date: 2004-03-31 16:05+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -16,70 +16,36 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#. ############################################################### -#. lilylib.py -- options and stuff -#. -#. source file of the GNU LilyPond music typesetter -#. -#. (c) 1998--2003 Han-Wen Nienhuys -#. Jan Nieuwenhuizen -#. ## subst:\(^\|[^._a-z]\)\(abspath\|identify\|warranty\|progress\|warning\|error\|exit\|getopt_args\|option_help_str\|options_help_str\|help\|setup_temp\|read_pipe\|system\|cleanup_temp\|strip_extension\|cp_to_dir\|mkdir_p\|init\) *( -#. ## replace:\1ly.\2 ( -#. ## subst: \(help_summary\|keep_temp_dir_p\|option_definitions\|original_dir\|program_name\|pseudo_filter_p\|temp_dir\|verbose_p\) -#. ############################################################### -#. Users of python modules should include this snippet -#. and customize variables below. -#. We'll suffer this path init stuff as long as we don't install our -#. python packages in /lib/pythonx.y (and don't kludge around -#. it as we do with teTeX on Red Hat Linux: set some environment var -#. (PYTHONPATH) in profile) -#. If set, LILYPONDPREFIX must take prevalence -#. if datadir is not set, we're doing a build and LILYPONDPREFIX -#. Customize these -#. lilylib globals #: lilylib.py:60 msgid "lilylib module" msgstr "" -#: lilylib.py:63 lilypond-book.py:83 lilypond.py:127 midi2ly.py:100 +#: lilylib.py:63 lilypond-book.py:84 lilypond.py:127 midi2ly.py:100 #: mup2ly.py:75 old-lilypond-book.py:129 main.cc:140 msgid "print this help" msgstr "" -#. ############################################################### -#. Handle bug in Python 1.6-2.1 -#. -#. there are recursion limits for some patterns in Python 1.6 til 2.1. -#. fix this by importing pre instead. Fix by Mats. -#. Attempt to fix problems with limited stack size set by Python! -#. Sets unlimited stack size. Note that the resource module only -#. is available on UNIX. #: lilylib.py:110 midi2ly.py:136 mup2ly.py:130 #, python-format msgid "Copyright (c) %s by" msgstr "" -#: lilylib.py:110 -msgid " 1998--2003" -msgstr "" - -#: lilylib.py:114 +#: lilylib.py:114 midi2ly.py:141 mup2ly.py:135 msgid "Distributed under terms of the GNU General Public License." msgstr "" -#: lilylib.py:116 +#: lilylib.py:116 midi2ly.py:142 mup2ly.py:136 msgid "It comes with NO WARRANTY." msgstr "" -#: lilylib.py:123 midi2ly.py:150 mup2ly.py:144 input.cc:88 -msgid "warning: " +#: lilylib.py:123 warn.cc:25 +#, c-format, python-format +msgid "warning: %s" msgstr "" -#. lots of midi files use plain text for lyric events -#. FIXME: read from stdin when files[0] = '-' -#: lilylib.py:126 midi2ly.py:165 midi2ly.py:1018 midi2ly.py:1083 mup2ly.py:147 -#: mup2ly.py:161 input.cc:93 -msgid "error: " +#: lilylib.py:126 warn.cc:31 +#, c-format, python-format +msgid "error: %s" msgstr "" #: lilylib.py:130 @@ -87,16 +53,17 @@ msgstr "" msgid "Exiting (%d)..." msgstr "" -#: lilylib.py:190 midi2ly.py:224 mup2ly.py:220 +#: lilylib.py:190 midi2ly.py:223 mup2ly.py:219 #, python-format msgid "Usage: %s [OPTIONS]... FILE" msgstr "" -#: lilylib.py:194 midi2ly.py:228 mup2ly.py:224 main.cc:205 +#: lilylib.py:194 midi2ly.py:227 mup2ly.py:223 main.cc:205 +#, c-format msgid "Options:" msgstr "" -#: lilylib.py:198 midi2ly.py:232 mup2ly.py:228 main.cc:209 +#: lilylib.py:198 midi2ly.py:231 mup2ly.py:227 main.cc:209 #, c-format, python-format msgid "Report bugs to %s." msgstr "" @@ -106,25 +73,22 @@ msgstr "" msgid "Binary %s has version %s, looking for version %s" msgstr "" -#. deal with "((latex ) >& 1 ) .." too #: lilylib.py:252 #, python-format msgid "Opening pipe `%s'" msgstr "" -#. successful pipe close returns 'None' -#: lilylib.py:267 lilypond-book.py:724 +#: lilylib.py:267 lilypond-book.py:767 #, python-format msgid "`%s' failed (%d)" msgstr "" -#: lilylib.py:272 lilylib.py:331 lilypond-book.py:725 lilypond.py:530 +#: lilylib.py:272 lilylib.py:331 lilypond-book.py:768 lilypond.py:530 #: old-lilypond-book.py:228 msgid "The error log is as follows:" msgstr "" -#. Ugh. code dup -#: lilylib.py:303 midi2ly.py:260 mup2ly.py:256 +#: lilylib.py:303 midi2ly.py:259 mup2ly.py:255 #, python-format msgid "Invoking `%s'" msgstr "" @@ -139,289 +103,22 @@ msgstr "" msgid "`%s' failed (%s)" msgstr "" -#: lilylib.py:327 midi2ly.py:266 mup2ly.py:264 +#: lilylib.py:327 midi2ly.py:265 mup2ly.py:263 msgid "(ignored)" msgstr "" -#: lilylib.py:345 midi2ly.py:276 mup2ly.py:274 +#: lilylib.py:345 midi2ly.py:275 mup2ly.py:273 #, python-format msgid "Cleaning %s..." msgstr "" -#. Duh. Python style portable: cp *.EXT OUTDIR -#. system ('cp *.%s %s' % (ext, outdir), 1) -#. Python < 1.5.2 compatibility -#. -#. On most platforms, this is equivalent to -#. `normpath(join(os.getcwd()), PATH)'. *Added in Python version 1.5.2* -#. tex needs lots of memory, more than it gets by default on Debian -#. TODO: * prevent multiple addition. -#. * clean TEXINPUTS, MFINPUTS, TFMFONTS, -#. as these take prevalence over $TEXMF -#. and thus may break tex run? -#. $TEXMF is special, previous value is already taken care of -#. # -sOutputFile does not work with bbox? -#. # todo: -#. # have better algorithm for deciding when to crop page, -#. # and when to show full page -#. need to have margin, otherwise edges of letters will -#. be cropped off. -#: lilylib.py:508 +#: lilylib.py:509 msgid "Removing output file" msgstr "" -#. !@PYTHON@ -#. once upon a rainy monday afternoon. -#. -#. ... -#. -#. (not finished.) -#. ABC standard v1.6: http://www.gre.ac.uk/~c.walshaw/abc2mtex/abc.txt -#. -#. Enhancements (Roy R. Rankin) -#. -#. Header section moved to top of lilypond file -#. handle treble, treble-8, alto, and bass clef -#. Handle voices (V: headers) with clef and part names, multiple voices -#. Handle w: lyrics with multiple verses -#. Handle key mode names for minor, major, phrygian, ionian, locrian, aeolian, -#. mixolydian, lydian, dorian -#. Handle part names from V: header -#. Tuplets handling fixed up -#. Lines starting with |: not discarded as header lines -#. Multiple T: and C: header entries handled -#. Accidental maintained until next bar check -#. Silent rests supported -#. articulations fermata, upbow, downbow, ltoe, accent, tenuto supported -#. Chord strings([-^]"string") can contain a '#' -#. Header fields enclosed by [] in notes string processed -#. W: words output after tune as abc2ps does it (they failed before) -#. Enhancements (Laura Conrad) -#. -#. Barring now preserved between ABC and lilypond -#. the default placement for text in abc is above the staff. -#. %%LY now supported. -#. \breve and \longa supported. -#. M:none doesn't crash lily. -#. Limitations -#. -#. Multiple tunes in single file not supported -#. Blank T: header lines should write score and open a new score -#. Not all header fields supported -#. ABC line breaks are ignored -#. Block comments generate error and are ignored -#. Postscript commands are ignored -#. lyrics not resynchronized by line breaks (lyrics must fully match notes) -#. %%LY slyrics can't be directly before a w: line. -#. ??? -#. TODO: -#. -#. Convert to new chord styles. -#. -#. UNDEF -> None -#. -#. uGUHGUHGHGUGH -#. UGH -#. treble8 is used by abctab2ps; -8va is used by barfly, -#. and by my patch to abc2ps. If there's ever a standard -#. about this we'll support that. -#. find keywork -#. assume that Q takes the form "Q:1/4=120" -#. There are other possibilities, but they are deprecated -#. outf.write ("\t\t\\consists Staff_margin_engraver\n") -#. pitch manipulation. Tuples are (name, alteration). -#. 0 is (central) C. Alteration -1 is a flat, Alteration +1 is a sharp -#. pitch in semitones. -#. abc to lilypond key mode names -#. semitone shifts for key mode names -#. latex does not like naked #'s -#. latex does not like naked "'s -#. break lyrics to words and put "'s around words containing numbers and '"'s -#. escape " -#. _ causes probs inside "" -#. _ to ' _ ' -#. split words with - -#. unless \- -#. ~ to space('_') -#. * to to space -#. latex does not like naked #'s -#. put numbers and " and ( into quoted string -#. insure space between lines -#. title -#. strip trailing blanks -#. Meter -#. KEY -#. seperate clef info -#. there may or may not be a space -#. between the key letter and the mode -#. ugh. -#. ugh. -#. Notes -#. Origin -#. Reference Number -#. Area -#. History -#. Book -#. Composer -#. Default note length -#. Voice -#. Words -#. vocals -#. tempo -#. we use in this order specified accidental, active accidental for bar, -#. active accidental for key -#. (num / den) / defaultlen < 1/base -#. return (str, num,den,dots) -#. ignore slide -#. ignore roll -#. s7m2 input doesnt care about spaces -#. -#. remember accidental for rest of bar -#. -#. get accidental set in this bar or UNDEF if not set -#. WAT IS ABC EEN ONTZETTENDE PROGRAMMEERPOEP ! -#. failed; not a note! -#. escape '#'s -#. -#. |] thin-thick double bar line -#. || thin-thin double bar line -#. [| thick-thin double bar line -#. :| left repeat -#. |: right repeat -#. :: left-right repeat -#. |1 volta 1 -#. |2 volta 2 -#. first try the longer one -#. bracket escape -#. the nobarlines option is necessary for an abc to lilypond translator for -#. exactly the same reason abc2midi needs it: abc requires the user to enter -#. the note that will be printed, and MIDI and lilypond expect entry of the -#. pitch that will be played. -#. -#. In standard 19th century musical notation, the algorithm for translating -#. between printed note and pitch involves using the barlines to determine -#. the scope of the accidentals. -#. -#. Since ABC is frequently used for music in styles that do not use this -#. convention, such as most music written before 1700, or ethnic music in -#. non-western scales, it is necessary to be able to tell a translator that -#. the barlines should not affect its interpretation of the pitch. -#. write other kinds of appending if we ever need them. -#. add comments to current voice -#. Try nibbling characters off until the line doesn't change. -#. dump_global (outf) -#. !@PYTHON@ -#. -#. convert-ly.py -- Update old LilyPond input files (fix name?) -#. -#. source file of the GNU LilyPond music typesetter -#. -#. (c) 1998--2004 Han-Wen Nienhuys -#. Jan Nieuwenhuizen -#. TODO -#. use -f and -t for -s output -#. NEWS -#. 0.2 -#. - rewrite in python -#. Did we ever have \mudela-version? I doubt it. -#. lilypond_version_re_str = '\\\\version *\"(.*)\"' -#. ########################### -#. need new a namespace -#. raise FatalConversionError() -#. need new a namespace -#. harmful to current .lys -#. str = re.sub ('\\\\key([^;]+);', '\\\\accidentals \\1;', str) -#. raise FatalConversionError() -#. raise FatalConversionError() -#. raise FatalConversionError() -#. TODO: lots of other syntax change should be done here as well -#. Ugh, but meaning of \stemup changed too -#. maybe we should do \stemup -> \stemUp\slurUp\tieUp ? -#. I don't know exactly when these happened... -#. ugh, we loose context setting here... -#. (lacks capitalisation slur -> Slur) -#. # dynamic.. -#. TODO: add lots of these -#. ugh -#. old fix -#. Make sure groups of more than one ; have space before -#. them, so that non of them gets removed by next rule -#. Only remove ; that are not after spaces, # or ; -#. Otherwise we interfere with Scheme comments, -#. which is badbadbad. -#. 40 ? -#. # end of while <> -#. add dash: -[, so that [<> c d] becomes -#. <>-[ c d] -#. and gets skipped by articulation_substitute -#. this rule doesn't really work, -#. too lazy to figure out why. -#. str = re.sub (r'molecule', 'collage', str) -#. molecule -> collage -#. -1: remove . -#. ############################### -#. END OF CONVERSIONS -#. ############################### -#. !@PYTHON@ -#. info mostly taken from looking at files. See also -#. http://lilypond.org/wiki/?EnigmaTransportFormat -#. This supports -#. -#. * notes -#. * rests -#. * ties -#. * slurs -#. * lyrics -#. * articulation -#. * grace notes -#. * tuplets -#. -#. todo: -#. * slur/stem directions -#. * voices (2nd half of frame?) -#. * more intelligent lyrics -#. * beams (better use autobeam?) -#. * more robust: try entertainer.etf (freenote) -#. * dynamics -#. * empty measures (eg. twopt03.etf from freenote) -#. -#. uGUHGUHGHGUGH -#. notename 0 == central C -#. represent pitches as (notename, alteration), relative to C-major scale -#. a fifth up -#. minor scale -#. should cache this. -#. flag1 isn't all that interesting. -#. 3: '>', -#. 18: '\arpeggio' , -#. really only for 0, but we only know about 0 and 1 -#. do grace notes. -#. ugh. -#. we don't attempt voltas since they fail easily. -#. and g.repeat_bar == '|:' or g.repeat_bar == ':|:' or g.bracket: -#. 4 layers. -#. let's not do this: this really confuses when eE happens to be before a ^text. -#. if last_tag and last_indices: -#. etf_file_dict[last_tag][last_indices].append (l) -#. # do it -#. staff-spec -#. should use \addlyrics ? -#. !@PYTHON@ -#. ############################################################### -#. Users of python modules should include this snippet -#. and customize variables below. -#. We'll suffer this path init stuff as long as we don't install our -#. python packages in /lib/pythonx.y (and don't kludge around -#. it as we do with teTeX on Red Hat Linux: set some environment var -#. (PYTHONPATH) in profile) -#. If set, LILYPONDPREFIX must take prevalence -#. if datadir is not set, we're doing a build and LILYPONDPREFIX -#. Customize these -#. if __name__ == '__main__': -#. lilylib globals #: lilypond-book.py:69 msgid "" -"Process LilyPond snippets in hybrid HTML, LaTeX or texinfo document. " +"Process LilyPond snippets in hybrid HTML, LaTeX or texinfo document.\n" "Example usage:\n" "\n" " lilypond-book --filter=\"tr '[a-z]' '[A-Z]'\" BOOK\n" @@ -432,221 +129,128 @@ msgstr "" #. Bug in option parser: --output=foe is taken as an abbreviation #. for --output-format. -#: lilypond-book.py:81 old-lilypond-book.py:123 main.cc:139 +#: lilypond-book.py:82 old-lilypond-book.py:123 main.cc:139 msgid "EXT" msgstr "" -#: lilypond-book.py:81 old-lilypond-book.py:123 +#: lilypond-book.py:82 old-lilypond-book.py:123 msgid "use output format EXT (texi [default], texi-html, latex, html)" msgstr "" -#: lilypond-book.py:82 +#: lilypond-book.py:83 msgid "FILTER" msgstr "" -#: lilypond-book.py:82 +#: lilypond-book.py:83 msgid "pipe snippets through FILTER [convert-ly -n -]" msgstr "" -#: lilypond-book.py:84 lilypond-book.py:86 lilypond.py:131 +#: lilypond-book.py:85 lilypond-book.py:87 lilypond.py:131 #: old-lilypond-book.py:130 main.cc:142 main.cc:147 msgid "DIR" msgstr "" -#: lilypond-book.py:84 +#: lilypond-book.py:85 msgid "add DIR to include path" msgstr "" -#: lilypond-book.py:85 +#: lilypond-book.py:86 msgid "COMMAND" msgstr "" -#: lilypond-book.py:85 +#: lilypond-book.py:86 msgid "process ly_files using COMMAND FILE..." msgstr "" -#: lilypond-book.py:86 +#: lilypond-book.py:87 msgid "write output to DIR" msgstr "" -#: lilypond-book.py:87 lilypond.py:149 midi2ly.py:105 mup2ly.py:78 +#: lilypond-book.py:88 lilypond.py:149 midi2ly.py:105 mup2ly.py:78 #: old-lilypond-book.py:140 main.cc:150 msgid "be verbose" msgstr "" -#: lilypond-book.py:88 old-lilypond-book.py:141 +#: lilypond-book.py:89 old-lilypond-book.py:141 msgid "print version information" msgstr "" -#: lilypond-book.py:89 lilypond.py:151 midi2ly.py:107 mup2ly.py:80 +#: lilypond-book.py:90 lilypond.py:151 midi2ly.py:107 mup2ly.py:80 #: old-lilypond-book.py:142 main.cc:151 msgid "show warranty and copyright" msgstr "" -#. only use installed binary when we're installed too. -#. Recognize special sequences in the input -#. -#. (?Pregex) -- assign result of REGEX to NAME -#. *? -- match non-greedily. -#. (?m) -- multiline regex: make ^ and $ match at each line -#. (?s) -- make the dot match all characters including newline -#. don't do this: fucks up with @code{@{} -#. 'verb': r'''(?P@code{.*?})''', -#. Hmm -#. defaults -#: lilypond-book.py:341 +#: lilypond-book.py:373 #, python-format msgid "deprecated ly-option used: %s" msgstr "" -#: lilypond-book.py:342 +#: lilypond-book.py:374 #, python-format msgid "compatibility mode translation: %s" msgstr "" -#: lilypond-book.py:362 +#: lilypond-book.py:394 #, python-format msgid "ignoring unknown ly option: %s" msgstr "" -#. URGS -#. 1 = central C -#. BARF -#. use lilypond-bin for latex (.lytex) books, -#. and lilypond --preview for html, texinfo books? -#. Ugh. (La)TeX writes progress and error messages on stdout -#. Redirect to stderr -#. check if it really is EPS. -#. Otherwise music glyphs disappear from 2nd and following pages. -#. TODO: should run dvips -pp -E per page, then we get proper -#. cropping as well. -#. make non EPS. -#: lilypond-book.py:416 +#: lilypond-book.py:448 #, python-format -msgid "file not found: %s\n" -msgstr "" - -#. TODO: something smart with target formats -#. (ps, png) and m/ctimes -#. TODO -#. URGUGHUGHUGUGHU -#. URG, makeinfo implicitely prepends dot to ext -#. specifying no extension is most robust -#. self.output_print_filename (TEXINFO) -#. need par after image -#. # found = dict (map (lambda x: (x, None), types)) -#. # urg python2.1 -#. We want to search for multiple regexes, without searching -#. the string multiple times for one regex. -#. Hence, we use earlier results to limit the string portion -#. where we search. -#. Since every part of the string is traversed at most once for -#. every type of snippet, this is linear. -#. FIXME. -#. Limiting the search space is a cute -#. idea, but this *requires* to search -#. for possible containing blocks -#. first, at least long as we do not -#. search for the start of blocks, but -#. always/directly for the entire -#. @block ... @end block. -#: lilypond-book.py:707 +msgid "file not found: %s" +msgstr "" + +#: lilypond-book.py:750 #, python-format msgid "Opening filter `%s'" msgstr "" -#. need anything else besides textwidth? -#. TEXINFO: '.texinfo', -#. ugh -#. FIXME -#: lilypond-book.py:819 +#: lilypond-book.py:862 #, python-format msgid "cannot determine format for: %s" msgstr "" -#. urg python interface to libkpathsea? -#. only default to stdout when filtering -#: lilypond-book.py:860 +#: lilypond-book.py:903 msgid "Output would overwrite input file; use --output." msgstr "" -#: lilypond-book.py:867 +#: lilypond-book.py:910 #, python-format msgid "Reading %s..." msgstr "" -#. FIXME: containing blocks must be first, see find_toplevel_snippets -#. 'verb', -#: lilypond-book.py:881 +#: lilypond-book.py:924 msgid "Dissecting..." msgstr "" -#. FIXME: @paper is usually not in chunk #0: -#. \input texinfo @c -*-texinfo-*- -#. bluntly search first K of source -#. s = chunks[0].replacement_text () -#: lilypond-book.py:909 +#: lilypond-book.py:952 msgid "Writing snippets..." msgstr "" -#: lilypond-book.py:914 +#: lilypond-book.py:957 msgid "Processing..." msgstr "" -#: lilypond-book.py:917 +#: lilypond-book.py:960 msgid "All snippets are up to date..." msgstr "" -#: lilypond-book.py:920 +#: lilypond-book.py:963 #, python-format msgid "Compiling %s..." msgstr "" -#: lilypond-book.py:928 +#: lilypond-book.py:971 #, python-format msgid "Processing include: %s" msgstr "" -#. ############################################################### -#. # MAIN -#. ############################################################### -#: lilypond-book.py:944 lilypond.py:693 midi2ly.py:1018 +#: lilypond-book.py:987 lilypond.py:693 midi2ly.py:1017 #: old-lilypond-book.py:1570 #, python-format msgid "getopt says: `%s'" msgstr "" -#. !@PYTHON@ -#. -#. lilypond.py -- Run LilyPond, add titles to bare score, generate printable -#. document -#. Invokes: lilypond-bin, latex (or pdflatex), dvips, ps2pdf, gs -#. -#. source file of the GNU LilyPond music typesetter -#. -#. (c) 1998--2004 Han-Wen Nienhuys -#. Jan Nieuwenhuizen -#. This is the third incarnation of ly2dvi, now renamed lilypond. -#. -#. Earlier incarnations of lilypond were written by -#. Jeffrey B. Reed (Python version) -#. Jan Arne Fagertun (Bourne shell script) -#. -#. Note: gettext work best if we use ' for program/docstrings and " -#. for gettextable strings. -#. USE ''' for docstrings. -#. ############################################################### -#. Users of python modules should include this snippet -#. and customize variables below. -#. We'll suffer this path init stuff as long as we don't install our -#. python packages in /lib/pythonx.y (and don't kludge around -#. it as we do with teTeX on Red Hat Linux: set some environment var -#. (PYTHONPATH) in profile) -#. If set, LILYPONDPREFIX must take prevalence -#. if datadir is not set, we're doing a build and LILYPONDPREFIX -#. Customize these -#. if __name__ == '__main__': -#. lilylib globals #. # FIXME #. # do -P or -p by default? #. #help_summary = _ ("Run LilyPond using LaTeX for titling") @@ -721,7 +325,7 @@ msgid "generate PostScript output" msgstr "" #: lilypond.py:143 -msgid "use pdflatex to generate a PDF output" +msgid "use pdflatex to generate PDF output" msgstr "" #: lilypond.py:144 @@ -752,24 +356,11 @@ msgstr "" msgid "print version number" msgstr "" -#. other globals -#. Pdftex support -#. # yuk. -#. lilypond_binary = 'valgrind --suppressions=%(home)s/usr/src/guile-1.6.supp --num-callers=10 %(home)s/usr/src/lilypond/lily/out/lilypond '% { 'home' : '/home/hanwen' } -#. only use installed binary when we're installed too. -#. init to empty; values here take precedence over values in the file -#. # TODO: change name. -#. for geometry v3 -#. Output formats that lilypond should create -#. what a name. -#. ly.warning (_ ("invalid value: %s") % `val`) -#. ly.warning (_ ("invalid value: %s") % `val`) #: lilypond.py:234 #, python-format msgid "no such setting: `%s'" msgstr "" -#. 2 == user interrupt. #: lilypond.py:284 #, python-format msgid "LilyPond crashed (signal %d)." @@ -793,62 +384,42 @@ msgstr "" msgid "Continuing..." msgstr "" -#. urg #: lilypond.py:306 #, python-format msgid "Analyzing %s..." msgstr "" -#. search only the first 10k #: lilypond.py:364 #, python-format msgid "no LilyPond output found for `%s'" msgstr "" -#. The final \n seems important here. It ensures that the footers and taglines end up on the right page. -#. TODO: should set textheight (enlarge) depending on papersize. #: lilypond.py:431 #, python-format msgid "invalid value: `%s'" msgstr "" -#. set sane geometry width (a4-width) for linewidth = -1. -#. who the hell is 597 ? -#. Ugh. (La)TeX writes progress and error messages on stdout -#. Redirect to stderr #: lilypond.py:529 msgid "LaTeX failed on the output file." msgstr "" -#. make a preview by rendering only the 1st line -#. of each score #: lilypond.py:586 msgid "" "Trying create PDF, but no PFA fonts found.\n" "Using bitmap fonts instead. This will look bad." msgstr "" -#. ugh. Different targets? -#. Added as functionality to lilypond, because lilypond may well need to do this -#. in future too. #. no ps header? #: lilypond.py:635 #, python-format msgid "not a PostScript file: `%s'" msgstr "" -#. todo #: lilypond.py:680 #, python-format msgid "Writing HTML menu `%s'" msgstr "" -#. signal programming error -#. Don't convert input files to abspath, rather prepend '.' to include -#. path. -#. As a neat trick, add directory part of first input file -#. to include path. That way you can do without the clumsy -I in: -#. lilypond -I foe/bar/baz foo/bar/baz/baz.ly #: lilypond.py:800 msgid "pseudo filter" msgstr "" @@ -857,52 +428,27 @@ msgstr "" msgid "pseudo filter only for single input file" msgstr "" -#. HACK -#. status = os.system ('lilypond -w') #: lilypond.py:808 old-lilypond-book.py:1643 msgid "no files specified on command line" msgstr "" -#. Ugh, maybe make a setup () function -#. hmmm. Wish I'd 've written comments when I wrote this. -#. now it looks complicated. #: lilypond.py:840 #, python-format msgid "filename should not contain spaces: `%s'" msgstr "" -#. to be sure, add tmpdir *in front* of inclusion path. -#. os.environ['TEXINPUTS'] = tmpdir + ':' + os.environ['TEXINPUTS'] -#. We catch all exceptions, because we need to do stuff at exit: -#. * copy any successfully generated stuff from tempdir and -#. notify user of that -#. * cleanout tempdir -#. ## ARGH. This also catches python programming errors. -#. ## this should only catch lilypond nonzero exit status -#. ## --hwn -#. TODO: friendly message about LilyPond setup/failing? -#. #: lilypond.py:880 msgid "Running LilyPond failed. Rerun with --verbose for a trace." msgstr "" -#. Our LilyPond pseudo filter always outputs to 'lelie' -#. have subsequent stages and use 'lelie' output. -#. unless: add --tex, or --latex? -#. TODO: friendly message about TeX/LaTeX setup, -#. trying to run tex/latex by hand #: lilypond.py:921 msgid "Failed to make PS file. Rerun with --verbose for a trace." msgstr "" -#. unless: add --tex, or --latex? -#. TODO: friendly message about TeX/LaTeX setup, -#. trying to run tex/latex by hand #: lilypond.py:951 msgid "Running LaTeX failed. Rerun with --verbose for a trace." msgstr "" -#. add DEP to targets? #: lilypond.py:963 input-file-results.cc:74 #, c-format, python-format msgid "dependencies output to `%s'..." @@ -919,7 +465,6 @@ msgstr "" msgid "can't find file: `%s'" msgstr "" -#. Hmm, if this were a function, we could call it the except: clauses #: lilypond.py:1002 #, python-format msgid "%s output to %s..." @@ -930,22 +475,6 @@ msgstr "" msgid "can't find file: `%s.%s'" msgstr "" -#. !@PYTHON@ -#. -#. midi2ly.py -- LilyPond midi import script -#. -#. source file of the GNU LilyPond music typesetter -#. -#. (c) 1998--2004 Han-Wen Nienhuys -#. Jan Nieuwenhuizen -#. ############################################################### -#. Users of python modules should include this snippet. -#. -#. This soon to be removed for: import lilypond.lilylib as ly -#. ############################################################### -#. ############################################################### -#. ############### CONSTANTS -#. ############################################################### #. temp_dir = os.path.join (original_dir, '%s.dir' % program_name) #. original_dir = os.getcwd () #. keep_temp_dir_p = 0 @@ -993,102 +522,37 @@ msgstr "" msgid "treat every text as a lyric" msgstr "" -#: midi2ly.py:136 mup2ly.py:130 -msgid " 2001--2004" +#: midi2ly.py:149 mup2ly.py:143 input.cc:88 +msgid "warning: " msgstr "" -#: midi2ly.py:141 mup2ly.py:135 -msgid "" -"\n" -"Distributed under terms of the GNU General Public License. It comes with\n" -"NO WARRANTY." +#: midi2ly.py:164 midi2ly.py:1017 midi2ly.py:1082 mup2ly.py:146 mup2ly.py:160 +#: input.cc:93 +msgid "error: " msgstr "" -#: midi2ly.py:166 mup2ly.py:162 +#: midi2ly.py:165 mup2ly.py:161 msgid "Exiting ... " msgstr "" -#: midi2ly.py:264 mup2ly.py:261 +#: midi2ly.py:263 mup2ly.py:260 #, python-format msgid "command exited with value %d" msgstr "" -#. ############################################################### -#. END Library -#. ############################################################### -#. hmm -#. major scale: do-do -#. minor scale: la-la (= + 5) ''' -#. By tradition, all scales now consist of a sequence -#. of 7 notes each with a distinct name, from amongst -#. a b c d e f g. But, minor scales have a wide -#. second interval at the top - the 'leading note' is -#. sharped. (Why? it just works that way! Anything -#. else doesn't sound as good and isn't as flexible at -#. saying things. In medieval times, scales only had 6 -#. notes to avoid this problem - the hexachords.) -#. So, the d minor scale is d e f g a b-flat c-sharp d -#. - using d-flat for the leading note would skip the -#. name c and duplicate the name d. Why isn't c-sharp -#. put in the key signature? Tradition. (It's also -#. supposedly based on the Pythagorean theory of the -#. cycle of fifths, but that really only applies to -#. major scales...) Anyway, g minor is g a b-flat c d -#. e-flat f-sharp g, and all the other flat minor keys -#. end up with a natural leading note. And there you -#. have it. -#. John Sankey -#. -#. Let's also do a-minor: a b c d e f gis a -#. -#. --jcn -#. as -> gis -#. des -> cis -#. ges -> fis -#. g -> fisis -#. d -> cisis -#. a -> gisis -#. b -> ces -#. e -> fes -#. f -> eis -#. c -> bis -#. # FIXME: compile fix --jcn -#. TODO: move space -#. fis cis gis dis ais eis bis -#. bes es as des ges ces fes -#. urg, we should be sure that we're in a lyrics staff -#. all include ALL_NOTES_OFF -#. ugh, must set key while parsing -#. because Note init uses key -#. Better do Note.calc () at dump time? -#. last_lyric.clocks = t - last_time -#. hmm -#. urg, this will barf at meter changes -#. urg LilyPond doesn't start at c4, but -#. remembers from previous tracks! -#. reference_note = Note (clocks_per_4, 4*12, 0) -#. must be in \notes mode for parsing \skip -#: midi2ly.py:1002 +#: midi2ly.py:1001 #, python-format msgid "%s output to `%s'..." msgstr "" -#: midi2ly.py:1033 +#: midi2ly.py:1032 msgid "Example:" msgstr "" -#: midi2ly.py:1083 +#: midi2ly.py:1082 msgid "no files specified on command line." msgstr "" -#. !@PYTHON@ -#. mup2ly.py -- mup input converter -#. -#. source file of the GNU LilyPond music typesetter -#. -#. (c) 2001 -#. if set, LILYPONDPREFIX must take prevalence -#. if datadir is not set, we're doing a build and LILYPONDPREFIX #: mup2ly.py:70 msgid "Convert mup to LilyPond source." msgstr "" @@ -1105,140 +569,26 @@ msgstr "" msgid "only pre-process" msgstr "" -#. Duh. Python style portable: cp *.EXT OUTDIR -#. system ('cp *.%s %s' % (ext, outdir), 1) -#. Python < 1.5.2 compatibility -#. -#. On most platforms, this is equivalent to -#. `normpath(join(os.getcwd()), PATH)'. *Added in Python version 1.5.2* -#. if set, LILYPONDPREFIX must take prevalence -#. if datadir is not set, we're doing a build and LILYPONDPREFIX -#. ############################################################### -#. END Library -#. -#. PMX cut and paste -#. -#. if not self.entries: -#. #return '\n' -#. #ugh ugh -#. return '\n%s = {}\n\n' % self.idstring () -#. ugh -#. def set_clef (self, letter): -#. clstr = clef_table[letter] -#. self.voices[0].add_nonchord (Clef (clstr)) -#. urg -#. maybe use import copy? -#. for i in self.pitches: -#. ch.pitches.append (i) -#. for i in self.scripts: -#. ch.scripts.append (i) -#. http://www.arkkra.com/doc/uguide/contexts.html -#. #self.current_staffs = [] -#. duh -#. FIXME: 1? -#. FIXME: does key play any role in this? -#. ch = self.current_voices[0].last_chord () -#. ch.basic_duration = self.current_voices[0].last_chord ().basic_duration -#. ugh -#. ch = self.current_voices[0].last_chord () -#. `;' is not a separator, chords end with ';' -#. mup resets default duration and pitch each bar -#. ugh: these (and lots more) should also be parsed in -#. context staff. we should have a class Staff_properties -#. and parse/set all those. -#. shortcut: set to official mup maximum (duh) -#. self.set_staffs (40) -#: mup2ly.py:1076 +#: mup2ly.py:1075 #, python-format msgid "no such context: %s" msgstr "" -#. hmm -#. dig this: mup allows ifdefs inside macro bodies -#. don't do nested multi-line defines -#. duh: mup is strictly line-based, except for `define', -#. which is `@' terminated and may span several lines -#. don't define new macros in unactive areas -#. To support nested multi-line define's -#. process_function and macro_name, macro_body -#. should become lists (stacks) -#. The mup manual is undetermined on this -#. and I haven't seen examples doing it. -#. -#. don't do nested multi-line define's -#. writes to stdout for help2man -#. don't call -#. identify () -#. sys.stdout.flush () -#. handy emacs testing -#. if not files: -#. files = ['template.mup'] -#: mup2ly.py:1300 +#: mup2ly.py:1299 #, python-format msgid "Processing `%s'..." msgstr "" -#: mup2ly.py:1319 +#: mup2ly.py:1318 #, python-format msgid "Writing `%s'..." msgstr "" -#. duh -#. !@PYTHON@ -#. musedata = musedata.stanford.edu -#. musedata = COBOL for musicians. -#. TODO -#. -#. * clefs, -#. * keys, -#. * staffs, -#. * multiple voices (they use `Backspace' (shudder) -#. * tuplets -#. -#. -#. I completely forgot how this was supposed to work --hwn 5/2002 -#. -#. -#. uGUHGUHGHGUGH -#. musedata license (argh) -#. ignore sound & print -#. !@PYTHON@ -#. vim: set noexpandtab: -#. This is was the idea for handling of comments: -#. Multiline comments, @ignore .. @end ignore is scanned for -#. in read_doc_file, and the chunks are marked as 'ignore', so -#. lilypond-book will not touch them any more. The content of the -#. chunks are written to the output file. Also 'include' and 'input' -#. regex has to check if they are commented out. -#. -#. Then it is scanned for 'lilypond', 'lilypond-file' and 'lilypond-block'. -#. These three regex's has to check if they are on a commented line, -#. % for latex, @c for texinfo. -#. -#. Then lines that are commented out with % (latex) and @c (Texinfo) -#. are put into chunks marked 'ignore'. This cannot be done before -#. searching for the lilypond-blocks because % is also the comment character -#. for lilypond. -#. -#. The the rest of the rexeces are searched for. They don't have to test -#. if they are on a commented out line. -#. ############################################################### -#. Users of python modules should include this snippet -#. and customize variables below. -#. We'll suffer this path init stuff as long as we don't install our -#. python packages in /lib/pythonx.y (and don't kludge around -#. it as we do with teTeX on Red Hat Linux: set some environment var -#. (PYTHONPATH) in profile) -#. If set, LILYPONDPREFIX must take prevalence -#. if datadir is not set, we're doing a build and LILYPONDPREFIX -#. Customize these -#. if __name__ == '__main__': -#. lilylib globals #. # FIXME #. # do -P or -p by default? #. #help_summary = _ ("Run LilyPond using LaTeX for titling") #: old-lilypond-book.py:118 -msgid "Process LilyPond snippets in hybrid html, LaTeX or texinfo document" +msgid "Process LilyPond snippets in hybrid HTML, LaTeX or texinfo document" msgstr "" #: old-lilypond-book.py:124 old-lilypond-book.py:125 old-lilypond-book.py:127 @@ -1306,16 +656,6 @@ msgstr "" msgid "where to place generated files" msgstr "" -#. format specific strings, ie. regex-es for input, and % strings for output -#. global variables -#. lilypond_binary = 'valgrind --suppressions=/home/hanwen/usr/src/guile-1.6.supp --num-callers=10 /home/hanwen/usr/src/lilypond/lily/out/lilypond' -#. only use installed binary when we're installed too. -#. only use installed binary when we're installed too. -#. ############################################################### -#. Dimension handling for LaTeX. -#. -#. Ugh. (La)TeX writes progress and error messages on stdout -#. Redirect to stderr #: old-lilypond-book.py:227 msgid "LaTeX failed." msgstr "" @@ -1340,19 +680,13 @@ msgstr "" msgid "invalid argument `%s' to option `%s'" msgstr "" -#: warn.cc:25 -#, c-format -msgid "warning: %s\n" -msgstr "" - -#: warn.cc:31 +#: warn.cc:44 #, c-format -msgid "error: %s\n" +msgid "programming error: %s" msgstr "" -#: warn.cc:44 -#, c-format -msgid "programming error: %s (Continuing; crossing fingers)\n" +#: warn.cc:45 +msgid "Continuing; crossing fingers" msgstr "" #: accidental.cc:219 key-signature-interface.cc:139 @@ -1367,7 +701,7 @@ msgstr "" #: accidental-engraver.cc:194 #, c-format -msgid "unknown accidental typesetting: %s. Ignored" +msgid "ignoring unknown accidental: %s" msgstr "" #: accidental-engraver.cc:211 @@ -1391,37 +725,37 @@ msgid "does not match: `%s'" msgstr "" #: all-font-metrics.cc:107 -msgid "" -" Rebuild all .afm files, and remove all .pk and .tfm files.\n" -"Rerun with -V to show font paths.\n" +msgid "Rebuild all .afm files, and remove all .pk and .tfm files." msgstr "" -#: all-font-metrics.cc:108 -msgid "" -"A script for removing font-files is delivered with the source-code,\n" -"in buildscripts/clean-fonts.sh" +#: all-font-metrics.cc:109 +msgid "Rerun with -V to show font paths." +msgstr "" + +#: all-font-metrics.cc:111 +msgid "A script for removing font-files is delivered with the source-code:" msgstr "" -#: all-font-metrics.cc:188 +#: all-font-metrics.cc:192 #, c-format msgid "can't find font: `%s'" msgstr "" -#: all-font-metrics.cc:189 +#: all-font-metrics.cc:193 msgid "Loading default font" msgstr "" -#: all-font-metrics.cc:204 +#: all-font-metrics.cc:208 #, c-format msgid "can't find default font: `%s'" msgstr "" -#: all-font-metrics.cc:205 includable-lexer.cc:59 input-file-results.cc:218 +#: all-font-metrics.cc:209 includable-lexer.cc:59 input-file-results.cc:218 #, c-format msgid "(search path: `%s')" msgstr "" -#: all-font-metrics.cc:206 +#: all-font-metrics.cc:210 msgid "Giving up" msgstr "" @@ -1439,13 +773,11 @@ msgid "beam has less than two visible stems" msgstr "" #: beam.cc:156 -msgid "Beam has less than two stems. Removing beam." +msgid "removing beam with less than two stems" msgstr "" -#: beam.cc:1041 -msgid "" -"Not sure that we can find a nice beam slope (no viable initial configuration " -"found)." +#: beam.cc:1040 +msgid "no viable initial configuration found: may not find good beam slope" msgstr "" #: beam-engraver.cc:139 @@ -1579,8 +911,9 @@ msgstr "" msgid "Transposition by %s makes alteration larger than two" msgstr "" -#: event.cc:69 relative-octave-check.cc:25 -msgid "Failed octave check, got: " +#: event.cc:72 +#, c-format +msgid "octave check failed; expected %s, found: %s" msgstr "" #: event-chord-iterator.cc:56 output-property-music-iterator.cc:29 @@ -1640,7 +973,11 @@ msgstr "" msgid "Conflicting note group events." msgstr "" -#: hyphen-engraver.cc:96 hyphen-engraver.cc:110 +#: hyphen-engraver.cc:96 +msgid "removing unterminated hyphen" +msgstr "" + +#: hyphen-engraver.cc:110 msgid "unterminated hyphen; removing" msgstr "" @@ -1670,9 +1007,9 @@ msgstr "" msgid "FIXME: key change merge" msgstr "" -#: kpath.cc:76 +#: kpath.cc:75 #, c-format -msgid "Kpathsea couldn't find TFM file `%s'" +msgid "kpathsea can not find TFM file: `%s'" msgstr "" #: ligature-engraver.cc:152 @@ -1696,7 +1033,7 @@ msgid "unterminated ligature" msgstr "" #: ligature-engraver.cc:279 -msgid "ligature may not contain rest; ignoring rest" +msgid "ignoring rest: ligature may not contain rest" msgstr "" #: ligature-engraver.cc:280 @@ -1813,23 +1150,27 @@ msgid "Usage: %s [OPTIONS]... FILE..." msgstr "" #: main.cc:199 +#, c-format msgid "Typeset music and/or produce MIDI from FILE." msgstr "" #: main.cc:201 +#, c-format msgid "LilyPond produces beautiful music notation." msgstr "" #: main.cc:203 #, c-format -msgid "For more information, see %s," +msgid "For more information, see %s" msgstr "" #: main.cc:369 +#, c-format msgid "This option is for developers only." msgstr "" #: main.cc:370 +#, c-format msgid "Read the sources for more information." msgstr "" @@ -1876,7 +1217,8 @@ msgid "Experimental: temporarily fine tuning (of %d cents) a channel." msgstr "" #: midi-stream.cc:40 -msgid "Could not write file. Disk full?" +#, c-format +msgid "could not write file: `%s'" msgstr "" #: my-lily-lexer.cc:185 @@ -2002,9 +1344,13 @@ msgstr "" msgid "In quotation: junking event %s" msgstr "" -#: rest.cc:140 +#: relative-octave-check.cc:25 +msgid "Failed octave check, got: " +msgstr "" + +#: rest.cc:137 #, c-format -msgid "rest `%s' not found, " +msgid "rest `%s' not found" msgstr "" #: rest-collision.cc:145 @@ -2016,28 +1362,34 @@ msgid "too many colliding rests" msgstr "" #: scm-option.cc:52 +#, c-format msgid "lilypond -e EXPR means:" msgstr "" #: scm-option.cc:54 +#, c-format msgid " Evalute the Scheme EXPR before parsing any .ly files." msgstr "" #: scm-option.cc:56 +#, c-format msgid "" " Multiple -e options may be given, they will be evaluated sequentially." msgstr "" #: scm-option.cc:58 +#, c-format msgid "" " The function ly-set-option allows for access to some internal variables." msgstr "" #: scm-option.cc:60 -msgid "Usage: lilypond -e \"(ly-set-option SYMBOL VAL)\"" +#, c-format +msgid "Usage: lilypond-bin -e \"(ly-set-option SYMBOL VAL)\"" msgstr "" #: scm-option.cc:62 +#, c-format msgid "Where SYMBOL VAL pair is any of:" msgstr "" @@ -2105,9 +1457,9 @@ msgstr "" msgid "Huh? Got %d, expected %d characters" msgstr "" -#: spacing-spanner.cc:386 +#: spacing-spanner.cc:385 #, c-format -msgid "Global shortest duration is %s\n" +msgid "Global shortest duration is %s" msgstr "" #: spring-smob.cc:32 @@ -2149,7 +1501,7 @@ msgstr "" #: system.cc:335 #, c-format -msgid "Grob count %d " +msgid "Grob count %d" msgstr "" #: system.cc:349 @@ -2313,54 +1665,52 @@ msgstr "" msgid "Suspect duration found following this beam" msgstr "" -#: lexer.ll:183 +#: lexer.ll:184 #, c-format -msgid "" -"\n" -"Renamed input to `%s'\n" +msgid "input renamed to: `%s'" msgstr "" -#: lexer.ll:208 +#: lexer.ll:210 msgid "EOF found inside a comment" msgstr "" -#: lexer.ll:223 +#: lexer.ll:225 msgid "\\maininput not allowed outside init files" msgstr "" -#: lexer.ll:247 +#: lexer.ll:249 #, c-format msgid "wrong or undefined identifier: `%s'" msgstr "" #. backup rule -#: lexer.ll:256 +#: lexer.ll:258 msgid "Missing end quote" msgstr "" -#: lexer.ll:398 +#: lexer.ll:400 msgid "Brace found at end of lyric. Did you forget a space?" msgstr "" -#: lexer.ll:499 +#: lexer.ll:501 msgid "Brace found at end of markup. Did you forget a space?" msgstr "" -#: lexer.ll:582 +#: lexer.ll:584 #, c-format msgid "invalid character: `%c'" msgstr "" -#: lexer.ll:654 +#: lexer.ll:656 lexer.ll:657 #, c-format msgid "unknown escaped string: `\\%s'" msgstr "" -#: lexer.ll:752 +#: lexer.ll:754 lexer.ll:755 #, c-format msgid "Incorrect lilypond version: %s (%s, %s)" msgstr "" -#: lexer.ll:753 +#: lexer.ll:755 lexer.ll:756 msgid "Consider updating the input with the convert-ly script" msgstr "" diff --git a/po/nl.po b/po/nl.po index 065d8a9300..5236bc3fd2 100644 --- a/po/nl.po +++ b/po/nl.po @@ -1,5 +1,5 @@ # nl.po -- GNU LilyPond's dutch language file -# Copyright (C) 1998, 1999, 2000, 2001 Jan Nieuwenhuizen , Han-Wen Nienhuys . +# Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004 Jan Nieuwenhuizen , Han-Wen Nienhuys . # Jan Nieuwenhuizen , 1998. # Han-Wen Nienhuys , 1998. # @@ -9,9 +9,10 @@ # msgid "" msgstr "" -"Project-Id-Version: lilypond 1.4.6\n" -"POT-Creation-Date: 2003-07-18 14:45+0200\n" -"PO-Revision-Date: 2001-09-09 17:34+0200\n" +"Project-Id-Version: lilypond 2.1.36\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2004-03-31 16:05+0200\n" +"PO-Revision-Date: 2004-03-31 16:13+0200\n" "Last-Translator: Jan Nieuwenhuizen \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" @@ -23,945 +24,489 @@ msgstr "" "--add-comments --keyword=_\n" "Files: bow.cc int.cc\n" -#. this is where special info is often stored -#. ############################################################### -#. lilylib.py -- options and stuff -#. -#. source file of the GNU LilyPond music typesetter -#. -#. (c) 1998--2003 Han-Wen Nienhuys -#. Jan Nieuwenhuizen -#. ## subst:\(^\|[^._a-z]\)\(abspath\|identify\|warranty\|progress\|warning\|error\|exit\|getopt_args\|option_help_str\|options_help_str\|help\|setup_temp\|read_pipe\|system\|cleanup_temp\|strip_extension\|cp_to_dir\|mkdir_p\|init\) *( -#. ## replace:\1ly.\2 ( -#. ## subst: \(help_summary\|keep_temp_dir_p\|option_definitions\|original_dir\|program_name\|pseudo_filter_p\|temp_dir\|verbose_p\) -#. ############################################################### -#. Users of python modules should include this snippet -#. and customize variables below. -#. We'll suffer this path init stuff as long as we don't install our -#. python packages in /lib/pythonx.y (and don't kludge around -#. it as we do with teTeX on Red Hat Linux: set some environment var -#. (PYTHONPATH) in profile) -#. If set, LILYPONDPREFIX must take prevalence -#. if datadir is not set, we're doing a build and LILYPONDPREFIX -#. Customize these -#. lilylib globals #: lilylib.py:60 msgid "lilylib module" -msgstr "" +msgstr "lilylib module" -#: lilylib.py:63 lilypond-book.py:131 lilypond.py:128 midi2ly.py:100 -#: mup2ly.py:75 main.cc:111 +#: lilylib.py:63 lilypond-book.py:84 lilypond.py:127 midi2ly.py:100 +#: mup2ly.py:75 old-lilypond-book.py:129 main.cc:140 msgid "print this help" -msgstr "deze hulp" +msgstr "toon deze hulp" -#. ############################################################### -#. Handle bug in Python 1.6-2.1 -#. -#. there are recursion limits for some patterns in Python 1.6 til 2.1. -#. fix this by importing pre instead. Fix by Mats. -#. Attempt to fix problems with limited stack size set by Python! -#. Sets unlimited stack size. Note that the resource module only -#. is available on UNIX. -#: lilylib.py:114 midi2ly.py:136 mup2ly.py:130 main.cc:188 main.cc:200 -#, c-format, python-format +#: lilylib.py:110 midi2ly.py:136 mup2ly.py:130 +#, python-format msgid "Copyright (c) %s by" -msgstr "Copyright (c) %s " +msgstr "Copyright (c) %s" -#: lilylib.py:114 -msgid " 1998--2003" -msgstr "" - -#: lilylib.py:118 +#: lilylib.py:114 midi2ly.py:141 mup2ly.py:135 msgid "Distributed under terms of the GNU General Public License." -msgstr "" +msgstr "Verspreid onder de voorwaarden van de GNU General Public License." -#: lilylib.py:120 +#: lilylib.py:116 midi2ly.py:142 mup2ly.py:136 msgid "It comes with NO WARRANTY." -msgstr "" +msgstr "Er is GEEN GARANTIE." -#: lilylib.py:127 midi2ly.py:150 mup2ly.py:144 input.cc:88 -msgid "warning: " -msgstr "waarschuwing: " +#: lilylib.py:123 warn.cc:25 +#, c-format, python-format +msgid "warning: %s" +msgstr "waarschuwing: %s" -#. lots of midi files use plain text for lyric events -#. FIXME: read from stdin when files[0] = '-' -#: lilylib.py:130 midi2ly.py:165 midi2ly.py:1018 midi2ly.py:1083 mup2ly.py:147 -#: mup2ly.py:161 input.cc:93 -msgid "error: " -msgstr "fout: " +#: lilylib.py:126 warn.cc:31 +#, c-format, python-format +msgid "error: %s" +msgstr "fout: %s" -#: lilylib.py:134 -#, fuzzy, python-format +#: lilylib.py:130 +#, python-format msgid "Exiting (%d)..." -msgstr "Beëidigen ..." +msgstr "Afsluiten (%d)..." -#: lilylib.py:194 midi2ly.py:224 mup2ly.py:220 +#: lilylib.py:190 midi2ly.py:223 mup2ly.py:219 #, python-format msgid "Usage: %s [OPTIONS]... FILE" msgstr "Gebruik: %s [OPTIE]... BESTAND" -#: lilylib.py:198 midi2ly.py:228 mup2ly.py:224 main.cc:166 +#: lilylib.py:194 midi2ly.py:227 mup2ly.py:223 main.cc:205 +#, c-format msgid "Options:" msgstr "Opties:" -#: lilylib.py:202 midi2ly.py:232 mup2ly.py:228 main.cc:172 +#: lilylib.py:198 midi2ly.py:231 mup2ly.py:227 main.cc:209 #, c-format, python-format msgid "Report bugs to %s." msgstr "" "Meld luizen in het programma aan %s;\n" "meld onjuistheden in de vertaling aan of " -#: lilylib.py:228 -#, fuzzy, python-format +#: lilylib.py:218 +#, python-format +msgid "Binary %s has version %s, looking for version %s" +msgstr "Binair programma %s heeft versie %s, zocht naar versie %s" + +#: lilylib.py:252 +#, python-format msgid "Opening pipe `%s'" -msgstr "Schoonmaken van `%s'..." +msgstr "Openen van pijp `%s'..." -#. successful pipe close returns 'None' -#: lilylib.py:240 +#: lilylib.py:267 lilypond-book.py:767 #, python-format msgid "`%s' failed (%d)" -msgstr "" +msgstr "`%s' gefaald (%d)" -#: lilylib.py:242 lilylib.py:289 lilypond-book.py:231 lilypond.py:512 +#: lilylib.py:272 lilylib.py:331 lilypond-book.py:768 lilypond.py:530 +#: old-lilypond-book.py:228 msgid "The error log is as follows:" -msgstr "" +msgstr "De foutlog is als volgend:" -#: lilylib.py:262 midi2ly.py:260 mup2ly.py:256 +#: lilylib.py:303 midi2ly.py:259 mup2ly.py:255 #, python-format msgid "Invoking `%s'" -msgstr "Uitvoeren `%s'" +msgstr "Inroepen van `%s'" -#: lilylib.py:264 +#: lilylib.py:305 #, python-format msgid "Running %s..." -msgstr "Uitvoeren %s..." +msgstr "Draaien van %s..." -#: lilylib.py:282 +#: lilylib.py:324 #, python-format msgid "`%s' failed (%s)" -msgstr "" +msgstr "`%s' gefaald (%s)" -#: lilylib.py:285 midi2ly.py:266 mup2ly.py:264 +#: lilylib.py:327 midi2ly.py:265 mup2ly.py:263 msgid "(ignored)" msgstr "(genegeerd)" -#: lilylib.py:299 midi2ly.py:276 mup2ly.py:274 +#: lilylib.py:345 midi2ly.py:275 mup2ly.py:273 #, python-format msgid "Cleaning %s..." -msgstr "Schoonmaken %s..." +msgstr "Schoonmaken van %s..." -#. Duh. Python style portable: cp *.EXT OUTDIR -#. system ('cp *.%s %s' % (ext, outdir), 1) -#. Python < 1.5.2 compatibility -#. -#. On most platforms, this is equivalent to -#. `normpath(join(os.getcwd()), PATH)'. *Added in Python version 1.5.2* -#. tex needs lots of memory, more than it gets by default on Debian -#. TODO: * prevent multiple addition. -#. * clean TEXINPUTS, MFINPUTS, TFMFONTS, -#. as these take prevalence over $TEXMF -#. and thus may break tex run? -#. $TEXMF is special, previous value is already taken care of -#. # -sOutputFile does not work with bbox? -#. # todo: -#. # have better algorithm for deciding when to crop page, -#. # and when to show full page -#: lilylib.py:458 +#: lilylib.py:509 msgid "Removing output file" -msgstr "" +msgstr "Verwijderen van uitvoerbestand" -#. !@PYTHON@ -#. once upon a rainy monday afternoon. -#. -#. ... -#. -#. (not finished.) -#. ABC standard v1.6: http://www.gre.ac.uk/~c.walshaw/abc2mtex/abc.txt -#. -#. Enhancements (Roy R. Rankin) -#. -#. Header section moved to top of lilypond file -#. handle treble, treble-8, alto, and bass clef -#. Handle voices (V: headers) with clef and part names, multiple voices -#. Handle w: lyrics with multiple verses -#. Handle key mode names for minor, major, phrygian, ionian, locrian, aeolian, -#. mixolydian, lydian, dorian -#. Handle part names from V: header -#. Tuplets handling fixed up -#. Lines starting with |: not discarded as header lines -#. Multiple T: and C: header entries handled -#. Accidental maintained until next bar check -#. Silent rests supported -#. articulations fermata, upbow, downbow, ltoe, accent, tenuto supported -#. Chord strings([-^]"string") can contain a '#' -#. Header fields enclosed by [] in notes string processed -#. W: words output after tune as abc2ps does it (they failed before) -#. Enhancements (Laura Conrad) -#. -#. Barring now preserved between ABC and lilypond -#. the default placement for text in abc is above the staff. -#. %%LY now supported. -#. \breve and \longa supported. -#. M:none doesn't crash lily. -#. Limitations -#. -#. Multiple tunes in single file not supported -#. Blank T: header lines should write score and open a new score -#. Not all header fields supported -#. ABC line breaks are ignored -#. Block comments generate error and are ignored -#. Postscript commands are ignored -#. lyrics not resynchronized by line breaks (lyrics must fully match notes) -#. %%LY slyrics can't be directly before a w: line. -#. ??? -#. TODO: -#. -#. Convert to new chord styles. -#. -#. UNDEF -> None -#. -#. uGUHGUHGHGUGH -#. UGH -#. treble8 is used by abctab2ps; -8va is used by barfly, -#. and by my patch to abc2ps. If there's ever a standard -#. about this we'll support that. -#. find keywork -#. assume that Q takes the form "Q:1/4=120" -#. There are other possibilities, but they are deprecated -#. outf.write ("\t\t\\consists Staff_margin_engraver\n") -#. pitch manipulation. Tuples are (name, alteration). -#. 0 is (central) C. Alteration -1 is a flat, Alteration +1 is a sharp -#. pitch in semitones. -#. abc to lilypond key mode names -#. semitone shifts for key mode names -#. latex does not like naked #'s -#. latex does not like naked "'s -#. break lyrics to words and put "'s around words containing numbers and '"'s -#. escape " -#. _ causes probs inside "" -#. _ to ' _ ' -#. split words with - -#. unless \- -#. ~ to space('_') -#. * to to space -#. latex does not like naked #'s -#. put numbers and " and ( into quoted string -#. insure space between lines -#. title -#. strip trailing blanks -#. Meter -#. KEY -#. seperate clef info -#. there may or may not be a space -#. between the key letter and the mode -#. ugh. -#. ugh. -#. Notes -#. Origin -#. Reference Number -#. Area -#. History -#. Book -#. Composer -#. Default note length -#. Voice -#. Words -#. vocals -#. tempo -#. we use in this order specified accidental, active accidental for bar, -#. active accidental for key -#. (num / den) / defaultlen < 1/base -#. return (str, num,den,dots) -#. ignore slide -#. ignore roll -#. s7m2 input doesnt care about spaces -#. -#. remember accidental for rest of bar -#. -#. get accidental set in this bar or UNDEF if not set -#. WAT IS ABC EEN ONTZETTENDE PROGRAMMEERPOEP ! -#. failed; not a note! -#. escape '#'s -#. -#. |] thin-thick double bar line -#. || thin-thin double bar line -#. [| thick-thin double bar line -#. :| left repeat -#. |: right repeat -#. :: left-right repeat -#. |1 volta 1 -#. |2 volta 2 -#. first try the longer one -#. bracket escape -#. the nobarlines option is necessary for an abc to lilypond translator for -#. exactly the same reason abc2midi needs it: abc requires the user to enter -#. the note that will be printed, and MIDI and lilypond expect entry of the -#. pitch that will be played. -#. -#. In standard 19th century musical notation, the algorithm for translating -#. between printed note and pitch involves using the barlines to determine -#. the scope of the accidentals. -#. -#. Since ABC is frequently used for music in styles that do not use this -#. convention, such as most music written before 1700, or ethnic music in -#. non-western scales, it is necessary to be able to tell a translator that -#. the barlines should not affect its interpretation of the pitch. -#. write other kinds of appending if we ever need them. -#. add comments to current voice -#. Try nibbling characters off until the line doesn't change. -#. dump_global (outf) -#. !@PYTHON@ -#. -#. convert-ly.py -- Update old LilyPond input files (fix name?) -#. -#. source file of the GNU LilyPond music typesetter -#. -#. (c) 1998--2003 Han-Wen Nienhuys -#. Jan Nieuwenhuizen -#. TODO -#. use -f and -t for -s output -#. NEWS -#. 0.2 -#. - rewrite in python -#. Did we ever have \mudela-version? I doubt it. -#. lilypond_version_re_str = '\\\\version *\"(.*)\"' -#. ########################### -#. need new a namespace -#. raise FatalConversionError() -#. need new a namespace -#. harmful to current .lys -#. str = re.sub ('\\\\key([^;]+);', '\\\\accidentals \\1;', str) -#. raise FatalConversionError() -#. raise FatalConversionError() -#. raise FatalConversionError() -#. TODO: lots of other syntax change should be done here as well -#. Ugh, but meaning of \stemup changed too -#. maybe we should do \stemup -> \stemUp\slurUp\tieUp ? -#. I don't know exactly when these happened... -#. ugh, we loose context setting here... -#. (lacks capitalisation slur -> Slur) -#. # dynamic.. -#. TODO: add lots of these -#. ugh -#. old fix -#. Make sure groups of more than one ; have space before -#. them, so that non of them gets removed by next rule -#. Only remove ; that are not after spaces, # or ; -#. Otherwise we interfere with Scheme comments, -#. which is badbadbad. -#. 40 ? -#. ############################### -#. END OF CONVERSIONS -#. ############################### -#. !@PYTHON@ -#. info mostly taken from looking at files. See also -#. http://lilypond.org/wiki/?EnigmaTransportFormat -#. This supports -#. -#. * notes -#. * rests -#. * ties -#. * slurs -#. * lyrics -#. * articulation -#. * grace notes -#. * tuplets -#. -#. todo: -#. * slur/stem directions -#. * voices (2nd half of frame?) -#. * more intelligent lyrics -#. * beams (better use autobeam?) -#. * more robust: try entertainer.etf (freenote) -#. * dynamics -#. * empty measures (eg. twopt03.etf from freenote) -#. -#. uGUHGUHGHGUGH -#. notename 0 == central C -#. represent pitches as (notename, alteration), relative to C-major scale -#. a fifth up -#. should cache this. -#. flag1 isn't all that interesting. -#. 3: '>', -#. 18: '\arpeggio' , -#. do grace notes. -#. ugh. -#. we don't attempt voltas since they fail easily. -#. and g.repeat_bar == '|:' or g.repeat_bar == ':|:' or g.bracket: -#. 4 layers. -#. let's not do this: this really confuses when eE happens to be before a ^text. -#. if last_tag and last_indices: -#. etf_file_dict[last_tag][last_indices].append (l) -#. # do it -#. staff-spec -#. should use \addlyrics ? -#. !@PYTHON@ -#. vim: set noexpandtab: -#. This is was the idea for handling of comments: -#. Multiline comments, @ignore .. @end ignore is scanned for -#. in read_doc_file, and the chunks are marked as 'ignore', so -#. lilypond-book will not touch them any more. The content of the -#. chunks are written to the output file. Also 'include' and 'input' -#. regex has to check if they are commented out. -#. -#. Then it is scanned for 'lilypond', 'lilypond-file' and 'lilypond-block'. -#. These three regex's has to check if they are on a commented line, -#. % for latex, @c for texinfo. -#. -#. Then lines that are commented out with % (latex) and @c (Texinfo) -#. are put into chunks marked 'ignore'. This cannot be done before -#. searching for the lilypond-blocks because % is also the comment character -#. for lilypond. -#. -#. The the rest of the rexeces are searched for. They don't have to test -#. if they are on a commented out line. -#. ############################################################### -#. Users of python modules should include this snippet -#. and customize variables below. -#. We'll suffer this path init stuff as long as we don't install our -#. python packages in /lib/pythonx.y (and don't kludge around -#. it as we do with teTeX on Red Hat Linux: set some environment var -#. (PYTHONPATH) in profile) -#. If set, LILYPONDPREFIX must take prevalence -#. if datadir is not set, we're doing a build and LILYPONDPREFIX -#. Customize these -#. if __name__ == '__main__': -#. lilylib globals -#. temp_dir = os.path.join (original_dir, '%s.dir' % program_name) -#. urg -#. # FIXME -#. # do -P or -p by default? -#. #help_summary = _ ("Run LilyPond using LaTeX for titling") -#: lilypond-book.py:120 -msgid "Process LilyPond snippets in hybrid html, LaTeX or texinfo document" +#: lilypond-book.py:69 +msgid "" +"Process LilyPond snippets in hybrid HTML, LaTeX or texinfo document.\n" +"Example usage:\n" +"\n" +" lilypond-book --filter=\"tr '[a-z]' '[A-Z]'\" BOOK\n" +" lilypond-book --filter=\"convert-ly --no-version --from=2.0.0 -\" BOOK\n" +" lilypond-book --process='lilypond-bin -I include' BOOK\n" +"\n" msgstr "" +"Verwerk LilyPond snippers in hybride HTML, LaTeX of texinfo dokument.\n" +"Gebruiksvoorbeeld:\n" +" lilypond-book --filter=\\\"tr '[a-z]' '[A-Z]'\\\" BOEK\\n\"\n" +" lilypond-book --filter=\\\"convert-ly --no-version --from=2.0.0 -\\\" BOEK" +"\\n\n" +" lilypond-book --process='lilypond-bin -I invoeging' BOEK\\n\"\n" -#. another bug in option parser: --output=foe is taken as an abbreviation -#. for --output-format -#: lilypond-book.py:125 main.cc:110 +#. Bug in option parser: --output=foe is taken as an abbreviation +#. for --output-format. +#: lilypond-book.py:82 old-lilypond-book.py:123 main.cc:139 msgid "EXT" msgstr "EXT" -#: lilypond-book.py:125 -#, fuzzy +#: lilypond-book.py:82 old-lilypond-book.py:123 msgid "use output format EXT (texi [default], texi-html, latex, html)" -msgstr "gebruik uitvoer formaat EXT (scm, ps, tex of as)" +msgstr "gebruik uitvoerformaat EXT (texi [standaard], texi-html, latex, html)" -#: lilypond-book.py:126 lilypond-book.py:127 lilypond-book.py:129 -#: lilypond-book.py:130 -#, fuzzy -msgid "DIM" -msgstr "DIR" +#: lilypond-book.py:83 +msgid "FILTER" +msgstr "FILTER" -#: lilypond-book.py:126 -msgid "default fontsize for music. DIM is assumed to be in points" -msgstr "" +#: lilypond-book.py:83 +msgid "pipe snippets through FILTER [convert-ly -n -]" +msgstr "pijp snippers door FILTER [convert-ly -n -]" -#: lilypond-book.py:127 -msgid "deprecated, use --default-music-fontsize" -msgstr "" +#: lilypond-book.py:85 lilypond-book.py:87 lilypond.py:131 +#: old-lilypond-book.py:130 main.cc:142 main.cc:147 +msgid "DIR" +msgstr "MAP" -#: lilypond-book.py:128 -msgid "OPT" -msgstr "" +#: lilypond-book.py:85 +msgid "add DIR to include path" +msgstr "voeg MAP toe aan zoekpad" -#: lilypond-book.py:128 -msgid "pass OPT quoted to the lilypond command line" -msgstr "" +#: lilypond-book.py:86 +msgid "COMMAND" +msgstr "OPDRACHT" -#: lilypond-book.py:129 -msgid "force fontsize for all inline lilypond. DIM is assumed be to in points" -msgstr "" +#: lilypond-book.py:86 +msgid "process ly_files using COMMAND FILE..." +msgstr "verwerk ly_bestanden met OPDRACHT BESTAND..." -#: lilypond-book.py:130 -msgid "deprecated, use --force-music-fontsize" -msgstr "" +#: lilypond-book.py:87 +msgid "write output to DIR" +msgstr "schrijf uitvoer naar MAP" -#: lilypond-book.py:132 lilypond.py:130 main.cc:113 main.cc:118 -msgid "DIR" -msgstr "DIR" +#: lilypond-book.py:88 lilypond.py:149 midi2ly.py:105 mup2ly.py:78 +#: old-lilypond-book.py:140 main.cc:150 +msgid "be verbose" +msgstr "wees breedsprakig" -#: lilypond-book.py:132 -msgid "include path" -msgstr "" +#: lilypond-book.py:89 old-lilypond-book.py:141 +msgid "print version information" +msgstr "toon versieinformatie" -#: lilypond-book.py:133 -#, fuzzy -msgid "write dependencies" -msgstr "voeg DIR voor aan afhankelijkheden" +#: lilypond-book.py:90 lilypond.py:151 midi2ly.py:107 mup2ly.py:80 +#: old-lilypond-book.py:142 main.cc:151 +msgid "show warranty and copyright" +msgstr "toon garantie en auteursrechten" -#: lilypond-book.py:134 -msgid "PREF" -msgstr "" +#: lilypond-book.py:373 +#, python-format +msgid "deprecated ly-option used: %s" +msgstr "verouderde ly-optie gebruikt: %s" -#: lilypond-book.py:134 -#, fuzzy -msgid "prepend PREF before each -M dependency" -msgstr "voeg DIR voor aan afhankelijkheden" +#: lilypond-book.py:374 +#, python-format +msgid "compatibility mode translation: %s" +msgstr "compatibiliteitsmodus vertaling: %s" -#: lilypond-book.py:135 -#, fuzzy -msgid "don't run lilypond" -msgstr "draai LilyPond niet" +#: lilypond-book.py:394 +#, python-format +msgid "ignoring unknown ly option: %s" +msgstr "negeren van onbekende ly optie: %s" -#: lilypond-book.py:136 -msgid "don't generate pictures" -msgstr "" +#: lilypond-book.py:448 +#, python-format +msgid "file not found: %s" +msgstr "bestand niet gevonden: %s" -#: lilypond-book.py:137 -msgid "strip all lilypond blocks from output" -msgstr "" +#: lilypond-book.py:750 +#, python-format +msgid "Opening filter `%s'" +msgstr "Open filter `%s'" -#: lilypond-book.py:138 lilypond-book.py:139 lilypond.py:135 lilypond.py:136 -#: midi2ly.py:102 main.cc:114 main.cc:117 -msgid "FILE" -msgstr "BESTAND" +#: lilypond-book.py:862 +#, python-format +msgid "cannot determine format for: %s" +msgstr "kan formaat niet bepalen voor: %s" -#: lilypond-book.py:138 -msgid "filename main output file" -msgstr "" +#: lilypond-book.py:903 +msgid "Output would overwrite input file; use --output." +msgstr "Uitvoer zou invoerbestand overschrijven; gebruik --output." -#: lilypond-book.py:139 -msgid "where to place generated files" -msgstr "" +#: lilypond-book.py:910 +#, python-format +msgid "Reading %s..." +msgstr "Lezen %s..." -#: lilypond-book.py:140 lilypond.py:137 -msgid "RES" -msgstr "" +#: lilypond-book.py:924 +msgid "Dissecting..." +msgstr "Ontleden..." -#: lilypond-book.py:141 lilypond.py:138 -msgid "set the resolution of the preview to RES" -msgstr "" +#: lilypond-book.py:952 +msgid "Writing snippets..." +msgstr "Schrijven van snippers..." -#: lilypond-book.py:142 lilypond.py:148 midi2ly.py:105 mup2ly.py:78 main.cc:126 -msgid "be verbose" -msgstr "wees breedsprakig" +#: lilypond-book.py:957 +msgid "Processing..." +msgstr "Verwerken..." -#: lilypond-book.py:143 -#, fuzzy -msgid "print version information" -msgstr "druk versienummer af" +#: lilypond-book.py:960 +msgid "All snippets are up to date..." +msgstr "Alle snippers zijn actueel..." -#: lilypond-book.py:144 lilypond.py:150 midi2ly.py:107 mup2ly.py:80 main.cc:127 -msgid "show warranty and copyright" -msgstr "toon garantie en auteursrechten" +#: lilypond-book.py:963 +#, python-format +msgid "Compiling %s..." +msgstr "Samenstellen %s..." -#. format specific strings, ie. regex-es for input, and % strings for output -#. global variables -#. lilypond_binary = 'valgrind --suppressions=/home/hanwen/usr/src/guile-1.6.supp --num-callers=10 /home/hanwen/usr/src/lilypond/lily/out/lilypond' -#. only use installed binary when we're installed too. -#. only use installed binary when we're installed too. -#. ############################################################### -#. Dimension handling for LaTeX. -#. -#. Ugh. (La)TeX writes progress and error messages on stdout -#. Redirect to stderr -#: lilypond-book.py:230 -msgid "LaTeX failed." -msgstr "" +#: lilypond-book.py:971 +#, python-format +msgid "Processing include: %s" +msgstr "Verwerken van invoegsel: %s" -#. URG see lilypond -#. Convert numeric values, with or without specific dimension, to floats. -#. Keep other strings -#. ############################################################### -#. How to output various structures. -#. # maybe
? -#. Verbatim text is always finished with \n. FIXME: For HTML, -#. this newline should be removed. -#. Verbatim text is always finished with \n. FIXME: For HTML, -#. this newline should be removed. -#. # Ugh we need to differentiate on origin: -#. # lilypond-block origin wants an extra

, but -#. # inline music doesn't. -#. # possibly other center options? -#. verbatim text is always finished with \n -#. verbatim text is always finished with \n -#. verbatim text is always finished with \n -#. verbatim text is always finished with \n -#. do some tweaking: @ is needed in some ps stuff. -#. -#. ugh, the

below breaks inline images... -#. clumsy workaround for python 2.2 pre bug. -#. ############################################################### -#. Recognize special sequences in the input -#. Warning: This uses extended regular expressions. Tread with care. -#. -#. legenda -#. -#. (?Pregex) -- assign result of REGEX to NAME -#. *? -- match non-greedily. -#. (?m) -- multiline regex: make ^ and $ match at each line -#. (?s) -- make the dot match all characters including newline -#. why do we have distinction between @mbinclude and @include? -#. # we'd like to catch and reraise a more -#. # detailed error, but alas, the exceptions -#. # changed across the 1.5/2.1 boundary. -#. ughUGH not original options -#. First we want to scan the \documentclass line -#. it should be the first non-comment line. -#. The only thing we really need to know about the \documentclass line -#. is if there are one or two columns to begin with. -#. Then we add everything before \begin{document} to -#. paperguru.m_document_preamble so that we can later write this header -#. to a temporary file in find_latex_dims() to find textwidth. -#. this is not bulletproof..., it checks the first 10 chunks -#. newchunks.extend (func (m)) -#. python 1.5 compatible: -#. we have to check for verbatim before doing include, -#. because we don't want to include files that are mentioned -#. inside a verbatim environment -#. ugh fix input -#. # Hmm, we should hash only lilypond source, and skip the -#. # %options are ... -#. # comment line -#. # todo: include path, but strip -#. # first part of the path. -#. format == 'html' -#. ugh rename -#. Count sections/chapters. -#. # TODO: do something like -#. # this for texinfo/latex as well ? -#. ugh -#. fixme: be sys-independent. -#. -#. Ugh, fixing up dependencies for .tex generation -#. -#. Ugh. (La)TeX writes progress and error messages on stdout -#. Redirect to stderr -#. # There used to be code to write .tex dependencies, but -#. # that is silly: lilypond-book has its own dependency scheme -#. # to ensure that all lily-XXX.tex files are there -#. # TODO: put file name in front of texidoc. -#. # -#. # what's this? Docme --hwn -#. # -#. #docme: why global? -#. Do It. -#. should chmod -w -#: lilypond-book.py:1557 lilypond.py:673 midi2ly.py:1018 +#: lilypond-book.py:987 lilypond.py:693 midi2ly.py:1017 +#: old-lilypond-book.py:1570 #, python-format msgid "getopt says: `%s'" msgstr "getopt zegt: `%s'" -#. HACK -#. status = os.system ('lilypond -w') -#: lilypond-book.py:1630 lilypond.py:777 -#, fuzzy -msgid "no files specified on command line" -msgstr "geen bestanden gespecificeerd op de commandoregel." - -#. -#. Petr, ik zou willen dat ik iets zinvoller deed, -#. maar wat ik kan ik doen, het verandert toch niets? -#. --hwn 20/aug/99 -#. !@PYTHON@ -#. -#. lilypond.py -- Run LilyPond, add titles to bare score, generate printable -#. document -#. Invokes: lilypond, latex (or pdflatex), dvips, ps2pdf, gs -#. -#. source file of the GNU LilyPond music typesetter -#. -#. (c) 1998--2003 Han-Wen Nienhuys -#. Jan Nieuwenhuizen -#. This is the third incarnation of lilypond. -#. -#. Earlier incarnations of lilypond were written by -#. Jeffrey B. Reed (Python version) -#. Jan Arne Fagertun (Bourne shell script) -#. -#. Note: gettext work best if we use ' for docstrings and " -#. for gettextable strings. -#. --> DO NOT USE ''' for docstrings. -#. ############################################################### -#. Users of python modules should include this snippet -#. and customize variables below. -#. We'll suffer this path init stuff as long as we don't install our -#. python packages in /lib/pythonx.y (and don't kludge around -#. it as we do with teTeX on Red Hat Linux: set some environment var -#. (PYTHONPATH) in profile) -#. If set, LILYPONDPREFIX must take prevalence -#. if datadir is not set, we're doing a build and LILYPONDPREFIX -#. Customize these -#. if __name__ == '__main__': -#. lilylib globals #. # FIXME #. # do -P or -p by default? #. #help_summary = _ ("Run LilyPond using LaTeX for titling") -#: lilypond.py:121 +#: lilypond.py:120 msgid "Run LilyPond, add titles, generate printable document." -msgstr "" +msgstr "Draai LilyPond, voeg titels toe, genereer af te drukken dokument." -#: lilypond.py:127 main.cc:115 +#: lilypond.py:126 msgid "write Makefile dependencies for every input file" msgstr "schrijf Makefile afhankelijkheden voor elk invoerbestand" -#: lilypond.py:129 +#: lilypond.py:128 msgid "print even more output" -msgstr "" +msgstr "toon nog meer uitvoer" + +#: lilypond.py:129 lilypond.py:136 midi2ly.py:102 old-lilypond-book.py:136 +#: old-lilypond-book.py:137 main.cc:143 main.cc:146 +msgid "FILE" +msgstr "BESTAND" + +#: lilypond.py:129 +msgid "find pfa fonts used in FILE" +msgstr "zoek pfa fonts gebruikt in BESTAND" #: lilypond.py:130 +msgid "make HTML file with links to all output" +msgstr "maak HTML bestand met koppelingen naar alle uitvoer" + +#: lilypond.py:131 msgid "add DIR to LilyPond's search path" msgstr "voeg DIR toe aan LilyPonds zoekpad" -#: lilypond.py:132 -#, fuzzy, python-format +#: lilypond.py:133 +#, python-format msgid "keep all output, output to directory %s.dir" -msgstr "bewaar alle uitvoer, en noem de directory %s.dir" +msgstr "bewaar alle uitvoer, schrijf naar map %s.dir" -#: lilypond.py:133 +#: lilypond.py:134 msgid "don't run LilyPond" msgstr "draai LilyPond niet" -#: lilypond.py:134 main.cc:116 +#: lilypond.py:135 main.cc:145 msgid "produce MIDI output only" msgstr "produceer alleen MIDI uitvoer" -#: lilypond.py:135 midi2ly.py:102 +#: lilypond.py:136 midi2ly.py:102 mup2ly.py:76 main.cc:146 msgid "write output to FILE" msgstr "schrijf uitvoer naar BESTAND" -#: lilypond.py:136 -msgid "find pfa fonts used in FILE" -msgstr "zoek pfa fonts gebruikt in BESTAND" +#: lilypond.py:137 old-lilypond-book.py:138 +msgid "RES" +msgstr "RES" + +#: lilypond.py:138 old-lilypond-book.py:139 +msgid "set the resolution of the preview to RES" +msgstr "zet de resolutie voor het testbeeld op RES" #: lilypond.py:139 -msgid "generate PostScript output" -msgstr "genereer PostScipt uitvoer" +msgid "do not generate PDF output" +msgstr "genereer geen PDF uitvoer" #: lilypond.py:140 -msgid "generate PNG page images" -msgstr "" +msgid "do not generate PostScript output" +msgstr "genereer geen PostScipt uitvoer" #: lilypond.py:141 -#, fuzzy -msgid "generate PS.GZ" -msgstr "genereer PostScipt uitvoer" +msgid "generate PDF output" +msgstr "genereer PDF uitvoer" #: lilypond.py:142 -#, fuzzy -msgid "generate PDF output" +msgid "generate PostScript output" msgstr "genereer PostScipt uitvoer" #: lilypond.py:143 -msgid "use pdflatex to generate a PDF output" -msgstr "" +msgid "use pdflatex to generate PDF output" +msgstr "gebruik pdflatex voor het genereren van PDF uitvoer" + +#: lilypond.py:144 +msgid "generate PNG page images" +msgstr "genereer PNG bladzijde afbeeldingen" -#. FIXME: preview, picture; to indicate creation of a PNG? #: lilypond.py:145 msgid "make a picture of the first system" -msgstr "" +msgstr "maak een afbeelding van het eerste systeem" #: lilypond.py:146 -msgid "make HTML file with links to all output" -msgstr "" +msgid "generate PS.GZ" +msgstr "genereer PS.GZ" #: lilypond.py:147 +msgid "run in safe-mode" +msgstr "draai in veilige modus" + +#: lilypond.py:148 msgid "KEY=VAL" msgstr "SEUTEL=WAARDE" -#: lilypond.py:147 +#: lilypond.py:148 msgid "change global setting KEY to VAL" msgstr "verander globale instelling SLEUTEL in WAARDE" -#: lilypond.py:149 midi2ly.py:106 mup2ly.py:79 main.cc:125 +#: lilypond.py:150 midi2ly.py:106 mup2ly.py:79 main.cc:149 msgid "print version number" msgstr "druk versienummer af" -#. other globals -#. Pdftex support -#. # yuk. -#. lilypond_binary = 'valgrind --suppressions=%(home)s/usr/src/guile-1.6.supp --num-callers=10 %(home)s/usr/src/lilypond/lily/out/lilypond '% { 'home' : '/home/hanwen' } -#. only use installed binary when we're installed too. -#. init to empty; values here take precedence over values in the file -#. # TODO: change name. -#. for geometry v3 -#. Output formats that lilypond should create -#. what a name. -#. ly.warning (_ ("invalid value: %s") % `val`) -#. ly.warning (_ ("invalid value: %s") % `val`) -#: lilypond.py:232 -#, fuzzy, python-format +#: lilypond.py:234 +#, python-format msgid "no such setting: `%s'" -msgstr "geen dergelijke instelling: %s" +msgstr "onbekende instelling: %s" -#. 2 == user interrupt. -#: lilypond.py:274 +#: lilypond.py:284 #, python-format msgid "LilyPond crashed (signal %d)." -msgstr "" +msgstr "LilyPond is ingestort (signaal %s)." -#: lilypond.py:275 +#: lilypond.py:285 msgid "Please submit a bug report to bug-lilypond@gnu.org" -msgstr "" +msgstr "Stuur alstublieft een foutrapportage naar bug-lilypond@gnu.org" -#: lilypond.py:281 +#: lilypond.py:291 #, python-format msgid "LilyPond failed on input file %s (exit status %d)" -msgstr "" +msgstr "LilyPond heeft gefaald op invoerbestand %s (afsluitstatus %d)" -#: lilypond.py:284 +#: lilypond.py:294 #, python-format msgid "LilyPond failed on an input file (exit status %d)" -msgstr "" +msgstr "LilyPond heeft gefaald op een invoerbestand (afsluitstatus %d)" -#: lilypond.py:285 -#, fuzzy +#: lilypond.py:295 msgid "Continuing..." -msgstr "Uitvoeren %s..." +msgstr "Doorgaan..." -#. urg -#: lilypond.py:296 +#: lilypond.py:306 #, python-format msgid "Analyzing %s..." -msgstr "Analyseer %s..." +msgstr "Analyseren van %s..." -#. search only the first 10k -#: lilypond.py:354 -#, fuzzy, python-format +#: lilypond.py:364 +#, python-format msgid "no LilyPond output found for `%s'" -msgstr "geen lilypond uitvoer gevonden voor %s" +msgstr "geen LilyPond uitvoer gevonden voor `%s'" -#. The final \n seems important here. It ensures that the footers and taglines end up on the right page. -#. TODO: should set textheight (enlarge) depending on papersize. -#: lilypond.py:397 -#, fuzzy, python-format +#: lilypond.py:431 +#, python-format msgid "invalid value: `%s'" -msgstr "ongeldige waarde: %s" +msgstr "ongeldige waarde: `%s'" -#. set sane geometry width (a4-width) for linewidth = -1. -#. who the hell is 597 ? -#. Ugh. (La)TeX writes progress and error messages on stdout -#. Redirect to stderr -#: lilypond.py:511 +#: lilypond.py:529 msgid "LaTeX failed on the output file." -msgstr "" +msgstr "LaTeX heeft gefaald op het uitvoerbestand." -#. make a preview by rendering only the 1st line -#. of each score -#: lilypond.py:568 +#: lilypond.py:586 msgid "" "Trying create PDF, but no PFA fonts found.\n" "Using bitmap fonts instead. This will look bad." msgstr "" +"Probeer PDF te maken, maar geeen PFA fonts gevonden.\n" +"Gebruik dan maar bitmap fonts. Dit gaat er niet uitzien." -#. ugh. Different targets? -#. Added as functionality to lilypond, because lilypond may well need to do this -#. in future too. #. no ps header? -#: lilypond.py:615 +#: lilypond.py:635 #, python-format msgid "not a PostScript file: `%s'" msgstr "geen PostScript bestand: `%s'" -#. todo -#: lilypond.py:660 -#, fuzzy, python-format +#: lilypond.py:680 +#, python-format msgid "Writing HTML menu `%s'" -msgstr "Schrijven van `%s'..." +msgstr "Schrijven van HTML menu `%s'" -#. signal programming error -#. Don't convert input files to abspath, rather prepend '.' to include -#. path. -#. As a neat trick, add directory part of first input file -#. to include path. That way you can do without the clumsy -I in: -#. lilypond -I foe/bar/baz foo/bar/baz/baz.ly -#: lilypond.py:769 +#: lilypond.py:800 msgid "pseudo filter" -msgstr "" +msgstr "pseudo filter" -#: lilypond.py:772 +#: lilypond.py:803 msgid "pseudo filter only for single input file" -msgstr "" +msgstr "pseudo filter alleen voor enkel invoerbestand" + +#: lilypond.py:808 old-lilypond-book.py:1643 +msgid "no files specified on command line" +msgstr "geen bestanden gespecificeerd op de opdrachtregel" -#. Ugh, maybe make a setup () function -#. hmmm. Wish I'd 've written comments when I wrote this. -#. now it looks complicated. -#: lilypond.py:806 -#, fuzzy, python-format +#: lilypond.py:840 +#, python-format msgid "filename should not contain spaces: `%s'" -msgstr "Bevat reeds: `%s'" - -#. to be sure, add tmpdir *in front* of inclusion path. -#. os.environ['TEXINPUTS'] = tmpdir + ':' + os.environ['TEXINPUTS'] -#. We catch all exceptions, because we need to do stuff at exit: -#. * copy any successfully generated stuff from tempdir and -#. notify user of that -#. * cleanout tempdir -#. ## ARGH. This also catches python programming errors. -#. ## this should only catch lilypond nonzero exit status -#. ## --hwn -#. TODO: friendly message about LilyPond setup/failing? -#. -#: lilypond.py:845 +msgstr "bestandsnaam mag geen spaties bevatten: `%s'" + +#: lilypond.py:880 msgid "Running LilyPond failed. Rerun with --verbose for a trace." msgstr "" +"Draaien van LilyPond gefaald. Draai opniew met --verbose voor een foutpad." -#. Our LilyPond pseudo filter always outputs to 'lelie' -#. have subsequent stages and use 'lelie' output. -#. unless: add --tex, or --latex? -#. TODO: friendly message about TeX/LaTeX setup, -#. trying to run tex/latex by hand -#: lilypond.py:886 +#: lilypond.py:921 msgid "Failed to make PS file. Rerun with --verbose for a trace." msgstr "" +"Gefaald in het maken van een PS bestand. Draai opniew met --verbose voor " +"een foutpad." -#. unless: add --tex, or --latex? -#. TODO: friendly message about TeX/LaTeX setup, -#. trying to run tex/latex by hand -#: lilypond.py:916 -msgid "Running LaTeX falied. Rerun with --verbose for a trace." +#: lilypond.py:951 +msgid "Running LaTeX failed. Rerun with --verbose for a trace." msgstr "" +"Draaien van LaTeX gefaald. Draai opniew met --verbose voor een foutpad." -#. add DEP to targets? -#: lilypond.py:926 input-file-results.cc:68 +#: lilypond.py:963 input-file-results.cc:74 #, c-format, python-format msgid "dependencies output to `%s'..." msgstr "afhankelijkheden uitvoer naar `%s'..." -#: lilypond.py:937 -#, fuzzy, python-format +#: lilypond.py:974 +#, python-format msgid "%s output to ..." -msgstr "%s uitvoer naar `%s'..." +msgstr "%s uitvoer naar ..." -#: lilypond.py:942 lilypond.py:968 includable-lexer.cc:57 -#: input-file-results.cc:191 input-file-results.cc:197 lily-guile.cc:86 +#: lilypond.py:979 includable-lexer.cc:57 input-file-results.cc:217 +#: input-file-results.cc:224 lily-guile.cc:86 #, c-format, python-format msgid "can't find file: `%s'" msgstr "kan bestand niet vinden: `%s'" -#. Hmm, if this were a function, we could call it the except: clauses -#: lilypond.py:965 -#, fuzzy, python-format +#: lilypond.py:1002 +#, python-format msgid "%s output to %s..." -msgstr "%s uitvoer naar `%s'..." +msgstr "%s uitvoer naar %s..." + +#: lilypond.py:1005 +#, python-format +msgid "can't find file: `%s.%s'" +msgstr "kan bestand niet vinden: `%s.%s'" -#. !@PYTHON@ -#. -#. midi2ly.py -- LilyPond midi import script -#. -#. source file of the GNU LilyPond music typesetter -#. -#. (c) 1998--2003 Han-Wen Nienhuys -#. Jan Nieuwenhuizen -#. ############################################################### -#. Users of python modules should include this snippet. -#. -#. This soon to be removed for: import lilypond.lilylib as ly -#. ############################################################### -#. ############################################################### -#. ############### CONSTANTS -#. ############################################################### #. temp_dir = os.path.join (original_dir, '%s.dir' % program_name) #. original_dir = os.getcwd () #. keep_temp_dir_p = 0 #: midi2ly.py:94 msgid "Convert MIDI to LilyPond source." -msgstr "" +msgstr "Converteer MIDI naar LilyPond broncode." #: midi2ly.py:97 msgid "print absolute pitches" -msgstr "" +msgstr "schrijf absolute toonhoogten" #: midi2ly.py:98 midi2ly.py:103 msgid "DUR" @@ -969,138 +514,70 @@ msgstr "DUUR" #: midi2ly.py:98 msgid "quantise note durations on DUR" -msgstr "" +msgstr "kwantiseer nootlengtes op DUUR" #: midi2ly.py:99 msgid "print explicit durations" -msgstr "" +msgstr "schrijf expliciete nootlengtes" #: midi2ly.py:101 -#, fuzzy msgid "ALT[:MINOR]" -msgstr "ACC[:MINEUR]" +msgstr "VER[:MINEUR]" #: midi2ly.py:101 -#, fuzzy msgid "set key: ALT=+sharps|-flats; MINOR=1" -msgstr "zet toonsoort: ACC +kruizen/-mollen; :1 mineur" +msgstr "zet toonsoort: VER=+kruizen|-mollen; MINEUR=1" #: midi2ly.py:103 msgid "quantise note starts on DUR" -msgstr "" +msgstr "kwantiseer begin van noten op DUUR" #: midi2ly.py:104 msgid "DUR*NUM/DEN" -msgstr "" +msgstr "DUUR*NOEM/TEL" #: midi2ly.py:104 msgid "allow tuplet durations DUR*NUM/DEN" -msgstr "" +msgstr "sta tuplet lengtes DUUR*NOEM/TEL toe" #: midi2ly.py:108 msgid "treat every text as a lyric" -msgstr "" +msgstr "behandel elke tekst als liedtekts" -#: midi2ly.py:136 mup2ly.py:130 -msgid " 2001--2003" -msgstr "" +#: midi2ly.py:149 mup2ly.py:143 input.cc:88 +msgid "warning: " +msgstr "waarschuwing: " -#: midi2ly.py:141 mup2ly.py:135 -msgid "" -"\n" -"Distributed under terms of the GNU General Public License. It comes with\n" -"NO WARRANTY." -msgstr "" +#: midi2ly.py:164 midi2ly.py:1017 midi2ly.py:1082 mup2ly.py:146 mup2ly.py:160 +#: input.cc:93 +msgid "error: " +msgstr "fout: " -#: midi2ly.py:166 mup2ly.py:162 +#: midi2ly.py:165 mup2ly.py:161 msgid "Exiting ... " msgstr "Beëidigen ..." -#: midi2ly.py:264 mup2ly.py:261 +#: midi2ly.py:263 mup2ly.py:260 #, python-format msgid "command exited with value %d" msgstr "opdracht eindigde met waarde %d" -#. ############################################################### -#. END Library -#. ############################################################### -#. hmm -#. major scale: do-do -#. minor scale: la-la (= + 5) ''' -#. By tradition, all scales now consist of a sequence -#. of 7 notes each with a distinct name, from amongst -#. a b c d e f g. But, minor scales have a wide -#. second interval at the top - the 'leading note' is -#. sharped. (Why? it just works that way! Anything -#. else doesn't sound as good and isn't as flexible at -#. saying things. In medieval times, scales only had 6 -#. notes to avoid this problem - the hexachords.) -#. So, the d minor scale is d e f g a b-flat c-sharp d -#. - using d-flat for the leading note would skip the -#. name c and duplicate the name d. Why isn't c-sharp -#. put in the key signature? Tradition. (It's also -#. supposedly based on the Pythagorean theory of the -#. cycle of fifths, but that really only applies to -#. major scales...) Anyway, g minor is g a b-flat c d -#. e-flat f-sharp g, and all the other flat minor keys -#. end up with a natural leading note. And there you -#. have it. -#. John Sankey -#. -#. Let's also do a-minor: a b c d e f gis a -#. -#. --jcn -#. as -> gis -#. des -> cis -#. ges -> fis -#. g -> fisis -#. d -> cisis -#. a -> gisis -#. b -> ces -#. e -> fes -#. f -> eis -#. c -> bis -#. # FIXME: compile fix --jcn -#. TODO: move space -#. fis cis gis dis ais eis bis -#. bes es as des ges ces fes -#. urg, we should be sure that we're in a lyrics staff -#. all include ALL_NOTES_OFF -#. ugh, must set key while parsing -#. because Note init uses key -#. Better do Note.calc () at dump time? -#. last_lyric.clocks = t - last_time -#. hmm -#. urg, this will barf at meter changes -#. urg LilyPond doesn't start at c4, but -#. remembers from previous tracks! -#. reference_note = Note (clocks_per_4, 4*12, 0) -#. must be in \notes mode for parsing \skip -#: midi2ly.py:1002 +#: midi2ly.py:1001 #, python-format msgid "%s output to `%s'..." msgstr "%s uitvoer naar `%s'..." -#: midi2ly.py:1033 +#: midi2ly.py:1032 msgid "Example:" -msgstr "" +msgstr "Voorbeeld:" -#: midi2ly.py:1083 +#: midi2ly.py:1082 msgid "no files specified on command line." msgstr "geen bestanden gespecificeerd op de commandoregel." -#. !@PYTHON@ -#. mup2ly.py -- mup input converter -#. -#. source file of the GNU LilyPond music typesetter -#. -#. (c) 2001 -#. if set, LILYPONDPREFIX must take prevalence -#. if datadir is not set, we're doing a build and LILYPONDPREFIX #: mup2ly.py:70 -#, fuzzy msgid "Convert mup to LilyPond source." -msgstr "Converteer mup naar ly." +msgstr "Converteer mup naar LilyPond broncode." #: mup2ly.py:73 msgid "debug" @@ -1114,84 +591,97 @@ msgstr "definieer macro NAAM [optionele expansie EXP]" msgid "only pre-process" msgstr "alleen pre-processen" -#. Duh. Python style portable: cp *.EXT OUTDIR -#. system ('cp *.%s %s' % (ext, outdir), 1) -#. Python < 1.5.2 compatibility -#. -#. On most platforms, this is equivalent to -#. `normpath(join(os.getcwd()), PATH)'. *Added in Python version 1.5.2* -#. if set, LILYPONDPREFIX must take prevalence -#. if datadir is not set, we're doing a build and LILYPONDPREFIX -#. ############################################################### -#. END Library -#. -#. PMX cut and paste -#. -#. if not self.entries: -#. #return '\n' -#. #ugh ugh -#. return '\n%s = {}\n\n' % self.idstring () -#. ugh -#. def set_clef (self, letter): -#. clstr = clef_table[letter] -#. self.voices[0].add_nonchord (Clef (clstr)) -#. urg -#. maybe use import copy? -#. for i in self.pitches: -#. ch.pitches.append (i) -#. for i in self.scripts: -#. ch.scripts.append (i) -#. http://www.arkkra.com/doc/uguide/contexts.html -#. #self.current_staffs = [] -#. duh -#. FIXME: 1? -#. FIXME: does key play any role in this? -#. ch = self.current_voices[0].last_chord () -#. ch.basic_duration = self.current_voices[0].last_chord ().basic_duration -#. ugh -#. ch = self.current_voices[0].last_chord () -#. `;' is not a separator, chords end with ';' -#. mup resets default duration and pitch each bar -#. ugh: these (and lots more) should also be parsed in -#. context staff. we should have a class Staff_properties -#. and parse/set all those. -#. shortcut: set to official mup maximum (duh) -#. self.set_staffs (40) -#: mup2ly.py:1076 +#: mup2ly.py:1075 #, python-format msgid "no such context: %s" msgstr "geen context als: `%s'" -#. hmm -#. dig this: mup allows ifdefs inside macro bodies -#. don't do nested multi-line defines -#. duh: mup is strictly line-based, except for `define', -#. which is `@' terminated and may span several lines -#. don't define new macros in unactive areas -#. To support nested multi-line define's -#. process_function and macro_name, macro_body -#. should become lists (stacks) -#. The mup manual is undetermined on this -#. and I haven't seen examples doing it. -#. -#. don't do nested multi-line define's -#. writes to stdout for help2man -#. don't call -#. identify () -#. sys.stdout.flush () -#. handy emacs testing -#. if not files: -#. files = ['template.mup'] -#: mup2ly.py:1300 +#: mup2ly.py:1299 #, python-format msgid "Processing `%s'..." msgstr "Verwerken van `%s'..." -#: mup2ly.py:1319 +#: mup2ly.py:1318 #, python-format msgid "Writing `%s'..." msgstr "Schrijven van `%s'..." +#. # FIXME +#. # do -P or -p by default? +#. #help_summary = _ ("Run LilyPond using LaTeX for titling") +#: old-lilypond-book.py:118 +msgid "Process LilyPond snippets in hybrid HTML, LaTeX or texinfo document" +msgstr "" + +#: old-lilypond-book.py:124 old-lilypond-book.py:125 old-lilypond-book.py:127 +#: old-lilypond-book.py:128 +msgid "DIM" +msgstr "DIM" + +#: old-lilypond-book.py:124 +msgid "default fontsize for music. DIM is assumed to be in points" +msgstr "" + +#: old-lilypond-book.py:125 +msgid "deprecated, use --default-music-fontsize" +msgstr "" + +#: old-lilypond-book.py:126 +msgid "OPT" +msgstr "" + +#: old-lilypond-book.py:126 +msgid "pass OPT quoted to the lilypond command line" +msgstr "" + +#: old-lilypond-book.py:127 +msgid "force fontsize for all inline lilypond. DIM is assumed to be in points" +msgstr "" + +#: old-lilypond-book.py:128 +msgid "deprecated, use --force-music-fontsize" +msgstr "" + +#: old-lilypond-book.py:130 +msgid "include path" +msgstr "" + +#: old-lilypond-book.py:131 +msgid "write dependencies" +msgstr "schrijf afhankelijkheden" + +#: old-lilypond-book.py:132 +msgid "PREF" +msgstr "" + +#: old-lilypond-book.py:132 +msgid "prepend PREF before each -M dependency" +msgstr "plak DIR voor elke -M afhankelijkheid" + +#: old-lilypond-book.py:133 +msgid "don't run lilypond" +msgstr "draai lilypond niet" + +#: old-lilypond-book.py:134 +msgid "don't generate pictures" +msgstr "genereer geen afbeeldingen" + +#: old-lilypond-book.py:135 +msgid "strip all lilypond blocks from output" +msgstr "" + +#: old-lilypond-book.py:136 +msgid "filename main output file" +msgstr "" + +#: old-lilypond-book.py:137 +msgid "where to place generated files" +msgstr "" + +#: old-lilypond-book.py:227 +msgid "LaTeX failed." +msgstr "" + #: getopt-long.cc:146 #, c-format msgid "option `%s' requires an argument" @@ -1212,158 +702,134 @@ msgstr "onbekende optie: `%s'" msgid "invalid argument `%s' to option `%s'" msgstr "onjuist argument: `%s' voor optie `%s'" -#: warn.cc:25 -#, fuzzy, c-format -msgid "warning: %s\n" -msgstr "waarschuwing: " - -#: warn.cc:31 -#, fuzzy, c-format -msgid "error: %s\n" -msgstr "fout: " - #: warn.cc:44 -#, fuzzy, c-format -msgid "programming error: %s (Continuing; cross thumbs)\n" -msgstr " (Ga verder; duim maar)" - -#: accidental.cc:202 key-signature-interface.cc:137 #, c-format -msgid "accidental `%s' not found" -msgstr "" +msgid "programming error: %s" +msgstr "programmeerfout: %s" -#: accidental-engraver.cc:171 new-accidental-engraver.cc:238 -#, c-format -msgid "Accidental typesetting list must begin with context-name: %s" -msgstr "" +#: warn.cc:45 +msgid "Continuing; crossing fingers" +msgstr "Ga verder; duim maar" -#: accidental-engraver.cc:196 new-accidental-engraver.cc:263 -#, fuzzy, c-format -msgid "unknown accidental typesetting: %s. Ignored" -msgstr "onbekende ontsnapte string: `\\%s'" - -#: accidental-engraver.cc:212 new-accidental-engraver.cc:279 +#: accidental.cc:219 key-signature-interface.cc:139 #, c-format -msgid "Symbol is not a parent context: %s. Ignored" -msgstr "" +msgid "accidental `%s' not found" +msgstr "voorteken `%s' niet gevonden" -#: accidental-engraver.cc:215 new-accidental-engraver.cc:282 +#: accidental-engraver.cc:167 #, c-format -msgid "Accidental typesetting must be pair or context-name: %s" -msgstr "" +msgid "Accidental typesetting list must begin with context-name: %s" +msgstr "Voorteken zetlijst moet beginnen met context-naam: %s" -#: afm.cc:66 +#: accidental-engraver.cc:194 #, c-format -msgid "can't find character number: %d" -msgstr "kan teken niet vinden met nummer: %d" +msgid "ignoring unknown accidental: %s" +msgstr "negeren van onbekend voorteken: %s" -#: afm.cc:81 +#: accidental-engraver.cc:211 #, c-format -msgid "can't find character called: `%s'" -msgstr "kan teken niet vinden genaamd: `%s'" +msgid "Accidental rule must be pair or context-name; Found %s" +msgstr "Voortekenregel moet paar of context-naam zijn; Gevonden %s" -#: afm.cc:142 +#: afm.cc:145 #, c-format msgid "Error parsing AFM file: `%s'" msgstr "Fout bij ontleden AFM-bestand: `%s'" -#: all-font-metrics.cc:95 +#: all-font-metrics.cc:100 #, c-format msgid "checksum mismatch for font file: `%s'" msgstr "checksum fout voor fontbestand: `%s'" -#: all-font-metrics.cc:97 +#: all-font-metrics.cc:102 #, c-format msgid "does not match: `%s'" msgstr "komt niet overeen met: `%s'" -#: 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 "" -"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:107 +msgid "Rebuild all .afm files, and remove all .pk and .tfm files." +msgstr "Herbouw alle .afm bestanden en verwijder alle .pk en .tfm bestanden." -#: all-font-metrics.cc:103 -msgid "" -"A script for removing font-files is delivered with the source-code,\n" -"in buildscripts/clean-fonts.sh" +#: all-font-metrics.cc:109 +msgid "Rerun with -V to show font paths." +msgstr "Draai opniew met -V voor het tonen van fontpaden." + +#: all-font-metrics.cc:111 +msgid "A script for removing font-files is delivered with the source-code:" msgstr "" +"Een script ter verwijdering van fontbestanden is meegeleverd bij de bron-" +"code:" -#: all-font-metrics.cc:169 +#: all-font-metrics.cc:192 #, c-format msgid "can't find font: `%s'" msgstr "kan font niet vinden: `%s'" -#: all-font-metrics.cc:170 +#: all-font-metrics.cc:193 msgid "Loading default font" msgstr "Laad verstek font" -#: all-font-metrics.cc:185 +#: all-font-metrics.cc:208 #, c-format msgid "can't find default font: `%s'" msgstr "kan verstekfont niet vinden: `%s'" -#: all-font-metrics.cc:186 includable-lexer.cc:59 input-file-results.cc:192 +#: all-font-metrics.cc:209 includable-lexer.cc:59 input-file-results.cc:218 #, c-format msgid "(search path: `%s')" msgstr "(zoekpad: `%s')" -#: all-font-metrics.cc:187 +#: all-font-metrics.cc:210 msgid "Giving up" msgstr "Geef op" -#: auto-change-iterator.cc:43 change-iterator.cc:60 -#: part-combine-music-iterator.cc:120 +#: auto-change-iterator.cc:62 change-iterator.cc:61 msgid "Can't switch translators, I'm there already" msgstr "Kan niet wisselen van vertaler, ben al hier" -#: bar-check-iterator.cc:51 +#: bar-check-iterator.cc:68 #, c-format msgid "barcheck failed at: %s" msgstr "maatstreep controle gefaald op: %s" -#: beam.cc:146 -#, fuzzy +#: beam.cc:151 msgid "beam has less than two visible stems" -msgstr "waardestreep heeft minder dan twee stokken" +msgstr "waardestreep heeft minder dan twee zichtbare stokken" -#: beam.cc:151 -#, fuzzy -msgid "Beam has less than two stems. Removing beam." -msgstr "waardestreep heeft minder dan twee stokken" +#: beam.cc:156 +msgid "removing beam with less than two stems" +msgstr "verwijderen van waardestreep met minder dan twee stokken" -#: beam.cc:976 -msgid "" -"Not sure that we can find a nice beam slope (no viable initial configuration " -"found)." +#: beam.cc:1040 +msgid "no viable initial configuration found: may not find good beam slope" msgstr "" +"geen werkbare initiële configuratie gevonden: kan wellicht geen goede " +"waardestreephelling kunnen vinden" -#: beam-engraver.cc:176 +#: beam-engraver.cc:139 msgid "already have a beam" msgstr "heb al een waardestreep" -#: beam-engraver.cc:259 +#: beam-engraver.cc:212 msgid "unterminated beam" msgstr "onbeëindigde waardestreep" -#: beam-engraver.cc:292 chord-tremolo-engraver.cc:197 +#: beam-engraver.cc:245 chord-tremolo-engraver.cc:191 msgid "stem must have Rhythmic structure" msgstr "stok moet Ritmische structuur hebben" -#: beam-engraver.cc:306 +#: beam-engraver.cc:259 msgid "stem doesn't fit in beam" msgstr "stok past niet in waardestreep" -#: beam-engraver.cc:307 +#: beam-engraver.cc:260 msgid "beam was started here" msgstr "waardestreep werd hier gestart" -#: break-align-interface.cc:173 -#, fuzzy, c-format +#: break-align-interface.cc:214 +#, c-format msgid "No spacing entry from %s to `%s'" -msgstr "Voeg translator niet toe: `%s'" +msgstr "Geen spatiëringswaarde van %s naar`%s'" #: change-iterator.cc:22 #, c-format @@ -1376,144 +842,146 @@ msgstr "kan `%s' niet in `%s' veranderen" #. #. last->translator_id_string_ = get_change ()->change_to_id_string_; #. -#: change-iterator.cc:79 +#: change-iterator.cc:80 msgid "I'm one myself" msgstr "Ben er zelf een" -#: change-iterator.cc:82 +#: change-iterator.cc:83 msgid "none of these in my family" msgstr "geen van deze in mijn gezin" -#: chord-tremolo-engraver.cc:98 +#: chord-tremolo-engraver.cc:100 #, c-format msgid "Chord tremolo with %d elements. Must have two elements." -msgstr "" +msgstr "Akkoordtremool met %d elementen. Moet twee elementen hebben." -#: chord-tremolo-engraver.cc:157 +#: chord-tremolo-engraver.cc:153 msgid "unterminated chord tremolo" msgstr "onbeëindigd akkoordtremolo" -#: chord-tremolo-iterator.cc:69 +#: chord-tremolo-iterator.cc:64 msgid "no one to print a tremolos" msgstr "niemand om tremolos af te drukken" #: clef.cc:64 #, c-format msgid "clef `%s' not found" -msgstr "" +msgstr "sleutel `s' niet gevonden" -#: cluster.cc:131 -#, fuzzy, c-format +#: cluster.cc:123 +#, c-format msgid "unknown cluster style `%s'" -msgstr "onbekende translator: `%s'" +msgstr "onbekende klusterstijl `%s'" #: coherent-ligature-engraver.cc:84 #, c-format msgid "gotcha: ptr=%ul" -msgstr "" +msgstr "hebbes: ptr=%ul" #: coherent-ligature-engraver.cc:96 #, c-format msgid "distance=%f" -msgstr "" +msgstr "afstand=%s" #: coherent-ligature-engraver.cc:139 #, c-format msgid "Coherent_ligature_engraver: setting `spacing-increment = 0.01': ptr=%ul" -msgstr "" +msgstr "Coherent_ligature_engraver: zet `spacing-increment = 0.01: ptr=%ul" + +#: context.cc:180 +#, c-format +msgid "Cannot find or create `%s' called `%s'" +msgstr "kan niet vinden of maken `%s' genaamd `%s'" + +#: context.cc:217 +#, c-format +msgid "can't find or create: `%s'" +msgstr "kan niet vinden of scheppen: `%s'" + +#: context-def.cc:115 +#, c-format +msgid "Program has no such type: `%s'" +msgstr "Programma heeft geen dergelijk type: `%s'" -#: custos.cc:92 +#: custos.cc:85 #, c-format msgid "custos `%s' not found" -msgstr "" +msgstr "custode `%s' niet gevonden" #: dimensions.cc:13 msgid "NaN" msgstr "NaN" -#: dynamic-engraver.cc:204 span-dynamic-performer.cc:82 +#: dynamic-engraver.cc:183 span-dynamic-performer.cc:86 msgid "can't find start of (de)crescendo" msgstr "kan start van (de)crescendo niet vinden" -#: dynamic-engraver.cc:216 -msgid "already have a crescendo" -msgstr "heb al een crescendo" - -#: dynamic-engraver.cc:217 +#: dynamic-engraver.cc:193 msgid "already have a decrescendo" msgstr "heb al een decrescendo" -#: dynamic-engraver.cc:220 -#, fuzzy +#: dynamic-engraver.cc:195 +msgid "already have a crescendo" +msgstr "heb al een crescendo" + +#: dynamic-engraver.cc:198 msgid "Cresc started here" -msgstr "waardestreep werd hier gestart" +msgstr "Cresc is hier gestart" -#: dynamic-engraver.cc:323 +#: dynamic-engraver.cc:305 msgid "unterminated (de)crescendo" msgstr "onbeëindigd (de)crescendo" #: event.cc:49 -#, fuzzy, c-format +#, c-format msgid "Transposition by %s makes alteration larger than two" -msgstr "Transponering van %s geeft tripel kruizen/mollen" +msgstr "Transponering met %s geeft voorteken groter dan twee" -#: event-chord-iterator.cc:76 output-property-music-iterator.cc:27 -#, fuzzy, c-format +#: event.cc:72 +#, c-format +msgid "octave check failed; expected %s, found: %s" +msgstr "oktaafcontrole gefaald; verwachtte %s, vond: %s" + +#: event-chord-iterator.cc:56 output-property-music-iterator.cc:29 +#, c-format msgid "Junking event: `%s'" -msgstr "Schroot verzoek: `%s'" +msgstr "Verschroot gebeurtenis: `%s'" -#: extender-engraver.cc:94 +#: extender-engraver.cc:143 extender-engraver.cc:153 msgid "unterminated extender" msgstr "onbeëindigde extender" -#: extender-engraver.cc:106 -#, fuzzy -msgid "Nothing to connect extender to on the left. Ignoring extender event." -msgstr "" -"Niets om extender aan linkerkant aan vast te maken. Negeer extender verzoek." - -#: folded-repeat-iterator.cc:88 +#: folded-repeat-iterator.cc:65 msgid "no one to print a repeat brace" msgstr "niemand om een herhalings haak af te drukken" -#: font-interface.cc:239 -msgid "couldn't find any font satisfying " -msgstr "kon geen enkel font vinden dat voldoet aan " - -#: glissando-engraver.cc:100 -#, fuzzy +#: glissando-engraver.cc:102 msgid "Unterminated glissando." -msgstr "onbeëindigde bindingsboog" +msgstr "Onbeëindigde glissando" -#: gourlay-breaking.cc:188 +#: global-context.cc:151 +#, c-format +msgid "can't find `%s' context" +msgstr "kan `%s' context niet vinden" + +#: gourlay-breaking.cc:195 #, c-format msgid "Optimal demerits: %f" -msgstr "" +msgstr "Optimale foutscore: %f" -#: gourlay-breaking.cc:193 +#: gourlay-breaking.cc:200 msgid "No feasible line breaking found" msgstr "Geen doenbare regelafbreuk gevonden" #: gregorian-ligature-engraver.cc:59 -#, fuzzy, c-format +#, c-format msgid "\\%s ignored" -msgstr "(genegeerd)" +msgstr "\\%s genegeerd" #: gregorian-ligature-engraver.cc:64 #, c-format msgid "implied \\%s added" -msgstr "" - -#. -#. Todo: do something sensible. The grob-pq-engraver is not water -#. tight, and stuff like tupletSpannerDuration confuses it. -#. -#: grob-pq-engraver.cc:130 -#, c-format -msgid "" -"Skipped something?\n" -"Grob %s ended before I expected it to end." -msgstr "" +msgstr "impliciede \\%s toegevoeg" #: hairpin.cc:98 msgid "decrescendo too small" @@ -1523,205 +991,129 @@ msgstr "decrescendo te klein" msgid "crescendo too small" msgstr "crescendo te klein" -#: horizontal-bracket-engraver.cc:64 +#: horizontal-bracket-engraver.cc:57 msgid "Don't have that many brackets." -msgstr "" +msgstr "Heb niet zoveel haken." -#: horizontal-bracket-engraver.cc:73 -#, fuzzy +#: horizontal-bracket-engraver.cc:66 msgid "Conflicting note group events." -msgstr "Tegenstrijdige toonsoorten gevonden." +msgstr "Tegenstrijdige nootgroeperingsgebeurtenissen." -#: hyphen-engraver.cc:87 -msgid "unterminated hyphen" -msgstr "onafgesloten waardestreep" +#: hyphen-engraver.cc:96 +msgid "removing unterminated hyphen" +msgstr "verwijderen van onafgesloten streepje" -#: hyphen-engraver.cc:99 -#, fuzzy -msgid "Nothing to connect hyphen to on the left. Ignoring hyphen event." -msgstr "" -"Niets om streepje aan linkerkant aan vast te maken. Negeer streepje verzoek." +#: hyphen-engraver.cc:110 +msgid "unterminated hyphen; removing" +msgstr "verwijderen van onafgesloten streepje" + +#: includable-lexer.cc:50 +msgid "include files are not allowed" +msgstr "invoegbestanden zijn niet toegestaan" #: input.cc:99 msgid "non fatal error: " msgstr "niet noodlottige fout: " -#: input.cc:107 source-file.cc:146 source-file.cc:239 +#: input.cc:107 source-file.cc:147 source-file.cc:240 msgid "position unknown" msgstr "positie onbekend" -#: input-file-results.cc:72 source-file.cc:54 streams.cc:38 +#: input-file-results.cc:78 source-file.cc:55 #, c-format msgid "can't open file: `%s'" msgstr "kan bestand niet openen: `%s'" -#: input-file-results.cc:132 -msgid "Score contains errors; will not process it" -msgstr "Partituur bevat fouten; zal hem niet verwerken" - -#: input-file-results.cc:172 +#: input-file-results.cc:142 #, c-format -msgid "Now processing: `%s'" -msgstr "Nu wordt verwerkt: `%s'" +msgid "Now processing `%s'" +msgstr "Nu wordt verwerkt `%s'" -#: key-performer.cc:96 +#: key-performer.cc:90 msgid "FIXME: key change merge" msgstr "MAAKME: toonsoort sleutel samenvoeging" -#: kpath.cc:76 -#, fuzzy, c-format -msgid "Kpathsea couldn't find TFM file `%s'" -msgstr "kan bestand niet vinden: `%s'" +#: kpath.cc:75 +#, c-format +msgid "kpathsea can not find TFM file: `%s'" +msgstr "kpathsea kan TMF bestand niet vinden: `%s'" -#: ligature-engraver.cc:159 -#, fuzzy +#: ligature-engraver.cc:152 msgid "can't find start of ligature" -msgstr "kan start van bindingsboog niet vinden" +msgstr "kan begin van ligatuur niet vinden" -#: ligature-engraver.cc:165 +#: ligature-engraver.cc:158 msgid "no right bound" -msgstr "" +msgstr "geen rechterkant" -#: ligature-engraver.cc:191 -#, fuzzy +#: ligature-engraver.cc:184 msgid "already have a ligature" -msgstr "heb al een waardestreep" +msgstr "heb al een ligatuur" -#: ligature-engraver.cc:207 +#: ligature-engraver.cc:200 msgid "no left bound" -msgstr "" +msgstr "geen linkerkant" -#: ligature-engraver.cc:258 -#, fuzzy +#: ligature-engraver.cc:255 msgid "unterminated ligature" -msgstr "onbeëindigde bindingsboog" +msgstr "onbeëindigde ligatuur" -#: ligature-engraver.cc:282 -msgid "ligature may not contain rest; ignoring rest" -msgstr "" +#: ligature-engraver.cc:279 +msgid "ignoring rest: ligature may not contain rest" +msgstr "negeer rust: ligatuur mag geen rust bevatten" -#: ligature-engraver.cc:283 -#, fuzzy +#: ligature-engraver.cc:280 msgid "ligature was started here" -msgstr "waardestreep werd hier gestart" +msgstr "ligatuur werd hier gestart" #: lily-guile.cc:88 #, c-format msgid "(load path: `%s')" msgstr "(zoekpad: `%s')" -#: lily-guile.cc:576 -#, fuzzy, c-format +#: lily-guile.cc:584 +#, c-format msgid "Can't find property type-check for `%s' (%s)." -msgstr "" -"Kan geen type-controle vinden voor property `%s'. Misschien een tikfout?" +msgstr "Kan geen type-controle vinden voor property `%s' (%s)." -#: lily-guile.cc:579 +#: lily-guile.cc:587 msgid "Perhaps you made a typing error?" -msgstr "" +msgstr "Misschien een typefout?" -#: lily-guile.cc:585 +#: lily-guile.cc:593 msgid "Doing assignment anyway." -msgstr "" +msgstr "Voer toewijzing toch door." -#: lily-guile.cc:599 +#: lily-guile.cc:607 #, c-format msgid "Type check for `%s' failed; value `%s' must be of type `%s'" msgstr "Type contole gefaald voor `%s'; waarde `%s' moet type hebben: `%s'" -#: lookup.cc:173 +#: lookup.cc:169 msgid "round filled box horizontal extent smaller than blot; decreasing blot" msgstr "" +"rond gevulde doos horizontale afmetingen kleiner dan blot; verkleinen van " +"blot" -#: lookup.cc:178 +#: lookup.cc:174 msgid "round filled box vertical extent smaller than blot; decreasing blot" msgstr "" +"rond gevulde doos vertikale afmetingen kleiner dan blot; verkleinen van " +"blot\n" -#: lyric-phrasing-engraver.cc:311 -msgid "lyrics found without any matching notehead" -msgstr "liedteksten gevonden zonder bijbehorend nootbolletje" - -#: lyric-phrasing-engraver.cc:317 -msgid "Huh? Melismatic note found to have associated lyrics." -msgstr "Huh? Melismatische noot blijkt bijbehorende liedtekst te hebben." - -#: main.cc:106 -msgid "EXPR" -msgstr "EXPR" - -#: main.cc:107 -msgid "set options, use -e '(ly-option-usage)' for help" -msgstr "" - -#: main.cc:110 -msgid "use output format EXT" -msgstr "" - -#: main.cc:112 -msgid "FIELD" -msgstr "VELD" - -#: main.cc:112 -msgid "write header field to BASENAME.FIELD" -msgstr "schrijf kop veld naar BASISNAAM.VELD" - -#: main.cc:113 -msgid "add DIR to search path" -msgstr "voeg DIR toe aan zoekpad" - -#: main.cc:114 -msgid "use FILE as init file" -msgstr "gebruik BESTAND als initialisatiebestand" - -#: main.cc:118 -msgid "prepend DIR to dependencies" -msgstr "voeg DIR voor aan afhankelijkheden" - -#. -#. should audit again. -#. -#: main.cc:123 -msgid "inhibit file output naming and exporting" -msgstr "verbied naamgeving van uitvoerbestand en exportering" - -#. No version number or newline here. It confuses help2man. -#: main.cc:155 -#, c-format -msgid "Usage: %s [OPTIONS]... FILE..." -msgstr "Gebruik: %s [OPTIE]... BESTAND..." - -#: main.cc:157 -msgid "Typeset music and or play MIDI from FILE." -msgstr "Zet muziek en of speel MIDI van BESTAND." - -#: main.cc:160 -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 "" -"LilyPond is een muziekzetter. Zij maakt prachtige bladmuziek\n" -"uitgaande van een hoog niveau beschrijving bestand. LilyPond \n" -"maakt deel uit van het GNU Project.\n" - -#: main.cc:182 -#, c-format +#: main.cc:100 msgid "" -"This is free software. It is covered by the GNU General Public License,\n" -"and you are welcome to change it and/or distribute copies of it under\n" -"certain conditions. Invoke as `%s --warranty' for more information.\n" +"This program is free software. It is covered by the GNU General Public\n" +"License and you are welcome to change it and/or distribute copies of it\n" +"under certain conditions. Invoke as `lilypond-bin --warranty' for more\n" +"information.\n" msgstr "" "Dit is vrije programmatuur. Het valt onder de GNU Algemene Openbare\n" -"Licentie, en u wordt uitgenodigd het te veranderen en/of te verspreiden\n" -"onder bepaalde voorwaarden. Roep aan als `%s --warranty' voor meer\n" -"informatie.\n" - -#: main.cc:198 -msgid "GNU LilyPond -- The music typesetter" -msgstr "GNU LilyPond -- De Muziekzetter" +"Licentie (General Public Licence), en u wordt uitgenodigd het te\n" +"veranderen en/of te verspreiden onder bepaalde voorwaarden. Roep aan\n" +"als `lilypond-bin --warranty' voor meer informatie. " -#: main.cc:206 -#, fuzzy +#: main.cc:106 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" @@ -1734,13 +1126,13 @@ msgid "" "\n" " You should have received a copy (refer to the file COPYING) of the\n" "GNU General Public License along with this program; if not, write to\n" -"the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA " -"02111-1307,\n" -"USA.\n" +"the Free Software Foundation, Inc., 59 Temple Place - Suite 330,\n" +"Boston, MA 02111-1307, USA.\n" msgstr "" " Dit programma is vrije programmatuur; u kunt het verspreiden en/of\n" "veranderen onder de voorwaarden van de GNU Algemene Openbare Licentie\n" -"versie 2, zoals gepubliceerd door de Free Software Foundation.\n" +"(General Public Licence) versie 2, zoals gepubliceerd door de Free\n" +"Software Foundation.\n" "\n" " Dit programma wordt verspreid in de hoop dat het nuttig zal zijn,\n" "maar ZONDER ENIGE GARANTIE; zelfs zonder impliciete garantie voor\n" @@ -1752,154 +1144,203 @@ msgstr "" "zoniet, schrijf dan naar de Free Software Foundation, Inc.,\n" "675 Mass Ave, Cambridge, MA 02139, USA.\n" -#: mensural-ligature.cc:153 +#: main.cc:135 +msgid "EXPR" +msgstr "EXPR" + +#: main.cc:136 +msgid "set options, use -e '(ly-option-usage)' for help" +msgstr "zet opties, gebruik -e '(ly-option-usage)' voor hulp" + +#: main.cc:139 +msgid "use output format EXT" +msgstr "gebruik uitvoerformaat EXT" + +#: main.cc:141 +msgid "FIELD" +msgstr "VELD" + +#: main.cc:141 +msgid "write header field to BASENAME.FIELD" +msgstr "schrijf kop veld naar BASISNAAM.VELD" + +#: main.cc:142 +msgid "add DIR to search path" +msgstr "voeg DIR toe aan zoekpad" + +#: main.cc:143 +msgid "use FILE as init file" +msgstr "gebruik BESTAND als initialisatiebestand" + +#: main.cc:144 +msgid "write Makefile dependencies" +msgstr "schrijf Makefile afhankelijkheden" + +#: main.cc:147 +msgid "prepend DIR to dependencies" +msgstr "voeg DIR voor aan afhankelijkheden" + +#: main.cc:148 +msgid "run in safe mode" +msgstr "draai in veilige modus" + +#: main.cc:171 #, c-format -msgid "Mensural_ligature:thickness undefined on flexa %d; assuming 1.4" +msgid "" +"Copyright (c) %s by\n" +"%s and others." msgstr "" +"Copyright (c) %s\n" +"%s en anderen." -#: mensural-ligature.cc:169 +#. No version number or newline here. It confuses help2man. +#: main.cc:197 #, c-format -msgid "Mensural_ligature:delta-pitch undefined on flexa %d; assuming 0" -msgstr "" +msgid "Usage: %s [OPTIONS]... FILE..." +msgstr "Gebruik: %s [OPTIE]... BESTAND..." -#: mensural-ligature.cc:182 +#: main.cc:199 #, c-format -msgid "Mensural_ligature:flexa-width undefined on flexa %d; assuming 2.0" -msgstr "" +msgid "Typeset music and/or produce MIDI from FILE." +msgstr "Zet muziek en of produceer MIDI van BESTAND." + +#: main.cc:201 +#, c-format +msgid "LilyPond produces beautiful music notation." +msgstr "LilyPond produceert prachtige muzieknotatie." -#: mensural-ligature.cc:215 +#: main.cc:203 +#, c-format +msgid "For more information, see %s" +msgstr "Voor meer informatie, zie %s" + +#: main.cc:369 +#, c-format +msgid "This option is for developers only." +msgstr "Deze optie is uitsluitend bestemd voor ontwikkelaars." + +#: main.cc:370 +#, c-format +msgid "Read the sources for more information." +msgstr "Lees de broncodes voor meer informatie." + +#: mensural-ligature.cc:183 msgid "Mensural_ligature:unexpected case fall-through" -msgstr "" +msgstr "Mensural_ligature:onverwachte zaakdoorval" -#: mensural-ligature.cc:225 +#: mensural-ligature.cc:193 msgid "Mensural_ligature: (join_left == 0)" -msgstr "" +msgstr "Mensural_ligature: (join_left) == 0)" -#: mensural-ligature-engraver.cc:248 mensural-ligature-engraver.cc:397 +#: mensural-ligature-engraver.cc:248 mensural-ligature-engraver.cc:383 msgid "unexpected case fall-through" -msgstr "" +msgstr "onverwachte zaakdoorval" #: mensural-ligature-engraver.cc:259 msgid "ligature with less than 2 heads -> skipping" -msgstr "" +msgstr "ligatuur met minder dan 2 bolletjes -> overslaan" #: mensural-ligature-engraver.cc:279 msgid "can not determine pitch of ligature primitive -> skipping" -msgstr "" +msgstr "kan toonhoogte van primitieve ligatuur niet bepalen -> overslaan" #: mensural-ligature-engraver.cc:302 msgid "prime interval within ligature -> skipping" -msgstr "" +msgstr "prieminterval binnen ligatuur -> overslaan" #: mensural-ligature-engraver.cc:312 msgid "mensural ligature: duration none of L, B, S -> skipping" -msgstr "" +msgstr "mensural ligature: lengte geen van L, B, S -> overslaan" -#: midi-item.cc:148 +#: midi-item.cc:153 #, c-format -msgid "no such instrument: `%s'" -msgstr "geen dergelijk instrument: `%s'" - -#: midi-item.cc:238 -msgid "silly duration" -msgstr "rare duur" +msgid "no such MIDI instrument: `%s'" +msgstr "geen dergelijk MIDI instrument: `%s'" -#: midi-item.cc:251 +#: midi-item.cc:257 msgid "silly pitch" msgstr "rare toonhoogte" -#: music-output-def.cc:111 +#: midi-item.cc:273 #, c-format -msgid "can't find `%s' context" -msgstr "kan `%s' context niet vinden" +msgid "Experimental: temporarily fine tuning (of %d cents) a channel." +msgstr "Experimenteel: tijdelijke fijnafstemming (%d centen) van kanaal." -#: my-lily-lexer.cc:169 +#: midi-stream.cc:40 +#, c-format +msgid "could not write file: `%s'" +msgstr "kon bestand niet schrijven: `%s'" + +#: my-lily-lexer.cc:185 #, c-format msgid "Identifier name is a keyword: `%s'" msgstr "Identifier naam is een sleutelwoord: `%s'" -#: my-lily-lexer.cc:191 +#: my-lily-lexer.cc:207 #, c-format msgid "error at EOF: %s" msgstr "fout bij EOF: %s" -#: my-lily-parser.cc:44 +#: my-lily-parser.cc:45 msgid "Parsing..." msgstr "Ontleden..." -#: my-lily-parser.cc:54 +#: my-lily-parser.cc:57 msgid "Braces don't match" msgstr "Haakjes paren niet" #. #. music for the softenon children? #. -#: new-fingering-engraver.cc:143 +#: new-fingering-engraver.cc:155 msgid "music for the martians." -msgstr "" +msgstr "muziek voor de marsmannetjes." -#: new-tie-engraver.cc:166 tie-engraver.cc:217 -msgid "lonely tie" -msgstr "eenzame overbinding" +#: new-fingering-engraver.cc:235 +msgid "Fingerings are also not down?! Putting them down anyway." +msgstr "Vingerzettingen zijn ook niet onder?! Zet ze toch onder." + +#: new-lyric-combine-music-iterator.cc:172 +#, c-format +msgid "cannot find Voice: %s\n" +msgstr "kan Voice niet vinden: %s" -#: note-collision.cc:340 +#: note-collision.cc:384 msgid "Too many clashing notecolumns. Ignoring them." msgstr "Te veel botsende nootkolommen. Negeer ze." -#: note-head.cc:127 +#: note-head.cc:139 #, c-format msgid "note head `%s' not found" -msgstr "" +msgstr "nootbolletje `%s' niet gevonden" -#: paper-def.cc:96 +#: paper-def.cc:73 #, c-format msgid "paper output to `%s'..." msgstr "papier uitvoer naar %s..." -#: paper-score.cc:78 -#, fuzzy, c-format +#: paper-score.cc:72 +#, c-format msgid "Element count %d (spanners %d) " -msgstr "Aantal elementen: %d." +msgstr "Aantal elementen %d (spanners %d)" -#: paper-score.cc:83 -#, fuzzy +#: paper-score.cc:76 msgid "Preprocessing graphical objects..." -msgstr "Voorbewerken van elementen..." - -#: paper-score.cc:116 -msgid "Outputting Score, defined at: " -msgstr "Uitvoer van Score, gedefinieerd op: " - -#: parse-scm.cc:79 -msgid "GUILE signaled an error for the expression begining here" -msgstr "" - -#. -#. We could change the current translator's id, but that would make -#. errors hard to catch -#. -#. last->translator_id_string_ = get_change ()->change_to_id_string_; -#. -#: part-combine-music-iterator.cc:139 -#, c-format -msgid "I'm one myself: `%s'" -msgstr "Ben er zelf een: `%s'" +msgstr "Voorbewerken van grafische objecten..." -#: part-combine-music-iterator.cc:142 -#, c-format -msgid "none of these in my family: `%s'" -msgstr "geen van deze in mijn gezin: `%s'" +#: parse-scm.cc:81 +msgid "GUILE signaled an error for the expression beginning here" +msgstr "GUILE signaleerde een fout voor de expressie beginnend alhier" -#: percent-repeat-engraver.cc:109 +#: percent-repeat-engraver.cc:110 msgid "Don't know how to handle a percent repeat of this length." msgstr "Weet niet hoe procent herhaling van deze lengte af te handelen." -#: percent-repeat-engraver.cc:163 -#, fuzzy +#: percent-repeat-engraver.cc:164 msgid "unterminated percent repeat" -msgstr "onbeëindigde waardestreep" +msgstr "onbeëindigde procentherhaling" -#: percent-repeat-iterator.cc:65 +#: percent-repeat-iterator.cc:53 msgid "no one to print a percent" msgstr "niemand om een procent herhaling af te drukken" @@ -1907,224 +1348,228 @@ msgstr "niemand om een procent herhaling af te drukken" msgid "Track ... " msgstr "Spoor ... " -#: performance.cc:83 +#: performance.cc:94 msgid "Creator: " msgstr "Schepper: " -#: performance.cc:103 -#, fuzzy -msgid "at " -msgstr ", bij " - #: performance.cc:114 -#, c-format -msgid "from musical definition: %s" -msgstr "van muzikale definitie: %s" +msgid "at " +msgstr "dd " -#: performance.cc:169 +#: performance.cc:172 #, c-format msgid "MIDI output to `%s'..." msgstr "MIDI uitvoer naar %s..." -#: phrasing-slur-engraver.cc:123 +#: phrasing-slur-engraver.cc:105 msgid "unterminated phrasing slur" msgstr "onbeëindigde fraseringsboog" -#: phrasing-slur-engraver.cc:141 +#: phrasing-slur-engraver.cc:123 msgid "can't find start of phrasing slur" msgstr "kan start van fraseringsboog niet vinden" -#: piano-pedal-engraver.cc:235 piano-pedal-engraver.cc:250 -#: piano-pedal-engraver.cc:305 piano-pedal-performer.cc:82 +#: piano-pedal-engraver.cc:238 +msgid "Need 3 strings for piano pedals. No pedal made. " +msgstr "Heb 3 strings nodig voor pianopedalen. Geen pedalen gemaakt. " + +#: piano-pedal-engraver.cc:253 piano-pedal-engraver.cc:268 +#: piano-pedal-performer.cc:82 #, c-format msgid "can't find start of piano pedal: `%s'" msgstr "kan start van piano pedaal niet vinden: `%s'" -#: piano-pedal-engraver.cc:410 -#, fuzzy -msgid "unterminated pedal bracket" -msgstr "onbeëindigde waardestreep" +#: piano-pedal-engraver.cc:321 +#, c-format +msgid "can't find start of piano pedal bracket: `%s'" +msgstr "kan start van piano pedaal haak niet vinden: `%s'" -#: property-iterator.cc:97 +#: property-iterator.cc:94 #, c-format msgid "Not a grob name, `%s'." -msgstr "" +msgstr "Geen grobnaam, `%s'." -#: rest.cc:139 +#: quote-iterator.cc:181 #, c-format -msgid "rest `%s' not found, " -msgstr "" +msgid "In quotation: junking event %s" +msgstr "In aanhaling: verschroten van gebeurtenis %s" + +#: relative-octave-check.cc:25 +msgid "Failed octave check, got: " +msgstr "Oktaafcontorle gefaald, heb:" + +#: rest.cc:137 +#, c-format +msgid "rest `%s' not found" +msgstr "rust `%s' niet gevonden" + +#: rest-collision.cc:145 +msgid "rest direction not set. Cannot resolve collision." +msgstr "rustrichting niet gezet. Kan botsing niet voorkomen." -#: rest-collision.cc:199 +#: rest-collision.cc:193 msgid "too many colliding rests" msgstr "te veel botsende rusten" -#: scm-option.cc:45 +#: scm-option.cc:52 +#, c-format msgid "lilypond -e EXPR means:" -msgstr "" +msgstr "lilypond -e EXPR betekent:" -#: scm-option.cc:47 +#: scm-option.cc:54 +#, c-format msgid " Evalute the Scheme EXPR before parsing any .ly files." -msgstr "" +msgstr " Evalueer de Scheme EXPR alvorens enig .ly bestand te ontleden." -#: scm-option.cc:49 +#: scm-option.cc:56 +#, c-format msgid "" " Multiple -e options may be given, they will be evaluated sequentially." msgstr "" +" Verscheidene -e opties mogen worden gegeven, deze zullen sequentieel " +"worden geëvalueerd." -#: scm-option.cc:51 +#: scm-option.cc:58 +#, c-format msgid "" " The function ly-set-option allows for access to some internal variables." msgstr "" +" De functie ly-set-option verschaft toegang tot bepaalde interne variabelen." -#: scm-option.cc:53 -msgid "Usage: lilypond -e \"(ly-set-option SYMBOL VAL)\"" -msgstr "" +#: scm-option.cc:60 +#, c-format +msgid "Usage: lilypond-bin -e \"(ly-set-option SYMBOL VAL)\"" +msgstr "Gebruik: lilypond-bin -e \"(ly-set-option SYMBOOL WAARDE)\"" -#: scm-option.cc:55 +#: scm-option.cc:62 +#, c-format msgid "Where SYMBOL VAL pair is any of:" -msgstr "" +msgstr "Waar SYMBOOL WAARDE paar is een van:" -#: scm-option.cc:128 +#: scm-option.cc:143 scm-option.cc:176 msgid "Unknown internal option!" -msgstr "" +msgstr "Onbekende interne optie!" -#: score.cc:85 -msgid "Interpreting music..." +#: score.cc:125 +msgid "Interpreting music... " msgstr "Vertolken van muziek..." -#: score.cc:97 +#: score.cc:135 msgid "Need music in a score" msgstr "Heb muziek nodig in een partituur" -#. should we? hampers debugging. -#: score.cc:111 -msgid "Errors found/*, not processing score*/" -msgstr "Fouten gevonden, /*verwerk partituur niet */" - -#: score.cc:118 +#: score.cc:145 #, c-format msgid "elapsed time: %.2f seconds" msgstr "duur: %.2f seconden" -#: score-engraver.cc:99 -#, fuzzy, c-format +#: score-engraver.cc:103 +#, c-format msgid "can't find `%s'" -msgstr "kan niet vinden: `%s'" +msgstr "kan niet vinden `%s'" -#: score-engraver.cc:100 +#: score-engraver.cc:104 msgid "Fonts have not been installed properly. Aborting" -msgstr "" +msgstr "Fonts zijn niet juist geïnstalleerd. Afbreken." -#: score-engraver.cc:205 +#: score-engraver.cc:189 #, c-format msgid "unbound spanner `%s'" msgstr "ongebonden spanner `%s'" -#: script-engraver.cc:90 -#, c-format -msgid "Don't know how to interpret articulation `%s'" -msgstr "Weet niet hoe articulatie te vertolken `%s'" +#: script-engraver.cc:96 +msgid "Don't know how to interpret articulation:" +msgstr "Weet niet hoe articulatie te vertolken:" + +#: script-engraver.cc:97 +msgid "Scheme encoding: " +msgstr "Scheme codering:" #. this shouldn't happen, but let's continue anyway. -#: separation-item.cc:53 separation-item.cc:101 +#: separation-item.cc:53 separation-item.cc:97 msgid "Separation_item: I've been drinking too much" msgstr "Separation_item: Ik heb te veel gedronken" #: simple-spacer.cc:248 #, c-format msgid "No spring between column %d and next one" -msgstr "" +msgstr "Geen veer tussen kolom %d en de volgende" -#: slur-engraver.cc:141 +#: slur-engraver.cc:121 msgid "unterminated slur" msgstr "onbeëindigde bindingsboog" #. How to shut up this warning, when Voice_devnull_engraver has #. eaten start event? -#: slur-engraver.cc:159 +#: slur-engraver.cc:139 msgid "can't find start of slur" msgstr "kan start van bindingsboog niet vinden" -#: source-file.cc:67 +#: source-file.cc:68 #, c-format msgid "Huh? Got %d, expected %d characters" msgstr "Huh? Kreeg %d, verwachtte %d tekens" -#: spacing-spanner.cc:379 +#: spacing-spanner.cc:385 #, c-format -msgid "Global shortest duration is %s\n" -msgstr "" +msgid "Global shortest duration is %s" +msgstr "Globaal kortste lengte is %s" #: spring-smob.cc:32 #, c-format msgid "#" -msgstr "" - -#: staff-symbol.cc:61 -msgid "staff symbol: indentation yields beyond end of line" -msgstr "" +msgstr "#" -#: stem.cc:118 +#: stem.cc:119 msgid "Weird stem size; check for narrow beams" msgstr "Vreemde stoklengte; controleer op krappe waardestrepen" -#: stem.cc:611 +#: stem.cc:648 #, c-format msgid "flag `%s' not found" -msgstr "" +msgstr "vlag `%s' niet gevonden" -#: stem.cc:624 +#: stem.cc:661 #, c-format msgid "flag stroke `%s' not found" -msgstr "" +msgstr "vlag streep `%s' niet gevonden" -#: stem-engraver.cc:96 +#: stem-engraver.cc:97 msgid "tremolo duration is too long" -msgstr "" +msgstr "tremololengte is te lang" -#: stem-engraver.cc:124 +#: stem-engraver.cc:126 #, c-format msgid "Adding note head to incompatible stem (type = %d)" msgstr "Voeg noot bolletje toe aan onverenigbare stok (type = %d)" -#: stem-engraver.cc:125 +#: stem-engraver.cc:127 msgid "Don't you want polyphonic voices instead?" -msgstr "" +msgstr "Wil je anders echt geen polyfone stemmen?" -#: streams.cc:34 -#, c-format -msgid "can't create directory: `%s'" -msgstr "kan directory niet scheppen: `%s'" - -#: streams.cc:48 -msgid "Error syncing file (disk full?)" -msgstr "Fout bij synchroniseren van bestand (schijf vol?)" - -#: system.cc:125 +#: system.cc:181 #, c-format msgid "Element count %d." msgstr "Aantal elementen: %d." -#: system.cc:372 -#, fuzzy, c-format -msgid "Grob count %d " -msgstr "Aantal elementen: %d." +#: system.cc:335 +#, c-format +msgid "Grob count %d" +msgstr "Aantal grobs %d" -#: system.cc:386 -#, fuzzy +#: system.cc:349 msgid "Calculating line breaks..." -msgstr "Berekenen van kolomposities..." +msgstr "Berekenen van regelafbreuken..." -#: text-spanner-engraver.cc:81 +#: text-spanner-engraver.cc:65 msgid "can't find start of text spanner" msgstr "kan start van tekst spanner niet vinden" -#: text-spanner-engraver.cc:95 +#: text-spanner-engraver.cc:79 msgid "already have a text spanner" msgstr "heb al een tekst spanner" -#: text-spanner-engraver.cc:164 +#: text-spanner-engraver.cc:143 msgid "unterminated text spanner" msgstr "onbeëindigde tekst spanner" @@ -2146,20 +1591,20 @@ msgid "%s: TFM file has %u parameters, which is more than the %u I can handle" msgstr "" "%s: TFM bestand heeft %u parameters, wat meer is dan de %u die ik aan kan" -#: tie-performer.cc:159 -msgid "No ties were created!" -msgstr "Geen overbindingen geschapen!" +#: tie-engraver.cc:164 +msgid "lonely tie" +msgstr "eenzame overbinding" -#: time-scaled-music-iterator.cc:25 +#: time-scaled-music-iterator.cc:24 msgid "no one to print a tuplet start bracket" msgstr "niemand om een x-ool start haak af te drukken" #. If there is no such symbol, we default to the numbered style. #. (Here really with a warning!) -#: time-signature.cc:87 +#: time-signature.cc:95 #, c-format msgid "time signature symbol `%s' not found; reverting to numbered style" -msgstr "" +msgstr "maatsoortsymbool `%s' niet gevondend; val terug op numerieke stijl" #. #. Todo: should make typecheck? @@ -2169,487 +1614,160 @@ msgstr "" #: time-signature-engraver.cc:57 #, c-format msgid "Found strange time signature %d/%d." -msgstr "" +msgstr "Vreemde maatsoort gevonden %d/%d." #: translator-ctors.cc:53 #, c-format msgid "unknown translator: `%s'" msgstr "onbekende translator: `%s'" -#: translator-def.cc:105 -msgid "Program has no such type" -msgstr "Programma heeft geen dergelijk type" - -#: translator-def.cc:111 -#, c-format -msgid "Already contains: `%s'" -msgstr "Bevat reeds: `%s'" - -#: translator-def.cc:112 -#, c-format -msgid "Not adding translator: `%s'" -msgstr "Voeg translator niet toe: `%s'" - -#: translator-def.cc:229 +#: translator-group.cc:108 #, c-format msgid "can't find: `%s'" msgstr "kan niet vinden: `%s'" -#: translator-group.cc:158 -#, c-format -msgid "can't find or create `%s' called `%s'" -msgstr "kan niet vinden of scheppen `%s' genaamd `%s'" - -#: translator-group.cc:230 -#, c-format -msgid "can't find or create: `%s'" -msgstr "kan niet vinden of scheppen: `%s'" +#: tuplet-bracket.cc:448 +msgid "Killing tuplet bracket across linebreak." +msgstr "Vermoorden van tuplet haak over regelbreuk." -#: vaticana-ligature.cc:49 +#: vaticana-ligature.cc:92 msgid "ascending vaticana style flexa" -msgstr "" - -#: vaticana-ligature.cc:219 -msgid "Vaticana_ligature:thickness undefined; assuming 1.4" -msgstr "" - -#: vaticana-ligature.cc:233 -msgid "Vaticana_ligature:x-offset undefined; assuming 0.0" -msgstr "" +msgstr "stijgende vaticana stijl flexa" -#: vaticana-ligature.cc:258 -msgid "Vaticana_ligature: (delta_pitch == 0)" -msgstr "" +#: vaticana-ligature.cc:181 +msgid "Vaticana_ligature: zero join (delta_pitch == 0)" +msgstr "Vaticana_ligature: nulsamenvoeging (delta_pitch == 0)" -#: vaticana-ligature.cc:271 -msgid "Vaticana_ligature:delta-pitch -> ignoring join" +#: vaticana-ligature-engraver.cc:342 +#, c-format +msgid "" +"ignored prefix (es) `%s' of this head according to restrictions of the " +"selected ligature style" msgstr "" +"negeren van voorvoegsel (es) `%s' van dit bolletje volgens restricties van de\n" +"geselecteerde ligatuurstijl" -#: vaticana-ligature-engraver.cc:477 +#: vaticana-ligature-engraver.cc:572 #, c-format msgid "Vaticana_ligature_engraver: setting `spacing-increment = %f': ptr=%ul" -msgstr "" +msgstr "Vaticana_ligature_engraver: instelling `spacing-increment = %f': ptr=%ul" -#: volta-engraver.cc:112 +#: volta-engraver.cc:140 msgid "No volta spanner to end" msgstr "Geen volta spanner te beëindigen" -#: volta-engraver.cc:123 +#: volta-engraver.cc:151 msgid "Already have a volta spanner. Stopping that one prematurely." msgstr "Heb al een volta spanner. Stop die nu voortijdig." -#: volta-engraver.cc:127 +#: volta-engraver.cc:155 msgid "Also have a stopped spanner. Giving up." msgstr "Heb ook al een gestopte spanner. Geef op." -#: parser.yy:480 -#, fuzzy +#: parser.yy:114 +msgid "Tag must be symbol or list of symbols." +msgstr "Merk moet symbool of lijst van symbolen zijn." + +#: parser.yy:513 msgid "Identifier should have alphabetic characters only" -msgstr "Identifier zou alleen alfabetische tekens moeten hebben" +msgstr "Identifier mag uitsluitend alfabetische tekens hebben" -#: parser.yy:779 +#: parser.yy:776 msgid "More alternatives than repeats. Junking excess alternatives." msgstr "" "Meer alternatieven dan herhalingen. Schroot overvloedige alternatieven." -#: parser.yy:861 parser.yy:868 -msgid "pplycontext takes function argument" -msgstr "" - -#: parser.yy:877 -msgid "Second argument must be a symbol" -msgstr "Tweede argument moet een symbool zijn" - -#: parser.yy:882 -#, fuzzy -msgid "First argument must be a procedure taking one argument" -msgstr "Eerste argument moet een procedure zijn met 1 argument" +#: parser.yy:856 parser.yy:863 +msgid "\\applycontext takes function argument" +msgstr "\\applycontext neemt een functieargument" -#: parser.yy:1009 -msgid "pply takes function argument" -msgstr "" - -#: parser.yy:1501 -msgid "Expecting string as script definition" -msgstr "Verwacht string voor script definitie" +#: parser.yy:1013 +msgid "\\apply takes function argument" +msgstr "\\apply neemt een functieargument" -#: parser.yy:1598 -msgid "Expecting musical-pitch value" -msgstr "Verwacht musical-pitch waarde" +#: parser.yy:1376 +msgid "Can't find music" +msgstr "Kan geen muziek vinden" -#: parser.yy:1609 -msgid "Must have duration object" -msgstr "Moet duur object hebben" +#: parser.yy:1494 +msgid "Second argument must be pitch list." +msgstr "Tweede argument moet een toonhoogtelijst zijn." -#: parser.yy:1618 parser.yy:1626 +#: parser.yy:1531 parser.yy:1536 parser.yy:2069 msgid "Have to be in Lyric mode for lyrics" msgstr "Moet in Lyric modus zijn voor liedteksten" -#: parser.yy:1798 parser.yy:1853 +#: parser.yy:1621 +msgid "Expecting string as script definition" +msgstr "Verwacht string voor script definitie" + +#: parser.yy:1828 parser.yy:1883 #, c-format msgid "not a duration: %d" msgstr "geen duur: %d" -#: parser.yy:1949 +#: parser.yy:1979 msgid "Have to be in Note mode for notes" msgstr "Moet in Note modus zijn voor noten" -#: parser.yy:2032 +#: parser.yy:2084 msgid "Have to be in Chord mode for chords" msgstr "Moet in Chord modus zijn voor accoorden" -#: parser.yy:2171 +#: parser.yy:2231 msgid "need integer number arg" msgstr "heb integer getal arg nogig" -#: parser.yy:2316 +#: parser.yy:2382 msgid "Suspect duration found following this beam" -msgstr "" +msgstr "Verdachte lengte gevonden volgend op deze waardestreep" -#: lexer.ll:186 +#: lexer.ll:184 +#, c-format +msgid "input renamed to: `%s'" +msgstr "invoer hernoemd naar: `%s'" + +#: lexer.ll:210 msgid "EOF found inside a comment" msgstr "EOF gevonden in een kommentaar" -#: lexer.ll:200 -msgid "\\maininput disallowed outside init files" +#: lexer.ll:225 +msgid "\\maininput not allowed outside init files" msgstr "\\maininput niet toegestaan buiten init bestanden" -#: lexer.ll:224 +#: lexer.ll:249 #, c-format msgid "wrong or undefined identifier: `%s'" msgstr "verkeerde of ongedefiniëerde identifier: `%s'" #. backup rule -#: lexer.ll:233 +#: lexer.ll:258 msgid "Missing end quote" msgstr "Aanhalingsteken sluiten mist" -#. backup rule -#: lexer.ll:255 lexer.ll:259 -msgid "white expected" -msgstr "wit verwacht" - -#: lexer.ll:268 -msgid "Can't evaluate Scheme in safe mode" -msgstr "Kan Scheme niet evalueren in veilige modus" - -#: lexer.ll:397 lexer.ll:487 -#, fuzzy +#: lexer.ll:400 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:574 +#: lexer.ll:501 +msgid "Brace found at end of markup. Did you forget a space?" +msgstr "Accolade gevonden aan het eind van een opmaak. Een spatie vergeten?" + +#: lexer.ll:584 #, c-format msgid "invalid character: `%c'" msgstr "ongeldig teken: `%c'" -#: lexer.ll:651 +#: lexer.ll:656 lexer.ll:657 #, c-format msgid "unknown escaped string: `\\%s'" msgstr "onbekende ontsnapte string: `\\%s'" -#: lexer.ll:742 -#, fuzzy, c-format +#: lexer.ll:754 lexer.ll:755 +#, c-format msgid "Incorrect lilypond version: %s (%s, %s)" -msgstr "verkeerde lilypond versie: %s (%s, %s)" +msgstr "Verkeerde lilypond versie: %s (%s, %s)" -#: lexer.ll:743 -#, fuzzy +#: lexer.ll:755 lexer.ll:756 msgid "Consider updating the input with the convert-ly script" -msgstr "Overweeg de invoer te converteren met het convert-ly script" - -#~ msgid "Fetch and rebuild from latest source package" -#~ msgstr "Grijp en herbouw van meest recente source pakket" - -#~ msgid "unpack and build in DIR [%s]" -#~ msgstr "pak uit en bouw in DIR [%s]" - -#~ msgid "execute COMMAND, subtitute:" -#~ msgstr "voer COMMAND uit, substitueer:" - -#~ msgid "%b: build root" -#~ msgstr "%b: bouw-root" - -#~ msgid "%n: package name" -#~ msgstr "%n: pakketnaam" - -#~ msgid "%r: release directory" -#~ msgstr "%r: uitgave directory" - -#~ msgid "%t: tarball" -#~ msgstr "%t: tar-bal" - -#~ msgid "%v: package version" -#~ msgstr "%v: pakketversie" - -#~ msgid "keep all output, and name the directory %s" -#~ msgstr "bewaar alle uitvoer, en noem de directory %s" - -#~ msgid "upon failure notify EMAIL[,EMAIL]" -#~ msgstr "bij fout bericht EMAIL[,EMAIL]" - -#~ msgid "remove previous build" -#~ msgstr "verwijder vorige bouw" - -#~ msgid "fetch and build URL [%s]" -#~ msgstr "grijp en bouw URL [%s]" - -#~ msgid "Listing `%s'..." -#~ msgstr "Lijst van `%s'" - -#~ msgid "latest is: %s" -#~ msgstr "meest recente is: %s" - -#~ msgid "relax, %s is up to date" -#~ msgstr "ontspan, %s is bij de tijd" - -#~ msgid "Fetching `%s'..." -#~ msgstr "Grijpen van `%s'..." - -#~ msgid "Building `%s'..." -#~ msgstr "Bouwen van `%s'..." - -#~ msgid "invalid subtraction: not part of chord: %s" -#~ 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" - -#~ msgid "This was the other key definition." -#~ msgstr "Dit was de andere toonsoort definitie." - -#~ msgid ", at " -#~ msgstr ", bij " - -#~ msgid "Pitch arguments out of range" -#~ msgstr "Toonhoogte argumenten buiten schaal" - -#, fuzzy -#~ msgid "Putting slur over rest." -#~ msgstr "Zet bindingsboog over rust. Negeer." - -#~ msgid "Slur over rest?" -#~ msgstr "Boogje over rust?" - -#~ msgid "Text_spanner too small" -#~ msgstr "Text_spanner te klein" - -#~ msgid "Can't specify direction for this request" -#~ msgstr "Kan richting voor dit verzoek niet specificeren" - -#~ msgid "Generate .dvi with LaTeX for LilyPond" -#~ msgstr "Genereer .dvi met LaTeX voor LilyPond" - -#~ msgid "can't map file" -#~ msgstr "kan bestand niet inkaarten" - -#~ msgid "This binary was compiled with the following options:" -#~ msgstr "Dit programma is gecompileerd met de volgende instellingen:" - -#~ msgid "Expecting %d arguments" -#~ msgstr "Verwacht %d argumenten" - -#~ msgid "EOF in a string" -#~ msgstr "EOF in een string" - -#~ msgid "" -#~ msgstr "" - -#~ msgid "programming error: " -#~ msgstr "programmeerfout: " - -#~ msgid "can't find start of beam" -#~ msgstr "kan start van waardestreep niet vinden" - -#~ msgid "weird beam vertical offset" -#~ msgstr "rare verticale waardestreep verplaatsing" - -#~ msgid "unknown spacing pair `%s', `%s'" -#~ msgstr "onbekend ruimte paar `%s', `%s'" - -#~ msgid "evalute EXPR as Scheme after .scm init is read" -#~ msgstr "evalueer EXPR als Scheme nadat .scm init is gelezen" - -#~ msgid "ly_get_mus_property (): Not a Music" -#~ msgstr "ly_get_mus_property (): Geen Muziek" - -#~ msgid "ly_set_mus_property (): Not a symbol" -#~ msgstr "ly_set_mus_property (): Geen symbool" - -#~ msgid "ly_set_mus_property (): not of type Music" -#~ msgstr "ly_set_mus_property (): niet van type Muziek" - -#~ msgid "ly_make_music (): Not a string" -#~ msgstr "ly_make_music (): Geen string" - -#~ msgid "ly_music_name (): Not a music expression" -#~ msgstr "ly_make_music (): Geen muziek expressie" - -#~ msgid "" -#~ "`%s' is deprecated. Use\n" -#~ " \\property %s.%s \\override #'%s = #%s" -#~ msgstr "" -#~ "`%s' is verouderd. Gebruik\n" -#~ " \\property %s.%s \\override #'%s = #%s" - -#~ 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" - -#~ msgid "too many notes for rest collision" -#~ msgstr "te veel noten voor bosting met rusten" - -#~ msgid "Scheme options:" -#~ msgstr "Scheme opties:" - -#~ msgid "ly-get-trans-property: expecting a Translator_group argument" -#~ msgstr "ly-get-trans-property: verwacht een Translator_group argument" - -#~ msgid "Oldest supported input version: %s" -#~ msgstr "Oudst ondersteunde invoerversie: %s" - -#~ msgid "%s is far from completed. Not all constructs are recognised." -#~ msgstr "%s is nog lang niet af. Niet alle constructies worden herkend." - -#~ msgid "writing header field `%s' to `%s'..." -#~ msgstr "Schijven van kop veld %s naar bestand %s..." - -#~ msgid "#32 in quarter: %d" -#~ msgstr "#32 in kwart: %d" - -#~ msgid "LY output to `%s'..." -#~ msgstr "LY uitvoer naar `%s'..." - -#~ msgid "track %d:" -#~ msgstr "spoor %d:" - -#~ msgid "Processing..." -#~ msgstr "Verwerken..." - -#~ msgid "Creating voices..." -#~ msgstr "Scheppen van stemmen..." - -#~ msgid "track " -#~ msgstr "spoor " - -#~ msgid "NOT Filtering tempo..." -#~ msgstr "NIET Filteren van tempo..." - -#~ msgid "NOT Quantifying columns..." -#~ msgstr "NIET Kwantificeren van kolommen..." - -#~ msgid "Quantifying columns..." -#~ msgstr "Kwantificeren van kolommen..." - -#~ msgid "Settling columns..." -#~ msgstr "Zetten van kolommen..." - -#~ msgid "% MIDI copyright:" -#~ msgstr "% MIDI copyright:" - -#~ msgid "% MIDI instrument:" -#~ msgstr "% MIDI instrument:" - -#~ msgid "lily indent level: %d" -#~ msgstr "lelie inspring diepte: %d" - -#~ msgid "% Creator: " -#~ msgstr "% Schepper: " - -#~ msgid "% Automatically generated" -#~ msgstr "% Automatisch gegenereerd" - -#~ msgid "% from input file: " -#~ msgstr "% van invoerbestand: " - -#~ msgid "write exact durations, e.g.: a4*385/384" -#~ msgstr "schrijf exacte duren, bijv.: a4*385/384" - -#~ msgid "enable debugging output" -#~ msgstr "maak ontluis uitvoer mogelijk" - -#~ msgid "don't output tuplets, double dots or rests, smallest is 32" -#~ msgstr "maak geen n-olen of dubbel gepunkteerd, kortste is 32" - -#~ msgid "set FILE as default output" -#~ msgstr "zet BESTAND als verstek uitvoer" - -#~ msgid "don't output tuplets" -#~ msgstr "maak geen n-olen" - -#~ msgid "be quiet" -#~ msgstr "wees stil" - -#~ msgid "don't output rests or skips" -#~ msgstr "maak geen rusten of skips" - -#~ msgid "set smallest duration" -#~ msgstr "zet kortste duur" - -#~ msgid "don't timestamp the output" -#~ msgstr "geen tijdsstempel in de uitvoer" - -#~ msgid "assume no double dotted notes" -#~ msgstr "ga niet uit van dubbel gepunteerde noten" - -#~ msgid "Usage: %s [OPTIONS]... [FILE]" -#~ msgstr "Gebruik: %s [OPTIE]... [BESTAND]" - -#~ msgid "Translate MIDI-file to lilypond" -#~ msgstr "Vertaal MIDI-bestand naar lilypond" - -#~ msgid "no_double_dots: %d\n" -#~ msgstr "no_double_dots: %d\n" - -#~ msgid "no_rests: %d\n" -#~ msgstr "no_rests: %d\n" - -#~ msgid "no_quantify_b_s: %d\n" -#~ msgstr "no_quantify_b_s: %d\n" - -#~ msgid "no_smaller_than: %d (1/%d)\n" -#~ msgstr "no_smaller_than: %d (1/%d)\n" - -#~ msgid "no_tuplets: %d\n" -#~ msgstr "no_tuplets: %d\n" - -#~ msgid "zero length string encountered" -#~ msgstr "string van lengte nul tegengekomen" - -#~ msgid "MIDI header expected" -#~ msgstr "MIDI kop verwacht" - -#~ msgid "invalid header length" -#~ msgstr "ongeldige koplengte" - -#~ msgid "invalid MIDI format" -#~ msgstr "ongeldig MIDI formaat" - -#~ msgid "invalid number of tracks" -#~ msgstr "ongeldig aantal sporen" - -#~ msgid "can't handle non-metrical time" -#~ msgstr "kan niet-metrische tijd niet aan" - -#~ msgid "Junking note-end event: channel = %d, pitch = %d" -#~ msgstr "Schroot noot-eind gebeurtenis: kanaal = %d, toonhoogte = %d" - -#~ msgid "invalid running status" -#~ msgstr "ongeldige lopende status" - -#~ msgid "unimplemented MIDI meta-event" -#~ msgstr "MIDI meta-gebeurtenis niet geïmplementeerd" - -#~ msgid "invalid MIDI event" -#~ msgstr "ongeldige MIDI gebeurtenis" - -#~ msgid "MIDI track expected" -#~ msgstr "MIDI spoor verwacht" - -#~ msgid "invalid track length" -#~ msgstr "ongeldige spoorlengte" - -#~ msgid "no Grace context available" -#~ 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." +msgstr "Overweeg het actualiseren van de invoer met het convert-ly script" diff --git a/python/lilylib.py b/python/lilylib.py index 1ae32ad41a..b3dde26a20 100644 --- a/python/lilylib.py +++ b/python/lilylib.py @@ -107,7 +107,7 @@ def identify (port): def warranty (): identify (sys.stdout) sys.stdout.write ('\n') - sys.stdout.write (_ ('Copyright (c) %s by' % ' 1998--2003')) + sys.stdout.write (_ ("Copyright (c) %s by") % '1998--2004') sys.stdout.write ('\n') map (lambda x: sys.stdout.write (' %s\n' % x), __main__.copyright) sys.stdout.write ('\n') @@ -120,10 +120,10 @@ def progress (s): sys.stderr.write (s) def warning (s): - sys.stderr.write (__main__.program_name + ": " + _ ("warning: ") + s + '\n') + sys.stderr.write (__main__.program_name + ": " + _ ("warning: %s") % s + '\n') def error (s): - sys.stderr.write (__main__.program_name + ": " + _ ("error: ") + s + '\n') + sys.stderr.write (__main__.program_name + ": " + _ ("error: %s") % s + '\n') def exit (i): if __main__.verbose_p: diff --git a/scripts/lilypond-book.py b/scripts/lilypond-book.py index dbf1080850..1cec868aa0 100644 --- a/scripts/lilypond-book.py +++ b/scripts/lilypond-book.py @@ -66,7 +66,8 @@ pseudo_filter_p = 0 original_dir = os.getcwd () -help_summary = _ ("""Process LilyPond snippets in hybrid HTML, LaTeX or texinfo document. Example usage: +help_summary = _ ("""Process LilyPond snippets in hybrid HTML, LaTeX or texinfo document. +Example usage: lilypond-book --filter="tr '[a-z]' '[A-Z]'" BOOK lilypond-book --filter="convert-ly --no-version --from=2.0.0 -" BOOK @@ -444,7 +445,7 @@ def find_file (name): full = os.path.join (i, name) if os.path.exists (full): return full - ly.error (_ ('file not found: %s\n' % name)) + ly.error (_ ('file not found: %s') % name + '\n') ly.exit (1) return '' diff --git a/scripts/lilypond.py b/scripts/lilypond.py index 0b9bd54102..eb4e959e52 100644 --- a/scripts/lilypond.py +++ b/scripts/lilypond.py @@ -140,7 +140,7 @@ option_definitions = [ ('', '', 'no-ps', _ ("do not generate PostScript output")), ('', 'p', 'pdf', _ ("generate PDF output")), ('', 'P', 'postscript', _ ("generate PostScript output")), - ('', '', 'pdftex', _ ("use pdflatex to generate a PDF output")), + ('', '', 'pdftex', _ ("use pdflatex to generate PDF output")), ('', '', 'png', _("generate PNG page images")), ('', '', 'preview', _ ("make a picture of the first system")), ('', '', 'psgz', _ ("generate PS.GZ")), diff --git a/scripts/midi2ly.py b/scripts/midi2ly.py index 1130a0a12d..b679a364d4 100644 --- a/scripts/midi2ly.py +++ b/scripts/midi2ly.py @@ -133,14 +133,13 @@ def identify (): def warranty (): identify () sys.stdout.write ('\n') - sys.stdout.write (_ ('Copyright (c) %s by' % ' 2001--2004')) + sys.stdout.write (_ ('Copyright (c) %s by') % ' 2001--2004') sys.stdout.write ('\n') sys.stdout.write (' Han-Wen Nienhuys') sys.stdout.write (' Jan Nieuwenhuizen') - sys.stdout.write ('\n') - sys.stdout.write (_ (r''' -Distributed under terms of the GNU General Public License. It comes with -NO WARRANTY.''')) + sys.stdout.write ('\n\n') + sys.stdout.write (_ ("Distributed under terms of the GNU General Public License.")) + sys.stdout.write (_ ("It comes with NO WARRANTY.")) sys.stdout.write ('\n') def progress (s): diff --git a/scripts/mup2ly.py b/scripts/mup2ly.py index bec71107cd..195b633007 100644 --- a/scripts/mup2ly.py +++ b/scripts/mup2ly.py @@ -127,14 +127,13 @@ def identify (): def warranty (): identify () sys.stdout.write ('\n') - sys.stdout.write (_ ('Copyright (c) %s by' % ' 2001--2004')) + sys.stdout.write (_ ('Copyright (c) %s by') % '2001--2004') sys.stdout.write ('\n') sys.stdout.write (' Han-Wen Nienhuys') sys.stdout.write (' Jan Nieuwenhuizen') - sys.stdout.write ('\n') - sys.stdout.write (_ (r''' -Distributed under terms of the GNU General Public License. It comes with -NO WARRANTY.''')) + sys.stdout.write ('\n\n') + sys.stdout.write (_ ("Distributed under terms of the GNU General Public License.")) + sys.stdout.write (_ ("It comes with NO WARRANTY.")) sys.stdout.write ('\n') def progress (s): diff --git a/scripts/old-lilypond-book.py b/scripts/old-lilypond-book.py index ab4bc7b796..2ce5834341 100644 --- a/scripts/old-lilypond-book.py +++ b/scripts/old-lilypond-book.py @@ -115,7 +115,7 @@ preview_resolution = 90 ## FIXME ## do -P or -p by default? ##help_summary = _ ("Run LilyPond using LaTeX for titling") -help_summary = _ ("Process LilyPond snippets in hybrid html, LaTeX or texinfo document") +help_summary = _ ("Process LilyPond snippets in hybrid HTML, LaTeX or texinfo document") copyright = ('Tom Cato Amundsen ', 'Han-Wen Nienhuys ')