From 744614ec4497e540fbaa6ad9bf6e842f4b99442a Mon Sep 17 00:00:00 2001 From: Jan Nieuwenhuizen Date: Fri, 22 Dec 2006 20:02:05 +0100 Subject: [PATCH] initial. --- buildscripts/mutopia-index.py | 2 +- lily/all-font-metrics.cc | 2 +- lily/auto-change-iterator.cc | 2 +- lily/beam-quanting.cc | 2 +- lily/change-iterator.cc | 6 +- lily/constrained-breaking.cc | 4 +- lily/context.cc | 6 +- lily/dynamic-engraver.cc | 2 +- lily/freetype.cc | 2 +- lily/grace-engraver.cc | 2 +- lily/gregorian-ligature-engraver.cc | 4 +- lily/includable-lexer.cc | 2 +- lily/instrument-name-engraver.cc | 2 +- lily/ligature-engraver.cc | 2 +- lily/lily-guile.cc | 4 +- lily/lily-parser-scheme.cc | 4 +- lily/main.cc | 22 +- lily/midi-stream.cc | 4 +- lily/new-fingering-engraver.cc | 2 +- lily/note-column.cc | 2 +- lily/open-type-font.cc | 4 +- lily/page-turn-page-breaking.cc | 2 +- lily/piano-pedal-engraver.cc | 6 +- lily/piano-pedal-performer.cc | 2 +- lily/relocate.cc | 4 +- lily/rest-collision.cc | 2 +- lily/self-aligment-interface.cc | 4 +- lily/slur-engraver.cc | 2 +- lily/slur-scoring.cc | 2 +- lily/source-file.cc | 2 +- lily/spacing-basic.cc | 2 +- lily/span-dynamic-performer.cc | 2 +- lily/text-spanner-engraver.cc | 2 +- lily/translator-group.cc | 2 +- lily/trill-spanner-engraver.cc | 2 +- lily/volta-engraver.cc | 2 +- po/cs.po | 118 +-- po/da.po | 122 +-- po/de.po | 118 +-- po/es.po | 116 +-- po/fi.po | 98 +- po/fr.po | 98 +- po/it.po | 134 +-- po/ja.po | 128 +-- po/lilypond.pot | 927 ++++++++----------- po/nl.po | 1300 ++++++++++++++------------- po/ru.po | 128 +-- po/rw.po | 114 +-- po/sv.po | 122 +-- po/tr.po | 114 +-- po/zh_TW.po | 106 +-- python/lilylib.py | 2 +- python/midi.c | 2 +- scm/define-music-types.scm | 2 +- scm/document-backend.scm | 2 +- scm/documentation-lib.scm | 2 +- scm/framework-ps.scm | 10 +- scm/music-functions.scm | 2 +- scm/output-svg.scm | 2 +- scm/output-tex.scm | 2 +- scripts/abc2ly.py | 2 +- scripts/convert-ly.py | 4 +- scripts/etf2ly.py | 4 +- scripts/lilypond-book.py | 2 +- scripts/musicxml2ly.py | 2 +- 65 files changed, 1872 insertions(+), 2031 deletions(-) diff --git a/buildscripts/mutopia-index.py b/buildscripts/mutopia-index.py index 8bb5af36ab..3e68ae8d3e 100644 --- a/buildscripts/mutopia-index.py +++ b/buildscripts/mutopia-index.py @@ -148,7 +148,7 @@ hr { border:0; height:1; color: #000000; background-color: #000000; }\n pictures = ['jpeg', 'png', 'xpm'] lst.write ('\n') else: - print "can't find" , `file_name` + print cannot find" , `file_name` list_item (base + ext, 'The input', 'ASCII') diff --git a/lily/all-font-metrics.cc b/lily/all-font-metrics.cc index bf2aadd4bb..61b0a60e6f 100644 --- a/lily/all-font-metrics.cc +++ b/lily/all-font-metrics.cc @@ -170,7 +170,7 @@ All_font_metrics::find_font (string name) if (!f) { - error (_f ("can't find font: `%s'", name.c_str ())); + error (_f ("cannot find font: `%s'", name.c_str ())); } return f; diff --git a/lily/auto-change-iterator.cc b/lily/auto-change-iterator.cc index a935bfc05a..04ed126556 100644 --- a/lily/auto-change-iterator.cc +++ b/lily/auto-change-iterator.cc @@ -60,7 +60,7 @@ Auto_change_iterator::change_to (Music_iterator *it, SCM to_type_sym, if (current && current->id_string () == to_id) { string msg; - msg += _f ("can't change, already in translator: %s", to_id); + msg += _f ("cannot change, already in translator: %s", to_id); } if (current) diff --git a/lily/beam-quanting.cc b/lily/beam-quanting.cc index a0a1528597..e150a51594 100644 --- a/lily/beam-quanting.cc +++ b/lily/beam-quanting.cc @@ -297,7 +297,7 @@ Beam::quanting (SCM smob, SCM posns) } } if (mindist > 1e5) - programming_error ("can't find quant"); + programming_error ("cannot find quant"); } #endif diff --git a/lily/change-iterator.cc b/lily/change-iterator.cc index 55099a855e..c4eaf62dc9 100644 --- a/lily/change-iterator.cc +++ b/lily/change-iterator.cc @@ -20,7 +20,7 @@ Change_iterator::error (string reason) string to_type = ly_symbol2string (get_music ()->get_property ("change-to-type")); string to_id = ly_scm2string (get_music ()->get_property ("change-to-id")); - string warn1 = _f ("can't change `%s' to `%s'", to_type, to_id) + string warn1 = _f (cannot change `%s' to `%s'", to_type, to_id) + ": " + reason; /* @@ -58,7 +58,7 @@ Change_iterator::process (Moment m) if (current && current->id_string () == to_id) { string msg; - msg += _f ("can't change, already in translator: %s", to_id); + msg += _f (cannot change, already in translator: %s", to_id); } if (current) @@ -79,7 +79,7 @@ Change_iterator::process (Moment m) } else /* FIXME: constant error message. */ - get_music ()->origin ()->warning (_ ("can't find context to switch to")); + get_music ()->origin ()->warning (_ (cannot find context to switch to")); } else { diff --git a/lily/constrained-breaking.cc b/lily/constrained-breaking.cc index 52ed127306..cbc22cfc05 100644 --- a/lily/constrained-breaking.cc +++ b/lily/constrained-breaking.cc @@ -173,7 +173,7 @@ Constrained_breaking::get_solution (vsize start, vsize end, vsize sys_count) { if (brk != end_brk) { - warning (_ ("couldn't find line breaking that satisfies constraints" )); + warning (_ ("cannot find line breaking that satisfies constraints" )); ret.push_back (space_line (brk, end_brk)); } /* build up the good solution */ @@ -190,7 +190,7 @@ Constrained_breaking::get_solution (vsize start, vsize end, vsize sys_count) } } /* if we get to here, just put everything on one line */ - warning (_ ("couldn't find line breaking that satisfies constraints" )); + warning (_ ("cannot find line breaking that satisfies constraints" )); ret.push_back (space_line (0, end_brk)); return ret; } diff --git a/lily/context.cc b/lily/context.cc index d4177e77bf..bd999dea67 100644 --- a/lily/context.cc +++ b/lily/context.cc @@ -148,7 +148,7 @@ Context::create_unique_context (SCM name, string id, SCM operations) ret = daddy_context_->create_unique_context (name, id, operations); else { - warning (_f ("can't find or create new `%s'", + warning (_f (cannot find or create new `%s'", ly_symbol2string (name).c_str ())); ret = 0; } @@ -210,7 +210,7 @@ Context::find_create_context (SCM n, string id, SCM operations) ret = daddy_context_->find_create_context (n, id, operations); else { - warning (_f ("can't find or create `%s' called `%s'", + warning (_f (cannot find or create `%s' called `%s'", ly_symbol2string (n).c_str (), id)); ret = 0; } @@ -385,7 +385,7 @@ Context::get_default_interpreter () Context_def *t = unsmob_context_def (st); if (!t) { - warning (_f ("can't find or create: `%s'", name.c_str ())); + warning (_f (cannot find or create: `%s'", name.c_str ())); t = unsmob_context_def (this->definition_); } diff --git a/lily/dynamic-engraver.cc b/lily/dynamic-engraver.cc index 8f64db1136..81742dcb90 100644 --- a/lily/dynamic-engraver.cc +++ b/lily/dynamic-engraver.cc @@ -183,7 +183,7 @@ Dynamic_engraver::process_music () } else if (accepted_spanevents_drul_[STOP]) { - accepted_spanevents_drul_[STOP]->origin ()->warning (_ ("can't find start of (de)crescendo")); + accepted_spanevents_drul_[STOP]->origin ()->warning (_ (cannot find start of (de)crescendo")); stop_ev = 0; } } diff --git a/lily/freetype.cc b/lily/freetype.cc index 4ee2acb60f..1c0715e7c4 100644 --- a/lily/freetype.cc +++ b/lily/freetype.cc @@ -16,6 +16,6 @@ init_freetype () { int errorcode = FT_Init_FreeType (&freetype2_library); if (errorcode) - error ("can't initialize FreeType"); + error (cannot initialize FreeType"); } diff --git a/lily/grace-engraver.cc b/lily/grace-engraver.cc index b23b168d69..481e4a9cb4 100644 --- a/lily/grace-engraver.cc +++ b/lily/grace-engraver.cc @@ -81,7 +81,7 @@ Grace_engraver::consider_change_grace_settings () } else { - programming_error ("can't find context"); + programming_error (cannot find context"); scm_display (context_name, scm_current_error_port ()); } } diff --git a/lily/gregorian-ligature-engraver.cc b/lily/gregorian-ligature-engraver.cc index 9a7efcb4a5..0dfdbc0850 100644 --- a/lily/gregorian-ligature-engraver.cc +++ b/lily/gregorian-ligature-engraver.cc @@ -209,7 +209,7 @@ provide_context_info (vector primitives) if (prefix_set & PES_OR_FLEXA) if (!i) // ligature may not start with 2nd head of pes or flexa - primitive->warning (_ ("can't apply `\\~' on first head of ligature")); + primitive->warning (_ (cannot apply `\\~' on first head of ligature")); else if (pitch > prev_pitch) // pes { prev_context_info |= PES_LOWER; @@ -221,7 +221,7 @@ provide_context_info (vector primitives) context_info |= FLEXA_RIGHT; } else // (pitch == prev_pitch) - primitive->warning (_ ("can't apply `\\~' on heads with identical pitch")); + primitive->warning (_ (cannot apply `\\~' on heads with identical pitch")); if (prev_prefix_set & DEMINUTUM) context_info |= AFTER_DEMINUTUM; diff --git a/lily/includable-lexer.cc b/lily/includable-lexer.cc index cb851575ba..777615e970 100644 --- a/lily/includable-lexer.cc +++ b/lily/includable-lexer.cc @@ -57,7 +57,7 @@ Includable_lexer::new_input (string name, Sources *sources) Source_file *file = sources->get_file (&name); if (!file) { - string msg = _f ("can't find file: `%s'", name); + string msg = _f (cannot find file: `%s'", name); msg += "\n"; msg += _f ("(search path: `%s')", sources->path_->to_string ().c_str ()); diff --git a/lily/instrument-name-engraver.cc b/lily/instrument-name-engraver.cc index a256b8beb1..40b8f0dfac 100644 --- a/lily/instrument-name-engraver.cc +++ b/lily/instrument-name-engraver.cc @@ -98,7 +98,7 @@ Instrument_name_engraver::start_spanner () if (system) Axis_group_interface::add_element (system, text_spanner_); else - text_spanner_->programming_error ("can't find root system"); + text_spanner_->programming_error (cannot find root system"); } diff --git a/lily/ligature-engraver.cc b/lily/ligature-engraver.cc index ab7dfebadb..41cb3b8139 100644 --- a/lily/ligature-engraver.cc +++ b/lily/ligature-engraver.cc @@ -90,7 +90,7 @@ Ligature_engraver::process_music () { if (!ligature_) { - events_drul_[STOP]->origin ()->warning (_ ("can't find start of ligature")); + events_drul_[STOP]->origin ()->warning (_ (cannot find start of ligature")); return; } diff --git a/lily/lily-guile.cc b/lily/lily-guile.cc index d57a9f5730..78fa3af5a4 100644 --- a/lily/lily-guile.cc +++ b/lily/lily-guile.cc @@ -91,7 +91,7 @@ gulp_file_to_string (string fn, bool must_exist, int size) { if (must_exist) { - string e = _f ("can't find file: `%s'", fn); + string e = _f (cannot find file: `%s'", fn); e += " "; e += _f ("(load path: `%s')", global_path.to_string ()); error (e); @@ -456,7 +456,7 @@ type_check_assignment (SCM sym, SCM val, SCM type_symbol) if (type != SCM_EOL && !ly_is_procedure (type)) { - warning (_f ("can't find property type-check for `%s' (%s).", + warning (_f (cannot find property type-check for `%s' (%s).", ly_symbol2string (sym).c_str (), ly_symbol2string (type_symbol).c_str ()) + " " + _ ("perhaps a typing error?")); diff --git a/lily/lily-parser-scheme.cc b/lily/lily-parser-scheme.cc index 83c3826dbd..dd47058451 100644 --- a/lily/lily-parser-scheme.cc +++ b/lily/lily-parser-scheme.cc @@ -103,7 +103,7 @@ LY_DEFINE (ly_parse_file, "ly:parse-file", if (init.length () && global_path.find (init).empty ()) { - warning (_f ("can't find init file: `%s'", init)); + warning (_f (cannot find init file: `%s'", init)); warning (_f ("(search path: `%s')", global_path.to_string ().c_str ())); exit (2); @@ -113,7 +113,7 @@ LY_DEFINE (ly_parse_file, "ly:parse-file", bool error = false; if ((file_name != "-") && file_name.empty ()) { - warning (_f ("can't find file: `%s'", file)); + warning (_f (cannot find file: `%s'", file)); error = true; } else diff --git a/lily/main.cc b/lily/main.cc index 728cd89508..63f4a24263 100644 --- a/lily/main.cc +++ b/lily/main.cc @@ -152,9 +152,9 @@ static Long_option_init options_static[] = { {_i ("BACK"), "backend", 'b', _i ("use backend BACK (gnome, ps,eps,\nscm, svg, tex, texstr)\ndefault: PS")}, - {_i ("SYM=VAL"), "define-default", 'd', - _i ("set a Scheme program option. Uses #t if VAL is not specified\n" - "Try -dhelp for help.")}, + {_i ("SYM[=VAL]"), "define-default", 'd', + _i ("set Scheme program option SYM to VAL (default: #t)\n" + "Use -dhelp for help.")}, {_i ("EXPR"), "evaluate", 'e', _i ("evaluate scheme code")}, /* Bug in option parser: --output =foe is taken as an abbreviation @@ -166,7 +166,7 @@ static Long_option_init options_static[] {0, "png", 0, _i ("generate PNG")}, {0, "ps", 0, _i ("generate PostScript")}, {0, "tex", 0, _i ("generate TeX (tex backend only)")}, - {0, "help", 'h', _i ("print this help")}, + {0, "help", 'h', _i ("show this help and exit")}, {_i ("FIELD"), "header", 'H', _i ("dump a header field to file BASENAME.FIELD")}, {_i ("DIR"), "include", 'I', _i ("add DIR to search path")}, {_i ("FILE"), "init", 'i', _i ("use FILE as init file")}, @@ -178,7 +178,7 @@ static Long_option_init options_static[] {_i ("FILE"), "output", 'o', _i ("write output to FILE (suffix will be added)")}, {0, "preview", 'p', _i ("generate a preview of the first system")}, {0, "safe-mode", 's', _i ("disallow unsafe Scheme and PostScript operations")}, - {0, "version", 'v', _i ("print version number")}, + {0, "version", 'v', _i ("show version number and exit")}, {0, "verbose", 'V', _i ("be verbose")}, {0, "warranty", 'w', _i ("show warranty and copyright")}, {0, 0, 0, 0} @@ -320,7 +320,7 @@ do_chroot_jail () if (errno == 0) error (_f ("no such user: %s", components[USER_NAME])); else - error (_f ("can't get user id from user name: %s: %s", + error (_f (cannot get user id from user name: %s: %s", components[USER_NAME], strerror (errno))); exit (3); @@ -337,7 +337,7 @@ do_chroot_jail () if (errno == 0) error (_f ("no such group: %s", components[GROUP_NAME])); else - error (_f ("can't get group id from group name: %s: %s", + error (_f (cannot get group id from group name: %s: %s", components[GROUP_NAME], strerror (errno))); exit (3); @@ -345,26 +345,26 @@ do_chroot_jail () if (chroot (components[JAIL].c_str ())) { - error (_f ("can't chroot to: %s: %s", components[JAIL], + error (_f (cannot chroot to: %s: %s", components[JAIL], strerror (errno))); exit (3); } if (setgid (gid)) { - error (_f ("can't change group id to: %d: %s", gid, strerror (errno))); + error (_f (cannot change group id to: %d: %s", gid, strerror (errno))); exit (3); } if (setuid (uid)) { - error (_f ("can't change user id to: %d: %s", uid, strerror (errno))); + error (_f (cannot change user id to: %d: %s", uid, strerror (errno))); exit (3); } if (chdir (components[DIR].c_str ())) { - error (_f ("can't change working directory to: %s: %s", components[DIR], + error (_f (cannot change working directory to: %s: %s", components[DIR], strerror (errno))); exit (3); } diff --git a/lily/midi-stream.cc b/lily/midi-stream.cc index d5b62fee59..e6835f42fd 100644 --- a/lily/midi-stream.cc +++ b/lily/midi-stream.cc @@ -25,7 +25,7 @@ Midi_stream::Midi_stream (string file_name) file_name_string_ = file_name; out_file_ = fopen (file_name.c_str (), "wb"); if (!out_file_) - error (_f ("can't open for write: %s: %s", file_name, strerror (errno))); + error (_f (cannot open for write: %s: %s", file_name, strerror (errno))); } Midi_stream::~Midi_stream () @@ -41,7 +41,7 @@ Midi_stream::operator << (string str) size_t written = fwrite (str.data (), sz, n, out_file_); if (written != sz * n) - warning (_ ("can't write to file: `%s'")); + warning (_ (cannot write to file: `%s'")); return *this; } diff --git a/lily/new-fingering-engraver.cc b/lily/new-fingering-engraver.cc index 594f24f337..0474bc88f8 100644 --- a/lily/new-fingering-engraver.cc +++ b/lily/new-fingering-engraver.cc @@ -93,7 +93,7 @@ New_fingering_engraver::acknowledge_rhythmic_head (Grob_info inf) &fingerings_, ev, note_ev); else if (ev->in_event_class ("text-script-event")) - ev->origin ()->warning (_ ("can't add text scripts to individual note heads")); + ev->origin ()->warning (_ (cannot add text scripts to individual note heads")); else if (ev->in_event_class ("script-event")) add_script (inf.grob (), ev, note_ev); else if (ev->in_event_class ("string-number-event")) diff --git a/lily/note-column.cc b/lily/note-column.cc index a53c060069..6a7b0f8ee3 100644 --- a/lily/note-column.cc +++ b/lily/note-column.cc @@ -121,7 +121,7 @@ Note_column::add_head (Grob *me, Grob *h) } if (both) - me->warning (_ ("can't have note heads and rests together on a stem")); + me->warning (_ (cannot have note heads and rests together on a stem")); else Axis_group_interface::add_element (me, h); } diff --git a/lily/open-type-font.cc b/lily/open-type-font.cc index d34654e770..d47d7944e8 100644 --- a/lily/open-type-font.cc +++ b/lily/open-type-font.cc @@ -30,11 +30,11 @@ load_table (char const *tag_str, FT_Face face, FT_ULong *length) { FT_Byte *buffer = (FT_Byte *) malloc (*length); if (buffer == NULL) - error (_f ("can't allocate %lu bytes", *length)); + error (_f (cannot allocate %lu bytes", *length)); error_code = FT_Load_Sfnt_Table (face, tag, 0, buffer, length); if (error_code) - error (_f ("can't load font table: %s", tag_str)); + error (_f (cannot load font table: %s", tag_str)); return buffer; } diff --git a/lily/page-turn-page-breaking.cc b/lily/page-turn-page-breaking.cc index c6a1381f36..911e83467b 100644 --- a/lily/page-turn-page-breaking.cc +++ b/lily/page-turn-page-breaking.cc @@ -202,7 +202,7 @@ Page_turn_page_breaking::calc_subproblem (vsize ending_breakpoint) if (start == 0 && end == 1 && this_start_best.first_page_number_ == 1 && this_start_best.page_count_ > 1) - warning (_ ("couldn't fit the first page turn onto a single page. " + warning (_ ("cannot fit the first page turn onto a single page. " "Consider setting first-page-number to an even number.")); if (this_start_best.demerits_ < best.demerits_) diff --git a/lily/piano-pedal-engraver.cc b/lily/piano-pedal-engraver.cc index 8c919cb36f..353ea91d56 100644 --- a/lily/piano-pedal-engraver.cc +++ b/lily/piano-pedal-engraver.cc @@ -298,7 +298,7 @@ Piano_pedal_engraver::create_text_grobs (Pedal_info *p, bool mixed) if (!mixed) { if (!p->start_ev_) - p->event_drul_[STOP]->origin ()->warning (_f ("can't find start of piano pedal: `%s'", p->type_->base_name_.c_str ())); + p->event_drul_[STOP]->origin ()->warning (_f (cannot find start of piano pedal: `%s'", p->type_->base_name_.c_str ())); else s = scm_cadr (strings); p->start_ev_ = p->event_drul_[START]; @@ -309,7 +309,7 @@ Piano_pedal_engraver::create_text_grobs (Pedal_info *p, bool mixed) if (!mixed) { if (!p->start_ev_) - p->event_drul_[STOP]->origin ()->warning (_f ("can't find start of piano pedal: `%s'", p->type_->base_name_.c_str ())); + p->event_drul_[STOP]->origin ()->warning (_f (cannot find start of piano pedal: `%s'", p->type_->base_name_.c_str ())); else s = scm_caddr (strings); p->start_ev_ = 0; @@ -344,7 +344,7 @@ Piano_pedal_engraver::create_bracket_grobs (Pedal_info *p, bool mixed) { if (!p->bracket_ && p->event_drul_[STOP]) { - string msg = _f ("can't find start of piano pedal bracket: `%s'", p->type_->base_name_.c_str ()); + string msg = _f (cannot find start of piano pedal bracket: `%s'", p->type_->base_name_.c_str ()); p->event_drul_[STOP]->origin ()->warning (msg); p->event_drul_[STOP] = 0; } diff --git a/lily/piano-pedal-performer.cc b/lily/piano-pedal-performer.cc index 67d16d4019..6224b00ab3 100644 --- a/lily/piano-pedal-performer.cc +++ b/lily/piano-pedal-performer.cc @@ -90,7 +90,7 @@ Piano_pedal_performer::process_music () if (p->event_drul_[STOP]) { if (!p->start_event_) - p->event_drul_[STOP]->origin ()->warning (_f ("can't find start of piano pedal: `%s'", pedal_type)); + p->event_drul_[STOP]->origin ()->warning (_f (cannot find start of piano pedal: `%s'", pedal_type)); else { Audio_piano_pedal *a = new Audio_piano_pedal; diff --git a/lily/relocate.cc b/lily/relocate.cc index ac4c31bac4..6e3b2ab71e 100644 --- a/lily/relocate.cc +++ b/lily/relocate.cc @@ -192,7 +192,7 @@ setup_paths (char const *argv0_ptr) #endif /* __MINGW32__ */ if (argv0_abs.empty ()) - programming_error ("can't find absolute argv0."); + programming_error (cannot find absolute argv0."); } string bindir = dir_name (argv0_abs); @@ -355,7 +355,7 @@ read_relocation_file (string filename) char const *cname = filename.c_str (); FILE *f = fopen (cname, "r"); if (!f) - error (_f ("can't open file %s", cname)); + error (_f (cannot open file %s", cname)); while (!feof (f)) { diff --git a/lily/rest-collision.cc b/lily/rest-collision.cc index 3e82328837..040874c6c6 100644 --- a/lily/rest-collision.cc +++ b/lily/rest-collision.cc @@ -148,7 +148,7 @@ Rest_collision::calc_positioning_done (SCM smob) if (d) ordered_rests[d].push_back (rests[i]); else - rests[d]->warning (_ ("can't resolve rest collision: rest direction not set")); + rests[d]->warning (_ (cannot resolve rest collision: rest direction not set")); } Direction d = LEFT; diff --git a/lily/self-aligment-interface.cc b/lily/self-aligment-interface.cc index 4c63ce73d2..175a022547 100644 --- a/lily/self-aligment-interface.cc +++ b/lily/self-aligment-interface.cc @@ -35,7 +35,7 @@ Self_alignment_interface::aligned_on_self (Grob *me, Axis a) { Interval ext (me->extent (me, a)); if (ext.is_empty ()) - programming_error ("can't align on self: empty element"); + programming_error (cannot align on self: empty element"); else return scm_from_double (- ext.linear_combination (scm_to_double (align))); } @@ -106,7 +106,7 @@ Self_alignment_interface::aligned_on_parent (Grob *me, Axis a) Interval ext (me->extent (me, a)); if (ext.is_empty ()) - programming_error ("can't align on self: empty element"); + programming_error (cannot align on self: empty element"); else x -= ext.linear_combination (align); diff --git a/lily/slur-engraver.cc b/lily/slur-engraver.cc index 864ea77473..c3f84e8ff6 100644 --- a/lily/slur-engraver.cc +++ b/lily/slur-engraver.cc @@ -162,7 +162,7 @@ Slur_engraver::process_music () if (events_[STOP]) { if (slurs_.size () == 0) - events_[STOP]->origin ()->warning (_ ("can't end slur")); + events_[STOP]->origin ()->warning (_ (cannot end slur")); end_slurs_ = slurs_; diff --git a/lily/slur-scoring.cc b/lily/slur-scoring.cc index 34e20519c9..4bbfff3adc 100644 --- a/lily/slur-scoring.cc +++ b/lily/slur-scoring.cc @@ -442,7 +442,7 @@ Slur_score_state::get_closest_index (SCM inspect_quants) const } } if (mindist > 1e5) - programming_error ("can't not find quant"); + programming_error (cannot not find quant"); return opt_idx; } diff --git a/lily/source-file.cc b/lily/source-file.cc index 310c7938d3..05b90b4f36 100644 --- a/lily/source-file.cc +++ b/lily/source-file.cc @@ -51,7 +51,7 @@ gulp_file (string filename, int desired_size) FILE *f = fopen (filename.c_str (), "rb"); if (!f) { - warning (_f ("can't open file: `%s'", filename.c_str ())); + warning (_f (cannot open file: `%s'", filename.c_str ())); vector cxx_arr; return cxx_arr; diff --git a/lily/spacing-basic.cc b/lily/spacing-basic.cc index 2cd69fa4ff..735335f63c 100644 --- a/lily/spacing-basic.cc +++ b/lily/spacing-basic.cc @@ -115,7 +115,7 @@ Spacing_spanner::note_spacing (Grob *me, Grob *lc, Grob *rc, if (! shortest_playing_len.to_bool ()) { - programming_error ("can't find a ruling note at " + Paper_column::when_mom (lc).to_string ()); + programming_error (cannot find a ruling note at " + Paper_column::when_mom (lc).to_string ()); shortest_playing_len = 1; } diff --git a/lily/span-dynamic-performer.cc b/lily/span-dynamic-performer.cc index 28e2ea675d..d6ad6d7c5c 100644 --- a/lily/span-dynamic-performer.cc +++ b/lily/span-dynamic-performer.cc @@ -84,7 +84,7 @@ Span_dynamic_performer::process_music () { if (!span_start_event_) { - span_events_[STOP]->origin ()->warning (_ ("can't find start of (de)crescendo")); + span_events_[STOP]->origin ()->warning (_ (cannot find start of (de)crescendo")); span_events_[STOP] = 0; } else diff --git a/lily/text-spanner-engraver.cc b/lily/text-spanner-engraver.cc index 28f88fd76f..89cc76d179 100644 --- a/lily/text-spanner-engraver.cc +++ b/lily/text-spanner-engraver.cc @@ -58,7 +58,7 @@ Text_spanner_engraver::process_music () if (event_drul_[STOP]) { if (!span_) - event_drul_[STOP]->origin ()->warning (_ ("can't find start of text spanner")); + event_drul_[STOP]->origin ()->warning (_ (cannot find start of text spanner")); else { finished_ = span_; diff --git a/lily/translator-group.cc b/lily/translator-group.cc index b25d6154e5..c0aff72021 100644 --- a/lily/translator-group.cc +++ b/lily/translator-group.cc @@ -148,7 +148,7 @@ Translator_group::create_child_translator (SCM sev) { Translator *type = get_translator (scm_car (s)); if (!type) - warning (_f ("can't find: `%s'", ly_symbol2string (scm_car (s)).c_str ())); + warning (_f (cannot find: `%s'", ly_symbol2string (scm_car (s)).c_str ())); else { Translator *tr = type->clone (); diff --git a/lily/trill-spanner-engraver.cc b/lily/trill-spanner-engraver.cc index 3f07d5b5ac..38103cef35 100644 --- a/lily/trill-spanner-engraver.cc +++ b/lily/trill-spanner-engraver.cc @@ -65,7 +65,7 @@ Trill_spanner_engraver::process_music () if (event_drul_[STOP]) { if (!span_) - event_drul_[STOP]->origin ()->warning (_ ("can't find start of trill spanner")); + event_drul_[STOP]->origin ()->warning (_ (cannot find start of trill spanner")); else { finished_ = span_; diff --git a/lily/volta-engraver.cc b/lily/volta-engraver.cc index 41b0c7cc78..0587a011b7 100644 --- a/lily/volta-engraver.cc +++ b/lily/volta-engraver.cc @@ -141,7 +141,7 @@ Volta_engraver::process_music () if (end && !volta_span_) /* fixme: be more verbose. */ - warning (_ ("can't end volta spanner")); + warning (_ (cannot end volta spanner")); else if (end) { end_volta_span_ = volta_span_; diff --git a/po/cs.po b/po/cs.po index 1309db8c54..2fb699c01b 100644 --- a/po/cs.po +++ b/po/cs.po @@ -169,12 +169,12 @@ msgstr "Zpracov #: convert-ly.py:279 source-file.cc:54 #, c-format, python-format -msgid "can't open file: `%s'" +msgid "cannot open file: `%s'" msgstr "nelze otevøít soubor: `%s'" #: convert-ly.py:286 #, fuzzy, python-format -msgid "can't determine version for `%s'. Skipping" +msgid "cannot determine version for `%s'. Skipping" msgstr "nelze nalézt implicitní font: `%s'" #: etf2ly.py:1198 @@ -328,7 +328,7 @@ msgstr "uvoln #: lilypond-book.py:1532 #, fuzzy, python-format -msgid "can't determine format for: %s" +msgid "cannot determine format for: %s" msgstr "nelze nalézt implicitní font: `%s'" #: lilypond-book.py:1543 @@ -518,7 +518,7 @@ msgstr "" #: all-font-metrics.cc:164 #, c-format -msgid "can't find font: `%s'" +msgid "cannot find font: `%s'" msgstr "nelze nalézt font: `%s'" #: all-font-metrics.cc:165 @@ -528,7 +528,7 @@ msgstr "Nahr #: all-font-metrics.cc:172 #, c-format -msgid "can't find default font: `%s'" +msgid "cannot find default font: `%s'" msgstr "nelze nalézt implicitní font: `%s'" #: all-font-metrics.cc:173 includable-lexer.cc:62 lily-parser-scheme.cc:108 @@ -547,7 +547,7 @@ msgstr "" #: auto-change-iterator.cc:62 change-iterator.cc:61 #, fuzzy, c-format -msgid "can't change, already in translator: %s" +msgid "cannot change, already in translator: %s" msgstr "nelze zmìnit `%s' na `%s'" #: axis-group-engraver.cc:82 @@ -612,13 +612,13 @@ msgstr "Nen #: change-iterator.cc:23 #, fuzzy, c-format -msgid "can't change `%s' to `%s'" +msgid "cannot change `%s' to `%s'" msgstr "nelze zmìnit `%s' na `%s'" #. FIXME: constant error message. #: change-iterator.cc:82 #, fuzzy -msgid "can't find context to switch to" +msgid "cannot find context to switch to" msgstr "nelze nalézt kontext `%s'" #. We could change the current translator's id, but that would make @@ -687,12 +687,12 @@ msgstr "" #: context.cc:151 #, fuzzy, c-format -msgid "can't find or create new `%s'" +msgid "cannot find or create new `%s'" msgstr "nelze nalézt nebo vytvoøit: `%s'" #: context.cc:213 #, fuzzy, c-format -msgid "can't find or create `%s' called `%s'" +msgid "cannot find or create `%s' called `%s'" msgstr "nelze nalézt nebo vytvoøit `%s' nazvaný `%s'" #: context.cc:276 @@ -702,7 +702,7 @@ msgstr "" #: context.cc:388 #, c-format -msgid "can't find or create: `%s'" +msgid "cannot find or create: `%s'" msgstr "nelze nalézt nebo vytvoøit: `%s'" #: custos.cc:77 @@ -720,7 +720,7 @@ msgid "Unknown event class %s" msgstr "neznámý pøekladaè: `%s':" #: dynamic-engraver.cc:186 span-dynamic-performer.cc:87 -msgid "can't find start of (de)crescendo" +msgid "cannot find start of (de)crescendo" msgstr "nelze nalézt zaèátek (de)crescenda" #: dynamic-engraver.cc:195 @@ -808,12 +808,12 @@ msgstr "" #. ligature may not start with 2nd head of pes or flexa #: gregorian-ligature-engraver.cc:212 #, fuzzy -msgid "can't apply `\\~' on first head of ligature" +msgid "cannot apply `\\~' on first head of ligature" msgstr "nelze nalézt zaèátek ligatury" #. (pitch == prev_pitch) #: gregorian-ligature-engraver.cc:224 -msgid "can't apply `\\~' on heads with identical pitch" +msgid "cannot apply `\\~' on heads with identical pitch" msgstr "" #: grob-interface.cc:48 @@ -869,7 +869,7 @@ msgstr "" #: includable-lexer.cc:60 lily-guile.cc:96 lily-parser-scheme.cc:115 #, c-format -msgid "can't find file: `%s'" +msgid "cannot find file: `%s'" msgstr "nelze nalézt soubor: `%s'" #: input.cc:112 source-file.cc:168 source-file.cc:183 @@ -878,7 +878,7 @@ msgstr "nezn #: ligature-engraver.cc:95 #, fuzzy -msgid "can't find start of ligature" +msgid "cannot find start of ligature" msgstr "nelze nalézt zaèátek ligatury" #: ligature-engraver.cc:100 @@ -916,7 +916,7 @@ msgstr "(nahr #: lily-guile.cc:439 #, fuzzy, c-format -msgid "can't find property type-check for `%s' (%s)." +msgid "cannot find property type-check for `%s' (%s)." msgstr "Nelze nalézt kontrolu typu vlastnosti pro `%s' (%s)." #: lily-guile.cc:442 @@ -956,7 +956,7 @@ msgstr "nelze vytvo #: lily-parser-scheme.cc:107 #, fuzzy, c-format -msgid "can't find init file: `%s'" +msgid "cannot find init file: `%s'" msgstr "nelze nalézt soubor: `%s'" #: lily-parser-scheme.cc:125 @@ -1198,7 +1198,7 @@ msgstr "takov #: main.cc:324 #, c-format -msgid "can't get user id from user name: %s: %s" +msgid "cannot get user id from user name: %s: %s" msgstr "" #: main.cc:339 @@ -1208,27 +1208,27 @@ msgstr "neexistuj #: main.cc:341 #, fuzzy, c-format -msgid "can't get group id from group name: %s: %s" +msgid "cannot get group id from group name: %s: %s" msgstr "nelze zmìnit `%s' na `%s'" #: main.cc:349 #, fuzzy, c-format -msgid "can't chroot to: %s: %s" +msgid "cannot chroot to: %s: %s" msgstr "nelze vytvoøit adresáø: `%s'" #: main.cc:356 #, fuzzy, c-format -msgid "can't change group id to: %d: %s" +msgid "cannot change group id to: %d: %s" msgstr "nelze zmìnit `%s' na `%s'" #: main.cc:362 #, fuzzy, c-format -msgid "can't change user id to: %d: %s" +msgid "cannot change user id to: %d: %s" msgstr "nelze zmìnit `%s' na `%s'" #: main.cc:368 #, fuzzy, c-format -msgid "can't change working directory to: %s: %s" +msgid "cannot change working directory to: %s: %s" msgstr "nelze vytvoøit adresáø: `%s'" #: main.cc:415 @@ -1321,12 +1321,12 @@ msgstr "" #: midi-stream.cc:28 #, fuzzy, c-format -msgid "can't open for write: %s: %s" +msgid "cannot open for write: %s: %s" msgstr "nelze otevøít soubor: `%s'" #: midi-stream.cc:44 #, fuzzy, c-format -msgid "can't write to file: `%s'" +msgid "cannot write to file: `%s'" msgstr "nelze otevøít soubor: `%s'" #: music-iterator.cc:172 @@ -1344,7 +1344,7 @@ msgid "transposition by %s makes alteration larger than double" msgstr "Transpozice o %s vytváøí více posuvek ne¾ dvì" #: new-fingering-engraver.cc:87 -msgid "can't add text scripts to individual note heads" +msgid "cannot add text scripts to individual note heads" msgstr "" #: new-fingering-engraver.cc:246 @@ -1361,7 +1361,7 @@ msgid "ignoring too many clashing note columns" msgstr "Pøíli¹ mnoho kolizí notových sloupcù. Ignoruji je." #: note-column.cc:123 -msgid "can't have note heads and rests together on a stem" +msgid "cannot have note heads and rests together on a stem" msgstr "" #: note-head.cc:69 @@ -1375,12 +1375,12 @@ msgstr "" #: open-type-font.cc:33 #, fuzzy, c-format -msgid "can't allocate %lu bytes" +msgid "cannot allocate %lu bytes" msgstr "nelze otevøít soubor: `%s'" #: open-type-font.cc:37 #, fuzzy, c-format -msgid "can't load font table: %s" +msgid "cannot load font table: %s" msgstr "nelze nalézt font: `%s'" #: open-type-font.cc:96 @@ -1482,12 +1482,12 @@ msgstr "" #: piano-pedal-engraver.cc:319 piano-pedal-engraver.cc:330 #: piano-pedal-performer.cc:93 #, c-format -msgid "can't find start of piano pedal: `%s'" +msgid "cannot find start of piano pedal: `%s'" msgstr "nelze nalézt zaèátek pedálu piana: `%s'" #: piano-pedal-engraver.cc:377 #, fuzzy, c-format -msgid "can't find start of piano pedal bracket: `%s'" +msgid "cannot find start of piano pedal bracket: `%s'" msgstr "nelze nalézt zaèátek pedálu piana: `%s'" #: program-option.cc:195 @@ -1558,7 +1558,7 @@ msgstr "nelze otev #: relocate.cc:358 #, fuzzy, c-format -msgid "can't open file %s" +msgid "cannot open file %s" msgstr "nelze otevøít soubor: `%s'" #: relocate.cc:388 @@ -1567,7 +1567,7 @@ msgid "Unknown relocation command %s" msgstr "" #: rest-collision.cc:150 -msgid "can't resolve rest collision: rest direction not set" +msgid "cannot resolve rest collision: rest direction not set" msgstr "" #: rest-collision.cc:164 rest-collision.cc:209 @@ -1634,7 +1634,7 @@ msgstr "neukon #: slur-engraver.cc:165 #, fuzzy -msgid "can't end slur" +msgid "cannot end slur" msgstr "nelze nalézt: `%s'" #: source-file.cc:74 @@ -1686,7 +1686,7 @@ msgid "Grob count %d" msgstr "Poèet grobù je %d " #: text-spanner-engraver.cc:60 -msgid "can't find start of text spanner" +msgid "cannot find start of text spanner" msgstr "nelze nalézt zaèátek textového pøeklenutí" #: text-spanner-engraver.cc:72 @@ -1726,7 +1726,7 @@ msgstr "nezn #: translator-group.cc:152 #, c-format -msgid "can't find: `%s'" +msgid "cannot find: `%s'" msgstr "nelze nalézt: `%s'" #: translator.cc:310 @@ -1741,7 +1741,7 @@ msgstr "" #: trill-spanner-engraver.cc:67 #, fuzzy -msgid "can't find start of trill spanner" +msgid "cannot find start of trill spanner" msgstr "nelze nalézt zaèátek textového pøeklenutí" #: trill-spanner-engraver.cc:79 @@ -1785,7 +1785,7 @@ msgstr "Mensural_ligature: (join_left == 0)" #. fixme: be more verbose. #: volta-engraver.cc:143 #, fuzzy -msgid "can't end volta spanner" +msgid "cannot end volta spanner" msgstr "nelze nalézt zaèátek textového pøeklenutí" #: volta-engraver.cc:153 @@ -1972,7 +1972,7 @@ msgstr "" #: define-music-types.scm:737 #, fuzzy, lisp-format -msgid "can't find music object: ~S" +msgid "cannot find music object: ~S" msgstr "nelze nalézt kontext `%s'" #: define-music-types.scm:757 @@ -1991,7 +1991,7 @@ msgstr "" #: document-backend.scm:135 #, fuzzy, lisp-format -msgid "can't find interface for property: ~S" +msgid "cannot find interface for property: ~S" msgstr "nelze nalézt znak èíslo: %d" #: document-backend.scm:145 @@ -2011,7 +2011,7 @@ msgstr "Zapisuji `%s'..." #: documentation-lib.scm:172 #, fuzzy, lisp-format -msgid "can't find description for property ~S (~S)" +msgid "cannot find description for property ~S (~S)" msgstr "nelze nalézt znak èíslo: %d" #: framework-eps.scm:77 framework-eps.scm:78 @@ -2021,12 +2021,12 @@ msgstr "Zapisuji `%s'..." #: framework-ps.scm:278 #, lisp-format -msgid "can't embed ~S=~S" +msgid "cannot embed ~S=~S" msgstr "" #: framework-ps.scm:331 #, lisp-format -msgid "can't extract file matching ~a from ~a" +msgid "cannot extract file matching ~a from ~a" msgstr "" #: framework-ps.scm:348 @@ -2041,12 +2041,12 @@ msgstr "Nev #: framework-ps.scm:610 #, lisp-format -msgid "can't convert to ~S" +msgid "cannot convert to ~S" msgstr "" #: framework-ps.scm:629 framework-ps.scm:632 #, lisp-format -msgid "can't generate ~S using the postscript back-end" +msgid "cannot generate ~S using the postscript back-end" msgstr "" #: framework-ps.scm:639 @@ -2155,7 +2155,7 @@ msgstr "" #: music-functions.scm:745 #, fuzzy, lisp-format -msgid "can't find quoted music `~S'" +msgid "cannot find quoted music `~S'" msgstr "nelze nalézt font: `%s'" #: music-functions.scm:953 @@ -2174,12 +2174,12 @@ msgstr "nedefinovan #: output-svg.scm:132 #, lisp-format -msgid "can't decypher Pango description: ~a" +msgid "cannot decypher Pango description: ~a" msgstr "" #: output-tex.scm:98 #, fuzzy, lisp-format -msgid "can't find ~a in ~a" +msgid "cannot find ~a in ~a" msgstr "nelze nalézt zaèátek ligatury" #: paper.scm:69 @@ -2237,7 +2237,7 @@ msgstr "Spu #~ msgid "no one to print a repeat brace" #~ msgstr "není nikdo, kdo by tiskl repetièní svorku" -#~ msgid "can't find `%s' context" +#~ msgid "cannot find `%s' context" #~ msgstr "nelze nalézt kontext `%s'" #~ msgid "Optimal demerits: %f" @@ -2272,7 +2272,7 @@ msgstr "Spu #~ msgstr "" #~ "%s: TFM soubor má %u parametrù, co¾ je více ne¾ %u, které lze obslou¾it" -#~ msgid "can't find ascii character: %d" +#~ msgid "cannot find ascii character: %d" #~ msgstr "nelze nalézt ascii znak: %d" #~ msgid "no one to print a tuplet start bracket" @@ -2291,7 +2291,7 @@ msgstr "Spu #~ msgstr "Více alternativ ne¾ opakování. Zahazuji nadbyteèné alternativy." #, fuzzy -#~ msgid "can't find signature for music function" +#~ msgid "cannot find signature for music function" #~ msgstr "nelze nalézt kontext `%s'" #~ msgid "Usage: %s [OPTIONS]... FILE" @@ -2354,7 +2354,7 @@ msgstr "Spu #~ msgstr "Zapisuji `%s'..." #, fuzzy -#~ msgid "can't dlopen: %s: %s" +#~ msgid "cannot dlopen: %s: %s" #~ msgstr "nelze otevøít soubor: `%s'" #, fuzzy @@ -2385,7 +2385,7 @@ msgstr "Spu #~ msgstr "nelze vytvoøit adresáø: `%s'" #, fuzzy -#~ msgid "can't handle a percent repeat of length: %s" +#~ msgid "cannot handle a percent repeat of length: %s" #~ msgstr "Nevím, jak zpracovat procentové opakování této délky." #~ msgid "lilypond -e EXPR means:" @@ -2451,7 +2451,7 @@ msgstr "Spu #~ msgstr "nepøíli¹ záva¾ná chyba: " #, fuzzy -#~ msgid "can't find CFF/PFA/PFB font ~S=~S" +#~ msgid "cannot find CFF/PFA/PFB font ~S=~S" #~ msgstr "nelze nalézt font: `%s'" #, fuzzy @@ -2523,11 +2523,11 @@ msgstr "Spu #~ msgstr "FIXME: slouèení zmìn tóniny" #, fuzzy -#~ msgid "kpathsea can't find %s file: `%s'" +#~ msgid "kpathsea cannot find %s file: `%s'" #~ msgstr "Kpathsea nemù¾e nalézt TFM soubor `%s'" #, fuzzy -#~ msgid "kpathsea can't find file: `%s'" +#~ msgid "kpathsea cannot find file: `%s'" #~ msgstr "Kpathsea nemù¾e nalézt TFM soubor `%s'" #, fuzzy @@ -2640,7 +2640,7 @@ msgstr "Spu #~ msgstr "výstup %s se zapisuje do `%s'..." #, fuzzy -#~ msgid "can't find file: `%s.%s'" +#~ msgid "cannot find file: `%s.%s'" #~ msgstr "nelze nalézt soubor: `%s'" #, fuzzy @@ -2795,7 +2795,7 @@ msgstr "Spu #~ msgid "from musical definition: %s" #~ msgstr "z hudební definice: %s" -#~ msgid "can't find start of phrasing slur" +#~ msgid "cannot find start of phrasing slur" #~ msgstr "nelze nalézt zaèátek frázovacího legata" #, fuzzy diff --git a/po/da.po b/po/da.po index 67e0903b99..81fa2360c5 100644 --- a/po/da.po +++ b/po/da.po @@ -167,12 +167,12 @@ msgstr "Behandler \"%s\"..." #: convert-ly.py:279 source-file.cc:54 #, c-format, python-format -msgid "can't open file: `%s'" +msgid "cannot open file: `%s'" msgstr "kan ikke åbne fil: \"%s\"" #: convert-ly.py:286 #, fuzzy, python-format -msgid "can't determine version for `%s'. Skipping" +msgid "cannot determine version for `%s'. Skipping" msgstr "kan ikke finde standardskrifttype: \"%s\"" #: etf2ly.py:1198 @@ -327,7 +327,7 @@ msgstr "slap af, %s er seneste version" #: lilypond-book.py:1532 #, fuzzy, python-format -msgid "can't determine format for: %s" +msgid "cannot determine format for: %s" msgstr "kan ikke finde standardskrifttype: \"%s\"" #: lilypond-book.py:1543 @@ -522,7 +522,7 @@ msgstr "" #: all-font-metrics.cc:164 #, c-format -msgid "can't find font: `%s'" +msgid "cannot find font: `%s'" msgstr "kan ikke finde skrifttype: \"%s\"" #: all-font-metrics.cc:165 @@ -532,7 +532,7 @@ msgstr "Indl #: all-font-metrics.cc:172 #, c-format -msgid "can't find default font: `%s'" +msgid "cannot find default font: `%s'" msgstr "kan ikke finde standardskrifttype: \"%s\"" #: all-font-metrics.cc:173 includable-lexer.cc:62 lily-parser-scheme.cc:108 @@ -551,7 +551,7 @@ msgstr "" #: auto-change-iterator.cc:62 change-iterator.cc:61 #, fuzzy, c-format -msgid "can't change, already in translator: %s" +msgid "cannot change, already in translator: %s" msgstr "kan ikke ændre \"%s\" til \"%s\"" #: axis-group-engraver.cc:82 @@ -616,13 +616,13 @@ msgstr "Ingen mellemrums-indgang fra %s til `%s'" #: change-iterator.cc:23 #, fuzzy, c-format -msgid "can't change `%s' to `%s'" +msgid "cannot change `%s' to `%s'" msgstr "kan ikke ændre \"%s\" til \"%s\"" #. FIXME: constant error message. #: change-iterator.cc:82 #, fuzzy -msgid "can't find context to switch to" +msgid "cannot find context to switch to" msgstr "kan ikke finde omgivelsen \"%s\"" #. We could change the current translator's id, but that would make @@ -690,12 +690,12 @@ msgstr "" #: context.cc:151 #, fuzzy, c-format -msgid "can't find or create new `%s'" +msgid "cannot find or create new `%s'" msgstr "kan ikke finde eller oprette: \"%s\"" #: context.cc:213 #, fuzzy, c-format -msgid "can't find or create `%s' called `%s'" +msgid "cannot find or create `%s' called `%s'" msgstr "kan ikke finde eller oprette \"%s\" kaldet \"%s\"" #: context.cc:276 @@ -705,7 +705,7 @@ msgstr "" #: context.cc:388 #, c-format -msgid "can't find or create: `%s'" +msgid "cannot find or create: `%s'" msgstr "kan ikke finde eller oprette: \"%s\"" #: custos.cc:77 @@ -723,7 +723,7 @@ msgid "Unknown event class %s" msgstr "ukendt oversætter: \"%s\"" #: dynamic-engraver.cc:186 span-dynamic-performer.cc:87 -msgid "can't find start of (de)crescendo" +msgid "cannot find start of (de)crescendo" msgstr "kan ikke finde starten på crescendo/diminuendo" #: dynamic-engraver.cc:195 @@ -811,12 +811,12 @@ msgstr "" #. ligature may not start with 2nd head of pes or flexa #: gregorian-ligature-engraver.cc:212 #, fuzzy -msgid "can't apply `\\~' on first head of ligature" +msgid "cannot apply `\\~' on first head of ligature" msgstr "kan ikke finde start på legatobue" #. (pitch == prev_pitch) #: gregorian-ligature-engraver.cc:224 -msgid "can't apply `\\~' on heads with identical pitch" +msgid "cannot apply `\\~' on heads with identical pitch" msgstr "" #: grob-interface.cc:48 @@ -870,7 +870,7 @@ msgstr "" #: includable-lexer.cc:60 lily-guile.cc:96 lily-parser-scheme.cc:115 #, c-format -msgid "can't find file: `%s'" +msgid "cannot find file: `%s'" msgstr "kan ikke finde fil: \"%s\"" #: input.cc:112 source-file.cc:168 source-file.cc:183 @@ -879,7 +879,7 @@ msgstr "ukendt position" #: ligature-engraver.cc:95 #, fuzzy -msgid "can't find start of ligature" +msgid "cannot find start of ligature" msgstr "kan ikke finde start på legatobue" #: ligature-engraver.cc:100 @@ -916,7 +916,7 @@ msgstr "(indl #: lily-guile.cc:439 #, fuzzy, c-format -msgid "can't find property type-check for `%s' (%s)." +msgid "cannot find property type-check for `%s' (%s)." msgstr "Kan ikke finde typetjek for egenskab af '%s' (%s)." #: lily-guile.cc:442 @@ -957,7 +957,7 @@ msgstr "kan ikke oprette katalog: \"%s\"" #: lily-parser-scheme.cc:107 #, fuzzy, c-format -msgid "can't find init file: `%s'" +msgid "cannot find init file: `%s'" msgstr "kan ikke finde fil: \"%s\"" #: lily-parser-scheme.cc:125 @@ -1200,7 +1200,7 @@ msgstr "indstillingen findes ikke: '%s'" #: main.cc:324 #, c-format -msgid "can't get user id from user name: %s: %s" +msgid "cannot get user id from user name: %s: %s" msgstr "" #: main.cc:339 @@ -1210,27 +1210,27 @@ msgstr "omgivelse findes ikke: %s" #: main.cc:341 #, fuzzy, c-format -msgid "can't get group id from group name: %s: %s" +msgid "cannot get group id from group name: %s: %s" msgstr "kan ikke ændre \"%s\" til \"%s\"" #: main.cc:349 #, fuzzy, c-format -msgid "can't chroot to: %s: %s" +msgid "cannot chroot to: %s: %s" msgstr "kan ikke oprette katalog: \"%s\"" #: main.cc:356 #, fuzzy, c-format -msgid "can't change group id to: %d: %s" +msgid "cannot change group id to: %d: %s" msgstr "kan ikke ændre \"%s\" til \"%s\"" #: main.cc:362 #, fuzzy, c-format -msgid "can't change user id to: %d: %s" +msgid "cannot change user id to: %d: %s" msgstr "kan ikke ændre \"%s\" til \"%s\"" #: main.cc:368 #, fuzzy, c-format -msgid "can't change working directory to: %s: %s" +msgid "cannot change working directory to: %s: %s" msgstr "kan ikke oprette katalog: \"%s\"" #: main.cc:415 @@ -1318,12 +1318,12 @@ msgstr "" #: midi-stream.cc:28 #, fuzzy, c-format -msgid "can't open for write: %s: %s" +msgid "cannot open for write: %s: %s" msgstr "kan ikke åbne fil: \"%s\"" #: midi-stream.cc:44 #, fuzzy, c-format -msgid "can't write to file: `%s'" +msgid "cannot write to file: `%s'" msgstr "kan ikke åbne fil: \"%s\"" #: music-iterator.cc:172 @@ -1341,7 +1341,7 @@ msgid "transposition by %s makes alteration larger than double" msgstr "Transponering med %s medfører løst fortegn større end to" #: new-fingering-engraver.cc:87 -msgid "can't add text scripts to individual note heads" +msgid "cannot add text scripts to individual note heads" msgstr "" #: new-fingering-engraver.cc:246 @@ -1358,7 +1358,7 @@ msgid "ignoring too many clashing note columns" msgstr "For mange overlappende nodekolonner. Ignorerer dem." #: note-column.cc:123 -msgid "can't have note heads and rests together on a stem" +msgid "cannot have note heads and rests together on a stem" msgstr "" #: note-head.cc:69 @@ -1372,12 +1372,12 @@ msgstr "" #: open-type-font.cc:33 #, fuzzy, c-format -msgid "can't allocate %lu bytes" +msgid "cannot allocate %lu bytes" msgstr "kan ikke åbne fil: \"%s\"" #: open-type-font.cc:37 #, fuzzy, c-format -msgid "can't load font table: %s" +msgid "cannot load font table: %s" msgstr "kan ikke finde skrifttype: \"%s\"" #: open-type-font.cc:96 @@ -1480,12 +1480,12 @@ msgstr "" #: piano-pedal-engraver.cc:319 piano-pedal-engraver.cc:330 #: piano-pedal-performer.cc:93 #, c-format -msgid "can't find start of piano pedal: `%s'" +msgid "cannot find start of piano pedal: `%s'" msgstr "kan ikke finde start på pianopedal: \"%s\"" #: piano-pedal-engraver.cc:377 #, fuzzy, c-format -msgid "can't find start of piano pedal bracket: `%s'" +msgid "cannot find start of piano pedal bracket: `%s'" msgstr "kan ikke finde start på pianopedal: \"%s\"" #: program-option.cc:195 @@ -1556,7 +1556,7 @@ msgstr "kan ikke #: relocate.cc:358 #, fuzzy, c-format -msgid "can't open file %s" +msgid "cannot open file %s" msgstr "kan ikke åbne fil: \"%s\"" #: relocate.cc:388 @@ -1565,7 +1565,7 @@ msgid "Unknown relocation command %s" msgstr "" #: rest-collision.cc:150 -msgid "can't resolve rest collision: rest direction not set" +msgid "cannot resolve rest collision: rest direction not set" msgstr "" #: rest-collision.cc:164 rest-collision.cc:209 @@ -1631,7 +1631,7 @@ msgstr "uafsluttet legatobue" #: slur-engraver.cc:165 #, fuzzy -msgid "can't end slur" +msgid "cannot end slur" msgstr "kan ikke finde start på legatobue" #: source-file.cc:74 @@ -1683,7 +1683,7 @@ msgid "Grob count %d" msgstr "Elementantal %d " #: text-spanner-engraver.cc:60 -msgid "can't find start of text spanner" +msgid "cannot find start of text spanner" msgstr "kan ikke finde start på tekstbro" #: text-spanner-engraver.cc:72 @@ -1722,7 +1722,7 @@ msgstr "ukendt overs #: translator-group.cc:152 #, c-format -msgid "can't find: `%s'" +msgid "cannot find: `%s'" msgstr "kan ikke finde: \"%s\"" #: translator.cc:310 @@ -1737,7 +1737,7 @@ msgstr "" #: trill-spanner-engraver.cc:67 #, fuzzy -msgid "can't find start of trill spanner" +msgid "cannot find start of trill spanner" msgstr "kan ikke finde start på tekstbro" #: trill-spanner-engraver.cc:79 @@ -1776,7 +1776,7 @@ msgstr "" #. fixme: be more verbose. #: volta-engraver.cc:143 #, fuzzy -msgid "can't end volta spanner" +msgid "cannot end volta spanner" msgstr "kan ikke finde start på tekstbro" #: volta-engraver.cc:153 @@ -1963,7 +1963,7 @@ msgstr "" #: define-music-types.scm:737 #, fuzzy, lisp-format -msgid "can't find music object: ~S" +msgid "cannot find music object: ~S" msgstr "kan ikke finde omgivelsen \"%s\"" #: define-music-types.scm:757 @@ -1982,7 +1982,7 @@ msgstr "" #: document-backend.scm:135 #, fuzzy, lisp-format -msgid "can't find interface for property: ~S" +msgid "cannot find interface for property: ~S" msgstr "kan ikke finde tegnnummer: %d" #: document-backend.scm:145 @@ -2002,7 +2002,7 @@ msgstr "Skriver \"%s\"..." #: documentation-lib.scm:172 #, fuzzy, lisp-format -msgid "can't find description for property ~S (~S)" +msgid "cannot find description for property ~S (~S)" msgstr "kan ikke finde tegnnummer: %d" #: framework-eps.scm:77 framework-eps.scm:78 @@ -2012,12 +2012,12 @@ msgstr "Skriver \"%s\"..." #: framework-ps.scm:278 #, lisp-format -msgid "can't embed ~S=~S" +msgid "cannot embed ~S=~S" msgstr "" #: framework-ps.scm:331 #, lisp-format -msgid "can't extract file matching ~a from ~a" +msgid "cannot extract file matching ~a from ~a" msgstr "" #: framework-ps.scm:348 @@ -2032,12 +2032,12 @@ msgstr "Kan ikke tolke artikulering \"%s\"" #: framework-ps.scm:610 #, lisp-format -msgid "can't convert to ~S" +msgid "cannot convert to ~S" msgstr "" #: framework-ps.scm:629 framework-ps.scm:632 #, lisp-format -msgid "can't generate ~S using the postscript back-end" +msgid "cannot generate ~S using the postscript back-end" msgstr "" #: framework-ps.scm:639 @@ -2148,7 +2148,7 @@ msgstr "" #: music-functions.scm:745 #, fuzzy, lisp-format -msgid "can't find quoted music `~S'" +msgid "cannot find quoted music `~S'" msgstr "kan ikke finde skrifttype: \"%s\"" #: music-functions.scm:953 @@ -2167,12 +2167,12 @@ msgstr "" #: output-svg.scm:132 #, lisp-format -msgid "can't decypher Pango description: ~a" +msgid "cannot decypher Pango description: ~a" msgstr "" #: output-tex.scm:98 #, fuzzy, lisp-format -msgid "can't find ~a in ~a" +msgid "cannot find ~a in ~a" msgstr "kan ikke finde start på bjælke" #: paper.scm:69 @@ -2223,7 +2223,7 @@ msgstr "" #~ msgid "no one to print a repeat brace" #~ msgstr "der er ingen som kan skrive et gentagelsestegn" -#~ msgid "can't find `%s' context" +#~ msgid "cannot find `%s' context" #~ msgstr "kan ikke finde omgivelsen \"%s\"" #, fuzzy @@ -2251,7 +2251,7 @@ msgstr "" #~ msgstr "" #~ "%s: TFM-fil har %u parametre, hvilket er mere end de %u jeg kan håndtere" -#~ msgid "can't find ascii character: %d" +#~ msgid "cannot find ascii character: %d" #~ msgstr "kan ikke finde ASCII-tegn: %d" #~ msgid "no one to print a tuplet start bracket" @@ -2271,7 +2271,7 @@ msgstr "" #~ "Flere alternativer end gentagelser. Stryger tiloversblevne alternativer." #, fuzzy -#~ msgid "can't find signature for music function" +#~ msgid "cannot find signature for music function" #~ msgstr "kan ikke finde omgivelsen \"%s\"" #~ msgid "Usage: %s [OPTIONS]... FILE" @@ -2332,7 +2332,7 @@ msgstr "" #~ msgstr "Skriver \"%s\"..." #, fuzzy -#~ msgid "can't dlopen: %s: %s" +#~ msgid "cannot dlopen: %s: %s" #~ msgstr "kan ikke åbne fil: \"%s\"" #, fuzzy @@ -2363,7 +2363,7 @@ msgstr "" #~ msgstr "kan ikke oprette katalog: \"%s\"" #, fuzzy -#~ msgid "can't handle a percent repeat of length: %s" +#~ msgid "cannot handle a percent repeat of length: %s" #~ msgstr "" #~ "Véd ikke hvordan en procenttegnsgentagelse (percent) af denne længde skal " #~ "håndteres." @@ -2415,7 +2415,7 @@ msgstr "" #~ msgstr "ikke-fatal fejl: " #, fuzzy -#~ msgid "can't find CFF/PFA/PFB font ~S=~S" +#~ msgid "cannot find CFF/PFA/PFB font ~S=~S" #~ msgstr "kan ikke finde skrifttype: \"%s\"" #, fuzzy @@ -2479,11 +2479,11 @@ msgstr "" #~ msgstr "FIX: tonartsskiftsfletning" #, fuzzy -#~ msgid "kpathsea can't find %s file: `%s'" +#~ msgid "kpathsea cannot find %s file: `%s'" #~ msgstr "Kpathsea kunne ikke finde TMF-fil: \"%s\"" #, fuzzy -#~ msgid "kpathsea can't find file: `%s'" +#~ msgid "kpathsea cannot find file: `%s'" #~ msgstr "Kpathsea kunne ikke finde TMF-fil: \"%s\"" #, fuzzy @@ -2577,7 +2577,7 @@ msgstr "" #~ msgstr "%s udskrevet til \"%s\"..." #, fuzzy -#~ msgid "can't find file: `%s.%s'" +#~ msgid "cannot find file: `%s.%s'" #~ msgstr "kan ikke finde fil: \"%s\"" #, fuzzy @@ -2687,7 +2687,7 @@ msgstr "" #~ msgid "from musical definition: %s" #~ msgstr "fra musikdefinition: %s" -#~ msgid "can't find start of phrasing slur" +#~ msgid "cannot find start of phrasing slur" #~ msgstr "kan ikke finde start på fraseringsbue" #~ msgid "unbound spanner `%s'" @@ -2799,7 +2799,7 @@ msgstr "" #~ msgstr "EOF i en streng" # det handlar om mmap hær -#~ msgid "can't map file" +#~ msgid "cannot map file" #~ msgstr "kan ikke lave \"mmap\" på filen" #~ msgid "" @@ -2971,7 +2971,7 @@ msgstr "" #~ msgid "invalid number of tracks" #~ msgstr "ugyldigt antal spor" -#~ msgid "can't handle non-metrical time" +#~ msgid "cannot handle non-metrical time" #~ msgstr "kan ikke håndtere ikke-metrisk tid" #~ msgid "Junking note-end event: channel = %d, pitch = %d" diff --git a/po/de.po b/po/de.po index 03aaa5d665..82b635f5d5 100644 --- a/po/de.po +++ b/po/de.po @@ -176,12 +176,12 @@ msgstr "»%s« wird verarbeitet..." #: convert-ly.py:289 source-file.cc:56 #, c-format, python-format -msgid "can't open file: `%s'" +msgid "cannot open file: `%s'" msgstr "Kann Datei nicht öffnen: `%s'" #: convert-ly.py:296 #, python-format -msgid "can't determine version for `%s'. Skipping" +msgid "cannot determine version for `%s'. Skipping" msgstr "Version für »%s« kann nicht erkannt werden. Wird übersprungen" #: etf2ly.py:1208 @@ -334,7 +334,7 @@ msgstr "Alle Auszüge sind auf dem neuesten Stand..." #: lilypond-book.py:1531 #, python-format -msgid "can't determine format for: %s" +msgid "cannot determine format for: %s" msgstr "Format für %s kann nicht ermittelt werden" #: lilypond-book.py:1542 @@ -521,7 +521,7 @@ msgstr "" #: all-font-metrics.cc:213 #, c-format -msgid "can't find font: `%s'" +msgid "cannot find font: `%s'" msgstr "Schriftart kann nicht gefunden werden: »%s«" #: all-font-metrics.cc:214 @@ -530,7 +530,7 @@ msgstr "Standardschriftart wird geladen" #: all-font-metrics.cc:224 #, c-format -msgid "can't find default font: `%s'" +msgid "cannot find default font: `%s'" msgstr "Standardschriftart kann nicht gefunden werden: »%s«" #: all-font-metrics.cc:225 includable-lexer.cc:62 lily-parser-scheme.cc:97 @@ -548,7 +548,7 @@ msgstr "Argument für \\applycontext ist keine Prozedur" #: auto-change-iterator.cc:62 change-iterator.cc:61 #, c-format -msgid "can't change, already in translator: %s" +msgid "cannot change, already in translator: %s" msgstr "kann nicht geändert werden, bereits im Übersetzer: %s" #: axis-group-engraver.cc:82 @@ -607,12 +607,12 @@ msgstr "Kein Leerraumeintrag von %s nach »%s«" #: change-iterator.cc:23 #, c-format -msgid "can't change `%s' to `%s'" +msgid "cannot change `%s' to `%s'" msgstr "»%s« kann nicht nach »%s« geändert werden" #. FIXME: constant error message. #: change-iterator.cc:82 -msgid "can't find context to switch to" +msgid "cannot find context to switch to" msgstr "es kann kein Kontext zum Umschalten gefunden werden" #. We could change the current translator's id, but that would make @@ -692,7 +692,7 @@ msgstr "Das Programm hat keinen solchen Typen: »%s«" #: context-def.cc:311 #, c-format -msgid "can't find: `%s'" +msgid "cannot find: `%s'" msgstr "»%s« kann nicht gefunden werden" #: context-property.cc:77 @@ -701,17 +701,17 @@ msgstr "Symbol-Argumente für \\override und \\revert benötigt" #: context.cc:160 #, c-format -msgid "can't find or create new `%s'" +msgid "cannot find or create new `%s'" msgstr "ein neues »%s« kann weder gefunden noch erzeugt werden" #: context.cc:222 #, c-format -msgid "can't find or create `%s' called `%s'" +msgid "cannot find or create `%s' called `%s'" msgstr "»%s« (»%s« genannt) kann weder gefunden noch erzeugt werden" #: context.cc:276 #, c-format -msgid "can't find or create: `%s'" +msgid "cannot find or create: `%s'" msgstr "»%s« kann weder gefunden noch erzeugt werden" #: custos.cc:77 @@ -720,7 +720,7 @@ msgid "custos `%s' not found" msgstr "custos »%s« nicht gefunden" #: dynamic-engraver.cc:181 span-dynamic-performer.cc:84 -msgid "can't find start of (de)crescendo" +msgid "cannot find start of (de)crescendo" msgstr "Anfang des (De-) Crescendos kann nicht gefunden werden" #: dynamic-engraver.cc:190 @@ -793,7 +793,7 @@ msgstr "verstrichene Zeit: %.2f Sekunden" #: global-context.cc:159 #, c-format -msgid "can't find `%s' context" +msgid "cannot find `%s' context" msgstr "Kontext »%s« kann nicht gefunden werden" #: gourlay-breaking.cc:202 @@ -806,7 +806,7 @@ msgid "no feasible line breaking found" msgstr "Keine praktikablen Zeilenumbrüche gefunden" #: gourlay-breaking.cc:215 -msgid "can't find line breaking that satisfies constraints" +msgid "cannot find line breaking that satisfies constraints" msgstr "es können keine Zeilenumbrüche gefunden werden, die die Bedingungen erfüllen" #: gregorian-ligature-engraver.cc:61 @@ -821,12 +821,12 @@ msgstr "implizites \\%s hinzugefügt" #. ligature may not start with 2nd head of pes or flexa #: gregorian-ligature-engraver.cc:214 -msgid "can't apply `\\~' on first head of ligature" +msgid "cannot apply `\\~' on first head of ligature" msgstr "»\\~« kann nicht auf ersten Kopf der Bindung angewendet werden" #. (pitch == prev_pitch) #: gregorian-ligature-engraver.cc:226 -msgid "can't apply `\\~' on heads with identical pitch" +msgid "cannot apply `\\~' on heads with identical pitch" msgstr "»\\~« kann nicht auf Köpfe mit gleicher Höhe angewendet werden" #: grob-interface.cc:48 @@ -873,7 +873,7 @@ msgstr "eingefügte Dateien sind im abgesicherten Modus nicht erlaubt" #: includable-lexer.cc:60 lily-guile.cc:96 lily-parser-scheme.cc:104 #, c-format -msgid "can't find file: `%s'" +msgid "cannot find file: `%s'" msgstr "Datei »%s« kann nicht gefunden werden" #: input.cc:103 source-file.cc:153 source-file.cc:168 @@ -881,7 +881,7 @@ msgid "position unknown" msgstr "Position unbekannt" #: ligature-engraver.cc:100 -msgid "can't find start of ligature" +msgid "cannot find start of ligature" msgstr "Anfang der Bindung kann nicht gefunden werden" #: ligature-engraver.cc:105 @@ -915,7 +915,7 @@ msgstr "(Lade-Pfad: `%s')" #: lily-guile.cc:441 #, c-format -msgid "can't find property type-check for `%s' (%s)." +msgid "cannot find property type-check for `%s' (%s)." msgstr "Eigenschafts-Typprüfung für »%s« (%s) kann nicht gefunden werden." #: lily-guile.cc:444 @@ -953,7 +953,7 @@ msgstr "aktuelles Verzeichnis kann nicht zu »%s« geändert werden" #: lily-parser-scheme.cc:96 #, c-format -msgid "can't find init file: `%s'" +msgid "cannot find init file: `%s'" msgstr "Init-Datei kann nicht gefunden werden: »%s«" #: lily-parser-scheme.cc:114 @@ -1194,7 +1194,7 @@ msgstr "kein solcher Benutzer: %s" #: main.cc:322 #, c-format -msgid "can't get user id from user name: %s: %s" +msgid "cannot get user id from user name: %s: %s" msgstr "Benutzer-ID von Benutzer kann nicht gefunden werden: %s: %s" #: main.cc:337 @@ -1204,27 +1204,27 @@ msgstr "keine solche Gruppe: %s" #: main.cc:339 #, c-format -msgid "can't get group id from group name: %s: %s" +msgid "cannot get group id from group name: %s: %s" msgstr "Gruppen-ID kann nicht von Gruppennamen ermittelt werden: %s: %s" #: main.cc:347 #, c-format -msgid "can't chroot to: %s: %s" +msgid "cannot chroot to: %s: %s" msgstr "kein chroot möglich nach: %s: %s" #: main.cc:354 #, c-format -msgid "can't change group id to: %d: %s" +msgid "cannot change group id to: %d: %s" msgstr "Gruppen-ID kann nicht geändert werden in: %d: %s" #: main.cc:360 #, c-format -msgid "can't change user id to: %d: %s" +msgid "cannot change user id to: %d: %s" msgstr "Benutzer-ID kann nicht geändert werden in: %d: %s" #: main.cc:366 #, c-format -msgid "can't change working directory to: %s: %s" +msgid "cannot change working directory to: %s: %s" msgstr "aktuelles Verzeichnis kann nicht geändert werden in: %s: %s" #: main.cc:413 @@ -1318,12 +1318,12 @@ msgstr "Experimentell: temporäre Feinabstimmung (von %d Hundertsteln) des Kanal #: midi-stream.cc:28 #, c-format -msgid "can't open for write: %s: %s" +msgid "cannot open for write: %s: %s" msgstr "Datei kann nicht zum Schreiben geöffnet werden: %s: %s" #: midi-stream.cc:44 #, c-format -msgid "can't write to file: `%s'" +msgid "cannot write to file: `%s'" msgstr "in Datei konnte nicht geschrieben werden: »%s«" #: music.cc:140 @@ -1337,7 +1337,7 @@ msgid "transposition by %s makes alteration larger than double" msgstr "Transponieren um %s erzeugt Vorzeichen größer als zwei" #: new-fingering-engraver.cc:84 -msgid "can't add text scripts to individual note heads" +msgid "cannot add text scripts to individual note heads" msgstr "es kann kein Text zu einzelnen Notenköpfen hinzugefügt werden" #. @@ -1360,7 +1360,7 @@ msgid "ignoring too many clashing note columns" msgstr "zu viele kollidierende Notenspalten werden ignoriert" #: note-column.cc:123 -msgid "can't have note heads and rests together on a stem" +msgid "cannot have note heads and rests together on a stem" msgstr "Notenköpfe und Pausen können nicht zusammen an einem Hals auftreten" #: note-head.cc:67 @@ -1374,12 +1374,12 @@ msgstr "NoteEvent ohne Tonhöhe" #: open-type-font.cc:33 #, c-format -msgid "can't allocate %lu bytes" +msgid "cannot allocate %lu bytes" msgstr "es können keine %lu Bytes angefordert werden" #: open-type-font.cc:37 #, c-format -msgid "can't load font table: %s" +msgid "cannot load font table: %s" msgstr "Schriftarttabelle kann nicht geladen werden: %s" #: open-type-font.cc:108 @@ -1469,12 +1469,12 @@ msgstr "3 Striche für Piano-Pedal erwartet, %ld gefunden" #: piano-pedal-engraver.cc:238 piano-pedal-engraver.cc:249 #: piano-pedal-performer.cc:82 #, c-format -msgid "can't find start of piano pedal: `%s'" +msgid "cannot find start of piano pedal: `%s'" msgstr "kann keinen Anfang für Pedal finden: »%s«" #: piano-pedal-engraver.cc:296 #, c-format -msgid "can't find start of piano pedal bracket: `%s'" +msgid "cannot find start of piano pedal bracket: `%s'" msgstr "kann keinen Anfang für Piano-Pedal finden: »%s«" #: program-option.cc:195 @@ -1541,7 +1541,7 @@ msgstr "" "argv0=%s" #: rest-collision.cc:149 -msgid "can't resolve rest collision: rest direction not set" +msgid "cannot resolve rest collision: rest direction not set" msgstr "Restkollision kann nicht aufgelöst werden: Restrichtung nicht gesetzt" #: rest-collision.cc:163 rest-collision.cc:208 @@ -1598,7 +1598,7 @@ msgid "unterminated slur" msgstr "unbegrenzter Bogen" #: slur-engraver.cc:185 -msgid "can't end slur" +msgid "cannot end slur" msgstr "Bindebogen kann nicht beendet werden" #: source-file.cc:74 @@ -1654,7 +1654,7 @@ msgid "Calculating line breaks..." msgstr "Zeilenumbrüche werden berechnet..." #: text-spanner-engraver.cc:62 -msgid "can't find start of text spanner" +msgid "cannot find start of text spanner" msgstr "Anfang der Textklammer kann nicht gefunden werden" #: text-spanner-engraver.cc:74 @@ -1679,7 +1679,7 @@ msgstr "%s: TFM-Datei hat %u Parameter - mehr als die Maximalzahl %u" #: tfm.cc:72 #, c-format -msgid "can't find ascii character: %d" +msgid "cannot find ascii character: %d" msgstr "folgendes ASCII-Zeichen kann nicht gefunden werden: %d" #: tie-engraver.cc:181 @@ -1713,7 +1713,7 @@ msgid "unknown translator: `%s'" msgstr "unbekannter Übersetzer: »%s«" #: trill-spanner-engraver.cc:71 -msgid "can't find start of trill spanner" +msgid "cannot find start of trill spanner" msgstr "Anfang des Trillers kann nicht gefunden werden" #: trill-spanner-engraver.cc:83 @@ -1748,7 +1748,7 @@ msgstr "Vaticana_ligature: nichts zusammengefügt (delta_pitch == 0)" #. fixme: be more verbose. #: volta-engraver.cc:142 -msgid "can't end volta spanner" +msgid "cannot end volta spanner" msgstr "Anfang der Textklammer kann nicht gefunden werden" #: volta-engraver.cc:152 @@ -1882,7 +1882,7 @@ msgstr "Erwägen Sie die Aktualisierung der Eingabe mit dem Skript convert-ly" #. TODO: print location #: lexer.ll:945 -msgid "can't find signature for music function" +msgid "cannot find signature for music function" msgstr "Signatur für Musikfunktion kann nicht gefunden werden" #: backend-library.scm:19 lily.scm:439 ps-to-png.scm:88 @@ -1932,7 +1932,7 @@ msgstr "Symbol erwartet: ~S" #: define-music-types.scm:741 #, lisp-format -msgid "can't find music object: ~S" +msgid "cannot find music object: ~S" msgstr "Musikobjekt kann nicht gefunden werden: ~S" #: define-music-types.scm:761 @@ -1951,7 +1951,7 @@ msgstr "Paar erwartet in doc ~s" #: document-backend.scm:135 #, lisp-format -msgid "can't find interface for property: ~S" +msgid "cannot find interface for property: ~S" msgstr "Schnittstelle für Eigenschaft ~S kann nicht gefunden werden" #: document-backend.scm:145 @@ -1971,7 +1971,7 @@ msgstr "~S wird geschrieben..." #: documentation-lib.scm:172 #, lisp-format -msgid "can't find description for property ~S (~S)" +msgid "cannot find description for property ~S (~S)" msgstr "Beschreibung für Eigenschaft ~S (~S) kann nicht gefunden werden" #: framework-eps.scm:71 framework-eps.scm:72 @@ -1981,12 +1981,12 @@ msgstr "~a wird geschrieben..." #: framework-ps.scm:275 #, lisp-format -msgid "can't embed ~S=~S" +msgid "cannot embed ~S=~S" msgstr "~S=~S kann nicht eingebettet werden" #: framework-ps.scm:326 #, lisp-format -msgid "can't extract file matching ~a from ~a" +msgid "cannot extract file matching ~a from ~a" msgstr "Eine zu ~a passende Datei kann nicht aus ~a gewonnen werden" #: framework-ps.scm:343 @@ -2001,12 +2001,12 @@ msgstr "Unbekannte Schriftsatzeinbettung ~s ~s ~s" #: framework-ps.scm:579 #, lisp-format -msgid "can't convert to ~S" +msgid "cannot convert to ~S" msgstr " kann nicht in ~S konvertiert werden" #: framework-ps.scm:596 framework-ps.scm:599 #, lisp-format -msgid "can't generate ~S using the postscript back-end" +msgid "cannot generate ~S using the postscript back-end" msgstr "~S kann nicht mit PostScript-Backend erzeugt werden" #: framework-ps.scm:606 @@ -2096,7 +2096,7 @@ msgstr "Taktüberprüfung gescheitert. bei ~a erwartet, stattdessen bei ~a" #: music-functions.scm:739 #, lisp-format -msgid "can't find quoted music `~S'" +msgid "cannot find quoted music `~S'" msgstr "zitierte Musik »~S« kann nicht gefunden werden" #: music-functions.scm:947 @@ -2115,12 +2115,12 @@ msgstr "nicht definiert: ~S" #: output-svg.scm:121 #, lisp-format -msgid "can't decypher Pango description: ~a" +msgid "cannot decypher Pango description: ~a" msgstr "Pango-Beschreibung kann nicht entschlüsselt werden: ~a" #: output-tex.scm:98 #, lisp-format -msgid "can't find ~a in ~a" +msgid "cannot find ~a in ~a" msgstr "~a kann nicht in ~a gefunden werden" #: paper.scm:69 @@ -2257,7 +2257,7 @@ msgstr "Behauptung gescheitert" #~ msgid "Wrote `%s'" #~ msgstr "`%s' geschrieben" -#~ msgid "can't dlopen: %s: %s" +#~ msgid "cannot dlopen: %s: %s" #~ msgstr "dlopen erfolglos: %s: %s" #~ msgid "install package: %s or %s" @@ -2306,7 +2306,7 @@ msgstr "Behauptung gescheitert" #~ msgid "run in safe mode" #~ msgstr "im sicheren Modus laufen lassen" -#~ msgid "can't handle a percent repeat of length: %s" +#~ msgid "cannot handle a percent repeat of length: %s" #~ msgstr "Prozentwiederholung der Länge %s kann nicht behandelt werden" #~ msgid "rest direction not set. Cannot resolve collision." @@ -2408,7 +2408,7 @@ msgstr "Behauptung gescheitert" #~ msgid "Could not find bounding box of `~a'" #~ msgstr "Begrenzungskasten von »~a« konnte nicht gefunden werden" -#~ msgid "can't find CFF/PFA/PFB font ~S=~S" +#~ msgid "cannot find CFF/PFA/PFB font ~S=~S" #~ msgstr "CFF/PFA/PFB-Schriftart ~S=~S kann nicht gefunden werden" #~ msgid "unknown bar glyph: `~S'" @@ -2514,7 +2514,7 @@ msgstr "Behauptung gescheitert" #~ msgid "%s output to %s..." #~ msgstr "Ausgabe von %s nach %s..." -#~ msgid "can't find file: `%s.%s'" +#~ msgid "cannot find file: `%s.%s'" #~ msgstr "Kann Datei nicht finden: `%s.%s'" #~ msgid "Accidental rule must be pair or context-name; Found %s" @@ -2691,7 +2691,7 @@ msgstr "Behauptung gescheitert" #~ msgid "prepend DIR to dependencies" #~ msgstr "stelle VERZ den Abhängigkeiten voran" -#~ msgid "can't find start of phrasing slur" +#~ msgid "cannot find start of phrasing slur" #~ msgstr "kann Anfang des Phrasierungsbogens nicht finden" #~ msgid "Where SYMBOL VAL pair is any of:" @@ -2730,10 +2730,10 @@ msgstr "Behauptung gescheitert" #~ msgid "Symbol is not a parent context: %s. Ignored" #~ msgstr "Symbol ist kein Elternkontext: %s. Ignoriert" -#~ msgid "can't find character number: %d" +#~ msgid "cannot find character number: %d" #~ msgstr "Zeichennummer kann nicht gefunden werden: %d" -#~ msgid "can't find character called: `%s'" +#~ msgid "cannot find character called: `%s'" #~ msgstr "Zeichen kann nicht gefunden werden: `%s'" #~ msgid "Beam has less than two stems. Removing beam." diff --git a/po/es.po b/po/es.po index 9d53d30066..10482db220 100644 --- a/po/es.po +++ b/po/es.po @@ -166,12 +166,12 @@ msgstr "Procesando `%s'..." #: convert-ly.py:279 source-file.cc:54 #, c-format, python-format -msgid "can't open file: `%s'" +msgid "cannot open file: `%s'" msgstr "no se puede abrir el fichero: `%s'" #: convert-ly.py:286 #, fuzzy, python-format -msgid "can't determine version for `%s'. Skipping" +msgid "cannot determine version for `%s'. Skipping" msgstr "no puedo encontrar la fuente por defecto: `%s'" #: etf2ly.py:1198 @@ -326,7 +326,7 @@ msgstr "calma, %s est #: lilypond-book.py:1532 #, fuzzy, python-format -msgid "can't determine format for: %s" +msgid "cannot determine format for: %s" msgstr "no puedo encontrar la fuente por defecto: `%s'" #: lilypond-book.py:1543 @@ -516,7 +516,7 @@ msgstr "" #: all-font-metrics.cc:164 #, c-format -msgid "can't find font: `%s'" +msgid "cannot find font: `%s'" msgstr "no encuentro la fuente: `%s'" #: all-font-metrics.cc:165 @@ -526,7 +526,7 @@ msgstr "Cargando la fuente por defecto" #: all-font-metrics.cc:172 #, c-format -msgid "can't find default font: `%s'" +msgid "cannot find default font: `%s'" msgstr "no puedo encontrar la fuente por defecto: `%s'" #: all-font-metrics.cc:173 includable-lexer.cc:62 lily-parser-scheme.cc:108 @@ -545,7 +545,7 @@ msgstr "" #: auto-change-iterator.cc:62 change-iterator.cc:61 #, fuzzy, c-format -msgid "can't change, already in translator: %s" +msgid "cannot change, already in translator: %s" msgstr "no puedo cambiar de `%s' a `%s'" #: axis-group-engraver.cc:82 @@ -609,13 +609,13 @@ msgstr "No se a #: change-iterator.cc:23 #, fuzzy, c-format -msgid "can't change `%s' to `%s'" +msgid "cannot change `%s' to `%s'" msgstr "no puedo cambiar de `%s' a `%s'" #. FIXME: constant error message. #: change-iterator.cc:82 #, fuzzy -msgid "can't find context to switch to" +msgid "cannot find context to switch to" msgstr "no se puede encontrar el contexto de `%s'" #. We could change the current translator's id, but that would make @@ -682,12 +682,12 @@ msgstr "" #: context.cc:151 #, fuzzy, c-format -msgid "can't find or create new `%s'" +msgid "cannot find or create new `%s'" msgstr "no se puede encontrar o crear: `%s'" #: context.cc:213 #, fuzzy, c-format -msgid "can't find or create `%s' called `%s'" +msgid "cannot find or create `%s' called `%s'" msgstr "no se puede encontrar o crear `%s' llamado `%s'" #: context.cc:276 @@ -697,7 +697,7 @@ msgstr "" #: context.cc:388 #, c-format -msgid "can't find or create: `%s'" +msgid "cannot find or create: `%s'" msgstr "no se puede encontrar o crear: `%s'" #: custos.cc:77 @@ -715,7 +715,7 @@ msgid "Unknown event class %s" msgstr "traductor desconocido: `%s'" #: dynamic-engraver.cc:186 span-dynamic-performer.cc:87 -msgid "can't find start of (de)crescendo" +msgid "cannot find start of (de)crescendo" msgstr "no puedo encontrar el principio del (de)crescendo" #: dynamic-engraver.cc:195 @@ -802,12 +802,12 @@ msgstr "" #. ligature may not start with 2nd head of pes or flexa #: gregorian-ligature-engraver.cc:212 #, fuzzy -msgid "can't apply `\\~' on first head of ligature" +msgid "cannot apply `\\~' on first head of ligature" msgstr "no puedo encontrar el principio del (de)crescendo" #. (pitch == prev_pitch) #: gregorian-ligature-engraver.cc:224 -msgid "can't apply `\\~' on heads with identical pitch" +msgid "cannot apply `\\~' on heads with identical pitch" msgstr "" #: grob-interface.cc:48 @@ -860,7 +860,7 @@ msgstr "" #: includable-lexer.cc:60 lily-guile.cc:96 lily-parser-scheme.cc:115 #, c-format -msgid "can't find file: `%s'" +msgid "cannot find file: `%s'" msgstr "no puedo encontrar el fichero: `%s'" #: input.cc:112 source-file.cc:168 source-file.cc:183 @@ -869,7 +869,7 @@ msgstr "posici #: ligature-engraver.cc:95 #, fuzzy -msgid "can't find start of ligature" +msgid "cannot find start of ligature" msgstr "no puedo encontrar el principio del (de)crescendo" #: ligature-engraver.cc:100 @@ -905,7 +905,7 @@ msgstr "(ruta de carga: `%s')" #: lily-guile.cc:439 #, c-format -msgid "can't find property type-check for `%s' (%s)." +msgid "cannot find property type-check for `%s' (%s)." msgstr "" #: lily-guile.cc:442 @@ -943,7 +943,7 @@ msgstr "no se puede crear el directorio: `%s'" #: lily-parser-scheme.cc:107 #, fuzzy, c-format -msgid "can't find init file: `%s'" +msgid "cannot find init file: `%s'" msgstr "no puedo encontrar el fichero: `%s'" #: lily-parser-scheme.cc:125 @@ -1169,7 +1169,7 @@ msgstr "no existe tal par #: main.cc:324 #, c-format -msgid "can't get user id from user name: %s: %s" +msgid "cannot get user id from user name: %s: %s" msgstr "" #: main.cc:339 @@ -1179,27 +1179,27 @@ msgstr "no hay tal contexto: %s" #: main.cc:341 #, fuzzy, c-format -msgid "can't get group id from group name: %s: %s" +msgid "cannot get group id from group name: %s: %s" msgstr "no puedo cambiar de `%s' a `%s'" #: main.cc:349 #, fuzzy, c-format -msgid "can't chroot to: %s: %s" +msgid "cannot chroot to: %s: %s" msgstr "no se puede crear el directorio: `%s'" #: main.cc:356 #, fuzzy, c-format -msgid "can't change group id to: %d: %s" +msgid "cannot change group id to: %d: %s" msgstr "no puedo cambiar de `%s' a `%s'" #: main.cc:362 #, fuzzy, c-format -msgid "can't change user id to: %d: %s" +msgid "cannot change user id to: %d: %s" msgstr "no puedo cambiar de `%s' a `%s'" #: main.cc:368 #, fuzzy, c-format -msgid "can't change working directory to: %s: %s" +msgid "cannot change working directory to: %s: %s" msgstr "no se puede crear el directorio: `%s'" #: main.cc:415 @@ -1287,12 +1287,12 @@ msgstr "" #: midi-stream.cc:28 #, fuzzy, c-format -msgid "can't open for write: %s: %s" +msgid "cannot open for write: %s: %s" msgstr "no se puede abrir el fichero: `%s'" #: midi-stream.cc:44 #, fuzzy, c-format -msgid "can't write to file: `%s'" +msgid "cannot write to file: `%s'" msgstr "no se puede abrir el fichero: `%s'" #: music-iterator.cc:172 @@ -1310,7 +1310,7 @@ msgid "transposition by %s makes alteration larger than double" msgstr "" #: new-fingering-engraver.cc:87 -msgid "can't add text scripts to individual note heads" +msgid "cannot add text scripts to individual note heads" msgstr "" #: new-fingering-engraver.cc:246 @@ -1327,7 +1327,7 @@ msgid "ignoring too many clashing note columns" msgstr "Demasiadas columnas de notas que chocan entre sí. Se las ignora." #: note-column.cc:123 -msgid "can't have note heads and rests together on a stem" +msgid "cannot have note heads and rests together on a stem" msgstr "" #: note-head.cc:69 @@ -1341,12 +1341,12 @@ msgstr "" #: open-type-font.cc:33 #, fuzzy, c-format -msgid "can't allocate %lu bytes" +msgid "cannot allocate %lu bytes" msgstr "no se puede abrir el fichero: `%s'" #: open-type-font.cc:37 #, fuzzy, c-format -msgid "can't load font table: %s" +msgid "cannot load font table: %s" msgstr "no encuentro la fuente: `%s'" #: open-type-font.cc:96 @@ -1448,12 +1448,12 @@ msgstr "" #: piano-pedal-engraver.cc:319 piano-pedal-engraver.cc:330 #: piano-pedal-performer.cc:93 #, c-format -msgid "can't find start of piano pedal: `%s'" +msgid "cannot find start of piano pedal: `%s'" msgstr "" #: piano-pedal-engraver.cc:377 #, fuzzy, c-format -msgid "can't find start of piano pedal bracket: `%s'" +msgid "cannot find start of piano pedal bracket: `%s'" msgstr "no puedo encontrar el principio del (de)crescendo" #: program-option.cc:195 @@ -1524,7 +1524,7 @@ msgstr "no se puede abrir el fichero: `%s'" #: relocate.cc:358 #, fuzzy, c-format -msgid "can't open file %s" +msgid "cannot open file %s" msgstr "no se puede abrir el fichero: `%s'" #: relocate.cc:388 @@ -1533,7 +1533,7 @@ msgid "Unknown relocation command %s" msgstr "" #: rest-collision.cc:150 -msgid "can't resolve rest collision: rest direction not set" +msgid "cannot resolve rest collision: rest direction not set" msgstr "" #: rest-collision.cc:164 rest-collision.cc:209 @@ -1600,7 +1600,7 @@ msgstr "" #: slur-engraver.cc:165 #, fuzzy -msgid "can't end slur" +msgid "cannot end slur" msgstr "no se puede encontrar: `%s'" #: source-file.cc:74 @@ -1651,7 +1651,7 @@ msgid "Grob count %d" msgstr "Elementos contados %d" #: text-spanner-engraver.cc:60 -msgid "can't find start of text spanner" +msgid "cannot find start of text spanner" msgstr "" #: text-spanner-engraver.cc:72 @@ -1690,7 +1690,7 @@ msgstr "traductor desconocido: `%s'" #: translator-group.cc:152 #, c-format -msgid "can't find: `%s'" +msgid "cannot find: `%s'" msgstr "no se puede encontrar: `%s'" #: translator.cc:310 @@ -1705,7 +1705,7 @@ msgstr "" #: trill-spanner-engraver.cc:67 #, fuzzy -msgid "can't find start of trill spanner" +msgid "cannot find start of trill spanner" msgstr "no puedo encontrar el principio del (de)crescendo" #: trill-spanner-engraver.cc:79 @@ -1744,7 +1744,7 @@ msgstr "" #. fixme: be more verbose. #: volta-engraver.cc:143 #, fuzzy -msgid "can't end volta spanner" +msgid "cannot end volta spanner" msgstr "no puedo encontrar el principio del (de)crescendo" #: volta-engraver.cc:153 @@ -1924,7 +1924,7 @@ msgstr "" #: define-music-types.scm:737 #, fuzzy, lisp-format -msgid "can't find music object: ~S" +msgid "cannot find music object: ~S" msgstr "no se puede encontrar el contexto de `%s'" #: define-music-types.scm:757 @@ -1943,7 +1943,7 @@ msgstr "" #: document-backend.scm:135 #, fuzzy, lisp-format -msgid "can't find interface for property: ~S" +msgid "cannot find interface for property: ~S" msgstr "no puedo encontrar el carácter número: %d" #: document-backend.scm:145 @@ -1963,7 +1963,7 @@ msgstr "Escribiendo `%s'..." #: documentation-lib.scm:172 #, fuzzy, lisp-format -msgid "can't find description for property ~S (~S)" +msgid "cannot find description for property ~S (~S)" msgstr "no puedo encontrar el carácter número: %d" #: framework-eps.scm:77 framework-eps.scm:78 @@ -1973,12 +1973,12 @@ msgstr "Escribiendo `%s'..." #: framework-ps.scm:278 #, lisp-format -msgid "can't embed ~S=~S" +msgid "cannot embed ~S=~S" msgstr "" #: framework-ps.scm:331 #, lisp-format -msgid "can't extract file matching ~a from ~a" +msgid "cannot extract file matching ~a from ~a" msgstr "" #: framework-ps.scm:348 @@ -1993,12 +1993,12 @@ msgstr "No se sabe como interpretar la articulaci #: framework-ps.scm:610 #, lisp-format -msgid "can't convert to ~S" +msgid "cannot convert to ~S" msgstr "" #: framework-ps.scm:629 framework-ps.scm:632 #, lisp-format -msgid "can't generate ~S using the postscript back-end" +msgid "cannot generate ~S using the postscript back-end" msgstr "" #: framework-ps.scm:639 @@ -2106,7 +2106,7 @@ msgstr "" #: music-functions.scm:745 #, fuzzy, lisp-format -msgid "can't find quoted music `~S'" +msgid "cannot find quoted music `~S'" msgstr "no encuentro la fuente: `%s'" #: music-functions.scm:953 @@ -2125,12 +2125,12 @@ msgstr "prolongaci #: output-svg.scm:132 #, lisp-format -msgid "can't decypher Pango description: ~a" +msgid "cannot decypher Pango description: ~a" msgstr "" #: output-tex.scm:98 #, fuzzy, lisp-format -msgid "can't find ~a in ~a" +msgid "cannot find ~a in ~a" msgstr "no encuentro la fuente: `%s'" #: paper.scm:69 @@ -2181,7 +2181,7 @@ msgstr "" #~ msgid "no one to print a repeat brace" #~ msgstr "ninguno para la impresión de llaves repetidas" -#~ msgid "can't find `%s' context" +#~ msgid "cannot find `%s' context" #~ msgstr "no se puede encontrar el contexto de `%s'" #, fuzzy @@ -2208,7 +2208,7 @@ msgstr "" #~ msgstr "El identificativo debería contener solamente caracteres alfabéticos" #, fuzzy -#~ msgid "can't find signature for music function" +#~ msgid "cannot find signature for music function" #~ msgstr "no se puede encontrar el contexto de `%s'" #~ msgid "Usage: %s [OPTIONS]... FILE" @@ -2266,7 +2266,7 @@ msgstr "" #~ msgstr "Escribiendo `%s'..." #, fuzzy -#~ msgid "can't dlopen: %s: %s" +#~ msgid "cannot dlopen: %s: %s" #~ msgstr "no se puede abrir el fichero: `%s'" #, fuzzy @@ -2337,7 +2337,7 @@ msgstr "" #~ msgstr "error no fatal: " #, fuzzy -#~ msgid "can't find CFF/PFA/PFB font ~S=~S" +#~ msgid "cannot find CFF/PFA/PFB font ~S=~S" #~ msgstr "no encuentro la fuente: `%s'" #, fuzzy @@ -2377,11 +2377,11 @@ msgstr "" #~ msgstr "EXT" #, fuzzy -#~ msgid "kpathsea can't find %s file: `%s'" +#~ msgid "kpathsea cannot find %s file: `%s'" #~ msgstr "no puedo encontrar el fichero: `%s'" #, fuzzy -#~ msgid "kpathsea can't find file: `%s'" +#~ msgid "kpathsea cannot find file: `%s'" #~ msgstr "no puedo encontrar el fichero: `%s'" #, fuzzy @@ -2467,7 +2467,7 @@ msgstr "" #~ msgstr "%s producidos en `%s'..." #, fuzzy -#~ msgid "can't find file: `%s.%s'" +#~ msgid "cannot find file: `%s.%s'" #~ msgstr "no puedo encontrar el fichero: `%s'" #, fuzzy @@ -2605,7 +2605,7 @@ msgstr "" #~ msgid "Generate .dvi with LaTeX for LilyPond" #~ msgstr "Generar un fichero .dvi con la ayuda de LaTeX para LilyPond" -#~ msgid "can't map file" +#~ msgid "cannot map file" #~ msgstr "no es posible producir el fichero map" #~ msgid "This binary was compiled with the following options:" @@ -2697,7 +2697,7 @@ msgstr "" #~ msgid "invalid number of tracks" #~ msgstr "número de pistas no válido" -#~ msgid "can't handle non-metrical time" +#~ msgid "cannot handle non-metrical time" #~ msgstr "no se pueden manejar tiempos no métricos" #~ msgid "invalid running status" diff --git a/po/fi.po b/po/fi.po index 39bc41a695..536d93c3d4 100644 --- a/po/fi.po +++ b/po/fi.po @@ -178,12 +178,12 @@ msgstr "Prosessoidaan `%s'... " #: convert-ly.py:279 source-file.cc:54 #, c-format, python-format -msgid "can't open file: `%s'" +msgid "cannot open file: `%s'" msgstr "tiedostoa ei voitu avata: `%s'" #: convert-ly.py:286 #, python-format -msgid "can't determine version for `%s'. Skipping" +msgid "cannot determine version for `%s'. Skipping" msgstr "ei voitu määrittää `%s':lle versiota. Sivuutetaan" #: etf2ly.py:1198 @@ -343,7 +343,7 @@ msgstr "Kaikki palaset on päivitetty..." #: lilypond-book.py:1608 #, python-format -msgid "can't determine format for: %s" +msgid "cannot determine format for: %s" msgstr "ei löytynyt formaattia: %s" #: lilypond-book.py:1619 @@ -535,7 +535,7 @@ msgstr "yritettiin saada käännösteksti jollekin, joka ei ole lapseni" #: all-font-metrics.cc:164 #, c-format -msgid "can't find font: `%s'" +msgid "cannot find font: `%s'" msgstr "ei löytynyt fonttia: `%s'" #: all-font-metrics.cc:165 @@ -544,7 +544,7 @@ msgstr "ladataan oletusfontti" #: all-font-metrics.cc:172 #, c-format -msgid "can't find default font: `%s'" +msgid "cannot find default font: `%s'" msgstr "ei löytynyt oletusfonttia: `%s'" #: all-font-metrics.cc:173 includable-lexer.cc:62 lily-parser-scheme.cc:108 @@ -562,7 +562,7 @@ msgstr "\\applycontext vaatii funktioargumentin" #: auto-change-iterator.cc:62 change-iterator.cc:61 #, c-format -msgid "can't change, already in translator: %s" +msgid "cannot change, already in translator: %s" msgstr "ei voitu vaihtaa, oli jo tulkitsijassa: %s" #: axis-group-engraver.cc:78 @@ -625,12 +625,12 @@ msgstr "Ei välistyksen syöttöä paikasta %s paikkaan `%s'" #: change-iterator.cc:23 #, c-format -msgid "can't change `%s' to `%s'" +msgid "cannot change `%s' to `%s'" msgstr "ei voitu vaihtaa `%s' tilalle `%s'" #. FIXME: constant error message. #: change-iterator.cc:82 -msgid "can't find context to switch to" +msgid "cannot find context to switch to" msgstr "ei löytynyt kontekstia johon vaihtaa" #. We could change the current translator's id, but that would make @@ -696,12 +696,12 @@ msgstr "tarvitaan symboliargumentti funktioille \\override ja \\revert" #: context.cc:151 #, c-format -msgid "can't find or create new `%s'" +msgid "cannot find or create new `%s'" msgstr "ei löydetty tai ei luotu uutta `%s'" #: context.cc:213 #, c-format -msgid "can't find or create `%s' called `%s'" +msgid "cannot find or create `%s' called `%s'" msgstr "ei löydetty tai ei luotu `%s' nimeltä `%s'" #: context.cc:276 @@ -711,7 +711,7 @@ msgstr "Epäkelpo CreateContext-tapahtuma: Ei voitu luoda %s-kontekstia" #: context.cc:388 #, c-format -msgid "can't find or create: `%s'" +msgid "cannot find or create: `%s'" msgstr "ei löydetty tai ei luotu: `%s'" #: custos.cc:77 @@ -734,7 +734,7 @@ msgid "dot `%s' not found" msgstr "pistettä `%s' ei löytynyt" #: dynamic-engraver.cc:186 span-dynamic-performer.cc:87 -msgid "can't find start of (de)crescendo" +msgid "cannot find start of (de)crescendo" msgstr "ei löytynyt alkua (de)crescendolle" #: dynamic-engraver.cc:195 @@ -817,12 +817,12 @@ msgstr "lisättiin vihjattu \\%s" #. ligature may not start with 2nd head of pes or flexa #: gregorian-ligature-engraver.cc:212 -msgid "can't apply `\\~' on first head of ligature" +msgid "cannot apply `\\~' on first head of ligature" msgstr "di voitu käyttää `\\~' ligaturen alkupäässä" #. (pitch == prev_pitch) #: gregorian-ligature-engraver.cc:224 -msgid "can't apply `\\~' on heads with identical pitch" +msgid "cannot apply `\\~' on heads with identical pitch" msgstr "ei voitu käyttää `\\~' identtisien nuotinkorkeuksien päissä" #: grob-interface.cc:48 @@ -873,7 +873,7 @@ msgstr "sisällytettävät tiedostot eivät ole sallittuja turvatilassa" #: includable-lexer.cc:60 lily-guile.cc:96 lily-parser-scheme.cc:117 #, c-format -msgid "can't find file: `%s'" +msgid "cannot find file: `%s'" msgstr "tiedostoa ei löydy: `%s'" #: input.cc:112 source-file.cc:168 source-file.cc:183 @@ -881,7 +881,7 @@ msgid "position unknown" msgstr "sijainti tuntematon" #: ligature-engraver.cc:93 -msgid "can't find start of ligature" +msgid "cannot find start of ligature" msgstr "ei löytynyt alkua ligature:lle" #: ligature-engraver.cc:98 @@ -915,7 +915,7 @@ msgstr "(hakupolku: `%s')" #: lily-guile.cc:439 #, c-format -msgid "can't find property type-check for `%s' (%s)." +msgid "cannot find property type-check for `%s' (%s)." msgstr "Ei löytynyt tyyppitarkistusta ominaisuudelle `%s' (%s)." #: lily-guile.cc:442 @@ -953,7 +953,7 @@ msgstr "Vaihdetaan työhakemistoksi `%s'" #: lily-parser-scheme.cc:107 #, c-format -msgid "can't find init file: `%s'" +msgid "cannot find init file: `%s'" msgstr "tiedostoa ei löydy: `%s'" #: lily-parser-scheme.cc:126 @@ -1192,7 +1192,7 @@ msgstr "käyttäjää ei löydy: `%s'" #: main.cc:324 #, c-format -msgid "can't get user id from user name: %s: %s" +msgid "cannot get user id from user name: %s: %s" msgstr "ei saatu käyttäjä-id:tä käyttäjänimestä: %s: %s" #: main.cc:339 @@ -1202,27 +1202,27 @@ msgstr "ryhmää ei ole: %s" #: main.cc:341 #, c-format -msgid "can't get group id from group name: %s: %s" +msgid "cannot get group id from group name: %s: %s" msgstr "ei voitu saada ryhmä -id:tä ryhmänimestä: %s: %s" #: main.cc:349 #, c-format -msgid "can't chroot to: %s: %s" +msgid "cannot chroot to: %s: %s" msgstr "chroot ei onnistunut: %s: %s" #: main.cc:356 #, c-format -msgid "can't change group id to: %d: %s" +msgid "cannot change group id to: %d: %s" msgstr "ei voitu korvata ryhmän id:tä : %d: %s" #: main.cc:362 #, c-format -msgid "can't change user id to: %d: %s" +msgid "cannot change user id to: %d: %s" msgstr "ei voitu vaihtaa käyttäjä-id:tä : %d: %s" #: main.cc:368 #, c-format -msgid "can't change working directory to: %s: %s" +msgid "cannot change working directory to: %s: %s" msgstr "työhakemiston vaihto ei onnistunut: %s: %s" #: main.cc:415 @@ -1316,12 +1316,12 @@ msgstr "kokeellinen: viritetään väliaisesti (%d senttiä) kanavaa." #: midi-stream.cc:28 #, c-format -msgid "can't open for write: %s: %s" +msgid "cannot open for write: %s: %s" msgstr "tiedostoa ei voitu avata kirjoitettavaksi: %s: `%s'" #: midi-stream.cc:44 #, c-format -msgid "can't write to file: `%s'" +msgid "cannot write to file: `%s'" msgstr "tiedostoon ei voitu kirjoittaa: `%s'" #: music-iterator.cc:172 @@ -1339,7 +1339,7 @@ msgid "transposition by %s makes alteration larger than double" msgstr "transponointi %s:N verran tekee muutokset suuremmaksi kuin kaksi" #: new-fingering-engraver.cc:95 -msgid "can't add text scripts to individual note heads" +msgid "cannot add text scripts to individual note heads" msgstr "ei voitu lisätä tekstinpätkiä yksittäisiin nuotteihin" #: new-fingering-engraver.cc:238 @@ -1355,7 +1355,7 @@ msgid "ignoring too many clashing note columns" msgstr "liian monta törmäävää nuottisaraketta" #: note-column.cc:123 -msgid "can't have note heads and rests together on a stem" +msgid "cannot have note heads and rests together on a stem" msgstr "ei voinut olla nuotinpäitä ja taukoja yhtäaikaa palkissa" #: note-head.cc:69 @@ -1369,12 +1369,12 @@ msgstr "NoteEvent ilman nuottikorkeutta" #: open-type-font.cc:33 #, c-format -msgid "can't allocate %lu bytes" +msgid "cannot allocate %lu bytes" msgstr "ei voitu varata %lu bittiä" #: open-type-font.cc:37 #, c-format -msgid "can't load font table: %s" +msgid "cannot load font table: %s" msgstr "ei voitu ladata fonttitaulukkoa: `%s'" #: open-type-font.cc:96 @@ -1482,12 +1482,12 @@ msgstr "odotettiin 3 merkkijonoa pianopedaalille, löytyi: %ld" #: piano-pedal-engraver.cc:298 piano-pedal-engraver.cc:309 #: piano-pedal-performer.cc:93 #, c-format -msgid "can't find start of piano pedal: `%s'" +msgid "cannot find start of piano pedal: `%s'" msgstr "ei löydetty alkua pianopedaalille: `%s'" #: piano-pedal-engraver.cc:344 #, c-format -msgid "can't find start of piano pedal bracket: `%s'" +msgid "cannot find start of piano pedal bracket: `%s'" msgstr "ei löydetty alkua pianopedaalimerkinnälle: `%s'" #: program-option.cc:199 @@ -1560,7 +1560,7 @@ msgstr "Paikannustiedosto %s\n" #: relocate.cc:358 #, c-format -msgid "can't open file %s" +msgid "cannot open file %s" msgstr "ei voitu avata tiedostoa %s" #: relocate.cc:388 @@ -1569,7 +1569,7 @@ msgid "Unknown relocation command %s" msgstr "Tuntematon paikannuskomento %s" #: rest-collision.cc:150 -msgid "can't resolve rest collision: rest direction not set" +msgid "cannot resolve rest collision: rest direction not set" msgstr "ei voida määrittää taukojen törmäystä: tauon suuntaa ei asetettu" #: rest-collision.cc:164 rest-collision.cc:209 @@ -1630,7 +1630,7 @@ msgid "unterminated slur" msgstr "päättämätön kaari" #: slur-engraver.cc:165 -msgid "can't end slur" +msgid "cannot end slur" msgstr "ei löytynyt kaaren loppua" #: source-file.cc:74 @@ -1681,7 +1681,7 @@ msgid "Grob count %d" msgstr "Graafisien objektien (grob) määrä: %d " #: text-spanner-engraver.cc:60 -msgid "can't find start of text spanner" +msgid "cannot find start of text spanner" msgstr "ei löydetty alkua tekstileikkeelle" #: text-spanner-engraver.cc:72 @@ -1720,7 +1720,7 @@ msgstr "tuntematon tulkitsija: `%s'" #: translator-group.cc:152 #, c-format -msgid "can't find: `%s'" +msgid "cannot find: `%s'" msgstr "ei löytynyt `%s'" #: translator.cc:332 @@ -1734,7 +1734,7 @@ msgid "Previous %s event here" msgstr "Edellinen %s-tapahtuma täällä" #: trill-spanner-engraver.cc:67 -msgid "can't find start of trill spanner" +msgid "cannot find start of trill spanner" msgstr "ei löydetty alkua trilliladokkeelle" #: trill-spanner-engraver.cc:79 @@ -1773,7 +1773,7 @@ msgstr "Vaticana_ligature: nollayhdiste (delta_pitch == 0)" #. fixme: be more verbose. #: volta-engraver.cc:143 -msgid "can't end volta spanner" +msgid "cannot end volta spanner" msgstr "ei löydetty loppua volta ladokkeelle" #: volta-engraver.cc:153 @@ -1949,7 +1949,7 @@ msgstr "odotettiin symboli: ~S" #: define-music-types.scm:746 #, lisp-format -msgid "can't find music object: ~S" +msgid "cannot find music object: ~S" msgstr "ei löytynyt musiikkiobjektia: ~S" #: define-music-types.scm:766 @@ -1968,7 +1968,7 @@ msgstr "pari odotettiin dokumentissa ~s" #: document-backend.scm:135 #, lisp-format -msgid "can't find interface for property: ~S" +msgid "cannot find interface for property: ~S" msgstr "ei löytynyt rajapintaa ominaisuudelle: ~S" #: document-backend.scm:145 @@ -1988,7 +1988,7 @@ msgstr "Kirjoitetaan ~S..." #: documentation-lib.scm:172 #, lisp-format -msgid "can't find description for property ~S (~S)" +msgid "cannot find description for property ~S (~S)" msgstr "ei löytynyt kuvausta ominaisuudelle ~S (~S)" #: framework-eps.scm:77 framework-eps.scm:78 @@ -1998,12 +1998,12 @@ msgstr "Kirjoitetaan ~a..." #: framework-ps.scm:279 #, lisp-format -msgid "can't embed ~S=~S" +msgid "cannot embed ~S=~S" msgstr "ei voitu upottaa ~S=~S" #: framework-ps.scm:332 #, lisp-format -msgid "can't extract file matching ~a from ~a" +msgid "cannot extract file matching ~a from ~a" msgstr "Ei voitu poimia sopivaa tiedoa ~a:sta ~a:han" #: framework-ps.scm:349 @@ -2018,12 +2018,12 @@ msgstr "ei tiedetä kuinka sijoittaa fontti ~s ~s ~s" #: framework-ps.scm:731 #, lisp-format -msgid "can't convert to ~S" +msgid "cannot convert to ~S" msgstr "ei voida konvertoida ~S:ksi" #: framework-ps.scm:750 framework-ps.scm:753 #, lisp-format -msgid "can't generate ~S using the postscript back-end" +msgid "cannot generate ~S using the postscript back-end" msgstr "ei voida generoida ~S käyttäen postscript päänä" #: framework-ps.scm:760 @@ -2137,7 +2137,7 @@ msgstr "Tahtiviivan tarkistus epäonnistui. Odotettiin: ~a, löytyi: ~a" #: music-functions.scm:745 #, lisp-format -msgid "can't find quoted music `~S'" +msgid "cannot find quoted music `~S'" msgstr "ei löytynyt lainusmerkittyä musiikkai `~S'" #: music-functions.scm:953 @@ -2156,12 +2156,12 @@ msgstr "määrittämätön: ~S" #: output-svg.scm:132 #, lisp-format -msgid "can't decypher Pango description: ~a" +msgid "cannot decypher Pango description: ~a" msgstr "decypher ei onnistunut Pango kuvauksessa: ~a" #: output-tex.scm:98 #, lisp-format -msgid "can't find ~a in ~a" +msgid "cannot find ~a in ~a" msgstr "ei löytynyt ~a paikassa ~a" #: paper.scm:69 diff --git a/po/fr.po b/po/fr.po index 19bffbe72c..978afa673d 100644 --- a/po/fr.po +++ b/po/fr.po @@ -182,12 +182,12 @@ msgstr "Traitement de « %s »... " #: convert-ly.py:279 source-file.cc:54 #, c-format, python-format -msgid "can't open file: `%s'" +msgid "cannot open file: `%s'" msgstr "impossible d'ouvrir le fichier : « %s »" #: convert-ly.py:286 #, python-format -msgid "can't determine version for `%s'. Skipping" +msgid "cannot determine version for `%s'. Skipping" msgstr "impossible de déterminer la version pour « %s ». Au suivant" #: etf2ly.py:1198 @@ -348,7 +348,7 @@ msgstr "Tous les extraits sont à jour..." #: lilypond-book.py:1608 #, python-format -msgid "can't determine format for: %s" +msgid "cannot determine format for: %s" msgstr "impossible de déterminer le format pour : %s" #: lilypond-book.py:1619 @@ -543,7 +543,7 @@ msgstr "tentative d'obtenir une traduction pour quelque chose qui n'est pas mon #: all-font-metrics.cc:164 #, c-format -msgid "can't find font: `%s'" +msgid "cannot find font: `%s'" msgstr "impossible de trouver la police : « %s »" #: all-font-metrics.cc:165 @@ -552,7 +552,7 @@ msgstr "chargement de la police par défaut" #: all-font-metrics.cc:172 #, c-format -msgid "can't find default font: `%s'" +msgid "cannot find default font: `%s'" msgstr "impossible de trouver la police par défaut : « %s »" #: all-font-metrics.cc:173 includable-lexer.cc:62 lily-parser-scheme.cc:108 @@ -570,7 +570,7 @@ msgstr "l'argument de \\applycontext n'est pas une procédure" #: auto-change-iterator.cc:62 change-iterator.cc:61 #, c-format -msgid "can't change, already in translator: %s" +msgid "cannot change, already in translator: %s" msgstr "impossible de faire un changement, c'est déjà dans le traducteur : %s" #: axis-group-engraver.cc:82 @@ -635,12 +635,12 @@ msgstr "Pas d'entrée d'espacement entre %s et « %s »" #: change-iterator.cc:23 #, c-format -msgid "can't change `%s' to `%s'" +msgid "cannot change `%s' to `%s'" msgstr "impossible de changer « %s » en « %s »" #. FIXME: constant error message. #: change-iterator.cc:82 -msgid "can't find context to switch to" +msgid "cannot find context to switch to" msgstr "impossible de repérer le contexte vers lequel commuter" #. We could change the current translator's id, but that would make @@ -706,12 +706,12 @@ msgstr "nécessite des arguments symboliques pour \\override et \\revert" #: context.cc:151 #, c-format -msgid "can't find or create new `%s'" +msgid "cannot find or create new `%s'" msgstr "impossible de trouver ou créer un nouveau « %s »" #: context.cc:213 #, c-format -msgid "can't find or create `%s' called `%s'" +msgid "cannot find or create `%s' called `%s'" msgstr "impossible de trouver ou créer « %s » appelé « %s »" #: context.cc:276 @@ -721,7 +721,7 @@ msgstr "Événement CreateContext invalide : impossible de créer le contexte %s #: context.cc:388 #, c-format -msgid "can't find or create: `%s'" +msgid "cannot find or create: `%s'" msgstr "impossible de trouver ou créer : « %s »" #: custos.cc:77 @@ -744,7 +744,7 @@ msgid "dot `%s' not found" msgstr "point « %s » introuvable" #: dynamic-engraver.cc:186 span-dynamic-performer.cc:87 -msgid "can't find start of (de)crescendo" +msgid "cannot find start of (de)crescendo" msgstr "impossible de trouver le début du (de)crescendo" #: dynamic-engraver.cc:195 @@ -829,12 +829,12 @@ msgstr "\\%s implicite ajouté" #. ligature may not start with 2nd head of pes or flexa #: gregorian-ligature-engraver.cc:212 -msgid "can't apply `\\~' on first head of ligature" +msgid "cannot apply `\\~' on first head of ligature" msgstr "Impossible d'appliquer '\\~' à la première tête de ligature" #. (pitch == prev_pitch) #: gregorian-ligature-engraver.cc:224 -msgid "can't apply `\\~' on heads with identical pitch" +msgid "cannot apply `\\~' on heads with identical pitch" msgstr "impossible d'appliquer '\\~' à des têtes ayant la même hauteur" #: grob-interface.cc:48 @@ -887,7 +887,7 @@ msgstr "l'inclusion de fichiers n'est pas permise en mode sécurisé" #: includable-lexer.cc:60 lily-guile.cc:96 lily-parser-scheme.cc:115 #, c-format -msgid "can't find file: `%s'" +msgid "cannot find file: `%s'" msgstr "impossible de trouver le fichier : « %s »" #: input.cc:112 source-file.cc:168 source-file.cc:183 @@ -895,7 +895,7 @@ msgid "position unknown" msgstr "position inconnue" #: ligature-engraver.cc:93 -msgid "can't find start of ligature" +msgid "cannot find start of ligature" msgstr "impossible de trouver le début d'une ligature" #: ligature-engraver.cc:98 @@ -929,7 +929,7 @@ msgstr "(chemin de chargement : « %s »)" #: lily-guile.cc:439 #, c-format -msgid "can't find property type-check for `%s' (%s)." +msgid "cannot find property type-check for `%s' (%s)." msgstr "Vérification de type de propriété pour « %s » (%s) non trouvée." #: lily-guile.cc:442 @@ -969,7 +969,7 @@ msgstr "impossible de changer le répertoire de travail pour : %s" #: lily-parser-scheme.cc:107 #, c-format -msgid "can't find init file: `%s'" +msgid "cannot find init file: `%s'" msgstr "impossible de trouver le fichier d'initialisation : « %s »" #: lily-parser-scheme.cc:125 @@ -1214,7 +1214,7 @@ msgstr "utilisateur inconnu : « %s »" #: main.cc:324 #, c-format -msgid "can't get user id from user name: %s: %s" +msgid "cannot get user id from user name: %s: %s" msgstr "" "impossible de repérer l'id d'utilisateur à partir du nom d'utilisateur : %" "s : %s" @@ -1226,27 +1226,27 @@ msgstr "groupe inconnu : %s" #: main.cc:341 #, c-format -msgid "can't get group id from group name: %s: %s" +msgid "cannot get group id from group name: %s: %s" msgstr "impossible de repérer l'id de groupe à partir du nom de groupe : %s : %s" #: main.cc:349 #, c-format -msgid "can't chroot to: %s: %s" +msgid "cannot chroot to: %s: %s" msgstr "impossible de chrooter vers : %s : %s" #: main.cc:356 #, c-format -msgid "can't change group id to: %d: %s" +msgid "cannot change group id to: %d: %s" msgstr "impossible de changer l'id de groupe vers : %d : %s" #: main.cc:362 #, c-format -msgid "can't change user id to: %d: %s" +msgid "cannot change user id to: %d: %s" msgstr "impossible de changer l'id d'utilisateur vers : %d : %s" #: main.cc:368 #, c-format -msgid "can't change working directory to: %s: %s" +msgid "cannot change working directory to: %s: %s" msgstr "impossible de changer le répertoire de travail vers : %s : %s" #: main.cc:415 @@ -1340,12 +1340,12 @@ msgstr "expérimental : ajustement temporaire (de %d centièmes) du canal." #: midi-stream.cc:28 #, c-format -msgid "can't open for write: %s: %s" +msgid "cannot open for write: %s: %s" msgstr "impossible d'ouvrir le fichier en écriture : %s : %s" #: midi-stream.cc:44 #, c-format -msgid "can't write to file: `%s'" +msgid "cannot write to file: `%s'" msgstr "impossible d'écrire dans le fichier : « %s »" #: music-iterator.cc:172 @@ -1363,7 +1363,7 @@ msgid "transposition by %s makes alteration larger than double" msgstr "La transposition de %s crée des altérations supérieures aux doubles" #: new-fingering-engraver.cc:95 -msgid "can't add text scripts to individual note heads" +msgid "cannot add text scripts to individual note heads" msgstr "impossible d'ajouter du texte à des têtes de notes individuelles" #: new-fingering-engraver.cc:238 @@ -1379,7 +1379,7 @@ msgid "ignoring too many clashing note columns" msgstr "trop de notes se chevauchent. On les ignore." #: note-column.cc:123 -msgid "can't have note heads and rests together on a stem" +msgid "cannot have note heads and rests together on a stem" msgstr "impossible de superposer une note et un silence" #: note-head.cc:69 @@ -1393,12 +1393,12 @@ msgstr "NoteEvent sans hauteur" #: open-type-font.cc:33 #, c-format -msgid "can't allocate %lu bytes" +msgid "cannot allocate %lu bytes" msgstr "impossible d'allouer %lu octets" #: open-type-font.cc:37 #, c-format -msgid "can't load font table: %s" +msgid "cannot load font table: %s" msgstr "impossible de charger la table de police : %s" #: open-type-font.cc:96 @@ -1506,12 +1506,12 @@ msgstr "nécessite 3 cordes pour les pédales du piano, mais seulement %ld trouv #: piano-pedal-engraver.cc:298 piano-pedal-engraver.cc:309 #: piano-pedal-performer.cc:93 #, c-format -msgid "can't find start of piano pedal: `%s'" +msgid "cannot find start of piano pedal: `%s'" msgstr "impossible de repérer le début de la pédale de piano : « %s »" #: piano-pedal-engraver.cc:344 #, c-format -msgid "can't find start of piano pedal bracket: `%s'" +msgid "cannot find start of piano pedal bracket: `%s'" msgstr "impossible de trouver le début du crochet de pédale de piano : « %s »" #: program-option.cc:195 @@ -1584,7 +1584,7 @@ msgstr "Fichier de relocation %s\n" #: relocate.cc:358 #, c-format -msgid "can't open file %s" +msgid "cannot open file %s" msgstr "impossible d'ouvrir le fichier « %s »" #: relocate.cc:388 @@ -1593,7 +1593,7 @@ msgid "Unknown relocation command %s" msgstr "Commande de relocation inconnue %s" #: rest-collision.cc:150 -msgid "can't resolve rest collision: rest direction not set" +msgid "cannot resolve rest collision: rest direction not set" msgstr "collision de silences insoluble : direction du silence non fixée" #: rest-collision.cc:164 rest-collision.cc:209 @@ -1654,7 +1654,7 @@ msgid "unterminated slur" msgstr "liaison non terminée" #: slur-engraver.cc:165 -msgid "can't end slur" +msgid "cannot end slur" msgstr "impossible de terminer la liaison" #: source-file.cc:74 @@ -1705,7 +1705,7 @@ msgid "Grob count %d" msgstr "%d objets graphiques (grobs) dénombrés" #: text-spanner-engraver.cc:60 -msgid "can't find start of text spanner" +msgid "cannot find start of text spanner" msgstr "impossible de repérer le point de départ de l'extension de texte" #: text-spanner-engraver.cc:72 @@ -1746,7 +1746,7 @@ msgstr "traducteur inconnu : « %s »" #: translator-group.cc:152 #, c-format -msgid "can't find: `%s'" +msgid "cannot find: `%s'" msgstr "impossible de trouver : « %s »" #: translator.cc:331 @@ -1760,7 +1760,7 @@ msgid "Previous %s event here" msgstr "Événement %s précédent ici" #: trill-spanner-engraver.cc:67 -msgid "can't find start of trill spanner" +msgid "cannot find start of trill spanner" msgstr "impossible de repérer le point de départ de l'extension de trille" #: trill-spanner-engraver.cc:79 @@ -1799,7 +1799,7 @@ msgstr "Ligature vaticane : aucun joint (delta_pitch == 0)" #. fixme: be more verbose. #: volta-engraver.cc:143 -msgid "can't end volta spanner" +msgid "cannot end volta spanner" msgstr "ne sait où terminer l'extension de reprise" #: volta-engraver.cc:153 @@ -1976,7 +1976,7 @@ msgstr "symbole attendu : ~S" #: define-music-types.scm:746 #, lisp-format -msgid "can't find music object: ~S" +msgid "cannot find music object: ~S" msgstr "impossible de trouver l'objet de type musique : ~S" #: define-music-types.scm:766 @@ -1995,7 +1995,7 @@ msgstr "le document ~s devrait contenir une paire" #: document-backend.scm:135 #, lisp-format -msgid "can't find interface for property: ~S" +msgid "cannot find interface for property: ~S" msgstr "impossible de trouver l'interface pour la propriété ~S" #: document-backend.scm:145 @@ -2015,7 +2015,7 @@ msgstr "Écriture de ~S..." #: documentation-lib.scm:172 #, lisp-format -msgid "can't find description for property ~S (~S)" +msgid "cannot find description for property ~S (~S)" msgstr "impossible de trouver une description pour la propriété ~S (~S)" #: framework-eps.scm:77 framework-eps.scm:78 @@ -2025,12 +2025,12 @@ msgstr "Écriture de ~a..." #: framework-ps.scm:279 #, lisp-format -msgid "can't embed ~S=~S" +msgid "cannot embed ~S=~S" msgstr "intégration impossible : ~S=~S" #: framework-ps.scm:332 #, lisp-format -msgid "can't extract file matching ~a from ~a" +msgid "cannot extract file matching ~a from ~a" msgstr "impossible d'extraire le fichier ~a à partir de ~a" #: framework-ps.scm:349 @@ -2045,12 +2045,12 @@ msgstr "impossible d'intégrer les polices ~s ~s ~s" #: framework-ps.scm:731 #, lisp-format -msgid "can't convert to ~S" +msgid "cannot convert to ~S" msgstr "impossible de convertir en ~S" #: framework-ps.scm:750 framework-ps.scm:753 #, lisp-format -msgid "can't generate ~S using the postscript back-end" +msgid "cannot generate ~S using the postscript back-end" msgstr "impossible de générer ~S à l'aide du support postscript" #: framework-ps.scm:760 @@ -2167,7 +2167,7 @@ msgstr "" #: music-functions.scm:745 #, lisp-format -msgid "can't find quoted music `~S'" +msgid "cannot find quoted music `~S'" msgstr "impossible de trouver la citation de musique « ~S »" #: music-functions.scm:953 @@ -2186,12 +2186,12 @@ msgstr "~S indéfini" #: output-svg.scm:132 #, lisp-format -msgid "can't decypher Pango description: ~a" +msgid "cannot decypher Pango description: ~a" msgstr "la description de Pango ne peut être déchiffrée : ~a" #: output-tex.scm:98 #, lisp-format -msgid "can't find ~a in ~a" +msgid "cannot find ~a in ~a" msgstr "impossible de trouver ~a dans ~a" #: paper.scm:69 diff --git a/po/it.po b/po/it.po index 0e707e8aee..f3dfdf0ed7 100644 --- a/po/it.po +++ b/po/it.po @@ -165,12 +165,12 @@ msgstr "Elaboro..." #: convert-ly.py:279 source-file.cc:54 #, c-format, python-format -msgid "can't open file: `%s'" +msgid "cannot open file: `%s'" msgstr "non posso aprire il file: `%s'" #: convert-ly.py:286 #, fuzzy, python-format -msgid "can't determine version for `%s'. Skipping" +msgid "cannot determine version for `%s'. Skipping" msgstr "non trovo il file: `%s'" #: etf2ly.py:1198 @@ -322,7 +322,7 @@ msgstr "" #: lilypond-book.py:1532 #, fuzzy, python-format -msgid "can't determine format for: %s" +msgid "cannot determine format for: %s" msgstr "non trovo il file: `%s'" #: lilypond-book.py:1543 @@ -513,7 +513,7 @@ msgstr "" #: all-font-metrics.cc:164 #, fuzzy, c-format -msgid "can't find font: `%s'" +msgid "cannot find font: `%s'" msgstr "non trovo il file: `%s'" #: all-font-metrics.cc:165 @@ -523,7 +523,7 @@ msgstr "non trovo il file: `%s'" #: all-font-metrics.cc:172 #, fuzzy, c-format -msgid "can't find default font: `%s'" +msgid "cannot find default font: `%s'" msgstr "non trovo il file: `%s'" #: all-font-metrics.cc:173 includable-lexer.cc:62 lily-parser-scheme.cc:108 @@ -541,7 +541,7 @@ msgstr "" #: auto-change-iterator.cc:62 change-iterator.cc:61 #, fuzzy, c-format -msgid "can't change, already in translator: %s" +msgid "cannot change, already in translator: %s" msgstr "non posso cambiare `%s' in `%s'" #: axis-group-engraver.cc:82 @@ -607,13 +607,13 @@ msgstr "traduttore sconosciuto `%s'" #: change-iterator.cc:23 #, fuzzy, c-format -msgid "can't change `%s' to `%s'" +msgid "cannot change `%s' to `%s'" msgstr "non posso cambiare `%s' in `%s'" #. FIXME: constant error message. #: change-iterator.cc:82 #, fuzzy -msgid "can't find context to switch to" +msgid "cannot find context to switch to" msgstr "Non trovo il contesto dello Score" #. We could change the current translator's id, but that would make @@ -681,12 +681,12 @@ msgstr "" #: context.cc:151 #, fuzzy, c-format -msgid "can't find or create new `%s'" +msgid "cannot find or create new `%s'" msgstr "non trovo e non posso creare `%s'" #: context.cc:213 #, fuzzy, c-format -msgid "can't find or create `%s' called `%s'" +msgid "cannot find or create `%s' called `%s'" msgstr "non trovo e non posso creare '%s' chiamato '%s'" #: context.cc:276 @@ -696,7 +696,7 @@ msgstr "" #: context.cc:388 #, fuzzy, c-format -msgid "can't find or create: `%s'" +msgid "cannot find or create: `%s'" msgstr "non trovo e non posso creare `%s'" #: custos.cc:77 @@ -715,7 +715,7 @@ msgstr "tipo di chiave sconosciuto" #: dynamic-engraver.cc:186 span-dynamic-performer.cc:87 #, fuzzy -msgid "can't find start of (de)crescendo" +msgid "cannot find start of (de)crescendo" msgstr "non trovo un (de)crescendo fino alla fine" #: dynamic-engraver.cc:195 @@ -806,12 +806,12 @@ msgstr "" #. ligature may not start with 2nd head of pes or flexa #: gregorian-ligature-engraver.cc:212 #, fuzzy -msgid "can't apply `\\~' on first head of ligature" +msgid "cannot apply `\\~' on first head of ligature" msgstr "non trovo le estremità di %s" #. (pitch == prev_pitch) #: gregorian-ligature-engraver.cc:224 -msgid "can't apply `\\~' on heads with identical pitch" +msgid "cannot apply `\\~' on heads with identical pitch" msgstr "" #: grob-interface.cc:48 @@ -866,7 +866,7 @@ msgstr "" #: includable-lexer.cc:60 lily-guile.cc:96 lily-parser-scheme.cc:115 #, c-format -msgid "can't find file: `%s'" +msgid "cannot find file: `%s'" msgstr "non trovo il file: `%s'" #: input.cc:112 source-file.cc:168 source-file.cc:183 @@ -875,7 +875,7 @@ msgstr "posizione sconosciuta" #: ligature-engraver.cc:95 #, fuzzy -msgid "can't find start of ligature" +msgid "cannot find start of ligature" msgstr "non trovo le estremità di %s" #: ligature-engraver.cc:100 @@ -912,7 +912,7 @@ msgstr "(Il path di caricamento #: lily-guile.cc:439 #, c-format -msgid "can't find property type-check for `%s' (%s)." +msgid "cannot find property type-check for `%s' (%s)." msgstr "" #: lily-guile.cc:442 @@ -950,7 +950,7 @@ msgstr "non trovo e non posso creare `%s'" #: lily-parser-scheme.cc:107 #, fuzzy, c-format -msgid "can't find init file: `%s'" +msgid "cannot find init file: `%s'" msgstr "non trovo il file: `%s'" #: lily-parser-scheme.cc:125 @@ -1188,7 +1188,7 @@ msgstr "% strumento:" #: main.cc:324 #, c-format -msgid "can't get user id from user name: %s: %s" +msgid "cannot get user id from user name: %s: %s" msgstr "" #: main.cc:339 @@ -1198,27 +1198,27 @@ msgstr "% strumento:" #: main.cc:341 #, fuzzy, c-format -msgid "can't get group id from group name: %s: %s" +msgid "cannot get group id from group name: %s: %s" msgstr "non posso cambiare `%s' in `%s'" #: main.cc:349 #, fuzzy, c-format -msgid "can't chroot to: %s: %s" +msgid "cannot chroot to: %s: %s" msgstr "non trovo e non posso creare `%s'" #: main.cc:356 #, fuzzy, c-format -msgid "can't change group id to: %d: %s" +msgid "cannot change group id to: %d: %s" msgstr "non posso cambiare `%s' in `%s'" #: main.cc:362 #, fuzzy, c-format -msgid "can't change user id to: %d: %s" +msgid "cannot change user id to: %d: %s" msgstr "non posso cambiare `%s' in `%s'" #: main.cc:368 #, fuzzy, c-format -msgid "can't change working directory to: %s: %s" +msgid "cannot change working directory to: %s: %s" msgstr "non trovo e non posso creare `%s'" #: main.cc:415 @@ -1306,12 +1306,12 @@ msgstr "" #: midi-stream.cc:28 #, fuzzy, c-format -msgid "can't open for write: %s: %s" +msgid "cannot open for write: %s: %s" msgstr "non posso aprire il file: `%s'" #: midi-stream.cc:44 #, fuzzy, c-format -msgid "can't write to file: `%s'" +msgid "cannot write to file: `%s'" msgstr "non posso aprire il file: `%s'" #: music-iterator.cc:172 @@ -1329,7 +1329,7 @@ msgid "transposition by %s makes alteration larger than double" msgstr "la trasposizine di %s rende le alterazioni più che doppie" #: new-fingering-engraver.cc:87 -msgid "can't add text scripts to individual note heads" +msgid "cannot add text scripts to individual note heads" msgstr "" #: new-fingering-engraver.cc:246 @@ -1346,7 +1346,7 @@ msgid "ignoring too many clashing note columns" msgstr "Troppe collisioni tra colonne di note. Le ignoro." #: note-column.cc:123 -msgid "can't have note heads and rests together on a stem" +msgid "cannot have note heads and rests together on a stem" msgstr "" #: note-head.cc:69 @@ -1360,12 +1360,12 @@ msgstr "" #: open-type-font.cc:33 #, fuzzy, c-format -msgid "can't allocate %lu bytes" +msgid "cannot allocate %lu bytes" msgstr "non posso maneggiare %s" #: open-type-font.cc:37 #, fuzzy, c-format -msgid "can't load font table: %s" +msgid "cannot load font table: %s" msgstr "non trovo il file: `%s'" #: open-type-font.cc:96 @@ -1468,12 +1468,12 @@ msgstr "" #: piano-pedal-engraver.cc:319 piano-pedal-engraver.cc:330 #: piano-pedal-performer.cc:93 #, fuzzy, c-format -msgid "can't find start of piano pedal: `%s'" +msgid "cannot find start of piano pedal: `%s'" msgstr "non risco a trovare una ruling note a %s" #: piano-pedal-engraver.cc:377 #, fuzzy, c-format -msgid "can't find start of piano pedal bracket: `%s'" +msgid "cannot find start of piano pedal bracket: `%s'" msgstr "non risco a trovare una ruling note a %s" #: program-option.cc:195 @@ -1544,7 +1544,7 @@ msgstr "non posso aprire il file: `%s'" #: relocate.cc:358 #, fuzzy, c-format -msgid "can't open file %s" +msgid "cannot open file %s" msgstr "non posso aprire il file: `%s'" #: relocate.cc:388 @@ -1553,7 +1553,7 @@ msgid "Unknown relocation command %s" msgstr "" #: rest-collision.cc:150 -msgid "can't resolve rest collision: rest direction not set" +msgid "cannot resolve rest collision: rest direction not set" msgstr "" #: rest-collision.cc:164 rest-collision.cc:209 @@ -1619,7 +1619,7 @@ msgstr "slur non terminato" #: slur-engraver.cc:165 #, fuzzy -msgid "can't end slur" +msgid "cannot end slur" msgstr "non posso maneggiare %s" #: source-file.cc:74 @@ -1672,7 +1672,7 @@ msgstr "" #: text-spanner-engraver.cc:60 #, fuzzy -msgid "can't find start of text spanner" +msgid "cannot find start of text spanner" msgstr "non trovo le estremità di %s" #: text-spanner-engraver.cc:72 @@ -1713,7 +1713,7 @@ msgstr "traduttore sconosciuto `%s'" #: translator-group.cc:152 #, fuzzy, c-format -msgid "can't find: `%s'" +msgid "cannot find: `%s'" msgstr "non trovo `%s'" #: translator.cc:310 @@ -1728,7 +1728,7 @@ msgstr "" #: trill-spanner-engraver.cc:67 #, fuzzy -msgid "can't find start of trill spanner" +msgid "cannot find start of trill spanner" msgstr "non trovo le estremità di %s" #: trill-spanner-engraver.cc:79 @@ -1767,7 +1767,7 @@ msgstr "" #. fixme: be more verbose. #: volta-engraver.cc:143 #, fuzzy -msgid "can't end volta spanner" +msgid "cannot end volta spanner" msgstr "non trovo le estremità di %s" #: volta-engraver.cc:153 @@ -1947,7 +1947,7 @@ msgstr "aspettavo %s" #: define-music-types.scm:737 #, fuzzy, lisp-format -msgid "can't find music object: ~S" +msgid "cannot find music object: ~S" msgstr "non trovo `%s'" #: define-music-types.scm:757 @@ -1966,7 +1966,7 @@ msgstr "" #: document-backend.scm:135 #, fuzzy, lisp-format -msgid "can't find interface for property: ~S" +msgid "cannot find interface for property: ~S" msgstr "non riesco a trovare il carattere `%s'" #: document-backend.scm:145 @@ -1986,7 +1986,7 @@ msgstr "Genero le voci..." #: documentation-lib.scm:172 #, fuzzy, lisp-format -msgid "can't find description for property ~S (~S)" +msgid "cannot find description for property ~S (~S)" msgstr "non riesco a trovare il carattere `%s'" #: framework-eps.scm:77 framework-eps.scm:78 @@ -1996,12 +1996,12 @@ msgstr "Genero le voci..." #: framework-ps.scm:278 #, lisp-format -msgid "can't embed ~S=~S" +msgid "cannot embed ~S=~S" msgstr "" #: framework-ps.scm:331 #, lisp-format -msgid "can't extract file matching ~a from ~a" +msgid "cannot extract file matching ~a from ~a" msgstr "" #: framework-ps.scm:348 @@ -2016,12 +2016,12 @@ msgstr "" #: framework-ps.scm:610 #, lisp-format -msgid "can't convert to ~S" +msgid "cannot convert to ~S" msgstr "" #: framework-ps.scm:629 framework-ps.scm:632 #, lisp-format -msgid "can't generate ~S using the postscript back-end" +msgid "cannot generate ~S using the postscript back-end" msgstr "" #: framework-ps.scm:639 @@ -2129,7 +2129,7 @@ msgstr "" #: music-functions.scm:745 #, fuzzy, lisp-format -msgid "can't find quoted music `~S'" +msgid "cannot find quoted music `~S'" msgstr "non trovo il file: `%s'" #: music-functions.scm:953 @@ -2148,12 +2148,12 @@ msgstr "" #: output-svg.scm:132 #, lisp-format -msgid "can't decypher Pango description: ~a" +msgid "cannot decypher Pango description: ~a" msgstr "" #: output-tex.scm:98 #, fuzzy, lisp-format -msgid "can't find ~a in ~a" +msgid "cannot find ~a in ~a" msgstr "non trovo le estremità di %s" #: paper.scm:69 @@ -2200,11 +2200,11 @@ msgstr "" #~ msgstr "Cosa? Non è una richiesta: `%s'" #, fuzzy -#~ msgid "can't find `%s' context" +#~ msgid "cannot find `%s' context" #~ msgstr "non trovo `%s'" #, fuzzy -#~ msgid "can't find line breaking that satisfies constraints" +#~ msgid "cannot find line breaking that satisfies constraints" #~ msgstr "la soluzione non soddisfa i vincoli" #~ msgid "Creator: " @@ -2219,7 +2219,7 @@ msgstr "" #~ msgstr "Cosa? Non è una richiesta: `%s'" #, fuzzy -#~ msgid "can't find ascii character: %d" +#~ msgid "cannot find ascii character: %d" #~ msgstr "non riesco a trovare il carattere `%s'" #, fuzzy @@ -2227,7 +2227,7 @@ msgstr "" #~ msgstr "extender non terminato" #, fuzzy -#~ msgid "can't find signature for music function" +#~ msgid "cannot find signature for music function" #~ msgstr "Non trovo il contesto dello Score" #, fuzzy @@ -2263,7 +2263,7 @@ msgstr "" #~ msgstr "Genero le voci..." #, fuzzy -#~ msgid "can't dlopen: %s: %s" +#~ msgid "cannot dlopen: %s: %s" #~ msgstr "non posso aprire il file: `%s'" #, fuzzy @@ -2283,7 +2283,7 @@ msgstr "" #~ msgstr "non trovo e non posso creare `%s'" #, fuzzy -#~ msgid "can't handle a percent repeat of length: %s" +#~ msgid "cannot handle a percent repeat of length: %s" #~ msgstr "non so manipolare tasti vuoti" #, fuzzy @@ -2327,7 +2327,7 @@ msgstr "" #~ msgstr "Errore non fatale: " #, fuzzy -#~ msgid "can't find CFF/PFA/PFB font ~S=~S" +#~ msgid "cannot find CFF/PFA/PFB font ~S=~S" #~ msgstr "non trovo il file: `%s'" #, fuzzy @@ -2367,11 +2367,11 @@ msgstr "" #~ msgstr "apice finale mancante" #, fuzzy -#~ msgid "kpathsea can't find %s file: `%s'" +#~ msgid "kpathsea cannot find %s file: `%s'" #~ msgstr "Non trovo il file `%s'" #, fuzzy -#~ msgid "kpathsea can't find file: `%s'" +#~ msgid "kpathsea cannot find file: `%s'" #~ msgstr "Non trovo il file `%s'" #, fuzzy @@ -2435,7 +2435,7 @@ msgstr "" #~ msgstr "L'output MIDI è inviato a %s..." #, fuzzy -#~ msgid "can't find file: `%s.%s'" +#~ msgid "cannot find file: `%s.%s'" #~ msgstr "non trovo il file: `%s'" #, fuzzy @@ -2493,7 +2493,7 @@ msgstr "" #~ msgstr "della definizione musicale: %s" #, fuzzy -#~ msgid "can't find start of phrasing slur" +#~ msgid "cannot find start of phrasing slur" #~ msgstr "non trovo le estremità di %s" #, fuzzy @@ -2505,7 +2505,7 @@ msgstr "" #~ msgstr "Spanner non legato `%s'" #, fuzzy -#~ msgid "can't find start of slur" +#~ msgid "cannot find start of slur" #~ msgstr "non trovo le estremità di %s" #, fuzzy @@ -2542,7 +2542,7 @@ msgstr "" #~ msgid "Slur over rest?" #~ msgstr "Metto uno slur sulla pausa." -#~ msgid "can't map file" +#~ msgid "cannot map file" #~ msgstr "non posso mappare il documento" #, fuzzy @@ -2653,7 +2653,7 @@ msgstr "" #~ msgstr "Numero di tracce non valido" #, fuzzy -#~ msgid "can't handle non-metrical time" +#~ msgid "cannot handle non-metrical time" #~ msgstr "tempo non metrico" #~ msgid "invalid running status" @@ -2691,7 +2691,7 @@ msgstr "" #~ msgstr "Eccezione di virgola mobile" #, fuzzy -#~ msgid "can't set mem-checking!" +#~ msgid "cannot set mem-checking!" #~ msgstr "non posso settare mem-checking" #, fuzzy @@ -2730,7 +2730,7 @@ msgstr "" #~ msgid "Huh? Not a Request: `%s'" #~ msgstr "Cosa? Non è una richiesta: `%s'" -#~ msgid "can't find both ends of %s" +#~ msgid "cannot find both ends of %s" #~ msgstr "non trovo le estremità di %s" #, fuzzy @@ -2823,11 +2823,11 @@ msgstr "" #~ msgid "More than one music block" #~ msgstr "Più di un blocco di musica" -#~ msgid "can't abbreviate" +#~ msgid "cannot abbreviate" #~ msgstr "non posso abbreviare" #, fuzzy -#~ msgid "can't abbreviate tuplet" +#~ msgid "cannot abbreviate tuplet" #~ msgstr "non posso abbreviare" #~ msgid "Invalid midi format" diff --git a/po/ja.po b/po/ja.po index 330dc6aef4..780b77feb0 100644 --- a/po/ja.po +++ b/po/ja.po @@ -166,12 +166,12 @@ msgstr " #: convert-ly.py:279 source-file.cc:54 #, fuzzy, c-format, python-format -msgid "can't open file: `%s'" +msgid "cannot open file: `%s'" msgstr "¥Õ¥¡¥¤¥ë¤ò³«¤±¤Þ¤»¤ó: `%s'" #: convert-ly.py:286 #, fuzzy, python-format -msgid "can't determine version for `%s'. Skipping" +msgid "cannot determine version for `%s'. Skipping" msgstr "¥Ç¥Õ¥©¥ë¥È¥Õ¥©¥ó¥È¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó: `%s'" #: etf2ly.py:1198 @@ -327,7 +327,7 @@ msgstr "" #: lilypond-book.py:1532 #, fuzzy, python-format -msgid "can't determine format for: %s" +msgid "cannot determine format for: %s" msgstr "¥Ç¥Õ¥©¥ë¥È¥Õ¥©¥ó¥È¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó: `%s'" #: lilypond-book.py:1543 @@ -519,7 +519,7 @@ msgstr "" #: all-font-metrics.cc:164 #, fuzzy, c-format -msgid "can't find font: `%s'" +msgid "cannot find font: `%s'" msgstr "¥Õ¥©¥ó¥È¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó: `%s'" #: all-font-metrics.cc:165 @@ -529,7 +529,7 @@ msgstr " #: all-font-metrics.cc:172 #, fuzzy, c-format -msgid "can't find default font: `%s'" +msgid "cannot find default font: `%s'" msgstr "¥Ç¥Õ¥©¥ë¥È¥Õ¥©¥ó¥È¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó: `%s'" #: all-font-metrics.cc:173 includable-lexer.cc:62 lily-parser-scheme.cc:108 @@ -548,7 +548,7 @@ msgstr "" #: auto-change-iterator.cc:62 change-iterator.cc:61 #, fuzzy, c-format -msgid "can't change, already in translator: %s" +msgid "cannot change, already in translator: %s" msgstr "`%s' ¤«¤é `%s' ¤ËÊѹ¹¤Ç¤­¤Þ¤»¤ó" #: axis-group-engraver.cc:82 @@ -617,13 +617,13 @@ msgstr "Ƚ #: change-iterator.cc:23 #, fuzzy, c-format -msgid "can't change `%s' to `%s'" +msgid "cannot change `%s' to `%s'" msgstr "`%s' ¤«¤é `%s' ¤ËÊѹ¹¤Ç¤­¤Þ¤»¤ó" #. FIXME: constant error message. #: change-iterator.cc:82 #, fuzzy -msgid "can't find context to switch to" +msgid "cannot find context to switch to" msgstr "`%s' ¥³¥ó¥Æ¥­¥¹¥È¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó" #. We could change the current translator's id, but that would make @@ -692,12 +692,12 @@ msgstr "" #: context.cc:151 #, fuzzy, c-format -msgid "can't find or create new `%s'" +msgid "cannot find or create new `%s'" msgstr "¸«¤Ä¤«¤é¤Ê¤¤¤«ºî¤ì¤Þ¤»¤ó: `%s'" #: context.cc:213 #, fuzzy, c-format -msgid "can't find or create `%s' called `%s'" +msgid "cannot find or create `%s' called `%s'" msgstr "`%2$s' ¤Ë¸Æ¤Ð¤ì¤¿ `%1$s' ¤¬¸«¤Ä¤«¤é¤Ê¤¤¤«ºî¤ì¤Þ¤»¤ó" #: context.cc:276 @@ -707,7 +707,7 @@ msgstr "" #: context.cc:388 #, fuzzy, c-format -msgid "can't find or create: `%s'" +msgid "cannot find or create: `%s'" msgstr "¸«¤Ä¤«¤é¤Ê¤¤¤«ºî¤ì¤Þ¤»¤ó: `%s'" #: custos.cc:77 @@ -726,7 +726,7 @@ msgstr " #: dynamic-engraver.cc:186 span-dynamic-performer.cc:87 #, fuzzy -msgid "can't find start of (de)crescendo" +msgid "cannot find start of (de)crescendo" msgstr "ËöÈø¤Ø¤Î(¥Ç)¥¯¥ì¥Ã¥·¥§¥ó¥É¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó" #: dynamic-engraver.cc:195 @@ -817,12 +817,12 @@ msgstr "" #. ligature may not start with 2nd head of pes or flexa #: gregorian-ligature-engraver.cc:212 #, fuzzy -msgid "can't apply `\\~' on first head of ligature" +msgid "cannot apply `\\~' on first head of ligature" msgstr "ËöÈø¤Ø¤Î(¥Ç)¥¯¥ì¥Ã¥·¥§¥ó¥É¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó" #. (pitch == prev_pitch) #: gregorian-ligature-engraver.cc:224 -msgid "can't apply `\\~' on heads with identical pitch" +msgid "cannot apply `\\~' on heads with identical pitch" msgstr "" #: grob-interface.cc:48 @@ -878,7 +878,7 @@ msgstr "" #: includable-lexer.cc:60 lily-guile.cc:96 lily-parser-scheme.cc:115 #, fuzzy, c-format -msgid "can't find file: `%s'" +msgid "cannot find file: `%s'" msgstr "¥Õ¥¡¥¤¥ë¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó: `%s'" #: input.cc:112 source-file.cc:168 source-file.cc:183 @@ -887,7 +887,7 @@ msgstr " #: ligature-engraver.cc:95 #, fuzzy -msgid "can't find start of ligature" +msgid "cannot find start of ligature" msgstr "ËöÈø¤Ø¤Î(¥Ç)¥¯¥ì¥Ã¥·¥§¥ó¥É¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó" #: ligature-engraver.cc:100 @@ -924,7 +924,7 @@ msgstr "( #: lily-guile.cc:439 #, c-format -msgid "can't find property type-check for `%s' (%s)." +msgid "cannot find property type-check for `%s' (%s)." msgstr "" #: lily-guile.cc:442 @@ -962,7 +962,7 @@ msgstr " #: lily-parser-scheme.cc:107 #, fuzzy, c-format -msgid "can't find init file: `%s'" +msgid "cannot find init file: `%s'" msgstr "¥Õ¥¡¥¤¥ë¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó: `%s'" #: lily-parser-scheme.cc:125 @@ -1224,7 +1224,7 @@ msgstr " #: main.cc:324 #, c-format -msgid "can't get user id from user name: %s: %s" +msgid "cannot get user id from user name: %s: %s" msgstr "" #: main.cc:339 @@ -1234,27 +1234,27 @@ msgstr " #: main.cc:341 #, fuzzy, c-format -msgid "can't get group id from group name: %s: %s" +msgid "cannot get group id from group name: %s: %s" msgstr "`%s' ¤«¤é `%s' ¤ËÊѹ¹¤Ç¤­¤Þ¤»¤ó" #: main.cc:349 #, fuzzy, c-format -msgid "can't chroot to: %s: %s" +msgid "cannot chroot to: %s: %s" msgstr "¸«¤Ä¤«¤é¤Ê¤¤¤«ºî¤ì¤Þ¤»¤ó: `%s'" #: main.cc:356 #, fuzzy, c-format -msgid "can't change group id to: %d: %s" +msgid "cannot change group id to: %d: %s" msgstr "`%s' ¤«¤é `%s' ¤ËÊѹ¹¤Ç¤­¤Þ¤»¤ó" #: main.cc:362 #, fuzzy, c-format -msgid "can't change user id to: %d: %s" +msgid "cannot change user id to: %d: %s" msgstr "`%s' ¤«¤é `%s' ¤ËÊѹ¹¤Ç¤­¤Þ¤»¤ó" #: main.cc:368 #, fuzzy, c-format -msgid "can't change working directory to: %s: %s" +msgid "cannot change working directory to: %s: %s" msgstr "¸«¤Ä¤«¤é¤Ê¤¤¤«ºî¤ì¤Þ¤»¤ó: `%s'" #: main.cc:415 @@ -1342,12 +1342,12 @@ msgstr "" #: midi-stream.cc:28 #, fuzzy, c-format -msgid "can't open for write: %s: %s" +msgid "cannot open for write: %s: %s" msgstr "¥Õ¥¡¥¤¥ë¤ò³«¤±¤Þ¤»¤ó: `%s'" #: midi-stream.cc:44 #, fuzzy, c-format -msgid "can't write to file: `%s'" +msgid "cannot write to file: `%s'" msgstr "¥Õ¥¡¥¤¥ë¤ò³«¤±¤Þ¤»¤ó: `%s'" #: music-iterator.cc:172 @@ -1365,7 +1365,7 @@ msgid "transposition by %s makes alteration larger than double" msgstr "%s ¤ÎÊÑÄ´¤Ë¤è¤Ã¤Æ¡¢Æó¤Ä¤òĶ¤¨¤ëÇÉÀ¸²»¤¬ºî¤é¤ì¤Þ¤·¤¿" #: new-fingering-engraver.cc:87 -msgid "can't add text scripts to individual note heads" +msgid "cannot add text scripts to individual note heads" msgstr "" #: new-fingering-engraver.cc:246 @@ -1382,7 +1382,7 @@ msgid "ignoring too many clashing note columns" msgstr "Äà¤ê¹ç¤ï¤Ê¤¤²»É䤬¿¤¹¤®¤Þ¤¹¡£¤½¤ì¤é¤ò̵»ë¤·¤Þ¤¹¡£" #: note-column.cc:123 -msgid "can't have note heads and rests together on a stem" +msgid "cannot have note heads and rests together on a stem" msgstr "" #: note-head.cc:69 @@ -1396,12 +1396,12 @@ msgstr "" #: open-type-font.cc:33 #, fuzzy, c-format -msgid "can't allocate %lu bytes" +msgid "cannot allocate %lu bytes" msgstr "¥Õ¥¡¥¤¥ë¤ò³«¤±¤Þ¤»¤ó: `%s'" #: open-type-font.cc:37 #, fuzzy, c-format -msgid "can't load font table: %s" +msgid "cannot load font table: %s" msgstr "¥Õ¥©¥ó¥È¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó: `%s'" #: open-type-font.cc:96 @@ -1504,12 +1504,12 @@ msgstr "" #: piano-pedal-engraver.cc:319 piano-pedal-engraver.cc:330 #: piano-pedal-performer.cc:93 #, fuzzy, c-format -msgid "can't find start of piano pedal: `%s'" +msgid "cannot find start of piano pedal: `%s'" msgstr "¸Æ¤Ó½Ð¤µ¤ì¤¿Ê¸»ú¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó: `%s'" #: piano-pedal-engraver.cc:377 #, fuzzy, c-format -msgid "can't find start of piano pedal bracket: `%s'" +msgid "cannot find start of piano pedal bracket: `%s'" msgstr "¸Æ¤Ó½Ð¤µ¤ì¤¿Ê¸»ú¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó: `%s'" #: program-option.cc:195 @@ -1580,7 +1580,7 @@ msgstr " #: relocate.cc:358 #, fuzzy, c-format -msgid "can't open file %s" +msgid "cannot open file %s" msgstr "¥Õ¥¡¥¤¥ë¤ò³«¤±¤Þ¤»¤ó: `%s'" #: relocate.cc:388 @@ -1589,7 +1589,7 @@ msgid "Unknown relocation command %s" msgstr "" #: rest-collision.cc:150 -msgid "can't resolve rest collision: rest direction not set" +msgid "cannot resolve rest collision: rest direction not set" msgstr "" #: rest-collision.cc:164 rest-collision.cc:209 @@ -1655,7 +1655,7 @@ msgstr " #: slur-engraver.cc:165 #, fuzzy -msgid "can't end slur" +msgid "cannot end slur" msgstr "¸«¤Ä¤«¤ê¤Þ¤»¤ó: `%s'" #: source-file.cc:74 @@ -1708,7 +1708,7 @@ msgstr "" #: text-spanner-engraver.cc:60 #, fuzzy -msgid "can't find start of text spanner" +msgid "cannot find start of text spanner" msgstr "ËöÈø¤Ø¤Î(¥Ç)¥¯¥ì¥Ã¥·¥§¥ó¥É¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó" #: text-spanner-engraver.cc:72 @@ -1749,7 +1749,7 @@ msgstr "Ƚ #: translator-group.cc:152 #, fuzzy, c-format -msgid "can't find: `%s'" +msgid "cannot find: `%s'" msgstr "¸«¤Ä¤«¤ê¤Þ¤»¤ó: `%s'" #: translator.cc:310 @@ -1764,7 +1764,7 @@ msgstr "" #: trill-spanner-engraver.cc:67 #, fuzzy -msgid "can't find start of trill spanner" +msgid "cannot find start of trill spanner" msgstr "ËöÈø¤Ø¤Î(¥Ç)¥¯¥ì¥Ã¥·¥§¥ó¥É¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó" #: trill-spanner-engraver.cc:79 @@ -1803,7 +1803,7 @@ msgstr "" #. fixme: be more verbose. #: volta-engraver.cc:143 #, fuzzy -msgid "can't end volta spanner" +msgid "cannot end volta spanner" msgstr "ËöÈø¤Ø¤Î(¥Ç)¥¯¥ì¥Ã¥·¥§¥ó¥É¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó" #: volta-engraver.cc:153 @@ -1984,7 +1984,7 @@ msgstr "" #: define-music-types.scm:737 #, fuzzy, lisp-format -msgid "can't find music object: ~S" +msgid "cannot find music object: ~S" msgstr "`%s' ¥³¥ó¥Æ¥­¥¹¥È¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó" #: define-music-types.scm:757 @@ -2003,7 +2003,7 @@ msgstr "" #: document-backend.scm:135 #, fuzzy, lisp-format -msgid "can't find interface for property: ~S" +msgid "cannot find interface for property: ~S" msgstr "ʸ»úÈֹ椬¸«¤Ä¤«¤ê¤Þ¤»¤ó: %d" #: document-backend.scm:145 @@ -2023,7 +2023,7 @@ msgstr " #: documentation-lib.scm:172 #, fuzzy, lisp-format -msgid "can't find description for property ~S (~S)" +msgid "cannot find description for property ~S (~S)" msgstr "ʸ»úÈֹ椬¸«¤Ä¤«¤ê¤Þ¤»¤ó: %d" #: framework-eps.scm:77 framework-eps.scm:78 @@ -2033,12 +2033,12 @@ msgstr " #: framework-ps.scm:278 #, lisp-format -msgid "can't embed ~S=~S" +msgid "cannot embed ~S=~S" msgstr "" #: framework-ps.scm:331 #, lisp-format -msgid "can't extract file matching ~a from ~a" +msgid "cannot extract file matching ~a from ~a" msgstr "" #: framework-ps.scm:348 @@ -2053,12 +2053,12 @@ msgstr " #: framework-ps.scm:610 #, lisp-format -msgid "can't convert to ~S" +msgid "cannot convert to ~S" msgstr "" #: framework-ps.scm:629 framework-ps.scm:632 #, lisp-format -msgid "can't generate ~S using the postscript back-end" +msgid "cannot generate ~S using the postscript back-end" msgstr "" #: framework-ps.scm:639 @@ -2167,7 +2167,7 @@ msgstr "" #: music-functions.scm:745 #, fuzzy, lisp-format -msgid "can't find quoted music `~S'" +msgid "cannot find quoted music `~S'" msgstr "¥Õ¥©¥ó¥È¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó: `%s'" #: music-functions.scm:953 @@ -2186,12 +2186,12 @@ msgstr "" #: output-svg.scm:132 #, lisp-format -msgid "can't decypher Pango description: ~a" +msgid "cannot decypher Pango description: ~a" msgstr "" #: output-tex.scm:98 #, fuzzy, lisp-format -msgid "can't find ~a in ~a" +msgid "cannot find ~a in ~a" msgstr "ËöÈø¤Ø¤Î(¥Ç)¥¯¥ì¥Ã¥·¥§¥ó¥É¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó" #: paper.scm:69 @@ -2245,11 +2245,11 @@ msgstr "" #~ msgstr "È¿Éüµ­¹æ¤òɽ¼¨¤¹¤ë¤â¤Î¤¬¤¢¤ê¤Þ¤»¤ó" #, fuzzy -#~ msgid "can't find `%s' context" +#~ msgid "cannot find `%s' context" #~ msgstr "`%s' ¥³¥ó¥Æ¥­¥¹¥È¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó" #, fuzzy -#~ msgid "can't find line breaking that satisfies constraints" +#~ msgid "cannot find line breaking that satisfies constraints" #~ msgstr "¤½¤Î²ò·è¤ÏÀ©¸Â¤òËþ¤¿¤·¤Þ¤»¤ó" #, fuzzy @@ -2276,7 +2276,7 @@ msgstr "" #~ msgstr "%s: TFM ¥Õ¥¡¥¤¥ë¤Ï %u ¸Ä¤Î¥Ñ¥é¥á¥¿¤¬¤¢¤ê¤Þ¤¹¤¬¡¢%u °Ê¾å¤Ï°·¤¨¤Þ¤»¤ó" #, fuzzy -#~ msgid "can't find ascii character: %d" +#~ msgid "cannot find ascii character: %d" #~ msgstr "ascii ʸ»ú¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó: `%d'" #~ msgid "no one to print a tuplet start bracket" @@ -2291,7 +2291,7 @@ msgstr "" #~ msgstr "·«¤êÊÖ¤·¤è¤ê¤âÁªÂò»è¤¬Â¿¤¤¡£Ä¶²áʬ¤ò¼Î¤Æ¤Þ¤¹¡£" #, fuzzy -#~ msgid "can't find signature for music function" +#~ msgid "cannot find signature for music function" #~ msgstr "`%s' ¥³¥ó¥Æ¥­¥¹¥È¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó" #, fuzzy @@ -2331,7 +2331,7 @@ msgstr "" #~ msgstr "¹Ô ..." #, fuzzy -#~ msgid "can't dlopen: %s: %s" +#~ msgid "cannot dlopen: %s: %s" #~ msgstr "¥Õ¥¡¥¤¥ë¤ò³«¤±¤Þ¤»¤ó: `%s'" #, fuzzy @@ -2355,7 +2355,7 @@ msgstr "" #~ msgstr "¸«¤Ä¤«¤é¤Ê¤¤¤«ºî¤ì¤Þ¤»¤ó: `%s'" #, fuzzy -#~ msgid "can't handle a percent repeat of length: %s" +#~ msgid "cannot handle a percent repeat of length: %s" #~ msgstr "¶õ¤Î¥­¡¼¤Î°·¤¤Êý¤¬È½¤ê¤Þ¤»¤ó" #, fuzzy @@ -2403,7 +2403,7 @@ msgstr "" #~ msgstr "³¹Ô²Äǽ¤Ê¥¨¥é¡¼: " #, fuzzy -#~ msgid "can't find CFF/PFA/PFB font ~S=~S" +#~ msgid "cannot find CFF/PFA/PFB font ~S=~S" #~ msgstr "¥Õ¥©¥ó¥È¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó: `%s'" #, fuzzy @@ -2462,11 +2462,11 @@ msgstr "" #~ msgstr "FIXME: ¥­¡¼Êѹ¹¤Î¥Þ¡¼¥¸" #, fuzzy -#~ msgid "kpathsea can't find %s file: `%s'" +#~ msgid "kpathsea cannot find %s file: `%s'" #~ msgstr "¥Õ¥¡¥¤¥ë¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó: `%s'" #, fuzzy -#~ msgid "kpathsea can't find file: `%s'" +#~ msgid "kpathsea cannot find file: `%s'" #~ msgstr "¥Õ¥¡¥¤¥ë¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó: `%s'" #, fuzzy @@ -2537,7 +2537,7 @@ msgstr "" #~ msgstr "%s ¤Ø¤Î MIDI ½ÐÎÏ" #, fuzzy -#~ msgid "can't find file: `%s.%s'" +#~ msgid "cannot find file: `%s.%s'" #~ msgstr "¥Õ¥¡¥¤¥ë¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó: `%s'" #, fuzzy @@ -2624,7 +2624,7 @@ msgstr "" #~ msgstr "²»³ÚŪÄêµÁ¤è¤ê: %s" #, fuzzy -#~ msgid "can't find start of phrasing slur" +#~ msgid "cannot find start of phrasing slur" #~ msgstr "ËöÈø¤Ø¤Î(¥Ç)¥¯¥ì¥Ã¥·¥§¥ó¥É¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó" #, fuzzy @@ -2683,7 +2683,7 @@ msgstr "" #~ msgstr "¤³¤ÎÍ×µá¤ËÂФ¹¤ëÊý¸þ¤ò»ØÄꤹ¤ë¤³¤È¤Ï¤Ç¤­¤Þ¤»¤ó" #, fuzzy -#~ msgid "can't map file" +#~ msgid "cannot map file" #~ msgstr "¥Õ¥¡¥¤¥ë¤ò¥Þ¥Ã¥×¤Ç¤­¤Þ¤»¤ó" #~ msgid "This binary was compiled with the following options:" @@ -2796,7 +2796,7 @@ msgstr "" #~ msgstr "̵¸ú¤Ê¥È¥é¥Ã¥¯¿ô" #, fuzzy -#~ msgid "can't handle non-metrical time" +#~ msgid "cannot handle non-metrical time" #~ msgstr "±¤Î§¤Ë¤Ê¤é¤Ê¤¤Çï»Ò¤Ï°·¤¨¤Þ¤»¤ó" #~ msgid "Junking note-end event: channel = %d, pitch = %d" @@ -2841,7 +2841,7 @@ msgstr "" #~ msgstr "ÉâÆ°¾®¿ôÅÀÎã³°" #, fuzzy -#~ msgid "can't set mem-checking!" +#~ msgid "cannot set mem-checking!" #~ msgstr "¥á¥â¥ê¥Á¥§¥Ã¥¯¤òÀßÄê¤Ç¤­¤Þ¤»¤ó" #, fuzzy @@ -2903,7 +2903,7 @@ msgstr "" #~ msgstr "¾®À᤬¸«¤Ä¤«¤ê¤Þ¤»¤ó¡£È¿Éü¤ò̵»ë¤·¤Þ¤¹¡£" #, fuzzy -#~ msgid "can't find both ends of %s" +#~ msgid "cannot find both ends of %s" #~ msgstr "%s ¤Îξü¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó" #~ msgid "slur" diff --git a/po/lilypond.pot b/po/lilypond.pot index cd4383b741..fba51e9158 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: 2006-10-20 23:29+0200\n" +"POT-Creation-Date: 2006-12-22 17:25+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -74,7 +74,7 @@ msgstr "" #: lilylib.py:203 #, python-format -msgid "Usage: %s\n" +msgid "Usage: %s" msgstr "" #: abc2ly.py:1351 @@ -106,21 +106,21 @@ msgid "" " convert-ly --from=2.3.28 --to 2.5.21 foobar.ly\n" msgstr "" -#: convert-ly.py:57 lilypond-book.py:97 warn.cc:48 input.cc:90 +#: convert-ly.py:57 lilypond-book.py:98 warn.cc:48 input.cc:90 #, c-format, python-format msgid "warning: %s" msgstr "" -#: convert-ly.py:60 lilypond-book.py:100 warn.cc:54 input.cc:96 input.cc:104 +#: convert-ly.py:60 lilypond-book.py:101 warn.cc:54 input.cc:96 input.cc:104 #, c-format, python-format msgid "error: %s" msgstr "" -#: convert-ly.py:76 etf2ly.py:1190 lilypond-book.py:120 midi2ly.py:98 +#: convert-ly.py:76 etf2ly.py:1190 lilypond-book.py:121 midi2ly.py:98 msgid "Distributed under terms of the GNU General Public License." msgstr "" -#: convert-ly.py:77 etf2ly.py:1191 lilypond-book.py:121 midi2ly.py:99 +#: convert-ly.py:77 etf2ly.py:1191 lilypond-book.py:122 midi2ly.py:99 msgid "It comes with NO WARRANTY." msgstr "" @@ -152,41 +152,41 @@ msgstr "" msgid "Applying conversion: " msgstr "" -#: convert-ly.py:166 -msgid "error while converting" +#: convert-ly.py:167 +msgid "Error while converting" msgstr "" -#: convert-ly.py:168 score-engraver.cc:74 -msgid "Aborting" +#: convert-ly.py:169 +msgid "Stopping at last succesful rule" msgstr "" -#: convert-ly.py:192 +#: convert-ly.py:191 #, python-format msgid "Processing `%s'... " msgstr "" -#: convert-ly.py:279 source-file.cc:54 -#, c-format, python-format -msgid "can't open file: `%s'" +#: convert-ly.py:285 +#, python-format +msgid ". Skipping\") % f)" msgstr "" -#: convert-ly.py:286 +#: convert-ly.py:278 #, python-format -msgid "can't determine version for `%s'. Skipping" +msgid "\") % f)" msgstr "" #: etf2ly.py:1198 msgid "" "Enigma Transport Format is a format used by Coda Music Technology's\n" "Finale product. This program will convert a subset of ETF to a\n" -"ready-to-use lilypond file." +"ready-to-use LilyPond file." msgstr "" #: etf2ly.py:1201 midi2ly.py:885 msgid "write output to FILE" msgstr "" -#: etf2ly.py:1202 midi2ly.py:886 main.cc:173 main.cc:179 +#: etf2ly.py:1202 midi2ly.py:886 main.cc:172 main.cc:178 msgid "FILE" msgstr "" @@ -194,7 +194,7 @@ msgstr "" msgid "show warranty" msgstr "" -#: lilypond-book.py:70 +#: lilypond-book.py:71 msgid "" "Process LilyPond snippets in hybrid HTML, LaTeX, texinfo or DocBook " "document.\n" @@ -206,180 +206,180 @@ msgid "" " lilypond-book --process='lilypond -I include' BOOK\n" msgstr "" -#: lilypond-book.py:86 +#: lilypond-book.py:87 #, python-format msgid "Exiting (%d)..." msgstr "" -#: lilypond-book.py:118 +#: lilypond-book.py:119 #, python-format msgid "Copyright (c) %s by" msgstr "" -#: lilypond-book.py:129 +#: lilypond-book.py:130 msgid "FILTER" msgstr "" -#: lilypond-book.py:132 +#: lilypond-book.py:133 msgid "pipe snippets through FILTER [convert-ly -n -]" msgstr "" -#: lilypond-book.py:135 +#: lilypond-book.py:136 msgid "" "use output format FORMAT (texi [default], texi-html, latex, html, docbook)" msgstr "" -#: lilypond-book.py:138 +#: lilypond-book.py:139 msgid "add DIR to include path" msgstr "" -#: lilypond-book.py:143 +#: lilypond-book.py:144 msgid "write output to DIR" msgstr "" -#: lilypond-book.py:147 +#: lilypond-book.py:148 msgid "COMMAND" msgstr "" -#: lilypond-book.py:148 +#: lilypond-book.py:149 msgid "process ly_files using COMMAND FILE..." msgstr "" -#: lilypond-book.py:159 +#: lilypond-book.py:160 msgid "" -"extract all PostScript fonts into INPUT.psfonts for LaTeXmust use this with " -"dvips -h INPUT.psfonts" +"extract all PostScript fonts into INPUT.psfonts for LaTeX\n" +"must use this with dvips -h INPUT.psfonts" msgstr "" -#: lilypond-book.py:162 midi2ly.py:896 main.cc:183 +#: lilypond-book.py:163 midi2ly.py:896 main.cc:182 msgid "be verbose" msgstr "" -#: lilypond-book.py:168 main.cc:184 +#: lilypond-book.py:169 main.cc:183 msgid "show warranty and copyright" msgstr "" -#: lilypond-book.py:778 +#: lilypond-book.py:779 #, python-format msgid "file not found: %s" msgstr "" -#: lilypond-book.py:1009 +#: lilypond-book.py:1010 #, python-format msgid "deprecated ly-option used: %s=%s" msgstr "" -#: lilypond-book.py:1012 +#: lilypond-book.py:1013 #, python-format msgid "compatibility mode translation: %s=%s" msgstr "" -#: lilypond-book.py:1016 +#: lilypond-book.py:1017 #, python-format msgid "deprecated ly-option used: %s" msgstr "" -#: lilypond-book.py:1019 +#: lilypond-book.py:1020 #, python-format msgid "compatibility mode translation: %s" msgstr "" -#: lilypond-book.py:1038 +#: lilypond-book.py:1039 #, python-format msgid "ignoring unknown ly option: %s" msgstr "" -#: lilypond-book.py:1391 +#: lilypond-book.py:1394 #, python-format msgid "Opening filter `%s'" msgstr "" -#: lilypond-book.py:1408 +#: lilypond-book.py:1411 #, python-format msgid "`%s' failed (%d)" msgstr "" -#: lilypond-book.py:1409 +#: lilypond-book.py:1412 msgid "The error log is as follows:" msgstr "" -#: lilypond-book.py:1479 +#: lilypond-book.py:1482 msgid "Can't find \\begin{document} in LaTeX document" msgstr "" -#: lilypond-book.py:1589 +#: lilypond-book.py:1592 msgid "Writing snippets..." msgstr "" -#: lilypond-book.py:1594 +#: lilypond-book.py:1597 msgid "Processing..." msgstr "" -#: lilypond-book.py:1598 +#: lilypond-book.py:1601 msgid "All snippets are up to date..." msgstr "" -#: lilypond-book.py:1608 -#, python-format -msgid "can't determine format for: %s" -msgstr "" - -#: lilypond-book.py:1619 +#: lilypond-book.py:1622 #, python-format msgid "%s is up to date." msgstr "" -#: lilypond-book.py:1625 +#: lilypond-book.py:1628 #, python-format msgid "Writing `%s'..." msgstr "" -#: lilypond-book.py:1680 +#: lilypond-book.py:1683 msgid "Output would overwrite input file; use --output." msgstr "" -#: lilypond-book.py:1684 +#: lilypond-book.py:1687 #, python-format msgid "Reading %s..." msgstr "" -#: lilypond-book.py:1703 +#: lilypond-book.py:1706 msgid "Dissecting..." msgstr "" -#: lilypond-book.py:1719 +#: lilypond-book.py:1722 #, python-format msgid "Compiling %s..." msgstr "" -#: lilypond-book.py:1728 +#: lilypond-book.py:1731 #, python-format msgid "Processing include: %s" msgstr "" -#: lilypond-book.py:1742 +#: lilypond-book.py:1745 #, python-format msgid "Removing `%s'" msgstr "" -#: lilypond-book.py:1819 +#: lilypond-book.py:1821 #, python-format msgid "Writing fonts to %s..." msgstr "" -#: lilypond-book.py:1834 +#: lilypond-book.py:1836 msgid "option --psfonts not used" msgstr "" -#: lilypond-book.py:1835 +#: lilypond-book.py:1837 msgid "processing with dvips will have no fonts" msgstr "" -#: lilypond-book.py:1838 +#: lilypond-book.py:1840 msgid "DVIPS usage:" msgstr "" -#: midi2ly.py:106 lily-library.scm:557 lily-library.scm:565 +#: lilypond-book.py:1611 +#, python-format +msgid " % input_filename))" +msgstr "" + +#: midi2ly.py:106 lily-library.scm:613 lily-library.scm:621 msgid "warning: " msgstr "" @@ -448,27 +448,27 @@ msgstr "" msgid "no files specified on command line." msgstr "" -#: getopt-long.cc:141 +#: getopt-long.cc:140 #, c-format msgid "option `%s' requires an argument" msgstr "" -#: getopt-long.cc:145 +#: getopt-long.cc:144 #, c-format msgid "option `%s' doesn't allow an argument" msgstr "" -#: getopt-long.cc:149 +#: getopt-long.cc:148 #, c-format msgid "unrecognized option: `%s'" msgstr "" -#: getopt-long.cc:155 +#: getopt-long.cc:154 #, c-format msgid "invalid argument `%s' to option `%s'" msgstr "" -#: warn.cc:68 grob.cc:556 input.cc:82 +#: warn.cc:68 grob.cc:559 input.cc:82 #, c-format msgid "programming error: %s" msgstr "" @@ -477,84 +477,75 @@ msgstr "" msgid "continuing, cross fingers" msgstr "" -#: accidental-engraver.cc:238 +#: accidental-engraver.cc:240 #, c-format msgid "accidental typesetting list must begin with context-name: %s" msgstr "" -#: accidental-engraver.cc:266 +#: accidental-engraver.cc:268 #, c-format msgid "ignoring unknown accidental: %s" msgstr "" -#: accidental-engraver.cc:282 +#: accidental-engraver.cc:284 #, c-format msgid "pair or context-name expected for accidental rule, found %s" msgstr "" -#: accidental.cc:243 key-signature-interface.cc:124 +#: accidental.cc:243 key-signature-interface.cc:133 #, c-format msgid "accidental `%s' not found" msgstr "" -#: align-interface.cc:164 +#: align-interface.cc:222 msgid "" "vertical alignment called before line-breaking.\n" "Only do cross-staff spanners with PianoStaff." msgstr "" -#: align-interface.cc:314 +#: align-interface.cc:329 msgid "tried to get a translation for something that isn't my child" msgstr "" -#: all-font-metrics.cc:164 -#, c-format -msgid "can't find font: `%s'" -msgstr "" - -#: all-font-metrics.cc:165 -msgid "loading default font" -msgstr "" - -#: all-font-metrics.cc:172 +#: all-font-metrics.cc:173 #, c-format -msgid "can't find default font: `%s'" -msgstr "" - -#: all-font-metrics.cc:173 includable-lexer.cc:62 lily-parser-scheme.cc:108 -#, c-format -msgid "(search path: `%s')" -msgstr "" - -#: all-font-metrics.cc:174 volta-engraver.cc:158 -msgid "giving up" +msgid "cannot find font: `%s'" msgstr "" #: apply-context-iterator.cc:31 msgid "\\applycontext argument is not a procedure" msgstr "" -#: auto-change-iterator.cc:62 change-iterator.cc:61 +#: auto-change-iterator.cc:63 #, c-format -msgid "can't change, already in translator: %s" +msgid "cannot change, already in translator: %s" msgstr "" -#: axis-group-engraver.cc:82 +#: axis-group-engraver.cc:78 msgid "Axis_group_engraver: vertical group already has a parent" msgstr "" -#: axis-group-engraver.cc:83 +#: axis-group-engraver.cc:79 msgid "are there two Axis_group_engravers?" msgstr "" -#: axis-group-engraver.cc:84 +#: axis-group-engraver.cc:80 msgid "removing this vertical group" msgstr "" -#: axis-group-interface.cc:94 +#: axis-group-interface.cc:96 msgid "tried to calculate pure-height at a non-breakpoint" msgstr "" +#: axis-group-interface.cc:370 +msgid "an outside-staff object should have a direction, defaulting to up" +msgstr "" + +#: axis-group-interface.cc:383 +#, c-format +msgid "outside-staff object %s has an empty extent" +msgstr "" + #: bar-check-iterator.cc:73 #, c-format msgid "barcheck failed at: %s" @@ -568,19 +559,19 @@ msgstr "" msgid "unterminated beam" msgstr "" -#: beam-engraver.cc:237 chord-tremolo-engraver.cc:134 +#: beam-engraver.cc:238 chord-tremolo-engraver.cc:134 msgid "stem must have Rhythmic structure" msgstr "" -#: beam-engraver.cc:245 +#: beam-engraver.cc:246 msgid "stem doesn't fit in beam" msgstr "" -#: beam-engraver.cc:246 +#: beam-engraver.cc:247 msgid "beam was started here" msgstr "" -#: beam-quanting.cc:306 +#: beam-quanting.cc:307 msgid "no feasible beam position" msgstr "" @@ -588,25 +579,15 @@ msgstr "" msgid "removing beam with no stems" msgstr "" -#: beam.cc:995 +#: beam.cc:1007 msgid "no viable initial configuration found: may not find good beam slope" msgstr "" -#: break-align-interface.cc:208 +#: break-alignment-interface.cc:208 #, c-format msgid "No spacing entry from %s to `%s'" msgstr "" -#: change-iterator.cc:23 -#, c-format -msgid "can't change `%s' to `%s'" -msgstr "" - -#. FIXME: constant error message. -#: change-iterator.cc:82 -msgid "can't find context to switch to" -msgstr "" - #. We could change the current translator's id, but that would make #. errors hard to catch. #. @@ -622,6 +603,20 @@ msgstr "" msgid "none of these in my family" msgstr "" +#. FIXME: constant error message. +#. fixme: be more verbose. +#: change-iterator.cc:82 dynamic-engraver.cc:186 ligature-engraver.cc:93 +#: new-fingering-engraver.cc:96 note-column.cc:124 rest-collision.cc:151 +#: slur-engraver.cc:165 span-dynamic-performer.cc:87 +#: text-spanner-engraver.cc:61 trill-spanner-engraver.cc:68 +#: volta-engraver.cc:144 +msgid "));" +msgstr "" + +#: change-iterator.cc:23 +msgid ", to_type, to_id)" +msgstr "" + #: chord-tremolo-engraver.cc:88 msgid "No tremolo to end" msgstr "" @@ -635,7 +630,7 @@ msgstr "" msgid "expect 2 elements for chord tremolo, found %d" msgstr "" -#: clef.cc:55 +#: clef.cc:54 #, c-format msgid "clef `%s' not found" msgstr "" @@ -656,26 +651,20 @@ msgstr "" #. if we get to here, just put everything on one line #: constrained-breaking.cc:176 constrained-breaking.cc:193 -msgid "couldn't find line breaking that satisfies constraints" +msgid "cannot find line breaking that satisfies constraints" msgstr "" -#: context-def.cc:128 +#: context-def.cc:130 #, c-format msgid "program has no such type: `%s'" msgstr "" -#: context-property.cc:77 +#: context-property.cc:76 msgid "need symbol arguments for \\override and \\revert" msgstr "" -#: context.cc:151 -#, c-format -msgid "can't find or create new `%s'" -msgstr "" - -#: context.cc:213 -#, c-format -msgid "can't find or create `%s' called `%s'" +#: context.cc:213 main.cc:323 main.cc:340 +msgid "," msgstr "" #: context.cc:276 @@ -683,21 +672,16 @@ msgstr "" msgid "Invalid CreateContext event: Cannot create %s context" msgstr "" -#: context.cc:388 -#, c-format -msgid "can't find or create: `%s'" -msgstr "" - #: custos.cc:77 #, c-format msgid "custos `%s' not found" msgstr "" -#: dispatcher.cc:72 +#: dispatcher.cc:71 msgid "Event class should be a symbol" msgstr "" -#: dispatcher.cc:79 +#: dispatcher.cc:78 #, c-format msgid "Unknown event class %s" msgstr "" @@ -707,10 +691,6 @@ msgstr "" msgid "dot `%s' not found" msgstr "" -#: dynamic-engraver.cc:186 span-dynamic-performer.cc:87 -msgid "can't find start of (de)crescendo" -msgstr "" - #: dynamic-engraver.cc:195 msgid "already have a decrescendo" msgstr "" @@ -727,11 +707,7 @@ msgstr "" msgid "unterminated (de)crescendo" msgstr "" -#: engraver.cc:102 -msgid "not setting creation callback: not a procedure" -msgstr "" - -#: extender-engraver.cc:130 extender-engraver.cc:139 +#: extender-engraver.cc:131 extender-engraver.cc:140 msgid "unterminated extender" msgstr "" @@ -754,15 +730,15 @@ msgstr "" msgid "adding font directory: %s" msgstr "" -#: general-scheme.cc:161 +#: general-scheme.cc:160 msgid "infinity or NaN encountered while converting Real number" msgstr "" -#: general-scheme.cc:162 +#: general-scheme.cc:161 msgid "setting to zero" msgstr "" -#: glissando-engraver.cc:91 +#: glissando-engraver.cc:92 msgid "unterminated glissando" msgstr "" @@ -789,47 +765,29 @@ msgstr "" msgid "implied \\%s added" msgstr "" -#. ligature may not start with 2nd head of pes or flexa -#: gregorian-ligature-engraver.cc:212 -msgid "can't apply `\\~' on first head of ligature" -msgstr "" - -#. (pitch == prev_pitch) -#: gregorian-ligature-engraver.cc:224 -msgid "can't apply `\\~' on heads with identical pitch" -msgstr "" - -#: grob-interface.cc:48 +#: grob-interface.cc:57 #, c-format msgid "Unknown interface `%s'" msgstr "" -#: grob-interface.cc:59 +#: grob-interface.cc:68 #, c-format msgid "Grob `%s' has no interface for property `%s'" msgstr "" -#: grob-property.cc:36 -msgid "not setting modification callback: not a procedure" -msgstr "" - #: grob.cc:253 msgid "Infinity or NaN encountered" msgstr "" -#: hairpin.cc:179 +#: hairpin.cc:183 msgid "decrescendo too small" msgstr "" -#: hairpin.cc:180 -msgid "crescendo too small" -msgstr "" - -#: horizontal-bracket-engraver.cc:57 +#: horizontal-bracket-engraver.cc:59 msgid "don't have that many brackets" msgstr "" -#: horizontal-bracket-engraver.cc:66 +#: horizontal-bracket-engraver.cc:68 msgid "conflicting note group events" msgstr "" @@ -845,17 +803,17 @@ msgstr "" msgid "include files are not allowed in safe mode" msgstr "" -#: includable-lexer.cc:60 lily-guile.cc:96 lily-parser-scheme.cc:115 +#: includable-lexer.cc:62 lily-parser-scheme.cc:107 #, c-format -msgid "can't find file: `%s'" +msgid "(search path: `%s')" msgstr "" -#: input.cc:112 source-file.cc:168 source-file.cc:183 -msgid "position unknown" +#: includable-lexer.cc:61 midi-stream.cc:57 +msgid "\n" msgstr "" -#: ligature-engraver.cc:93 -msgid "can't find start of ligature" +#: input.cc:112 source-file.cc:168 source-file.cc:183 +msgid "position unknown" msgstr "" #: ligature-engraver.cc:98 @@ -882,73 +840,67 @@ msgstr "" msgid "ligature was started here" msgstr "" -#: lily-guile.cc:98 +#: lily-guile.cc:96 #, c-format msgid "(load path: `%s')" msgstr "" -#: lily-guile.cc:439 -#, c-format -msgid "can't find property type-check for `%s' (%s)." -msgstr "" - -#: lily-guile.cc:442 +#: lily-guile.cc:462 msgid "perhaps a typing error?" msgstr "" -#: lily-guile.cc:448 +#: lily-guile.cc:468 msgid "doing assignment anyway" msgstr "" -#: lily-guile.cc:460 +#: lily-guile.cc:480 #, c-format msgid "type check for `%s' failed; value `%s' must be of type `%s'" msgstr "" -#: lily-lexer.cc:222 +#: lily-guile.cc:95 +msgid " " +msgstr "" + +#: lily-lexer.cc:254 #, c-format msgid "identifier name is a keyword: `%s'" msgstr "" -#: lily-lexer.cc:237 +#: lily-lexer.cc:269 #, c-format msgid "error at EOF: %s" msgstr "" -#: lily-parser-scheme.cc:30 +#: lily-parser-scheme.cc:29 #, c-format msgid "deprecated function called: %s" msgstr "" -#: lily-parser-scheme.cc:89 +#: lily-parser-scheme.cc:88 #, c-format msgid "Changing working directory to `%s'" msgstr "" -#: lily-parser-scheme.cc:107 -#, c-format -msgid "can't find init file: `%s'" -msgstr "" - #: lily-parser-scheme.cc:125 #, c-format msgid "Processing `%s'" msgstr "" -#: lily-parser.cc:97 +#: lily-parser.cc:99 msgid "Parsing..." msgstr "" -#: lily-parser.cc:126 +#: lily-parser.cc:127 msgid "braces don't match" msgstr "" -#: lyric-combine-music-iterator.cc:286 +#: lyric-combine-music-iterator.cc:291 #, c-format msgid "cannot find Voice `%s'" msgstr "" -#: main.cc:117 +#: main.cc:116 #, c-format msgid "" "This program is free software. It is covered by the GNU General Public\n" @@ -957,7 +909,7 @@ msgid "" "information.\n" msgstr "" -#: main.cc:123 +#: main.cc:122 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" @@ -974,124 +926,124 @@ msgid "" "Boston, MA 02111-1307, USA.\n" msgstr "" -#: main.cc:154 +#: main.cc:153 msgid "BACK" msgstr "" -#: main.cc:154 +#: main.cc:153 msgid "" "use backend BACK (gnome, ps,eps,\n" "scm, svg, tex, texstr)\n" "default: PS" msgstr "" -#: main.cc:156 -msgid "SYM=VAL" +#: main.cc:155 +msgid "SYM[=VAL]" msgstr "" -#: main.cc:157 +#: main.cc:156 msgid "" -"set a Scheme program option. Uses #t if VAL is not specified\n" -"Try -dhelp for help." +"set Scheme program option SYM to VAL (default: #t)\n" +"Use -dhelp for help." msgstr "" -#: main.cc:160 +#: main.cc:159 msgid "EXPR" msgstr "" -#: main.cc:160 +#: main.cc:159 msgid "evaluate scheme code" msgstr "" #. Bug in option parser: --output =foe is taken as an abbreviation #. for --output-format. -#: main.cc:163 +#: main.cc:162 msgid "FORMATs" msgstr "" -#: main.cc:163 +#: main.cc:162 msgid "dump FORMAT,... Also as separate options:" msgstr "" -#: main.cc:164 +#: main.cc:163 msgid "generate DVI (tex backend only)" msgstr "" -#: main.cc:165 +#: main.cc:164 msgid "relocate using directory of lilypond program" msgstr "" -#: main.cc:166 +#: main.cc:165 msgid "generate PDF (default)" msgstr "" -#: main.cc:167 +#: main.cc:166 msgid "generate PNG" msgstr "" -#: main.cc:168 +#: main.cc:167 msgid "generate PostScript" msgstr "" -#: main.cc:169 +#: main.cc:168 msgid "generate TeX (tex backend only)" msgstr "" -#: main.cc:170 -msgid "print this help" +#: main.cc:169 +msgid "show this help and exit" msgstr "" -#: main.cc:171 +#: main.cc:170 msgid "FIELD" msgstr "" -#: main.cc:171 +#: main.cc:170 msgid "dump a header field to file BASENAME.FIELD" msgstr "" -#: main.cc:172 +#: main.cc:171 msgid "DIR" msgstr "" -#: main.cc:172 +#: main.cc:171 msgid "add DIR to search path" msgstr "" -#: main.cc:173 +#: main.cc:172 msgid "use FILE as init file" msgstr "" -#: main.cc:175 +#: main.cc:174 msgid "USER,GROUP,JAIL,DIR" msgstr "" -#: main.cc:175 +#: main.cc:174 msgid "" "chroot to JAIL, become USER:GROUP\n" "and cd into DIR" msgstr "" -#: main.cc:178 +#: main.cc:177 msgid "do not generate printed output" msgstr "" -#: main.cc:179 +#: main.cc:178 msgid "write output to FILE (suffix will be added)" msgstr "" -#: main.cc:180 +#: main.cc:179 msgid "generate a preview of the first system" msgstr "" -#: main.cc:181 +#: main.cc:180 msgid "disallow unsafe Scheme and PostScript operations" msgstr "" -#: main.cc:182 -msgid "print version number" +#: main.cc:181 +msgid "show version number and exit" msgstr "" -#: main.cc:223 +#: main.cc:222 #, c-format msgid "" "Copyright (c) %s by\n" @@ -1099,89 +1051,75 @@ msgid "" msgstr "" #. No version number or newline here. It confuses help2man. -#: main.cc:250 +#: main.cc:249 #, c-format msgid "Usage: %s [OPTION]... FILE..." msgstr "" -#: main.cc:252 +#: main.cc:251 #, c-format msgid "Typeset music and/or produce MIDI from FILE." msgstr "" -#: main.cc:254 +#: main.cc:253 #, c-format msgid "LilyPond produces beautiful music notation." msgstr "" -#: main.cc:256 +#: main.cc:255 #, c-format msgid "For more information, see %s" msgstr "" -#: main.cc:258 +#: main.cc:257 #, c-format msgid "Options:" msgstr "" -#: main.cc:262 +#: main.cc:261 #, c-format msgid "Report bugs via %s" msgstr "" -#: main.cc:308 +#: main.cc:307 #, c-format msgid "expected %d arguments with jail, found: %u" msgstr "" -#: main.cc:322 +#: main.cc:321 #, c-format msgid "no such user: %s" msgstr "" -#: main.cc:324 -#, c-format -msgid "can't get user id from user name: %s: %s" -msgstr "" - -#: main.cc:339 +#: main.cc:338 #, c-format msgid "no such group: %s" msgstr "" -#: main.cc:341 -#, c-format -msgid "can't get group id from group name: %s: %s" -msgstr "" - -#: main.cc:349 -#, c-format -msgid "can't chroot to: %s: %s" +#: main.cc:348 +msgid ", components[JAIL]," msgstr "" -#: main.cc:356 -#, c-format -msgid "can't change group id to: %d: %s" +#: main.cc:367 +msgid ", components[DIR]," msgstr "" -#: main.cc:362 +#: main.cc:413 #, c-format -msgid "can't change user id to: %d: %s" +msgid "Evaluating %s" msgstr "" -#: main.cc:368 +#: main.cc:643 #, c-format -msgid "can't change working directory to: %s: %s" +msgid "exception caught: %s" msgstr "" -#: main.cc:415 -#, c-format -msgid "Evaluating %s" +#: main.cc:361 +msgid ", uid, strerror (errno)));" msgstr "" -#: main.cc:638 -#, c-format -msgid "exception caught: %s" +#: main.cc:355 +msgid ", gid, strerror (errno)));" msgstr "" #. FIXME: constant error message. @@ -1258,111 +1196,95 @@ msgid "experimental: temporarily fine tuning (of %d cents) a channel." msgstr "" #: midi-stream.cc:28 -#, c-format -msgid "can't open for write: %s: %s" -msgstr "" - -#: midi-stream.cc:44 -#, c-format -msgid "can't write to file: `%s'" +msgid ", file_name, strerror (errno)));" msgstr "" -#: music-iterator.cc:172 +#: music-iterator.cc:171 msgid "Sending non-event to context" msgstr "" -#: music.cc:142 +#: music.cc:141 #, c-format msgid "octave check failed; expected \"%s\", found: %s" msgstr "" -#: music.cc:208 +#: music.cc:207 #, c-format msgid "transposition by %s makes alteration larger than double" msgstr "" -#: new-fingering-engraver.cc:95 -msgid "can't add text scripts to individual note heads" -msgstr "" - -#: new-fingering-engraver.cc:238 +#: new-fingering-engraver.cc:239 msgid "no placement found for fingerings" msgstr "" -#: new-fingering-engraver.cc:239 +#: new-fingering-engraver.cc:240 msgid "placing below" msgstr "" -#: note-collision.cc:438 +#: note-collision.cc:457 msgid "ignoring too many clashing note columns" msgstr "" -#: note-column.cc:123 -msgid "can't have note heads and rests together on a stem" -msgstr "" - -#: note-head.cc:69 +#: note-head.cc:63 #, c-format msgid "none of note heads `%s' or `%s' found" msgstr "" -#: note-heads-engraver.cc:63 +#: note-heads-engraver.cc:61 msgid "NoteEvent without pitch" msgstr "" -#: open-type-font.cc:33 +#: open-type-font.cc:98 #, c-format -msgid "can't allocate %lu bytes" +msgid "unsupported font format: %s" msgstr "" -#: open-type-font.cc:37 +#: open-type-font.cc:100 #, c-format -msgid "can't load font table: %s" +msgid "unknown error: %d reading font file: %s" msgstr "" -#: open-type-font.cc:96 +#: open-type-font.cc:173 open-type-font.cc:297 #, c-format -msgid "unsupported font format: %s" +msgid "FT_Get_Glyph_Name() returned error: %u" msgstr "" -#: open-type-font.cc:98 -#, c-format -msgid "unknown error: %d reading font file: %s" +#: open-type-font.cc:37 +msgid ", tag_str));" msgstr "" -#: open-type-font.cc:171 open-type-font.cc:295 -#, c-format -msgid "FT_Get_Glyph_Name() returned error: %u" +#: open-type-font.cc:33 +msgid ", *length));" msgstr "" -#: page-turn-page-breaking.cc:227 +#: page-turn-page-breaking.cc:205 msgid "" -"couldn't fit the first page turn onto a single page. Consider setting first-" +"cannot fit the first page turn onto a single page. Consider setting first-" "page-number to an even number." msgstr "" -#: page-turn-page-breaking.cc:240 +#: page-turn-page-breaking.cc:218 #, c-format msgid "Calculating page and line breaks (%d possible page breaks)..." msgstr "" -#: page-turn-page-breaking.cc:258 paper-score.cc:154 +#: page-turn-page-breaking.cc:236 paper-score.cc:154 msgid "Drawing systems..." msgstr "" -#: pango-font.cc:196 +#: pango-font.cc:181 #, c-format msgid "" "Glyph has no name, but font supports glyph naming.\n" "Skipping glyph U+%0X, file %s" msgstr "" -#: pango-font.cc:235 +#: pango-font.cc:224 #, c-format msgid "no PostScript font name for font `%s'" msgstr "" -#: pango-font.cc:283 +#: pango-font.cc:272 msgid "FreeType face has no PostScript font name" msgstr "" @@ -1396,15 +1318,15 @@ msgstr "" msgid "Track..." msgstr "" -#: performance.cc:66 +#: performance.cc:74 msgid "MIDI channel wrapped around" msgstr "" -#: performance.cc:67 +#: performance.cc:75 msgid "remapping modulo 16" msgstr "" -#: performance.cc:95 +#: performance.cc:103 #, c-format msgid "MIDI output to `%s'..." msgstr "" @@ -1413,23 +1335,12 @@ msgstr "" msgid "unterminated phrasing slur" msgstr "" -#: piano-pedal-engraver.cc:283 +#: piano-pedal-engraver.cc:286 #, c-format msgid "expect 3 strings for piano pedals, found: %ld" msgstr "" -#: piano-pedal-engraver.cc:298 piano-pedal-engraver.cc:309 -#: piano-pedal-performer.cc:93 -#, c-format -msgid "can't find start of piano pedal: `%s'" -msgstr "" - -#: piano-pedal-engraver.cc:344 -#, c-format -msgid "can't find start of piano pedal bracket: `%s'" -msgstr "" - -#: program-option.cc:195 +#: program-option.cc:205 #, c-format msgid "no such internal option: %s" msgstr "" @@ -1439,7 +1350,7 @@ msgstr "" msgid "not a grob name, `%s'" msgstr "" -#: relative-octave-check.cc:39 +#: relative-octave-check.cc:38 msgid "Failed octave check, got: " msgstr "" @@ -1495,52 +1406,51 @@ msgstr "" msgid "Relocation file %s\n" msgstr "" -#: relocate.cc:358 -#, c-format -msgid "can't open file %s" -msgstr "" - #: relocate.cc:388 #, c-format msgid "Unknown relocation command %s" msgstr "" -#: rest-collision.cc:150 -msgid "can't resolve rest collision: rest direction not set" +#: relocate.cc:358 +msgid ", cname));" msgstr "" -#: rest-collision.cc:164 rest-collision.cc:209 +#: rest-collision.cc:165 rest-collision.cc:210 msgid "too many colliding rests" msgstr "" -#: rest.cc:143 +#: rest.cc:144 #, c-format msgid "rest `%s' not found" msgstr "" -#: score-engraver.cc:68 +#: score-engraver.cc:67 #, c-format msgid "cannot find `%s'" msgstr "" -#: score-engraver.cc:70 +#: score-engraver.cc:69 msgid "Music font has not been installed properly." msgstr "" -#: score-engraver.cc:72 +#: score-engraver.cc:71 #, c-format msgid "Search path `%s'" msgstr "" -#: score.cc:222 +#: score-engraver.cc:73 +msgid "Aborting" +msgstr "" + +#: score.cc:225 msgid "already have music in score" msgstr "" -#: score.cc:223 +#: score.cc:226 msgid "this is the previous music" msgstr "" -#: score.cc:228 +#: score.cc:231 msgid "errors found, ignoring music expression" msgstr "" @@ -1566,70 +1476,66 @@ msgstr "" msgid "unterminated slur" msgstr "" -#: slur-engraver.cc:165 -msgid "can't end slur" -msgstr "" - #: source-file.cc:74 #, c-format msgid "expected to read %d characters, got %d" msgstr "" +#: source-file.cc:168 +msgid " (" +msgstr "" + #: staff-symbol-engraver.cc:62 msgid "staff-span event has no direction" msgstr "" -#: stem-engraver.cc:95 +#: stem-engraver.cc:92 msgid "tremolo duration is too long" msgstr "" #. FIXME: -#: stem-engraver.cc:132 +#: stem-engraver.cc:129 #, c-format msgid "adding note head to incompatible stem (type = %d)" msgstr "" -#: stem-engraver.cc:134 +#: stem-engraver.cc:131 msgid "maybe input should specify polyphonic voices" msgstr "" -#: stem.cc:104 +#: stem.cc:105 msgid "weird stem size, check for narrow beams" msgstr "" -#: stem.cc:627 +#: stem.cc:641 #, c-format msgid "flag `%s' not found" msgstr "" -#: stem.cc:638 +#: stem.cc:652 #, c-format msgid "flag stroke `%s' not found" msgstr "" -#: system.cc:178 +#: system.cc:180 #, c-format msgid "Element count %d." msgstr "" -#: system.cc:270 +#: system.cc:276 #, c-format msgid "Grob count %d" msgstr "" -#: text-spanner-engraver.cc:60 -msgid "can't find start of text spanner" -msgstr "" - -#: text-spanner-engraver.cc:72 +#: text-spanner-engraver.cc:73 msgid "already have a text spanner" msgstr "" -#: text-spanner-engraver.cc:132 +#: text-spanner-engraver.cc:133 msgid "unterminated text spanner" msgstr "" -#: tie-engraver.cc:257 +#: tie-engraver.cc:264 msgid "lonely tie" msgstr "" @@ -1638,14 +1544,14 @@ msgstr "" #. #. OTOH, Tristan Keuris writes 8/20 in his Intermezzi. #. -#: time-signature-engraver.cc:63 +#: time-signature-engraver.cc:64 #, c-format msgid "strange time signature found: %d/%d" msgstr "" #. If there is no such symbol, we default to the numbered style. #. (Here really with a warning!) -#: time-signature.cc:82 +#: time-signature.cc:83 #, c-format msgid "time signature symbol `%s' not found; reverting to numbered style" msgstr "" @@ -1655,41 +1561,32 @@ msgstr "" msgid "unknown translator: `%s'" msgstr "" -#: translator-group.cc:152 -#, c-format -msgid "can't find: `%s'" -msgstr "" - -#: translator.cc:331 +#: translator.cc:332 #, c-format msgid "Two simultaneous %s events, junking this one" msgstr "" -#: translator.cc:332 +#: translator.cc:333 #, c-format msgid "Previous %s event here" msgstr "" -#: trill-spanner-engraver.cc:67 -msgid "can't find start of trill spanner" -msgstr "" - -#: trill-spanner-engraver.cc:79 +#: trill-spanner-engraver.cc:80 msgid "already have a trill spanner" msgstr "" -#: tuplet-engraver.cc:72 +#: tuplet-engraver.cc:75 msgid "invalid direction of tuplet-span-event" msgstr "" -#: vaticana-ligature-engraver.cc:382 +#: vaticana-ligature-engraver.cc:388 #, c-format msgid "" "ignored prefix (es) `%s' of this head according to restrictions of the " "selected ligature style" msgstr "" -#: vaticana-ligature-engraver.cc:708 +#: vaticana-ligature-engraver.cc:714 #, c-format msgid "Vaticana_ligature_engraver: setting `spacing-increment = %f': ptr =%ul" msgstr "" @@ -1706,322 +1603,266 @@ msgstr "" msgid "Vaticana_ligature: zero join (delta_pitch == 0)" msgstr "" -#. fixme: be more verbose. -#: volta-engraver.cc:143 -msgid "can't end volta spanner" -msgstr "" - -#: volta-engraver.cc:153 +#: volta-engraver.cc:154 msgid "already have a volta spanner, ending that one prematurely" msgstr "" -#: volta-engraver.cc:157 +#: volta-engraver.cc:158 msgid "also already have an ended spanner" msgstr "" -#: parser.yy:703 parser.yy:704 +#: volta-engraver.cc:159 +msgid "giving up" +msgstr "" + +#: parser.yy:702 msgid "\\paper cannot be used in \\score, use \\layout instead" msgstr "" -#: parser.yy:727 parser.yy:728 +#: parser.yy:726 msgid "need \\paper for paper block" msgstr "" -#: parser.yy:1173 parser.yy:1174 +#: parser.yy:1172 msgid "Grob name should be alphanumeric" msgstr "" -#: parser.yy:1476 parser.yy:1477 +#: parser.yy:1475 msgid "second argument must be pitch list" msgstr "" -#: parser.yy:1503 parser.yy:1508 parser.yy:1973 parser.yy:1504 parser.yy:1509 -#: parser.yy:1974 +#: parser.yy:1502 parser.yy:1507 parser.yy:1972 msgid "have to be in Lyric mode for lyrics" msgstr "" -#: parser.yy:1605 parser.yy:1606 +#: parser.yy:1604 msgid "expecting string as script definition" msgstr "" -#: parser.yy:1760 parser.yy:1810 parser.yy:1761 parser.yy:1811 +#: parser.yy:1759 parser.yy:1809 #, c-format msgid "not a duration: %d" msgstr "" -#: parser.yy:1927 parser.yy:1928 +#: parser.yy:1926 msgid "have to be in Note mode for notes" msgstr "" -#: parser.yy:1988 parser.yy:1989 +#: parser.yy:1987 msgid "have to be in Chord mode for chords" msgstr "" -#: lexer.ll:177 +#: lexer.ll:176 msgid "stray UTF-8 BOM encountered" msgstr "" -#: lexer.ll:181 +#: lexer.ll:180 msgid "Skipping UTF-8 BOM" msgstr "" -#: lexer.ll:236 +#: lexer.ll:235 #, c-format msgid "Renaming input to: `%s'" msgstr "" -#: lexer.ll:254 +#: lexer.ll:252 msgid "quoted string expected after \\version" msgstr "" -#: lexer.ll:258 +#: lexer.ll:256 msgid "quoted string expected after \\sourcefilename" msgstr "" -#: lexer.ll:262 +#: lexer.ll:260 msgid "integer expected after \\sourcefileline" msgstr "" -#: lexer.ll:275 +#: lexer.ll:273 msgid "EOF found inside a comment" msgstr "" -#: lexer.ll:290 +#: lexer.ll:288 msgid "\\maininput not allowed outside init files" msgstr "" -#: lexer.ll:314 +#: lexer.ll:312 #, c-format msgid "wrong or undefined identifier: `%s'" msgstr "" #. backup rule -#: lexer.ll:323 +#: lexer.ll:321 msgid "end quote missing" msgstr "" -#: lexer.ll:468 +#: lexer.ll:466 msgid "Brace found at end of lyric. Did you forget a space?" msgstr "" -#: lexer.ll:561 +#: lexer.ll:559 msgid "Brace found at end of markup. Did you forget a space?" msgstr "" -#: lexer.ll:661 +#: lexer.ll:659 #, c-format msgid "invalid character: `%c'" msgstr "" -#: lexer.ll:776 +#: lexer.ll:774 #, c-format msgid "unknown escaped string: `\\%s'" msgstr "" -#: lexer.ll:882 +#: lexer.ll:880 #, c-format -msgid "Incorrect lilypond version: %s (%s, %s)" +msgid "file too old: %s (oldest supported: %s)" +msgstr "" + +#: lexer.ll:881 +msgid "consider updating the input with the convert-ly script" msgstr "" -#: lexer.ll:883 -msgid "Consider updating the input with the convert-ly script" +#: lexer.ll:887 +#, c-format +msgid "program too old: %s (file requires: %s)" msgstr "" -#: backend-library.scm:19 lily.scm:487 ps-to-png.scm:88 -#, lisp-format +#: backend-library.scm:19 lily.scm:599 ps-to-png.scm:82 +#, scheme-format msgid "Invoking `~a'..." msgstr "" #: backend-library.scm:24 -#, lisp-format +#, scheme-format msgid "`~a' failed (~a)" msgstr "" #: backend-library.scm:95 framework-tex.scm:343 framework-tex.scm:368 -#, lisp-format +#, scheme-format msgid "Converting to `~a'..." msgstr "" -#: backend-library.scm:110 -#, lisp-format +#: backend-library.scm:108 +#, scheme-format msgid "Converting to ~a..." msgstr "" -#: backend-library.scm:156 -#, lisp-format +#: backend-library.scm:145 +#, scheme-format msgid "Writing header field `~a' to `~a'..." msgstr "" #: define-context-properties.scm:20 define-grob-properties.scm:10 #: define-music-properties.scm:10 -#, lisp-format +#, scheme-format msgid "symbol ~S redefined" msgstr "" -#: define-event-classes.scm:116 -#, lisp-format +#: define-event-classes.scm:119 +#, scheme-format msgid "event class ~A seems to be unused" msgstr "" #. should be programming-error -#: define-event-classes.scm:122 -#, lisp-format +#: define-event-classes.scm:125 +#, scheme-format msgid "translator listens to nonexisting event class ~A" msgstr "" -#: define-markup-commands.scm:265 +#: define-markup-commands.scm:255 msgid "no systems found in \\score markup, does it have a \\layout block?" msgstr "" -#: define-markup-commands.scm:1281 -#, lisp-format +#: define-markup-commands.scm:1297 +#, scheme-format msgid "not a valid duration string: ~a" msgstr "" -#: define-music-types.scm:743 -#, lisp-format +#: define-music-types.scm:751 +#, scheme-format msgid "symbol expected: ~S" msgstr "" -#: define-music-types.scm:746 -#, lisp-format -msgid "can't find music object: ~S" -msgstr "" - -#: define-music-types.scm:766 -#, lisp-format -msgid "unknown repeat type `~S'" -msgstr "" - -#: define-music-types.scm:767 -msgid "See music-types.scm for supported repeats" -msgstr "" - #: document-backend.scm:91 -#, lisp-format +#, scheme-format msgid "pair expected in doc ~s" msgstr "" -#: document-backend.scm:135 -#, lisp-format -msgid "can't find interface for property: ~S" -msgstr "" - -#: document-backend.scm:145 -#, lisp-format -msgid "unknown Grob interface: ~S" -msgstr "" - #: documentation-lib.scm:45 -#, lisp-format +#, scheme-format msgid "Processing ~S..." msgstr "" #: documentation-lib.scm:150 -#, lisp-format +#, scheme-format msgid "Writing ~S..." msgstr "" -#: documentation-lib.scm:172 -#, lisp-format -msgid "can't find description for property ~S (~S)" -msgstr "" - -#: framework-eps.scm:77 framework-eps.scm:78 -#, lisp-format +#: framework-eps.scm:91 framework-eps.scm:92 +#, scheme-format msgid "Writing ~a..." msgstr "" -#: framework-ps.scm:279 -#, lisp-format -msgid "can't embed ~S=~S" -msgstr "" - -#: framework-ps.scm:332 -#, lisp-format -msgid "can't extract file matching ~a from ~a" -msgstr "" - #: framework-ps.scm:349 -#, lisp-format +#, scheme-format msgid "don't know how to embed ~S=~S" msgstr "" #: framework-ps.scm:380 -#, lisp-format +#, scheme-format msgid "don't know how to embed font ~s ~s ~s" msgstr "" -#: framework-ps.scm:731 -#, lisp-format -msgid "can't convert to ~S" -msgstr "" - -#: framework-ps.scm:750 framework-ps.scm:753 -#, lisp-format -msgid "can't generate ~S using the postscript back-end" -msgstr "" - -#: framework-ps.scm:760 -msgid "" -"nThe PostScript backend does not support the 'classic'\n" -"framework. Use the EPS backend instead,\n" -"\n" -" lilypond -b eps \n" -"\n" -"or remove the lilypond-book specific settings from the input.\n" -msgstr "" - #: framework-tex.scm:360 -#, lisp-format +#, scheme-format msgid "TeX file name must not contain whitespace: `~a'" msgstr "" #: layout-beam.scm:29 -#, lisp-format +#, scheme-format msgid "Error in beam quanting. Expected (~S,~S) found ~S." msgstr "" #: layout-beam.scm:46 -#, lisp-format +#, scheme-format msgid "Error in beam quanting. Expected ~S 0, found ~S." msgstr "" -#: layout-page-layout.scm:353 +#: layout-page-layout.scm:357 msgid "Calculating page breaks..." msgstr "" -#: lily-library.scm:526 -#, lisp-format +#: lily-library.scm:582 +#, scheme-format msgid "unknown unit: ~S" msgstr "" -#: lily-library.scm:559 -#, lisp-format +#: lily-library.scm:615 +#, scheme-format msgid "no \\version statement found, please add~afor future compatibility" msgstr "" -#: lily-library.scm:566 +#: lily-library.scm:622 msgid "old relative compatibility not used" msgstr "" -#: lily.scm:137 -#, lisp-format +#: lily.scm:144 +#, scheme-format msgid "Can't find ~A" msgstr "" -#: lily.scm:202 -#, lisp-format +#: lily.scm:209 +#, scheme-format msgid "wrong type for argument ~a. Expecting ~a, found ~s" msgstr "" -#: lily.scm:416 lily.scm:477 -#, lisp-format +#: lily.scm:525 lily.scm:589 +#, scheme-format msgid "failed files: ~S" msgstr "" -#: lily.scm:467 -#, lisp-format +#: lily.scm:579 +#, scheme-format msgid "Redirecting output to ~a..." msgstr "" @@ -2029,81 +1870,61 @@ msgstr "" msgid "Music head function must return Music object" msgstr "" -#: ly-syntax-constructors.scm:132 -#, lisp-format +#: ly-syntax-constructors.scm:136 +#, scheme-format msgid "Invalid property operation ~a" msgstr "" -#: markup.scm:88 -#, lisp-format +#: markup.scm:123 +#, scheme-format msgid "Wrong number of arguments. Expect: ~A, found ~A: ~S" msgstr "" -#: markup.scm:94 -#, lisp-format +#: markup.scm:129 +#, scheme-format msgid "Invalid argument in position ~A. Expect: ~A, found: ~S." msgstr "" -#: music-functions.scm:210 +#: music-functions.scm:213 msgid "More alternatives than repeats. Junking excess alternatives" msgstr "" -#: music-functions.scm:229 -#, lisp-format +#: music-functions.scm:232 +#, scheme-format msgid "expecting 2 elements for chord tremolo, found ~a" msgstr "" -#: music-functions.scm:535 -#, lisp-format +#: music-functions.scm:538 +#, scheme-format msgid "music expected: ~S" msgstr "" #. FIXME: uncomprehensable message -#: music-functions.scm:586 -#, lisp-format +#: music-functions.scm:589 +#, scheme-format msgid "Bar check failed. Expect to be at ~a, instead at ~a" msgstr "" -#: music-functions.scm:745 -#, lisp-format -msgid "can't find quoted music `~S'" -msgstr "" - -#: music-functions.scm:953 -#, lisp-format -msgid "unknown accidental style: ~S" -msgstr "" - #: output-ps.scm:315 msgid "utf-8-string encountered in PS backend" msgstr "" #: output-svg.scm:42 -#, lisp-format +#, scheme-format msgid "undefined: ~S" msgstr "" -#: output-svg.scm:132 -#, lisp-format -msgid "can't decypher Pango description: ~a" -msgstr "" - -#: output-tex.scm:98 -#, lisp-format -msgid "can't find ~a in ~a" -msgstr "" - #: paper.scm:69 msgid "Not in toplevel scope" msgstr "" #: paper.scm:117 -#, lisp-format +#, scheme-format msgid "This is not a \\layout {} object, ~S" msgstr "" #: paper.scm:129 -#, lisp-format +#, scheme-format msgid "Unknown papersize: ~a" msgstr "" @@ -2114,7 +1935,7 @@ msgid "Must use #(set-paper-size .. ) within \\paper { ... }" msgstr "" #: parser-clef.scm:126 -#, lisp-format +#, scheme-format msgid "unknown clef type `~a'" msgstr "" @@ -2122,8 +1943,8 @@ msgstr "" msgid "see scm/clef.scm for supported clefs" msgstr "" -#: ps-to-png.scm:97 -#, lisp-format +#: ps-to-png.scm:88 +#, scheme-format msgid "~a exited with status: ~S" msgstr "" diff --git a/po/nl.po b/po/nl.po index aeb66b0ea7..a1a9e57a96 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, 2002, 2003, 2004 Jan Nieuwenhuizen , Han-Wen Nienhuys . +# Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006 Jan Nieuwenhuizen , Han-Wen Nienhuys . # Jan Nieuwenhuizen , 1998. # Han-Wen Nienhuys , 1998. # @@ -9,10 +9,10 @@ # msgid "" msgstr "" -"Project-Id-Version: lilypond 2.5.22\n" +"Project-Id-Version: lilypond 2.11.2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2006-10-08 16:22+0200\n" -"PO-Revision-Date: 2005-04-25 21:59+0200\n" +"POT-Creation-Date: 2006-12-22 17:25+0100\n" +"PO-Revision-Date: 2006-12-22 17:21+0100\n" "Last-Translator: Jan Nieuwenhuizen \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" @@ -27,7 +27,7 @@ msgstr "" #: convertrules.py:12 #, python-format msgid "Not smart enough to convert %s" -msgstr "niet slim genoeg om %s te converteren" +msgstr "Niet slim genoeg om %s te converteren" #: convertrules.py:13 msgid "Please refer to the manual for details, and update manually." @@ -82,27 +82,28 @@ msgstr "Draaien van %s..." #: lilylib.py:203 #, python-format -msgid "Usage: %s\n" -msgstr "" +msgid "Usage: %s" +msgstr "Gebruik: %s" #: abc2ly.py:1351 msgid "" "This program converts ABC music files (see\n" "http://www.gre.ac.uk/~c.walshaw/abc2mtex/abc.txt) to LilyPond input." msgstr "" +"Dit programma converteert ABC muziekbestanden (zie\n" +"http://www.gre.ac.uk/~c.walshaw/abc2mtex/abc.txt) naar LilyPond invoer." #: abc2ly.py:1354 -#, fuzzy msgid "set output filename to FILE" -msgstr "schrijf uitvoer naar BESTAND" +msgstr "zet uitvoerbestandnaam op BESTAND" #: abc2ly.py:1356 msgid "be strict about succes" -msgstr "" +msgstr "wees strict over succes" #: abc2ly.py:1358 msgid "preserve ABC's notion of beams" -msgstr "" +msgstr "behoud ABC's notie van waardestrepen" #: convert-ly.py:41 #, fuzzy @@ -118,88 +119,92 @@ msgstr "" "Actualiseer LilyPond invoer naar nieuwer versie. Standaard, gaande van\n" "versie uit de \\versie uitdrukking, naar de huidige LilyPond versie." -#: convert-ly.py:57 lilypond-book.py:97 warn.cc:48 input.cc:90 +#: convert-ly.py:57 lilypond-book.py:98 warn.cc:48 input.cc:90 #, c-format, python-format msgid "warning: %s" msgstr "waarschuwing: %s" -#: convert-ly.py:60 lilypond-book.py:100 warn.cc:54 input.cc:96 input.cc:104 +#: convert-ly.py:60 lilypond-book.py:101 warn.cc:54 input.cc:96 input.cc:104 #, c-format, python-format msgid "error: %s" msgstr "fout: %s" -#: convert-ly.py:76 etf2ly.py:1190 lilypond-book.py:120 midi2ly.py:98 +#: convert-ly.py:76 etf2ly.py:1190 lilypond-book.py:121 midi2ly.py:98 msgid "Distributed under terms of the GNU General Public License." msgstr "Verspreid onder de voorwaarden van de GNU General Public License." -#: convert-ly.py:77 etf2ly.py:1191 lilypond-book.py:121 midi2ly.py:99 +#: convert-ly.py:77 etf2ly.py:1191 lilypond-book.py:122 midi2ly.py:99 msgid "It comes with NO WARRANTY." msgstr "Er is GEEN GARANTIE." #: convert-ly.py:88 convert-ly.py:108 msgid "VERSION" -msgstr "" +msgstr "VERSIE" #: convert-ly.py:90 msgid "start from VERSION [default: \\version found in file]" -msgstr "" +msgstr "begin bij VERSIE [standaard: \\version gevonden in bestand]" #: convert-ly.py:93 msgid "edit in place" -msgstr "" +msgstr "bewerk bestand ter plekke" #: convert-ly.py:96 msgid "do not add \\version command if missing" -msgstr "" +msgstr "voeg geen \\version commando toe als het niet aanwezig is" #: convert-ly.py:102 msgid "print rules [default: --from=0, --to=@TOPLEVEL_VERSION@]" -msgstr "" +msgstr "toon regels [standaard: --from=0, --to=@TOPLEVEL_VERSION@]" #: convert-ly.py:107 msgid "convert to VERSION [default: @TOPLEVEL_VERSION@]" -msgstr "" +msgstr "converteer naar VERSIE [standaard: @TOPLEVEL_VERSION@]" #: convert-ly.py:154 msgid "Applying conversion: " msgstr "toepassen van conversie: " -#: convert-ly.py:166 +#: convert-ly.py:167 #, fuzzy -msgid "error while converting" +msgid "Error while converting" msgstr "%s: fout tijdens converteren" -#: convert-ly.py:168 score-engraver.cc:74 -msgid "Aborting" -msgstr "Afbreken" +#: convert-ly.py:169 +msgid "Stopping at last succesful rule" +msgstr "Stop na de laatste succesvolle regel" -#: convert-ly.py:192 +#: convert-ly.py:191 #, python-format msgid "Processing `%s'... " msgstr "Verwerken van `%s'..." -#: convert-ly.py:279 source-file.cc:54 -#, c-format, python-format -msgid "can't open file: `%s'" -msgstr "kan bestand niet openen: `%s'" +#: convert-ly.py:285 +#, python-format +msgid ". Skipping\") % f)" +msgstr "" -#: convert-ly.py:286 -#, fuzzy, python-format -msgid "can't determine version for `%s'. Skipping" -msgstr "%s: kan versie niet bepalen voor %s" +#: convert-ly.py:278 +#, python-format +msgid "\") % f)" +msgstr "" #: etf2ly.py:1198 +#, fuzzy msgid "" "Enigma Transport Format is a format used by Coda Music Technology's\n" "Finale product. This program will convert a subset of ETF to a\n" -"ready-to-use lilypond file." +"ready-to-use LilyPond file." msgstr "" +"Enigma Transport Format is een format dat wordt gebruikt door Coda\n" +"Music Technology's Finale produkt. Dit programma converteert een\n" +"subset van ETF naar een gebruiksklaar lilypondbestand." #: etf2ly.py:1201 midi2ly.py:885 msgid "write output to FILE" msgstr "schrijf uitvoer naar BESTAND" -#: etf2ly.py:1202 midi2ly.py:886 main.cc:173 main.cc:179 +#: etf2ly.py:1202 midi2ly.py:886 main.cc:172 main.cc:178 msgid "FILE" msgstr "BESTAND" @@ -208,10 +213,11 @@ msgstr "BESTAND" msgid "show warranty" msgstr "toon garantie en auteursrechten" -#: lilypond-book.py:70 +#: lilypond-book.py:71 #, fuzzy msgid "" -"Process LilyPond snippets in hybrid HTML, LaTeX, or texinfo document.\n" +"Process LilyPond snippets in hybrid HTML, LaTeX, texinfo or DocBook " +"document.\n" "\n" "Example usage:\n" "\n" @@ -225,186 +231,187 @@ msgstr "" " lilypond-book --filter=\"convert-ly --no-version --from=2.0.0 -\" BOEK\n" " lilypond-book --process='lilypond -I invoeging' BOEK\n" -#: lilypond-book.py:86 +#: lilypond-book.py:87 #, python-format msgid "Exiting (%d)..." msgstr "Afsluiten (%d)..." -#: lilypond-book.py:118 +#: lilypond-book.py:119 #, python-format msgid "Copyright (c) %s by" msgstr "Copyright (c) %s" -#: lilypond-book.py:129 +#: lilypond-book.py:130 msgid "FILTER" msgstr "FILTER" -#: lilypond-book.py:132 +#: lilypond-book.py:133 msgid "pipe snippets through FILTER [convert-ly -n -]" msgstr "pijp snippers door FILTER [convert-ly -n -]" -#: lilypond-book.py:135 +#: lilypond-book.py:136 #, fuzzy -msgid "use output format FORMAT (texi [default], texi-html, latex, html)" +msgid "" +"use output format FORMAT (texi [default], texi-html, latex, html, docbook)" msgstr "" "gebruik uitvoerformaat FMT (texi [standaard],\n" "\t\t texi-html, latex, html)" -#: lilypond-book.py:138 +#: lilypond-book.py:139 msgid "add DIR to include path" msgstr "voeg MAP toe aan zoekpad" -#: lilypond-book.py:143 +#: lilypond-book.py:144 msgid "write output to DIR" msgstr "schrijf uitvoer naar MAP" -#: lilypond-book.py:147 +#: lilypond-book.py:148 msgid "COMMAND" msgstr "OPDRACHT" -#: lilypond-book.py:148 +#: lilypond-book.py:149 msgid "process ly_files using COMMAND FILE..." msgstr "verwerk ly_bestanden met OPDRACHT BESTAND..." -#: lilypond-book.py:159 +#: lilypond-book.py:160 #, fuzzy msgid "" -"extract all PostScript fonts into INPUT.psfonts for LaTeXmust use this with " -"dvips -h INPUT.psfonts" +"extract all PostScript fonts into INPUT.psfonts for LaTeX\n" +"must use this with dvips -h INPUT.psfonts" msgstr "" "extract alle PostScript fonts naar BESTAND voor LaTeX\n" "\t moet dit gebruiken met dvips -h FILE" -#: lilypond-book.py:162 midi2ly.py:896 main.cc:183 +#: lilypond-book.py:163 midi2ly.py:896 main.cc:182 msgid "be verbose" msgstr "wees breedsprakig" -#: lilypond-book.py:168 main.cc:184 +#: lilypond-book.py:169 main.cc:183 msgid "show warranty and copyright" msgstr "toon garantie en auteursrechten" -#: lilypond-book.py:721 +#: lilypond-book.py:779 #, python-format msgid "file not found: %s" msgstr "bestand niet gevonden: %s" -#: lilypond-book.py:952 +#: lilypond-book.py:1010 #, python-format msgid "deprecated ly-option used: %s=%s" msgstr "verouderde ly-optie gebruikt: %s=%s" -#: lilypond-book.py:955 +#: lilypond-book.py:1013 #, python-format msgid "compatibility mode translation: %s=%s" msgstr "compatibiliteitsmodus vertaling: %s=%s" -#: lilypond-book.py:959 +#: lilypond-book.py:1017 #, python-format msgid "deprecated ly-option used: %s" msgstr "verouderde ly-optie gebruikt: %s" -#: lilypond-book.py:962 +#: lilypond-book.py:1020 #, python-format msgid "compatibility mode translation: %s" msgstr "compatibiliteitsmodus vertaling: %s" -#: lilypond-book.py:981 +#: lilypond-book.py:1039 #, python-format msgid "ignoring unknown ly option: %s" msgstr "negeren van onbekende ly optie: %s" -#: lilypond-book.py:1318 +#: lilypond-book.py:1394 #, python-format msgid "Opening filter `%s'" msgstr "Open filter `%s'" -#: lilypond-book.py:1335 +#: lilypond-book.py:1411 #, python-format msgid "`%s' failed (%d)" msgstr "`%s' gefaald (%d)" -#: lilypond-book.py:1336 +#: lilypond-book.py:1412 msgid "The error log is as follows:" msgstr "De foutlog is als volgend:" -#: lilypond-book.py:1405 +#: lilypond-book.py:1482 msgid "Can't find \\begin{document} in LaTeX document" -msgstr "" +msgstr "Kan \\begin{document} niet vinden in LaTeX dokument" -#: lilypond-book.py:1513 +#: lilypond-book.py:1592 msgid "Writing snippets..." msgstr "Schrijven van snippers..." -#: lilypond-book.py:1518 +#: lilypond-book.py:1597 msgid "Processing..." msgstr "Verwerken..." -#: lilypond-book.py:1522 +#: lilypond-book.py:1601 msgid "All snippets are up to date..." msgstr "Alle snippers zijn actueel..." -#: lilypond-book.py:1532 -#, python-format -msgid "can't determine format for: %s" -msgstr "kan formaat niet bepalen voor: %s" - -#: lilypond-book.py:1543 +#: lilypond-book.py:1622 #, python-format msgid "%s is up to date." msgstr "%s is actueel." -#: lilypond-book.py:1549 +#: lilypond-book.py:1628 #, python-format msgid "Writing `%s'..." msgstr "Schrijven van `%s'..." -#: lilypond-book.py:1604 +#: lilypond-book.py:1683 msgid "Output would overwrite input file; use --output." msgstr "Uitvoer zou invoerbestand overschrijven; gebruik --output." -#: lilypond-book.py:1608 +#: lilypond-book.py:1687 #, python-format msgid "Reading %s..." msgstr "Lezen %s..." -#: lilypond-book.py:1627 +#: lilypond-book.py:1706 msgid "Dissecting..." msgstr "Ontleden..." -#: lilypond-book.py:1643 +#: lilypond-book.py:1722 #, python-format msgid "Compiling %s..." msgstr "Samenstellen %s..." -#: lilypond-book.py:1652 +#: lilypond-book.py:1731 #, python-format msgid "Processing include: %s" msgstr "Verwerken van invoegsel: %s" -#: lilypond-book.py:1666 +#: lilypond-book.py:1745 #, python-format msgid "Removing `%s'" msgstr "Verwijderen van `%s'" -#: lilypond-book.py:1743 +#: lilypond-book.py:1821 #, python-format msgid "Writing fonts to %s..." msgstr "Schrijven van fonts naar %s" -#: lilypond-book.py:1758 +#: lilypond-book.py:1836 #, fuzzy msgid "option --psfonts not used" msgstr "optie --psfonts=BESTAND niet gebruikt" -#: lilypond-book.py:1759 +#: lilypond-book.py:1837 msgid "processing with dvips will have no fonts" msgstr "verwerking met dvips zal geen fonts hebben" -#: lilypond-book.py:1762 +#: lilypond-book.py:1840 msgid "DVIPS usage:" msgstr "DVIPS gebruik:" -#: midi2ly.py:106 lily-library.scm:541 lily-library.scm:549 +#: lilypond-book.py:1611 +#, python-format +msgid " % input_filename))" +msgstr "" + +#: midi2ly.py:106 lily-library.scm:613 lily-library.scm:621 msgid "warning: " msgstr "waarschuwing: " @@ -474,27 +481,27 @@ msgstr "Voorbeelden" msgid "no files specified on command line." msgstr "geen bestanden gespecificeerd op de commandoregel." -#: getopt-long.cc:141 +#: getopt-long.cc:140 #, c-format msgid "option `%s' requires an argument" msgstr "optie `%s' vereist een argument" -#: getopt-long.cc:145 +#: getopt-long.cc:144 #, c-format msgid "option `%s' doesn't allow an argument" msgstr "optie `%s' staat geen argument toe" -#: getopt-long.cc:149 +#: getopt-long.cc:148 #, c-format msgid "unrecognized option: `%s'" msgstr "onbekende optie: `%s'" -#: getopt-long.cc:155 +#: getopt-long.cc:154 #, c-format msgid "invalid argument `%s' to option `%s'" msgstr "onjuist argument: `%s' voor optie `%s'" -#: warn.cc:68 grob.cc:552 input.cc:82 +#: warn.cc:68 grob.cc:559 input.cc:82 #, c-format msgid "programming error: %s" msgstr "programmeerfout: %s" @@ -503,83 +510,79 @@ msgstr "programmeerfout: %s" msgid "continuing, cross fingers" msgstr "ga verder; duim maar" -#: accidental-engraver.cc:238 +#: accidental-engraver.cc:240 #, c-format msgid "accidental typesetting list must begin with context-name: %s" msgstr "voorteken zetlijst moet beginnen met context-naam: %s" -#: accidental-engraver.cc:266 +#: accidental-engraver.cc:268 #, c-format msgid "ignoring unknown accidental: %s" msgstr "negeren van onbekend voorteken: %s" -#: accidental-engraver.cc:282 +#: accidental-engraver.cc:284 #, c-format msgid "pair or context-name expected for accidental rule, found %s" -msgstr "" +msgstr "paar of context-naam verwacht voor toevallig teken regel, gevonden: %s" -#: accidental.cc:243 key-signature-interface.cc:124 +#: accidental.cc:243 key-signature-interface.cc:133 #, c-format msgid "accidental `%s' not found" msgstr "voorteken `%s' niet gevonden" -#: align-interface.cc:164 +#: align-interface.cc:222 msgid "" "vertical alignment called before line-breaking.\n" "Only do cross-staff spanners with PianoStaff." msgstr "" +"vertikale uitlijning aangeroepen voor regelbreuk\n" +"Gebruik alleen spanners over notenbalken heen met PianoStaff" -#: align-interface.cc:314 +#: align-interface.cc:329 msgid "tried to get a translation for something that isn't my child" msgstr "" +"probeerde een verplaatsing te verkrijgen voor iets wat geen kind van mij is" -#: all-font-metrics.cc:164 -#, c-format -msgid "can't find font: `%s'" +#: all-font-metrics.cc:173 +#, fuzzy, c-format +msgid "cannot find font: `%s'" msgstr "kan font niet vinden: `%s'" -#: all-font-metrics.cc:165 -msgid "loading default font" -msgstr "laden van standaardfont" - -#: all-font-metrics.cc:172 -#, c-format -msgid "can't find default font: `%s'" -msgstr "kan standaardfont niet vinden: `%s'" - -#: all-font-metrics.cc:173 includable-lexer.cc:62 lily-parser-scheme.cc:108 -#, c-format -msgid "(search path: `%s')" -msgstr "(zoekpad: `%s')" - -#: all-font-metrics.cc:174 volta-engraver.cc:158 -msgid "giving up" -msgstr "geef op" - #: apply-context-iterator.cc:31 msgid "\\applycontext argument is not a procedure" msgstr "\\applycontext argument is geen procedure" -#: auto-change-iterator.cc:62 change-iterator.cc:61 -#, c-format -msgid "can't change, already in translator: %s" +#: auto-change-iterator.cc:63 +#, fuzzy, c-format +msgid "cannot change, already in translator: %s" msgstr "kan niet wisselen, al in translator: %s" -#: axis-group-engraver.cc:82 +#: axis-group-engraver.cc:78 msgid "Axis_group_engraver: vertical group already has a parent" msgstr "Axis_group_engraver: verticale groep heeft al een ouder" -#: axis-group-engraver.cc:83 +#: axis-group-engraver.cc:79 msgid "are there two Axis_group_engravers?" msgstr "zijn er twee Axis_group_engravers?" -#: axis-group-engraver.cc:84 +#: axis-group-engraver.cc:80 msgid "removing this vertical group" msgstr "verwijder deze verticale groep" -#: axis-group-interface.cc:94 +#: axis-group-interface.cc:96 msgid "tried to calculate pure-height at a non-breakpoint" +msgstr "probeerde pure-hoogte te berekenen op een niet-breekpunt" + +#: axis-group-interface.cc:370 +msgid "an outside-staff object should have a direction, defaulting to up" msgstr "" +"een buiten-notenbalk object moet een richting hebben, gebruik " +"standaardwaarde omhoog" + +#: axis-group-interface.cc:383 +#, c-format +msgid "outside-staff object %s has an empty extent" +msgstr "buiten-notenbalk object %s heeft lege afmetingen" #: bar-check-iterator.cc:73 #, c-format @@ -594,19 +597,19 @@ msgstr "heb al een waardestreep" msgid "unterminated beam" msgstr "onbeëindigde waardestreep" -#: beam-engraver.cc:237 chord-tremolo-engraver.cc:134 +#: beam-engraver.cc:238 chord-tremolo-engraver.cc:134 msgid "stem must have Rhythmic structure" msgstr "stok moet Ritmische structuur hebben" -#: beam-engraver.cc:245 +#: beam-engraver.cc:246 msgid "stem doesn't fit in beam" msgstr "stok past niet in waardestreep" -#: beam-engraver.cc:246 +#: beam-engraver.cc:247 msgid "beam was started here" msgstr "waardestreep werd hier gestart" -#: beam-quanting.cc:306 +#: beam-quanting.cc:307 #, fuzzy msgid "no feasible beam position" msgstr "geen werkbare regelafbreuk gevonden" @@ -616,27 +619,17 @@ msgstr "geen werkbare regelafbreuk gevonden" msgid "removing beam with no stems" msgstr "verwijderen van waardestreep met minder dan twee stokken" -#: beam.cc:995 +#: beam.cc:1007 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" -#: break-align-interface.cc:208 +#: break-alignment-interface.cc:208 #, c-format msgid "No spacing entry from %s to `%s'" msgstr "Geen spatiëringswaarde van %s naar`%s'" -#: change-iterator.cc:23 -#, c-format -msgid "can't change `%s' to `%s'" -msgstr "kan `%s' niet in `%s' veranderen" - -#. FIXME: constant error message. -#: change-iterator.cc:82 -msgid "can't find context to switch to" -msgstr "kan `%s' niet wisselen in `%s'" - #. We could change the current translator's id, but that would make #. errors hard to catch. #. @@ -652,9 +645,23 @@ msgstr "niet wisselen naar zelfde type context: %s" msgid "none of these in my family" msgstr "geen van deze in mijn gezin" +#. FIXME: constant error message. +#. fixme: be more verbose. +#: change-iterator.cc:82 dynamic-engraver.cc:186 ligature-engraver.cc:93 +#: new-fingering-engraver.cc:96 note-column.cc:124 rest-collision.cc:151 +#: slur-engraver.cc:165 span-dynamic-performer.cc:87 +#: text-spanner-engraver.cc:61 trill-spanner-engraver.cc:68 +#: volta-engraver.cc:144 +msgid "));" +msgstr "" + +#: change-iterator.cc:23 +msgid ", to_type, to_id)" +msgstr "" + #: chord-tremolo-engraver.cc:88 msgid "No tremolo to end" -msgstr "" +msgstr "Geen tremolo om te beëindigen" #: chord-tremolo-engraver.cc:110 msgid "unterminated chord tremolo" @@ -665,7 +672,7 @@ msgstr "onbe msgid "expect 2 elements for chord tremolo, found %d" msgstr "verwacht 2 elementen voor akkoordtremolo, %d gevonden" -#: clef.cc:55 +#: clef.cc:54 #, c-format msgid "clef `%s' not found" msgstr "sleutel `%s' niet gevonden" @@ -679,7 +686,7 @@ msgstr "onbekende klusterstijl `%s'" msgid "junking empty cluster" msgstr "verschroot lege cluster" -#: coherent-ligature-engraver.cc:106 +#: coherent-ligature-engraver.cc:100 #, c-format msgid "Coherent_ligature_engraver: setting `spacing-increment=0.01': ptr=%ul" msgstr "Coherent_ligature_engraver: zet `spacing-increment=0.01': ptr=%ul" @@ -687,55 +694,45 @@ msgstr "Coherent_ligature_engraver: zet `spacing-increment=0.01': ptr=%ul" #. if we get to here, just put everything on one line #: constrained-breaking.cc:176 constrained-breaking.cc:193 #, fuzzy -msgid "couldn't find line breaking that satisfies constraints" +msgid "cannot find line breaking that satisfies constraints" msgstr "kan geen regelbreuk vinden die aan voorwaarden voldoet" -#: context-def.cc:128 +#: context-def.cc:130 #, c-format msgid "program has no such type: `%s'" msgstr "programma heeft geen dergelijk type: `%s'" -#: context-property.cc:77 +#: context-property.cc:76 msgid "need symbol arguments for \\override and \\revert" msgstr "heb symbool-argumenten nodig voor \\override en \\revert" -#: context.cc:151 -#, c-format -msgid "can't find or create new `%s'" -msgstr "kan niet vinden of nieuw maken `%s'" - -#: context.cc:213 -#, c-format -msgid "can't find or create `%s' called `%s'" -msgstr "kan niet vinden of maken `%s' genaamd `%s'" +#: context.cc:213 main.cc:323 main.cc:340 +msgid "," +msgstr "" #: context.cc:276 #, c-format msgid "Invalid CreateContext event: Cannot create %s context" -msgstr "" - -#: context.cc:388 -#, c-format -msgid "can't find or create: `%s'" -msgstr "kan niet vinden of scheppen: `%s'" +msgstr "Ongeldig CreateContext gebeurtenis: Kan %s context niet maken" #: custos.cc:77 #, c-format msgid "custos `%s' not found" msgstr "custode `%s' niet gevonden" -#: dispatcher.cc:72 +#: dispatcher.cc:71 msgid "Event class should be a symbol" -msgstr "" +msgstr "Gebeurtenis klasse zou hoort een symbool te zijn" -#: dispatcher.cc:79 +#: dispatcher.cc:78 #, fuzzy, c-format msgid "Unknown event class %s" msgstr "onbekende interface `%s'" -#: dynamic-engraver.cc:186 span-dynamic-performer.cc:87 -msgid "can't find start of (de)crescendo" -msgstr "kan start van (de)crescendo niet vinden" +#: dots.cc:38 +#, fuzzy, c-format +msgid "dot `%s' not found" +msgstr "rust `%s' niet gevonden" #: dynamic-engraver.cc:195 msgid "already have a decrescendo" @@ -753,11 +750,7 @@ msgstr "cresc is hier gestart" msgid "unterminated (de)crescendo" msgstr "onbeëindigd (de)crescendo" -#: engraver.cc:102 -msgid "not setting creation callback: not a procedure" -msgstr "" - -#: extender-engraver.cc:130 extender-engraver.cc:139 +#: extender-engraver.cc:131 extender-engraver.cc:140 msgid "unterminated extender" msgstr "onbeëindigde extender" @@ -768,7 +761,7 @@ msgstr "Initialiseren van FontConfig..." #: font-config.cc:44 #, c-format msgid "Rebuilding FontConfig cache %s, this may take a while..." -msgstr "" +msgstr "Herbouwen van FontConfig cache %s, dit kan wel even duren..." #: font-config.cc:55 #, fuzzy, c-format @@ -780,15 +773,15 @@ msgstr "toevoegen van font map: %s" msgid "adding font directory: %s" msgstr "toevoegen van font map: %s" -#: general-scheme.cc:161 +#: general-scheme.cc:160 msgid "infinity or NaN encountered while converting Real number" msgstr "oneindig of NaN tegengekomen tijdens converteren van Reëel getal" -#: general-scheme.cc:162 +#: general-scheme.cc:161 msgid "setting to zero" msgstr "zet op nul" -#: glissando-engraver.cc:91 +#: glissando-engraver.cc:92 msgid "unterminated glissando" msgstr "onbeëindigde glissando" @@ -815,51 +808,30 @@ msgstr "\\%s genegeerd" msgid "implied \\%s added" msgstr "impliciede \\%s toegevoeg" -#. ligature may not start with 2nd head of pes or flexa -#: gregorian-ligature-engraver.cc:212 -#, fuzzy -msgid "can't apply `\\~' on first head of ligature" -msgstr "Kan `\\~' niet op eerste noot van ligatuur toepassen; negeer `\\~'" - -#. (pitch == prev_pitch) -#: gregorian-ligature-engraver.cc:224 -#, fuzzy -msgid "can't apply `\\~' on heads with identical pitch" -msgstr "" -"Kan `\\~' niet toepassen op noten met identieke toonhoogte; negeer `\\~'" - -#: grob-interface.cc:48 +#: grob-interface.cc:57 #, c-format msgid "Unknown interface `%s'" msgstr "onbekende interface `%s'" -#: grob-interface.cc:59 +#: grob-interface.cc:68 #, c-format msgid "Grob `%s' has no interface for property `%s'" msgstr "Grob `%s' heeft geen interface voor eigenschap `%s'" -#: grob-property.cc:36 -msgid "not setting modification callback: not a procedure" -msgstr "" - #: grob.cc:253 #, fuzzy msgid "Infinity or NaN encountered" msgstr "oneindig of NaN tegengekomen tijdens converteren van Reëel getal" -#: hairpin.cc:179 +#: hairpin.cc:183 msgid "decrescendo too small" msgstr "decrescendo te klein" -#: hairpin.cc:180 -msgid "crescendo too small" -msgstr "crescendo te klein" - -#: horizontal-bracket-engraver.cc:58 +#: horizontal-bracket-engraver.cc:59 msgid "don't have that many brackets" msgstr "heb niet zoveel haken" -#: horizontal-bracket-engraver.cc:67 +#: horizontal-bracket-engraver.cc:68 msgid "conflicting note group events" msgstr "Tegenstrijdige nootgroeperingsgebeurtenissen" @@ -875,110 +847,104 @@ msgstr "verwijderen van onafgesloten streepje" msgid "include files are not allowed in safe mode" msgstr "invoegbestanden zijn niet toegestaan in veilige modus" -#: includable-lexer.cc:60 lily-guile.cc:96 lily-parser-scheme.cc:115 +#: includable-lexer.cc:62 lily-parser-scheme.cc:107 #, c-format -msgid "can't find file: `%s'" -msgstr "kan bestand niet vinden: `%s'" +msgid "(search path: `%s')" +msgstr "(zoekpad: `%s')" + +#: includable-lexer.cc:61 midi-stream.cc:57 +msgid "\n" +msgstr "" #: input.cc:112 source-file.cc:168 source-file.cc:183 msgid "position unknown" msgstr "positie onbekend" -#: ligature-engraver.cc:95 -msgid "can't find start of ligature" -msgstr "kan begin van ligatuur niet vinden" - -#: ligature-engraver.cc:100 +#: ligature-engraver.cc:98 msgid "no right bound" msgstr "geen rechterkant" -#: ligature-engraver.cc:122 +#: ligature-engraver.cc:120 msgid "already have a ligature" msgstr "heb al een ligatuur" -#: ligature-engraver.cc:131 +#: ligature-engraver.cc:129 msgid "no left bound" msgstr "geen linkerkant" -#: ligature-engraver.cc:175 +#: ligature-engraver.cc:173 msgid "unterminated ligature" msgstr "onbeëindigde ligatuur" -#: ligature-engraver.cc:204 +#: ligature-engraver.cc:202 msgid "ignoring rest: ligature may not contain rest" msgstr "negeer rust: ligatuur mag geen rust bevatten" -#: ligature-engraver.cc:205 +#: ligature-engraver.cc:203 msgid "ligature was started here" msgstr "ligatuur werd hier gestart" -#: lily-guile.cc:98 +#: lily-guile.cc:96 #, c-format msgid "(load path: `%s')" msgstr "(zoekpad: `%s')" -#: lily-guile.cc:439 -#, c-format -msgid "can't find property type-check for `%s' (%s)." -msgstr "kan geen type-controle vinden voor property `%s' (%s)" - -#: lily-guile.cc:442 +#: lily-guile.cc:462 msgid "perhaps a typing error?" msgstr "misschien een typefout?" -#: lily-guile.cc:448 +#: lily-guile.cc:468 msgid "doing assignment anyway" msgstr "voer toewijzing toch door" -#: lily-guile.cc:460 +#: lily-guile.cc:480 #, 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'" -#: lily-lexer.cc:222 +#: lily-guile.cc:95 +msgid " " +msgstr "" + +#: lily-lexer.cc:254 #, c-format msgid "identifier name is a keyword: `%s'" msgstr "identifier naam is een sleutelwoord: `%s'" -#: lily-lexer.cc:237 +#: lily-lexer.cc:269 #, c-format msgid "error at EOF: %s" msgstr "fout bij EOF: %s" -#: lily-parser-scheme.cc:30 +#: lily-parser-scheme.cc:29 #, c-format msgid "deprecated function called: %s" msgstr "verouderde functie aangeroepen: %s" -#: lily-parser-scheme.cc:89 +#: lily-parser-scheme.cc:88 #, fuzzy, c-format msgid "Changing working directory to `%s'" msgstr "kan werkmap niet veranderen in: %s: %s" -#: lily-parser-scheme.cc:107 -#, c-format -msgid "can't find init file: `%s'" -msgstr "kan init bestand niet vinden: `%s'" - #: lily-parser-scheme.cc:125 #, c-format msgid "Processing `%s'" msgstr "Verwerken van `%s'" -#: lily-parser.cc:97 +#: lily-parser.cc:99 msgid "Parsing..." msgstr "Ontleden..." -#: lily-parser.cc:126 +#: lily-parser.cc:127 msgid "braces don't match" msgstr "haakjes paren niet" -#: lyric-combine-music-iterator.cc:286 +#: lyric-combine-music-iterator.cc:291 #, c-format msgid "cannot find Voice `%s'" msgstr "kan Voice niet vinden: `%s'" -#: main.cc:117 +#: main.cc:116 #, c-format msgid "" "This program is free software. It is covered by the GNU General Public\n" @@ -991,7 +957,8 @@ msgstr "" "veranderen en/of te verspreiden onder bepaalde voorwaarden. Roep aan\n" "als `%s --warranty' voor meer informatie.\n" -#: main.cc:123 +#: main.cc:122 +#, fuzzy 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" @@ -1002,7 +969,7 @@ msgid "" "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n" "General Public License for more details.\n" "\n" -" You should have received a copy (refer to the file COPYING) of the\n" +" You should have received a copy 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,\n" "Boston, MA 02111-1307, USA.\n" @@ -1022,11 +989,11 @@ msgstr "" "zoniet, schrijf dan naar de Free Software Foundation, Inc.,\n" "675 Mass Ave, Cambridge, MA 02139, USA.\n" -#: main.cc:154 +#: main.cc:153 msgid "BACK" msgstr "BACK" -#: main.cc:154 +#: main.cc:153 #, fuzzy msgid "" "use backend BACK (gnome, ps,eps,\n" @@ -1036,88 +1003,90 @@ msgstr "" "gebruik backend BACK (gnome, ps [default],\n" " scm, svg, tex, texstr)" -#: main.cc:156 -msgid "SYM=VAL" -msgstr "" +#: main.cc:155 +msgid "SYM[=VAL]" +msgstr "SYM[=WAARDE]" -#: main.cc:157 +#: main.cc:156 msgid "" -"set a Scheme program option. Uses #t if VAL is not specified\n" -"Try -dhelp for help." +"set Scheme program option SYM to VAL (default: #t)\n" +"Use -dhelp for help." msgstr "" +"Zet Scheme programma optie SYM to WAARDE (standaard: #t)\n" +"Gebruik -dhelp voor hulp." -#: main.cc:160 +#: main.cc:159 msgid "EXPR" msgstr "EXPR" -#: main.cc:160 +#: main.cc:159 msgid "evaluate scheme code" -msgstr "" +msgstr "evalueer scheme code" #. Bug in option parser: --output =foe is taken as an abbreviation #. for --output-format. -#: main.cc:163 +#: main.cc:162 msgid "FORMATs" msgstr "FORMAATen" -#: main.cc:163 +#: main.cc:162 msgid "dump FORMAT,... Also as separate options:" msgstr "dump FORMAAT,... Ook als separate opties:" -#: main.cc:164 +#: main.cc:163 msgid "generate DVI (tex backend only)" msgstr "genereer DVI (alleen tex backend)" -#: main.cc:165 +#: main.cc:164 msgid "relocate using directory of lilypond program" -msgstr "" +msgstr "verhuis aan de hand van de map van het lilypond programma" -#: main.cc:166 +#: main.cc:165 msgid "generate PDF (default)" msgstr "genereer PDF (standaard)" -#: main.cc:167 +#: main.cc:166 msgid "generate PNG" msgstr "genereer PNG" -#: main.cc:168 +#: main.cc:167 msgid "generate PostScript" msgstr "genereer PostScipt" -#: main.cc:169 +#: main.cc:168 msgid "generate TeX (tex backend only)" msgstr "genereer TeX (alleen tex backend)" -#: main.cc:170 -msgid "print this help" -msgstr "toon deze hulp" +#: main.cc:169 +msgid "show this help and exit" +msgstr "toon deze hulp en sluit af" -#: main.cc:171 +#: main.cc:170 msgid "FIELD" msgstr "VELD" -#: main.cc:171 +#: main.cc:170 #, fuzzy msgid "dump a header field to file BASENAME.FIELD" msgstr "schrijf kop veld naar BASISNAAM.VELD" -#: main.cc:172 +#: main.cc:171 msgid "DIR" msgstr "MAP" -#: main.cc:172 +#: main.cc:171 msgid "add DIR to search path" msgstr "voeg DIR toe aan zoekpad" -#: main.cc:173 +#: main.cc:172 msgid "use FILE as init file" msgstr "gebruik BESTAND als initialisatiebestand" -#: main.cc:175 +#: main.cc:174 msgid "USER,GROUP,JAIL,DIR" msgstr "GEBR,GROEP,GEVANG,DIR" -#: main.cc:175 +#: main.cc:174 #, fuzzy msgid "" "chroot to JAIL, become USER:GROUP\n" @@ -1126,27 +1095,28 @@ msgstr "" "chroot naar GEVANG, word GEBR:GROEP\n" " en cd naar DIR" -#: main.cc:178 +#: main.cc:177 msgid "do not generate printed output" msgstr "genereer geen afdrukuitvoer" -#: main.cc:179 +#: main.cc:178 msgid "write output to FILE (suffix will be added)" msgstr "schrijf uitvoer naar BESTAND (extensie wordt toegevoegd)" -#: main.cc:180 +#: main.cc:179 msgid "generate a preview of the first system" msgstr "maak een voorvertoning van het eerste systeem" -#: main.cc:181 +#: main.cc:180 msgid "disallow unsafe Scheme and PostScript operations" -msgstr "" +msgstr "sta geen onveilige Scheme of PostScript operaties toe" -#: main.cc:182 -msgid "print version number" +#: main.cc:181 +#, fuzzy +msgid "show version number and exit" msgstr "druk versienummer af" -#: main.cc:223 +#: main.cc:222 #, c-format msgid "" "Copyright (c) %s by\n" @@ -1156,91 +1126,77 @@ msgstr "" "%s en anderen." #. No version number or newline here. It confuses help2man. -#: main.cc:250 +#: main.cc:249 #, c-format msgid "Usage: %s [OPTION]... FILE..." msgstr "Gebruik: %s [OPTIE]... BESTAND..." -#: main.cc:252 +#: main.cc:251 #, c-format msgid "Typeset music and/or produce MIDI from FILE." msgstr "Zet muziek en of produceer MIDI van BESTAND." -#: main.cc:254 +#: main.cc:253 #, c-format msgid "LilyPond produces beautiful music notation." msgstr "LilyPond produceert prachtige muzieknotatie." -#: main.cc:256 +#: main.cc:255 #, c-format msgid "For more information, see %s" msgstr "Voor meer informatie, zie %s" -#: main.cc:258 +#: main.cc:257 #, c-format msgid "Options:" msgstr "Opties:" -#: main.cc:262 +#: main.cc:261 #, fuzzy, c-format msgid "Report bugs via %s" msgstr "" "Meld fouten in het programma aan %s;\n" "meld onjuistheden in de vertaling aan of ." -#: main.cc:308 +#: main.cc:307 #, fuzzy, c-format msgid "expected %d arguments with jail, found: %u" msgstr "verwacht %d argumenten voor gevang, %d gevonden" -#: main.cc:322 +#: main.cc:321 #, c-format msgid "no such user: %s" msgstr "onbekende gebruiker: %s" -#: main.cc:324 -#, c-format -msgid "can't get user id from user name: %s: %s" -msgstr "kan gebruikers id niet krijgen van gebruikersnaam: %s: %s" - -#: main.cc:339 +#: main.cc:338 #, c-format msgid "no such group: %s" msgstr "onbekende groep: %s" -#: main.cc:341 -#, c-format -msgid "can't get group id from group name: %s: %s" -msgstr "kan groep id niet krijgen van groepnaam: %s: %s" - -#: main.cc:349 -#, c-format -msgid "can't chroot to: %s: %s" -msgstr "kan niet chrooten naar: %s: %s" +#: main.cc:348 +msgid ", components[JAIL]," +msgstr "" -#: main.cc:356 -#, c-format -msgid "can't change group id to: %d: %s" -msgstr "kan groep id niet veranderen in: %d: %s" +#: main.cc:367 +msgid ", components[DIR]," +msgstr "" -#: main.cc:362 +#: main.cc:413 #, c-format -msgid "can't change user id to: %d: %s" -msgstr "kan kan gebruiker id niet veranderen in: %d: %s" +msgid "Evaluating %s" +msgstr "Evalueren van %s" -#: main.cc:368 +#: main.cc:643 #, c-format -msgid "can't change working directory to: %s: %s" -msgstr "kan werkmap niet veranderen in: %s: %s" +msgid "exception caught: %s" +msgstr "exceptie gevangen: %s" -#: main.cc:415 -#, c-format -msgid "Evaluating %s" +#: main.cc:361 +msgid ", uid, strerror (errno)));" msgstr "" -#: main.cc:638 -#, c-format -msgid "exception caught: %s" +#: main.cc:355 +msgid ", gid, strerror (errno)));" msgstr "" #. FIXME: constant error message. @@ -1252,45 +1208,51 @@ msgstr "rehearsalMark moet een natuurlijk getal zijn" msgid "mark label must be a markup object" msgstr "mark etiket moet een markup zijn" -#: mensural-ligature-engraver.cc:88 +#: mensural-ligature-engraver.cc:85 msgid "ligature with less than 2 heads -> skipping" msgstr "ligatuur met minder dan 2 bolletjes -> overslaan" -#: mensural-ligature-engraver.cc:115 +#: mensural-ligature-engraver.cc:112 msgid "cannot determine pitch of ligature primitive -> skipping" msgstr "kan toonhoogte van primitieve ligatuur niet bepalen -> overslaan" -#: mensural-ligature-engraver.cc:129 +#: mensural-ligature-engraver.cc:126 msgid "single note ligature - skipping" msgstr "enkelnootse ligatuur - overslaan" -#: mensural-ligature-engraver.cc:141 +#: mensural-ligature-engraver.cc:138 msgid "prime interval within ligature -> skipping" msgstr "prieminterval binnen ligatuur -> overslaan" -#: mensural-ligature-engraver.cc:153 +#: mensural-ligature-engraver.cc:150 msgid "mensural ligature: duration none of Mx, L, B, S -> skipping" msgstr "mensural ligature: lengte geen van Mx, L, S -> overslaan" -#: mensural-ligature-engraver.cc:201 +#: mensural-ligature-engraver.cc:198 msgid "semibrevis must be followed by another one -> skipping" -msgstr "" +msgstr "semibrevis moet worden gevolgd door een andere -> overslaan" -#: mensural-ligature-engraver.cc:212 +#: mensural-ligature-engraver.cc:209 msgid "" "semibreves can only appear at the beginning of a ligature,\n" "and there may be only zero or two of them" msgstr "" +"semibrevi kunnen alleen aan het begin van een ligatuur voorkomen,\n" +"en het mogen er uitsluitend een of twee zijn" -#: mensural-ligature-engraver.cc:239 +#: mensural-ligature-engraver.cc:236 msgid "" "invalid ligatura ending:\n" "when the last note is a descending brevis,\n" "the penultimate note must be another one,\n" "or the ligatura must be LB or SSB" msgstr "" +"ongeldig ligatuur einde:\n" +"als de laatste noot een dalende brevis is,\n" +"moet de penultimate note een andere zijn,\n" +"of de ligatuur moet LB of SSB zijn" -#: mensural-ligature-engraver.cc:359 +#: mensural-ligature-engraver.cc:356 msgid "unexpected case fall-through" msgstr "onverwachte zaakdoorval" @@ -1317,104 +1279,100 @@ msgid "experimental: temporarily fine tuning (of %d cents) a channel." msgstr "experimenteel: tijdelijke fijnafstemming (%d centen) van kanaal." #: midi-stream.cc:28 -#, c-format -msgid "can't open for write: %s: %s" -msgstr "kan bestand niet openen om te schrijven: %s: %s" - -#: midi-stream.cc:44 -#, c-format -msgid "can't write to file: `%s'" -msgstr "kon niet naar bestand schrijven: `%s'" +msgid ", file_name, strerror (errno)));" +msgstr "" -#: music-iterator.cc:172 +#: music-iterator.cc:171 msgid "Sending non-event to context" -msgstr "" +msgstr "Zenden van niet-gebeurtenis naar context" -#: music.cc:142 +#: music.cc:141 #, fuzzy, c-format msgid "octave check failed; expected \"%s\", found: %s" msgstr "oktaafcontrole gefaald; verwachtte %s, vond: %s" -#: music.cc:208 +#: music.cc:207 #, c-format msgid "transposition by %s makes alteration larger than double" msgstr "transponering met %s maakt voorteken groter dan dubbel" -#: new-fingering-engraver.cc:87 -msgid "can't add text scripts to individual note heads" -msgstr "can tektscripts niet toevoegen aan individuele notenbolletjes" - -#: new-fingering-engraver.cc:246 +#: new-fingering-engraver.cc:239 msgid "no placement found for fingerings" msgstr "geen plaatsing gevonden voor vingers" -#: new-fingering-engraver.cc:247 +#: new-fingering-engraver.cc:240 msgid "placing below" msgstr "plaats onder" -#: note-collision.cc:415 +#: note-collision.cc:457 msgid "ignoring too many clashing note columns" msgstr "negeren van te veel botsende nootkolommen." -#: note-column.cc:123 -msgid "can't have note heads and rests together on a stem" -msgstr "kan notenbolletjes en rusten niet samen op een stok zetten" - -#: note-head.cc:69 +#: note-head.cc:63 #, fuzzy, c-format msgid "none of note heads `%s' or `%s' found" msgstr "nootbolletje `%s' niet gevonden" -#: note-heads-engraver.cc:63 +#: note-heads-engraver.cc:61 msgid "NoteEvent without pitch" -msgstr "" - -#: open-type-font.cc:33 -#, fuzzy, c-format -msgid "can't allocate %lu bytes" -msgstr "kan geen %d bytes alloceren" +msgstr "NootGebeurtenis zonder toonhoogte" -#: open-type-font.cc:37 -#, c-format -msgid "can't load font table: %s" -msgstr "kan fonttabel niet laden: %s" - -#: open-type-font.cc:96 +#: open-type-font.cc:98 #, c-format msgid "unsupported font format: %s" msgstr "niet-ondersteund font formaat: %s" -#: open-type-font.cc:98 +#: open-type-font.cc:100 #, c-format msgid "unknown error: %d reading font file: %s" msgstr "onbekende fout: %d tijdens lezen van fontbestand: %s" -#: open-type-font.cc:171 open-type-font.cc:295 +#: open-type-font.cc:173 open-type-font.cc:297 #, c-format -msgid "FT_Get_Glyph_Name() returned error: %d" +msgid "FT_Get_Glyph_Name() returned error: %u" +msgstr "FT_Get_Glyph_Name() gaf fout: %u" + +#: open-type-font.cc:37 +msgid ", tag_str));" msgstr "" -#: page-turn-page-breaking.cc:227 +#: open-type-font.cc:33 +msgid ", *length));" +msgstr "" + +#: page-turn-page-breaking.cc:205 +#, fuzzy msgid "" -"couldn't fit the first page turn onto a single page. Consider setting first-" +"cannot fit the first page turn onto a single page. Consider setting first-" "page-number to an even number." msgstr "" +"kon de eerste paginaomslag niet op eerste pagina gepast krijgen. Overweeg\n" +"first-page-number op een even getal te zetten." -#: page-turn-page-breaking.cc:240 +#: page-turn-page-breaking.cc:218 #, c-format msgid "Calculating page and line breaks (%d possible page breaks)..." -msgstr "" +msgstr "Berekenen van pagina en regelbreuken (%d mogelijke pagina breuken)..." -#: page-turn-page-breaking.cc:258 paper-score.cc:154 +#: page-turn-page-breaking.cc:236 paper-score.cc:154 msgid "Drawing systems..." +msgstr "Tekenen van systemen..." + +#: pango-font.cc:181 +#, c-format +msgid "" +"Glyph has no name, but font supports glyph naming.\n" +"Skipping glyph U+%0X, file %s" msgstr "" +"Vorm heeft geen naam, terwijl het font vormnamen ondersteunt<\n" +"Overslaan van vorm U+%0X, bestand %s" -#: pango-font.cc:215 +#: pango-font.cc:224 #, c-format msgid "no PostScript font name for font `%s'" msgstr "geen PostScript fontnaam voor font: `%s'" -#: pango-font.cc:263 +#: pango-font.cc:272 msgid "FreeType face has no PostScript font name" msgstr "FreeType gezicht heeft geen PostScript fontnaam" @@ -1448,15 +1406,15 @@ msgstr "onbe msgid "Track..." msgstr "Spoor... " -#: performance.cc:66 +#: performance.cc:74 msgid "MIDI channel wrapped around" -msgstr "" +msgstr "MIDI kanaal is klokje rond" -#: performance.cc:67 +#: performance.cc:75 msgid "remapping modulo 16" -msgstr "" +msgstr "herafbeelden modulo 16" -#: performance.cc:95 +#: performance.cc:103 #, c-format msgid "MIDI output to `%s'..." msgstr "MIDI uitvoer naar %s..." @@ -1465,23 +1423,12 @@ msgstr "MIDI uitvoer naar %s..." msgid "unterminated phrasing slur" msgstr "onbeëindigde fraseringsboog" -#: piano-pedal-engraver.cc:304 +#: piano-pedal-engraver.cc:286 #, fuzzy, c-format msgid "expect 3 strings for piano pedals, found: %ld" msgstr "verwacht 3 strings voor pianopedalen, %d gevonden" -#: piano-pedal-engraver.cc:319 piano-pedal-engraver.cc:330 -#: piano-pedal-performer.cc:93 -#, c-format -msgid "can't find start of piano pedal: `%s'" -msgstr "kan start van piano pedaal niet vinden: `%s'" - -#: piano-pedal-engraver.cc:377 -#, c-format -msgid "can't find start of piano pedal bracket: `%s'" -msgstr "kan start van piano pedaal haak niet vinden: `%s'" - -#: program-option.cc:195 +#: program-option.cc:205 #, c-format msgid "no such internal option: %s" msgstr "onbekende interne optie: %s" @@ -1491,7 +1438,7 @@ msgstr "onbekende interne optie: %s" msgid "not a grob name, `%s'" msgstr "geen grobnaam, `%s'" -#: relative-octave-check.cc:39 +#: relative-octave-check.cc:38 msgid "Failed octave check, got: " msgstr "Oktaafcontorle gefaald, heb:" @@ -1513,27 +1460,27 @@ msgstr "onbekend symbool: %s: %s" #: relocate.cc:78 #, c-format msgid "%s=%s (prepend)\n" -msgstr "" +msgstr "%s=%s (voorvoegen)\n" #: relocate.cc:98 #, c-format msgid "Relocation: compile prefix=%s, new prefix=%s" -msgstr "" +msgstr "Verhuizing: samenstel voorvoegel=%s, nieuw voorvoegsel=%s" #: relocate.cc:128 #, c-format msgid "Relocation: framework_prefix=%s" -msgstr "" +msgstr "Verhuizing: draadwerk_voorvoegel=%s" #: relocate.cc:168 #, c-format msgid "Relocation: is absolute: argv0=%s" -msgstr "" +msgstr "Verhuizing: is absoluut: argv0=%s" #: relocate.cc:175 #, c-format msgid "Relocation: from cwd: argv0=%s" -msgstr "" +msgstr "Verhuizing: van cwd: argv0=%s" #: relocate.cc:184 #, c-format @@ -1541,58 +1488,59 @@ msgid "" "Relocation: from PATH=%s\n" "argv0=%s" msgstr "" +"Verhuizing: van PATH=%s\n" +"argv0=%s" #: relocate.cc:353 #, fuzzy, c-format msgid "Relocation file %s\n" msgstr "kan bestand niet openen: `%s'" -#: relocate.cc:358 -#, fuzzy, c-format -msgid "can't open file %s" -msgstr "kan bestand niet openen: `%s'" - #: relocate.cc:388 #, c-format msgid "Unknown relocation command %s" -msgstr "" +msgstr "Onbekend verhuizingscommando %s" -#: rest-collision.cc:150 -msgid "can't resolve rest collision: rest direction not set" +#: relocate.cc:358 +msgid ", cname));" msgstr "" -#: rest-collision.cc:164 rest-collision.cc:209 +#: rest-collision.cc:165 rest-collision.cc:210 msgid "too many colliding rests" msgstr "te veel botsende rusten" -#: rest.cc:143 +#: rest.cc:144 #, c-format msgid "rest `%s' not found" msgstr "rust `%s' niet gevonden" -#: score-engraver.cc:68 +#: score-engraver.cc:67 #, c-format msgid "cannot find `%s'" msgstr "kan niet vinden `%s'" -#: score-engraver.cc:70 +#: score-engraver.cc:69 msgid "Music font has not been installed properly." msgstr "Muziekfont is niet correect geïnstalleerd." -#: score-engraver.cc:72 +#: score-engraver.cc:71 #, c-format msgid "Search path `%s'" msgstr "Zoekpad: `%s'" -#: score.cc:222 +#: score-engraver.cc:73 +msgid "Aborting" +msgstr "Afbreken" + +#: score.cc:225 msgid "already have music in score" msgstr "heb al muziek nodig in score" -#: score.cc:223 +#: score.cc:226 msgid "this is the previous music" msgstr "dit is de vorige muziek" -#: score.cc:228 +#: score.cc:231 msgid "errors found, ignoring music expression" msgstr "fouten gevonden, negeer muziekexpressie" @@ -1618,70 +1566,66 @@ msgstr "" msgid "unterminated slur" msgstr "onbeëindigde bindingsboog" -#: slur-engraver.cc:165 -msgid "can't end slur" -msgstr "kan legatoboog niet beëindigen" - #: source-file.cc:74 #, c-format msgid "expected to read %d characters, got %d" msgstr "verwacht %d karakters te lezen, kreeg %d" +#: source-file.cc:168 +msgid " (" +msgstr "" + #: staff-symbol-engraver.cc:62 msgid "staff-span event has no direction" msgstr "" -#: stem-engraver.cc:95 +#: stem-engraver.cc:92 msgid "tremolo duration is too long" msgstr "tremololengte is te lang" #. FIXME: -#: stem-engraver.cc:132 +#: stem-engraver.cc:129 #, c-format msgid "adding note head to incompatible stem (type = %d)" msgstr "voeg nootbolletje toe aan onverenigbare stok (type = %d)" -#: stem-engraver.cc:134 +#: stem-engraver.cc:131 msgid "maybe input should specify polyphonic voices" msgstr "misschien moet invoer polyfonische stemmen specificeren" -#: stem.cc:104 +#: stem.cc:105 msgid "weird stem size, check for narrow beams" msgstr "vreemde stoklengte; controleer op krappe waardestrepen" -#: stem.cc:627 +#: stem.cc:641 #, c-format msgid "flag `%s' not found" msgstr "vlag `%s' niet gevonden" -#: stem.cc:638 +#: stem.cc:652 #, c-format msgid "flag stroke `%s' not found" msgstr "vlag streep `%s' niet gevonden" -#: system.cc:178 +#: system.cc:180 #, c-format msgid "Element count %d." msgstr "Aantal elementen: %d." -#: system.cc:270 +#: system.cc:276 #, c-format msgid "Grob count %d" msgstr "Aantal grobs %d" -#: text-spanner-engraver.cc:60 -msgid "can't find start of text spanner" -msgstr "kan start van tekst spanner niet vinden" - -#: text-spanner-engraver.cc:72 +#: text-spanner-engraver.cc:73 msgid "already have a text spanner" msgstr "heb al een tekst spanner" -#: text-spanner-engraver.cc:132 +#: text-spanner-engraver.cc:133 msgid "unterminated text spanner" msgstr "onbeëindigde tekst spanner" -#: tie-engraver.cc:257 +#: tie-engraver.cc:264 msgid "lonely tie" msgstr "eenzame overbinding" @@ -1690,14 +1634,14 @@ msgstr "eenzame overbinding" #. #. OTOH, Tristan Keuris writes 8/20 in his Intermezzi. #. -#: time-signature-engraver.cc:63 +#: time-signature-engraver.cc:64 #, c-format msgid "strange time signature found: %d/%d" msgstr "vreemde maatsoort gevonden: %d/%d" #. If there is no such symbol, we default to the numbered style. #. (Here really with a warning!) -#: time-signature.cc:82 +#: time-signature.cc:83 #, c-format msgid "time signature symbol `%s' not found; reverting to numbered style" msgstr "maatsoortsymbool `%s' niet gevonden; val terug op numerieke stijl" @@ -1707,34 +1651,25 @@ msgstr "maatsoortsymbool `%s' niet gevonden; val terug op numerieke stijl" msgid "unknown translator: `%s'" msgstr "onbekende translator: `%s'" -#: translator-group.cc:152 -#, c-format -msgid "can't find: `%s'" -msgstr "kan niet vinden: `%s'" - -#: translator.cc:310 +#: translator.cc:332 #, c-format msgid "Two simultaneous %s events, junking this one" msgstr "" -#: translator.cc:311 +#: translator.cc:333 #, c-format msgid "Previous %s event here" msgstr "" -#: trill-spanner-engraver.cc:67 -msgid "can't find start of trill spanner" -msgstr "kan start van triller spanner niet vinden" - -#: trill-spanner-engraver.cc:79 +#: trill-spanner-engraver.cc:80 msgid "already have a trill spanner" msgstr "heb al een tekst spanner" -#: tuplet-engraver.cc:72 +#: tuplet-engraver.cc:75 msgid "invalid direction of tuplet-span-event" msgstr "" -#: vaticana-ligature-engraver.cc:364 +#: vaticana-ligature-engraver.cc:388 #, c-format msgid "" "ignored prefix (es) `%s' of this head according to restrictions of the " @@ -1744,7 +1679,7 @@ msgstr "" "de\n" "geselecteerde ligatuurstijl" -#: vaticana-ligature-engraver.cc:601 +#: vaticana-ligature-engraver.cc:714 #, c-format msgid "Vaticana_ligature_engraver: setting `spacing-increment = %f': ptr =%ul" msgstr "" @@ -1762,327 +1697,273 @@ msgstr "stijgende vaticana stijl flexa" msgid "Vaticana_ligature: zero join (delta_pitch == 0)" msgstr "Vaticana_ligature: nulsamenvoeging (delta_pitch == 0)" -#. fixme: be more verbose. -#: volta-engraver.cc:143 -msgid "can't end volta spanner" -msgstr "kan volta spanner niet beëindigen" - -#: volta-engraver.cc:153 +#: volta-engraver.cc:154 msgid "already have a volta spanner, ending that one prematurely" msgstr "heb al een volta spanner, beëindig die voortijdig" -#: volta-engraver.cc:157 +#: volta-engraver.cc:158 msgid "also already have an ended spanner" msgstr "heb ook al een beëidingde spanner" -#: parser.yy:704 +#: volta-engraver.cc:159 +msgid "giving up" +msgstr "geef op" + +#: parser.yy:702 msgid "\\paper cannot be used in \\score, use \\layout instead" msgstr "\\paper kan niet worden gebruikt in \\score, gebruik \\layout" -#: parser.yy:728 +#: parser.yy:726 msgid "need \\paper for paper block" msgstr "heb \\paper nodig voor paper blok" -#: parser.yy:1174 +#: parser.yy:1172 msgid "Grob name should be alphanumeric" msgstr "" -#: parser.yy:1481 +#: parser.yy:1475 msgid "second argument must be pitch list" msgstr "tweede argument moet een toonhoogtelijst zijn" -#: parser.yy:1508 parser.yy:1513 parser.yy:1988 +#: parser.yy:1502 parser.yy:1507 parser.yy:1972 msgid "have to be in Lyric mode for lyrics" msgstr "moet in Lyric modus zijn voor liedteksten" -#: parser.yy:1612 +#: parser.yy:1604 msgid "expecting string as script definition" msgstr "verwacht string voor script definitie" -#: parser.yy:1770 parser.yy:1820 +#: parser.yy:1759 parser.yy:1809 #, c-format msgid "not a duration: %d" msgstr "geen duur: %d" -#: parser.yy:1940 +#: parser.yy:1926 msgid "have to be in Note mode for notes" msgstr "moet in Note modus zijn voor noten" -#: parser.yy:2004 +#: parser.yy:1987 msgid "have to be in Chord mode for chords" msgstr "moet in Chord modus zijn voor accoorden" -#: lexer.ll:177 +#: lexer.ll:176 msgid "stray UTF-8 BOM encountered" msgstr "" -#: lexer.ll:181 +#: lexer.ll:180 msgid "Skipping UTF-8 BOM" msgstr "" -#: lexer.ll:236 +#: lexer.ll:235 #, c-format msgid "Renaming input to: `%s'" msgstr "Hernoem invoer naar: `%s'" -#: lexer.ll:254 +#: lexer.ll:252 msgid "quoted string expected after \\version" msgstr "tekst tussen aanhalingstekens verwacht na \\version" -#: lexer.ll:258 +#: lexer.ll:256 msgid "quoted string expected after \\sourcefilename" msgstr "tekst tussen aanhalingstekens verwacht na \\sourcefilename" -#: lexer.ll:262 +#: lexer.ll:260 #, fuzzy msgid "integer expected after \\sourcefileline" msgstr "tekst tussen aanhalingstekens verwacht na \\sourcefilename" -#: lexer.ll:275 +#: lexer.ll:273 msgid "EOF found inside a comment" msgstr "EOF gevonden in een kommentaar" -#: lexer.ll:290 +#: lexer.ll:288 msgid "\\maininput not allowed outside init files" msgstr "\\maininput niet toegestaan buiten init bestanden" -#: lexer.ll:314 +#: lexer.ll:312 #, c-format msgid "wrong or undefined identifier: `%s'" msgstr "verkeerde of ongedefiniëerde identifier: `%s'" #. backup rule -#: lexer.ll:323 +#: lexer.ll:321 msgid "end quote missing" msgstr "aanhalingstekens sluite mist" -#: lexer.ll:468 +#: lexer.ll:466 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:561 +#: lexer.ll:559 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:661 +#: lexer.ll:659 #, c-format msgid "invalid character: `%c'" msgstr "ongeldig teken: `%c'" -#: lexer.ll:776 +#: lexer.ll:774 #, c-format msgid "unknown escaped string: `\\%s'" msgstr "onbekende ontsnapte string: `\\%s'" -#: lexer.ll:882 +#: lexer.ll:880 #, c-format -msgid "Incorrect lilypond version: %s (%s, %s)" -msgstr "Verkeerde lilypond versie: %s (%s, %s)" +msgid "file too old: %s (oldest supported: %s)" +msgstr "" -#: lexer.ll:883 -msgid "Consider updating the input with the convert-ly script" +#: lexer.ll:881 +#, fuzzy +msgid "consider updating the input with the convert-ly script" msgstr "Overweeg het actualiseren van de invoer met het convert-ly script" -#: backend-library.scm:19 lily.scm:479 ps-to-png.scm:88 -#, lisp-format +#: lexer.ll:887 +#, c-format +msgid "program too old: %s (file requires: %s)" +msgstr "" + +#: backend-library.scm:19 lily.scm:599 ps-to-png.scm:82 +#, scheme-format msgid "Invoking `~a'..." msgstr "Inroepen van `~a'..." #: backend-library.scm:24 -#, lisp-format +#, scheme-format msgid "`~a' failed (~a)" msgstr "`~a' gefaald (~a)" # lisp-format #: backend-library.scm:95 framework-tex.scm:343 framework-tex.scm:368 -#, lisp-format +#, scheme-format msgid "Converting to `~a'..." msgstr "Converteren naar `~a'..." # lisp-format -#: backend-library.scm:110 -#, lisp-format +#: backend-library.scm:108 +#, scheme-format msgid "Converting to ~a..." msgstr "Converteren naar ~a..." -#: backend-library.scm:156 -#, lisp-format +#: backend-library.scm:145 +#, scheme-format msgid "Writing header field `~a' to `~a'..." msgstr "Schrijven van header veld `~a' naar `~a'..." #: define-context-properties.scm:20 define-grob-properties.scm:10 #: define-music-properties.scm:10 -#, lisp-format +#, scheme-format msgid "symbol ~S redefined" msgstr "" -#: define-event-classes.scm:116 -#, lisp-format +#: define-event-classes.scm:119 +#, scheme-format msgid "event class ~A seems to be unused" msgstr "" #. should be programming-error -#: define-event-classes.scm:122 -#, lisp-format +#: define-event-classes.scm:125 +#, scheme-format msgid "translator listens to nonexisting event class ~A" msgstr "" -#: define-markup-commands.scm:256 +#: define-markup-commands.scm:255 msgid "no systems found in \\score markup, does it have a \\layout block?" msgstr "geen systemen gevonden in \\score markup, heeft het een \\layout blok?" -#: define-markup-commands.scm:1249 -#, lisp-format +#: define-markup-commands.scm:1297 +#, scheme-format msgid "not a valid duration string: ~a" msgstr "geen geldige duurtekst: ~a" -#: define-music-types.scm:734 -#, lisp-format +#: define-music-types.scm:751 +#, scheme-format msgid "symbol expected: ~S" msgstr "" -#: define-music-types.scm:737 -#, lisp-format -msgid "can't find music object: ~S" -msgstr "kan muziekobject niet vinden: ~S" - -#: define-music-types.scm:757 -#, lisp-format -msgid "unknown repeat type `~S'" -msgstr "onbekend type herhaling `~S'" - -#: define-music-types.scm:758 -msgid "See music-types.scm for supported repeats" -msgstr "" - #: document-backend.scm:91 -#, lisp-format +#, scheme-format msgid "pair expected in doc ~s" msgstr "" -#: document-backend.scm:135 -#, lisp-format -msgid "can't find interface for property: ~S" -msgstr "kan interface voor property niet vinden: ~S" - -#: document-backend.scm:145 -#, fuzzy, lisp-format -msgid "unknown Grob interface: ~S" -msgstr "onbekende interface: ~S" - #: documentation-lib.scm:45 -#, lisp-format +#, scheme-format msgid "Processing ~S..." msgstr "Verwerken van ~S..." #: documentation-lib.scm:150 -#, lisp-format +#, scheme-format msgid "Writing ~S..." msgstr "Schrijven van ~S..." -#: documentation-lib.scm:172 -#, fuzzy, lisp-format -msgid "can't find description for property ~S (~S)" -msgstr "kan geen beschrijving vinden voor property ~S" - -#: framework-eps.scm:77 framework-eps.scm:78 -#, lisp-format +#: framework-eps.scm:91 framework-eps.scm:92 +#, scheme-format msgid "Writing ~a..." msgstr "Schrijven van ~a..." -#: framework-ps.scm:278 -#, lisp-format -msgid "can't embed ~S=~S" -msgstr "" - -#: framework-ps.scm:331 -#, lisp-format -msgid "can't extract file matching ~a from ~a" -msgstr "" - -#: framework-ps.scm:348 -#, lisp-format +#: framework-ps.scm:349 +#, scheme-format msgid "don't know how to embed ~S=~S" msgstr "" -#: framework-ps.scm:379 -#, fuzzy, lisp-format +#: framework-ps.scm:380 +#, fuzzy, scheme-format msgid "don't know how to embed font ~s ~s ~s" msgstr "weet niet hoe articulatie te vertolken: " -#: framework-ps.scm:610 -#, lisp-format -msgid "can't convert to ~S" -msgstr "kan niet converteren naar ~S" - -#: framework-ps.scm:629 framework-ps.scm:632 -#, lisp-format -msgid "can't generate ~S using the postscript back-end" -msgstr "kan ~S niet genereren, gebruikmakend van het postscript backend" - -#: framework-ps.scm:639 -msgid "" -"nThe PostScript backend does not support the 'classic'\n" -"framework. Use the EPS backend instead,\n" -"\n" -" lilypond -b eps \n" -"\n" -"or remove the lilypond-book specific settings from the input.\n" -msgstr "" - #: framework-tex.scm:360 -#, lisp-format +#, scheme-format msgid "TeX file name must not contain whitespace: `~a'" msgstr "TeX bestandsnaam mag geen spaties bevatten: `~a'" #: layout-beam.scm:29 -#, lisp-format +#, scheme-format msgid "Error in beam quanting. Expected (~S,~S) found ~S." msgstr "" #: layout-beam.scm:46 -#, lisp-format +#, scheme-format msgid "Error in beam quanting. Expected ~S 0, found ~S." msgstr "" -#: layout-page-layout.scm:353 +#: layout-page-layout.scm:357 msgid "Calculating page breaks..." msgstr "Berekenen van pagina-afbreuken..." -#: lily-library.scm:510 -#, lisp-format +#: lily-library.scm:582 +#, scheme-format msgid "unknown unit: ~S" msgstr "onbekende eenheid: ~S" -#: lily-library.scm:543 -#, fuzzy, lisp-format +#: lily-library.scm:615 +#, fuzzy, scheme-format msgid "no \\version statement found, please add~afor future compatibility" msgstr "" "geen \\version uitdrukking gevonden, voeg~atoe voor toekomstige " "compatibiliteit" -#: lily-library.scm:550 +#: lily-library.scm:622 msgid "old relative compatibility not used" msgstr "oude relative compatibiliteit niet gebruikt" -#: lily.scm:131 -#, fuzzy, lisp-format +#: lily.scm:144 +#, fuzzy, scheme-format msgid "Can't find ~A" msgstr "kan niet vinden: `%s'" -#: lily.scm:196 -#, lisp-format +#: lily.scm:209 +#, scheme-format msgid "wrong type for argument ~a. Expecting ~a, found ~s" msgstr "verkeert type voor argument ~a. Verwacht ~a, gevonden ~s" -#: lily.scm:409 lily.scm:469 -#, lisp-format +#: lily.scm:525 lily.scm:589 +#, scheme-format msgid "failed files: ~S" msgstr "gefaalde bestanden: ~S" # lisp-format -#: lily.scm:459 -#, fuzzy, lisp-format +#: lily.scm:579 +#, fuzzy, scheme-format msgid "Redirecting output to ~a..." msgstr "Converteren naar ~a..." @@ -2090,93 +1971,73 @@ msgstr "Converteren naar ~a..." msgid "Music head function must return Music object" msgstr "" -#: ly-syntax-constructors.scm:132 -#, lisp-format +#: ly-syntax-constructors.scm:136 +#, scheme-format msgid "Invalid property operation ~a" msgstr "" -#: markup.scm:88 -#, lisp-format +#: markup.scm:123 +#, fuzzy, scheme-format msgid "Wrong number of arguments. Expect: ~A, found ~A: ~S" msgstr "verkeerd aantal argumenten ~a. Verwacht ~A, gevonden ~A: ~S" -#: markup.scm:94 -#, lisp-format +#: markup.scm:129 +#, scheme-format msgid "Invalid argument in position ~A. Expect: ~A, found: ~S." msgstr "" -#: music-functions.scm:210 +#: music-functions.scm:213 #, fuzzy msgid "More alternatives than repeats. Junking excess alternatives" msgstr "meer alternatieven dan herhalingen" -#: music-functions.scm:229 -#, fuzzy, lisp-format +#: music-functions.scm:232 +#, fuzzy, scheme-format msgid "expecting 2 elements for chord tremolo, found ~a" msgstr "verwacht 2 elementen voor akkoordtremolo, %d gevonden" -#: music-functions.scm:535 -#, lisp-format +#: music-functions.scm:538 +#, scheme-format msgid "music expected: ~S" msgstr "" #. FIXME: uncomprehensable message -#: music-functions.scm:586 -#, lisp-format +#: music-functions.scm:589 +#, scheme-format msgid "Bar check failed. Expect to be at ~a, instead at ~a" msgstr "" -#: music-functions.scm:745 -#, lisp-format -msgid "can't find quoted music `~S'" -msgstr "kan aangehaalde muziek niet vinden `~S'" - -#: music-functions.scm:953 -#, lisp-format -msgid "unknown accidental style: ~S" -msgstr "onbekende voortekenstijl: ~S" - #: output-ps.scm:315 msgid "utf-8-string encountered in PS backend" msgstr "" #: output-svg.scm:42 -#, lisp-format +#, scheme-format msgid "undefined: ~S" msgstr "" -#: output-svg.scm:132 -#, lisp-format -msgid "can't decypher Pango description: ~a" -msgstr "" - -#: output-tex.scm:98 -#, lisp-format -msgid "can't find ~a in ~a" -msgstr "kan ~a niet vinden in ~a" - #: paper.scm:69 msgid "Not in toplevel scope" msgstr "Niet in topniveau scope" -#: paper.scm:114 -#, lisp-format +#: paper.scm:117 +#, scheme-format msgid "This is not a \\layout {} object, ~S" msgstr "" -#: paper.scm:126 -#, lisp-format +#: paper.scm:129 +#, scheme-format msgid "Unknown papersize: ~a" msgstr "" #. TODO: should raise (generic) exception with throw, and catch #. that in parse-scm.cc -#: paper.scm:141 +#: paper.scm:144 msgid "Must use #(set-paper-size .. ) within \\paper { ... }" msgstr "Moet #(set-paper-size .. ) gebruiken in \\paper { ... }" #: parser-clef.scm:126 -#, lisp-format +#, scheme-format msgid "unknown clef type `~a'" msgstr "onbekend sleuteltype `~a'" @@ -2184,8 +2045,8 @@ msgstr "onbekend sleuteltype `~a'" msgid "see scm/clef.scm for supported clefs" msgstr "zie scm/clef.scm voor ondersteunde sleutels" -#: ps-to-png.scm:97 -#, fuzzy, lisp-format +#: ps-to-png.scm:88 +#, fuzzy, scheme-format msgid "~a exited with status: ~S" msgstr "%s eindigde met status: %d" @@ -2193,6 +2054,168 @@ msgstr "%s eindigde met status: %d" msgid "assertion failed" msgstr "" +#~ msgid "cannot open file: `%s'" +#~ msgstr "kan bestand niet openen: `%s'" + +#, fuzzy +#~ msgid "cannot determine version for `%s'. Skipping" +#~ msgstr "%s: kan versie niet bepalen voor %s" + +#~ msgid "cannot determine format for: %s" +#~ msgstr "kan formaat niet bepalen voor: %s" + +#~ msgid "cannot change `%s' to `%s'" +#~ msgstr "kan `%s' niet in `%s' veranderen" + +#~ msgid "cannot find context to switch to" +#~ msgstr "kan `%s' niet wisselen in `%s'" + +#~ msgid "cannot find or create new `%s'" +#~ msgstr "kan niet vinden of nieuw maken `%s'" + +#~ msgid "cannot find or create `%s' called `%s'" +#~ msgstr "kan niet vinden of maken `%s' genaamd `%s'" + +#~ msgid "cannot find or create: `%s'" +#~ msgstr "kan niet vinden of scheppen: `%s'" + +#~ msgid "cannot find start of (de)crescendo" +#~ msgstr "kan start van (de)crescendo niet vinden" + +#, fuzzy +#~ msgid "cannot apply `\\~' on first head of ligature" +#~ msgstr "Kan `\\~' niet op eerste noot van ligatuur toepassen; negeer `\\~'" + +#, fuzzy +#~ msgid "cannot apply `\\~' on heads with identical pitch" +#~ msgstr "" +#~ "Kan `\\~' niet toepassen op noten met identieke toonhoogte; negeer `\\~'" + +#~ msgid "cannot find file: `%s'" +#~ msgstr "kan bestand niet vinden: `%s'" + +#~ msgid "cannot find start of ligature" +#~ msgstr "kan begin van ligatuur niet vinden" + +#~ msgid "cannot find property type-check for `%s' (%s)." +#~ msgstr "kan geen type-controle vinden voor property `%s' (%s)" + +#~ msgid "cannot find init file: `%s'" +#~ msgstr "kan init bestand niet vinden: `%s'" + +#~ msgid "cannot get user id from user name: %s: %s" +#~ msgstr "kan gebruikers id niet krijgen van gebruikersnaam: %s: %s" + +#~ msgid "cannot get group id from group name: %s: %s" +#~ msgstr "kan groep id niet krijgen van groepnaam: %s: %s" + +#~ msgid "cannot chroot to: %s: %s" +#~ msgstr "kan niet chrooten naar: %s: %s" + +#~ msgid "cannot change group id to: %d: %s" +#~ msgstr "kan groep id niet veranderen in: %d: %s" + +#~ msgid "cannot change user id to: %d: %s" +#~ msgstr "kan kan gebruiker id niet veranderen in: %d: %s" + +#~ msgid "cannot change working directory to: %s: %s" +#~ msgstr "kan werkmap niet veranderen in: %s: %s" + +#~ msgid "cannot open for write: %s: %s" +#~ msgstr "kan bestand niet openen om te schrijven: %s: %s" + +#~ msgid "cannot write to file: `%s'" +#~ msgstr "kon niet naar bestand schrijven: `%s'" + +#~ msgid "cannot add text scripts to individual note heads" +#~ msgstr "can tektscripts niet toevoegen aan individuele notenbolletjes" + +#~ msgid "cannot have note heads and rests together on a stem" +#~ msgstr "kan notenbolletjes en rusten niet samen op een stok zetten" + +#, fuzzy +#~ msgid "cannot allocate %lu bytes" +#~ msgstr "kan geen %d bytes alloceren" + +#~ msgid "cannot load font table: %s" +#~ msgstr "kan fonttabel niet laden: %s" + +#~ msgid "cannot find start of piano pedal: `%s'" +#~ msgstr "kan start van piano pedaal niet vinden: `%s'" + +#~ msgid "cannot find start of piano pedal bracket: `%s'" +#~ msgstr "kan start van piano pedaal haak niet vinden: `%s'" + +#, fuzzy +#~ msgid "cannot open file %s" +#~ msgstr "kan bestand niet openen: `%s'" + +#~ msgid "cannot end slur" +#~ msgstr "kan legatoboog niet beëindigen" + +#~ msgid "cannot find start of text spanner" +#~ msgstr "kan start van tekst spanner niet vinden" + +#~ msgid "cannot find: `%s'" +#~ msgstr "kan niet vinden: `%s'" + +#~ msgid "cannot find start of trill spanner" +#~ msgstr "kan start van triller spanner niet vinden" + +#~ msgid "cannot end volta spanner" +#~ msgstr "kan volta spanner niet beëindigen" + +#~ msgid "cannot find music object: ~S" +#~ msgstr "kan muziekobject niet vinden: ~S" + +#~ msgid "unknown repeat type `~S'" +#~ msgstr "onbekend type herhaling `~S'" + +#~ msgid "cannot find interface for property: ~S" +#~ msgstr "kan interface voor property niet vinden: ~S" + +#, fuzzy +#~ msgid "unknown Grob interface: ~S" +#~ msgstr "onbekende interface: ~S" + +#, fuzzy +#~ msgid "cannot find description for property ~S (~S)" +#~ msgstr "kan geen beschrijving vinden voor property ~S" + +#~ msgid "cannot convert to ~S" +#~ msgstr "kan niet converteren naar ~S" + +#~ msgid "cannot generate ~S using the postscript back-end" +#~ msgstr "kan ~S niet genereren, gebruikmakend van het postscript backend" + +#~ msgid "cannot find quoted music `~S'" +#~ msgstr "kan aangehaalde muziek niet vinden `~S'" + +#~ msgid "unknown accidental style: ~S" +#~ msgstr "onbekende voortekenstijl: ~S" + +#~ msgid "cannot find ~a in ~a" +#~ msgstr "kan ~a niet vinden in ~a" + +#, fuzzy +#~ msgid "couldn't find line breaking that satisfies constraints" +#~ msgstr "kan geen regelbreuk vinden die aan voorwaarden voldoet" + +#~ msgid "print this help" +#~ msgstr "toon deze hulp" + +#~ msgid "loading default font" +#~ msgstr "laden van standaardfont" + +#~ msgid "cannot find default font: `%s'" +#~ msgstr "kan standaardfont niet vinden: `%s'" + +#~ msgid "crescendo too small" +#~ msgstr "crescendo te klein" + +#~ msgid "Incorrect lilypond version: %s (%s, %s)" +#~ msgstr "Verkeerde lilypond versie: %s (%s, %s)" + #~ msgid "no one to print a tremolos" #~ msgstr "niemand om tremolos af te drukken" @@ -2211,7 +2234,7 @@ msgstr "" #~ msgid "no one to print a repeat brace" #~ msgstr "niemand om een herhalings haak af te drukken" -#~ msgid "can't find `%s' context" +#~ msgid "cannot find `%s' context" #~ msgstr "kan `%s' context niet vinden" #~ msgid "Optimal demerits: %f" @@ -2220,9 +2243,6 @@ msgstr "" #~ msgid "no feasible line breaking found" #~ msgstr "geen werkbare regelafbreuk gevonden" -#~ msgid "can't find line breaking that satisfies constraints" -#~ msgstr "kan geen regelbreuk vinden die aan voorwaarden voldoet" - #~ msgid "music for the martians." #~ msgstr "muziek voor de marsmannetjes." @@ -2249,7 +2269,7 @@ msgstr "" #~ msgstr "" #~ "%s: TFM bestand heeft %u parameters, wat meer is dan de %u die ik aan kan" -#~ msgid "can't find ascii character: %d" +#~ msgid "cannot find ascii character: %d" #~ msgstr "kan ascii teken niet vinden: %d" #~ msgid "no one to print a tuplet start bracket" @@ -2261,7 +2281,7 @@ msgstr "" #~ msgid "identifier should have alphabetic characters only" #~ msgstr "identifier zou uitsluitend alfabetische tekens moeten hebben" -#~ msgid "can't find signature for music function" +#~ msgid "cannot find signature for music function" #~ msgstr "kan signatuur van muziekfunctie niet vinden" #~ msgid "lilylib module" @@ -2372,7 +2392,7 @@ msgstr "" #~ msgid "Wrote `%s'" #~ msgstr "Geschreven `%s'..." -#~ msgid "can't dlopen: %s: %s" +#~ msgid "cannot dlopen: %s: %s" #~ msgstr "kan bestand niet openen: `%s'" #~ msgid "install package: %s or %s" @@ -2424,7 +2444,7 @@ msgstr "" #~ msgid "run in safe mode" #~ msgstr "draai in veilige modus" -#~ msgid "can't handle a percent repeat of length: %s" +#~ msgid "cannot handle a percent repeat of length: %s" #~ msgstr "kan procent herhaling van deze lengte niet afhandelen" #~ msgid "rest direction not set. Cannot resolve collision." @@ -2496,7 +2516,7 @@ msgstr "" #~ msgid "syntax error" #~ msgstr "syntaxis fout" -#~ msgid "can't find CFF/PFA/PFB font ~S=~S" +#~ msgid "cannot find CFF/PFA/PFB font ~S=~S" #~ msgstr "kan CFF/PFA/PFB font niet vinden: ~S=~S" #~ msgid "unknown bar glyph: `~S'" diff --git a/po/ru.po b/po/ru.po index 4553ff75ef..cd0d469d33 100644 --- a/po/ru.po +++ b/po/ru.po @@ -167,12 +167,12 @@ msgstr " #: convert-ly.py:279 source-file.cc:54 #, c-format, python-format -msgid "can't open file: `%s'" +msgid "cannot open file: `%s'" msgstr "ÎÅ ÍÏÇÕ ÏÔËÒÙÔØ ÆÁÊÌ: `%s'" #: convert-ly.py:286 #, fuzzy, python-format -msgid "can't determine version for `%s'. Skipping" +msgid "cannot determine version for `%s'. Skipping" msgstr "ÎÅ ÍÏÇÕ ÎÁÊÔÉ ÛÒÉÆÔ ÐÏ ÕÍÏÌÞÁÎÉÀ: `%s'" #: etf2ly.py:1198 @@ -328,7 +328,7 @@ msgstr "" #: lilypond-book.py:1532 #, fuzzy, python-format -msgid "can't determine format for: %s" +msgid "cannot determine format for: %s" msgstr "ÎÅ ÍÏÇÕ ÎÁÊÔÉ ÛÒÉÆÔ ÐÏ ÕÍÏÌÞÁÎÉÀ: `%s'" #: lilypond-book.py:1543 @@ -517,7 +517,7 @@ msgstr "" #: all-font-metrics.cc:164 #, c-format -msgid "can't find font: `%s'" +msgid "cannot find font: `%s'" msgstr "ÎÅ ÍÏÇÕ ÎÁÊÔÉ ÛÒÉÆÔ: `%s'" #: all-font-metrics.cc:165 @@ -527,7 +527,7 @@ msgstr " #: all-font-metrics.cc:172 #, c-format -msgid "can't find default font: `%s'" +msgid "cannot find default font: `%s'" msgstr "ÎÅ ÍÏÇÕ ÎÁÊÔÉ ÛÒÉÆÔ ÐÏ ÕÍÏÌÞÁÎÉÀ: `%s'" #: all-font-metrics.cc:173 includable-lexer.cc:62 lily-parser-scheme.cc:108 @@ -546,7 +546,7 @@ msgstr "" #: auto-change-iterator.cc:62 change-iterator.cc:61 #, fuzzy, c-format -msgid "can't change, already in translator: %s" +msgid "cannot change, already in translator: %s" msgstr "ÎÅ ÍÏÇÕ ÓÍÅÎÉÔØ `%s' ÎÁ `%s'" #: axis-group-engraver.cc:82 @@ -611,13 +611,13 @@ msgstr " #: change-iterator.cc:23 #, fuzzy, c-format -msgid "can't change `%s' to `%s'" +msgid "cannot change `%s' to `%s'" msgstr "ÎÅ ÍÏÇÕ ÓÍÅÎÉÔØ `%s' ÎÁ `%s'" #. FIXME: constant error message. #: change-iterator.cc:82 #, fuzzy -msgid "can't find context to switch to" +msgid "cannot find context to switch to" msgstr "ÎÅ ÍÏÇÕ ÎÁÊÔÉ ËÏÎÔÅËÓÔ `%s'" #. We could change the current translator's id, but that would make @@ -683,12 +683,12 @@ msgstr "" #: context.cc:151 #, fuzzy, c-format -msgid "can't find or create new `%s'" +msgid "cannot find or create new `%s'" msgstr "ÎÅ ÍÏÇÕ ÎÁÊÔÉ ÉÌÉ ÓÏÚÄÁÔØ: `%s'" #: context.cc:213 #, fuzzy, c-format -msgid "can't find or create `%s' called `%s'" +msgid "cannot find or create `%s' called `%s'" msgstr "ÎÅ ÍÏÇÕ ÎÁÊÔÉ ÓÉÍ×ÏÌ ÐÏÄ ÎÁÚ×ÁÎÉÅÍ: `%s'" #: context.cc:276 @@ -698,7 +698,7 @@ msgstr "" #: context.cc:388 #, c-format -msgid "can't find or create: `%s'" +msgid "cannot find or create: `%s'" msgstr "ÎÅ ÍÏÇÕ ÎÁÊÔÉ ÉÌÉ ÓÏÚÄÁÔØ: `%s'" #: custos.cc:77 @@ -716,7 +716,7 @@ msgid "Unknown event class %s" msgstr "ÎÅÉÚ×ÅÓÔÎÙÊ ÔÉÐ ËÌÀÞÁ" #: dynamic-engraver.cc:186 span-dynamic-performer.cc:87 -msgid "can't find start of (de)crescendo" +msgid "cannot find start of (de)crescendo" msgstr "ÎÅ ÍÏÇÕ ÎÁÊÔÉ ÎÁÞÁÌÏ (ÄÅ)ËÒÅÝÅÎÄÏ" #: dynamic-engraver.cc:195 @@ -804,12 +804,12 @@ msgstr "" #. ligature may not start with 2nd head of pes or flexa #: gregorian-ligature-engraver.cc:212 #, fuzzy -msgid "can't apply `\\~' on first head of ligature" +msgid "cannot apply `\\~' on first head of ligature" msgstr "ÞÔÏ-ÔÏ ÎÅ ÎÁÊÄÕ ÎÁÞÁÌÏ ÇÒÕÐÐÉÒÏ×ËÉ ÛÔÉÌÅÊ" #. (pitch == prev_pitch) #: gregorian-ligature-engraver.cc:224 -msgid "can't apply `\\~' on heads with identical pitch" +msgid "cannot apply `\\~' on heads with identical pitch" msgstr "" #: grob-interface.cc:48 @@ -864,7 +864,7 @@ msgstr "" #: includable-lexer.cc:60 lily-guile.cc:96 lily-parser-scheme.cc:115 #, c-format -msgid "can't find file: `%s'" +msgid "cannot find file: `%s'" msgstr "ÎÅ ÍÏÇÕ ÎÁÊÔÉ ÆÁÊÌ: `%s'" #: input.cc:112 source-file.cc:168 source-file.cc:183 @@ -873,7 +873,7 @@ msgstr " #: ligature-engraver.cc:95 #, fuzzy -msgid "can't find start of ligature" +msgid "cannot find start of ligature" msgstr "ÞÔÏ-ÔÏ ÎÅ ÎÁÊÄÕ ÎÁÞÁÌÏ ÇÒÕÐÐÉÒÏ×ËÉ ÛÔÉÌÅÊ" #: ligature-engraver.cc:100 @@ -910,7 +910,7 @@ msgstr "( #: lily-guile.cc:439 #, c-format -msgid "can't find property type-check for `%s' (%s)." +msgid "cannot find property type-check for `%s' (%s)." msgstr "" #: lily-guile.cc:442 @@ -948,7 +948,7 @@ msgstr " #: lily-parser-scheme.cc:107 #, fuzzy, c-format -msgid "can't find init file: `%s'" +msgid "cannot find init file: `%s'" msgstr "ÎÅ ÍÏÇÕ ÎÁÊÔÉ ÆÁÊÌ: `%s'" #: lily-parser-scheme.cc:125 @@ -1171,7 +1171,7 @@ msgstr " #: main.cc:324 #, c-format -msgid "can't get user id from user name: %s: %s" +msgid "cannot get user id from user name: %s: %s" msgstr "" #: main.cc:339 @@ -1181,27 +1181,27 @@ msgstr " #: main.cc:341 #, fuzzy, c-format -msgid "can't get group id from group name: %s: %s" +msgid "cannot get group id from group name: %s: %s" msgstr "ÎÅ ÍÏÇÕ ÓÍÅÎÉÔØ `%s' ÎÁ `%s'" #: main.cc:349 #, fuzzy, c-format -msgid "can't chroot to: %s: %s" +msgid "cannot chroot to: %s: %s" msgstr "ÎÅ ÍÏÇÕ ÎÁÊÔÉ ÉÌÉ ÓÏÚÄÁÔØ: `%s'" #: main.cc:356 #, fuzzy, c-format -msgid "can't change group id to: %d: %s" +msgid "cannot change group id to: %d: %s" msgstr "ÎÅ ÍÏÇÕ ÓÍÅÎÉÔØ `%s' ÎÁ `%s'" #: main.cc:362 #, fuzzy, c-format -msgid "can't change user id to: %d: %s" +msgid "cannot change user id to: %d: %s" msgstr "ÎÅ ÍÏÇÕ ÓÍÅÎÉÔØ `%s' ÎÁ `%s'" #: main.cc:368 #, fuzzy, c-format -msgid "can't change working directory to: %s: %s" +msgid "cannot change working directory to: %s: %s" msgstr "ÎÅ ÍÏÇÕ ÎÁÊÔÉ ÉÌÉ ÓÏÚÄÁÔØ: `%s'" #: main.cc:415 @@ -1289,12 +1289,12 @@ msgstr "" #: midi-stream.cc:28 #, fuzzy, c-format -msgid "can't open for write: %s: %s" +msgid "cannot open for write: %s: %s" msgstr "ÎÅ ÍÏÇÕ ÏÔËÒÙÔØ ÆÁÊÌ: `%s'" #: midi-stream.cc:44 #, fuzzy, c-format -msgid "can't write to file: `%s'" +msgid "cannot write to file: `%s'" msgstr "ÎÅ ÍÏÇÕ ÏÔËÒÙÔØ ÆÁÊÌ: `%s'" #: music-iterator.cc:172 @@ -1312,7 +1312,7 @@ msgid "transposition by %s makes alteration larger than double" msgstr "" #: new-fingering-engraver.cc:87 -msgid "can't add text scripts to individual note heads" +msgid "cannot add text scripts to individual note heads" msgstr "" #: new-fingering-engraver.cc:246 @@ -1329,7 +1329,7 @@ msgid "ignoring too many clashing note columns" msgstr "óÌÉÛËÏÍ ÍÎÏÇÏ ÐÅÒÅÓÅËÁÀÝÉÈÓÑ ÓÔÏÌÂÃÏ× ÎÏÔ. éÇÎÏÒÉÒÕÀ." #: note-column.cc:123 -msgid "can't have note heads and rests together on a stem" +msgid "cannot have note heads and rests together on a stem" msgstr "" #: note-head.cc:69 @@ -1343,12 +1343,12 @@ msgstr "" #: open-type-font.cc:33 #, fuzzy, c-format -msgid "can't allocate %lu bytes" +msgid "cannot allocate %lu bytes" msgstr "ÎÅ ÍÏÇÕ ÏÔËÒÙÔØ ÆÁÊÌ: `%s'" #: open-type-font.cc:37 #, fuzzy, c-format -msgid "can't load font table: %s" +msgid "cannot load font table: %s" msgstr "ÎÅ ÍÏÇÕ ÎÁÊÔÉ ÛÒÉÆÔ: `%s'" #: open-type-font.cc:96 @@ -1451,12 +1451,12 @@ msgstr "" #: piano-pedal-engraver.cc:319 piano-pedal-engraver.cc:330 #: piano-pedal-performer.cc:93 #, fuzzy, c-format -msgid "can't find start of piano pedal: `%s'" +msgid "cannot find start of piano pedal: `%s'" msgstr "ÞÔÏ-ÔÏ ÎÅ ÎÁÊÄÕ ÎÁÞÁÌÏ ÇÒÕÐÐÉÒÏ×ËÉ ÛÔÉÌÅÊ" #: piano-pedal-engraver.cc:377 #, fuzzy, c-format -msgid "can't find start of piano pedal bracket: `%s'" +msgid "cannot find start of piano pedal bracket: `%s'" msgstr "ÞÔÏ-ÔÏ ÎÅ ÎÁÊÄÕ ÎÁÞÁÌÏ ÇÒÕÐÐÉÒÏ×ËÉ ÛÔÉÌÅÊ" #: program-option.cc:195 @@ -1527,7 +1527,7 @@ msgstr " #: relocate.cc:358 #, fuzzy, c-format -msgid "can't open file %s" +msgid "cannot open file %s" msgstr "ÎÅ ÍÏÇÕ ÏÔËÒÙÔØ ÆÁÊÌ: `%s'" #: relocate.cc:388 @@ -1536,7 +1536,7 @@ msgid "Unknown relocation command %s" msgstr "" #: rest-collision.cc:150 -msgid "can't resolve rest collision: rest direction not set" +msgid "cannot resolve rest collision: rest direction not set" msgstr "" #: rest-collision.cc:164 rest-collision.cc:209 @@ -1601,7 +1601,7 @@ msgstr " #: slur-engraver.cc:165 #, fuzzy -msgid "can't end slur" +msgid "cannot end slur" msgstr "ÞÔÏ-ÔÏ ÎÅ ÎÁÊÄÕ ÎÁÞÁÌÏ ÇÒÕÐÐÉÒÏ×ËÉ ÛÔÉÌÅÊ" #: source-file.cc:74 @@ -1653,7 +1653,7 @@ msgstr "" #: text-spanner-engraver.cc:60 #, fuzzy -msgid "can't find start of text spanner" +msgid "cannot find start of text spanner" msgstr "ÞÔÏ-ÔÏ ÎÅ ÎÁÊÄÕ ÎÁÞÁÌÏ ÇÒÕÐÐÉÒÏ×ËÉ ÛÔÉÌÅÊ" #: text-spanner-engraver.cc:72 @@ -1694,7 +1694,7 @@ msgstr "" #: translator-group.cc:152 #, c-format -msgid "can't find: `%s'" +msgid "cannot find: `%s'" msgstr "ÎÅ ÍÏÇÕ ÎÁÊÔÉ: `%s'" #: translator.cc:310 @@ -1709,7 +1709,7 @@ msgstr "" #: trill-spanner-engraver.cc:67 #, fuzzy -msgid "can't find start of trill spanner" +msgid "cannot find start of trill spanner" msgstr "ÞÔÏ-ÔÏ ÎÅ ÎÁÊÄÕ ÎÁÞÁÌÏ ÇÒÕÐÐÉÒÏ×ËÉ ÛÔÉÌÅÊ" #: trill-spanner-engraver.cc:79 @@ -1748,7 +1748,7 @@ msgstr "" #. fixme: be more verbose. #: volta-engraver.cc:143 #, fuzzy -msgid "can't end volta spanner" +msgid "cannot end volta spanner" msgstr "ÞÔÏ-ÔÏ ÎÅ ÎÁÊÄÕ ÎÁÞÁÌÏ ÇÒÕÐÐÉÒÏ×ËÉ ÛÔÉÌÅÊ" #: volta-engraver.cc:153 @@ -1929,7 +1929,7 @@ msgstr "" #: define-music-types.scm:737 #, fuzzy, lisp-format -msgid "can't find music object: ~S" +msgid "cannot find music object: ~S" msgstr "ÎÅ ÍÏÇÕ ÎÁÊÔÉ ËÏÎÔÅËÓÔ `%s'" #: define-music-types.scm:757 @@ -1948,7 +1948,7 @@ msgstr "" #: document-backend.scm:135 #, fuzzy, lisp-format -msgid "can't find interface for property: ~S" +msgid "cannot find interface for property: ~S" msgstr "ÎÅ ÍÏÇÕ ÎÁÊÔÉ ÓÉÍ×ÏÌ Ó ÎÏÍÅÒÏÍ: %d" #: document-backend.scm:145 @@ -1968,7 +1968,7 @@ msgstr " #: documentation-lib.scm:172 #, fuzzy, lisp-format -msgid "can't find description for property ~S (~S)" +msgid "cannot find description for property ~S (~S)" msgstr "ÎÅ ÍÏÇÕ ÎÁÊÔÉ ÓÉÍ×ÏÌ Ó ÎÏÍÅÒÏÍ: %d" #: framework-eps.scm:77 framework-eps.scm:78 @@ -1978,12 +1978,12 @@ msgstr " #: framework-ps.scm:278 #, lisp-format -msgid "can't embed ~S=~S" +msgid "cannot embed ~S=~S" msgstr "" #: framework-ps.scm:331 #, lisp-format -msgid "can't extract file matching ~a from ~a" +msgid "cannot extract file matching ~a from ~a" msgstr "" #: framework-ps.scm:348 @@ -1998,12 +1998,12 @@ msgstr "" #: framework-ps.scm:610 #, lisp-format -msgid "can't convert to ~S" +msgid "cannot convert to ~S" msgstr "" #: framework-ps.scm:629 framework-ps.scm:632 #, lisp-format -msgid "can't generate ~S using the postscript back-end" +msgid "cannot generate ~S using the postscript back-end" msgstr "" #: framework-ps.scm:639 @@ -2111,7 +2111,7 @@ msgstr "" #: music-functions.scm:745 #, fuzzy, lisp-format -msgid "can't find quoted music `~S'" +msgid "cannot find quoted music `~S'" msgstr "ÎÅ ÍÏÇÕ ÎÁÊÔÉ ÛÒÉÆÔ: `%s'" #: music-functions.scm:953 @@ -2130,12 +2130,12 @@ msgstr "" #: output-svg.scm:132 #, lisp-format -msgid "can't decypher Pango description: ~a" +msgid "cannot decypher Pango description: ~a" msgstr "" #: output-tex.scm:98 #, fuzzy, lisp-format -msgid "can't find ~a in ~a" +msgid "cannot find ~a in ~a" msgstr "ÞÔÏ-ÔÏ ÎÅ ÎÁÊÄÕ ÎÁÞÁÌÏ ÇÒÕÐÐÉÒÏ×ËÉ ÛÔÉÌÅÊ" #: paper.scm:69 @@ -2187,7 +2187,7 @@ msgstr "" #~ msgid "no one to print a repeat brace" #~ msgstr "ÎÅËÏÍÕ ÒÉÓÏ×ÁÔØ ÓËÏÂÕ ÐÏ×ÔÏÒÁ" -#~ msgid "can't find `%s' context" +#~ msgid "cannot find `%s' context" #~ msgstr "ÎÅ ÍÏÇÕ ÎÁÊÔÉ ËÏÎÔÅËÓÔ `%s'" #, fuzzy @@ -2210,7 +2210,7 @@ msgstr "" #~ msgstr "÷ÙÂÒÁÓÙ×ÁÀ ÚÁÐÒÏÓ: `%s'" #, fuzzy -#~ msgid "can't find ascii character: %d" +#~ msgid "cannot find ascii character: %d" #~ msgstr "ÎÅ ÍÏÇÕ ÎÁÊÔÉ ÓÉÍ×ÏÌ ASCII: `%d'" #, fuzzy @@ -2218,7 +2218,7 @@ msgstr "" #~ msgstr "ÎÅÚÁ×ÅÒÛÅÎÎÙÊ ÒÁÓÛÉÒÉÔÅÌØ" #, fuzzy -#~ msgid "can't find signature for music function" +#~ msgid "cannot find signature for music function" #~ msgstr "ÎÅ ÍÏÇÕ ÎÁÊÔÉ ËÏÎÔÅËÓÔ `%s'" #, fuzzy @@ -2258,7 +2258,7 @@ msgstr "" #~ msgstr "÷ÙÂÒÁÓÙ×ÁÀ ÍÕÚÙËÕ: `%s'" #, fuzzy -#~ msgid "can't dlopen: %s: %s" +#~ msgid "cannot dlopen: %s: %s" #~ msgstr "ÎÅ ÍÏÇÕ ÏÔËÒÙÔØ ÆÁÊÌ: `%s'" #, fuzzy @@ -2282,7 +2282,7 @@ msgstr "" #~ msgstr "ÎÅ ÍÏÇÕ ÎÁÊÔÉ ÉÌÉ ÓÏÚÄÁÔØ: `%s'" #, fuzzy -#~ msgid "can't handle a percent repeat of length: %s" +#~ msgid "cannot handle a percent repeat of length: %s" #~ msgstr "îÅ ÚÎÁÀ, ÞÔÏ ÄÅÌÁÔØ Ó ÐÕÓÔÙÍÉ ËÌÀÞÁÍÉ" #, fuzzy @@ -2330,7 +2330,7 @@ msgstr "" #~ msgstr "ÎÅ ÓÍÅÒÔÅÌØÎÁÑ ÏÛÉÂËÁ: " #, fuzzy -#~ msgid "can't find CFF/PFA/PFB font ~S=~S" +#~ msgid "cannot find CFF/PFA/PFB font ~S=~S" #~ msgstr "ÎÅ ÍÏÇÕ ÎÁÊÔÉ ÛÒÉÆÔ: `%s'" #, fuzzy @@ -2389,11 +2389,11 @@ msgstr "" #~ msgstr "éóðòá÷øíåîñ: ÓÌÉÑÎÉÅ ÓÍÅÎÙ ËÌÀÞÁ" #, fuzzy -#~ msgid "kpathsea can't find %s file: `%s'" +#~ msgid "kpathsea cannot find %s file: `%s'" #~ msgstr "ÎÅ ÍÏÇÕ ÎÁÊÔÉ ÆÁÊÌ: `%s'" #, fuzzy -#~ msgid "kpathsea can't find file: `%s'" +#~ msgid "kpathsea cannot find file: `%s'" #~ msgstr "ÎÅ ÍÏÇÕ ÎÁÊÔÉ ÆÁÊÌ: `%s'" #, fuzzy @@ -2448,7 +2448,7 @@ msgstr "" #~ msgstr "×Ù×ÏÄ MIDI × %s..." #, fuzzy -#~ msgid "can't find file: `%s.%s'" +#~ msgid "cannot find file: `%s.%s'" #~ msgstr "ÎÅ ÍÏÇÕ ÎÁÊÔÉ ÆÁÊÌ: `%s'" #, fuzzy @@ -2529,7 +2529,7 @@ msgstr "" #~ msgstr "ÉÚ ÍÕÚÙËÁÌØÎÏÊ ÎÏÔÁÃÉÉ %s" #, fuzzy -#~ msgid "can't find start of phrasing slur" +#~ msgid "cannot find start of phrasing slur" #~ msgstr "ÞÔÏ-ÔÏ ÎÅ ÎÁÊÄÕ ÎÁÞÁÌÏ ÇÒÕÐÐÉÒÏ×ËÉ ÛÔÉÌÅÊ" #, fuzzy @@ -2574,7 +2574,7 @@ msgstr "" #~ msgid "Can't specify direction for this request" #~ msgstr "îÅ ÍÏÇÕ ÕËÁÚÁÔØ ÎÁÐÒÁ×ÌÅÎÉÅ ÄÌÑ ÜÔÏÇÏ ÚÁÐÒÏÓÁ" -#~ msgid "can't map file" +#~ msgid "cannot map file" #~ msgstr "ÎÅ ÍÏÇÕ ÏÔÏÂÒÁÚÉÔØ ÆÁÊÌ × ÐÁÍÑÔØ" #~ msgid "This binary was compiled with the following options:" @@ -2697,7 +2697,7 @@ msgstr "" #~ msgid "floating point exception" #~ msgstr "ÉÓËÌÀÞÅÎÉÅ ÁÒÉÆÍÅÔÉËÉ Ó ÐÌÁ×ÁÀÝÅÊ ÚÁÐÑÔÏÊ" -#~ msgid "can't set mem-checking!" +#~ msgid "cannot set mem-checking!" #~ msgstr "ÎÅ ÍÏÇÕ ×ËÌÀÞÉÔØ ÐÒÏ×ÅÒËÕ ÐÁÍÑÔÉ" #, fuzzy @@ -2745,7 +2745,7 @@ msgstr "" #~ msgid "Huh? Not a Request: `%s'" #~ msgstr "á? îå úÁÐÒÏÓ: `%s'" -#~ msgid "can't find both ends of %s" +#~ msgid "cannot find both ends of %s" #~ msgstr "ÎÅ ÍÏÇÕ ÎÁÊÔÉ ÏÂÁ ËÏÎÃÁ Õ %s" #~ msgid "slur" @@ -2766,7 +2766,7 @@ msgstr "" #~ msgid "score does not have any columns" #~ msgstr "ÆÒÁÇÍÅÎÔ ÎÅ ÓÏÄÅÒÖÉÔ ÓÔÏÌÂÃÏ×" -#~ msgid "can't find start of chord tremolo" +#~ msgid "cannot find start of chord tremolo" #~ msgstr "ÎÅ ÎÁÊÄÕ ÎÁÞÁÌÏ ÔÒÅÍÏÌÏ ÁËËÏÒÄÁ" #~ msgid "already have a chord tremolo" @@ -2778,5 +2778,5 @@ msgstr "" #~ msgid "More than one music block" #~ msgstr "âÏÌÅÅ ÏÄÎÏÇÏ ÍÕÚÙËÁÌØÎÏÇÏ ÂÌÏËÁ" -#~ msgid "can't put stem tremolo on tuplet" +#~ msgid "cannot put stem tremolo on tuplet" #~ msgstr "ÎÅ ÍÏÇÕ ÐÏÍÅÓÔÉÔØ ÛÔÉÌÅ×ÏÅ ÔÒÅÍÏÌÏ ÎÁ ÇÒÕÐÐÉÒÏ×ËÕ" diff --git a/po/rw.po b/po/rw.po index 2fef2c24dc..70846d6d30 100644 --- a/po/rw.po +++ b/po/rw.po @@ -180,12 +180,12 @@ msgstr "Inonosora" # sfx2/source\appl\app.src:STR_ERR_NOFILE.text #: convert-ly.py:279 source-file.cc:54 #, fuzzy, c-format, python-format -msgid "can't open file: `%s'" +msgid "cannot open file: `%s'" msgstr "Ntibishoboka gufungura idosiye$." #: convert-ly.py:286 #, fuzzy, python-format -msgid "can't determine version for `%s'. Skipping" +msgid "cannot determine version for `%s'. Skipping" msgstr "Imiterere kugirango" #: etf2ly.py:1198 @@ -346,7 +346,7 @@ msgstr "Hejuru Kuri Itariki" #: lilypond-book.py:1532 #, fuzzy, python-format -msgid "can't determine format for: %s" +msgid "cannot determine format for: %s" msgstr "Imiterere kugirango" #: lilypond-book.py:1543 @@ -548,7 +548,7 @@ msgstr "" #: all-font-metrics.cc:164 #, fuzzy, c-format -msgid "can't find font: `%s'" +msgid "cannot find font: `%s'" msgstr "Gushaka Intego- nyuguti" #: all-font-metrics.cc:165 @@ -558,7 +558,7 @@ msgstr "Mburabuzi Intego- nyuguti" #: all-font-metrics.cc:172 #, fuzzy, c-format -msgid "can't find default font: `%s'" +msgid "cannot find default font: `%s'" msgstr "Gushaka Mburabuzi Intego- nyuguti" #: all-font-metrics.cc:173 includable-lexer.cc:62 lily-parser-scheme.cc:108 @@ -578,7 +578,7 @@ msgstr "\\aUmumaro" #: auto-change-iterator.cc:62 change-iterator.cc:61 #, fuzzy, c-format -msgid "can't change, already in translator: %s" +msgid "cannot change, already in translator: %s" msgstr "Guhindura>> Kuri" #: axis-group-engraver.cc:82 @@ -647,13 +647,13 @@ msgstr "Isigamwanya Icyinjijwe Bivuye Kuri" #: change-iterator.cc:23 #, fuzzy, c-format -msgid "can't change `%s' to `%s'" +msgid "cannot change `%s' to `%s'" msgstr "Guhindura>> Kuri" #. FIXME: constant error message. #: change-iterator.cc:82 #, fuzzy -msgid "can't find context to switch to" +msgid "cannot find context to switch to" msgstr "Gushaka Imvugiro" #. We could change the current translator's id, but that would make @@ -721,12 +721,12 @@ msgstr "" #: context.cc:151 #, fuzzy, c-format -msgid "can't find or create new `%s'" +msgid "cannot find or create new `%s'" msgstr "Gushaka Cyangwa Kurema" #: context.cc:213 #, fuzzy, c-format -msgid "can't find or create `%s' called `%s'" +msgid "cannot find or create `%s' called `%s'" msgstr "Gushaka Cyangwa Kurema" #: context.cc:276 @@ -736,7 +736,7 @@ msgstr "" #: context.cc:388 #, fuzzy, c-format -msgid "can't find or create: `%s'" +msgid "cannot find or create: `%s'" msgstr "Gushaka Cyangwa Kurema" #: custos.cc:77 @@ -755,7 +755,7 @@ msgstr "Kitazwi IMISUSIRE" #: dynamic-engraver.cc:186 span-dynamic-performer.cc:87 #, fuzzy -msgid "can't find start of (de)crescendo" +msgid "cannot find start of (de)crescendo" msgstr "Gushaka Gutangira Bya" #: dynamic-engraver.cc:195 @@ -843,12 +843,12 @@ msgstr "S Kyongewe" #. ligature may not start with 2nd head of pes or flexa #: gregorian-ligature-engraver.cc:212 #, fuzzy -msgid "can't apply `\\~' on first head of ligature" +msgid "cannot apply `\\~' on first head of ligature" msgstr "Gushaka Gutangira Bya" #. (pitch == prev_pitch) #: gregorian-ligature-engraver.cc:224 -msgid "can't apply `\\~' on heads with identical pitch" +msgid "cannot apply `\\~' on heads with identical pitch" msgstr "" #: grob-interface.cc:48 @@ -904,7 +904,7 @@ msgstr "Gushyiramo Idosiye OYA" #: includable-lexer.cc:60 lily-guile.cc:96 lily-parser-scheme.cc:115 #, fuzzy, c-format -msgid "can't find file: `%s'" +msgid "cannot find file: `%s'" msgstr "Gushaka IDOSIYE" #: input.cc:112 source-file.cc:168 source-file.cc:183 @@ -914,7 +914,7 @@ msgstr "Ibirindiro Kitazwi" #: ligature-engraver.cc:95 #, fuzzy -msgid "can't find start of ligature" +msgid "cannot find start of ligature" msgstr "Gushaka Gutangira Bya" #: ligature-engraver.cc:100 @@ -952,7 +952,7 @@ msgstr "(Ibirimo Inzira" #: lily-guile.cc:439 #, fuzzy, c-format -msgid "can't find property type-check for `%s' (%s)." +msgid "cannot find property type-check for `%s' (%s)." msgstr "Gushaka indangakintu Ubwoko Kugenzura... kugirango" #: lily-guile.cc:442 @@ -992,7 +992,7 @@ msgstr "" #: lily-parser-scheme.cc:107 #, fuzzy, c-format -msgid "can't find init file: `%s'" +msgid "cannot find init file: `%s'" msgstr "Gushaka IDOSIYE" # svtools/source\dialogs\prnsetup.src:STR_SVT_PRNDLG_PROCESSING.text @@ -1227,7 +1227,7 @@ msgstr "Oya Igenamiterere" #: main.cc:324 #, c-format -msgid "can't get user id from user name: %s: %s" +msgid "cannot get user id from user name: %s: %s" msgstr "" #: main.cc:339 @@ -1237,27 +1237,27 @@ msgstr "Oya Imvugiro" #: main.cc:341 #, fuzzy, c-format -msgid "can't get group id from group name: %s: %s" +msgid "cannot get group id from group name: %s: %s" msgstr "Guhindura>> Kuri" #: main.cc:349 #, c-format -msgid "can't chroot to: %s: %s" +msgid "cannot chroot to: %s: %s" msgstr "" #: main.cc:356 #, fuzzy, c-format -msgid "can't change group id to: %d: %s" +msgid "cannot change group id to: %d: %s" msgstr "Guhindura>> Kuri" #: main.cc:362 #, fuzzy, c-format -msgid "can't change user id to: %d: %s" +msgid "cannot change user id to: %d: %s" msgstr "Guhindura>> Kuri" #: main.cc:368 #, c-format -msgid "can't change working directory to: %s: %s" +msgid "cannot change working directory to: %s: %s" msgstr "" #: main.cc:415 @@ -1354,12 +1354,12 @@ msgstr "Bya a" # sfx2/source\appl\app.src:STR_ERR_NOFILE.text #: midi-stream.cc:28 #, fuzzy, c-format -msgid "can't open for write: %s: %s" +msgid "cannot open for write: %s: %s" msgstr "Ntibishoboka gufungura idosiye$." #: midi-stream.cc:44 #, fuzzy, c-format -msgid "can't write to file: `%s'" +msgid "cannot write to file: `%s'" msgstr "OYA Kwandika IDOSIYE" #: music-iterator.cc:172 @@ -1377,7 +1377,7 @@ msgid "transposition by %s makes alteration larger than double" msgstr "ku Kinini" #: new-fingering-engraver.cc:87 -msgid "can't add text scripts to individual note heads" +msgid "cannot add text scripts to individual note heads" msgstr "" #: new-fingering-engraver.cc:246 @@ -1394,7 +1394,7 @@ msgid "ignoring too many clashing note columns" msgstr "Kwirengagiza" #: note-column.cc:123 -msgid "can't have note heads and rests together on a stem" +msgid "cannot have note heads and rests together on a stem" msgstr "" #: note-head.cc:69 @@ -1409,12 +1409,12 @@ msgstr "" # sfx2/source\appl\app.src:STR_ERR_NOFILE.text #: open-type-font.cc:33 #, fuzzy, c-format -msgid "can't allocate %lu bytes" +msgid "cannot allocate %lu bytes" msgstr "Ntibishoboka gufungura idosiye$." #: open-type-font.cc:37 #, fuzzy, c-format -msgid "can't load font table: %s" +msgid "cannot load font table: %s" msgstr "Gushaka Intego- nyuguti" #: open-type-font.cc:96 @@ -1515,12 +1515,12 @@ msgstr "3. Ikurikiranyanyuguti kugirango" #: piano-pedal-engraver.cc:319 piano-pedal-engraver.cc:330 #: piano-pedal-performer.cc:93 #, fuzzy, c-format -msgid "can't find start of piano pedal: `%s'" +msgid "cannot find start of piano pedal: `%s'" msgstr "Gushaka Gutangira Bya" #: piano-pedal-engraver.cc:377 #, fuzzy, c-format -msgid "can't find start of piano pedal bracket: `%s'" +msgid "cannot find start of piano pedal bracket: `%s'" msgstr "Gushaka Gutangira Bya" #: program-option.cc:195 @@ -1594,7 +1594,7 @@ msgstr "Ntibishoboka gufungura idosiye$." # sfx2/source\appl\app.src:STR_ERR_NOFILE.text #: relocate.cc:358 #, fuzzy, c-format -msgid "can't open file %s" +msgid "cannot open file %s" msgstr "Ntibishoboka gufungura idosiye$." #: relocate.cc:388 @@ -1603,7 +1603,7 @@ msgid "Unknown relocation command %s" msgstr "" #: rest-collision.cc:150 -msgid "can't resolve rest collision: rest direction not set" +msgid "cannot resolve rest collision: rest direction not set" msgstr "" #: rest-collision.cc:164 rest-collision.cc:209 @@ -1669,7 +1669,7 @@ msgstr "" #: slur-engraver.cc:165 #, fuzzy -msgid "can't end slur" +msgid "cannot end slur" msgstr "Gushaka" #: source-file.cc:74 @@ -1723,7 +1723,7 @@ msgstr "IBARA" #: text-spanner-engraver.cc:60 #, fuzzy -msgid "can't find start of text spanner" +msgid "cannot find start of text spanner" msgstr "Gushaka Gutangira Bya Umwandiko" #: text-spanner-engraver.cc:72 @@ -1764,7 +1764,7 @@ msgstr "Kitazwi Umusemuzi" #: translator-group.cc:152 #, fuzzy, c-format -msgid "can't find: `%s'" +msgid "cannot find: `%s'" msgstr "Gushaka" #: translator.cc:310 @@ -1779,7 +1779,7 @@ msgstr "" #: trill-spanner-engraver.cc:67 #, fuzzy -msgid "can't find start of trill spanner" +msgid "cannot find start of trill spanner" msgstr "Gushaka Gutangira Bya Umwandiko" #: trill-spanner-engraver.cc:79 @@ -1820,7 +1820,7 @@ msgstr "Zeru 0" #. fixme: be more verbose. #: volta-engraver.cc:143 #, fuzzy -msgid "can't end volta spanner" +msgid "cannot end volta spanner" msgstr "Gushaka Gutangira Bya Umwandiko" #: volta-engraver.cc:153 @@ -2008,7 +2008,7 @@ msgstr "" #: define-music-types.scm:737 #, fuzzy, lisp-format -msgid "can't find music object: ~S" +msgid "cannot find music object: ~S" msgstr "Gushaka" #: define-music-types.scm:757 @@ -2027,7 +2027,7 @@ msgstr "" #: document-backend.scm:135 #, fuzzy, lisp-format -msgid "can't find interface for property: ~S" +msgid "cannot find interface for property: ~S" msgstr "Gushaka Mburabuzi Intego- nyuguti" #: document-backend.scm:145 @@ -2047,7 +2047,7 @@ msgstr "" #: documentation-lib.scm:172 #, fuzzy, lisp-format -msgid "can't find description for property ~S (~S)" +msgid "cannot find description for property ~S (~S)" msgstr "Gushaka Mburabuzi Intego- nyuguti" #: framework-eps.scm:77 framework-eps.scm:78 @@ -2057,12 +2057,12 @@ msgstr "Inonosora..." #: framework-ps.scm:278 #, lisp-format -msgid "can't embed ~S=~S" +msgid "cannot embed ~S=~S" msgstr "" #: framework-ps.scm:331 #, lisp-format -msgid "can't extract file matching ~a from ~a" +msgid "cannot extract file matching ~a from ~a" msgstr "" #: framework-ps.scm:348 @@ -2077,12 +2077,12 @@ msgstr "Kuri" #: framework-ps.scm:610 #, lisp-format -msgid "can't convert to ~S" +msgid "cannot convert to ~S" msgstr "" #: framework-ps.scm:629 framework-ps.scm:632 #, lisp-format -msgid "can't generate ~S using the postscript back-end" +msgid "cannot generate ~S using the postscript back-end" msgstr "" #: framework-ps.scm:639 @@ -2190,7 +2190,7 @@ msgstr "" #: music-functions.scm:745 #, fuzzy, lisp-format -msgid "can't find quoted music `~S'" +msgid "cannot find quoted music `~S'" msgstr "Gushaka" #: music-functions.scm:953 @@ -2209,12 +2209,12 @@ msgstr "" #: output-svg.scm:132 #, lisp-format -msgid "can't decypher Pango description: ~a" +msgid "cannot decypher Pango description: ~a" msgstr "" #: output-tex.scm:98 #, fuzzy, lisp-format -msgid "can't find ~a in ~a" +msgid "cannot find ~a in ~a" msgstr "Gushaka Gutangira Bya" #: paper.scm:69 @@ -2274,7 +2274,7 @@ msgstr "Byanze" #~ msgstr "Oya Kuri Gucapa a Gusubiramo" #, fuzzy -#~ msgid "can't find `%s' context" +#~ msgid "cannot find `%s' context" #~ msgstr "Gushaka Imvugiro" #, fuzzy @@ -2312,7 +2312,7 @@ msgstr "Byanze" #~ msgstr "%s:IDOSIYE Ibigenga ni Birenzeho i" #, fuzzy -#~ msgid "can't find ascii character: %d" +#~ msgid "cannot find ascii character: %d" #~ msgstr "Gushaka ASCII Inyuguti" #, fuzzy @@ -2328,7 +2328,7 @@ msgstr "Byanze" #~ msgstr "Inyuguti" #, fuzzy -#~ msgid "can't find signature for music function" +#~ msgid "cannot find signature for music function" #~ msgstr "Gushaka Imvugiro" #, fuzzy @@ -2395,7 +2395,7 @@ msgstr "Byanze" # sfx2/source\appl\app.src:STR_ERR_NOFILE.text #, fuzzy -#~ msgid "can't dlopen: %s: %s" +#~ msgid "cannot dlopen: %s: %s" #~ msgstr "Ntibishoboka gufungura idosiye$." #, fuzzy @@ -2437,7 +2437,7 @@ msgstr "Byanze" #~ msgstr "Gukoresha in Ubwoko" #, fuzzy -#~ msgid "can't handle a percent repeat of length: %s" +#~ msgid "cannot handle a percent repeat of length: %s" #~ msgstr "Kuri a Ku ijana Gusubiramo Bya iyi Uburebure" #, fuzzy @@ -2515,7 +2515,7 @@ msgstr "Byanze" #~ msgstr "Ikosa" #, fuzzy -#~ msgid "can't find CFF/PFA/PFB font ~S=~S" +#~ msgid "cannot find CFF/PFA/PFB font ~S=~S" #~ msgstr "Gushaka Intego- nyuguti" #, fuzzy @@ -2705,7 +2705,7 @@ msgstr "Byanze" #~ msgstr "%sIbisohoka Kuri" #, fuzzy -#~ msgid "can't find file: `%s.%s'" +#~ msgid "cannot find file: `%s.%s'" #~ msgstr "Gushaka IDOSIYE" #, fuzzy @@ -2820,7 +2820,7 @@ msgstr "Byanze" #~ msgstr "urupapuro Ibisohoka Kuri" #, fuzzy -#~ msgid "can't find start of phrasing slur" +#~ msgid "cannot find start of phrasing slur" #~ msgstr "Gushaka Gutangira Bya" #, fuzzy diff --git a/po/sv.po b/po/sv.po index 7a7100036a..f13192c32e 100644 --- a/po/sv.po +++ b/po/sv.po @@ -166,12 +166,12 @@ msgstr "Behandlar \"%s\"..." #: convert-ly.py:279 source-file.cc:54 #, c-format, python-format -msgid "can't open file: `%s'" +msgid "cannot open file: `%s'" msgstr "kan inte öppna fil: \"%s\"" #: convert-ly.py:286 #, fuzzy, python-format -msgid "can't determine version for `%s'. Skipping" +msgid "cannot determine version for `%s'. Skipping" msgstr "kan inte hitta standardtypsnitt: \"%s\"" #: etf2ly.py:1198 @@ -326,7 +326,7 @@ msgstr "lugn, %s #: lilypond-book.py:1532 #, fuzzy, python-format -msgid "can't determine format for: %s" +msgid "cannot determine format for: %s" msgstr "kan inte hitta standardtypsnitt: \"%s\"" #: lilypond-book.py:1543 @@ -521,7 +521,7 @@ msgstr "" #: all-font-metrics.cc:164 #, c-format -msgid "can't find font: `%s'" +msgid "cannot find font: `%s'" msgstr "kan inte hitta typsnitt: \"%s\"" #: all-font-metrics.cc:165 @@ -531,7 +531,7 @@ msgstr "L #: all-font-metrics.cc:172 #, c-format -msgid "can't find default font: `%s'" +msgid "cannot find default font: `%s'" msgstr "kan inte hitta standardtypsnitt: \"%s\"" #: all-font-metrics.cc:173 includable-lexer.cc:62 lily-parser-scheme.cc:108 @@ -550,7 +550,7 @@ msgstr "" #: auto-change-iterator.cc:62 change-iterator.cc:61 #, fuzzy, c-format -msgid "can't change, already in translator: %s" +msgid "cannot change, already in translator: %s" msgstr "kan inte ändra \"%s\" till \"%s\"" #: axis-group-engraver.cc:82 @@ -615,13 +615,13 @@ msgstr "Ingen avst #: change-iterator.cc:23 #, fuzzy, c-format -msgid "can't change `%s' to `%s'" +msgid "cannot change `%s' to `%s'" msgstr "kan inte ändra \"%s\" till \"%s\"" #. FIXME: constant error message. #: change-iterator.cc:82 #, fuzzy -msgid "can't find context to switch to" +msgid "cannot find context to switch to" msgstr "kan inte hitta omgivningen \"%s\"" #. We could change the current translator's id, but that would make @@ -690,12 +690,12 @@ msgstr "" #: context.cc:151 #, fuzzy, c-format -msgid "can't find or create new `%s'" +msgid "cannot find or create new `%s'" msgstr "kan inte hitta eller skapa: \"%s\"" #: context.cc:213 #, fuzzy, c-format -msgid "can't find or create `%s' called `%s'" +msgid "cannot find or create `%s' called `%s'" msgstr "kan inte hitta eller skapa \"%s\" kallad \"%s\"" #: context.cc:276 @@ -705,7 +705,7 @@ msgstr "" #: context.cc:388 #, c-format -msgid "can't find or create: `%s'" +msgid "cannot find or create: `%s'" msgstr "kan inte hitta eller skapa: \"%s\"" #: custos.cc:77 @@ -723,7 +723,7 @@ msgid "Unknown event class %s" msgstr "okänd klusterstil: \"%s\"" #: dynamic-engraver.cc:186 span-dynamic-performer.cc:87 -msgid "can't find start of (de)crescendo" +msgid "cannot find start of (de)crescendo" msgstr "kan inte hitta start på crescendo/diminuendo" #: dynamic-engraver.cc:195 @@ -811,12 +811,12 @@ msgstr "implicit \\%s tillagt" #. ligature may not start with 2nd head of pes or flexa #: gregorian-ligature-engraver.cc:212 #, fuzzy -msgid "can't apply `\\~' on first head of ligature" +msgid "cannot apply `\\~' on first head of ligature" msgstr "kan inte hitta start på ligatur" #. (pitch == prev_pitch) #: gregorian-ligature-engraver.cc:224 -msgid "can't apply `\\~' on heads with identical pitch" +msgid "cannot apply `\\~' on heads with identical pitch" msgstr "" #: grob-interface.cc:48 @@ -871,7 +871,7 @@ msgstr "" #: includable-lexer.cc:60 lily-guile.cc:96 lily-parser-scheme.cc:115 #, c-format -msgid "can't find file: `%s'" +msgid "cannot find file: `%s'" msgstr "kan inte hitta fil: \"%s\"" #: input.cc:112 source-file.cc:168 source-file.cc:183 @@ -879,7 +879,7 @@ msgid "position unknown" msgstr "okänd position" #: ligature-engraver.cc:95 -msgid "can't find start of ligature" +msgid "cannot find start of ligature" msgstr "kan inte hitta start på ligatur" #: ligature-engraver.cc:100 @@ -914,7 +914,7 @@ msgstr "(inl #: lily-guile.cc:439 #, fuzzy, c-format -msgid "can't find property type-check for `%s' (%s)." +msgid "cannot find property type-check for `%s' (%s)." msgstr "Kan inte hitta egenskapstypkontroll för \"%s\" (%s)" #: lily-guile.cc:442 @@ -955,7 +955,7 @@ msgstr "kan inte skapa katalog: \"%s\"" #: lily-parser-scheme.cc:107 #, fuzzy, c-format -msgid "can't find init file: `%s'" +msgid "cannot find init file: `%s'" msgstr "kan inte hitta fil: \"%s\"" #: lily-parser-scheme.cc:125 @@ -1200,7 +1200,7 @@ msgstr "inst #: main.cc:324 #, c-format -msgid "can't get user id from user name: %s: %s" +msgid "cannot get user id from user name: %s: %s" msgstr "" #: main.cc:339 @@ -1210,27 +1210,27 @@ msgstr "omgivning finns inte: %s" #: main.cc:341 #, fuzzy, c-format -msgid "can't get group id from group name: %s: %s" +msgid "cannot get group id from group name: %s: %s" msgstr "kan inte ändra \"%s\" till \"%s\"" #: main.cc:349 #, fuzzy, c-format -msgid "can't chroot to: %s: %s" +msgid "cannot chroot to: %s: %s" msgstr "kan inte skapa katalog: \"%s\"" #: main.cc:356 #, fuzzy, c-format -msgid "can't change group id to: %d: %s" +msgid "cannot change group id to: %d: %s" msgstr "kan inte ändra \"%s\" till \"%s\"" #: main.cc:362 #, fuzzy, c-format -msgid "can't change user id to: %d: %s" +msgid "cannot change user id to: %d: %s" msgstr "kan inte ändra \"%s\" till \"%s\"" #: main.cc:368 #, fuzzy, c-format -msgid "can't change working directory to: %s: %s" +msgid "cannot change working directory to: %s: %s" msgstr "kan inte skapa katalog: \"%s\"" #: main.cc:415 @@ -1323,12 +1323,12 @@ msgstr "" #: midi-stream.cc:28 #, fuzzy, c-format -msgid "can't open for write: %s: %s" +msgid "cannot open for write: %s: %s" msgstr "kan inte öppna fil: \"%s\"" #: midi-stream.cc:44 #, fuzzy, c-format -msgid "can't write to file: `%s'" +msgid "cannot write to file: `%s'" msgstr "kan inte öppna fil: \"%s\"" #: music-iterator.cc:172 @@ -1346,7 +1346,7 @@ msgid "transposition by %s makes alteration larger than double" msgstr "Transponering med %s gör ändring större än två" #: new-fingering-engraver.cc:87 -msgid "can't add text scripts to individual note heads" +msgid "cannot add text scripts to individual note heads" msgstr "" #: new-fingering-engraver.cc:246 @@ -1363,7 +1363,7 @@ msgid "ignoring too many clashing note columns" msgstr "För många krockande notkolumner. Ignorerar dem." #: note-column.cc:123 -msgid "can't have note heads and rests together on a stem" +msgid "cannot have note heads and rests together on a stem" msgstr "" #: note-head.cc:69 @@ -1377,12 +1377,12 @@ msgstr "" #: open-type-font.cc:33 #, fuzzy, c-format -msgid "can't allocate %lu bytes" +msgid "cannot allocate %lu bytes" msgstr "kan inte öppna fil: \"%s\"" #: open-type-font.cc:37 #, fuzzy, c-format -msgid "can't load font table: %s" +msgid "cannot load font table: %s" msgstr "kan inte hitta typsnitt: \"%s\"" #: open-type-font.cc:96 @@ -1482,12 +1482,12 @@ msgstr "" #: piano-pedal-engraver.cc:319 piano-pedal-engraver.cc:330 #: piano-pedal-performer.cc:93 #, c-format -msgid "can't find start of piano pedal: `%s'" +msgid "cannot find start of piano pedal: `%s'" msgstr "kan inte hitta start på pianopedal: \"%s\"" #: piano-pedal-engraver.cc:377 #, fuzzy, c-format -msgid "can't find start of piano pedal bracket: `%s'" +msgid "cannot find start of piano pedal bracket: `%s'" msgstr "kan inte hitta start på pianopedal: \"%s\"" #: program-option.cc:195 @@ -1558,7 +1558,7 @@ msgstr "kan inte #: relocate.cc:358 #, fuzzy, c-format -msgid "can't open file %s" +msgid "cannot open file %s" msgstr "kan inte öppna fil: \"%s\"" #: relocate.cc:388 @@ -1567,7 +1567,7 @@ msgid "Unknown relocation command %s" msgstr "" #: rest-collision.cc:150 -msgid "can't resolve rest collision: rest direction not set" +msgid "cannot resolve rest collision: rest direction not set" msgstr "" #: rest-collision.cc:164 rest-collision.cc:209 @@ -1634,7 +1634,7 @@ msgstr "oavslutad b #: slur-engraver.cc:165 #, fuzzy -msgid "can't end slur" +msgid "cannot end slur" msgstr "kan inte hitta start på båge" #: source-file.cc:74 @@ -1686,7 +1686,7 @@ msgid "Grob count %d" msgstr "Elementantal %d " #: text-spanner-engraver.cc:60 -msgid "can't find start of text spanner" +msgid "cannot find start of text spanner" msgstr "kan inte hitta start på textbryggare" #: text-spanner-engraver.cc:72 @@ -1725,7 +1725,7 @@ msgstr "ok #: translator-group.cc:152 #, c-format -msgid "can't find: `%s'" +msgid "cannot find: `%s'" msgstr "kan inte hitta: \"%s\"" #: translator.cc:310 @@ -1740,7 +1740,7 @@ msgstr "" #: trill-spanner-engraver.cc:67 #, fuzzy -msgid "can't find start of trill spanner" +msgid "cannot find start of trill spanner" msgstr "kan inte hitta start på textbryggare" #: trill-spanner-engraver.cc:79 @@ -1781,7 +1781,7 @@ msgstr "Vaticana_ligature: (delta_pitch == 0)" #. fixme: be more verbose. #: volta-engraver.cc:143 #, fuzzy -msgid "can't end volta spanner" +msgid "cannot end volta spanner" msgstr "kan inte hitta start på textbryggare" #: volta-engraver.cc:153 @@ -1966,7 +1966,7 @@ msgstr "" #: define-music-types.scm:737 #, fuzzy, lisp-format -msgid "can't find music object: ~S" +msgid "cannot find music object: ~S" msgstr "kan inte hitta omgivningen \"%s\"" #: define-music-types.scm:757 @@ -1985,7 +1985,7 @@ msgstr "" #: document-backend.scm:135 #, fuzzy, lisp-format -msgid "can't find interface for property: ~S" +msgid "cannot find interface for property: ~S" msgstr "kan inte hitta teckennummer: %d" #: document-backend.scm:145 @@ -2005,7 +2005,7 @@ msgstr "Skriver \"%s\"..." #: documentation-lib.scm:172 #, fuzzy, lisp-format -msgid "can't find description for property ~S (~S)" +msgid "cannot find description for property ~S (~S)" msgstr "kan inte hitta teckennummer: %d" #: framework-eps.scm:77 framework-eps.scm:78 @@ -2015,12 +2015,12 @@ msgstr "Skriver \"%s\"..." #: framework-ps.scm:278 #, lisp-format -msgid "can't embed ~S=~S" +msgid "cannot embed ~S=~S" msgstr "" #: framework-ps.scm:331 #, lisp-format -msgid "can't extract file matching ~a from ~a" +msgid "cannot extract file matching ~a from ~a" msgstr "" #: framework-ps.scm:348 @@ -2035,12 +2035,12 @@ msgstr "Kan inte tolka artikulering \"%s\"" #: framework-ps.scm:610 #, lisp-format -msgid "can't convert to ~S" +msgid "cannot convert to ~S" msgstr "" #: framework-ps.scm:629 framework-ps.scm:632 #, lisp-format -msgid "can't generate ~S using the postscript back-end" +msgid "cannot generate ~S using the postscript back-end" msgstr "" #: framework-ps.scm:639 @@ -2150,7 +2150,7 @@ msgstr "" #: music-functions.scm:745 #, fuzzy, lisp-format -msgid "can't find quoted music `~S'" +msgid "cannot find quoted music `~S'" msgstr "kan inte hitta typsnitt: \"%s\"" #: music-functions.scm:953 @@ -2169,12 +2169,12 @@ msgstr "" #: output-svg.scm:132 #, lisp-format -msgid "can't decypher Pango description: ~a" +msgid "cannot decypher Pango description: ~a" msgstr "" #: output-tex.scm:98 #, fuzzy, lisp-format -msgid "can't find ~a in ~a" +msgid "cannot find ~a in ~a" msgstr "kan inte hitta start på balk" #: paper.scm:69 @@ -2238,7 +2238,7 @@ msgstr "LaTeX misslyckades." #~ msgid "no one to print a repeat brace" #~ msgstr "det finns ingen som kan skriva ett repristecken" -#~ msgid "can't find `%s' context" +#~ msgid "cannot find `%s' context" #~ msgstr "kan inte hitta omgivningen \"%s\"" #~ msgid "Optimal demerits: %f" @@ -2276,7 +2276,7 @@ msgstr "LaTeX misslyckades." #~ msgstr "" #~ "%s: TFM-fil har %u parametrar, vilket är mer än de %u jag kan hantera" -#~ msgid "can't find ascii character: %d" +#~ msgid "cannot find ascii character: %d" #~ msgstr "kan inte hitta ASCII-tecken: %d" #~ msgid "no one to print a tuplet start bracket" @@ -2295,7 +2295,7 @@ msgstr "LaTeX misslyckades." #~ msgstr "Fler alternativ än repriser. Slänger överblivna alternativ." #, fuzzy -#~ msgid "can't find signature for music function" +#~ msgid "cannot find signature for music function" #~ msgstr "kan inte hitta omgivningen \"%s\"" #~ msgid "lilylib module" @@ -2372,7 +2372,7 @@ msgstr "LaTeX misslyckades." #~ msgstr "Skriver \"%s\"..." #, fuzzy -#~ msgid "can't dlopen: %s: %s" +#~ msgid "cannot dlopen: %s: %s" #~ msgstr "kan inte öppna fil: \"%s\"" #, fuzzy @@ -2409,7 +2409,7 @@ msgstr "LaTeX misslyckades." #~ msgstr "kan inte skapa katalog: \"%s\"" #, fuzzy -#~ msgid "can't handle a percent repeat of length: %s" +#~ msgid "cannot handle a percent repeat of length: %s" #~ msgstr "Vet inte hur en procentrepris av denna längd ska hanteras." #~ msgid "lilypond -e EXPR means:" @@ -2479,7 +2479,7 @@ msgstr "LaTeX misslyckades." #~ msgstr "icke-fatalt fel: " #, fuzzy -#~ msgid "can't find CFF/PFA/PFB font ~S=~S" +#~ msgid "cannot find CFF/PFA/PFB font ~S=~S" #~ msgstr "kan inte hitta typsnitt: \"%s\"" #, fuzzy @@ -2558,11 +2558,11 @@ msgstr "LaTeX misslyckades." #~ msgstr "FIXA: tonartsbytessammanslagning" #, fuzzy -#~ msgid "kpathsea can't find %s file: `%s'" +#~ msgid "kpathsea cannot find %s file: `%s'" #~ msgstr "Kpathsea kan inte hitta TFML-fil \"%s\"" #, fuzzy -#~ msgid "kpathsea can't find file: `%s'" +#~ msgid "kpathsea cannot find file: `%s'" #~ msgstr "Kpathsea kan inte hitta TFML-fil \"%s\"" #, fuzzy @@ -2699,7 +2699,7 @@ msgstr "LaTeX misslyckades." #~ msgstr "%s skrivet till \"%s\"..." #, fuzzy -#~ msgid "can't find file: `%s.%s'" +#~ msgid "cannot find file: `%s.%s'" #~ msgstr "kan inte hitta fil: \"%s\"" #~ msgid " 1998--2005" @@ -2898,7 +2898,7 @@ msgstr "LaTeX misslyckades." #~ msgid "from musical definition: %s" #~ msgstr "från musikdefinition: %s" -#~ msgid "can't find start of phrasing slur" +#~ msgid "cannot find start of phrasing slur" #~ msgstr "kan inte hitta start på fraseringsbåge" #~ msgid "unterminated pedal bracket" @@ -2999,7 +2999,7 @@ msgstr "LaTeX misslyckades." #~ msgstr "EOF i en sträng" # det handlar om mmap här -#~ msgid "can't map file" +#~ msgid "cannot map file" #~ msgstr "kan inte göra \"mmap\" på filen" #~ msgid "" @@ -3193,7 +3193,7 @@ msgstr "LaTeX misslyckades." #~ msgid "invalid number of tracks" #~ msgstr "ogiltigt antal spår" -#~ msgid "can't handle non-metrical time" +#~ msgid "cannot handle non-metrical time" #~ msgstr "kan inte hantera icke-metrisk tid" #~ msgid "Junking note-end event: channel = %d, pitch = %d" diff --git a/po/tr.po b/po/tr.po index a6321e4428..6d758d33eb 100644 --- a/po/tr.po +++ b/po/tr.po @@ -168,12 +168,12 @@ msgstr "`%s' işleniyor..." #: convert-ly.py:279 source-file.cc:54 #, c-format, python-format -msgid "can't open file: `%s'" +msgid "cannot open file: `%s'" msgstr "dosya açılamıyor: `%s'" #: convert-ly.py:286 #, fuzzy, python-format -msgid "can't determine version for `%s'. Skipping" +msgid "cannot determine version for `%s'. Skipping" msgstr "%s için biçem saptanamıyor" #: etf2ly.py:1198 @@ -331,7 +331,7 @@ msgstr "Bütün küçük parçalar güncellenmiştir..." #: lilypond-book.py:1532 #, fuzzy, python-format -msgid "can't determine format for: %s" +msgid "cannot determine format for: %s" msgstr "%s için biçem saptanamıyor" #: lilypond-book.py:1543 @@ -525,7 +525,7 @@ msgstr "" #: all-font-metrics.cc:164 #, c-format -msgid "can't find font: `%s'" +msgid "cannot find font: `%s'" msgstr "yazı tipi bulunamıyor: `%s'" #: all-font-metrics.cc:165 @@ -535,7 +535,7 @@ msgstr "Öntanımlı yazı tipi yükleniyor " #: all-font-metrics.cc:172 #, c-format -msgid "can't find default font: `%s'" +msgid "cannot find default font: `%s'" msgstr "öntanımlı yazı tipi bulunamıyor: `%s'" #: all-font-metrics.cc:173 includable-lexer.cc:62 lily-parser-scheme.cc:108 @@ -554,7 +554,7 @@ msgstr "\\applycontext (uygulamabağlamı) argümanı bir işlev değil" #: auto-change-iterator.cc:62 change-iterator.cc:61 #, fuzzy, c-format -msgid "can't change, already in translator: %s" +msgid "cannot change, already in translator: %s" msgstr "`%s' `%s'ye dönüştürülemiyor " #: axis-group-engraver.cc:82 @@ -621,13 +621,13 @@ msgstr "%s'den `%sy'e kadar hiçbir boşluk girişi yok" #: change-iterator.cc:23 #, c-format -msgid "can't change `%s' to `%s'" +msgid "cannot change `%s' to `%s'" msgstr "`%s' `%s'ye dönüştürülemiyor " #. FIXME: constant error message. #: change-iterator.cc:82 #, fuzzy -msgid "can't find context to switch to" +msgid "cannot find context to switch to" msgstr "`%s'nin bağlamı bulunamıyor" #. We could change the current translator's id, but that would make @@ -696,12 +696,12 @@ msgstr "" #: context.cc:151 #, fuzzy, c-format -msgid "can't find or create new `%s'" +msgid "cannot find or create new `%s'" msgstr "`%2$s' adlı`%1$s' bulunamıyor ya da oluşturulamıyor" #: context.cc:213 #, fuzzy, c-format -msgid "can't find or create `%s' called `%s'" +msgid "cannot find or create `%s' called `%s'" msgstr "`%2$s' adlı`%1$s' bulunamıyor ya da oluşturulamıyor" #: context.cc:276 @@ -711,7 +711,7 @@ msgstr "" #: context.cc:388 #, c-format -msgid "can't find or create: `%s'" +msgid "cannot find or create: `%s'" msgstr "bulunamıyor ya da oluşturulamıyor: `%s'" #: custos.cc:77 @@ -729,7 +729,7 @@ msgid "Unknown event class %s" msgstr "Bilinmeyen arabirim `%s'" #: dynamic-engraver.cc:186 span-dynamic-performer.cc:87 -msgid "can't find start of (de)crescendo" +msgid "cannot find start of (de)crescendo" msgstr "(de)kreşendonun başlangıcı bulunamıyor" #: dynamic-engraver.cc:195 @@ -816,12 +816,12 @@ msgstr "örtük \\%s eklendi" #. ligature may not start with 2nd head of pes or flexa #: gregorian-ligature-engraver.cc:212 #, fuzzy -msgid "can't apply `\\~' on first head of ligature" +msgid "cannot apply `\\~' on first head of ligature" msgstr "bağın başlangıcı bulunamıyor" #. (pitch == prev_pitch) #: gregorian-ligature-engraver.cc:224 -msgid "can't apply `\\~' on heads with identical pitch" +msgid "cannot apply `\\~' on heads with identical pitch" msgstr "" #: grob-interface.cc:48 @@ -874,7 +874,7 @@ msgstr "güvenli kipte dosyaların içerilmesine izin verilmiyor" #: includable-lexer.cc:60 lily-guile.cc:96 lily-parser-scheme.cc:115 #, c-format -msgid "can't find file: `%s'" +msgid "cannot find file: `%s'" msgstr "dosya bulunamıyor: `%s'" #: input.cc:112 source-file.cc:168 source-file.cc:183 @@ -882,7 +882,7 @@ msgid "position unknown" msgstr "konum bilinmiyor" #: ligature-engraver.cc:95 -msgid "can't find start of ligature" +msgid "cannot find start of ligature" msgstr "bağın başlangıcı bulunamıyor" #: ligature-engraver.cc:100 @@ -916,7 +916,7 @@ msgstr "(yolu yükle: `%s')" #: lily-guile.cc:439 #, fuzzy, c-format -msgid "can't find property type-check for `%s' (%s)." +msgid "cannot find property type-check for `%s' (%s)." msgstr "`%s' (%s) için nitelik tür-denetimi bulunamıyor." #: lily-guile.cc:442 @@ -958,7 +958,7 @@ msgstr "" #: lily-parser-scheme.cc:107 #, c-format -msgid "can't find init file: `%s'" +msgid "cannot find init file: `%s'" msgstr "init dosyası bulunamıyor: `%s'" #: lily-parser-scheme.cc:125 @@ -1202,7 +1202,7 @@ msgstr "böyle bir ayar yok: `%s'" #: main.cc:324 #, c-format -msgid "can't get user id from user name: %s: %s" +msgid "cannot get user id from user name: %s: %s" msgstr "" #: main.cc:339 @@ -1212,27 +1212,27 @@ msgstr "böyle bir bağlam yok: %s" #: main.cc:341 #, fuzzy, c-format -msgid "can't get group id from group name: %s: %s" +msgid "cannot get group id from group name: %s: %s" msgstr "`%s' `%s'ye dönüştürülemiyor " #: main.cc:349 #, c-format -msgid "can't chroot to: %s: %s" +msgid "cannot chroot to: %s: %s" msgstr "" #: main.cc:356 #, fuzzy, c-format -msgid "can't change group id to: %d: %s" +msgid "cannot change group id to: %d: %s" msgstr "`%s' `%s'ye dönüştürülemiyor " #: main.cc:362 #, fuzzy, c-format -msgid "can't change user id to: %d: %s" +msgid "cannot change user id to: %d: %s" msgstr "`%s' `%s'ye dönüştürülemiyor " #: main.cc:368 #, c-format -msgid "can't change working directory to: %s: %s" +msgid "cannot change working directory to: %s: %s" msgstr "" #: main.cc:415 @@ -1325,12 +1325,12 @@ msgstr "Deneysel: geçici olarak bir kanala ince akort yapılıyor (%d cents)." #: midi-stream.cc:28 #, fuzzy, c-format -msgid "can't open for write: %s: %s" +msgid "cannot open for write: %s: %s" msgstr "dosya açılamıyor: `%s'" #: midi-stream.cc:44 #, fuzzy, c-format -msgid "can't write to file: `%s'" +msgid "cannot write to file: `%s'" msgstr "dosya yazılamıyor. `%s'" #: music-iterator.cc:172 @@ -1348,7 +1348,7 @@ msgid "transposition by %s makes alteration larger than double" msgstr "%s ile transpozisyon ikiden büyük değişikliğe yol açar" #: new-fingering-engraver.cc:87 -msgid "can't add text scripts to individual note heads" +msgid "cannot add text scripts to individual note heads" msgstr "" #: new-fingering-engraver.cc:246 @@ -1365,7 +1365,7 @@ msgid "ignoring too many clashing note columns" msgstr "Çatışan notasütunları çok fazla. Yok sayılıyor." #: note-column.cc:123 -msgid "can't have note heads and rests together on a stem" +msgid "cannot have note heads and rests together on a stem" msgstr "" #: note-head.cc:69 @@ -1379,12 +1379,12 @@ msgstr "" #: open-type-font.cc:33 #, fuzzy, c-format -msgid "can't allocate %lu bytes" +msgid "cannot allocate %lu bytes" msgstr "dosya açılamıyor: `%s'" #: open-type-font.cc:37 #, fuzzy, c-format -msgid "can't load font table: %s" +msgid "cannot load font table: %s" msgstr "yazı tipi bulunamıyor: `%s'" #: open-type-font.cc:96 @@ -1483,12 +1483,12 @@ msgstr "Piano pedalları için 3 dizgeye ihtiyaç duyar. Hiç pedal yapılmadı. #: piano-pedal-engraver.cc:319 piano-pedal-engraver.cc:330 #: piano-pedal-performer.cc:93 #, c-format -msgid "can't find start of piano pedal: `%s'" +msgid "cannot find start of piano pedal: `%s'" msgstr "piano pedalının başlangıcı bulunamıyor: `%s'" #: piano-pedal-engraver.cc:377 #, c-format -msgid "can't find start of piano pedal bracket: `%s'" +msgid "cannot find start of piano pedal bracket: `%s'" msgstr "piyano pedalı köşeli ayracının başlangıcı bulunamıyor: '%s'" #: program-option.cc:195 @@ -1559,7 +1559,7 @@ msgstr "dosya açılamıyor: `%s'" #: relocate.cc:358 #, fuzzy, c-format -msgid "can't open file %s" +msgid "cannot open file %s" msgstr "dosya açılamıyor: `%s'" #: relocate.cc:388 @@ -1568,7 +1568,7 @@ msgid "Unknown relocation command %s" msgstr "" #: rest-collision.cc:150 -msgid "can't resolve rest collision: rest direction not set" +msgid "cannot resolve rest collision: rest direction not set" msgstr "" #: rest-collision.cc:164 rest-collision.cc:209 @@ -1634,7 +1634,7 @@ msgstr "sonlandırılmamış ses kaydırma imi" #: slur-engraver.cc:165 #, fuzzy -msgid "can't end slur" +msgid "cannot end slur" msgstr "bulunamıyor: `%s'" #: source-file.cc:74 @@ -1686,7 +1686,7 @@ msgid "Grob count %d" msgstr "Grob sayısı %d" #: text-spanner-engraver.cc:60 -msgid "can't find start of text spanner" +msgid "cannot find start of text spanner" msgstr "metin anahtarının başlangıcı bulunamıyor" #: text-spanner-engraver.cc:72 @@ -1730,7 +1730,7 @@ msgstr "bilinmeyen çevirmen: `%s'" #: translator-group.cc:152 #, c-format -msgid "can't find: `%s'" +msgid "cannot find: `%s'" msgstr "bulunamıyor: `%s'" #: translator.cc:310 @@ -1745,7 +1745,7 @@ msgstr "" #: trill-spanner-engraver.cc:67 #, fuzzy -msgid "can't find start of trill spanner" +msgid "cannot find start of trill spanner" msgstr "metin anahtarının başlangıcı bulunamıyor" #: trill-spanner-engraver.cc:79 @@ -1786,7 +1786,7 @@ msgstr "Vaticana_bağ: sıfır bağlantı [delta_perde == 0]" #. fixme: be more verbose. #: volta-engraver.cc:143 #, fuzzy -msgid "can't end volta spanner" +msgid "cannot end volta spanner" msgstr "metin anahtarının başlangıcı bulunamıyor" #: volta-engraver.cc:153 @@ -1969,7 +1969,7 @@ msgstr "" #: define-music-types.scm:737 #, fuzzy, lisp-format -msgid "can't find music object: ~S" +msgid "cannot find music object: ~S" msgstr "Müzik bulunamıyor" #: define-music-types.scm:757 @@ -1988,7 +1988,7 @@ msgstr "" #: document-backend.scm:135 #, fuzzy, lisp-format -msgid "can't find interface for property: ~S" +msgid "cannot find interface for property: ~S" msgstr "öntanımlı yazı tipi bulunamıyor: `%s'" #: document-backend.scm:145 @@ -2008,7 +2008,7 @@ msgstr "`%s' yazılıyor..." #: documentation-lib.scm:172 #, fuzzy, lisp-format -msgid "can't find description for property ~S (~S)" +msgid "cannot find description for property ~S (~S)" msgstr "öntanımlı yazı tipi bulunamıyor: `%s'" #: framework-eps.scm:77 framework-eps.scm:78 @@ -2018,12 +2018,12 @@ msgstr "`%s' yazılıyor..." #: framework-ps.scm:278 #, lisp-format -msgid "can't embed ~S=~S" +msgid "cannot embed ~S=~S" msgstr "" #: framework-ps.scm:331 #, lisp-format -msgid "can't extract file matching ~a from ~a" +msgid "cannot extract file matching ~a from ~a" msgstr "" #: framework-ps.scm:348 @@ -2038,12 +2038,12 @@ msgstr "Sesletimin nasıl yorumlanacağı bilinmiyor: " #: framework-ps.scm:610 #, lisp-format -msgid "can't convert to ~S" +msgid "cannot convert to ~S" msgstr "" #: framework-ps.scm:629 framework-ps.scm:632 #, lisp-format -msgid "can't generate ~S using the postscript back-end" +msgid "cannot generate ~S using the postscript back-end" msgstr "" #: framework-ps.scm:639 @@ -2152,7 +2152,7 @@ msgstr "" #: music-functions.scm:745 #, fuzzy, lisp-format -msgid "can't find quoted music `~S'" +msgid "cannot find quoted music `~S'" msgstr "Müzik bulunamıyor" #: music-functions.scm:953 @@ -2171,14 +2171,14 @@ msgstr "" #: output-svg.scm:132 #, lisp-format -msgid "can't decypher Pango description: ~a" +msgid "cannot decypher Pango description: ~a" msgstr "" # How to shut up this warning, when Voice_devnull_engraver has # eaten start event? #: output-tex.scm:98 #, fuzzy, lisp-format -msgid "can't find ~a in ~a" +msgid "cannot find ~a in ~a" msgstr "ses kaydırma iminin başlangıcı bulunamıyor" #: paper.scm:69 @@ -2236,7 +2236,7 @@ msgstr "LaTeX başarısız oldu." #~ msgid "no one to print a repeat brace" #~ msgstr "bir tekrar ayracını yazdıracak kimse yok" -#~ msgid "can't find `%s' context" +#~ msgid "cannot find `%s' context" #~ msgstr "`%s'nin bağlamı bulunamıyor" #~ msgid "Optimal demerits: %f" @@ -2277,7 +2277,7 @@ msgstr "LaTeX başarısız oldu." #~ "%s: TFM dosyası %u değiştirgeye sahip ve bu başa çıkabileceğim %u'dan " #~ "fazla." -#~ msgid "can't find ascii character: %d" +#~ msgid "cannot find ascii character: %d" #~ msgstr "ascii karakteri bulunamıyor: %d" #~ msgid "no one to print a tuplet start bracket" @@ -2296,7 +2296,7 @@ msgstr "LaTeX başarısız oldu." #~ msgstr "Tekrarlardan çok seçenek. Kullanılmayan fazla seşenekler. " #, fuzzy -#~ msgid "can't find signature for music function" +#~ msgid "cannot find signature for music function" #~ msgstr "`%s'nin bağlamı bulunamıyor" #~ msgid "lilylib module" @@ -2376,7 +2376,7 @@ msgstr "LaTeX başarısız oldu." #~ msgstr "`%s' yazıldı" #, fuzzy -#~ msgid "can't dlopen: %s: %s" +#~ msgid "cannot dlopen: %s: %s" #~ msgstr "dosya açılamıyor: `%s'" #, fuzzy @@ -2413,7 +2413,7 @@ msgstr "LaTeX başarısız oldu." #~ msgstr "emniyetli kipte çalıştır" #, fuzzy -#~ msgid "can't handle a percent repeat of length: %s" +#~ msgid "cannot handle a percent repeat of length: %s" #~ msgstr "Bu uzunluktaki bir yüzde tekrarıyla nasıl baş edeceğini bilmiyor." #~ msgid "rest direction not set. Cannot resolve collision." @@ -2494,7 +2494,7 @@ msgstr "LaTeX başarısız oldu." #~ msgstr "hiçbir onulmaz hata yok: " #, fuzzy -#~ msgid "can't find CFF/PFA/PFB font ~S=~S" +#~ msgid "cannot find CFF/PFA/PFB font ~S=~S" #~ msgstr "yazı tipi bulunamıyor: `%s'" #, fuzzy @@ -2666,7 +2666,7 @@ msgstr "LaTeX başarısız oldu." #~ msgid "%s output to %s..." #~ msgstr "%s çıktısı %s'ye..." -#~ msgid "can't find file: `%s.%s'" +#~ msgid "cannot find file: `%s.%s'" #~ msgstr "dosya bulunamıyor: `%s.%s'" #~ msgid "NaN" @@ -2815,7 +2815,7 @@ msgstr "LaTeX başarısız oldu." #~ msgid "prepend DIR to dependencies" #~ msgstr "bağımlılıkların başına DÄ°ZÄ°N ekle" -#~ msgid "can't find start of phrasing slur" +#~ msgid "cannot find start of phrasing slur" #~ msgstr "" #~ "melodiyi ayrıştırarak çalan ses kaydırma iminin başlangıcı bulunamıyor" diff --git a/po/zh_TW.po b/po/zh_TW.po index 83d25f2b7d..3b3755c450 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -170,12 +170,12 @@ msgstr "正在處理 ‘%s’..." #: convert-ly.py:279 source-file.cc:54 #, c-format, python-format -msgid "can't open file: `%s'" +msgid "cannot open file: `%s'" msgstr "無法開啟檔案: ‘%s’" #: convert-ly.py:286 #, fuzzy, python-format -msgid "can't determine version for `%s'. Skipping" +msgid "cannot determine version for `%s'. Skipping" msgstr "%s: 無法決定 ‘%s’ 的版本" #: etf2ly.py:1198 @@ -326,7 +326,7 @@ msgstr "" #: lilypond-book.py:1532 #, python-format -msgid "can't determine format for: %s" +msgid "cannot determine format for: %s" msgstr "無法決定 %s 的格式" #: lilypond-book.py:1543 @@ -515,7 +515,7 @@ msgstr "" #: all-font-metrics.cc:164 #, c-format -msgid "can't find font: `%s'" +msgid "cannot find font: `%s'" msgstr "找不到字型:‘%s’" #: all-font-metrics.cc:165 @@ -524,7 +524,7 @@ msgstr "正在載入預設字型" #: all-font-metrics.cc:172 #, c-format -msgid "can't find default font: `%s'" +msgid "cannot find default font: `%s'" msgstr "找不到預設字型:‘%s’" #: all-font-metrics.cc:173 includable-lexer.cc:62 lily-parser-scheme.cc:108 @@ -542,7 +542,7 @@ msgstr "" #: auto-change-iterator.cc:62 change-iterator.cc:61 #, c-format -msgid "can't change, already in translator: %s" +msgid "cannot change, already in translator: %s" msgstr "" #: axis-group-engraver.cc:82 @@ -607,12 +607,12 @@ msgstr "" #: change-iterator.cc:23 #, c-format -msgid "can't change `%s' to `%s'" +msgid "cannot change `%s' to `%s'" msgstr "無法將 ‘%s’ 更改為 ‘%s’" #. FIXME: constant error message. #: change-iterator.cc:82 -msgid "can't find context to switch to" +msgid "cannot find context to switch to" msgstr "" #. We could change the current translator's id, but that would make @@ -679,12 +679,12 @@ msgstr "" #: context.cc:151 #, c-format -msgid "can't find or create new `%s'" +msgid "cannot find or create new `%s'" msgstr "" #: context.cc:213 #, c-format -msgid "can't find or create `%s' called `%s'" +msgid "cannot find or create `%s' called `%s'" msgstr "" #: context.cc:276 @@ -694,7 +694,7 @@ msgstr "" #: context.cc:388 #, c-format -msgid "can't find or create: `%s'" +msgid "cannot find or create: `%s'" msgstr "" #: custos.cc:77 @@ -712,7 +712,7 @@ msgid "Unknown event class %s" msgstr "" #: dynamic-engraver.cc:186 span-dynamic-performer.cc:87 -msgid "can't find start of (de)crescendo" +msgid "cannot find start of (de)crescendo" msgstr "漸強/漸弱符號沒有起點" #: dynamic-engraver.cc:195 @@ -796,12 +796,12 @@ msgstr "" #. ligature may not start with 2nd head of pes or flexa #: gregorian-ligature-engraver.cc:212 #, fuzzy -msgid "can't apply `\\~' on first head of ligature" +msgid "cannot apply `\\~' on first head of ligature" msgstr "找不到樂句線的起點" #. (pitch == prev_pitch) #: gregorian-ligature-engraver.cc:224 -msgid "can't apply `\\~' on heads with identical pitch" +msgid "cannot apply `\\~' on heads with identical pitch" msgstr "" #: grob-interface.cc:48 @@ -852,7 +852,7 @@ msgstr "安全模式中不允許再包含另一個檔案的內容" #: includable-lexer.cc:60 lily-guile.cc:96 lily-parser-scheme.cc:115 #, c-format -msgid "can't find file: `%s'" +msgid "cannot find file: `%s'" msgstr "找不到檔案: ‘%s’" #: input.cc:112 source-file.cc:168 source-file.cc:183 @@ -860,7 +860,7 @@ msgid "position unknown" msgstr "位置不明" #: ligature-engraver.cc:95 -msgid "can't find start of ligature" +msgid "cannot find start of ligature" msgstr "找不到樂句線的起點" #: ligature-engraver.cc:100 @@ -894,7 +894,7 @@ msgstr "(載入路徑:‘%s’)" #: lily-guile.cc:439 #, c-format -msgid "can't find property type-check for `%s' (%s)." +msgid "cannot find property type-check for `%s' (%s)." msgstr "" #: lily-guile.cc:442 @@ -932,7 +932,7 @@ msgstr "無法將工作目錄切換至: %s: %s" #: lily-parser-scheme.cc:107 #, c-format -msgid "can't find init file: `%s'" +msgid "cannot find init file: `%s'" msgstr "" #: lily-parser-scheme.cc:125 @@ -1159,7 +1159,7 @@ msgstr "%s 用戶不存在" #: main.cc:324 #, c-format -msgid "can't get user id from user name: %s: %s" +msgid "cannot get user id from user name: %s: %s" msgstr "無法從用戶名稱獲得 UID: %s: %s" #: main.cc:339 @@ -1169,27 +1169,27 @@ msgstr "%s 群組不存在" #: main.cc:341 #, c-format -msgid "can't get group id from group name: %s: %s" +msgid "cannot get group id from group name: %s: %s" msgstr "無法從群組名稱獲得 GID: %s: %s" #: main.cc:349 #, c-format -msgid "can't chroot to: %s: %s" +msgid "cannot chroot to: %s: %s" msgstr "" #: main.cc:356 #, c-format -msgid "can't change group id to: %d: %s" +msgid "cannot change group id to: %d: %s" msgstr "無法將 GID 更改為 %d: %s" #: main.cc:362 #, c-format -msgid "can't change user id to: %d: %s" +msgid "cannot change user id to: %d: %s" msgstr "無法將 UID 更改為 %d: %s" #: main.cc:368 #, c-format -msgid "can't change working directory to: %s: %s" +msgid "cannot change working directory to: %s: %s" msgstr "無法將工作目錄切換至: %s: %s" #: main.cc:415 @@ -1277,12 +1277,12 @@ msgstr "" #: midi-stream.cc:28 #, c-format -msgid "can't open for write: %s: %s" +msgid "cannot open for write: %s: %s" msgstr "無法開啟檔案來寫入內容: %s: %s" #: midi-stream.cc:44 #, c-format -msgid "can't write to file: `%s'" +msgid "cannot write to file: `%s'" msgstr "無法寫入檔案: ‘%s’" #: music-iterator.cc:172 @@ -1300,7 +1300,7 @@ msgid "transposition by %s makes alteration larger than double" msgstr "" #: new-fingering-engraver.cc:87 -msgid "can't add text scripts to individual note heads" +msgid "cannot add text scripts to individual note heads" msgstr "" #: new-fingering-engraver.cc:246 @@ -1316,7 +1316,7 @@ msgid "ignoring too many clashing note columns" msgstr "" #: note-column.cc:123 -msgid "can't have note heads and rests together on a stem" +msgid "cannot have note heads and rests together on a stem" msgstr "一條符桿上不可以同時有符頭和休止符" #: note-head.cc:69 @@ -1330,12 +1330,12 @@ msgstr "" #: open-type-font.cc:33 #, fuzzy, c-format -msgid "can't allocate %lu bytes" +msgid "cannot allocate %lu bytes" msgstr "無法分配 %d 位元組" #: open-type-font.cc:37 #, c-format -msgid "can't load font table: %s" +msgid "cannot load font table: %s" msgstr "無法載入字型表: %s" #: open-type-font.cc:96 @@ -1432,12 +1432,12 @@ msgstr "鋼琴踏板記號後要跟隨 3 個字串,但只找到 %d 個" #: piano-pedal-engraver.cc:319 piano-pedal-engraver.cc:330 #: piano-pedal-performer.cc:93 #, c-format -msgid "can't find start of piano pedal: `%s'" +msgid "cannot find start of piano pedal: `%s'" msgstr "找不到鋼琴踏板記號的開始位置: ‘%s’" #: piano-pedal-engraver.cc:377 #, c-format -msgid "can't find start of piano pedal bracket: `%s'" +msgid "cannot find start of piano pedal bracket: `%s'" msgstr "找不到鋼琴踏板記號的開始位置: ‘%s’" #: program-option.cc:195 @@ -1508,7 +1508,7 @@ msgstr "無法開啟檔案: ‘%s’" #: relocate.cc:358 #, fuzzy, c-format -msgid "can't open file %s" +msgid "cannot open file %s" msgstr "無法開啟檔案: ‘%s’" #: relocate.cc:388 @@ -1517,7 +1517,7 @@ msgid "Unknown relocation command %s" msgstr "" #: rest-collision.cc:150 -msgid "can't resolve rest collision: rest direction not set" +msgid "cannot resolve rest collision: rest direction not set" msgstr "" #: rest-collision.cc:164 rest-collision.cc:209 @@ -1578,7 +1578,7 @@ msgid "unterminated slur" msgstr "圓滑線沒有終點" #: slur-engraver.cc:165 -msgid "can't end slur" +msgid "cannot end slur" msgstr "無法結束圓滑線" #: source-file.cc:74 @@ -1629,7 +1629,7 @@ msgid "Grob count %d" msgstr "" #: text-spanner-engraver.cc:60 -msgid "can't find start of text spanner" +msgid "cannot find start of text spanner" msgstr "" #: text-spanner-engraver.cc:72 @@ -1668,7 +1668,7 @@ msgstr "" #: translator-group.cc:152 #, c-format -msgid "can't find: `%s'" +msgid "cannot find: `%s'" msgstr "找不到: ‘%s’" #: translator.cc:310 @@ -1682,7 +1682,7 @@ msgid "Previous %s event here" msgstr "" #: trill-spanner-engraver.cc:67 -msgid "can't find start of trill spanner" +msgid "cannot find start of trill spanner" msgstr "找不到震音的起點" #: trill-spanner-engraver.cc:79 @@ -1719,7 +1719,7 @@ msgstr "" #. fixme: be more verbose. #: volta-engraver.cc:143 -msgid "can't end volta spanner" +msgid "cannot end volta spanner" msgstr "" #: volta-engraver.cc:153 @@ -1896,7 +1896,7 @@ msgstr "" #: define-music-types.scm:737 #, lisp-format -msgid "can't find music object: ~S" +msgid "cannot find music object: ~S" msgstr "" #: define-music-types.scm:757 @@ -1915,7 +1915,7 @@ msgstr "" #: document-backend.scm:135 #, lisp-format -msgid "can't find interface for property: ~S" +msgid "cannot find interface for property: ~S" msgstr "" #: document-backend.scm:145 @@ -1935,7 +1935,7 @@ msgstr "正在寫入 ~S..." #: documentation-lib.scm:172 #, lisp-format -msgid "can't find description for property ~S (~S)" +msgid "cannot find description for property ~S (~S)" msgstr "" #: framework-eps.scm:77 framework-eps.scm:78 @@ -1945,12 +1945,12 @@ msgstr "正在寫入 ~a..." #: framework-ps.scm:278 #, lisp-format -msgid "can't embed ~S=~S" +msgid "cannot embed ~S=~S" msgstr "" #: framework-ps.scm:331 #, lisp-format -msgid "can't extract file matching ~a from ~a" +msgid "cannot extract file matching ~a from ~a" msgstr "" #: framework-ps.scm:348 @@ -1965,12 +1965,12 @@ msgstr "" #: framework-ps.scm:610 #, lisp-format -msgid "can't convert to ~S" +msgid "cannot convert to ~S" msgstr "無法將 <標準輸出> 轉換為 ~S" #: framework-ps.scm:629 framework-ps.scm:632 #, lisp-format -msgid "can't generate ~S using the postscript back-end" +msgid "cannot generate ~S using the postscript back-end" msgstr "無法使用 postscript 背景模組來產生 ~S" #: framework-ps.scm:639 @@ -2077,7 +2077,7 @@ msgstr "" #: music-functions.scm:745 #, lisp-format -msgid "can't find quoted music `~S'" +msgid "cannot find quoted music `~S'" msgstr "" #: music-functions.scm:953 @@ -2097,12 +2097,12 @@ msgstr "未定義: ~S" #: output-svg.scm:132 #, lisp-format -msgid "can't decypher Pango description: ~a" +msgid "cannot decypher Pango description: ~a" msgstr "" #: output-tex.scm:98 #, lisp-format -msgid "can't find ~a in ~a" +msgid "cannot find ~a in ~a" msgstr "" #: paper.scm:69 @@ -2149,14 +2149,14 @@ msgstr "" #~ msgid "no feasible line breaking found" #~ msgstr "無法找出適當斷行位置" -#~ msgid "can't find line breaking that satisfies constraints" +#~ msgid "cannot find line breaking that satisfies constraints" #~ msgstr "找不到符合指定條件的斷行位置" #~ msgid "" #~ "%s: TFM file has %u parameters, which is more than the %u I can handle" #~ msgstr "%s: TFM 檔案有 %u 個參數,多於目前能夠處理的 %u 個" -#~ msgid "can't find ascii character: %d" +#~ msgid "cannot find ascii character: %d" #~ msgstr "找不到 ascii 字元: %d" #~ msgid "unterminated trill spanner" @@ -2251,7 +2251,7 @@ msgstr "" #~ msgid "Wrote `%s'" #~ msgstr "寫入‘%s’" -#~ msgid "can't dlopen: %s: %s" +#~ msgid "cannot dlopen: %s: %s" #~ msgstr "無法 dlopen: %s: %s" #~ msgid "error opening kpathsea library" @@ -2322,5 +2322,5 @@ msgstr "" #~ msgid "syntax error" #~ msgstr "語法錯誤" -#~ msgid "can't find CFF/PFA/PFB font ~S=~S" +#~ msgid "cannot find CFF/PFA/PFB font ~S=~S" #~ msgstr "找不到 CFF/PFA/PFB 字型 ~S=~S" diff --git a/python/lilylib.py b/python/lilylib.py index 877b98e360..686993e5d8 100644 --- a/python/lilylib.py +++ b/python/lilylib.py @@ -200,7 +200,7 @@ class NonDentedHeadingFormatter (optparse.IndentedHelpFormatter): metavar) def format_usage(self, usage): - return _("Usage: %s\n") % usage + return _("Usage: %s") % usage + '\n' def format_description(self, description): return description diff --git a/python/midi.c b/python/midi.c index dc7d38196b..facf06446a 100644 --- a/python/midi.c +++ b/python/midi.c @@ -372,7 +372,7 @@ midi_parse (unsigned char **midi,unsigned char *midi_end) if (division < 0) - /* return midi_error ("can't handle non-metrical time"); */ + /* return midi_error (cannot handle non-metrical time"); */ ; *midi += header_len - 6; diff --git a/scm/define-music-types.scm b/scm/define-music-types.scm index bec7bc5efc..ae9d6f1329 100644 --- a/scm/define-music-types.scm +++ b/scm/define-music-types.scm @@ -751,7 +751,7 @@ and values. E.g: (ly:error (_ "symbol expected: ~S") name)) (let ((props (hashq-ref music-name-to-property-table name '()))) (if (not (pair? props)) - (ly:error (_ "can't find music object: ~S") name)) + (ly:error (_ cannot find music object: ~S") name)) (let ((m (ly:make-music props))) (define (set-props mus-props) (if (and (not (null? mus-props)) diff --git a/scm/document-backend.scm b/scm/document-backend.scm index 6b22d7f300..92659dd0aa 100644 --- a/scm/document-backend.scm +++ b/scm/document-backend.scm @@ -132,7 +132,7 @@ node." (define (check-dangling-properties prop) (if (not (object-property prop 'iface-marked)) (ly:error (string-append "define-grob-properties.scm: " - (_ "can't find interface for property: ~S")) prop))) + (_ cannot find interface for property: ~S")) prop))) (map check-dangling-properties all-backend-properties) diff --git a/scm/documentation-lib.scm b/scm/documentation-lib.scm index ce91651e77..2a69a2603c 100644 --- a/scm/documentation-lib.scm +++ b/scm/documentation-lib.scm @@ -169,7 +169,7 @@ with init values from ALIST (1st optional argument) (handle (assoc sym alist))) (if (eq? desc #f) - (ly:error (_ "can't find description for property ~S (~S)") sym where)) + (ly:error (_ cannot find description for property ~S (~S)") sym where)) (cons (string-append "@code{" name "} " diff --git a/scm/framework-ps.scm b/scm/framework-ps.scm index e17c3d4780..1075756ed1 100644 --- a/scm/framework-ps.scm +++ b/scm/framework-ps.scm @@ -276,7 +276,7 @@ ((string? bare-file-name) (ps-load-file file-name)) (else - (ly:warning (_ "can't embed ~S=~S") name file-name) + (ly:warning (_ cannot embed ~S=~S") name file-name) ""))) ))) @@ -329,7 +329,7 @@ (if (not embed) (begin (set! embed "% failed \n") - (ly:warning (_ "can't extract file matching ~a from ~a") name filename))) + (ly:warning (_ cannot extract file matching ~a from ~a") name filename))) embed)) (define (font-file-as-ps-string name file-name) @@ -726,7 +726,7 @@ ) (if (equal? (basename name ".ps") "-") - (ly:warning (_ "can't convert to ~S" "PDF")) + (ly:warning (_ cannot convert to ~S" "PDF")) (postscript->pdf w h name)))) (define-public (convert-to-png book name) @@ -745,10 +745,10 @@ name))) (define-public (convert-to-dvi book name) - (ly:warning (_ "can't generate ~S using the postscript back-end") "DVI")) + (ly:warning (_ cannot generate ~S using the postscript back-end") "DVI")) (define-public (convert-to-tex book name) - (ly:warning (_ "can't generate ~S using the postscript back-end") "TeX")) + (ly:warning (_ cannot generate ~S using the postscript back-end") "TeX")) (define-public (convert-to-ps book name) #t) diff --git a/scm/music-functions.scm b/scm/music-functions.scm index 7b0d5d0658..8b7448e5b5 100644 --- a/scm/music-functions.scm +++ b/scm/music-functions.scm @@ -745,7 +745,7 @@ Syntax: (set! (ly:music-property music 'quoted-events) quoted-vector) (set! (ly:music-property music 'iterator-ctor) ly:quote-iterator::constructor)) - (ly:warning (_ "can't find quoted music `~S'" quoted-name)))) + (ly:warning (_ cannot find quoted music `~S'" quoted-name)))) music)) diff --git a/scm/output-svg.scm b/scm/output-svg.scm index 27dfe4e74a..5bd9ddf34e 100644 --- a/scm/output-svg.scm +++ b/scm/output-svg.scm @@ -129,7 +129,7 @@ (set! size (string->number (match:substring match 3)))) - (ly:warning (_ "can't decypher Pango description: ~a") str)) + (ly:warning (_ cannot decypher Pango description: ~a") str)) (set! style (if (string? style) diff --git a/scm/output-tex.scm b/scm/output-tex.scm index 3a3e023ebe..a07bf77ac3 100644 --- a/scm/output-tex.scm +++ b/scm/output-tex.scm @@ -95,7 +95,7 @@ "\\char" (number->string subidx)) (begin - (ly:warning (_ "can't find ~a in ~a" name font)) + (ly:warning (_ cannot find ~a in ~a" name font)) "")))) (define (dashed-line thick on off dx dy phase) diff --git a/scripts/abc2ly.py b/scripts/abc2ly.py index e28577fb1c..26a726a9fc 100644 --- a/scripts/abc2ly.py +++ b/scripts/abc2ly.py @@ -328,7 +328,7 @@ def gulp_file(f): n = i.tell () i.seek (0,0) except: - sys.stderr.write ("can't open file: `%s'\n" % f) + sys.stderr.write (cannot open file: `%s'\n" % f) return '' s = i.read (n) if len (s) <= 0: diff --git a/scripts/convert-ly.py b/scripts/convert-ly.py index 549e82b69c..f3c2819cbe 100644 --- a/scripts/convert-ly.py +++ b/scripts/convert-ly.py @@ -275,14 +275,14 @@ def main (): if f == '-': f = '' elif not os.path.isfile (f): - error (_ ("can't open file: `%s'") % f) + error (_ (cannot open file: `%s'") % f) if len (files) == 1: sys.exit (1) continue try: do_one_file (f) except UnknownVersion: - error (_ ("can't determine version for `%s'. Skipping") % f) + error (_ (cannot determine version for `%s'. Skipping") % f) sys.stderr.write ('\n') diff --git a/scripts/etf2ly.py b/scripts/etf2ly.py index 0e85317a2e..f2f1489c4f 100644 --- a/scripts/etf2ly.py +++ b/scripts/etf2ly.py @@ -844,7 +844,7 @@ Return: (value, rest-of-STR) return (string.atoi (dec), str) else: - sys.stderr.write ("can't convert `%s'\n" % str) + sys.stderr.write (cannot convert `%s'\n" % str) return (None, str) @@ -1197,7 +1197,7 @@ def get_option_parser (): version="etf2ly (LilyPond) @TOPLEVEL_VERSION@", description=_("""Enigma Transport Format is a format used by Coda Music Technology's Finale product. This program will convert a subset of ETF to a -ready-to-use lilypond file.""")) +ready-to-use LilyPond file.""")) p.add_option ('-o', '--output', help=_("write output to FILE"), metavar=_("FILE"), action='store') diff --git a/scripts/lilypond-book.py b/scripts/lilypond-book.py index 90174efeaa..66f15f5925 100644 --- a/scripts/lilypond-book.py +++ b/scripts/lilypond-book.py @@ -1608,7 +1608,7 @@ def guess_format (input_filename): # FIXME format = ext2format[e] else: - error (_ ("can't determine format for: %s" \ + error (_ (cannot determine format for: %s" \ % input_filename)) exit (1) return format diff --git a/scripts/musicxml2ly.py b/scripts/musicxml2ly.py index 4240b3aaae..973def48ce 100644 --- a/scripts/musicxml2ly.py +++ b/scripts/musicxml2ly.py @@ -212,7 +212,7 @@ def musicxml_note_to_lily_main_event (n): if not event: - n.message ("could not find suitable event") + n.message ("cannot find suitable event") event.duration = musicxml_duration_to_lily (n) return event -- 2.39.2