From 1e0150dafe9b1a2de584328681bdf703f002e219 Mon Sep 17 00:00:00 2001 From: Werner Schweer Date: Mon, 10 Dec 2012 12:06:13 +0100 Subject: [PATCH] implement wordwrap with simpletext --- libmscore/simpletext.cpp | 63 +- libmscore/simpletext.h | 3 +- mscore/navigator.cpp | 1 + mscore/textproperties.ui | 22 +- share/locale/mscore_af.ts | 3932 ++++++++++++++++++------------- share/locale/mscore_ar.ts | 904 ++++++-- share/locale/mscore_ast.ts | 3900 ++++++++++++++++++------------- share/locale/mscore_be.ts | 3914 ++++++++++++++++++------------- share/locale/mscore_bg.ts | 3932 ++++++++++++++++++------------- share/locale/mscore_ca.ts | 912 ++++++-- share/locale/mscore_cs.ts | 913 ++++++-- share/locale/mscore_da.ts | 912 ++++++-- share/locale/mscore_de.ts | 968 ++++++-- share/locale/mscore_el.ts | 912 ++++++-- share/locale/mscore_en_GB.ts | 906 ++++++-- share/locale/mscore_en_US.ts | 874 +++++-- share/locale/mscore_eo.ts | 906 ++++++-- share/locale/mscore_es.ts | 908 ++++++-- share/locale/mscore_et.ts | 874 +++++-- share/locale/mscore_eu.ts | 3902 ++++++++++++++++++------------- share/locale/mscore_fa.ts | 906 ++++++-- share/locale/mscore_fi.ts | 910 ++++++-- share/locale/mscore_fo.ts | 906 ++++++-- share/locale/mscore_fr.ts | 912 ++++++-- share/locale/mscore_gl.ts | 914 ++++++-- share/locale/mscore_he.ts | 3898 ++++++++++++++++++------------- share/locale/mscore_hi_IN.ts | 884 +++++-- share/locale/mscore_hr.ts | 874 +++++-- share/locale/mscore_hu.ts | 914 ++++++-- share/locale/mscore_id.ts | 874 +++++-- share/locale/mscore_it.ts | 908 ++++++-- share/locale/mscore_ja.ts | 904 ++++++-- share/locale/mscore_ko.ts | 3904 ++++++++++++++++++------------- share/locale/mscore_lt.ts | 3936 +++++++++++++++++++------------- share/locale/mscore_nb.ts | 914 ++++++-- share/locale/mscore_nl.ts | 914 ++++++-- share/locale/mscore_pl.ts | 910 ++++++-- share/locale/mscore_pt.ts | 904 ++++++-- share/locale/mscore_pt_BR.ts | 910 ++++++-- share/locale/mscore_ro.ts | 912 ++++++-- share/locale/mscore_ru.ts | 904 ++++++-- share/locale/mscore_sk.ts | 3932 ++++++++++++++++++------------- share/locale/mscore_sl.ts | 3912 ++++++++++++++++++------------- share/locale/mscore_sr.ts | 906 ++++++-- share/locale/mscore_sv.ts | 912 ++++++-- share/locale/mscore_th.ts | 896 ++++++-- share/locale/mscore_tr.ts | 896 ++++++-- share/locale/mscore_uk.ts | 912 ++++++-- share/locale/mscore_vi.ts | 906 ++++++-- share/locale/mscore_zh_CN.ts | 914 ++++++-- share/locale/mscore_zh_Hant.ts | 874 +++++-- share/locale/mscore_zh_TW.ts | 900 ++++++-- 52 files changed, 50562 insertions(+), 23068 deletions(-) diff --git a/libmscore/simpletext.cpp b/libmscore/simpletext.cpp index 9cc04bd5ab2a4..baae041bf3ae4 100644 --- a/libmscore/simpletext.cpp +++ b/libmscore/simpletext.cpp @@ -34,6 +34,7 @@ SimpleText::SimpleText(const SimpleText& st) : Element(st) { _text = st._text; + _layout = st._layout; _textStyle = st._textStyle; _layoutToParentWidth = st._layoutToParentWidth; frame = st.frame; @@ -53,7 +54,7 @@ void SimpleText::draw(QPainter* p) const p->setFont(textStyle().fontPx(spatium())); p->setBrush(Qt::NoBrush); p->setPen(textColor()); - foreach(const TLine& t, _text) + foreach(const TLine& t, _layout) p->drawText(t.pos, t.text); } @@ -111,21 +112,59 @@ QColor SimpleText::textColor() const void SimpleText::layout() { - int n = _text.size(); + QFontMetricsF fm(_textStyle.fontPx(spatium())); + QStringList sl = _text.split('\n'); + _layout.clear(); + if (parent() && layoutToParentWidth()) { + Element* e = parent(); + qreal w = e->width(); + if (e->type() == HBOX || e->type() == VBOX || e->type() == TBOX) { + Box* b = static_cast(e); + w -= ((b->leftMargin() + b->rightMargin()) * MScore::DPMM); + } + foreach(QString s, sl) { + if (fm.width(s) < w) + _layout.append(TLine(s)); + else { + int n = s.size(); + int sidx = 0; + int eidx = n-1; + while (eidx > sidx) { + while (fm.width(s.mid(sidx, eidx-sidx+1)) > w) { + --eidx; + while (eidx > sidx) { + if (s[eidx].isSpace()) + break; + --eidx; + } + } + if (eidx == sidx) + eidx = n-1; + _layout.append(TLine(s.mid(sidx, eidx-sidx+1))); + sidx = eidx; + eidx = n-1; + } + } + } + } + else { + foreach(QString s, sl) + _layout.append(TLine(s)); + } + int n = _layout.size(); if (!n) { setPos(QPointF()); setbbox(QRectF()); return; } - QFontMetricsF fm(_textStyle.fontPx(spatium())); QPointF o(_textStyle.offset(spatium())); QRectF bb; qreal lh = lineHeight(); qreal ly = .0; for (int i = 0; i < n; ++i) { - TLine* t = &_text[i]; + TLine* t = &_layout[i]; QRectF r(fm.tightBoundingRect(t->text)); @@ -209,10 +248,7 @@ qreal SimpleText::baseLine() const void SimpleText::setText(const QString& s) { - QStringList sl = s.split('\n'); - _text.clear(); - foreach(QString s, sl) - _text.append(TLine(s)); + _text = s; } //--------------------------------------------------------- @@ -221,15 +257,6 @@ void SimpleText::setText(const QString& s) QString SimpleText::getText() const { - QString s; - int n = _text.size(); - if (n == 0) - return s; - s = _text[0].text; - for (int i = 1; i < n; ++i) { - s += '\n'; - s += _text[i].text; - } - return s; + return _text; } diff --git a/libmscore/simpletext.h b/libmscore/simpletext.h index ec0f617b62986..9d1fae8e8c360 100644 --- a/libmscore/simpletext.h +++ b/libmscore/simpletext.h @@ -40,7 +40,8 @@ struct TLine { class SimpleText : public Element { Q_OBJECT - QList _text; + QString _text; + QList _layout; QRectF frame; // calculated in layout() bool _layoutToParentWidth; diff --git a/mscore/navigator.cpp b/mscore/navigator.cpp index 93a21cee59238..61d32d3dc115b 100644 --- a/mscore/navigator.cpp +++ b/mscore/navigator.cpp @@ -347,3 +347,4 @@ void Navigator::paintEvent(QPaintEvent* ev) p.translate(-pos); } } + diff --git a/mscore/textproperties.ui b/mscore/textproperties.ui index cab863773aae6..bdb20eac9a808 100644 --- a/mscore/textproperties.ui +++ b/mscore/textproperties.ui @@ -750,7 +750,7 @@ offset in Space units - Space + Space @@ -828,14 +828,14 @@ sp - - 0.10 - - 0.0 + 0.000000000000000 - 999.0 + 999.000000000000000 + + + 0.100000000000000 @@ -866,14 +866,14 @@ sp - - 0.50 - - 0.0 + 0.000000000000000 - 999.0 + 999.000000000000000 + + + 0.500000000000000 diff --git a/share/locale/mscore_af.ts b/share/locale/mscore_af.ts index bfe1aa0243168..07c39b0329152 100644 --- a/share/locale/mscore_af.ts +++ b/share/locale/mscore_af.ts @@ -23,7 +23,7 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Support MuseScore with </span><a href="http://www.musescore.org/en/donate"><span style=" font-size:10pt; text-decoration: underline; color:#0000ff;">your donation</span></a></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Arial'; font-size:10pt;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Copyright </span><span style=" font-size:10pt;">©</span><span style=" font-family:'Arial'; font-size:10pt;"> 1999-2009 Werner Schweer and Others. </span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Copyright </span><span style=" font-size:10pt;">©</span><span style=" font-family:'Arial'; font-size:10pt;"> 1999-2012 Werner Schweer and Others. </span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Published under the GNU General Public License</span></p></body></html> @@ -31,17 +31,17 @@ p, li { white-space: pre-wrap; } AboutBoxDialog - + Unstable Prerelease for Version: - + Version: - + Revision: %1 @@ -61,7 +61,7 @@ p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'Sans Serif'; font-size:10pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">MusicXML is an open file format for exchanging digital sheet music,</p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">supported by many applications. MusicXML is copyright © MakeMusic, Inc.</p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">All rights reserved. For more information see: <a href="http://www.makemusic.com/xml.html"><span style=" text-decoration: underline; color:#0000ff;">MakeMusic</span></a></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">All rights reserved. For more information, see: <a href="http://www.makemusic.com/musicxml"><span style=" text-decoration: underline; color:#0000ff;">MakeMusic</span></a></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; text-decoration: underline; color:#0000ff;"></p></body></html> @@ -137,57 +137,57 @@ p, li { white-space: pre-wrap; } - album name + Album Name - remove current score + Remove Current Score - - Remove Score + + Move Current Score Down in List - - move current score down in list + + Move Current Score Up in List - - Down + + Create New Album - - move current score up in list + + Load an Existing Album - - Up + + Remove Score - - Add Score + + Down - - create new album + + Up - - New + + Add Score - - load an existing album + + New @@ -206,28 +206,28 @@ p, li { white-space: pre-wrap; } - + MuseScore Album Files (*.album);; - - + + All Files (*) - + MuseScore Files (*.mscz *.mscx *.msc);; - + MuseScore: Add Score - + MuseScore: Load Album @@ -340,6 +340,16 @@ p, li { white-space: pre-wrap; } BarLine + + + spanFrom: + + + + + spanTo: + + BeamBase @@ -407,6 +417,44 @@ p, li { white-space: pre-wrap; } + + BoxBase + + + Form + + + + + bottomMargin: + + + + + topGap: + + + + + bottomGap: + + + + + leftMargin: + + + + + topMargin: + + + + + rightMargin: + + + BoxPropertiesBase @@ -497,17 +545,17 @@ spatium unit - + Arpeggio - + Tremolo - + Glissando @@ -1455,12 +1503,12 @@ spatium unit - + Hide courtesy clef - + Show courtesy clef @@ -1603,29 +1651,29 @@ spatium unit - + Open File - + failed: - + MuseScore: Open File - + Write File failed: - + MuseScore: Write Drumset @@ -1658,7 +1706,7 @@ failed: - + Note Head: @@ -1693,47 +1741,67 @@ failed: - + + 1 + + + + + 2 + + + + + 3 + + + + + 4 + + + + Shortcut: - + A - + B - + C - + D - + E - + F - + G - + -- @@ -1975,7 +2043,6 @@ failed: - A 8 @@ -2034,6 +2101,11 @@ failed: Ab 7 + + + A 7 + + Bb 7 @@ -2560,6 +2632,19 @@ failed: + + EditStaff + + + Edit Short Name + + + + + Edit Long Name + + + EditStaffBase @@ -2588,228 +2673,223 @@ failed: - - Edit... - - - - + Part Properties - + Instrument: - + Change Instrument... - + Part Name: - + Long Instrument Name: - + Short Instrument Name: + - - - - - + + + + ... - + Usable Pitch Range: - + Amateur: - - + + - - + Professional: - + Play Transposition: - + 0 - Perfect Unison - + 1 - Augmented Unison - + 0 - Diminished Second - + 1 - Minor Second - + 2 - Major Second - + 3 - Augmented Second - + 2 - Diminished Third - + 3 - Minor Third - + 4 - Major Third - + 5 - Augmented Third - + 4 - Diminished Fourth - + 5 - Perfect Fourth - + 6 - Augmented Fourth - + 6 - Diminished Fifth - + 7 - Perfect Fifth - + 8 - Augmented Fifth - + 7 - Diminished Sixth - + 8 - Minor Sixth - + 9 - Major Sixth - + 10 - Augmented Sixth - + 9 - Diminished Seventh - + 10 - Minor Seventh - + 11 - Major Seventh - + 12 - Augmented Seventh - + 11 - Diminished Octave - + 12 - Perfect Octave - + Number of strings: - + Edit string data... - + +octave - + up - + down @@ -2838,8 +2918,8 @@ failed: - - + + sp @@ -2850,19 +2930,19 @@ failed: - + Stemless - + Key Signature - + Ledger Lines @@ -2892,34 +2972,17 @@ failed: - - Guitar (modern) - tablatture type - - - - - Bass (modern) - tablature type - - - - + Italian (historic) tablature type - + French (historic) tablature type - - - Set - - Show Clef @@ -2935,147 +2998,225 @@ failed: Show Time Sign. + + + 6 strings (generic guitar) + tablatture type + + + + + 4 strings (generic bass) + tablature type + + + + + ukulele + + + + + bandurria + + + + + Custom + + - + « Full Configur. - + Upside Down - + Quick Presets » - + Fret Marks - - + + Font: - - + + Size: - - + + pt - - + + Vert. Offset: - + Marks are: - + Numbers - + Letters - + Marks are drawn: - + On Lines - + Above Lines - + Lines are: - + Continuous - + Broken - + Note Values - + Shown as: - + + None - + Note Symbols - + Stems and beams - + + Stem position: + + + + + Above + + + + + Below + + + + + Stem style: + + + + + Beside staff + + + + + Through staff + + + + + Half notes: + + + + + As short stem + + + + + As slashed stem + + + + + Show Rests + + + + Preview - + Create new tablature type - + PERCUSSION STAFF - + Create new percussion type - + Save - + Load @@ -3140,6 +3281,16 @@ failed: Chord + + + Edit Plain Text + + + + + Edit HTML Text + + EditStyleBase @@ -3150,151 +3301,153 @@ failed: - + Score - - - + + + Page - + System - + Measure - + Barlines - + Notes - + Arpeggios - + Beams - + Sizes - + Hairpins - - + + Chordnames - - + + Articulations, Ornaments - + Voices - + Display in Concert Pitch - + Create Multi Measure Rests - + Minumum width of measure: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + sp spatium unit ---------- @@ -3320,546 +3473,565 @@ spatium unit ---------- spatium unit ---------- +spatium unit +---------- +spatium unit +---------- spatium unit - + Minimum Number of empty measures: - + Hide Empty Staves - - - - - - + + + + + + % - + Last system fill threshold - + Create clef for all systems - + Create time signatures - + Create key sig for all systems - + Create courtesy time signatures - + System Bracket Distance: - + shorten stems - - - + + + show first - - + + odd/even - + Measure Numbers - + all staffs - + every system - + interval - - + + spaces - + Create courtesy key signatures - + Clefs - - + + Figured Bass - - + + Accidentals - + Music upper margin - + Music lower margin - + Staff distance - + Lyrics upper margin - + Lyrics lower margin - + Vertical-frame upper margin - + V-frame upper margin - + Vertical-frame lower margin - + V-frame lower margin - + Create courtesy clefs - + Lyrics line height - + Header Text - + show header also on first page - + use odd even page header - - + + styled - - + + left - - + + middle - - + + right - - - + + + edit even page header - - - + + + add odd page header - + Footer Text - + show footer also on first page - + use odd even page footer - - - + + + edit even page footer - - - + + + edit odd page header - + + Pedal, Trill + + + + Min. System distance - + Max. System distance - + Fix Number of Measures/System: - + Fix Measure Width - + System Bracket Width: - + Akkolade Width: - + minimum Measure width - + Spacing (1=tight) - + Min. note distance - + Clef left margin - + Key sig. left margin - + Time sig. left margin - + Clef-barline distance - + Staff line width - + Show repeat bar tips ("winged" repeats) - + Barline at start of single staff - + Barline at start of multiple staves - + Bar width: - + End bar width: - + End bar distance: - + Double bar width: - + Double bar distance: - + Progression - + Shortest stem - + Accidental note distance - + Accidental distance - + Note dot distance - + Dot dot distance - + Ledger line width - + Ledger line length - + Default TAB Clef - + Clef1 - + Clef2 - + Distance to note - + line width at end - + line width middle - + bow - + dotted line width - + Ottava - + + Pedal Line + + + + + Trill Line + + + + Use German names - + Chord description file - + Font: - + Size: - + pt - + Vertical position: - + Line height: - + Style - + Modern - + Historic - + Accidental - + semitones offset - + cents offset - - - - + + + + up - - - - + + + + down - + beam width units - + Line width @@ -3870,7 +4042,7 @@ spatium unit - + Slurs/Ties @@ -3880,34 +4052,34 @@ spatium unit - + Musical symbols font: - + Don't hide empty staves in first system - + Grand staff distance - - + + even - - + + odd - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -3920,172 +4092,174 @@ p, li { white-space: pre-wrap; } - + Akkolade Distance: - + Barline-note margin - + Note-barline margin - + Clef/Key right margin - + Hook length - + Beam width - + Beam distance - + Minimum length - + Minimum slope - + Maximum slope - + Small staff size - + Small note size - + Grace note size - + Small clef size - - - - - - - - - - - - - + + + + + + + + + + + + + ... - - - + + + Line width: - + Height: - + Line break height: - + Volta - - - + + + + + default Y-position: - - + + Hook height: - + note head distance - - - + + + sp space unit - + articulation distance - + staff distance - + Stem Direction in Multi-Voice Context - + Voice 1 - + Voice 2 - + Voice 3 - + Voice 4 @@ -4248,7 +4422,7 @@ p, li { white-space: pre-wrap; } GreendotButton - + record @@ -4345,7 +4519,7 @@ p, li { white-space: pre-wrap; } Inspector - + Inspector @@ -4432,6 +4606,79 @@ spatium unit + + InspectorBarLine + + + Staff default + + + + + Tick + + + + + Tick alt. + + + + + Short + + + + + Short alt. + + + + + Type: + + + + + Measure default + + + + + Normal + + + + + Dashed + + + + + Dotted + + + + + Double + + + + + End + + + + + Span: + + + + + Custom + + + InspectorBeam @@ -4464,13 +4711,13 @@ spatium unit - - + + ... - + User Position @@ -4586,7 +4833,7 @@ spatium unit InspectorClef - + Show Courtesy Clef @@ -4720,15 +4967,80 @@ spatium unit - InspectorImage + InspectorHairpin - + Form - - Image + + Hairpin + + + + + crescendo + + + + + decrescendo + + + + + Subtype: + + + + + Dynamic Range: + + + + + Velo. change: + + + + + Staff + + + + + Part + + + + + SYstem + + + + + + reset value + + + + + + ... + + + + + InspectorImage + + + Form + + + + + Image @@ -4773,12 +5085,12 @@ spatium unit InspectorKeySig - + Show Courtesy Time Signature - + Show Naturals @@ -5017,45 +5329,83 @@ spatium unit - + Select - + Dot1 - + Dot2 - + Dot3 - + Hook - + Stem - + Beam + + InspectorOttava + + + Form + + + + + Ottava + + + + + Subtype: + + + + + 8va + + + + + 15ma + + + + + 8vb + + + + + 15mb + + + InspectorRest - + Small @@ -5131,11 +5481,54 @@ spatium unit InspectorTimeSig - + Show Courtesy Time Signature + + InspectorTrill + + + Form + + + + + Trill + + + + + Subtype: + + + + + trill line + + + + + up prall + + + + + down prall + + + + + prall prall + + + + + wavy line + + + InspectorVBox @@ -5222,6 +5615,34 @@ spatium unit + + InspectorVolta + + + Form + + + + + Volta + + + + + Subtype: + + + + + Open + + + + + Closed + + + InstrumentDialogBase @@ -5276,22 +5697,22 @@ spatium unit - visible + Visible - - Clef + + Linked - - linked + + Staff Linked to Previous - - staff linked to previous + + Clef @@ -5415,49 +5836,49 @@ spatium unit - + MuseScore: Save Instrument List - + MuseScore Instruments (*.xml);; - + Open Instruments File - + failed: - + MuseScore: Open Instruments file - + Write Style failed: - + MuseScore: Write Style - + MuseScore: Load Instrument List - + MuseScore Instruments (*.xml);;All files (*) @@ -5524,22 +5945,22 @@ failed: KeySig - + Hide Courtesy Key Signature - + Show Courtesy Key Signature - + Hide Naturals - + Show Naturals @@ -6231,12 +6652,12 @@ Would you like to locate %2 now? - + visible - + stemless @@ -6310,57 +6731,92 @@ Would you like to locate %2 now? - + + 1 + + + + + 2 + + + + + 4 + + + + + 8 + + + + + 16 + + + + + 32 + + + + + 64 + + + + Other - + do not count - + Exclude from measure count - + break multi measure rest - + add to measure number - + layout stretch - + repeat count: - + goto previous measure - + <- - + goto next measure - + -> @@ -6445,7 +6901,7 @@ Would you like to locate %2 now? MenuNotes - + &Notes @@ -6496,476 +6952,470 @@ Would you like to locate %2 now? MuseScore - + Fingering - + Rehearsal Mark - + Concert Pitch - - + + MuseScore - + Save changes to the score "%1" before closing? - + MuseScore: Load Score - - + MuseScore: Load error - + MusicXML Files (*.xml *.mxl);; - + MIDI Files (*.mid *.midi *.kar);; - + Muse Data Files (*.md);; - + Capella Files (*.cap);; - + BB Files <experimental> (*.mgu *.MGU *.sgu *.SGU);; - + PDF Files <experimental omr> (*.pdf);; - + Bagpipe Music Writer Files <experimental> (*.bww);; - + Guitar Pro (*.GTP *.GP3 *.GP4 *.GP5);; - - - + + + All Files (*) - + Untitled - - Cannot read file: %1 error: %2 - - - - + Overture / Score Writer Files <experimental> (*.ove *.scw);; - + Compressed MuseScore File (*.mscz) - + MuseScore File (*.mscx) - + MuseScore: Save Score - + MuseScore: Save File - - + + MuseScore: Load Style - + MuseScore Styles (*.mss);;All Files (*) - - - + + + MuseScore: Save Style - - - + + + MuseScore Style File (*.mss) - + SoundFont Files (*.sf2 *.SF2);;All (*) - + Choose Synthesizer SoundFont - + MuseScore: Choose Synthesizer SoundFont - + MuseScore Chord Style File (*.xml) - + ;;All Files (*) - - + + MuseScore: Load Chord Style - + MuseScore: Save Chord Style - + PDF Scan File (*.pdf);;All (*) - + Choose PDF Scan - + MuseScore: Choose PDF Scan - + OGG Audio File (*.ogg);;All (*) - + Choose Audio File - + MuseScore: Choose OGG Audio File - + PNG Bitmap Graphic (*.png);; - + PDF File (*.pdf);; - + Encapsulated PostScript File (*.eps);; - + Scalable Vector Graphic (*.svg);; - + MuseScore: Save Image - + MuseScore: Load Palette - + MuseScore Palette (*.mpal);;All Files (*) - + MuseScore: Save Palette - + MuseScore Palette (*.mpal) - + MuseScore: Load Plugin - + MuseScore Plugin (*.qml);;All Files (*) - + MuseScore: Save Plugin - + MuseScore Plugin File (*.qml) - + MuseScore: Load Drumset - + MuseScore Drumset (*.drm);;All Files (*) - + MuseScore: Save Drumset - + MuseScore Drumset File (*.drm) - - + + Uncompressed MuseScore Format (*.mscx) - - + + MusicXML Format (*.xml) - - + + Compressed MusicXML Format (*.mxl) - - + + Standard MIDI File (*.mid) - - + + PDF File (*.pdf) - - + + PostScript File (*.ps) - - + + PNG Bitmap Graphic (*.png) - - + + Scalable Vector Graphic (*.svg) - - + + Wave Audio (*.wav) - - + + Flac Audio (*.flac) - - + + Ogg Vorbis Audio (*.ogg) - - + + MP3 Audio (*.mp3) - + MuseScore: Export - + MuseScore Format (*.mscx) - + MuseScore: Save a Copy - - - - + + + + MuseScore: Save As - + All Supported Files (*.mscz *.mscx *.xml *.mxl *.mid *.midi *.kar *.md *.mgu *.MGU *.sgu *.SGU *.cap *.pdf *.ove *.scw *.bww *.GTP *.GP3 *.GP4 *.GP5);; - + All Supported Files (*.mscz *.mscx *.xml *.mxl *.mid *.midi *.kar *.md *.mgu *.MGU *.sgu *.SGU *.cap *.ove *.scw *.bww *.GTP *.GP3 *.GP4 *.GP5);; - + MuseScore Files (*.mscz *.mscx);; - - + + LilyPond Format (*.ly) - - - - + + + + cannot determine file type - - - + + + MuseScore: Export Parts - + Parts were successfully exported - - + + MuseScore Format (*.mscz) - - + + MuseScore: Save Selection - + MuseScore: Save Selected - + MuseScore: InsertImage - + All Supported Files (*.svg *.jpg *.png *.xpm);;Scalable vector graphics (*.svg);;JPEG (*.jpg);;PNG (*.png);;XPM (*.xpm);;All Files (*) - + Images (*.jpg *.gif *.png);;All (*) - + Grace Notes - + Clefs @@ -6975,277 +7425,312 @@ before closing? - + Time Signatures - + 2/2 alla breve - + Normal - + Dashed - + Arpeggio && Glissando - + Arpeggio - + Breath && Pauses - + Caesura - + Square bracket - + Curly bracket - + Articulations && Ornaments - + Fingering %1 - + String number %1 - + Thumb - + 1/8 through stem - + 1/16 through stem - + 1/32 through stem - + 1/64 through stem - + 1/8 between notes - + 1/16 between notes - + 1/32 between notes - + 1/64 between notes - + Fall/Doit - + fall - + doit - + Repeat measure sign - + Segno Variation - + Da Capo - + Da Capo al Fine - + Da Capo al Coda - + staff-text - + Staff Text - + system-text - + System Text - + Instrument - + Instrument Change - + 1. - + Lyrics Verse Number - + Tempo Text - + Breaks && Spacer - + + Dotted + + + + + Tick 1 + + + + + Tick 2 + + + + + Short 1 + + + + + Short 2 + + + + Line break - + Page break - + Section break - + Staff spacer down - + Staff spacer up - + + plop + + + + + scoop + + + + Chord Name - + Staff Changes - + set visible - + set invisible - + change staff type - + change instrument - + Fret Diagram - + &Measures - + &Frames - + &Text @@ -7255,42 +7740,42 @@ before closing? - + 4/4 common time - + End Bar - + Double Bar - + Start Repeat - + End Repeat - + End-Start Repeat - + Breath - + Brackets @@ -7300,62 +7785,62 @@ before closing? - + Note Heads - + Tremolo - + Repeats - + Segno - + Coda - + Varied coda - + Codetta - + Fine - + D.S al Coda - + D.S al Fine - + D.S - + To Coda @@ -7365,62 +7850,62 @@ before closing? - + Symbols - + &Create - + Text - + File Operations - + Transport Tools - + Page View - + Foto Mode - + Note Entry - + &File - + Open &Recent - + &Edit - + &Layout @@ -7452,205 +7937,215 @@ please choose a different name: - + MuseScore: transpose - + There is nothing selected. Transpose whole score? - - + + MuseScore: save style - + MuseScore: load style - + Open failed: unknown file extension or broken file - + foto mode - + Bar %1 Beat %2.%3 - + The previous session quit unexpectedly. Restore session? - + &Style - + synthesizer - + audio track - + switch play mode - + Continuous View - + &Measure - + &Voices - + Pr&ofiles - + &Preferences... - + Add N&ote - + Add &Interval - + T&uplets - + &Display - + &Plugins - + &Help - + &Online Handbook - + About &Qt - + About &MusicXML - + Check for &Update - + Report a bug - + + NOTE entry mode + + + + + DRUM entry mode + + + + + TAB entry mode + + + + Find - + MuseScore: warning - + Cannot create tuplet: note value too short - + &About - + switch layer - + no score - - note entry mode - - - - + edit mode - + play - + Go To: - + System - + Glissando @@ -7692,6 +8187,11 @@ Restore session? Error %1 returned from MP3 encoder + + + you cannot create an element + + MyWebView @@ -7719,7 +8219,7 @@ Restore session? NewWizard - + MuseScore: Create New Score @@ -7767,12 +8267,12 @@ Restore session? NewWizardPage1 - + Create New Score - + This wizard creates a new score @@ -7780,12 +8280,12 @@ Restore session? NewWizardPage2 - + Create New Score - + Define a set of instruments. Each instrument is represented by one or more staves @@ -7793,12 +8293,12 @@ Restore session? NewWizardPage3 - + Create New Score - + Create Time Signature @@ -7806,22 +8306,22 @@ Restore session? NewWizardPage4 - + Create New Score - + Select Template File: - + MuseScore: Select Template - + MuseScore Template Files (*.mscz *.mscx) @@ -7829,27 +8329,27 @@ Restore session? NewWizardPage5 - + Create New Score - + Select Key Signature and Tempo: - + Key Signature - + Tempo - + BPM: @@ -7872,33 +8372,28 @@ Restore session? - - OnTime: + + NoteEvents - - OffTime: - - - - - + + invalid - + Dot1 - + Dot2 - + Dot3 @@ -8084,27 +8579,27 @@ Restore session? PaletteBox - + Palettes - + Palette Operations - + Single Palette Mode - + Reset to factory defaults - + new Palette @@ -8112,42 +8607,42 @@ Restore session? PaletteBoxButton - + Palette Properties... - + Insert new Palette... - + Move Palette Up - + Move Palette Down - + Enable Editing - + Save Palette - + Load Palette - + Delete Palette @@ -8471,42 +8966,42 @@ Restore session? PluginCreator - + File Operations - + Edit Operations - + MuseScore Plugin Editor - - - + + + MuseScore - - - + + + Plugin "%1" has changes save before closing? - + untitled - + Manual @@ -8582,74 +9077,85 @@ save before closing? PreferenceDialog - + Choose Default Style - + Choose Default Style for Parts - - + + Choose Instrument List - - + + Instrument List (*.xml) - + Choose Starting Score - + Choose Scores Directory - + Choose Styles Directory - + Choose Templates Directory - + Choose Plugins Directory - + Choose SoundFonts Directory - + Choose Images Directory - + + + MuseScore Shortcuts + + + + + Print Shortcuts + + + + Choose Notepaper - + Choose Background Wallpaper - + MuseScore Files (*.mscz *.mscx *.msc);;All (*) @@ -9023,47 +9529,52 @@ save before closing? - + + Print + + + + Plugins - + Name: - + Path: - + Version: - + Load - + Define Shortcut - + Update - + Automatic Update Check - + Check for new versions of MuseScore on startup @@ -9481,7 +9992,7 @@ save before closing? - + Shortcut @@ -9506,7 +10017,7 @@ save before closing? Properties - + small @@ -9542,7 +10053,7 @@ save before closing? QWidget - + MuseScore: Import Capella @@ -9569,13 +10080,13 @@ save before closing? - - - - + + - - + + + + @@ -9590,54 +10101,54 @@ save before closing? - + MuseScore: Save Album - + MuseScore Files (*.album);; - + Open Album File - + failed: - + MuseScore: Open Album file - + Write Album failed: - + MuseScore: Write Album - + Untitled - + MuseScore: file not found: - + MuseScore: load failed: @@ -9659,17 +10170,17 @@ failed: - + MuseScore: load Style failed: - + MuseScore: Load languages failed: - + MuseScore: invalid command @@ -9680,7 +10191,7 @@ failed: - + MuseScore: Import GuitarPro @@ -9688,7 +10199,7 @@ failed: RecordButton - + record @@ -9722,7 +10233,7 @@ failed: - + Staff @@ -9745,26 +10256,26 @@ failed: - - - - + + + + Set Invisible - - - - + + + + Set Visible - + Color... @@ -9776,9 +10287,9 @@ failed: - - - + + + Text Properties... @@ -9788,150 +10299,150 @@ failed: - + Bend Properties... - + TremoloBar Properties... - - + + Add - - - + + + Frame Properties... - - - + + + Tuplet Properties... - + Volta Properties... - + Line Properties... - + Time Signature Properties... - + MIDI Properties... - + Staff Text Properties... - + Tempo Properties... - + Change Instrument Properties... - + Edit Mode - + Slur Properties... - - + + Tuplet... - - + + Delete Tuplet - + Style... - + Chord Articulation... - + Marker Properties... - + Jump Properties... - + Section Break Properties... - + Change Instrument... - + Fret Diagram Properties... - + Glissando Properties... - + Dynamics - + Hairpin Properties... - + Harmony Properties... - - + + Staff Properties... @@ -9948,54 +10459,54 @@ failed: - + Measure - + Measure Properties... - + Please select the complete tuplet and retry the copy operation - + Please select the complete tuplet and retry the cut operation - + No chord/rest selected: please select a chord/rest and try again - + Cannot split measure here: cannot split tuplet - + No measures selected: please select range of measures to join and try again - + No staves found: please use the instruments dialog to first create some staves - + No Measure selected: please select a measure and try again @@ -10275,12 +10786,12 @@ Sequencer will be disabled. ShortcutCaptureDialog - + Shortcut conflicts with - + Undefined @@ -10335,31 +10846,6 @@ Sequencer will be disabled. Form - - - Slur - - - - - Slur End - - - - - Staff: - - - - - Voice: - - - - - Tick: - - SlurPropertyBase @@ -10465,6 +10951,16 @@ Sequencer will be disabled. Form + + + CHORD + + + + + NOTE + + SplitStaff @@ -10904,7 +11400,7 @@ altera - + MuseScore Startup Dialog @@ -11520,146 +12016,147 @@ altera - + relX: - + reference point offset in percent of parent width - - + + % - + Y: coordinate - + vertical offset to reference point - + relY: - + reference point offset in percent of parent height - + Unit: - + offset is absolute - + MM - + offset in Space units - + Space + spatium unit - + enable text frame - + Frame - + draw circled frame - + Circle - + draw boxed frame - + Box - + Width: - + frame line width - - - mm + + + sp - + Margin: - + frame inner margin - + Round: - + corner round - + Foreground Color: - - + + frame color - + Background Color: @@ -11722,67 +12219,72 @@ please choose a different name: - + align left - + align horizontal center - + align right - + align top - + align bottom - + + align vertical baseline + + + + align vertical center - + subscript - + superscript - + unordered list - + ordered list - + indent more - + indent less - + unstyled @@ -11794,16 +12296,6 @@ please choose a different name: MuseScore: Time Signatures - - - 4/4 common time - - - - - 2/2 alla breve - - TimeDialogBase @@ -11853,12 +12345,12 @@ please choose a different name: TimeSig - + Hide Courtesy Time Signature - + Show Courtesy Time Signature @@ -12001,259 +12493,306 @@ p, li { white-space: pre-wrap; } - - Transpose by Key - - - - + Cb major / Ab minor - + Gb major / Eb minor - + Db major / Bb minor - + Ab major / F minor - + Eb major / C minor - + Bb major / G minor - + F major / D minor - + C major / A minor - + G major / E minor - + D major / B minor - + A major / F# minor - + E major / C# minor - + B major / G# minor - + F# major / D# minor - + C# major / A# minor - - + + + Up - - + + + Down - + Closest - - Transpose by Interval - - - - + Perfect Unison - + Augmented Unison - + Diminished Second - + Minor Second - + Major Second - + Augmented Second - + Diminished Third - + Minor Third - + Major Third - + Augmented Third - + Diminished Fourth - + Perfect Fourth - + Augmented Fourth - + Diminished Fifth - + Perfect Fifth - + Augmented Fifth - + Diminished Sixth - + Minor Sixth - + Major Sixth - + Augmented Sixth - + Diminished Seventh - + Minor Seventh - + Major Seventh - + Augmented Seventh - + Diminished Octave - + Perfect Octave - + + Transpose Diatonically + + + + + Second + + + + + Third + + + + + Fourth + + + + + Fifth + + + + + Sixth + + + + + Seventh + + + + + Keep degree alterations + + + + Options - + Transpose key signatures - + + Transpose Chromatically + + + + + By Key + + + + + By Interval + + + + Transpose chord names - + Single sharps and flats only - + Use double sharps and flats @@ -12534,135 +13073,130 @@ p, li { white-space: pre-wrap; } action - + Save a Copy... - + Export... - - Reload - - - - + Close - + New... - + Create new score - + Print... - - + + Undo - - + + Redo - + Cut - + Copy - + Paste - + Instruments... - - + + Note Input - + Unison Above - + Enter unison above - + Second Above - + Enter second above - + Third Above - + Enter third above - + Fourth Above - + Enter fourth above - + Fifth Above - + Enter fifth above - + Sixth Above - + Enter sixth above @@ -12677,1555 +13211,1672 @@ p, li { white-space: pre-wrap; } - + Octave Above - + Enter octave above - + Ninth Above - + Enter ninth above - + Second Below - + Enter second below - + Third Below - + Enter third below - + Fourth Below - + Enter fourth below - + Fifth Below - + Enter fifth below - + Sixth Below - + Enter sixth below - + Seventh Below - + Enter seventh below - + Octave Below - + Enter octave below - + Ninth Below - + Enter ninth below - + A - + B - + C - + D - + E - + F - + G - + Add A - + Add note A to chord - + Add B - + Add note B to chord - + Add C - + Add note C to chord - + Add D - + Add note D to chord - + Add E - + Add note E to chord - + Add F - + Add note F to chord - + Add G - + Add note G to chord - - + + Add More Stretch - + Add more stretch to selected measure - + Add Less Stretch - + Add less stretch to selected measure - - + + Reset Beam Mode - - Local handbook + + String above (TAB) - - Show local handbook + + Select string above (TAB only) - - File open + + String below (TAB) - - Load score from file + + Select string below (TAB only) - - File save + + Fret 0 (TAB) - - Save score to file + + Add fret 0 on current string (TAB only) - - File save as + + Fret 1 (TAB) - - Save score under a new file name + + Add fret 1 on current string (TAB only) - - File save a copy + + Fret 2 (TAB) - - Save a copy of the score in addition to the current file + + Add fret 2 on current string (TAB only) - - Save a copy of the score in various formats + + Fret 3 (TAB) - - Export Parts + + Add fret 3 on current string (TAB only) - - Export Parts... + + Fret 4 (TAB) - - Save a copy of the score's parts in various formats + + Add fret 4 of current string (TAB only) - - File reload + + Fret 5 (TAB) - - Reload score from file + + Add fret 5 of current string (TAB only) - - File close + + Fret 6 (TAB) - - Close current score + + Add fret 6 of current string (TAB only) - - File new + + Fret 7 (TAB) - - Print + + Add fret 7 of current string (TAB only) - - Print score + + Fret 8 (TAB) - - Undo last change + + Add fret 8 of current string (TAB only) - + + Fret 9 (TAB) + + + + + Add fret 9 of current string (TAB only) + + + + + Staff Types... + + + + + Staff type editor + + + + + Show staff type editor + + + + + Note anchored Textline + + + + + Local handbook + + + + + Show local handbook + + + + + File open + + + + + Load score from file + + + + + File save + + + + + Save score to file + + + + + File save as + + + + + Save score under a new file name + + + + + File save a copy + + + + + Save a copy of the score in addition to the current file + + + + + Save a copy of the score in various formats + + + + + Export Parts + + + + + Export Parts... + + + + + Save a copy of the score's parts in various formats + + + + + File close + + + + + Close current score + + + + + File new + + + + + Print + + + + + Print score + + + + + Undo last change + + + + Redo last undo - + Show instruments dialog - + Note input mode - + Enter note A - + Enter note B - + Enter note C - + Enter note D - + Enter note E - + Enter note F - + Enter note G - + Insert note A - + Insert A - + Insert note B - + Insert B - + Insert note C - + Insert C - + Insert note D - + Insert D - + Insert note E - + Insert E - + Insert note F - + Insert F - + Insert note G - + Insert G - + Enter rest - - - + + + Rest - + Add staccato - + Staccato - + Add tenuto - + Tenuto - + Add marcato - + Marcato - + Diatonic pitch down - + Diatonic down - + Add previous chord to selection - + Select to beginning of measure - + Add next chord to selection - + Select Section - + Move chord/rest right - + Move chord/rest left - + Select to end of measure - + Select to beginning of line - + Select to end of line - + Select to beginning of score - + Select to end of score - + Add staff above to selection - + Add staff below to selection - + Page: previous - + Page: next - + Page: top - + Page: end - - Add slur - - - - + Crescendo - + Decrescendo - + Escape - - + + Delete - + Delete contents of the selected measures - + Timewise delete - + Append One Measure - + Insert One Measure - - + Insert Text Frame - + Append Text Frame - - + Insert Fret Diagram Frame - + Other tuplets - + Note duration: longa - + Parts... - + Full Screen - + Additional Media... - + Page Settings... - + Album... - + Layers... - + Plugin Creator - + next syllable - + previous syllable - + toggle visibility - + set visible - + set unvisible - + Note duration: whole - + Note duration: half - + Note duration: quarter - + Note duration: 8th - + Note duration: 16th - + Note duration: 32nd - + Note duration: 64th - + Note duration: 128th - - + + 128th note - + Note duration: augmentation dot - - + + Augmentation dot - + Note duration: double augmentation dot - - + + Double augmentation dot - + Note duration: tie - - + + Tie - + Note entry: rest - + Note entry: double sharp - - + + Double sharp - + Note entry: sharp - - + + Sharp - + Note entry: natural - - + + Natural - + Note entry: flat - - + + Flat - - - - Grace: 8nd after - - - - + Pan score while playing on/off - + Pan - + &Transpose... - + Violin Clef - + Bass Clef - + Display in concert pitch - + Toggle Section Break - + Show Unprintable - + Show Page Margins - + Manage parts - + Inspector - + Show OMR Panel - + OmrPanel - + toggle metronome - + Figured Bass - + Next Score - + Previous Score - + Transpose Up - + Transpose Down - + Show master palette - + Master Palette... - - Insert Measure - - - - + Toggle View Mode - + Show inspector - + Reset measure stretch - + Note entry: whole rest - + Whole rest - + Note entry: half rest - + Half rest - + Note entry: quarter rest - + Quarter rest - + Note entry: 8th rest - + 8th rest - + Text - + Add Frame Text - + Debugger - + Reset Stretch - + Insert Special Characters - + Backspace - + Find - + Mirror note head - + General... - + Edit general style - + Text... - + Chords... - + Double duration - + Half duration - + Follow song - + Display documents side by side - + Display documents stacked - + Show OMR image - + Enharmonic up - + Enharmonic down - + Create new revision - + Toggle foto mode - + Enable horizontal raster - + Enable vertical raster - + Configure raster - + Re-Pitch Mode - + Replace pitches without changing rhythms - + Stack down - - next score - - - - - previous score - - - - + Show media dialog - + Piano Keyboard - + Split Measure - + Join Measure - + Page Settings - + Album - + Add trill - + Trill - + Less stretch - + Reset beam mode of selected measures - + Flip direction - + Pitch up - + Up - + Pitch up octave - + Up Octave - + Pitch up by an octave - + Up Note in Chord - + Go to higher pitched note in chord - + Go to top note in chord - + Top Note in Chord - + Move up - + Pitch down - + Down - + Pitch down octave - + Down octave - + Pitch down by an octave - + Down Note in Chord - - + + Go to lower pitched note in chord - + Go to bottom note in chord - + Bottom Note in Chord - - + + Move down - - + Previous chord - - + Previous measure - - + Next chord - - + Next measure - + Append measures - + Insert measures - + Save Selection - + Save Selection... - + Save current selection as new score - + Export score - + Respell pitches - Timewise Delete + Slur + Add Slur + + + + + Add Crescendo + + + + + Timewise Delete + + + + Delete element and duration - + Delete Selected Measures - + Append Measures... - + Insert Measures... - - + Insert Horizontal Frame - - + Insert Vertical Frame - + Append Horizontal Frame - + Append Vertical Frame - + Duplet - + Triplet - + Quadruplet - + Quintuplet - + Sextuplet - + Septuplet - + Octuplet - + Nonuplet - + Other... - - + + Longa - - + + + + Grace: 8th after + + + + + Enable sound while editing - + Palette - + Play Panel - + Navigator - + Mixer - + Transport - + Status Bar - + Quit - + Lyrics - + Note entry: double flat - - + + Double flat @@ -14235,574 +14886,594 @@ p, li { white-space: pre-wrap; } - + Open... - + Save - + Save As... - - - + + + Acciaccatura - - - + + + Appoggiatura - - - + + + Grace: quarter - - - + + + Grace: 16th - - - + + + Grace: 32nd - - - + + + Voice 1 - - - + + + Voice 2 - - - + + + Voice 3 - - - + + + Voice 4 - + MIDI input - - + + Enable MIDI input - + Editing sound on - + Beam start - + Beam middle - + No beam - + Beam 32nd sub - + Beam 64th sub - + Auto beam - + Feathered beam, slower - + Feathered beam, faster - + Transport toolbar - + Note input toolbar - + Zoom canvas - + + Play Previous Chord + + + + + Play Previous Measure + + + + + Play Next Chord + + + + + Play Next Measure + + + + + Player Seek to Begin + + + + + Player Seek to End + + + + + Save Style as Default... + + + + Layers - + MuseScore Connect - + Metronome - + System Text - + Staff Text - + Title - + Subtitle - + Composer - + Chord Name - + Harmony Properties - + Rehearsal Mark - + Play - + Start or stop playback - - Player seek to begin - - - - + Rewind - - Player seek to end - - - - + Repeat - + Load Style... - + Save Style... - - Save Style As Default... - - - - + Select All - + Concert Pitch - + Info... - + Reset - + Reset user settings - + Transpose - + Diatonic pitch up - + Diatonic up - + Note duration: double whole - - + + Double whole note - - + + Whole note - - + + Half note - - + + Quarter note - - + + 8th note - - + + 16th note - - + + 32nd note - - + + 64th note - + Tempo Marking... - + Tempo Marking - + Add system text - + Add staff text - + Add title text - + Add subtitle text - + Add composer text - + Add lyricist text - + Lyricist - + Add chord name - + Show harmony properties for chord - + Add rehearsal mark - + Add picture - + Picture - + Player play - + Player rewind - + Rewind to start position - + Play repeats on/off - + Load style - + Save style - + Exchange Voice 1-2 - + Exchange Voice 1-3 - + Exchange Voice 1-4 - + Exchange Voice 2-3 - + Exchange Voice 2-4 - + Exchange Voice 3-4 - + Repeat last command - + Edit score info - + Toggle System Break - + Toggle Page Break - + Edit Element - + Show Invisible - + Show Frames - + Insert Special Characters... - + Zoom In - + Zoom Out - + Edit text style - + Edit chord style - + Select all similar elements - + All Similar Elements - + Select all similar elements in same staff - + All Similar Elements in Same Staff - + Synthesizer - + Repeat selection - + Documents Side by Side - + Documents Stacked @@ -14810,12 +15481,12 @@ p, li { white-space: pre-wrap; } articulation - + Bend - + Tremolo Bar @@ -14831,45 +15502,45 @@ p, li { white-space: pre-wrap; } file - - + + error at line %1 column %2: %3 - + internal error: could not open resource musicxml.xsd - + internal error: MusicXML schema is invalid - + error reading container.xml at line %1 column %2: %3 - + can't find rootfile - - + + this is not a valid MusicXML file - + could not open MusicXML file @@ -14886,100 +15557,105 @@ p, li { white-space: pre-wrap; } lines - + Lines - + Slur - + Crescendo - + Diminuendo - + Prima volta - + Seconda volta - + Terza volta - + Seconda volta 2 - + 8va - + 15ma - + 8vb - + 15mb - - - - + + + + Pedal - + Trill line - + Upprall line - + Downprall line - + Prallprall line - + + Wavy line + + + + Text line - + Line diff --git a/share/locale/mscore_ar.ts b/share/locale/mscore_ar.ts index 77dd07fae8877..ab1852a50493b 100644 --- a/share/locale/mscore_ar.ts +++ b/share/locale/mscore_ar.ts @@ -3,6 +3,14 @@ AboutBox + + About MuseScore + + + + Copy revision number + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -12,18 +20,10 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Support MuseScore with </span><a href="http://www.musescore.org/en/donate"><span style=" font-size:10pt; text-decoration: underline; color:#0000ff;">your donation</span></a></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Arial'; font-size:10pt;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Copyright </span><span style=" font-size:10pt;">©</span><span style=" font-family:'Arial'; font-size:10pt;"> 1999-2009 Werner Schweer and Others. </span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Copyright </span><span style=" font-size:10pt;">©</span><span style=" font-family:'Arial'; font-size:10pt;"> 1999-2012 Werner Schweer and Others. </span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Published under the GNU General Public License</span></p></body></html> - - About MuseScore - - - - Copy revision number - - AboutBoxDialog @@ -46,17 +46,6 @@ p, li { white-space: pre-wrap; } About MusicXML - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; font-size:10pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">MusicXML is an open file format for exchanging digital sheet music,</p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">supported by many applications. MusicXML is copyright © MakeMusic, Inc.</p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">All rights reserved. For more information see: <a href="http://www.makemusic.com/xml.html"><span style=" text-decoration: underline; color:#0000ff;">MakeMusic</span></a></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; text-decoration: underline; color:#0000ff;"></p></body></html> - - The MusicXML Public License: @@ -104,6 +93,17 @@ p, li { white-space: pre-wrap; } <p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p></body></html> + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans Serif'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">MusicXML is an open file format for exchanging digital sheet music,</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">supported by many applications. MusicXML is copyright © MakeMusic, Inc.</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">All rights reserved. For more information, see: <a href="http://www.makemusic.com/musicxml"><span style=" text-decoration: underline; color:#0000ff;">MakeMusic</span></a></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; text-decoration: underline; color:#0000ff;"></p></body></html> + + Accidental @@ -122,30 +122,14 @@ p, li { white-space: pre-wrap; } Album Name: - - album name - - - - remove current score - - Remove Score - - move current score down in list - - Down لأسفل - - move current score up in list - - Up لأعلى @@ -154,18 +138,10 @@ p, li { white-space: pre-wrap; } Add Score - - create new album - - New جديد - - load an existing album - - Print Album @@ -198,6 +174,30 @@ p, li { white-space: pre-wrap; } MuseScore: Load Album + + Album Name + + + + Remove Current Score + + + + Move Current Score Down in List + + + + Move Current Score Up in List + + + + Create New Album + + + + Load an Existing Album + + ArticulationBase @@ -287,6 +287,14 @@ p, li { white-space: pre-wrap; } BarLine الخط الفاصل + + spanFrom: + + + + spanTo: + + BeamBase @@ -342,6 +350,37 @@ p, li { white-space: pre-wrap; } + + BoxBase + + Form + سياق + + + bottomMargin: + + + + topGap: + + + + bottomGap: + + + + leftMargin: + + + + topMargin: + + + + rightMargin: + + + BoxPropertiesBase @@ -1403,6 +1442,22 @@ failed: No. + + 1 + 1 + + + 2 + 2 + + + 3 + 3 + + + 4 + 4 + EditInstrumentBase @@ -2021,6 +2076,10 @@ failed: B -1 + + A 7 + + EditRaster @@ -2049,6 +2108,17 @@ failed: + + EditStaff + + Edit Short Name + + + + Edit Long Name + + + EditStaffBase @@ -2119,10 +2189,6 @@ failed: Type: طراز: - - Edit... - - ... ... @@ -2306,16 +2372,6 @@ failed: Select: - - Guitar (modern) - tablatture type - - - - Bass (modern) - tablature type - - Italian (historic) tablature type @@ -2326,10 +2382,6 @@ failed: tablature type - - Set - - Show Clef @@ -2454,6 +2506,68 @@ failed: Preview نظرة مسبّقة + + 6 strings (generic guitar) + tablatture type + + + + 4 strings (generic bass) + tablature type + + + + ukulele + + + + bandurria + + + + Custom + + + + Stem position: + + + + Above + فوق + + + Below + + + + Stem style: + + + + Beside staff + + + + Through staff + + + + Half notes: + + + + As short stem + + + + As slashed stem + + + + Show Rests + + EditStringDataBase @@ -2504,6 +2618,14 @@ failed: Chord تراكب + + Edit Plain Text + + + + Edit HTML Text + + EditStyleBase @@ -2585,6 +2707,10 @@ spatium unit ---------- spatium unit ---------- +spatium unit +---------- +spatium unit +---------- spatium unit مسافة @@ -3177,6 +3303,18 @@ p, li { white-space: pre-wrap; } Clef/Key right margin + + Pedal, Trill + + + + Pedal Line + + + + Trill Line + + EditTempoBase @@ -3457,6 +3595,65 @@ spatium unit + + InspectorBarLine + + Staff default + + + + Tick + + + + Tick alt. + + + + Short + + + + Short alt. + + + + Type: + طراز: + + + Measure default + + + + Normal + اعتيادى + + + Dashed + مقطّع + + + Dotted + + + + Double + + + + End + نهاية + + + Span: + + + + Custom + + + InspectorBeam @@ -3676,6 +3873,57 @@ spatium unit ... + + InspectorHairpin + + Form + سياق + + + Hairpin + شِدّة تدريجية + + + crescendo + + + + decrescendo + + + + Subtype: + + + + Dynamic Range: + + + + Velo. change: + + + + Staff + مدرج + + + Part + + + + SYstem + + + + reset value + + + + ... + ... + + InspectorImage @@ -3928,6 +4176,37 @@ spatium unit + + InspectorOttava + + Form + سياق + + + Ottava + أوكتاف + + + Subtype: + + + + 8va + أوكتاف أعلى + + + 15ma + أوكتافان أعلى + + + 8vb + أوكتاف أدنى + + + 15mb + أوكتافان أدنى + + InspectorRest @@ -3996,6 +4275,41 @@ spatium unit + + InspectorTrill + + Form + سياق + + + Trill + زغردة + + + Subtype: + + + + trill line + + + + up prall + + + + down prall + + + + prall prall + + + + wavy line + + + InspectorVBox @@ -4054,6 +4368,29 @@ spatium unit + + InspectorVolta + + Form + سياق + + + Volta + مرّة + + + Subtype: + + + + Open + + + + Closed + + + InstrumentDialogBase @@ -4108,24 +4445,24 @@ spatium unit Staves مدرجات - - visible - مرئى - Clef مفتاح - linked + Add Linked Staff - staff linked to previous + Visible + مرئى + + + Linked - Add Linked Staff + Staff Linked to Previous @@ -4955,6 +5292,34 @@ Would you like to locate %2 now? -> + + 1 + 1 + + + 2 + 2 + + + 4 + 4 + + + 8 + 8 + + + 16 + 16 + + + 32 + 32 + + + 64 + 64 + MeasuresDialogBase @@ -5130,10 +5495,6 @@ Would you like to locate %2 now? &About &بيان - - note entry mode - طور إدراج النغمات - edit mode طور التحديد @@ -5665,10 +6026,6 @@ Restore session? please choose a different name: - - Cannot read file: %1 error: %2 - - Overture / Score Writer Files <experimental> (*.ove *.scw);; @@ -5958,43 +6315,87 @@ please choose a different name: - Parts were successfully exported + Parts were successfully exported + + + + Continuous View + + + + About &MusicXML + + + + Report a bug + + + + MuseScore: Load Plugin + + + + MuseScore Plugin (*.qml);;All Files (*) + + + + MuseScore: Save Plugin + + + + MuseScore Plugin File (*.qml) + + + + &Plugins + + + + Find + + + + Dotted + + + + Tick 1 - Continuous View + Tick 2 - About &MusicXML + Short 1 - Report a bug + Short 2 - MuseScore: Load Plugin + plop - MuseScore Plugin (*.qml);;All Files (*) + scoop - MuseScore: Save Plugin + NOTE entry mode - MuseScore Plugin File (*.qml) + DRUM entry mode - &Plugins + TAB entry mode - Find + you cannot create an element @@ -6145,14 +6546,6 @@ please choose a different name: note head group مجموعة رؤوس النغمات - - OnTime: - - - - OffTime: - - invalid لا يصلح @@ -6169,6 +6562,10 @@ please choose a different name: Dot3 + + NoteEvents + + OmrPanel @@ -6761,6 +7158,14 @@ save before closing? Choose Images Directory + + MuseScore Shortcuts + + + + Print Shortcuts + + PrefsDialogBase @@ -7396,6 +7801,10 @@ save before closing? Define Shortcut + + Print + + Properties @@ -8042,26 +8451,6 @@ Sequencer will be disabled. Form سياق - - Slur - وصلة - - - Slur End - نهاية قوس - - - Staff: - مدرج: - - - Voice: - صوت: - - - Tick: - مقبض: - SlurPropertyBase @@ -8148,6 +8537,14 @@ Sequencer will be disabled. Form سياق + + CHORD + + + + NOTE + + SplitStaff @@ -9014,6 +9411,7 @@ altera Space + spatium unit مسافة @@ -9048,10 +9446,6 @@ altera frame line width ثخانة خط الإطار - - mm - ملليمتر - Margin: الحدّ: @@ -9084,6 +9478,10 @@ altera Background Color: + + sp + مسافة + TextStyleDialog @@ -9183,6 +9581,10 @@ please choose a different name: unstyled + + align vertical baseline + + TimeDialog @@ -9190,14 +9592,6 @@ please choose a different name: MuseScore: Time Signatures - - 4/4 common time - توقيع معتاد 4\4 - - - 2/2 alla breve - الوحدة الكبيرة - TimeDialogBase @@ -9359,10 +9753,6 @@ p, li { white-space: pre-wrap; } MuseScore: Transpose - - Transpose by Key - - Cb major / Ab minor @@ -9435,10 +9825,6 @@ p, li { white-space: pre-wrap; } Closest - - Transpose by Interval - - Perfect Unison @@ -9555,6 +9941,50 @@ p, li { white-space: pre-wrap; } Use double sharps and flats + + Transpose Chromatically + + + + By Key + + + + By Interval + + + + Transpose Diatonically + + + + Second + + + + Third + + + + Fourth + + + + Fifth + + + + Sixth + + + + Seventh + + + + Keep degree alterations + + TremoloBarDialog @@ -9783,10 +10213,6 @@ p, li { white-space: pre-wrap; } Save a Copy... حفظ نسخة... - - Reload - إعادة تحميل - Create new score تخليق مدوّنة جديدة @@ -10327,14 +10753,6 @@ p, li { white-space: pre-wrap; } Save a copy of the score in addition to the current file - - File reload - - - - Reload score from file - - File close @@ -10727,10 +11145,6 @@ p, li { white-space: pre-wrap; } Page: end - - Add slur - - Crescendo ارتفاع تدريجى فى الشِدة @@ -11007,14 +11421,6 @@ p, li { white-space: pre-wrap; } Picture - - Player seek to begin - - - - Player seek to end - - &Transpose... @@ -11199,14 +11605,6 @@ p, li { white-space: pre-wrap; } Diatonic up - - next score - - - - previous score - - Reset user settings @@ -11235,10 +11633,6 @@ p, li { white-space: pre-wrap; } Respell pitches - - Grace: 8nd after - - Pan score while playing on/off @@ -11303,10 +11697,6 @@ p, li { white-space: pre-wrap; } Master Palette... - - Insert Measure - - Toggle View Mode @@ -11475,10 +11865,6 @@ p, li { white-space: pre-wrap; } Save Style... - - Save Style As Default... - - Select All @@ -11551,6 +11937,162 @@ p, li { white-space: pre-wrap; } Plugin Creator + + Slur + وصلة + + + Add Slur + + + + Add Crescendo + + + + Grace: 8th after + + + + Play Previous Chord + + + + Play Previous Measure + + + + Play Next Chord + + + + Play Next Measure + + + + Player Seek to Begin + + + + Player Seek to End + + + + Save Style as Default... + + + + String above (TAB) + + + + Select string above (TAB only) + + + + String below (TAB) + + + + Select string below (TAB only) + + + + Fret 0 (TAB) + + + + Add fret 0 on current string (TAB only) + + + + Fret 1 (TAB) + + + + Add fret 1 on current string (TAB only) + + + + Fret 2 (TAB) + + + + Add fret 2 on current string (TAB only) + + + + Fret 3 (TAB) + + + + Add fret 3 on current string (TAB only) + + + + Fret 4 (TAB) + + + + Add fret 4 of current string (TAB only) + + + + Fret 5 (TAB) + + + + Add fret 5 of current string (TAB only) + + + + Fret 6 (TAB) + + + + Add fret 6 of current string (TAB only) + + + + Fret 7 (TAB) + + + + Add fret 7 of current string (TAB only) + + + + Fret 8 (TAB) + + + + Add fret 8 of current string (TAB only) + + + + Fret 9 (TAB) + + + + Add fret 9 of current string (TAB only) + + + + Staff Types... + + + + Staff type editor + + + + Show staff type editor + + + + Note anchored Textline + + articulation @@ -11693,6 +12235,10 @@ p, li { white-space: pre-wrap; } Line الخط + + Wavy line + + magTable diff --git a/share/locale/mscore_ast.ts b/share/locale/mscore_ast.ts index 111f74967a068..777a0db3ca926 100644 --- a/share/locale/mscore_ast.ts +++ b/share/locale/mscore_ast.ts @@ -23,7 +23,7 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Support MuseScore with </span><a href="http://www.musescore.org/en/donate"><span style=" font-size:10pt; text-decoration: underline; color:#0000ff;">your donation</span></a></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Arial'; font-size:10pt;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Copyright </span><span style=" font-size:10pt;">©</span><span style=" font-family:'Arial'; font-size:10pt;"> 1999-2009 Werner Schweer and Others. </span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Copyright </span><span style=" font-size:10pt;">©</span><span style=" font-family:'Arial'; font-size:10pt;"> 1999-2012 Werner Schweer and Others. </span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Published under the GNU General Public License</span></p></body></html> @@ -31,17 +31,17 @@ p, li { white-space: pre-wrap; } AboutBoxDialog - + Unstable Prerelease for Version: - + Version: - + Revision: %1 @@ -61,7 +61,7 @@ p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'Sans Serif'; font-size:10pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">MusicXML is an open file format for exchanging digital sheet music,</p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">supported by many applications. MusicXML is copyright © MakeMusic, Inc.</p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">All rights reserved. For more information see: <a href="http://www.makemusic.com/xml.html"><span style=" text-decoration: underline; color:#0000ff;">MakeMusic</span></a></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">All rights reserved. For more information, see: <a href="http://www.makemusic.com/musicxml"><span style=" text-decoration: underline; color:#0000ff;">MakeMusic</span></a></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; text-decoration: underline; color:#0000ff;"></p></body></html> @@ -137,57 +137,57 @@ p, li { white-space: pre-wrap; } - album name + Album Name - remove current score + Remove Current Score - - Remove Score + + Move Current Score Down in List - - move current score down in list + + Move Current Score Up in List - - Down + + Create New Album - - move current score up in list + + Load an Existing Album - - Up + + Remove Score - - Add Score + + Down - - create new album + + Up - - New + + Add Score - - load an existing album + + New @@ -206,28 +206,28 @@ p, li { white-space: pre-wrap; } - + MuseScore Album Files (*.album);; - - + + All Files (*) - + MuseScore Files (*.mscz *.mscx *.msc);; - + MuseScore: Add Score - + MuseScore: Load Album @@ -340,6 +340,16 @@ p, li { white-space: pre-wrap; } BarLine + + + spanFrom: + + + + + spanTo: + + BeamBase @@ -407,6 +417,44 @@ p, li { white-space: pre-wrap; } + + BoxBase + + + Form + + + + + bottomMargin: + + + + + topGap: + + + + + bottomGap: + + + + + leftMargin: + + + + + topMargin: + + + + + rightMargin: + + + BoxPropertiesBase @@ -497,17 +545,17 @@ spatium unit - + Arpeggio - + Tremolo - + Glissando @@ -1435,12 +1483,12 @@ spatium unit Clef - + Hide courtesy clef - + Show courtesy clef @@ -1603,29 +1651,29 @@ spatium unit - + Open File - + failed: - + MuseScore: Open File - + Write File failed: - + MuseScore: Write Drumset @@ -1658,7 +1706,7 @@ failed: - + Note Head: @@ -1693,47 +1741,67 @@ failed: - + + 1 + + + + + 2 + + + + + 3 + + + + + 4 + + + + Shortcut: - + A - + B - + C - + D - + E - + F - + G - + -- @@ -1975,7 +2043,6 @@ failed: - A 8 @@ -2034,6 +2101,11 @@ failed: Ab 7 + + + A 7 + + Bb 7 @@ -2560,6 +2632,19 @@ failed: + + EditStaff + + + Edit Short Name + + + + + Edit Long Name + + + EditStaffBase @@ -2588,228 +2673,223 @@ failed: - - Edit... - - - - + Part Properties - + Instrument: - + Change Instrument... - + Part Name: - + Long Instrument Name: - + Short Instrument Name: + - - - - - + + + + ... - + Usable Pitch Range: - + Amateur: - - + + - - + Professional: - + Play Transposition: - + 0 - Perfect Unison - + 1 - Augmented Unison - + 0 - Diminished Second - + 1 - Minor Second - + 2 - Major Second - + 3 - Augmented Second - + 2 - Diminished Third - + 3 - Minor Third - + 4 - Major Third - + 5 - Augmented Third - + 4 - Diminished Fourth - + 5 - Perfect Fourth - + 6 - Augmented Fourth - + 6 - Diminished Fifth - + 7 - Perfect Fifth - + 8 - Augmented Fifth - + 7 - Diminished Sixth - + 8 - Minor Sixth - + 9 - Major Sixth - + 10 - Augmented Sixth - + 9 - Diminished Seventh - + 10 - Minor Seventh - + 11 - Major Seventh - + 12 - Augmented Seventh - + 11 - Diminished Octave - + 12 - Perfect Octave - + Number of strings: - + Edit string data... - + +octave - + up - + down @@ -2838,8 +2918,8 @@ failed: - - + + sp @@ -2850,13 +2930,13 @@ failed: - + Key Signature - + Ledger Lines @@ -2886,34 +2966,17 @@ failed: - - Guitar (modern) - tablatture type - - - - - Bass (modern) - tablature type - - - - + Italian (historic) tablature type - + French (historic) tablature type - - - Set - - Show Clef @@ -2929,153 +2992,231 @@ failed: Show Time Sign. + + + 6 strings (generic guitar) + tablatture type + + + + + 4 strings (generic bass) + tablature type + + + + + ukulele + + + + + bandurria + + + + + Custom + + - + « Full Configur. - + Upside Down - + Quick Presets » - + Fret Marks - - + + Font: - - + + Size: - - + + pt - - + + Vert. Offset: - + Marks are: - + Numbers - + Letters - + Marks are drawn: - + On Lines - + Above Lines - + Lines are: - + Continuous - + Broken - + Note Values - + Shown as: - + + None - + Note Symbols - + Stems and beams - + + Stem position: + + + + + Above + + + + + Below + + + + + Stem style: + + + + + Beside staff + + + + + Through staff + + + + + Half notes: + + + + + As short stem + + + + + As slashed stem + + + + + Show Rests + + + + Preview - + Create new tablature type - + PERCUSSION STAFF - + Create new percussion type - + Save - + Load - + Stemless @@ -3140,6 +3281,16 @@ failed: Chord + + + Edit Plain Text + + + + + Edit HTML Text + + EditStyleBase @@ -3150,162 +3301,164 @@ failed: - + Score - - - + + + Page - + System - + Measure - + Barlines - + Notes - + Arpeggios - + Beams - + Slurs/Ties - + Sizes - + Hairpins - - + + Chordnames - - + + Articulations, Ornaments - + Voices - + Musical symbols font: - + Display in Concert Pitch - + Create Multi Measure Rests - + Minumum width of measure: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + sp spatium unit ---------- @@ -3331,96 +3484,100 @@ spatium unit ---------- spatium unit ---------- +spatium unit +---------- +spatium unit +---------- spatium unit - + Minimum Number of empty measures: - + Hide Empty Staves - + Music upper margin - + Music lower margin - + Staff distance - + Lyrics upper margin - + Lyrics lower margin - + V-frame upper margin - + V-frame lower margin - - - - - - + + + + + + % - + Last system fill threshold - + Create clef for all systems - + Create key sig for all systems - + Create time signatures - + Create courtesy time signatures - + Create courtesy key signatures - + Create courtesy clefs @@ -3431,447 +3588,454 @@ spatium unit - + Clefs - - + + Accidentals - + Don't hide empty staves in first system - + Grand staff distance - + Vertical-frame upper margin - + Vertical-frame lower margin - + Lyrics line height - + Header Text - + show header also on first page - + use odd even page header - - + + left - - + + middle - - + + right - - - + + + edit even page header - - - + + + add odd page header - + Footer Text - + show footer also on first page - + use odd even page footer - - - + + + edit even page footer - - - + + + edit odd page header - + + Pedal, Trill + + + + Min. System distance - + Max. System distance - + System Bracket Distance: - + Akkolade Distance: - + Fix Number of Measures/System: - + Fix Measure Width - + System Bracket Width: - + Akkolade Width: - + minimum Measure width - + Spacing (1=tight) - + Min. note distance - + Clef left margin - + Key sig. left margin - + Time sig. left margin - + Clef-barline distance - + Staff line width - + Show repeat bar tips ("winged" repeats) - + Barline at start of single staff - + Barline at start of multiple staves - + Bar width: - + End bar width: - + End bar distance: - + Double bar width: - + Double bar distance: - + shorten stems - + Progression - + Shortest stem - + Accidental note distance - + Accidental distance - + Note dot distance - + Dot dot distance - + Ledger line width - + Ledger line length - + Default TAB Clef - + Clef1 - + Clef2 - + Distance to note - + Line width - + Hook length - - - + + + Line width: - + Height: - + Line break height: - + Volta - - - + + + + + default Y-position: - - + + Hook height: - + Ottava - + Font: - + Size: - + pt - + Vertical position: - + Line height: - + Style - + Modern - + Historic - + note head distance - + articulation distance - + staff distance - + Accidental - + semitones offset - + cents offset - + Stem Direction in Multi-Voice Context - - - - + + + + up - - - - + + + + down - - - + + + show first @@ -3881,37 +4045,37 @@ spatium unit - - + + Figured Bass - - + + odd/even - - + + styled - - + + even - - + + odd - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -3924,168 +4088,178 @@ p, li { white-space: pre-wrap; } - + Measure Numbers - + all staffs - + every system - + interval - + Barline-note margin - + Note-barline margin - + Clef/Key right margin - + Beam width - - + + spaces - + Beam distance - + beam width units - + Minimum length - + Minimum slope - + Maximum slope - + line width at end - + line width middle - + bow - + dotted line width - + Small staff size - + Small note size - + Grace note size - + Small clef size - + + Pedal Line + + + + + Trill Line + + + + Use German names - + Chord description file - - - - - - - - - - - - - + + + + + + + + + + + + + ... - - - + + + sp space unit - + Voice 1 - + Voice 2 - + Voice 3 - + Voice 4 @@ -4248,7 +4422,7 @@ p, li { white-space: pre-wrap; } GreendotButton - + record @@ -4345,7 +4519,7 @@ p, li { white-space: pre-wrap; } Inspector - + Inspector @@ -4432,6 +4606,79 @@ spatium unit + + InspectorBarLine + + + Staff default + + + + + Tick + + + + + Tick alt. + + + + + Short + + + + + Short alt. + + + + + Type: + + + + + Measure default + + + + + Normal + + + + + Dashed + + + + + Dotted + + + + + Double + + + + + End + + + + + Span: + + + + + Custom + + + InspectorBeam @@ -4464,13 +4711,13 @@ spatium unit - - + + ... - + User Position @@ -4586,7 +4833,7 @@ spatium unit InspectorClef - + Show Courtesy Clef @@ -4720,15 +4967,80 @@ spatium unit - InspectorImage + InspectorHairpin - + Form - - Image + + Hairpin + + + + + crescendo + + + + + decrescendo + + + + + Subtype: + + + + + Dynamic Range: + + + + + Velo. change: + + + + + Staff + + + + + Part + + + + + SYstem + + + + + + reset value + + + + + + ... + + + + + InspectorImage + + + Form + + + + + Image @@ -4773,12 +5085,12 @@ spatium unit InspectorKeySig - + Show Courtesy Time Signature - + Show Naturals @@ -5017,45 +5329,83 @@ spatium unit - + Select - + Dot1 - + Dot2 - + Dot3 - + Hook - + Stem - + Beam + + InspectorOttava + + + Form + + + + + Ottava + + + + + Subtype: + + + + + 8va + + + + + 15ma + + + + + 8vb + + + + + 15mb + + + InspectorRest - + Small @@ -5131,11 +5481,54 @@ spatium unit InspectorTimeSig - + Show Courtesy Time Signature + + InspectorTrill + + + Form + + + + + Trill + + + + + Subtype: + + + + + trill line + + + + + up prall + + + + + down prall + + + + + prall prall + + + + + wavy line + + + InspectorVBox @@ -5222,6 +5615,34 @@ spatium unit + + InspectorVolta + + + Form + + + + + Volta + + + + + Subtype: + + + + + Open + + + + + Closed + + + InstrumentDialogBase @@ -5276,22 +5697,22 @@ spatium unit - visible + Visible - - Clef + + Linked - - linked + + Staff Linked to Previous - - staff linked to previous + + Clef @@ -5415,49 +5836,49 @@ spatium unit - + MuseScore: Save Instrument List - + MuseScore Instruments (*.xml);; - + Open Instruments File - + failed: - + MuseScore: Open Instruments file - + Write Style failed: - + MuseScore: Write Style - + MuseScore: Load Instrument List - + MuseScore Instruments (*.xml);;All files (*) @@ -5524,22 +5945,22 @@ failed: KeySig - + Hide Courtesy Key Signature - + Show Courtesy Key Signature - + Hide Naturals - + Show Naturals @@ -6231,12 +6652,12 @@ Would you like to locate %2 now? - + visible - + stemless @@ -6310,57 +6731,92 @@ Would you like to locate %2 now? - + + 1 + + + + + 2 + + + + + 4 + + + + + 8 + + + + + 16 + + + + + 32 + + + + + 64 + + + + Other - + do not count - + Exclude from measure count - + break multi measure rest - + add to measure number - + layout stretch - + repeat count: - + goto previous measure - + <- - + goto next measure - + -> @@ -6445,7 +6901,7 @@ Would you like to locate %2 now? MenuNotes - + &Notes @@ -6496,466 +6952,460 @@ Would you like to locate %2 now? MuseScore - - + + MuseScore - + Save changes to the score "%1" before closing? - + MuseScore: Load Score - - + MuseScore: Load error - + Open failed: unknown file extension or broken file - + MusicXML Files (*.xml *.mxl);; - + MIDI Files (*.mid *.midi *.kar);; - + Muse Data Files (*.md);; - + Capella Files (*.cap);; - + BB Files <experimental> (*.mgu *.MGU *.sgu *.SGU);; - + PDF Files <experimental omr> (*.pdf);; - + Bagpipe Music Writer Files <experimental> (*.bww);; - + Guitar Pro (*.GTP *.GP3 *.GP4 *.GP5);; - - - + + + All Files (*) - + Untitled - - Cannot read file: %1 error: %2 - - - - + Overture / Score Writer Files <experimental> (*.ove *.scw);; - + Compressed MuseScore File (*.mscz) - + MuseScore File (*.mscx) - + MuseScore: Save Score - + MuseScore: Save File - - + + MuseScore: Load Style - + MuseScore Styles (*.mss);;All Files (*) - - - + + + MuseScore: Save Style - - - + + + MuseScore Style File (*.mss) - + SoundFont Files (*.sf2 *.SF2);;All (*) - + Choose Synthesizer SoundFont - + MuseScore: Choose Synthesizer SoundFont - + MuseScore Chord Style File (*.xml) - + ;;All Files (*) - - + + MuseScore: Load Chord Style - + MuseScore: Save Chord Style - + PDF Scan File (*.pdf);;All (*) - + Choose PDF Scan - + MuseScore: Choose PDF Scan - + OGG Audio File (*.ogg);;All (*) - + Choose Audio File - + MuseScore: Choose OGG Audio File - + PNG Bitmap Graphic (*.png);; - + PDF File (*.pdf);; - + Encapsulated PostScript File (*.eps);; - + Scalable Vector Graphic (*.svg);; - + MuseScore: Save Image - + MuseScore: Load Palette - + MuseScore Palette (*.mpal);;All Files (*) - + MuseScore: Save Palette - + MuseScore Palette (*.mpal) - + MuseScore: Load Plugin - + MuseScore Plugin (*.qml);;All Files (*) - + MuseScore: Save Plugin - + MuseScore Plugin File (*.qml) - + MuseScore: Load Drumset - + MuseScore Drumset (*.drm);;All Files (*) - + MuseScore: Save Drumset - + MuseScore Drumset File (*.drm) - - + + Uncompressed MuseScore Format (*.mscx) - - + + MusicXML Format (*.xml) - - + + Compressed MusicXML Format (*.mxl) - - + + Standard MIDI File (*.mid) - - + + PDF File (*.pdf) - - + + PostScript File (*.ps) - - + + PNG Bitmap Graphic (*.png) - - + + Scalable Vector Graphic (*.svg) - - + + Wave Audio (*.wav) - - + + Flac Audio (*.flac) - - + + Ogg Vorbis Audio (*.ogg) - - + + MP3 Audio (*.mp3) - + MuseScore: Export - + MuseScore Format (*.mscx) - + MuseScore: Save a Copy - - - - + + + + MuseScore: Save As - + All Supported Files (*.mscz *.mscx *.xml *.mxl *.mid *.midi *.kar *.md *.mgu *.MGU *.sgu *.SGU *.cap *.pdf *.ove *.scw *.bww *.GTP *.GP3 *.GP4 *.GP5);; - + All Supported Files (*.mscz *.mscx *.xml *.mxl *.mid *.midi *.kar *.md *.mgu *.MGU *.sgu *.SGU *.cap *.ove *.scw *.bww *.GTP *.GP3 *.GP4 *.GP5);; - + MuseScore Files (*.mscz *.mscx);; - - + + LilyPond Format (*.ly) - - - - + + + + cannot determine file type - - - + + + MuseScore: Export Parts - + Parts were successfully exported - - + + MuseScore Format (*.mscz) - - + + MuseScore: Save Selection - + MuseScore: Save Selected - + MuseScore: InsertImage - + All Supported Files (*.svg *.jpg *.png *.xpm);;Scalable vector graphics (*.svg);;JPEG (*.jpg);;PNG (*.png);;XPM (*.xpm);;All Files (*) - + Images (*.jpg *.gif *.png);;All (*) - + Grace Notes - + Clefs @@ -6965,227 +7415,227 @@ before closing? - + Chord Name - + Time Signatures - + 4/4 common time - + 2/2 alla breve - + Normal - + Dashed - + End Bar - + Double Bar - + Start Repeat - + End Repeat - + End-Start Repeat - + Arpeggio && Glissando - + Arpeggio - + Glissando - + Breath && Pauses - + Breath - + Caesura - + Brackets - + Square bracket - + Curly bracket - + Thumb - + 1/8 through stem - + 1/16 through stem - + 1/32 through stem - + 1/64 through stem - + 1/8 between notes - + 1/16 between notes - + 1/32 between notes - + 1/64 between notes - + Fall/Doit - + fall - + doit - + Segno Variation - + staff-text - + Staff Text - + system-text - + System Text - + Instrument - + Instrument Change - + 1. - + Lyrics Verse Number - + Tempo Text - + Staff spacer down - + Staff spacer up - + Staff Changes @@ -7195,7 +7645,7 @@ before closing? - + Articulations && Ornaments @@ -7205,152 +7655,187 @@ before closing? - + Fingering - + Fingering %1 - + String number %1 - + Note Heads - + Tremolo + + + Dotted + + + + + Tick 1 + + + + + Tick 2 + + + Short 1 + + + + + Short 2 + + + + Repeats - + Repeat measure sign - + Segno - + Coda - + Varied coda - + Codetta - + Fine - + Da Capo - + Da Capo al Fine - + Da Capo al Coda - + D.S al Coda - + D.S al Fine - + D.S - + To Coda - + Breaks && Spacer - + Line break - + Page break - + Section break - - &Measures + + plop - + + scoop + + + + + &Measures + + + + &Frames - + &Text - + set visible - + set invisible - + change staff type - + change instrument @@ -7360,242 +7845,252 @@ before closing? - + Symbols - + Fret Diagram - + &Create - + Text - + switch layer - + synthesizer - + audio track - + switch play mode - + File Operations - + Transport Tools - + Page View - + Concert Pitch - + Foto Mode - + Note Entry - + &File - + Open &Recent - + &Edit - + &Measure - + &Voices - + Pr&ofiles - + &Preferences... - + Add N&ote - + Add &Interval - + T&uplets - + &Plugins - + &Online Handbook - + About &Qt - + Check for &Update - + + NOTE entry mode + + + + + DRUM entry mode + + + + + TAB entry mode + + + + Find - + MuseScore: warning - + Cannot create tuplet: note value too short - + &Layout - + Continuous View - + &Style - + &Display - + &Help - + &About - + About &MusicXML - + Report a bug - + System - + no score - - note entry mode - - - - + edit mode - + play - + foto mode - + Go To: - + Bar %1 Beat %2.%3 - + The previous session quit unexpectedly. Restore session? @@ -7629,28 +8124,28 @@ please choose a different name: - + MuseScore: transpose - + There is nothing selected. Transpose whole score? - - + + MuseScore: save style - + MuseScore: load style - + Rehearsal Mark @@ -7692,6 +8187,11 @@ please choose a different name: Error %1 returned from MP3 encoder + + + you cannot create an element + + MyWebView @@ -7759,7 +8259,7 @@ please choose a different name: - + MuseScore: Create New Score @@ -7767,12 +8267,12 @@ please choose a different name: NewWizardPage1 - + Create New Score - + This wizard creates a new score @@ -7780,12 +8280,12 @@ please choose a different name: NewWizardPage2 - + Create New Score - + Define a set of instruments. Each instrument is represented by one or more staves @@ -7793,12 +8293,12 @@ please choose a different name: NewWizardPage3 - + Create New Score - + Create Time Signature @@ -7806,22 +8306,22 @@ please choose a different name: NewWizardPage4 - + Create New Score - + Select Template File: - + MuseScore: Select Template - + MuseScore Template Files (*.mscz *.mscx) @@ -7829,27 +8329,27 @@ please choose a different name: NewWizardPage5 - + Create New Score - + Select Key Signature and Tempo: - + Key Signature - + Tempo - + BPM: @@ -7872,33 +8372,28 @@ please choose a different name: - - OnTime: + + NoteEvents - - OffTime: - - - - - + + invalid - + Dot1 - + Dot2 - + Dot3 @@ -8084,27 +8579,27 @@ please choose a different name: PaletteBox - + Palettes - + Palette Operations - + Single Palette Mode - + Reset to factory defaults - + new Palette @@ -8112,42 +8607,42 @@ please choose a different name: PaletteBoxButton - + Palette Properties... - + Insert new Palette... - + Move Palette Up - + Move Palette Down - + Enable Editing - + Save Palette - + Load Palette - + Delete Palette @@ -8471,42 +8966,42 @@ please choose a different name: PluginCreator - + File Operations - + Edit Operations - + MuseScore Plugin Editor - - - + + + MuseScore - - - + + + Plugin "%1" has changes save before closing? - + untitled - + Manual @@ -8582,77 +9077,88 @@ save before closing? PreferenceDialog - + Choose Notepaper - + Choose Background Wallpaper - + Choose Default Style - + Choose Default Style for Parts - - + + Choose Instrument List - - + + Instrument List (*.xml) - + Choose Starting Score - + MuseScore Files (*.mscz *.mscx *.msc);;All (*) - + Choose Scores Directory - + Choose Styles Directory - + Choose Templates Directory - + Choose Plugins Directory - + Choose SoundFonts Directory - + Choose Images Directory + + + + MuseScore Shortcuts + + + + + Print Shortcuts + + PrefsDialogBase @@ -9385,7 +9891,7 @@ save before closing? - + Shortcut @@ -9458,47 +9964,52 @@ save before closing? - + + Print + + + + Plugins - + Name: - + Path: - + Version: - + Load - + Define Shortcut - + Update - + Automatic Update Check - + Check for new versions of MuseScore on startup @@ -9506,7 +10017,7 @@ save before closing? Properties - + small @@ -9542,7 +10053,7 @@ save before closing? QWidget - + MuseScore: Import Capella @@ -9569,13 +10080,13 @@ save before closing? - - - - + + - - + + + + @@ -9590,54 +10101,54 @@ save before closing? - + MuseScore: Save Album - + MuseScore Files (*.album);; - + Open Album File - + failed: - + MuseScore: Open Album file - + Write Album failed: - + MuseScore: Write Album - + Untitled - + MuseScore: file not found: - + MuseScore: load failed: @@ -9659,17 +10170,17 @@ failed: - + MuseScore: load Style failed: - + MuseScore: Load languages failed: - + MuseScore: invalid command @@ -9680,7 +10191,7 @@ failed: - + MuseScore: Import GuitarPro @@ -9688,7 +10199,7 @@ failed: RecordButton - + record @@ -9722,7 +10233,7 @@ failed: - + Staff @@ -9745,26 +10256,26 @@ failed: - - - - + + + + Set Invisible - - - - + + + + Set Visible - + Color... @@ -9776,9 +10287,9 @@ failed: - - - + + + Text Properties... @@ -9788,150 +10299,150 @@ failed: - + Bend Properties... - + TremoloBar Properties... - - + + Add - - - + + + Frame Properties... - - - + + + Tuplet Properties... - + Volta Properties... - + Line Properties... - + Time Signature Properties... - + MIDI Properties... - + Staff Text Properties... - + Tempo Properties... - + Change Instrument Properties... - + Edit Mode - + Slur Properties... - - + + Tuplet... - - + + Delete Tuplet - + Style... - + Chord Articulation... - + Marker Properties... - + Jump Properties... - + Section Break Properties... - + Change Instrument... - + Fret Diagram Properties... - + Glissando Properties... - + Dynamics - + Hairpin Properties... - + Harmony Properties... - - + + Staff Properties... @@ -9948,54 +10459,54 @@ failed: - + Measure - + Measure Properties... - + Please select the complete tuplet and retry the copy operation - + Please select the complete tuplet and retry the cut operation - + No chord/rest selected: please select a chord/rest and try again - + Cannot split measure here: cannot split tuplet - + No measures selected: please select range of measures to join and try again - + No staves found: please use the instruments dialog to first create some staves - + No Measure selected: please select a measure and try again @@ -10275,12 +10786,12 @@ Sequencer will be disabled. ShortcutCaptureDialog - + Shortcut conflicts with - + Undefined @@ -10335,31 +10846,6 @@ Sequencer will be disabled. Form - - - Slur - - - - - Slur End - - - - - Staff: - - - - - Voice: - - - - - Tick: - - SlurPropertyBase @@ -10465,6 +10951,16 @@ Sequencer will be disabled. Form + + + CHORD + + + + + NOTE + + SplitStaff @@ -10904,7 +11400,7 @@ altera - + MuseScore Startup Dialog @@ -11520,146 +12016,147 @@ altera - + relX: - + reference point offset in percent of parent width - - + + % - + Y: coordinate - + vertical offset to reference point - + relY: - + reference point offset in percent of parent height - + Unit: - + offset is absolute - + MM - + offset in Space units - + Space + spatium unit - + enable text frame - + Frame - + draw circled frame - + Circle - + draw boxed frame - + Box - + Width: - + frame line width - - - mm + + + sp - + Margin: - + frame inner margin - + Round: - + corner round - + Foreground Color: - - + + frame color - + Background Color: @@ -11722,67 +12219,72 @@ please choose a different name: - + align left - + align horizontal center - + align right - + align top - + align bottom - + + align vertical baseline + + + + align vertical center - + subscript - + superscript - + unordered list - + ordered list - + indent more - + indent less - + unstyled @@ -11794,16 +12296,6 @@ please choose a different name: MuseScore: Time Signatures - - - 4/4 common time - - - - - 2/2 alla breve - - TimeDialogBase @@ -11853,12 +12345,12 @@ please choose a different name: TimeSig - + Hide Courtesy Time Signature - + Show Courtesy Time Signature @@ -12001,259 +12493,306 @@ p, li { white-space: pre-wrap; } - - Transpose by Key - - - - + Cb major / Ab minor - + Gb major / Eb minor - + Db major / Bb minor - + Ab major / F minor - + Eb major / C minor - + Bb major / G minor - + F major / D minor - + C major / A minor - + G major / E minor - + D major / B minor - + A major / F# minor - + E major / C# minor - + B major / G# minor - + F# major / D# minor - + C# major / A# minor - - + + + Up - - + + + Down - + Closest - - Transpose by Interval - - - - + Perfect Unison - + Augmented Unison - + Diminished Second - + Minor Second - + Major Second - + Augmented Second - + Diminished Third - + Minor Third - + Major Third - + Augmented Third - + Diminished Fourth - + Perfect Fourth - + Augmented Fourth - + Diminished Fifth - + Perfect Fifth - + Augmented Fifth - + Diminished Sixth - + Minor Sixth - + Major Sixth - + Augmented Sixth - + Diminished Seventh - + Minor Seventh - + Major Seventh - + Augmented Seventh - + Diminished Octave - + Perfect Octave - + + Transpose Diatonically + + + + + Second + + + + + Third + + + + + Fourth + + + + + Fifth + + + + + Sixth + + + + + Seventh + + + + + Keep degree alterations + + + + Options - + Transpose key signatures - + + Transpose Chromatically + + + + + By Key + + + + + By Interval + + + + Transpose chord names - + Single sharps and flats only - + Use double sharps and flats @@ -12544,220 +13083,205 @@ p, li { white-space: pre-wrap; } - + File open - + Load score from file - + File save - + Save score to file - + File save as - + Save score under a new file name - + File save a copy - + Save a Copy... - + Save a copy of the score in addition to the current file - + Save a copy of the score in various formats - - - File reload - - - - - Reload - - - Reload score from file - - - - File close - + Close current score - + Create new score - + Print - + Print score - - + + Undo - + Undo last change - - + + Redo - + Redo last undo - + Cut - + Copy - + Paste - + Show instruments dialog - + Note input mode - - + + Note Input - + Enter unison above - + Export Parts - + Export Parts... - + Save a copy of the score's parts in various formats - + Unison Above - + Enter second above - + Second Above - + Enter third above - + Third Above - + Enter fourth above - + Fourth Above - + Enter fifth above - + Fifth Above - + Enter sixth above - + Sixth Above @@ -12772,1076 +13296,1057 @@ p, li { white-space: pre-wrap; } - + Enter octave above - + Octave Above - + Enter ninth above - + Ninth Above - + Enter second below - + Second Below - + Enter third below - + Third Below - + Enter fourth below - + Fourth Below - + Enter fifth below - + Fifth Below - + Enter sixth below - + Sixth Below - + Enter seventh below - + Seventh Below - + Enter octave below - + Octave Below - + Enter ninth below - + Ninth Below - + Enter note A - + A - + Enter note B - + B - + Enter note C - + C - + Enter note D - + D - + Enter note E - + E - + Enter note F - + F - + Enter note G - + G - + Add note A to chord - + Add A - + Add note B to chord - + Add B - + Add note C to chord - + Add C - + Add note D to chord - + Add D - + Add note E to chord - + Add E - + Add note F to chord - + Add F - + Add note G to chord - + Add G - + Insert note A - + Insert A - + Insert note B - + Insert B - + Insert note C - + Insert C - + Insert note D - + Insert D - + Insert note E - + Insert E - + Insert note F - + Insert F - + Insert note G - + Insert G - + Enter rest - - - + + + Rest - + Add staccato - + Staccato - + Add tenuto - + Tenuto - + Add trill - + Trill - + Add marcato - + Marcato - + Add more stretch to selected measure - + Less stretch - + Add less stretch to selected measure - - + + Reset Beam Mode - + Reset beam mode of selected measures - + Flip direction - + Pitch up - + Up - + Pitch up octave - + Up Octave - + Pitch up by an octave - + Select Section - + Note duration: double whole - - + + Double whole note - - + + Whole note - - + + Half note - - + + Quarter note - - + + 8th note - - + + 16th note - - + + 32nd note - - + + 64th note - + Note duration: 128th - - + + 128th note - + Add system text - + Add staff text - + Add title text - + Add subtitle text - + Add composer text - + Add lyricist text - + Lyricist - + Add chord name - + Show harmony properties for chord - + Add rehearsal mark - + Add picture - - Player seek to begin - - - - - Player seek to end - - - - + Pan score while playing on/off - + Pan - + &Transpose... - + Violin Clef - + Bass Clef - + Display in concert pitch - + next syllable - + previous syllable - + toggle visibility - + set visible - + set unvisible - + Show Unprintable - + Show Page Margins - + Manage parts - + Show inspector - + Reset measure stretch - + Reset user settings - + Note entry: whole rest - + Whole rest - + Note entry: half rest - + Half rest - + Note entry: quarter rest - + Quarter rest - + Note entry: 8th rest - + 8th rest - + Tempo Marking... - + Tempo Marking - + Text - + Add Frame Text - + Load Style... - + Save Style... - - Save Style As Default... - - - - + Select All - + Concert Pitch - + Info... - + Reset - + Debugger - + Reset Stretch - + Insert Special Characters - + Backspace - + Find - + Mirror note head - + General... - + Edit general style - + Text... - + Chords... - + Double duration - + Half duration - + Follow song - + Display documents side by side - + Display documents stacked - + Show OMR image - + Enharmonic up - + Parts... - + Enharmonic down - + Create new revision - + Toggle foto mode - + Enable horizontal raster - + Enable vertical raster - + Configure raster - + Re-Pitch Mode - + Replace pitches without changing rhythms - + Stack down - + Piano Keyboard - + Additional Media... - + Show media dialog - + Split Measure - + Join Measure - + Page Settings... - + Page Settings - + Album... - + Album - + Up Note in Chord - + Go to higher pitched note in chord - + Go to top note in chord - + Top Note in Chord - + Move up - + Pitch down - + Down - + Pitch down octave - + Down octave - + Pitch down by an octave - + Down Note in Chord - - + + Go to lower pitched note in chord - + File new - + Diatonic pitch down - + Diatonic down - + Go to bottom note in chord - + Bottom Note in Chord - - + + Move down - - + Previous chord - - + Previous measure - - + Next chord - - + Next measure - - + + Delete - + Delete contents of the selected measures - + Timewise Delete - + Delete element and duration - + Delete Selected Measures - + Append measures - + Append Measures... - + Insert measures - + Insert Measures... @@ -13851,971 +14356,1137 @@ p, li { white-space: pre-wrap; } - + Open... - + Save - + Save As... - + Export... - + Close - + New... - + Print... - + Instruments... - - + + Add More Stretch - + Add Less Stretch - - + + Slur + + + + + Add Slur + + + + + Add Crescendo + + + + Insert Horizontal Frame - - + Insert Vertical Frame - + Append Horizontal Frame - + Append Vertical Frame - + Duplet - + Triplet - + Quadruplet - + Quintuplet - + Sextuplet - + Septuplet - + Octuplet - + Nonuplet - + Other... - - + + Longa - - + + Flat - - + + + + Grace: 8th after + + + + + Enable sound while editing - + Palette - + Play Panel - + Navigator - + Mixer - + Transport - + Status Bar - + Quit - + Lyrics - + + String above (TAB) + + + + + Select string above (TAB only) + + + + + String below (TAB) + + + + + Select string below (TAB only) + + + + + Fret 0 (TAB) + + + + + Add fret 0 on current string (TAB only) + + + + + Fret 1 (TAB) + + + + + Add fret 1 on current string (TAB only) + + + + + Fret 2 (TAB) + + + + + Add fret 2 on current string (TAB only) + + + + + Fret 3 (TAB) + + + + + Add fret 3 on current string (TAB only) + + + + + Fret 4 (TAB) + + + + + Add fret 4 of current string (TAB only) + + + + + Fret 5 (TAB) + + + + + Add fret 5 of current string (TAB only) + + + + + Fret 6 (TAB) + + + + + Add fret 6 of current string (TAB only) + + + + + Fret 7 (TAB) + + + + + Add fret 7 of current string (TAB only) + + + + + Fret 8 (TAB) + + + + + Add fret 8 of current string (TAB only) + + + + + Fret 9 (TAB) + + + + + Add fret 9 of current string (TAB only) + + + + + Staff Types... + + + + + Staff type editor + + + + + Show staff type editor + + + + + Note anchored Textline + + + + Save Selection - + Save Selection... - + Save current selection as new score - + Export score - + Respell pitches - + Diatonic pitch up - + Diatonic up - + Add previous chord to selection - + Select to beginning of measure - + Add next chord to selection - + Move chord/rest right - + Move chord/rest left - + Select to end of measure - + Select to beginning of line - + Select to end of line - + Select to beginning of score - + Select to end of score - + Add staff above to selection - + Add staff below to selection - + Page: previous - + Page: next - + Page: top - + Page: end - - Add slur - - - - + Crescendo - + Decrescendo - + Escape - + Timewise delete - + Append One Measure - + Insert One Measure - - + Insert Text Frame - + Append Text Frame - - + Insert Fret Diagram Frame - + Other tuplets - + Note duration: longa - + Note duration: whole - + Note duration: half - + Note duration: quarter - + Note duration: 8th - + Note duration: 16th - + Note duration: 32nd - + Note duration: 64th - + Note duration: augmentation dot - - + + Augmentation dot - + Note duration: double augmentation dot - - + + Double augmentation dot - + Note duration: tie - - + + Tie - + Note entry: rest - + Note entry: double sharp - - + + Double sharp - + Note entry: sharp - - + + Sharp - + Note entry: natural - - + + Natural - + Note entry: flat - + Note entry: double flat - - + + Double flat - - - + + + Acciaccatura - - - + + + Appoggiatura - - - + + + Grace: quarter - - - + + + Grace: 16th - - - + + + Grace: 32nd - - - - Grace: 8nd after - - - - - - + + + Voice 1 - - - + + + Voice 2 - - - + + + Voice 3 - - - + + + Voice 4 - + MIDI input - - + + Enable MIDI input - + Editing sound on - + Beam start - + Beam middle - + No beam - + Beam 32nd sub - + Beam 64th sub - + Auto beam - + Feathered beam, slower - + Feathered beam, faster - + Transport toolbar - + Note input toolbar - + Zoom canvas - + + Play Previous Chord + + + + + Play Previous Measure + + + + + Play Next Chord + + + + + Play Next Measure + + + + + Player Seek to Begin + + + + + Player Seek to End + + + + + Save Style as Default... + + + + Full Screen - + Layers... - + MuseScore Connect - + Plugin Creator - + Inspector - + Show OMR Panel - + OmrPanel - + toggle metronome - + Figured Bass - + Next Score - + Previous Score - + Transpose Up - + Transpose Down - + Show master palette - + Master Palette... - - Insert Measure - - - - + Toggle View Mode - + Metronome - + System Text - + Staff Text - + Title - + Subtitle - + Composer - + Chord Name - + Harmony Properties - + Rehearsal Mark - + Picture - + Player play - + Play - + Start or stop playback - + Player rewind - + Rewind - + Rewind to start position - + Play repeats on/off - + Repeat - + Load style - + Save style - + Transpose - + Exchange Voice 1-2 - + Exchange Voice 1-3 - + Exchange Voice 1-4 - + Exchange Voice 2-3 - + Exchange Voice 2-4 - + Exchange Voice 3-4 - + Repeat last command - + Edit score info - + Toggle System Break - + Toggle Page Break - + Toggle Section Break - + Edit Element - + Show Invisible - + Show Frames - + Insert Special Characters... - + Zoom In - + Zoom Out - + Edit text style - + Edit chord style - + Select all similar elements - + All Similar Elements - + Select all similar elements in same staff - + All Similar Elements in Same Staff - + Synthesizer - + Repeat selection - + Documents Side by Side - + Documents Stacked - + Layers - - - next score - - - - - previous score - - articulation - + Bend - + Tremolo Bar @@ -14831,45 +15502,45 @@ p, li { white-space: pre-wrap; } file - - + + error at line %1 column %2: %3 - + internal error: could not open resource musicxml.xsd - + internal error: MusicXML schema is invalid - + error reading container.xml at line %1 column %2: %3 - + can't find rootfile - - + + this is not a valid MusicXML file - + could not open MusicXML file @@ -14886,100 +15557,105 @@ p, li { white-space: pre-wrap; } lines - + Lines - + Slur - + Crescendo - + Diminuendo - + Prima volta - + Seconda volta - + Terza volta - + Seconda volta 2 - + 8va - + 15ma - + 8vb - + 15mb - - - - + + + + Pedal - + Trill line - + Upprall line - + Downprall line - + Prallprall line - + + Wavy line + + + + Text line - + Line diff --git a/share/locale/mscore_be.ts b/share/locale/mscore_be.ts index 78b2ab6272921..c4ecac57c8970 100644 --- a/share/locale/mscore_be.ts +++ b/share/locale/mscore_be.ts @@ -23,9 +23,9 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Support MuseScore with </span><a href="http://www.musescore.org/en/donate"><span style=" font-size:10pt; text-decoration: underline; color:#0000ff;">your donation</span></a></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Arial'; font-size:10pt;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Copyright </span><span style=" font-size:10pt;">©</span><span style=" font-family:'Arial'; font-size:10pt;"> 1999-2009 Werner Schweer and Others. </span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Copyright </span><span style=" font-size:10pt;">©</span><span style=" font-family:'Arial'; font-size:10pt;"> 1999-2012 Werner Schweer and Others. </span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Published under the GNU General Public License</span></p></body></html> - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> @@ -34,23 +34,23 @@ p, li { white-space: pre-wrap; } <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Arial'; font-size:10pt;"></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Copyright </span><span style=" font-size:10pt;">©</span><span style=" font-family:'Arial'; font-size:10pt;"> 1999-2009 Werner Schweer і іншыя. </span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Published under the GNU General Public License</span></p></body></html> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Published under the GNU General Public License</span></p></body></html> {3C?} {4.0/?} {3.?} {40/?} {1"?} {2'?} {8.25p?} {400;?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {10p?} {10p?} {0000f?} {10p?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {10p?} {10p?} {0000f?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {10p?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {10p?} {10p?} {10p?} {1999-2012 ?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {10p?} AboutBoxDialog - + Unstable Prerelease for Version: Нестабільная папярэдняя сборка версіі: - + Version: Версія: - + Revision: %1 Рэдакцыя: %1 @@ -70,7 +70,7 @@ p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'Sans Serif'; font-size:10pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">MusicXML is an open file format for exchanging digital sheet music,</p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">supported by many applications. MusicXML is copyright © MakeMusic, Inc.</p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">All rights reserved. For more information see: <a href="http://www.makemusic.com/xml.html"><span style=" text-decoration: underline; color:#0000ff;">MakeMusic</span></a></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">All rights reserved. For more information, see: <a href="http://www.makemusic.com/musicxml"><span style=" text-decoration: underline; color:#0000ff;">MakeMusic</span></a></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; text-decoration: underline; color:#0000ff;"></p></body></html> @@ -144,36 +144,16 @@ p, li { white-space: pre-wrap; } Album Name: - - - album name - - - - - remove current score - - Remove Score - - - move current score down in list - - Down Уніз - - - move current score up in list - - Up @@ -184,19 +164,39 @@ p, li { white-space: pre-wrap; } Add Score - - - create new album - - New Новы + + + Album Name + + + + + Remove Current Score + + + + + Move Current Score Down in List + + + + + Move Current Score Up in List + + + + + Create New Album + + - load an existing album + Load an Existing Album @@ -215,28 +215,28 @@ p, li { white-space: pre-wrap; } - + MuseScore Album Files (*.album);; - - + + All Files (*) - + MuseScore Files (*.mscz *.mscx *.msc);; - + MuseScore: Add Score - + MuseScore: Load Album @@ -349,6 +349,16 @@ p, li { white-space: pre-wrap; } BarLine Тактавая рыса + + + spanFrom: + + + + + spanTo: + + BeamBase @@ -416,6 +426,44 @@ p, li { white-space: pre-wrap; } + + BoxBase + + + Form + Форма + + + + bottomMargin: + + + + + topGap: + + + + + bottomGap: + + + + + leftMargin: + + + + + topMargin: + + + + + rightMargin: + + + BoxPropertiesBase @@ -506,17 +554,17 @@ spatium unit Форма - + Arpeggio - + Tremolo Трэмала - + Glissando @@ -1464,12 +1512,12 @@ spatium unit - + Hide courtesy clef - + Show courtesy clef @@ -1612,31 +1660,31 @@ spatium unit несапраўдны - + Open File Адкрыць файл - + failed: не атрымалася: - + MuseScore: Open File MuseScore: Адкрыць файл - + Write File failed: - + MuseScore: Write Drumset MuseScore: Запіс набору ўдарных @@ -1669,7 +1717,7 @@ failed: Імя: - + Note Head: Галоўка ноты: @@ -1704,47 +1752,67 @@ failed: Голас па-змаўчанні - + + 1 + 1 + + + + 2 + 2 + + + + 3 + 3 + + + + 4 + 4 + + + Shortcut: Спалучэнне клавіш: - + A A - + B B - + C C - + D D - + E E - + F F - + G G - + -- -- @@ -1986,7 +2054,6 @@ failed: - A 8 @@ -2045,6 +2112,11 @@ failed: Ab 7 + + + A 7 + + Bb 7 @@ -2571,6 +2643,19 @@ failed: + + EditStaff + + + Edit Short Name + + + + + Edit Long Name + + + EditStaffBase @@ -2599,228 +2684,223 @@ failed: - - Edit... - - - - + Part Properties Уласцівасці партыі - + Instrument: Інструмент: - + Change Instrument... - + Part Name: - + Long Instrument Name: Длінная назва інструмента - + Short Instrument Name: Кароткая назва інструмента + - - - - - + + + + ... ... - + Usable Pitch Range: Магчымы дыяпазон - + Amateur: Аматар: - - + + - - - + Professional: Прафесіянал: - + Play Transposition: - + 0 - Perfect Unison - + 1 - Augmented Unison - + 0 - Diminished Second - + 1 - Minor Second - + 2 - Major Second - + 3 - Augmented Second - + 2 - Diminished Third - + 3 - Minor Third - + 4 - Major Third - + 5 - Augmented Third - + 4 - Diminished Fourth - + 5 - Perfect Fourth - + 6 - Augmented Fourth - + 6 - Diminished Fifth - + 7 - Perfect Fifth - + 8 - Augmented Fifth - + 7 - Diminished Sixth - + 8 - Minor Sixth - + 9 - Major Sixth - + 10 - Augmented Sixth - + 9 - Diminished Seventh - + 10 - Minor Seventh - + 11 - Major Seventh - + 12 - Augmented Seventh - + 11 - Diminished Octave - + 12 - Perfect Octave - + Number of strings: - + Edit string data... - + +octave - + up уверх - + down уніз @@ -2849,8 +2929,8 @@ failed: - - + + sp інт @@ -2876,19 +2956,19 @@ failed: - + Ledger Lines - + Key Signature - + Stemless Штылі @@ -2917,176 +2997,237 @@ failed: Select: + + + Italian (historic) + tablature type + + + + + French (historic) + tablature type + + - Guitar (modern) + 6 strings (generic guitar) tablatture type - Bass (modern) + 4 strings (generic bass) tablature type - Italian (historic) - tablature type + ukulele - French (historic) - tablature type + bandurria - - Set + + Custom - + « Full Configur. - + Upside Down - + Quick Presets » - + Fret Marks - - + + Font: - - + + Size: - - + + pt - - + + Vert. Offset: - + Marks are: - + Numbers Чысла - + Letters - + Marks are drawn: - + On Lines - + Above Lines - + Lines are: - + Continuous - + Broken - + Note Values - + Shown as: - + + None - + Note Symbols - + Stems and beams - + + Stem position: + + + + + Above + Зверху + + + + Below + + + + + Stem style: + + + + + Beside staff + + + + + Through staff + + + + + Half notes: + + + + + As short stem + + + + + As slashed stem + + + + + Show Rests + + + + Preview - + Create new tablature type - + PERCUSSION STAFF - + Create new percussion type - + Save Захаваць - + Load Загрузіць @@ -3151,6 +3292,16 @@ failed: Chord Акорд + + + Edit Plain Text + + + + + Edit HTML Text + + EditStyleBase @@ -3161,68 +3312,68 @@ failed: - + Score Партытура - - - + + + Page Старонка - + System Сістэма - + Measure Такт - + Barlines Тактавыя рысы - + Notes Ноты - + Arpeggios Арпеджыо - + Beams Вязкі - + Sizes Памеры - + Hairpins - - + + Chordnames Назвы аккордаў @@ -3233,13 +3384,13 @@ failed: - + Clefs Ключы - + Slurs/Ties @@ -3249,102 +3400,104 @@ failed: - - + + Figured Bass - - + + Articulations, Ornaments Артыкуляцыя, ўпрыгажэнні - - + + Accidentals Альтэрацыі - + Voices Галасы - + Musical symbols font: - + Display in Concert Pitch Паказаць у канцэртным строі - + Create Multi Measure Rests Стварыць мнагатактавую паўзу - + Minumum width of measure: Мінімальная шырыня такту: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + sp spatium unit ---------- @@ -3370,358 +3523,367 @@ spatium unit ---------- spatium unit ---------- +spatium unit +---------- +spatium unit +---------- spatium unit інт - + Minimum Number of empty measures: Мінімальная колькасць пустых тактаў - + Hide Empty Staves Схаваць пустыя такты - + Don't hide empty staves in first system - + Music upper margin Верхні водступ - + Music lower margin Ніжні водступ - + Staff distance Водступ нотаносца - + Lyrics upper margin Верхні водступ слоў - + Lyrics lower margin Ніжні водступ слоў - + V-frame upper margin Верхні водступ В-рамкі - + V-frame lower margin Ніжні водступ В-рамкі - - - - - - + + + + + + % % - + Last system fill threshold Парог запаўнення апошняй сістэмы - + Create clef for all systems Стварыць ключ для ўсіх сістэм - + Create key sig for all systems Стварыць ключавыя знакі для ўсіх сістэм - + Create time signatures Стварыць абазначэнне памеру - + Grand staff distance - + Vertical-frame upper margin - + Vertical-frame lower margin - + Create courtesy clefs - + Create courtesy time signatures - + Create courtesy key signatures - + Lyrics line height - + Header Text - + show header also on first page - + System Bracket Distance: Водступ акалады - + Fix Number of Measures/System: Фіксаваная колькасць тактаў/сістэм: - + Fix Measure Width Фіксаваная шырыня такту - + Spacing (1=tight) Інтэрвал (1=прутка) - + Min. note distance Мін. водступ ноты - + Clef left margin Левы водступ ключа - + Key sig. left margin Левы водступ ключ. знакаў - + Time sig. left margin Левы водступ памеру - + Clef-barline distance - + Show repeat bar tips ("winged" repeats) - + Barline at start of single staff Тактавая рыса ў пачатку адзіночнага нотаносцу - + Barline at start of multiple staves Тактавая рыса у пачатку неадзіночнага стану - + shorten stems скарочаныя штылі - + Progression - + Shortest stem - + Accidental note distance Адлегласць альтэрыраванай ноты - + Accidental distance Адлегласць альтэрацыі - + Note dot distance Адлегласць точкі ноты - + Dot dot distance Адлегласць падвоенай точкі - + Ledger line width - + Distance to note Адлегласць ад ноты - + Line width Шырыня лініі - + Hook length - - - + + + show first - + + Pedal, Trill + + + + Min. System distance - + Max. System distance - + use odd even page header - - + + odd/even - - + + styled - - + + left - - + + middle - - + + right - - + + even - - - + + + edit even page header - - + + odd - - - + + + add odd page header - + Footer Text - + show footer also on first page - + use odd even page footer - - - + + + edit odd page header - - - + + + edit even page footer - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -3734,369 +3896,381 @@ p, li { white-space: pre-wrap; } - + Measure Numbers Нумары тактаў - + all staffs усі станы - + every system кожная сістэма - + interval інтэрвал - + Akkolade Distance: - + System Bracket Width: - + Akkolade Width: - + minimum Measure width - + Barline-note margin - + Note-barline margin - + Clef/Key right margin - + Staff line width - + Bar width: - + End bar width: - + End bar distance: - + Double bar width: - + Double bar distance: - + Ledger line length - + Default TAB Clef - + Clef1 - + Clef2 - + Beam width Шырыня вязкі - - + + spaces прасторы - + Beam distance Адлегласць вязкі - + beam width units адзінка шырыні вязкі - + Minimum length Мінімальная даўжыня - + Minimum slope Мінімальны нахіл - + Maximum slope Максімальны нахіл - + line width at end - + line width middle - + bow - + dotted line width - + Small staff size Памер маленькага стану - + Small note size Памер маленькай ноты - + Grace note size Памер фаршлагу - + Small clef size Памер маленькага ключа - - - + + + Line width: - + Height: - + Line break height: - - - + + + + + default Y-position: - + Volta Вольта - - + + Hook height: - + Ottava - + + Pedal Line + + + + + Trill Line + + + + Font: - + Size: - + pt - + Vertical position: - + Line height: - + Style - + Modern - + Historic - + note head distance - + articulation distance - + staff distance - + Accidental - + semitones offset - + cents offset - + Stem Direction in Multi-Voice Context - - - - + + + + up уверх - - - - + + + + down уніз - + Use German names Выкарыстоўваць нямецкія назвы - + Chord description file Файл апісання акорду - - - - - - - - - - - - - + + + + + + + + + + + + + ... ... - - - + + + sp space unit інт - + Voice 1 Голас I - + Voice 2 Голас II - + Voice 3 Голас III - + Voice 4 Голас IV @@ -4259,7 +4433,7 @@ p, li { white-space: pre-wrap; } GreendotButton - + record запісь @@ -4356,7 +4530,7 @@ p, li { white-space: pre-wrap; } Inspector - + Inspector @@ -4443,6 +4617,79 @@ spatium unit + + InspectorBarLine + + + Staff default + + + + + Tick + + + + + Tick alt. + + + + + Short + + + + + Short alt. + + + + + Type: + + + + + Measure default + + + + + Normal + + + + + Dashed + + + + + Dotted + + + + + Double + + + + + End + Канец + + + + Span: + + + + + Custom + + + InspectorBeam @@ -4475,13 +4722,13 @@ spatium unit - - + + ... ... - + User Position @@ -4597,7 +4844,7 @@ spatium unit InspectorClef - + Show Courtesy Clef @@ -4731,32 +4978,97 @@ spatium unit - InspectorImage + InspectorHairpin - + Form Форма - - Image - Выява + + Hairpin + - - Size + + crescendo - - Scale: + + decrescendo - - - % - % + + Subtype: + + + + + Dynamic Range: + + + + + Velo. change: + + + + + Staff + Нотаносец + + + + Part + + + + + SYstem + + + + + + reset value + + + + + + ... + ... + + + + InspectorImage + + + Form + Форма + + + + Image + Выява + + + + Size + + + + + Scale: + + + + + + % + % @@ -4784,12 +5096,12 @@ spatium unit InspectorKeySig - + Show Courtesy Time Signature - + Show Naturals @@ -5028,45 +5340,83 @@ spatium unit - + Select - + Dot1 - + Dot2 - + Dot3 - + Hook - + Stem - + Beam + + InspectorOttava + + + Form + Форма + + + + Ottava + + + + + Subtype: + + + + + 8va + 8va + + + + 15ma + 15ma + + + + 8vb + 8vb + + + + 15mb + 15mb + + InspectorRest - + Small Маленькі @@ -5142,11 +5492,54 @@ spatium unit InspectorTimeSig - + Show Courtesy Time Signature + + InspectorTrill + + + Form + Форма + + + + Trill + + + + + Subtype: + + + + + trill line + + + + + up prall + + + + + down prall + + + + + prall prall + + + + + wavy line + + + InspectorVBox @@ -5233,6 +5626,34 @@ spatium unit + + InspectorVolta + + + Form + Форма + + + + Volta + Вольта + + + + Subtype: + + + + + Open + + + + + Closed + + + InstrumentDialogBase @@ -5287,24 +5708,24 @@ spatium unit - visible - бачны - - - - Clef - Ключ + Visible + Бачны - linked + Linked - staff linked to previous + Staff Linked to Previous + + + Clef + Ключ + Load @@ -5426,51 +5847,51 @@ spatium unit - + MuseScore: Save Instrument List MuseScore: Захаваць спіс інструментаў - + MuseScore Instruments (*.xml);; MuseScore Instruments (*.xml);; - + Open Instruments File Адчыніць файл інструментаў - + failed: не атрымалася: - + MuseScore: Open Instruments file MuseScore: адчыніць файл інструментаў - + Write Style failed: - + MuseScore: Write Style MuseScore: стварыць стыль - + MuseScore: Load Instrument List MuseScore: Загрузіць спіс інструментаў - + MuseScore Instruments (*.xml);;All files (*) MuseScore інструменты (*.xml);;Усі файлы (*) @@ -5577,22 +5998,22 @@ failed: - + Hide Courtesy Key Signature - + Show Courtesy Key Signature - + Hide Naturals - + Show Naturals @@ -6244,12 +6665,12 @@ Would you like to locate %2 now? - + visible бачны - + stemless штылі @@ -6323,57 +6744,92 @@ Would you like to locate %2 now? - + + 1 + 1 + + + + 2 + 2 + + + + 4 + 4 + + + + 8 + 8 + + + + 16 + 16 + + + + 32 + 32 + + + + 64 + 64 + + + Other Другі - + do not count - + Exclude from measure count - + goto previous measure - + <- - + goto next measure - + -> - + break multi measure rest - + add to measure number - + layout stretch - + repeat count: @@ -6458,7 +6914,7 @@ Would you like to locate %2 now? MenuNotes - + &Notes @@ -6509,461 +6965,455 @@ Would you like to locate %2 now? MuseScore - + Save changes to the score "%1" before closing? - + PDF Files <experimental omr> (*.pdf);; - + Overture / Score Writer Files <experimental> (*.ove *.scw);; - + Bagpipe Music Writer Files <experimental> (*.bww);; - + Guitar Pro (*.GTP *.GP3 *.GP4 *.GP5);; - - - + + + All Files (*) - + Compressed MuseScore File (*.mscz) - + MuseScore File (*.mscx) - + MuseScore: Save Score - + MuseScore: Save File - + MuseScore: Load Score MuseScore: Загрузіць партытуру - - + + MuseScore: Load Style - + MuseScore Styles (*.mss);;All Files (*) - - - + + + MuseScore: Save Style - - - + + + MuseScore Style File (*.mss) - + SoundFont Files (*.sf2 *.SF2);;All (*) - + Choose Synthesizer SoundFont - + MuseScore: Choose Synthesizer SoundFont - + MuseScore Chord Style File (*.xml) - + ;;All Files (*) - - + + MuseScore: Load Chord Style - + MuseScore: Save Chord Style - + PDF Scan File (*.pdf);;All (*) - + Choose PDF Scan - + MuseScore: Choose PDF Scan - + OGG Audio File (*.ogg);;All (*) - + Choose Audio File - + MuseScore: Choose OGG Audio File - + PNG Bitmap Graphic (*.png);; - + PDF File (*.pdf);; - + Encapsulated PostScript File (*.eps);; - + Scalable Vector Graphic (*.svg);; - + MuseScore: Save Image - + MuseScore: Load Palette - + MuseScore Palette (*.mpal);;All Files (*) - + MuseScore: Save Palette - + MuseScore Palette (*.mpal) - + MuseScore: Load Plugin - + MuseScore Plugin (*.qml);;All Files (*) - + MuseScore: Save Plugin - + MuseScore Plugin File (*.qml) - + MuseScore: Load Drumset MuseScore: Загрузка набору ўдарных - + MuseScore Drumset (*.drm);;All Files (*) - + MuseScore: Save Drumset MuseScore: Захаваць набор ударных - + MuseScore Drumset File (*.drm) - - + + Uncompressed MuseScore Format (*.mscx) - - + + MusicXML Format (*.xml) - - + + Compressed MusicXML Format (*.mxl) - - + + Standard MIDI File (*.mid) - - + + PDF File (*.pdf) - - + + PostScript File (*.ps) - - + + PNG Bitmap Graphic (*.png) - - + + Scalable Vector Graphic (*.svg) - - + + LilyPond Format (*.ly) - - + + Wave Audio (*.wav) - - + + Flac Audio (*.flac) - - + + Ogg Vorbis Audio (*.ogg) - - + + MP3 Audio (*.mp3) - + MuseScore: Export - - - - + + + + MuseScore: Save As - - - - + + + + cannot determine file type - - - + + + MuseScore: Export Parts - + Parts were successfully exported - - + + MuseScore Format (*.mscz) - + MuseScore Format (*.mscx) - + MuseScore: Save a Copy - - + + MuseScore: Save Selection - + MuseScore: Save Selected - + MuseScore: InsertImage - + All Supported Files (*.svg *.jpg *.png *.xpm);;Scalable vector graphics (*.svg);;JPEG (*.jpg);;PNG (*.png);;XPM (*.xpm);;All Files (*) - + Images (*.jpg *.gif *.png);;All (*) - - + MuseScore: Load error - - Cannot read file: %1 error: %2 - - - - - + + MuseScore - + All Supported Files (*.mscz *.mscx *.xml *.mxl *.mid *.midi *.kar *.md *.mgu *.MGU *.sgu *.SGU *.cap *.pdf *.ove *.scw *.bww *.GTP *.GP3 *.GP4 *.GP5);; - + All Supported Files (*.mscz *.mscx *.xml *.mxl *.mid *.midi *.kar *.md *.mgu *.MGU *.sgu *.SGU *.cap *.ove *.scw *.bww *.GTP *.GP3 *.GP4 *.GP5);; - + MuseScore Files (*.mscz *.mscx);; - + MusicXML Files (*.xml *.mxl);; - + MIDI Files (*.mid *.midi *.kar);; - + Muse Data Files (*.md);; - + Capella Files (*.cap);; - + BB Files <experimental> (*.mgu *.MGU *.sgu *.SGU);; - + Untitled - + Grace Notes - + Clefs Ключы @@ -6978,267 +7428,302 @@ before closing? - + + Dotted + + + + + Tick 1 + + + + + Tick 2 + + + + + Short 1 + + + + + Short 2 + + + + Section break - + Staff spacer down - + Staff spacer up - + Thumb - + Fall/Doit - + fall - + doit - + + plop + + + + + scoop + + + + 1/8 through stem - + 1/16 through stem - + 1/32 through stem - + 1/64 through stem - + 1/8 between notes - + 1/16 between notes - + 1/32 between notes - + 1/64 between notes - + Square bracket - + Curly bracket - + staff-text - + Staff Text - + system-text - + System Text - + Instrument - + Instrument Change - + 1. 1. - + Lyrics Verse Number - + Tempo Text - + Chord Name - + Time Signatures - + 4/4 common time - + 2/2 alla breve - + Staff Changes - + set visible - + set invisible - + change staff type - + change instrument - + &Measures - + &Frames - + &Text - + Normal - + Dashed - + End Bar - + Double Bar - + Start Repeat - + End Repeat - + End-Start Repeat - + Arpeggio && Glissando - + Arpeggio - + Glissando - + Breath && Pauses - + Breath Дыханне - + Caesura - + Brackets - + Articulations && Ornaments @@ -7248,117 +7733,117 @@ before closing? Дынаміка - + Fingering - + Fingering %1 - + String number %1 - + Note Heads - + Tremolo Трэмала - + Repeats Паўторы - + Repeat measure sign - + Segno Segno - + Segno Variation - + Coda Coda - + Varied coda - + Codetta Codetta - + Fine Fine - + Da Capo - + Da Capo al Fine - + Da Capo al Coda - + D.S al Coda D.S al Coda - + D.S al Fine D.S al Fine - + D.S D.S - + To Coda To Coda - + Breaks && Spacer - + Line break - + Page break @@ -7368,275 +7853,285 @@ before closing? - + Symbols Сімвалы - + Fret Diagram - + &Create - + Text Тэкст - + File Operations Файлавыя аперацыі - + Transport Tools - + Continuous View - + Concert Pitch Канцэртны строй - + Note Entry Запіс нот - + &File - + Open &Recent - + &Edit - + &Layout - + &Style - + &Display - + &Help - + &About - + switch layer - + synthesizer - + audio track - + switch play mode - + Page View - + Foto Mode - + &Measure - + &Voices - + Pr&ofiles - + &Preferences... - + Add N&ote - + Add &Interval - + T&uplets - + &Plugins - + &Online Handbook - + About &Qt - + About &MusicXML - + Check for &Update - + Report a bug - + + NOTE entry mode + + + + + DRUM entry mode + + + + + TAB entry mode + + + + Find - + Open failed: unknown file extension or broken file - + System Сістэма - + no score - - note entry mode - рэжым запісу нот - - - + edit mode рэжым рэдагавання - + play граць - + foto mode - + Go To: - + Bar %1 Beat %2.%3 - + The previous session quit unexpectedly. Restore session? - + MuseScore: transpose - + There is nothing selected. Transpose whole score? - - + + MuseScore: save style - + MuseScore: load style - + MuseScore: warning - + Cannot create tuplet: note value too short - + Rehearsal Mark @@ -7705,6 +8200,11 @@ Restore session? please choose a different name: + + + you cannot create an element + + MyWebView @@ -7772,7 +8272,7 @@ please choose a different name: - + MuseScore: Create New Score @@ -7780,12 +8280,12 @@ please choose a different name: NewWizardPage1 - + Create New Score - + This wizard creates a new score @@ -7793,12 +8293,12 @@ please choose a different name: NewWizardPage2 - + Create New Score - + Define a set of instruments. Each instrument is represented by one or more staves @@ -7806,12 +8306,12 @@ please choose a different name: NewWizardPage3 - + Create New Score - + Create Time Signature @@ -7819,22 +8319,22 @@ please choose a different name: NewWizardPage4 - + Create New Score - + Select Template File: - + MuseScore: Select Template - + MuseScore Template Files (*.mscz *.mscx) @@ -7842,27 +8342,27 @@ please choose a different name: NewWizardPage5 - + Create New Score - + Select Key Signature and Tempo: - + Key Signature - + Tempo Тэмп - + BPM: BPM: @@ -7885,36 +8385,31 @@ please choose a different name: - - OnTime: + + NoteEvents - - + + invalid несапраўдны - + Dot1 - + Dot2 - + Dot3 - - - OffTime: - - OmrPanel @@ -8097,27 +8592,27 @@ please choose a different name: PaletteBox - + Palettes - + Palette Operations - + Single Palette Mode - + Reset to factory defaults - + new Palette @@ -8125,42 +8620,42 @@ please choose a different name: PaletteBoxButton - + Palette Properties... - + Insert new Palette... - + Move Palette Up - + Move Palette Down - + Enable Editing - + Save Palette - + Load Palette - + Delete Palette @@ -8484,42 +8979,42 @@ please choose a different name: PluginCreator - + File Operations Файлавыя аперацыі - + Edit Operations - + MuseScore Plugin Editor - - - + + + MuseScore - - - + + + Plugin "%1" has changes save before closing? - + untitled - + Manual @@ -8595,77 +9090,88 @@ save before closing? PreferenceDialog - + Choose Notepaper - + Choose Background Wallpaper - + Choose Default Style - + Choose Default Style for Parts - - + + Choose Instrument List - - + + Instrument List (*.xml) - + Choose Starting Score - + MuseScore Files (*.mscz *.mscx *.msc);;All (*) - + Choose Scores Directory - + Choose Styles Directory - + Choose Templates Directory - + Choose Plugins Directory - + Choose SoundFonts Directory - + Choose Images Directory + + + + MuseScore Shortcuts + + + + + Print Shortcuts + + PrefsDialogBase @@ -9399,7 +9905,7 @@ save before closing? - + Shortcut Спалучэнне клавіш @@ -9471,47 +9977,52 @@ save before closing? - + + Print + + + + Plugins - + Name: Імя: - + Path: - + Version: - + Load Загрузіць - + Define Shortcut - + Update - + Automatic Update Check - + Check for new versions of MuseScore on startup @@ -9519,7 +10030,7 @@ save before closing? Properties - + small маленькая галоўка ноты @@ -9555,7 +10066,7 @@ save before closing? QWidget - + MuseScore: Import Capella @@ -9582,13 +10093,13 @@ save before closing? - - - - + + - - + + + + @@ -9603,55 +10114,55 @@ save before closing? - + MuseScore: Save Album - + MuseScore Files (*.album);; - + Open Album File - + failed: не атрымалася: - + MuseScore: Open Album file - + Write Album failed: - + MuseScore: Write Album - + Untitled - + MuseScore: file not found: - + MuseScore: load failed: @@ -9673,17 +10184,17 @@ failed: - + MuseScore: load Style failed: - + MuseScore: Load languages failed: - + MuseScore: invalid command @@ -9694,7 +10205,7 @@ failed: - + MuseScore: Import GuitarPro @@ -9702,7 +10213,7 @@ failed: RecordButton - + record запісь @@ -9738,26 +10249,26 @@ failed: - - - - + + + + Set Invisible - - - - + + + + Set Visible - + Color... Колер... @@ -9769,9 +10280,9 @@ failed: - - - + + + Text Properties... Уласцівасці тэксту... @@ -9781,156 +10292,156 @@ failed: Уласцівасці артыкуляцыі... - + Bend Properties... - + TremoloBar Properties... - - + + Add Дадаць - - - + + + Frame Properties... - - - + + + Tuplet Properties... - + Volta Properties... - + Time Signature Properties... - + MIDI Properties... Уласцівасці MIDI - + Line Properties... - + Staff Text Properties... - + Tempo Properties... - + Change Instrument Properties... - + Edit Mode - + Slur Properties... - - + + Tuplet... - - + + Delete Tuplet - + Staff Нотаносец - + Measure Properties... Уласцівасці такту... - + Style... - + Chord Articulation... - + Marker Properties... Уласцівасці маркеру... - + Jump Properties... - + Section Break Properties... - + Change Instrument... - + Fret Diagram Properties... - + Glissando Properties... Уласцівасці глісанда... - + Dynamics Дынаміка - + Hairpin Properties... - + Harmony Properties... Уласцівасці гармоніі... @@ -9956,49 +10467,49 @@ failed: - + Please select the complete tuplet and retry the copy operation - + Please select the complete tuplet and retry the cut operation - + No chord/rest selected: please select a chord/rest and try again - + Cannot split measure here: cannot split tuplet - + No measures selected: please select range of measures to join and try again - + No staves found: please use the instruments dialog to first create some staves - + No Measure selected: please select a measure and try again - - + + Staff Properties... @@ -10009,7 +10520,7 @@ please select a measure and try again - + Measure Такт @@ -10289,12 +10800,12 @@ Sequencer will be disabled. ShortcutCaptureDialog - + Shortcut conflicts with - + Undefined @@ -10349,31 +10860,6 @@ Sequencer will be disabled. Form Форма - - - Slur - - - - - Slur End - - - - - Staff: - - - - - Voice: - - - - - Tick: - - SlurPropertyBase @@ -10479,6 +10965,16 @@ Sequencer will be disabled. Form Форма + + + CHORD + + + + + NOTE + + SplitStaff @@ -10918,7 +11414,7 @@ altera - + MuseScore Startup Dialog @@ -11534,146 +12030,147 @@ altera - + relX: - + reference point offset in percent of parent width - - + + % % - + Y: coordinate - + vertical offset to reference point - + relY: - + reference point offset in percent of parent height - + Unit: - + offset is absolute - + MM - + offset in Space units - + Space + spatium unit - + enable text frame - + Frame - + draw circled frame - + Circle - + draw boxed frame - + Box - + Width: Шырыня: - + frame line width - - - mm - мм + + + sp + інт - + Margin: - + frame inner margin - + Round: - + corner round - + Foreground Color: - - + + frame color - + Background Color: @@ -11736,67 +12233,72 @@ please choose a different name: - + align left па леваму боку - + align horizontal center - + align right - + align top - + align bottom - + + align vertical baseline + + + + align vertical center - + subscript - + superscript - + unordered list - + ordered list - + indent more - + indent less - + unstyled @@ -11808,16 +12310,6 @@ please choose a different name: MuseScore: Time Signatures - - - 4/4 common time - - - - - 2/2 alla breve - - TimeDialogBase @@ -11867,12 +12359,12 @@ please choose a different name: TimeSig - + Hide Courtesy Time Signature - + Show Courtesy Time Signature @@ -12015,259 +12507,306 @@ p, li { white-space: pre-wrap; } - - Transpose by Key - - - - + Cb major / Ab minor - + Gb major / Eb minor - + Db major / Bb minor - + Ab major / F minor - + Eb major / C minor - + Bb major / G minor - + F major / D minor - + C major / A minor - + G major / E minor - + D major / B minor - + A major / F# minor - + E major / C# minor - + B major / G# minor - + F# major / D# minor - + C# major / A# minor - - + + + Up Уверх - - + + + Down Уніз - + Closest - - Transpose by Interval - - - - + Perfect Unison - + Augmented Unison - + Diminished Second - + Minor Second - + Major Second - + Augmented Second - + Diminished Third - + Minor Third - + Major Third - + Augmented Third - + Diminished Fourth - + Perfect Fourth - + Augmented Fourth - + Diminished Fifth - + Perfect Fifth - + Augmented Fifth - + Diminished Sixth - + Minor Sixth - + Major Sixth - + Augmented Sixth - + Diminished Seventh - + Minor Seventh - + Major Seventh - + Augmented Seventh - + Diminished Octave - + Perfect Octave - + + Transpose Diatonically + + + + + Second + + + + + Third + + + + + Fourth + + + + + Fifth + + + + + Sixth + + + + + Seventh + + + + + Keep degree alterations + + + + Options - + Transpose key signatures - + + Transpose Chromatically + + + + + By Key + + + + + By Interval + + + + Transpose chord names - + Single sharps and flats only - + Use double sharps and flats @@ -12558,215 +13097,200 @@ p, li { white-space: pre-wrap; } - + File open - + Load score from file - + File save - + Save score to file - + File save as - + Save score under a new file name - + File save a copy - + Save a Copy... - + Save a copy of the score in addition to the current file - - - File reload - - - - - Reload - - - Reload score from file - - - - File close - + Close current score - + Create new score - + Print - + Print score - - + + Undo - + Undo last change - - + + Redo - + Redo last undo - + Cut - + Copy - + Paste - + Show instruments dialog - + Note input mode - - + + Note Input - + Enter unison above - + Export Parts - + Export Parts... - + Save a copy of the score's parts in various formats - + Unison Above - + Enter second above - + Second Above - + Enter third above - + Third Above - + Enter fourth above - + Fourth Above - + Enter fifth above - + Fifth Above - + Enter sixth above - + Sixth Above @@ -12781,840 +13305,831 @@ p, li { white-space: pre-wrap; } - + Enter octave above - + Octave Above - + Enter ninth above - + Ninth Above - + Enter second below - + Second Below - + Enter third below - + Third Below - + Enter fourth below - + Fourth Below - + Enter fifth below - + Fifth Below - + Enter sixth below - + Sixth Below - + Enter seventh below - + Seventh Below - + Enter octave below - + Octave Below - + Enter ninth below - + Ninth Below - + Enter note A - + A - + Enter note B - + B - + Enter note C - + C - + Enter note D - + D - + Enter note E - + E - + Enter note F - + F - + Enter note G - + G - + Add note A to chord - + Add A - + Add note B to chord - + Add B - + Add note C to chord - + Add C - + Add note D to chord - + Add D - + Add note E to chord - + Add E - + Add note F to chord - + Add F - + Add note G to chord - + Add G - + Insert note A - + Insert A - + Insert note B - + Insert B - + Insert note C - + Insert C - + Insert note D - + Insert D - + Insert note E - + Insert E - + Insert note F - + Insert F - + Insert note G - + Insert G - + Enter rest - - - + + + Rest - + Add staccato - + Staccato - + Add tenuto - + Tenuto - + Add trill - + Trill - + Add marcato - + Marcato - + Add more stretch to selected measure - + Less stretch - + Add less stretch to selected measure - - + + Reset Beam Mode - + Reset beam mode of selected measures - + Flip direction - + Pitch up - + Up Уверх - + Pitch up octave - + Up Octave - + Pitch up by an octave - + Up Note in Chord - + Text Тэкст - + Add Frame Text - + Load Style... - + Save Style... - - Save Style As Default... - - - - + Select All - + Concert Pitch Канцэртны строй - + Info... - + Reset - + Debugger - + Reset Stretch - + Insert Special Characters - + Find - + General... - + Text... - + Chords... - + Parts... - + Full Screen - + Additional Media... - + Page Settings... - + Album... - + Layers... - + Plugin Creator - + next syllable - + previous syllable - + toggle visibility - + set visible - + set unvisible - + Go to higher pitched note in chord - + Go to top note in chord - + Top Note in Chord - + Move up - + Pitch down - + Down Уніз - + Pitch down octave - + Down octave - + Pitch down by an octave - + Down Note in Chord - - + + Go to lower pitched note in chord - + Go to bottom note in chord - + Bottom Note in Chord - - + + Move down - - + Previous chord - - + Previous measure - - + Next chord - - + Next measure - - + + Delete Выдаліць - + Delete contents of the selected measures - + Timewise Delete - + Delete element and duration - + Delete Selected Measures - + Append measures - + Append Measures... - + Other tuplets - + Note duration: longa - + Note duration: whole - + Note duration: half - + Note duration: quarter - + Note duration: 8th - + Note duration: 16th - + Note duration: 32nd - + Note duration: 64th - + Note duration: 128th - - + + 128th note - + Note duration: augmentation dot - - + + Augmentation dot - + Note duration: double augmentation dot - - + + Double augmentation dot - + Note duration: tie - - + + Tie - + Note entry: rest - + Note entry: double sharp - - + + Double sharp - + Note entry: sharp - - + + Sharp - + Note entry: natural - - + + Natural - + Note entry: flat - + Note entry: double flat - - + + Double flat @@ -13624,1212 +14139,1368 @@ p, li { white-space: pre-wrap; } - + Open... - + Save Захаваць - + Save As... - + Export... - + Close Закрыць - + New... - + Print... - + Instruments... - - + + Add More Stretch - + Add Less Stretch - - - + + + Acciaccatura - - - + + + Appoggiatura - - - + + + Grace: quarter - - - + + + Grace: 16th - - - + + + Grace: 32nd - - - - Grace: 8nd after - - - - - - + + + Voice 1 Голас I - - - + + + Voice 2 Голас II - - - + + + Voice 3 Голас III - - - + + + Voice 4 Голас IV - + MIDI input - - + + Enable MIDI input - + Editing sound on - + Beam start - + Beam middle - + No beam - + Beam 32nd sub - + Beam 64th sub - + Auto beam - + Feathered beam, slower - + Feathered beam, faster - + Transport toolbar - + Note input toolbar - + Zoom canvas - + Add system text - + Add staff text - + Add title text - + Add subtitle text - + Add composer text - + Add lyricist text - + Lyricist - + Add chord name - + Show harmony properties for chord - + Add rehearsal mark - + Add picture - + Picture - - Player seek to begin - - - - - Player seek to end - - - - + Pan score while playing on/off - + Pan - + &Transpose... - + Violin Clef - + Bass Clef - + Display in concert pitch - + Toggle Section Break - + Reset user settings - + Reset measure stretch - + Show Unprintable - + Show Page Margins - + Note entry: whole rest - + Whole rest - + Note entry: half rest - + Half rest - + Note entry: quarter rest - + Quarter rest - + Note entry: 8th rest - + 8th rest - + + Slur + + + + + Add Slur + + + + Backspace - + Mirror note head - + Edit general style - + Edit text style - + Edit chord style - + Double duration - + Half duration - + Follow song - + Display documents side by side - + Display documents stacked - + Manage parts - + Enharmonic up - + Enharmonic down - + Create new revision - + Toggle foto mode - + Show OMR image - + Enable horizontal raster - + Enable vertical raster - + Configure raster - + Re-Pitch Mode - + Replace pitches without changing rhythms - + Stack down - + Piano Keyboard - + Show media dialog - + Split Measure - + Join Measure - + Page Settings - + Album - + Show inspector - + Show OMR Panel - + OmrPanel - + toggle metronome - + Figured Bass - + Next Score - + Previous Score - + Transpose Up - + Transpose Down - + Show master palette - + Master Palette... - - Insert Measure - - - - + Toggle View Mode - + Insert measures - + Save Selection - + Save Selection... - + Save current selection as new score - + Export score - + Save a copy of the score in various formats - + File new - + Respell pitches - + Diatonic pitch up - + Diatonic up - + Diatonic pitch down - + Diatonic down - + Add previous chord to selection - + Select to beginning of measure - + Add next chord to selection - + Select Section - + Move chord/rest right - + Move chord/rest left - + Select to end of measure - + Select to beginning of line - + Select to end of line - + Select to beginning of score - + Select to end of score - + Add staff above to selection - + Add staff below to selection - + Page: previous - + Page: next - + Page: top - + Page: end - - Add slur + + Crescendo - - Crescendo + + Add Crescendo - + Decrescendo - + Escape - + Timewise delete - + Append One Measure - + Insert One Measure - + Insert Measures... - - + Insert Horizontal Frame - - + Insert Text Frame - + Append Text Frame - - + Insert Fret Diagram Frame - - + Insert Vertical Frame - + Append Horizontal Frame - + Append Vertical Frame - + Duplet - + Triplet - + Quadruplet - + Quintuplet - + Sextuplet - + Septuplet - + Octuplet - + Nonuplet - + Other... - - + + Longa - - + + Flat - - + + + + Grace: 8th after + + + + + Enable sound while editing - + Palette - + Play Panel - + Navigator - + Mixer - + Transport - + Status Bar - + Quit - + Lyrics Словы - + + Play Previous Chord + + + + + Play Previous Measure + + + + + Play Next Chord + + + + + Play Next Measure + + + + + Player Seek to Begin + + + + + Player Seek to End + + + + + Save Style as Default... + + + + Metronome Метраном - + + String above (TAB) + + + + + Select string above (TAB only) + + + + + String below (TAB) + + + + + Select string below (TAB only) + + + + + Fret 0 (TAB) + + + + + Add fret 0 on current string (TAB only) + + + + + Fret 1 (TAB) + + + + + Add fret 1 on current string (TAB only) + + + + + Fret 2 (TAB) + + + + + Add fret 2 on current string (TAB only) + + + + + Fret 3 (TAB) + + + + + Add fret 3 on current string (TAB only) + + + + + Fret 4 (TAB) + + + + + Add fret 4 of current string (TAB only) + + + + + Fret 5 (TAB) + + + + + Add fret 5 of current string (TAB only) + + + + + Fret 6 (TAB) + + + + + Add fret 6 of current string (TAB only) + + + + + Fret 7 (TAB) + + + + + Add fret 7 of current string (TAB only) + + + + + Fret 8 (TAB) + + + + + Add fret 8 of current string (TAB only) + + + + + Fret 9 (TAB) + + + + + Add fret 9 of current string (TAB only) + + + + + Staff Types... + + + + + Staff type editor + + + + + Show staff type editor + + + + + Note anchored Textline + + + + System Text - + Note duration: double whole - - + + Double whole note - - + + Whole note - - + + Half note - - + + Quarter note - - + + 8th note - - + + 16th note - - + + 32nd note - - + + 64th note - + Tempo Marking... - + Tempo Marking - + Staff Text - + Title Назва - + Subtitle Падзагаловак - + Composer Кампазітар - + Chord Name - + Harmony Properties - + Rehearsal Mark - + Player play - + Play - + Start or stop playback - + Player rewind - + Rewind - + Rewind to start position - + Play repeats on/off - + Repeat - + Load style - + Save style - + Transpose Транспаніраваць - + Exchange Voice 1-2 - + Exchange Voice 1-3 - + Exchange Voice 1-4 - + Exchange Voice 2-3 - + Exchange Voice 2-4 - + Exchange Voice 3-4 - + Repeat last command - + Edit score info - + Toggle System Break - + Toggle Page Break - + Edit Element - + Insert Special Characters... - + Layers - + MuseScore Connect - + Inspector - + Show Invisible - + Show Frames - + Zoom In - + Zoom Out - + Select all similar elements - + All Similar Elements - + Select all similar elements in same staff - + All Similar Elements in Same Staff - + Synthesizer - + Repeat selection - + Documents Side by Side - + Documents Stacked - - - next score - - - - - previous score - - articulation - + Bend - + Tremolo Bar @@ -14845,45 +15516,45 @@ p, li { white-space: pre-wrap; } file - - + + error at line %1 column %2: %3 - + internal error: could not open resource musicxml.xsd - + internal error: MusicXML schema is invalid - + error reading container.xml at line %1 column %2: %3 - + can't find rootfile - - + + this is not a valid MusicXML file - + could not open MusicXML file @@ -14900,100 +15571,105 @@ p, li { white-space: pre-wrap; } lines - + Lines Лініі - + Slur - + Crescendo - + Diminuendo - + Prima volta - + Seconda volta - + Terza volta - + Seconda volta 2 - + 8va 8va - + 15ma 15ma - + 8vb 8vb - + 15mb 15mb - - - - + + + + Pedal - + Trill line - + Upprall line - + Downprall line - + Prallprall line - + + Wavy line + + + + Text line - + Line Лінія diff --git a/share/locale/mscore_bg.ts b/share/locale/mscore_bg.ts index bfe1aa0243168..07c39b0329152 100644 --- a/share/locale/mscore_bg.ts +++ b/share/locale/mscore_bg.ts @@ -23,7 +23,7 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Support MuseScore with </span><a href="http://www.musescore.org/en/donate"><span style=" font-size:10pt; text-decoration: underline; color:#0000ff;">your donation</span></a></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Arial'; font-size:10pt;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Copyright </span><span style=" font-size:10pt;">©</span><span style=" font-family:'Arial'; font-size:10pt;"> 1999-2009 Werner Schweer and Others. </span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Copyright </span><span style=" font-size:10pt;">©</span><span style=" font-family:'Arial'; font-size:10pt;"> 1999-2012 Werner Schweer and Others. </span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Published under the GNU General Public License</span></p></body></html> @@ -31,17 +31,17 @@ p, li { white-space: pre-wrap; } AboutBoxDialog - + Unstable Prerelease for Version: - + Version: - + Revision: %1 @@ -61,7 +61,7 @@ p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'Sans Serif'; font-size:10pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">MusicXML is an open file format for exchanging digital sheet music,</p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">supported by many applications. MusicXML is copyright © MakeMusic, Inc.</p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">All rights reserved. For more information see: <a href="http://www.makemusic.com/xml.html"><span style=" text-decoration: underline; color:#0000ff;">MakeMusic</span></a></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">All rights reserved. For more information, see: <a href="http://www.makemusic.com/musicxml"><span style=" text-decoration: underline; color:#0000ff;">MakeMusic</span></a></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; text-decoration: underline; color:#0000ff;"></p></body></html> @@ -137,57 +137,57 @@ p, li { white-space: pre-wrap; } - album name + Album Name - remove current score + Remove Current Score - - Remove Score + + Move Current Score Down in List - - move current score down in list + + Move Current Score Up in List - - Down + + Create New Album - - move current score up in list + + Load an Existing Album - - Up + + Remove Score - - Add Score + + Down - - create new album + + Up - - New + + Add Score - - load an existing album + + New @@ -206,28 +206,28 @@ p, li { white-space: pre-wrap; } - + MuseScore Album Files (*.album);; - - + + All Files (*) - + MuseScore Files (*.mscz *.mscx *.msc);; - + MuseScore: Add Score - + MuseScore: Load Album @@ -340,6 +340,16 @@ p, li { white-space: pre-wrap; } BarLine + + + spanFrom: + + + + + spanTo: + + BeamBase @@ -407,6 +417,44 @@ p, li { white-space: pre-wrap; } + + BoxBase + + + Form + + + + + bottomMargin: + + + + + topGap: + + + + + bottomGap: + + + + + leftMargin: + + + + + topMargin: + + + + + rightMargin: + + + BoxPropertiesBase @@ -497,17 +545,17 @@ spatium unit - + Arpeggio - + Tremolo - + Glissando @@ -1455,12 +1503,12 @@ spatium unit - + Hide courtesy clef - + Show courtesy clef @@ -1603,29 +1651,29 @@ spatium unit - + Open File - + failed: - + MuseScore: Open File - + Write File failed: - + MuseScore: Write Drumset @@ -1658,7 +1706,7 @@ failed: - + Note Head: @@ -1693,47 +1741,67 @@ failed: - + + 1 + + + + + 2 + + + + + 3 + + + + + 4 + + + + Shortcut: - + A - + B - + C - + D - + E - + F - + G - + -- @@ -1975,7 +2043,6 @@ failed: - A 8 @@ -2034,6 +2101,11 @@ failed: Ab 7 + + + A 7 + + Bb 7 @@ -2560,6 +2632,19 @@ failed: + + EditStaff + + + Edit Short Name + + + + + Edit Long Name + + + EditStaffBase @@ -2588,228 +2673,223 @@ failed: - - Edit... - - - - + Part Properties - + Instrument: - + Change Instrument... - + Part Name: - + Long Instrument Name: - + Short Instrument Name: + - - - - - + + + + ... - + Usable Pitch Range: - + Amateur: - - + + - - + Professional: - + Play Transposition: - + 0 - Perfect Unison - + 1 - Augmented Unison - + 0 - Diminished Second - + 1 - Minor Second - + 2 - Major Second - + 3 - Augmented Second - + 2 - Diminished Third - + 3 - Minor Third - + 4 - Major Third - + 5 - Augmented Third - + 4 - Diminished Fourth - + 5 - Perfect Fourth - + 6 - Augmented Fourth - + 6 - Diminished Fifth - + 7 - Perfect Fifth - + 8 - Augmented Fifth - + 7 - Diminished Sixth - + 8 - Minor Sixth - + 9 - Major Sixth - + 10 - Augmented Sixth - + 9 - Diminished Seventh - + 10 - Minor Seventh - + 11 - Major Seventh - + 12 - Augmented Seventh - + 11 - Diminished Octave - + 12 - Perfect Octave - + Number of strings: - + Edit string data... - + +octave - + up - + down @@ -2838,8 +2918,8 @@ failed: - - + + sp @@ -2850,19 +2930,19 @@ failed: - + Stemless - + Key Signature - + Ledger Lines @@ -2892,34 +2972,17 @@ failed: - - Guitar (modern) - tablatture type - - - - - Bass (modern) - tablature type - - - - + Italian (historic) tablature type - + French (historic) tablature type - - - Set - - Show Clef @@ -2935,147 +2998,225 @@ failed: Show Time Sign. + + + 6 strings (generic guitar) + tablatture type + + + + + 4 strings (generic bass) + tablature type + + + + + ukulele + + + + + bandurria + + + + + Custom + + - + « Full Configur. - + Upside Down - + Quick Presets » - + Fret Marks - - + + Font: - - + + Size: - - + + pt - - + + Vert. Offset: - + Marks are: - + Numbers - + Letters - + Marks are drawn: - + On Lines - + Above Lines - + Lines are: - + Continuous - + Broken - + Note Values - + Shown as: - + + None - + Note Symbols - + Stems and beams - + + Stem position: + + + + + Above + + + + + Below + + + + + Stem style: + + + + + Beside staff + + + + + Through staff + + + + + Half notes: + + + + + As short stem + + + + + As slashed stem + + + + + Show Rests + + + + Preview - + Create new tablature type - + PERCUSSION STAFF - + Create new percussion type - + Save - + Load @@ -3140,6 +3281,16 @@ failed: Chord + + + Edit Plain Text + + + + + Edit HTML Text + + EditStyleBase @@ -3150,151 +3301,153 @@ failed: - + Score - - - + + + Page - + System - + Measure - + Barlines - + Notes - + Arpeggios - + Beams - + Sizes - + Hairpins - - + + Chordnames - - + + Articulations, Ornaments - + Voices - + Display in Concert Pitch - + Create Multi Measure Rests - + Minumum width of measure: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + sp spatium unit ---------- @@ -3320,546 +3473,565 @@ spatium unit ---------- spatium unit ---------- +spatium unit +---------- +spatium unit +---------- spatium unit - + Minimum Number of empty measures: - + Hide Empty Staves - - - - - - + + + + + + % - + Last system fill threshold - + Create clef for all systems - + Create time signatures - + Create key sig for all systems - + Create courtesy time signatures - + System Bracket Distance: - + shorten stems - - - + + + show first - - + + odd/even - + Measure Numbers - + all staffs - + every system - + interval - - + + spaces - + Create courtesy key signatures - + Clefs - - + + Figured Bass - - + + Accidentals - + Music upper margin - + Music lower margin - + Staff distance - + Lyrics upper margin - + Lyrics lower margin - + Vertical-frame upper margin - + V-frame upper margin - + Vertical-frame lower margin - + V-frame lower margin - + Create courtesy clefs - + Lyrics line height - + Header Text - + show header also on first page - + use odd even page header - - + + styled - - + + left - - + + middle - - + + right - - - + + + edit even page header - - - + + + add odd page header - + Footer Text - + show footer also on first page - + use odd even page footer - - - + + + edit even page footer - - - + + + edit odd page header - + + Pedal, Trill + + + + Min. System distance - + Max. System distance - + Fix Number of Measures/System: - + Fix Measure Width - + System Bracket Width: - + Akkolade Width: - + minimum Measure width - + Spacing (1=tight) - + Min. note distance - + Clef left margin - + Key sig. left margin - + Time sig. left margin - + Clef-barline distance - + Staff line width - + Show repeat bar tips ("winged" repeats) - + Barline at start of single staff - + Barline at start of multiple staves - + Bar width: - + End bar width: - + End bar distance: - + Double bar width: - + Double bar distance: - + Progression - + Shortest stem - + Accidental note distance - + Accidental distance - + Note dot distance - + Dot dot distance - + Ledger line width - + Ledger line length - + Default TAB Clef - + Clef1 - + Clef2 - + Distance to note - + line width at end - + line width middle - + bow - + dotted line width - + Ottava - + + Pedal Line + + + + + Trill Line + + + + Use German names - + Chord description file - + Font: - + Size: - + pt - + Vertical position: - + Line height: - + Style - + Modern - + Historic - + Accidental - + semitones offset - + cents offset - - - - + + + + up - - - - + + + + down - + beam width units - + Line width @@ -3870,7 +4042,7 @@ spatium unit - + Slurs/Ties @@ -3880,34 +4052,34 @@ spatium unit - + Musical symbols font: - + Don't hide empty staves in first system - + Grand staff distance - - + + even - - + + odd - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -3920,172 +4092,174 @@ p, li { white-space: pre-wrap; } - + Akkolade Distance: - + Barline-note margin - + Note-barline margin - + Clef/Key right margin - + Hook length - + Beam width - + Beam distance - + Minimum length - + Minimum slope - + Maximum slope - + Small staff size - + Small note size - + Grace note size - + Small clef size - - - - - - - - - - - - - + + + + + + + + + + + + + ... - - - + + + Line width: - + Height: - + Line break height: - + Volta - - - + + + + + default Y-position: - - + + Hook height: - + note head distance - - - + + + sp space unit - + articulation distance - + staff distance - + Stem Direction in Multi-Voice Context - + Voice 1 - + Voice 2 - + Voice 3 - + Voice 4 @@ -4248,7 +4422,7 @@ p, li { white-space: pre-wrap; } GreendotButton - + record @@ -4345,7 +4519,7 @@ p, li { white-space: pre-wrap; } Inspector - + Inspector @@ -4432,6 +4606,79 @@ spatium unit + + InspectorBarLine + + + Staff default + + + + + Tick + + + + + Tick alt. + + + + + Short + + + + + Short alt. + + + + + Type: + + + + + Measure default + + + + + Normal + + + + + Dashed + + + + + Dotted + + + + + Double + + + + + End + + + + + Span: + + + + + Custom + + + InspectorBeam @@ -4464,13 +4711,13 @@ spatium unit - - + + ... - + User Position @@ -4586,7 +4833,7 @@ spatium unit InspectorClef - + Show Courtesy Clef @@ -4720,15 +4967,80 @@ spatium unit - InspectorImage + InspectorHairpin - + Form - - Image + + Hairpin + + + + + crescendo + + + + + decrescendo + + + + + Subtype: + + + + + Dynamic Range: + + + + + Velo. change: + + + + + Staff + + + + + Part + + + + + SYstem + + + + + + reset value + + + + + + ... + + + + + InspectorImage + + + Form + + + + + Image @@ -4773,12 +5085,12 @@ spatium unit InspectorKeySig - + Show Courtesy Time Signature - + Show Naturals @@ -5017,45 +5329,83 @@ spatium unit - + Select - + Dot1 - + Dot2 - + Dot3 - + Hook - + Stem - + Beam + + InspectorOttava + + + Form + + + + + Ottava + + + + + Subtype: + + + + + 8va + + + + + 15ma + + + + + 8vb + + + + + 15mb + + + InspectorRest - + Small @@ -5131,11 +5481,54 @@ spatium unit InspectorTimeSig - + Show Courtesy Time Signature + + InspectorTrill + + + Form + + + + + Trill + + + + + Subtype: + + + + + trill line + + + + + up prall + + + + + down prall + + + + + prall prall + + + + + wavy line + + + InspectorVBox @@ -5222,6 +5615,34 @@ spatium unit + + InspectorVolta + + + Form + + + + + Volta + + + + + Subtype: + + + + + Open + + + + + Closed + + + InstrumentDialogBase @@ -5276,22 +5697,22 @@ spatium unit - visible + Visible - - Clef + + Linked - - linked + + Staff Linked to Previous - - staff linked to previous + + Clef @@ -5415,49 +5836,49 @@ spatium unit - + MuseScore: Save Instrument List - + MuseScore Instruments (*.xml);; - + Open Instruments File - + failed: - + MuseScore: Open Instruments file - + Write Style failed: - + MuseScore: Write Style - + MuseScore: Load Instrument List - + MuseScore Instruments (*.xml);;All files (*) @@ -5524,22 +5945,22 @@ failed: KeySig - + Hide Courtesy Key Signature - + Show Courtesy Key Signature - + Hide Naturals - + Show Naturals @@ -6231,12 +6652,12 @@ Would you like to locate %2 now? - + visible - + stemless @@ -6310,57 +6731,92 @@ Would you like to locate %2 now? - + + 1 + + + + + 2 + + + + + 4 + + + + + 8 + + + + + 16 + + + + + 32 + + + + + 64 + + + + Other - + do not count - + Exclude from measure count - + break multi measure rest - + add to measure number - + layout stretch - + repeat count: - + goto previous measure - + <- - + goto next measure - + -> @@ -6445,7 +6901,7 @@ Would you like to locate %2 now? MenuNotes - + &Notes @@ -6496,476 +6952,470 @@ Would you like to locate %2 now? MuseScore - + Fingering - + Rehearsal Mark - + Concert Pitch - - + + MuseScore - + Save changes to the score "%1" before closing? - + MuseScore: Load Score - - + MuseScore: Load error - + MusicXML Files (*.xml *.mxl);; - + MIDI Files (*.mid *.midi *.kar);; - + Muse Data Files (*.md);; - + Capella Files (*.cap);; - + BB Files <experimental> (*.mgu *.MGU *.sgu *.SGU);; - + PDF Files <experimental omr> (*.pdf);; - + Bagpipe Music Writer Files <experimental> (*.bww);; - + Guitar Pro (*.GTP *.GP3 *.GP4 *.GP5);; - - - + + + All Files (*) - + Untitled - - Cannot read file: %1 error: %2 - - - - + Overture / Score Writer Files <experimental> (*.ove *.scw);; - + Compressed MuseScore File (*.mscz) - + MuseScore File (*.mscx) - + MuseScore: Save Score - + MuseScore: Save File - - + + MuseScore: Load Style - + MuseScore Styles (*.mss);;All Files (*) - - - + + + MuseScore: Save Style - - - + + + MuseScore Style File (*.mss) - + SoundFont Files (*.sf2 *.SF2);;All (*) - + Choose Synthesizer SoundFont - + MuseScore: Choose Synthesizer SoundFont - + MuseScore Chord Style File (*.xml) - + ;;All Files (*) - - + + MuseScore: Load Chord Style - + MuseScore: Save Chord Style - + PDF Scan File (*.pdf);;All (*) - + Choose PDF Scan - + MuseScore: Choose PDF Scan - + OGG Audio File (*.ogg);;All (*) - + Choose Audio File - + MuseScore: Choose OGG Audio File - + PNG Bitmap Graphic (*.png);; - + PDF File (*.pdf);; - + Encapsulated PostScript File (*.eps);; - + Scalable Vector Graphic (*.svg);; - + MuseScore: Save Image - + MuseScore: Load Palette - + MuseScore Palette (*.mpal);;All Files (*) - + MuseScore: Save Palette - + MuseScore Palette (*.mpal) - + MuseScore: Load Plugin - + MuseScore Plugin (*.qml);;All Files (*) - + MuseScore: Save Plugin - + MuseScore Plugin File (*.qml) - + MuseScore: Load Drumset - + MuseScore Drumset (*.drm);;All Files (*) - + MuseScore: Save Drumset - + MuseScore Drumset File (*.drm) - - + + Uncompressed MuseScore Format (*.mscx) - - + + MusicXML Format (*.xml) - - + + Compressed MusicXML Format (*.mxl) - - + + Standard MIDI File (*.mid) - - + + PDF File (*.pdf) - - + + PostScript File (*.ps) - - + + PNG Bitmap Graphic (*.png) - - + + Scalable Vector Graphic (*.svg) - - + + Wave Audio (*.wav) - - + + Flac Audio (*.flac) - - + + Ogg Vorbis Audio (*.ogg) - - + + MP3 Audio (*.mp3) - + MuseScore: Export - + MuseScore Format (*.mscx) - + MuseScore: Save a Copy - - - - + + + + MuseScore: Save As - + All Supported Files (*.mscz *.mscx *.xml *.mxl *.mid *.midi *.kar *.md *.mgu *.MGU *.sgu *.SGU *.cap *.pdf *.ove *.scw *.bww *.GTP *.GP3 *.GP4 *.GP5);; - + All Supported Files (*.mscz *.mscx *.xml *.mxl *.mid *.midi *.kar *.md *.mgu *.MGU *.sgu *.SGU *.cap *.ove *.scw *.bww *.GTP *.GP3 *.GP4 *.GP5);; - + MuseScore Files (*.mscz *.mscx);; - - + + LilyPond Format (*.ly) - - - - + + + + cannot determine file type - - - + + + MuseScore: Export Parts - + Parts were successfully exported - - + + MuseScore Format (*.mscz) - - + + MuseScore: Save Selection - + MuseScore: Save Selected - + MuseScore: InsertImage - + All Supported Files (*.svg *.jpg *.png *.xpm);;Scalable vector graphics (*.svg);;JPEG (*.jpg);;PNG (*.png);;XPM (*.xpm);;All Files (*) - + Images (*.jpg *.gif *.png);;All (*) - + Grace Notes - + Clefs @@ -6975,277 +7425,312 @@ before closing? - + Time Signatures - + 2/2 alla breve - + Normal - + Dashed - + Arpeggio && Glissando - + Arpeggio - + Breath && Pauses - + Caesura - + Square bracket - + Curly bracket - + Articulations && Ornaments - + Fingering %1 - + String number %1 - + Thumb - + 1/8 through stem - + 1/16 through stem - + 1/32 through stem - + 1/64 through stem - + 1/8 between notes - + 1/16 between notes - + 1/32 between notes - + 1/64 between notes - + Fall/Doit - + fall - + doit - + Repeat measure sign - + Segno Variation - + Da Capo - + Da Capo al Fine - + Da Capo al Coda - + staff-text - + Staff Text - + system-text - + System Text - + Instrument - + Instrument Change - + 1. - + Lyrics Verse Number - + Tempo Text - + Breaks && Spacer - + + Dotted + + + + + Tick 1 + + + + + Tick 2 + + + + + Short 1 + + + + + Short 2 + + + + Line break - + Page break - + Section break - + Staff spacer down - + Staff spacer up - + + plop + + + + + scoop + + + + Chord Name - + Staff Changes - + set visible - + set invisible - + change staff type - + change instrument - + Fret Diagram - + &Measures - + &Frames - + &Text @@ -7255,42 +7740,42 @@ before closing? - + 4/4 common time - + End Bar - + Double Bar - + Start Repeat - + End Repeat - + End-Start Repeat - + Breath - + Brackets @@ -7300,62 +7785,62 @@ before closing? - + Note Heads - + Tremolo - + Repeats - + Segno - + Coda - + Varied coda - + Codetta - + Fine - + D.S al Coda - + D.S al Fine - + D.S - + To Coda @@ -7365,62 +7850,62 @@ before closing? - + Symbols - + &Create - + Text - + File Operations - + Transport Tools - + Page View - + Foto Mode - + Note Entry - + &File - + Open &Recent - + &Edit - + &Layout @@ -7452,205 +7937,215 @@ please choose a different name: - + MuseScore: transpose - + There is nothing selected. Transpose whole score? - - + + MuseScore: save style - + MuseScore: load style - + Open failed: unknown file extension or broken file - + foto mode - + Bar %1 Beat %2.%3 - + The previous session quit unexpectedly. Restore session? - + &Style - + synthesizer - + audio track - + switch play mode - + Continuous View - + &Measure - + &Voices - + Pr&ofiles - + &Preferences... - + Add N&ote - + Add &Interval - + T&uplets - + &Display - + &Plugins - + &Help - + &Online Handbook - + About &Qt - + About &MusicXML - + Check for &Update - + Report a bug - + + NOTE entry mode + + + + + DRUM entry mode + + + + + TAB entry mode + + + + Find - + MuseScore: warning - + Cannot create tuplet: note value too short - + &About - + switch layer - + no score - - note entry mode - - - - + edit mode - + play - + Go To: - + System - + Glissando @@ -7692,6 +8187,11 @@ Restore session? Error %1 returned from MP3 encoder + + + you cannot create an element + + MyWebView @@ -7719,7 +8219,7 @@ Restore session? NewWizard - + MuseScore: Create New Score @@ -7767,12 +8267,12 @@ Restore session? NewWizardPage1 - + Create New Score - + This wizard creates a new score @@ -7780,12 +8280,12 @@ Restore session? NewWizardPage2 - + Create New Score - + Define a set of instruments. Each instrument is represented by one or more staves @@ -7793,12 +8293,12 @@ Restore session? NewWizardPage3 - + Create New Score - + Create Time Signature @@ -7806,22 +8306,22 @@ Restore session? NewWizardPage4 - + Create New Score - + Select Template File: - + MuseScore: Select Template - + MuseScore Template Files (*.mscz *.mscx) @@ -7829,27 +8329,27 @@ Restore session? NewWizardPage5 - + Create New Score - + Select Key Signature and Tempo: - + Key Signature - + Tempo - + BPM: @@ -7872,33 +8372,28 @@ Restore session? - - OnTime: + + NoteEvents - - OffTime: - - - - - + + invalid - + Dot1 - + Dot2 - + Dot3 @@ -8084,27 +8579,27 @@ Restore session? PaletteBox - + Palettes - + Palette Operations - + Single Palette Mode - + Reset to factory defaults - + new Palette @@ -8112,42 +8607,42 @@ Restore session? PaletteBoxButton - + Palette Properties... - + Insert new Palette... - + Move Palette Up - + Move Palette Down - + Enable Editing - + Save Palette - + Load Palette - + Delete Palette @@ -8471,42 +8966,42 @@ Restore session? PluginCreator - + File Operations - + Edit Operations - + MuseScore Plugin Editor - - - + + + MuseScore - - - + + + Plugin "%1" has changes save before closing? - + untitled - + Manual @@ -8582,74 +9077,85 @@ save before closing? PreferenceDialog - + Choose Default Style - + Choose Default Style for Parts - - + + Choose Instrument List - - + + Instrument List (*.xml) - + Choose Starting Score - + Choose Scores Directory - + Choose Styles Directory - + Choose Templates Directory - + Choose Plugins Directory - + Choose SoundFonts Directory - + Choose Images Directory - + + + MuseScore Shortcuts + + + + + Print Shortcuts + + + + Choose Notepaper - + Choose Background Wallpaper - + MuseScore Files (*.mscz *.mscx *.msc);;All (*) @@ -9023,47 +9529,52 @@ save before closing? - + + Print + + + + Plugins - + Name: - + Path: - + Version: - + Load - + Define Shortcut - + Update - + Automatic Update Check - + Check for new versions of MuseScore on startup @@ -9481,7 +9992,7 @@ save before closing? - + Shortcut @@ -9506,7 +10017,7 @@ save before closing? Properties - + small @@ -9542,7 +10053,7 @@ save before closing? QWidget - + MuseScore: Import Capella @@ -9569,13 +10080,13 @@ save before closing? - - - - + + - - + + + + @@ -9590,54 +10101,54 @@ save before closing? - + MuseScore: Save Album - + MuseScore Files (*.album);; - + Open Album File - + failed: - + MuseScore: Open Album file - + Write Album failed: - + MuseScore: Write Album - + Untitled - + MuseScore: file not found: - + MuseScore: load failed: @@ -9659,17 +10170,17 @@ failed: - + MuseScore: load Style failed: - + MuseScore: Load languages failed: - + MuseScore: invalid command @@ -9680,7 +10191,7 @@ failed: - + MuseScore: Import GuitarPro @@ -9688,7 +10199,7 @@ failed: RecordButton - + record @@ -9722,7 +10233,7 @@ failed: - + Staff @@ -9745,26 +10256,26 @@ failed: - - - - + + + + Set Invisible - - - - + + + + Set Visible - + Color... @@ -9776,9 +10287,9 @@ failed: - - - + + + Text Properties... @@ -9788,150 +10299,150 @@ failed: - + Bend Properties... - + TremoloBar Properties... - - + + Add - - - + + + Frame Properties... - - - + + + Tuplet Properties... - + Volta Properties... - + Line Properties... - + Time Signature Properties... - + MIDI Properties... - + Staff Text Properties... - + Tempo Properties... - + Change Instrument Properties... - + Edit Mode - + Slur Properties... - - + + Tuplet... - - + + Delete Tuplet - + Style... - + Chord Articulation... - + Marker Properties... - + Jump Properties... - + Section Break Properties... - + Change Instrument... - + Fret Diagram Properties... - + Glissando Properties... - + Dynamics - + Hairpin Properties... - + Harmony Properties... - - + + Staff Properties... @@ -9948,54 +10459,54 @@ failed: - + Measure - + Measure Properties... - + Please select the complete tuplet and retry the copy operation - + Please select the complete tuplet and retry the cut operation - + No chord/rest selected: please select a chord/rest and try again - + Cannot split measure here: cannot split tuplet - + No measures selected: please select range of measures to join and try again - + No staves found: please use the instruments dialog to first create some staves - + No Measure selected: please select a measure and try again @@ -10275,12 +10786,12 @@ Sequencer will be disabled. ShortcutCaptureDialog - + Shortcut conflicts with - + Undefined @@ -10335,31 +10846,6 @@ Sequencer will be disabled. Form - - - Slur - - - - - Slur End - - - - - Staff: - - - - - Voice: - - - - - Tick: - - SlurPropertyBase @@ -10465,6 +10951,16 @@ Sequencer will be disabled. Form + + + CHORD + + + + + NOTE + + SplitStaff @@ -10904,7 +11400,7 @@ altera - + MuseScore Startup Dialog @@ -11520,146 +12016,147 @@ altera - + relX: - + reference point offset in percent of parent width - - + + % - + Y: coordinate - + vertical offset to reference point - + relY: - + reference point offset in percent of parent height - + Unit: - + offset is absolute - + MM - + offset in Space units - + Space + spatium unit - + enable text frame - + Frame - + draw circled frame - + Circle - + draw boxed frame - + Box - + Width: - + frame line width - - - mm + + + sp - + Margin: - + frame inner margin - + Round: - + corner round - + Foreground Color: - - + + frame color - + Background Color: @@ -11722,67 +12219,72 @@ please choose a different name: - + align left - + align horizontal center - + align right - + align top - + align bottom - + + align vertical baseline + + + + align vertical center - + subscript - + superscript - + unordered list - + ordered list - + indent more - + indent less - + unstyled @@ -11794,16 +12296,6 @@ please choose a different name: MuseScore: Time Signatures - - - 4/4 common time - - - - - 2/2 alla breve - - TimeDialogBase @@ -11853,12 +12345,12 @@ please choose a different name: TimeSig - + Hide Courtesy Time Signature - + Show Courtesy Time Signature @@ -12001,259 +12493,306 @@ p, li { white-space: pre-wrap; } - - Transpose by Key - - - - + Cb major / Ab minor - + Gb major / Eb minor - + Db major / Bb minor - + Ab major / F minor - + Eb major / C minor - + Bb major / G minor - + F major / D minor - + C major / A minor - + G major / E minor - + D major / B minor - + A major / F# minor - + E major / C# minor - + B major / G# minor - + F# major / D# minor - + C# major / A# minor - - + + + Up - - + + + Down - + Closest - - Transpose by Interval - - - - + Perfect Unison - + Augmented Unison - + Diminished Second - + Minor Second - + Major Second - + Augmented Second - + Diminished Third - + Minor Third - + Major Third - + Augmented Third - + Diminished Fourth - + Perfect Fourth - + Augmented Fourth - + Diminished Fifth - + Perfect Fifth - + Augmented Fifth - + Diminished Sixth - + Minor Sixth - + Major Sixth - + Augmented Sixth - + Diminished Seventh - + Minor Seventh - + Major Seventh - + Augmented Seventh - + Diminished Octave - + Perfect Octave - + + Transpose Diatonically + + + + + Second + + + + + Third + + + + + Fourth + + + + + Fifth + + + + + Sixth + + + + + Seventh + + + + + Keep degree alterations + + + + Options - + Transpose key signatures - + + Transpose Chromatically + + + + + By Key + + + + + By Interval + + + + Transpose chord names - + Single sharps and flats only - + Use double sharps and flats @@ -12534,135 +13073,130 @@ p, li { white-space: pre-wrap; } action - + Save a Copy... - + Export... - - Reload - - - - + Close - + New... - + Create new score - + Print... - - + + Undo - - + + Redo - + Cut - + Copy - + Paste - + Instruments... - - + + Note Input - + Unison Above - + Enter unison above - + Second Above - + Enter second above - + Third Above - + Enter third above - + Fourth Above - + Enter fourth above - + Fifth Above - + Enter fifth above - + Sixth Above - + Enter sixth above @@ -12677,1555 +13211,1672 @@ p, li { white-space: pre-wrap; } - + Octave Above - + Enter octave above - + Ninth Above - + Enter ninth above - + Second Below - + Enter second below - + Third Below - + Enter third below - + Fourth Below - + Enter fourth below - + Fifth Below - + Enter fifth below - + Sixth Below - + Enter sixth below - + Seventh Below - + Enter seventh below - + Octave Below - + Enter octave below - + Ninth Below - + Enter ninth below - + A - + B - + C - + D - + E - + F - + G - + Add A - + Add note A to chord - + Add B - + Add note B to chord - + Add C - + Add note C to chord - + Add D - + Add note D to chord - + Add E - + Add note E to chord - + Add F - + Add note F to chord - + Add G - + Add note G to chord - - + + Add More Stretch - + Add more stretch to selected measure - + Add Less Stretch - + Add less stretch to selected measure - - + + Reset Beam Mode - - Local handbook + + String above (TAB) - - Show local handbook + + Select string above (TAB only) - - File open + + String below (TAB) - - Load score from file + + Select string below (TAB only) - - File save + + Fret 0 (TAB) - - Save score to file + + Add fret 0 on current string (TAB only) - - File save as + + Fret 1 (TAB) - - Save score under a new file name + + Add fret 1 on current string (TAB only) - - File save a copy + + Fret 2 (TAB) - - Save a copy of the score in addition to the current file + + Add fret 2 on current string (TAB only) - - Save a copy of the score in various formats + + Fret 3 (TAB) - - Export Parts + + Add fret 3 on current string (TAB only) - - Export Parts... + + Fret 4 (TAB) - - Save a copy of the score's parts in various formats + + Add fret 4 of current string (TAB only) - - File reload + + Fret 5 (TAB) - - Reload score from file + + Add fret 5 of current string (TAB only) - - File close + + Fret 6 (TAB) - - Close current score + + Add fret 6 of current string (TAB only) - - File new + + Fret 7 (TAB) - - Print + + Add fret 7 of current string (TAB only) - - Print score + + Fret 8 (TAB) - - Undo last change + + Add fret 8 of current string (TAB only) - + + Fret 9 (TAB) + + + + + Add fret 9 of current string (TAB only) + + + + + Staff Types... + + + + + Staff type editor + + + + + Show staff type editor + + + + + Note anchored Textline + + + + + Local handbook + + + + + Show local handbook + + + + + File open + + + + + Load score from file + + + + + File save + + + + + Save score to file + + + + + File save as + + + + + Save score under a new file name + + + + + File save a copy + + + + + Save a copy of the score in addition to the current file + + + + + Save a copy of the score in various formats + + + + + Export Parts + + + + + Export Parts... + + + + + Save a copy of the score's parts in various formats + + + + + File close + + + + + Close current score + + + + + File new + + + + + Print + + + + + Print score + + + + + Undo last change + + + + Redo last undo - + Show instruments dialog - + Note input mode - + Enter note A - + Enter note B - + Enter note C - + Enter note D - + Enter note E - + Enter note F - + Enter note G - + Insert note A - + Insert A - + Insert note B - + Insert B - + Insert note C - + Insert C - + Insert note D - + Insert D - + Insert note E - + Insert E - + Insert note F - + Insert F - + Insert note G - + Insert G - + Enter rest - - - + + + Rest - + Add staccato - + Staccato - + Add tenuto - + Tenuto - + Add marcato - + Marcato - + Diatonic pitch down - + Diatonic down - + Add previous chord to selection - + Select to beginning of measure - + Add next chord to selection - + Select Section - + Move chord/rest right - + Move chord/rest left - + Select to end of measure - + Select to beginning of line - + Select to end of line - + Select to beginning of score - + Select to end of score - + Add staff above to selection - + Add staff below to selection - + Page: previous - + Page: next - + Page: top - + Page: end - - Add slur - - - - + Crescendo - + Decrescendo - + Escape - - + + Delete - + Delete contents of the selected measures - + Timewise delete - + Append One Measure - + Insert One Measure - - + Insert Text Frame - + Append Text Frame - - + Insert Fret Diagram Frame - + Other tuplets - + Note duration: longa - + Parts... - + Full Screen - + Additional Media... - + Page Settings... - + Album... - + Layers... - + Plugin Creator - + next syllable - + previous syllable - + toggle visibility - + set visible - + set unvisible - + Note duration: whole - + Note duration: half - + Note duration: quarter - + Note duration: 8th - + Note duration: 16th - + Note duration: 32nd - + Note duration: 64th - + Note duration: 128th - - + + 128th note - + Note duration: augmentation dot - - + + Augmentation dot - + Note duration: double augmentation dot - - + + Double augmentation dot - + Note duration: tie - - + + Tie - + Note entry: rest - + Note entry: double sharp - - + + Double sharp - + Note entry: sharp - - + + Sharp - + Note entry: natural - - + + Natural - + Note entry: flat - - + + Flat - - - - Grace: 8nd after - - - - + Pan score while playing on/off - + Pan - + &Transpose... - + Violin Clef - + Bass Clef - + Display in concert pitch - + Toggle Section Break - + Show Unprintable - + Show Page Margins - + Manage parts - + Inspector - + Show OMR Panel - + OmrPanel - + toggle metronome - + Figured Bass - + Next Score - + Previous Score - + Transpose Up - + Transpose Down - + Show master palette - + Master Palette... - - Insert Measure - - - - + Toggle View Mode - + Show inspector - + Reset measure stretch - + Note entry: whole rest - + Whole rest - + Note entry: half rest - + Half rest - + Note entry: quarter rest - + Quarter rest - + Note entry: 8th rest - + 8th rest - + Text - + Add Frame Text - + Debugger - + Reset Stretch - + Insert Special Characters - + Backspace - + Find - + Mirror note head - + General... - + Edit general style - + Text... - + Chords... - + Double duration - + Half duration - + Follow song - + Display documents side by side - + Display documents stacked - + Show OMR image - + Enharmonic up - + Enharmonic down - + Create new revision - + Toggle foto mode - + Enable horizontal raster - + Enable vertical raster - + Configure raster - + Re-Pitch Mode - + Replace pitches without changing rhythms - + Stack down - - next score - - - - - previous score - - - - + Show media dialog - + Piano Keyboard - + Split Measure - + Join Measure - + Page Settings - + Album - + Add trill - + Trill - + Less stretch - + Reset beam mode of selected measures - + Flip direction - + Pitch up - + Up - + Pitch up octave - + Up Octave - + Pitch up by an octave - + Up Note in Chord - + Go to higher pitched note in chord - + Go to top note in chord - + Top Note in Chord - + Move up - + Pitch down - + Down - + Pitch down octave - + Down octave - + Pitch down by an octave - + Down Note in Chord - - + + Go to lower pitched note in chord - + Go to bottom note in chord - + Bottom Note in Chord - - + + Move down - - + Previous chord - - + Previous measure - - + Next chord - - + Next measure - + Append measures - + Insert measures - + Save Selection - + Save Selection... - + Save current selection as new score - + Export score - + Respell pitches - Timewise Delete + Slur + Add Slur + + + + + Add Crescendo + + + + + Timewise Delete + + + + Delete element and duration - + Delete Selected Measures - + Append Measures... - + Insert Measures... - - + Insert Horizontal Frame - - + Insert Vertical Frame - + Append Horizontal Frame - + Append Vertical Frame - + Duplet - + Triplet - + Quadruplet - + Quintuplet - + Sextuplet - + Septuplet - + Octuplet - + Nonuplet - + Other... - - + + Longa - - + + + + Grace: 8th after + + + + + Enable sound while editing - + Palette - + Play Panel - + Navigator - + Mixer - + Transport - + Status Bar - + Quit - + Lyrics - + Note entry: double flat - - + + Double flat @@ -14235,574 +14886,594 @@ p, li { white-space: pre-wrap; } - + Open... - + Save - + Save As... - - - + + + Acciaccatura - - - + + + Appoggiatura - - - + + + Grace: quarter - - - + + + Grace: 16th - - - + + + Grace: 32nd - - - + + + Voice 1 - - - + + + Voice 2 - - - + + + Voice 3 - - - + + + Voice 4 - + MIDI input - - + + Enable MIDI input - + Editing sound on - + Beam start - + Beam middle - + No beam - + Beam 32nd sub - + Beam 64th sub - + Auto beam - + Feathered beam, slower - + Feathered beam, faster - + Transport toolbar - + Note input toolbar - + Zoom canvas - + + Play Previous Chord + + + + + Play Previous Measure + + + + + Play Next Chord + + + + + Play Next Measure + + + + + Player Seek to Begin + + + + + Player Seek to End + + + + + Save Style as Default... + + + + Layers - + MuseScore Connect - + Metronome - + System Text - + Staff Text - + Title - + Subtitle - + Composer - + Chord Name - + Harmony Properties - + Rehearsal Mark - + Play - + Start or stop playback - - Player seek to begin - - - - + Rewind - - Player seek to end - - - - + Repeat - + Load Style... - + Save Style... - - Save Style As Default... - - - - + Select All - + Concert Pitch - + Info... - + Reset - + Reset user settings - + Transpose - + Diatonic pitch up - + Diatonic up - + Note duration: double whole - - + + Double whole note - - + + Whole note - - + + Half note - - + + Quarter note - - + + 8th note - - + + 16th note - - + + 32nd note - - + + 64th note - + Tempo Marking... - + Tempo Marking - + Add system text - + Add staff text - + Add title text - + Add subtitle text - + Add composer text - + Add lyricist text - + Lyricist - + Add chord name - + Show harmony properties for chord - + Add rehearsal mark - + Add picture - + Picture - + Player play - + Player rewind - + Rewind to start position - + Play repeats on/off - + Load style - + Save style - + Exchange Voice 1-2 - + Exchange Voice 1-3 - + Exchange Voice 1-4 - + Exchange Voice 2-3 - + Exchange Voice 2-4 - + Exchange Voice 3-4 - + Repeat last command - + Edit score info - + Toggle System Break - + Toggle Page Break - + Edit Element - + Show Invisible - + Show Frames - + Insert Special Characters... - + Zoom In - + Zoom Out - + Edit text style - + Edit chord style - + Select all similar elements - + All Similar Elements - + Select all similar elements in same staff - + All Similar Elements in Same Staff - + Synthesizer - + Repeat selection - + Documents Side by Side - + Documents Stacked @@ -14810,12 +15481,12 @@ p, li { white-space: pre-wrap; } articulation - + Bend - + Tremolo Bar @@ -14831,45 +15502,45 @@ p, li { white-space: pre-wrap; } file - - + + error at line %1 column %2: %3 - + internal error: could not open resource musicxml.xsd - + internal error: MusicXML schema is invalid - + error reading container.xml at line %1 column %2: %3 - + can't find rootfile - - + + this is not a valid MusicXML file - + could not open MusicXML file @@ -14886,100 +15557,105 @@ p, li { white-space: pre-wrap; } lines - + Lines - + Slur - + Crescendo - + Diminuendo - + Prima volta - + Seconda volta - + Terza volta - + Seconda volta 2 - + 8va - + 15ma - + 8vb - + 15mb - - - - + + + + Pedal - + Trill line - + Upprall line - + Downprall line - + Prallprall line - + + Wavy line + + + + Text line - + Line diff --git a/share/locale/mscore_ca.ts b/share/locale/mscore_ca.ts index 8bf464bacd895..fb05eb2b312d2 100644 --- a/share/locale/mscore_ca.ts +++ b/share/locale/mscore_ca.ts @@ -3,6 +3,14 @@ AboutBox + + About MuseScore + + + + Copy revision number + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -12,9 +20,9 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Support MuseScore with </span><a href="http://www.musescore.org/en/donate"><span style=" font-size:10pt; text-decoration: underline; color:#0000ff;">your donation</span></a></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Arial'; font-size:10pt;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Copyright </span><span style=" font-size:10pt;">©</span><span style=" font-family:'Arial'; font-size:10pt;"> 1999-2009 Werner Schweer and Others. </span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Copyright </span><span style=" font-size:10pt;">©</span><span style=" font-family:'Arial'; font-size:10pt;"> 1999-2012 Werner Schweer and Others. </span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Published under the GNU General Public License</span></p></body></html> - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">line break + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">line break <html><head><meta name="qrichtext" content="1" /><style type="text/css">line break p, li { white-space: pre-wrap; }line break </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;">line break @@ -23,15 +31,7 @@ p, li { white-space: pre-wrap; }line break line break <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Arial'; font-size:10pt;"></p>line break <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Copyright </span><span style=" font-size:10pt;">©</span><span style=" font-family:'Arial'; font-size:10pt;"> 1999-2009 Werner Schweer Altres. </span></p>line break -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Publicat sota la llicència GNU General Public License</span></p></body></html> - - - About MuseScore - - - - Copy revision number - +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Publicat sota la llicència GNU General Public License</span></p></body></html> {3C?} {4.0/?} {3.?} {40/?} {1"?} {2'?} {8.25p?} {400;?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {10p?} {10p?} {0000f?} {10p?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {10p?} {10p?} {0000f?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {10p?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {10p?} {10p?} {10p?} {1999-2012 ?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {10p?} @@ -55,17 +55,6 @@ line break About MusicXML - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; font-size:10pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">MusicXML is an open file format for exchanging digital sheet music,</p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">supported by many applications. MusicXML is copyright © MakeMusic, Inc.</p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">All rights reserved. For more information see: <a href="http://www.makemusic.com/xml.html"><span style=" text-decoration: underline; color:#0000ff;">MakeMusic</span></a></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; text-decoration: underline; color:#0000ff;"></p></body></html> - - The MusicXML Public License: @@ -113,6 +102,17 @@ p, li { white-space: pre-wrap; } <p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p></body></html> + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans Serif'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">MusicXML is an open file format for exchanging digital sheet music,</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">supported by many applications. MusicXML is copyright © MakeMusic, Inc.</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">All rights reserved. For more information, see: <a href="http://www.makemusic.com/musicxml"><span style=" text-decoration: underline; color:#0000ff;">MakeMusic</span></a></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; text-decoration: underline; color:#0000ff;"></p></body></html> + + Accidental @@ -131,30 +131,14 @@ p, li { white-space: pre-wrap; } Album Name: - - album name - - - - remove current score - - Remove Score - - move current score down in list - - Down Avall - - move current score up in list - - Up Amunt @@ -163,18 +147,10 @@ p, li { white-space: pre-wrap; } Add Score - - create new album - - New Nou - - load an existing album - - Print Album @@ -207,6 +183,30 @@ p, li { white-space: pre-wrap; } MuseScore: Load Album + + Album Name + + + + Remove Current Score + + + + Move Current Score Down in List + + + + Move Current Score Up in List + + + + Create New Album + + + + Load an Existing Album + + ArticulationBase @@ -296,6 +296,14 @@ p, li { white-space: pre-wrap; } BarLine Barra de compàs + + spanFrom: + + + + spanTo: + + BeamBase @@ -351,6 +359,37 @@ p, li { white-space: pre-wrap; } + + BoxBase + + Form + Formulari + + + bottomMargin: + + + + topGap: + + + + bottomGap: + + + + leftMargin: + + + + topMargin: + + + + rightMargin: + + + BoxPropertiesBase @@ -1412,6 +1451,22 @@ Fallada: No. + + 1 + 1 + + + 2 + 2 + + + 3 + 3 + + + 4 + 4 + EditInstrumentBase @@ -2030,6 +2085,10 @@ Fallada: B -1 + + A 7 + + EditRaster @@ -2058,6 +2117,17 @@ Fallada: + + EditStaff + + Edit Short Name + + + + Edit Long Name + + + EditStaffBase @@ -2128,10 +2198,6 @@ Fallada: Type: Tipus: - - Edit... - - ... ... @@ -2315,16 +2381,6 @@ Fallada: Select: - - Guitar (modern) - tablatture type - - - - Bass (modern) - tablature type - - Italian (historic) tablature type @@ -2335,10 +2391,6 @@ Fallada: tablature type - - Set - - Show Clef @@ -2463,6 +2515,68 @@ Fallada: Preview Previsualització + + 6 strings (generic guitar) + tablatture type + + + + 4 strings (generic bass) + tablature type + + + + ukulele + + + + bandurria + + + + Custom + + + + Stem position: + + + + Above + Per damunt + + + Below + + + + Stem style: + + + + Beside staff + + + + Through staff + + + + Half notes: + + + + As short stem + + + + As slashed stem + + + + Show Rests + + EditStringDataBase @@ -2513,6 +2627,14 @@ Fallada: Chord Acord + + Edit Plain Text + + + + Edit HTML Text + + EditStyleBase @@ -2578,6 +2700,10 @@ spatium unit ---------- spatium unit ---------- +spatium unit +---------- +spatium unit +---------- spatium unit Espais @@ -3186,6 +3312,18 @@ p, li { white-space: pre-wrap; } Clef/Key right margin + + Pedal, Trill + + + + Pedal Line + + + + Trill Line + + EditTempoBase @@ -3466,6 +3604,65 @@ spatium unit + + InspectorBarLine + + Staff default + + + + Tick + + + + Tick alt. + + + + Short + + + + Short alt. + + + + Type: + Tipus: + + + Measure default + + + + Normal + Normal + + + Dashed + Ratllada + + + Dotted + + + + Double + + + + End + Fi + + + Span: + + + + Custom + + + InspectorBeam @@ -3685,6 +3882,57 @@ spatium unit ... + + InspectorHairpin + + Form + Formulari + + + Hairpin + Regulador + + + crescendo + + + + decrescendo + + + + Subtype: + + + + Dynamic Range: + + + + Velo. change: + + + + Staff + Pentagrama + + + Part + + + + SYstem + + + + reset value + + + + ... + ... + + InspectorImage @@ -3937,6 +4185,37 @@ spatium unit + + InspectorOttava + + Form + Formulari + + + Ottava + Octava + + + Subtype: + + + + 8va + 8va + + + 15ma + 15ma + + + 8vb + 8vb + + + 15mb + 15mb + + InspectorRest @@ -4005,6 +4284,41 @@ spatium unit + + InspectorTrill + + Form + Formulari + + + Trill + Trino + + + Subtype: + + + + trill line + + + + up prall + + + + down prall + + + + prall prall + + + + wavy line + + + InspectorVBox @@ -4063,6 +4377,29 @@ spatium unit + + InspectorVolta + + Form + Formulari + + + Volta + Volta + + + Subtype: + + + + Open + + + + Closed + + + InstrumentDialogBase @@ -4117,24 +4454,24 @@ spatium unit Staves Pentagrames - - visible - Visible - Clef Clau - linked + Add Linked Staff - staff linked to previous + Visible + Visible + + + Linked - Add Linked Staff + Staff Linked to Previous @@ -4964,6 +5301,34 @@ Would you like to locate %2 now? -> + + 1 + 1 + + + 2 + 2 + + + 4 + 4 + + + 8 + 8 + + + 16 + 16 + + + 32 + 32 + + + 64 + 64 + MeasuresDialogBase @@ -5195,10 +5560,6 @@ Would you like to locate %2 now? &About &Referent a - - note entry mode - Mode d'entrada de notes - edit mode Mode d'edició @@ -5674,10 +6035,6 @@ Restaurar sessió? please choose a different name: - - Cannot read file: %1 error: %2 - - Overture / Score Writer Files <experimental> (*.ove *.scw);; @@ -5959,51 +6316,95 @@ please choose a different name: - LilyPond Format (*.ly) + LilyPond Format (*.ly) + + + + MuseScore: Export Parts + + + + Parts were successfully exported + + + + Continuous View + + + + About &MusicXML + + + + Report a bug + + + + MuseScore: Load Plugin + + + + MuseScore Plugin (*.qml);;All Files (*) + + + + MuseScore: Save Plugin + + + + MuseScore Plugin File (*.qml) + + + + &Plugins + + + + Find - MuseScore: Export Parts + Dotted - Parts were successfully exported + Tick 1 - Continuous View + Tick 2 - About &MusicXML + Short 1 - Report a bug + Short 2 - MuseScore: Load Plugin + plop - MuseScore Plugin (*.qml);;All Files (*) + scoop - MuseScore: Save Plugin + NOTE entry mode - MuseScore Plugin File (*.qml) + DRUM entry mode - &Plugins + TAB entry mode - Find + you cannot create an element @@ -6154,14 +6555,6 @@ please choose a different name: note head group Grup de caps de notes - - OnTime: - - - - OffTime: - - invalid Invàlid @@ -6178,6 +6571,10 @@ please choose a different name: Dot3 + + NoteEvents + + OmrPanel @@ -6770,6 +7167,14 @@ save before closing? Choose Images Directory + + MuseScore Shortcuts + + + + Print Shortcuts + + PrefsDialogBase @@ -7405,6 +7810,10 @@ save before closing? Define Shortcut + + Print + Imprimeix + Properties @@ -8051,26 +8460,6 @@ Sequencer will be disabled. Form Formulari - - Slur - Lligadura - - - Slur End - Fi de lligadura - - - Staff: - Pentagrama: - - - Voice: - Veu: - - - Tick: - Pulsació: - SlurPropertyBase @@ -8157,6 +8546,14 @@ Sequencer will be disabled. Form Formulari + + CHORD + + + + NOTE + + SplitStaff @@ -9023,6 +9420,7 @@ altera Space + spatium unit Espais @@ -9057,10 +9455,6 @@ altera frame line width Amplada de la línea del marc - - mm - mm - Margin: Marge: @@ -9093,6 +9487,10 @@ altera Background Color: + + sp + Espais + TextStyleDialog @@ -9192,6 +9590,10 @@ please choose a different name: unstyled + + align vertical baseline + + TimeDialog @@ -9199,14 +9601,6 @@ please choose a different name: MuseScore: Time Signatures MuseScore: Indicacions de compàs - - 4/4 common time - 4/4 Compàs comú - - - 2/2 alla breve - 2/2 Allabreve - TimeDialogBase @@ -9368,10 +9762,6 @@ p, li { white-space: pre-wrap; } MuseScore: Transpose MuseScore: Transposa - - Transpose by Key - Transposa segons clau - Cb major / Ab minor Dob Major / Lab menor @@ -9444,10 +9834,6 @@ p, li { white-space: pre-wrap; } Closest Més proper - - Transpose by Interval - Transposa segons interval - Perfect Unison Unisó @@ -9564,6 +9950,50 @@ p, li { white-space: pre-wrap; } Use double sharps and flats Utilitza sostinguts i bemolls dobles + + Transpose Chromatically + + + + By Key + + + + By Interval + + + + Transpose Diatonically + + + + Second + + + + Third + + + + Fourth + + + + Fifth + + + + Sixth + + + + Seventh + + + + Keep degree alterations + + TremoloBarDialog @@ -9792,10 +10222,6 @@ p, li { white-space: pre-wrap; } Save a Copy... Desa una còpia ... - - Reload - Recarrega - Create new score Crea nova partitura @@ -10336,14 +10762,6 @@ p, li { white-space: pre-wrap; } Save a copy of the score in addition to the current file Desa una còpia de la partitura a més del fitxer actual - - File reload - Recarrega fitxer - - - Reload score from file - Recarrega partitura des del fitxer - File close Tanca fitxer @@ -10736,10 +11154,6 @@ p, li { white-space: pre-wrap; } Page: end - - Add slur - - Crescendo Crescendo @@ -11016,14 +11430,6 @@ p, li { white-space: pre-wrap; } Picture - - Player seek to begin - - - - Player seek to end - - &Transpose... @@ -11208,14 +11614,6 @@ p, li { white-space: pre-wrap; } Diatonic up - - next score - - - - previous score - - Reset user settings @@ -11244,10 +11642,6 @@ p, li { white-space: pre-wrap; } Respell pitches - - Grace: 8nd after - - Pan score while playing on/off @@ -11312,10 +11706,6 @@ p, li { white-space: pre-wrap; } Master Palette... - - Insert Measure - - Toggle View Mode @@ -11484,10 +11874,6 @@ p, li { white-space: pre-wrap; } Save Style... - - Save Style As Default... - - Select All @@ -11560,6 +11946,162 @@ p, li { white-space: pre-wrap; } Plugin Creator + + Slur + Lligadura + + + Add Slur + + + + Add Crescendo + + + + Grace: 8th after + + + + Play Previous Chord + + + + Play Previous Measure + + + + Play Next Chord + + + + Play Next Measure + + + + Player Seek to Begin + + + + Player Seek to End + + + + Save Style as Default... + + + + String above (TAB) + + + + Select string above (TAB only) + + + + String below (TAB) + + + + Select string below (TAB only) + + + + Fret 0 (TAB) + + + + Add fret 0 on current string (TAB only) + + + + Fret 1 (TAB) + + + + Add fret 1 on current string (TAB only) + + + + Fret 2 (TAB) + + + + Add fret 2 on current string (TAB only) + + + + Fret 3 (TAB) + + + + Add fret 3 on current string (TAB only) + + + + Fret 4 (TAB) + + + + Add fret 4 of current string (TAB only) + + + + Fret 5 (TAB) + + + + Add fret 5 of current string (TAB only) + + + + Fret 6 (TAB) + + + + Add fret 6 of current string (TAB only) + + + + Fret 7 (TAB) + + + + Add fret 7 of current string (TAB only) + + + + Fret 8 (TAB) + + + + Add fret 8 of current string (TAB only) + + + + Fret 9 (TAB) + + + + Add fret 9 of current string (TAB only) + + + + Staff Types... + + + + Staff type editor + + + + Show staff type editor + + + + Note anchored Textline + + articulation @@ -11702,6 +12244,10 @@ p, li { white-space: pre-wrap; } Line Línia + + Wavy line + + magTable diff --git a/share/locale/mscore_cs.ts b/share/locale/mscore_cs.ts index b3ae233b295d0..e2c1052e8040d 100644 --- a/share/locale/mscore_cs.ts +++ b/share/locale/mscore_cs.ts @@ -3,6 +3,14 @@ AboutBox + + About MuseScore + + + + Copy revision number + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -12,9 +20,9 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Support MuseScore with </span><a href="http://www.musescore.org/en/donate"><span style=" font-size:10pt; text-decoration: underline; color:#0000ff;">your donation</span></a></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Arial'; font-size:10pt;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Copyright </span><span style=" font-size:10pt;">©</span><span style=" font-family:'Arial'; font-size:10pt;"> 1999-2009 Werner Schweer and Others. </span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Copyright </span><span style=" font-size:10pt;">©</span><span style=" font-family:'Arial'; font-size:10pt;"> 1999-2012 Werner Schweer and Others. </span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Published under the GNU General Public License</span></p></body></html> - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> @@ -23,15 +31,7 @@ p, li { white-space: pre-wrap; } <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Arial'; font-size:10pt;"></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Copyright </span><span style=" font-size:10pt;">©</span><span style=" font-family:'Arial'; font-size:10pt;"> 1999-2009 Werner Schweer a další. </span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Zveřejněno pod GNU General Public License</span></p></body></html> - - - About MuseScore - - - - Copy revision number - +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Zveřejněno pod GNU General Public License</span></p></body></html> {3C?} {4.0/?} {3.?} {40/?} {1"?} {2'?} {8.25p?} {400;?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {10p?} {10p?} {0000f?} {10p?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {10p?} {10p?} {0000f?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {10p?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {10p?} {10p?} {10p?} {1999-2012 ?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {10p?} @@ -55,17 +55,6 @@ p, li { white-space: pre-wrap; } About MusicXML - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; font-size:10pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">MusicXML is an open file format for exchanging digital sheet music,</p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">supported by many applications. MusicXML is copyright © MakeMusic, Inc.</p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">All rights reserved. For more information see: <a href="http://www.makemusic.com/xml.html"><span style=" text-decoration: underline; color:#0000ff;">MakeMusic</span></a></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; text-decoration: underline; color:#0000ff;"></p></body></html> - - The MusicXML Public License: @@ -113,6 +102,17 @@ p, li { white-space: pre-wrap; } <p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p></body></html> + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans Serif'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">MusicXML is an open file format for exchanging digital sheet music,</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">supported by many applications. MusicXML is copyright © MakeMusic, Inc.</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">All rights reserved. For more information, see: <a href="http://www.makemusic.com/musicxml"><span style=" text-decoration: underline; color:#0000ff;">MakeMusic</span></a></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; text-decoration: underline; color:#0000ff;"></p></body></html> + + Accidental @@ -131,30 +131,14 @@ p, li { white-space: pre-wrap; } Album Name: - - album name - - - - remove current score - - Remove Score - - move current score down in list - - Down Dolů - - move current score up in list - - Up Nahoru @@ -163,18 +147,10 @@ p, li { white-space: pre-wrap; } Add Score - - create new album - - New Nový - - load an existing album - - Print Album @@ -207,6 +183,30 @@ p, li { white-space: pre-wrap; } MuseScore: Load Album + + Album Name + + + + Remove Current Score + + + + Move Current Score Down in List + + + + Move Current Score Up in List + + + + Create New Album + + + + Load an Existing Album + + ArticulationBase @@ -296,6 +296,14 @@ p, li { white-space: pre-wrap; } BarLine Taktová čára + + spanFrom: + + + + spanTo: + + BeamBase @@ -351,6 +359,37 @@ p, li { white-space: pre-wrap; } + + BoxBase + + Form + Formulář + + + bottomMargin: + + + + topGap: + + + + bottomGap: + + + + leftMargin: + + + + topMargin: + + + + rightMargin: + + + BoxPropertiesBase @@ -1412,6 +1451,22 @@ nepodařilo se: No. + + 1 + 1 + + + 2 + 2 + + + 3 + 3 + + + 4 + 4 + EditInstrumentBase @@ -2030,6 +2085,10 @@ nepodařilo se: B -1 + + A 7 + + EditRaster @@ -2058,6 +2117,17 @@ nepodařilo se: + + EditStaff + + Edit Short Name + + + + Edit Long Name + + + EditStaffBase @@ -2128,10 +2198,6 @@ nepodařilo se: Type: Typ: - - Edit... - - ... ... @@ -2315,16 +2381,6 @@ nepodařilo se: Select: - - Guitar (modern) - tablatture type - - - - Bass (modern) - tablature type - - Italian (historic) tablature type @@ -2335,10 +2391,6 @@ nepodařilo se: tablature type - - Set - - Show Clef @@ -2463,6 +2515,68 @@ nepodařilo se: Preview Náhled + + 6 strings (generic guitar) + tablatture type + + + + 4 strings (generic bass) + tablature type + + + + ukulele + + + + bandurria + + + + Custom + + + + Stem position: + + + + Above + Nad + + + Below + + + + Stem style: + + + + Beside staff + + + + Through staff + + + + Half notes: + + + + As short stem + + + + As slashed stem + + + + Show Rests + + EditStringDataBase @@ -2513,6 +2627,14 @@ nepodařilo se: Chord Akord + + Edit Plain Text + + + + Edit HTML Text + + EditStyleBase @@ -2594,6 +2716,10 @@ spatium unit ---------- spatium unit ---------- +spatium unit +---------- +spatium unit +---------- spatium unit sp @@ -3186,6 +3312,18 @@ p, li { white-space: pre-wrap; } Clef/Key right margin + + Pedal, Trill + + + + Pedal Line + + + + Trill Line + + EditTempoBase @@ -3466,6 +3604,65 @@ spatium unit + + InspectorBarLine + + Staff default + + + + Tick + + + + Tick alt. + + + + Short + + + + Short alt. + + + + Type: + Typ: + + + Measure default + + + + Normal + Obvyklé + + + Dashed + Čárkované + + + Dotted + + + + Double + + + + End + Konec + + + Span: + + + + Custom + + + InspectorBeam @@ -3685,6 +3882,57 @@ spatium unit ... + + InspectorHairpin + + Form + Formulář + + + Hairpin + Sponka pro Cresc./Decrescendo + + + crescendo + + + + decrescendo + + + + Subtype: + + + + Dynamic Range: + + + + Velo. change: + + + + Staff + Notová osnova + + + Part + + + + SYstem + + + + reset value + + + + ... + ... + + InspectorImage @@ -3937,6 +4185,37 @@ spatium unit + + InspectorOttava + + Form + Formulář + + + Ottava + Oktáva + + + Subtype: + + + + 8va + 8va + + + 15ma + 15ma + + + 8vb + 8vb + + + 15mb + 15mb + + InspectorRest @@ -4005,6 +4284,41 @@ spatium unit + + InspectorTrill + + Form + Formulář + + + Trill + Trylek + + + Subtype: + + + + trill line + + + + up prall + + + + down prall + + + + prall prall + + + + wavy line + + + InspectorVBox @@ -4063,6 +4377,29 @@ spatium unit + + InspectorVolta + + Form + Formulář + + + Volta + Volta + + + Subtype: + + + + Open + + + + Closed + + + InstrumentDialogBase @@ -4117,24 +4454,24 @@ spatium unit Staves Notové osnovy - - visible - Viditelný - Clef Klíč - linked + Add Linked Staff - staff linked to previous + Visible + Viditelná + + + Linked - Add Linked Staff + Staff Linked to Previous @@ -4964,6 +5301,34 @@ Would you like to locate %2 now? -> + + 1 + 1 + + + 2 + 2 + + + 4 + 4 + + + 8 + 8 + + + 16 + 16 + + + 32 + 32 + + + 64 + 64 + MeasuresDialogBase @@ -5139,10 +5504,6 @@ Would you like to locate %2 now? &About &O programu - - note entry mode - Režim zadávání not - edit mode Režim úprav @@ -5672,10 +6033,6 @@ Restore session? please choose a different name: - - Cannot read file: %1 error: %2 - - Overture / Score Writer Files <experimental> (*.ove *.scw);; @@ -5957,51 +6314,95 @@ please choose a different name: - LilyPond Format (*.ly) + LilyPond Format (*.ly) + + + + MuseScore: Export Parts + + + + Parts were successfully exported + + + + Continuous View + + + + About &MusicXML + + + + Report a bug + + + + MuseScore: Load Plugin + + + + MuseScore Plugin (*.qml);;All Files (*) + + + + MuseScore: Save Plugin + + + + MuseScore Plugin File (*.qml) + + + + &Plugins + + + + Find - MuseScore: Export Parts + Dotted - Parts were successfully exported + Tick 1 - Continuous View + Tick 2 - About &MusicXML + Short 1 - Report a bug + Short 2 - MuseScore: Load Plugin + plop - MuseScore Plugin (*.qml);;All Files (*) + scoop - MuseScore: Save Plugin + NOTE entry mode - MuseScore Plugin File (*.qml) + DRUM entry mode - &Plugins + TAB entry mode - Find + you cannot create an element @@ -6152,14 +6553,6 @@ please choose a different name: note head group Skupina notových hlaviček - - OnTime: - - - - OffTime: - - invalid Neplatný @@ -6176,6 +6569,10 @@ please choose a different name: Dot3 + + NoteEvents + + OmrPanel @@ -6768,6 +7165,14 @@ save before closing? Choose Images Directory + + MuseScore Shortcuts + + + + Print Shortcuts + + PrefsDialogBase @@ -7404,6 +7809,10 @@ v pixelech (vyšší hodnota rovná se větší poloměr) Define Shortcut + + Print + Tisknout + Properties @@ -8051,27 +8460,6 @@ Sekvencer bude vypnut. Form Formulář - - Slur - Oblouček - - - Slur End - Konec obloučku - - - Staff: - Notová osnova: - - - Voice: - Hlas: - - - Tick: - Odškrtnutí: - - SlurPropertyBase @@ -8158,6 +8546,14 @@ Sekvencer bude vypnut. Form Formulář + + CHORD + + + + NOTE + + SplitStaff @@ -9024,6 +9420,7 @@ altera Space + spatium unit Mezera @@ -9058,10 +9455,6 @@ altera frame line width Šířka čáry rámečku - - mm - mm - Margin: Okraj: @@ -9094,6 +9487,10 @@ altera Background Color: + + sp + sp + TextStyleDialog @@ -9193,6 +9590,10 @@ please choose a different name: unstyled + + align vertical baseline + + TimeDialog @@ -9200,14 +9601,6 @@ please choose a different name: MuseScore: Time Signatures MuseScore: Taktová označení - - 4/4 common time - 4/4 čtyřčtvrťový takt/rytmus - - - 2/2 alla breve - 2/2 alla breve - TimeDialogBase @@ -9369,10 +9762,6 @@ p, li { white-space: pre-wrap; } MuseScore: Transpose MuseScore: Převést - - Transpose by Key - Převést podle tóniny - Cb major / Ab minor Ces dur/As moll @@ -9445,10 +9834,6 @@ p, li { white-space: pre-wrap; } Closest Nejbližší - - Transpose by Interval - Převést o interval - Perfect Unison Čistá prima @@ -9565,6 +9950,50 @@ p, li { white-space: pre-wrap; } Use double sharps and flats Použít také dvojité křížky a dvojitá béčka + + Transpose Chromatically + + + + By Key + + + + By Interval + + + + Transpose Diatonically + + + + Second + + + + Third + + + + Fourth + + + + Fifth + + + + Sixth + + + + Seventh + + + + Keep degree alterations + + TremoloBarDialog @@ -9793,10 +10222,6 @@ p, li { white-space: pre-wrap; } Save a Copy... Uložit kopii... - - Reload - Nahrát znovu - Create new score Vytvořit nový notový zápis @@ -10337,14 +10762,6 @@ p, li { white-space: pre-wrap; } Save a copy of the score in addition to the current file Uložit kopii notového zápisu kromě nynějšího souboru - - File reload - Znovunačtení souboru - - - Reload score from file - Načíst znovu notový zápis ze souboru - File close Zavřít soubor @@ -10737,10 +11154,6 @@ p, li { white-space: pre-wrap; } Page: end - - Add slur - - Crescendo Crescendo @@ -11017,14 +11430,6 @@ p, li { white-space: pre-wrap; } Picture - - Player seek to begin - - - - Player seek to end - - &Transpose... @@ -11209,14 +11614,6 @@ p, li { white-space: pre-wrap; } Diatonic up - - next score - - - - previous score - - Reset user settings @@ -11245,10 +11642,6 @@ p, li { white-space: pre-wrap; } Respell pitches - - Grace: 8nd after - - Pan score while playing on/off @@ -11313,10 +11706,6 @@ p, li { white-space: pre-wrap; } Master Palette... - - Insert Measure - - Toggle View Mode @@ -11485,10 +11874,6 @@ p, li { white-space: pre-wrap; } Save Style... - - Save Style As Default... - - Select All @@ -11561,6 +11946,162 @@ p, li { white-space: pre-wrap; } Plugin Creator + + Slur + Oblouček + + + Add Slur + + + + Add Crescendo + + + + Grace: 8th after + + + + Play Previous Chord + + + + Play Previous Measure + + + + Play Next Chord + + + + Play Next Measure + + + + Player Seek to Begin + + + + Player Seek to End + + + + Save Style as Default... + + + + String above (TAB) + + + + Select string above (TAB only) + + + + String below (TAB) + + + + Select string below (TAB only) + + + + Fret 0 (TAB) + + + + Add fret 0 on current string (TAB only) + + + + Fret 1 (TAB) + + + + Add fret 1 on current string (TAB only) + + + + Fret 2 (TAB) + + + + Add fret 2 on current string (TAB only) + + + + Fret 3 (TAB) + + + + Add fret 3 on current string (TAB only) + + + + Fret 4 (TAB) + + + + Add fret 4 of current string (TAB only) + + + + Fret 5 (TAB) + + + + Add fret 5 of current string (TAB only) + + + + Fret 6 (TAB) + + + + Add fret 6 of current string (TAB only) + + + + Fret 7 (TAB) + + + + Add fret 7 of current string (TAB only) + + + + Fret 8 (TAB) + + + + Add fret 8 of current string (TAB only) + + + + Fret 9 (TAB) + + + + Add fret 9 of current string (TAB only) + + + + Staff Types... + + + + Staff type editor + + + + Show staff type editor + + + + Note anchored Textline + + articulation @@ -11703,6 +12244,10 @@ p, li { white-space: pre-wrap; } Line Řádek + + Wavy line + + magTable diff --git a/share/locale/mscore_da.ts b/share/locale/mscore_da.ts index 88eb52137c06f..a51ffab5fbf24 100644 --- a/share/locale/mscore_da.ts +++ b/share/locale/mscore_da.ts @@ -3,6 +3,14 @@ AboutBox + + About MuseScore + + + + Copy revision number + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -12,9 +20,9 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Support MuseScore with </span><a href="http://www.musescore.org/en/donate"><span style=" font-size:10pt; text-decoration: underline; color:#0000ff;">your donation</span></a></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Arial'; font-size:10pt;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Copyright </span><span style=" font-size:10pt;">©</span><span style=" font-family:'Arial'; font-size:10pt;"> 1999-2009 Werner Schweer and Others. </span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Copyright </span><span style=" font-size:10pt;">©</span><span style=" font-family:'Arial'; font-size:10pt;"> 1999-2012 Werner Schweer and Others. </span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Published under the GNU General Public License</span></p></body></html> - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> @@ -23,15 +31,7 @@ p, li { white-space: pre-wrap; } <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Arial'; font-size:10pt;"></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Copyright </span><span style=" font-size:10pt;">©</span><span style=" font-family:'Arial'; font-size:10pt;"> 1999-2009 Werner Schweer and Others. </span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Published under the GNU General Public License</span></p></body></html> - - - About MuseScore - - - - Copy revision number - +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Published under the GNU General Public License</span></p></body></html> {3C?} {4.0/?} {3.?} {40/?} {1"?} {2'?} {8.25p?} {400;?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {10p?} {10p?} {0000f?} {10p?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {10p?} {10p?} {0000f?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {10p?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {10p?} {10p?} {10p?} {1999-2012 ?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {10p?} @@ -55,17 +55,6 @@ p, li { white-space: pre-wrap; } About MusicXML - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; font-size:10pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">MusicXML is an open file format for exchanging digital sheet music,</p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">supported by many applications. MusicXML is copyright © MakeMusic, Inc.</p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">All rights reserved. For more information see: <a href="http://www.makemusic.com/xml.html"><span style=" text-decoration: underline; color:#0000ff;">MakeMusic</span></a></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; text-decoration: underline; color:#0000ff;"></p></body></html> - - The MusicXML Public License: @@ -113,6 +102,17 @@ p, li { white-space: pre-wrap; } <p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p></body></html> + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans Serif'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">MusicXML is an open file format for exchanging digital sheet music,</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">supported by many applications. MusicXML is copyright © MakeMusic, Inc.</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">All rights reserved. For more information, see: <a href="http://www.makemusic.com/musicxml"><span style=" text-decoration: underline; color:#0000ff;">MakeMusic</span></a></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; text-decoration: underline; color:#0000ff;"></p></body></html> + + Accidental @@ -131,30 +131,14 @@ p, li { white-space: pre-wrap; } Album Name: - - album name - - - - remove current score - - Remove Score - - move current score down in list - - Down Ned - - move current score up in list - - Up Op @@ -163,18 +147,10 @@ p, li { white-space: pre-wrap; } Add Score - - create new album - - New Ny - - load an existing album - - Print Album @@ -207,6 +183,30 @@ p, li { white-space: pre-wrap; } MuseScore: Load Album + + Album Name + + + + Remove Current Score + + + + Move Current Score Down in List + + + + Move Current Score Up in List + + + + Create New Album + + + + Load an Existing Album + + ArticulationBase @@ -296,6 +296,14 @@ p, li { white-space: pre-wrap; } BarLine Taktstreg + + spanFrom: + + + + spanTo: + + BeamBase @@ -351,6 +359,37 @@ p, li { white-space: pre-wrap; } + + BoxBase + + Form + Form + + + bottomMargin: + + + + topGap: + + + + bottomGap: + + + + leftMargin: + + + + topMargin: + + + + rightMargin: + + + BoxPropertiesBase @@ -1412,6 +1451,22 @@ fejl: No. + + 1 + 1 + + + 2 + 2 + + + 3 + 3 + + + 4 + 4 + EditInstrumentBase @@ -2030,6 +2085,10 @@ fejl: B -1 + + A 7 + + EditRaster @@ -2058,6 +2117,17 @@ fejl: + + EditStaff + + Edit Short Name + + + + Edit Long Name + + + EditStaffBase @@ -2128,10 +2198,6 @@ fejl: Type: Type: - - Edit... - - ... ... @@ -2315,16 +2381,6 @@ fejl: Select: - - Guitar (modern) - tablatture type - - - - Bass (modern) - tablature type - - Italian (historic) tablature type @@ -2335,10 +2391,6 @@ fejl: tablature type - - Set - - Show Clef @@ -2463,6 +2515,68 @@ fejl: Preview Vis + + 6 strings (generic guitar) + tablatture type + + + + 4 strings (generic bass) + tablature type + + + + ukulele + + + + bandurria + + + + Custom + + + + Stem position: + + + + Above + Over + + + Below + + + + Stem style: + + + + Beside staff + + + + Through staff + + + + Half notes: + + + + As short stem + + + + As slashed stem + + + + Show Rests + + EditStringDataBase @@ -2513,6 +2627,14 @@ fejl: Chord Akkord + + Edit Plain Text + + + + Edit HTML Text + + EditStyleBase @@ -2594,6 +2716,10 @@ spatium unit ---------- spatium unit ---------- +spatium unit +---------- +spatium unit +---------- spatium unit enh @@ -3186,6 +3312,18 @@ p, li { white-space: pre-wrap; } Clef/Key right margin + + Pedal, Trill + + + + Pedal Line + + + + Trill Line + + EditTempoBase @@ -3466,6 +3604,65 @@ spatium unit + + InspectorBarLine + + Staff default + + + + Tick + + + + Tick alt. + + + + Short + + + + Short alt. + + + + Type: + Type: + + + Measure default + + + + Normal + Normal + + + Dashed + Stiplet + + + Dotted + + + + Double + + + + End + Slut + + + Span: + + + + Custom + + + InspectorBeam @@ -3685,6 +3882,57 @@ spatium unit ... + + InspectorHairpin + + Form + Form + + + Hairpin + Styrke kiler + + + crescendo + + + + decrescendo + + + + Subtype: + + + + Dynamic Range: + + + + Velo. change: + + + + Staff + Nodelinie + + + Part + + + + SYstem + + + + reset value + + + + ... + ... + + InspectorImage @@ -3937,6 +4185,37 @@ spatium unit + + InspectorOttava + + Form + Form + + + Ottava + Ottava + + + Subtype: + + + + 8va + 8va + + + 15ma + 15ma + + + 8vb + 8vb + + + 15mb + 15mb + + InspectorRest @@ -4005,6 +4284,41 @@ spatium unit + + InspectorTrill + + Form + Form + + + Trill + Trille + + + Subtype: + + + + trill line + + + + up prall + + + + down prall + + + + prall prall + + + + wavy line + + + InspectorVBox @@ -4063,6 +4377,29 @@ spatium unit + + InspectorVolta + + Form + Form + + + Volta + Volte + + + Subtype: + + + + Open + + + + Closed + + + InstrumentDialogBase @@ -4117,24 +4454,24 @@ spatium unit Staves Nodelinier - - visible - synlig - Clef Nøgle - linked + Add Linked Staff - staff linked to previous + Visible + Synlig + + + Linked - Add Linked Staff + Staff Linked to Previous @@ -4964,6 +5301,34 @@ Would you like to locate %2 now? -> + + 1 + 1 + + + 2 + 2 + + + 4 + 4 + + + 8 + 8 + + + 16 + 16 + + + 32 + 32 + + + 64 + 64 + MeasuresDialogBase @@ -5139,10 +5504,6 @@ Would you like to locate %2 now? &About &Om - - note entry mode - nodeindtastnings modus - edit mode redigerings modus @@ -5674,10 +6035,6 @@ Genskab denne session? please choose a different name: - - Cannot read file: %1 error: %2 - - Overture / Score Writer Files <experimental> (*.ove *.scw);; @@ -5959,51 +6316,95 @@ please choose a different name: - LilyPond Format (*.ly) + LilyPond Format (*.ly) + + + + MuseScore: Export Parts + + + + Parts were successfully exported + + + + Continuous View + + + + About &MusicXML + + + + Report a bug + + + + MuseScore: Load Plugin + + + + MuseScore Plugin (*.qml);;All Files (*) + + + + MuseScore: Save Plugin + + + + MuseScore Plugin File (*.qml) + + + + &Plugins + + + + Find - MuseScore: Export Parts + Dotted - Parts were successfully exported + Tick 1 - Continuous View + Tick 2 - About &MusicXML + Short 1 - Report a bug + Short 2 - MuseScore: Load Plugin + plop - MuseScore Plugin (*.qml);;All Files (*) + scoop - MuseScore: Save Plugin + NOTE entry mode - MuseScore Plugin File (*.qml) + DRUM entry mode - &Plugins + TAB entry mode - Find + you cannot create an element @@ -6154,14 +6555,6 @@ please choose a different name: note head group Node hoveder - - OnTime: - OnTime: - - - OffTime: - OffTime: - invalid ugyldig @@ -6178,6 +6571,10 @@ please choose a different name: Dot3 + + NoteEvents + + OmrPanel @@ -6770,6 +7167,14 @@ save before closing? Choose Images Directory + + MuseScore Shortcuts + + + + Print Shortcuts + + PrefsDialogBase @@ -7405,6 +7810,10 @@ save before closing? Define Shortcut + + Print + Udskriv + Properties @@ -8051,26 +8460,6 @@ Sequenzer vil ikke være tilgængelig. Form Form - - Slur - Legato-bue - - - Slur End - Legato-bue slut - - - Staff: - Nodelinie: - - - Voice: - Stemme: - - - Tick: - Markering: - SlurPropertyBase @@ -8157,6 +8546,14 @@ Sequenzer vil ikke være tilgængelig. Form Form + + CHORD + + + + NOTE + + SplitStaff @@ -9023,6 +9420,7 @@ altera Space + spatium unit Afstand @@ -9057,10 +9455,6 @@ altera frame line width ramme linie bredde - - mm - - Margin: Margen: @@ -9093,6 +9487,10 @@ altera Background Color: + + sp + + TextStyleDialog @@ -9192,6 +9590,10 @@ please choose a different name: unstyled + + align vertical baseline + + TimeDialog @@ -9199,14 +9601,6 @@ please choose a different name: MuseScore: Time Signatures MuseScore: taktarter - - 4/4 common time - 4/4 - - - 2/2 alla breve - 2/2 alla breve - TimeDialogBase @@ -9368,10 +9762,6 @@ p, li { white-space: pre-wrap; } MuseScore: Transpose MuseScore: Transponér - - Transpose by Key - Transponér ved toneart - Cb major / Ab minor Cb dur/ Ab mol @@ -9444,10 +9834,6 @@ p, li { white-space: pre-wrap; } Closest Nærmeste - - Transpose by Interval - Tranponér ved interval - Perfect Unison Prim @@ -9564,6 +9950,50 @@ p, li { white-space: pre-wrap; } Use double sharps and flats Tillad dobbelt-#/b + + Transpose Chromatically + + + + By Key + + + + By Interval + + + + Transpose Diatonically + + + + Second + + + + Third + + + + Fourth + + + + Fifth + + + + Sixth + + + + Seventh + + + + Keep degree alterations + + TremoloBarDialog @@ -9792,10 +10222,6 @@ p, li { white-space: pre-wrap; } Save a Copy... Gem en kopi... - - Reload - Genindlæs - Create new score Lav nyt stykke @@ -10336,14 +10762,6 @@ p, li { white-space: pre-wrap; } Save a copy of the score in addition to the current file Gem en kopi af stykket ud over den nuværende fil - - File reload - Fil genindlæs - - - Reload score from file - Genindlæs stykket fra fil - File close Fil luk @@ -10736,10 +11154,6 @@ p, li { white-space: pre-wrap; } Page: end - - Add slur - - Crescendo Crescendo @@ -11016,14 +11430,6 @@ p, li { white-space: pre-wrap; } Picture - - Player seek to begin - - - - Player seek to end - - &Transpose... @@ -11208,14 +11614,6 @@ p, li { white-space: pre-wrap; } Diatonic up - - next score - - - - previous score - - Reset user settings @@ -11244,10 +11642,6 @@ p, li { white-space: pre-wrap; } Respell pitches - - Grace: 8nd after - - Pan score while playing on/off @@ -11312,10 +11706,6 @@ p, li { white-space: pre-wrap; } Master Palette... - - Insert Measure - - Toggle View Mode @@ -11484,10 +11874,6 @@ p, li { white-space: pre-wrap; } Save Style... - - Save Style As Default... - - Select All @@ -11560,6 +11946,162 @@ p, li { white-space: pre-wrap; } Plugin Creator + + Slur + Legato-bue + + + Add Slur + + + + Add Crescendo + + + + Grace: 8th after + + + + Play Previous Chord + + + + Play Previous Measure + + + + Play Next Chord + + + + Play Next Measure + + + + Player Seek to Begin + + + + Player Seek to End + + + + Save Style as Default... + + + + String above (TAB) + + + + Select string above (TAB only) + + + + String below (TAB) + + + + Select string below (TAB only) + + + + Fret 0 (TAB) + + + + Add fret 0 on current string (TAB only) + + + + Fret 1 (TAB) + + + + Add fret 1 on current string (TAB only) + + + + Fret 2 (TAB) + + + + Add fret 2 on current string (TAB only) + + + + Fret 3 (TAB) + + + + Add fret 3 on current string (TAB only) + + + + Fret 4 (TAB) + + + + Add fret 4 of current string (TAB only) + + + + Fret 5 (TAB) + + + + Add fret 5 of current string (TAB only) + + + + Fret 6 (TAB) + + + + Add fret 6 of current string (TAB only) + + + + Fret 7 (TAB) + + + + Add fret 7 of current string (TAB only) + + + + Fret 8 (TAB) + + + + Add fret 8 of current string (TAB only) + + + + Fret 9 (TAB) + + + + Add fret 9 of current string (TAB only) + + + + Staff Types... + + + + Staff type editor + + + + Show staff type editor + + + + Note anchored Textline + + articulation @@ -11702,6 +12244,10 @@ p, li { white-space: pre-wrap; } Line Linie + + Wavy line + + magTable diff --git a/share/locale/mscore_de.ts b/share/locale/mscore_de.ts index 352d76067712c..f545ea01cd6b1 100644 --- a/share/locale/mscore_de.ts +++ b/share/locale/mscore_de.ts @@ -3,6 +3,14 @@ AboutBox + + About MuseScore + + + + Copy revision number + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -12,9 +20,9 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Support MuseScore with </span><a href="http://www.musescore.org/en/donate"><span style=" font-size:10pt; text-decoration: underline; color:#0000ff;">your donation</span></a></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Arial'; font-size:10pt;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Copyright </span><span style=" font-size:10pt;">©</span><span style=" font-family:'Arial'; font-size:10pt;"> 1999-2009 Werner Schweer and Others. </span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Copyright </span><span style=" font-size:10pt;">©</span><span style=" font-family:'Arial'; font-size:10pt;"> 1999-2012 Werner Schweer and Others. </span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Published under the GNU General Public License</span></p></body></html> - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> @@ -23,15 +31,7 @@ p, li { white-space: pre-wrap; } <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Arial'; font-size:10pt;"></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Copyright </span><span style=" font-size:10pt;">©</span><span style=" font-family:'Arial'; font-size:10pt;"> 1999-2010 Werner Schweer und Andere. </span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Veröffentlicht unter der GNU General Public Licence (GPL)</span></p></body></html> - - - About MuseScore - - - - Copy revision number - +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Veröffentlicht unter der GNU General Public Licence (GPL)</span></p></body></html> {3C?} {4.0/?} {3.?} {40/?} {1"?} {2'?} {8.25p?} {400;?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {10p?} {10p?} {0000f?} {10p?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {10p?} {10p?} {0000f?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {10p?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {10p?} {10p?} {10p?} {1999-2012 ?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {10p?} @@ -55,17 +55,6 @@ p, li { white-space: pre-wrap; } About MusicXML - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; font-size:10pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">MusicXML is an open file format for exchanging digital sheet music,</p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">supported by many applications. MusicXML is copyright © MakeMusic, Inc.</p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">All rights reserved. For more information see: <a href="http://www.makemusic.com/xml.html"><span style=" text-decoration: underline; color:#0000ff;">MakeMusic</span></a></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; text-decoration: underline; color:#0000ff;"></p></body></html> - - The MusicXML Public License: @@ -113,6 +102,17 @@ p, li { white-space: pre-wrap; } <p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p></body></html> + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans Serif'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">MusicXML is an open file format for exchanging digital sheet music,</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">supported by many applications. MusicXML is copyright © MakeMusic, Inc.</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">All rights reserved. For more information, see: <a href="http://www.makemusic.com/musicxml"><span style=" text-decoration: underline; color:#0000ff;">MakeMusic</span></a></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; text-decoration: underline; color:#0000ff;"></p></body></html> + + Accidental @@ -132,79 +132,79 @@ p, li { white-space: pre-wrap; } - album name + Remove Score - remove current score + Down - Remove Score + Up - move current score down in list + Add Score - Down - + New + Neu - move current score up in list + Print Album - Up + MuseScore Album Files (*.album);; - Add Score + All Files (*) - create new album + MuseScore Files (*.mscz *.mscx *.msc);; - New - Neu + Join Scores + - load an existing album - + Load + Laden - Print Album + MuseScore: Add Score - MuseScore Album Files (*.album);; + MuseScore: Load Album - All Files (*) + Album Name - MuseScore Files (*.mscz *.mscx *.msc);; + Remove Current Score - Join Scores + Move Current Score Down in List - Load - Laden + Move Current Score Up in List + - MuseScore: Add Score + Create New Album - MuseScore: Load Album + Load an Existing Album @@ -296,6 +296,14 @@ p, li { white-space: pre-wrap; } BarLine Taktstrich + + spanFrom: + + + + spanTo: + + BeamBase @@ -351,6 +359,37 @@ p, li { white-space: pre-wrap; } + + BoxBase + + Form + Formular + + + bottomMargin: + + + + topGap: + + + + bottomGap: + + + + leftMargin: + + + + topMargin: + + + + rightMargin: + + + BoxPropertiesBase @@ -387,9 +426,7 @@ p, li { white-space: pre-wrap; } sp - spatium unit ----------- -spatium unit + spatium unit sp @@ -1412,6 +1449,22 @@ fehlgeschlagen: No. + + 1 + 1 + + + 2 + 2 + + + 3 + 3 + + + 4 + 4 + EditInstrumentBase @@ -2030,6 +2083,10 @@ fehlgeschlagen: B -1 + + A 7 + + EditRaster @@ -2058,6 +2115,17 @@ fehlgeschlagen: + + EditStaff + + Edit Short Name + + + + Edit Long Name + + + EditStaffBase @@ -2128,10 +2196,6 @@ fehlgeschlagen: Type: Typ: - - Edit... - - ... ... @@ -2315,16 +2379,6 @@ fehlgeschlagen: Select: - - Guitar (modern) - tablatture type - - - - Bass (modern) - tablature type - - Italian (historic) tablature type @@ -2335,10 +2389,6 @@ fehlgeschlagen: tablature type - - Set - - Show Clef @@ -2463,6 +2513,68 @@ fehlgeschlagen: Preview Vorschau + + 6 strings (generic guitar) + tablatture type + + + + 4 strings (generic bass) + tablature type + + + + ukulele + + + + bandurria + + + + Custom + + + + Stem position: + + + + Above + Darüber + + + Below + + + + Stem style: + + + + Beside staff + + + + Through staff + + + + Half notes: + + + + As short stem + + + + As slashed stem + + + + Show Rests + + EditStringDataBase @@ -2513,6 +2625,14 @@ fehlgeschlagen: Chord Akkord + + Edit Plain Text + + + + Edit HTML Text + + EditStyleBase @@ -2574,31 +2694,7 @@ fehlgeschlagen: sp - spatium unit ----------- -spatium unit ----------- -spatium unit ----------- -spatium unit ----------- -spatium unit ----------- -spatium unit ----------- -space unit ----------- -space unit ----------- -spatium unit ----------- -spatium unit ----------- -spatium unit ----------- -spatium unit ----------- -spatium unit + spatium unit sp @@ -3186,6 +3282,18 @@ p, li { white-space: pre-wrap; } Clef/Key right margin + + Pedal, Trill + + + + Pedal Line + + + + Trill Line + + EditTempoBase @@ -3416,9 +3524,7 @@ p, li { white-space: pre-wrap; } sp - spatium unit ----------- -spatium unit + spatium unit sp @@ -3466,6 +3572,65 @@ spatium unit + + InspectorBarLine + + Staff default + + + + Tick + + + + Tick alt. + + + + Short + + + + Short alt. + + + + Type: + Typ: + + + Measure default + + + + Normal + Normal + + + Dashed + gestrichelt + + + Dotted + + + + Double + + + + End + Ende + + + Span: + + + + Custom + + + InspectorBeam @@ -3569,9 +3734,7 @@ spatium unit sp - spatium unit ----------- -spatium unit + spatium unit sp @@ -3602,9 +3765,7 @@ spatium unit sp - spatium unit ----------- -spatium unit + spatium unit sp @@ -3663,9 +3824,7 @@ spatium unit sp - spatium unit ----------- -spatium unit + spatium unit sp @@ -3685,6 +3844,57 @@ spatium unit ... + + InspectorHairpin + + Form + Formular + + + Hairpin + Gabel + + + crescendo + + + + decrescendo + + + + Subtype: + + + + Dynamic Range: + + + + Velo. change: + + + + Staff + Notenzeile + + + Part + + + + SYstem + + + + reset value + + + + ... + ... + + InspectorImage @@ -3937,6 +4147,37 @@ spatium unit + + InspectorOttava + + Form + Formular + + + Ottava + Ottava + + + Subtype: + + + + 8va + 8va + + + 15ma + 15ma + + + 8vb + 8vb + + + 15mb + 15mb + + InspectorRest @@ -3960,9 +4201,7 @@ spatium unit sp - spatium unit ----------- -spatium unit + spatium unit sp @@ -4005,6 +4244,41 @@ spatium unit + + InspectorTrill + + Form + Formular + + + Trill + Triller + + + Subtype: + + + + trill line + + + + up prall + + + + down prall + + + + prall prall + + + + wavy line + + + InspectorVBox @@ -4017,9 +4291,7 @@ spatium unit sp - spatium unit ----------- -spatium unit + spatium unit sp @@ -4063,6 +4335,29 @@ spatium unit + + InspectorVolta + + Form + Formular + + + Volta + Volta (*. Haus) + + + Subtype: + + + + Open + + + + Closed + + + InstrumentDialogBase @@ -4117,24 +4412,24 @@ spatium unit Staves Notensysteme - - visible - sichtbar - Clef Schlüssel - linked + Add Linked Staff - staff linked to previous + Visible + Sichtbar + + + Linked - Add Linked Staff + Staff Linked to Previous @@ -4706,8 +5001,8 @@ fehlgeschlagen: - MuseScore does not export MP3 files directly, but instead uses -the freely available LAME library. You must obtain %1 + MuseScore does not export MP3 files directly, but instead uses +the freely available LAME library. You must obtain %1 separately, and then locate the file for MuseScore. You only need to do this once. @@ -4964,6 +5259,34 @@ Would you like to locate %2 now? -> + + 1 + 1 + + + 2 + 2 + + + 4 + 4 + + + 8 + 8 + + + 16 + 16 + + + 32 + 32 + + + 64 + 64 + MeasuresDialogBase @@ -5123,10 +5446,6 @@ Would you like to locate %2 now? MuseScore: Load Score MuseScore: Partitur laden - - note entry mode - Noten-Eingabe - edit mode BEARBEITEN @@ -5671,10 +5990,6 @@ Restore session? please choose a different name: - - Cannot read file: %1 error: %2 - - Overture / Score Writer Files <experimental> (*.ove *.scw);; @@ -5956,51 +6271,95 @@ please choose a different name: - LilyPond Format (*.ly) + LilyPond Format (*.ly) + + + + MuseScore: Export Parts + + + + Parts were successfully exported + + + + Continuous View + + + + About &MusicXML + + + + Report a bug + + + + MuseScore: Load Plugin + + + + MuseScore Plugin (*.qml);;All Files (*) + + + + MuseScore: Save Plugin + + + + MuseScore Plugin File (*.qml) + + + + &Plugins + + + + Find - MuseScore: Export Parts + Dotted - Parts were successfully exported + Tick 1 - Continuous View + Tick 2 - About &MusicXML + Short 1 - Report a bug + Short 2 - MuseScore: Load Plugin + plop - MuseScore Plugin (*.qml);;All Files (*) + scoop - MuseScore: Save Plugin + NOTE entry mode - MuseScore Plugin File (*.qml) + DRUM entry mode - &Plugins + TAB entry mode - Find + you cannot create an element @@ -6151,14 +6510,6 @@ please choose a different name: note head group Notenkopfgruppe - - OnTime: - Ein-Zeit: - - - OffTime: - Aus-Zeit: - invalid ungültig @@ -6175,6 +6526,10 @@ please choose a different name: Dot3 + + NoteEvents + + OmrPanel @@ -6767,6 +7122,14 @@ save before closing? Choose Images Directory + + MuseScore Shortcuts + + + + Print Shortcuts + + PrefsDialogBase @@ -7403,6 +7766,10 @@ in Pixel (größerer Wert gleich größerer Radius) Define Shortcut + + Print + Drucken + Properties @@ -8049,26 +8416,6 @@ Sequenzer wird abgeschaltet. Form Formular - - Staff: - Notenzeile: - - - Voice: - Stimme: - - - Tick: - Tick: - - - Slur End - Bindebogen Ende - - - Slur - Bindebogen - SlurPropertyBase @@ -8155,6 +8502,14 @@ Sequenzer wird abgeschaltet. Form Formular + + CHORD + + + + NOTE + + SplitStaff @@ -8728,7 +9083,7 @@ altera Space - Leertaste + Spatium Text @@ -9021,7 +9376,8 @@ altera Space - Leertaste + spatium unit + Spatium enable text frame @@ -9055,10 +9411,6 @@ altera frame line width Rahmenlinienbreite - - mm - mm - Margin: Rand: @@ -9091,6 +9443,10 @@ altera Background Color: + + sp + sp + TextStyleDialog @@ -9190,6 +9546,10 @@ please choose a different name: unstyled + + align vertical baseline + + TimeDialog @@ -9197,14 +9557,6 @@ please choose a different name: MuseScore: Time Signatures MuseScore: Taktarten - - 4/4 common time - 4/4 - - - 2/2 alla breve - 2/2 allabreve - TimeDialogBase @@ -9363,10 +9715,6 @@ p, li { white-space: pre-wrap; } MuseScore: Transpose MuseScore: Transponieren - - Transpose by Key - nach Tonart transponieren - Cb major / Ab minor Cb dur / Ab moll @@ -9439,10 +9787,6 @@ p, li { white-space: pre-wrap; } Closest zum nächstliegenden - - Transpose by Interval - transponiere um Intervall - Perfect Unison Prime @@ -9559,6 +9903,50 @@ p, li { white-space: pre-wrap; } Use double sharps and flats auch Doppelkreuz und Doppel-B's verwenden + + Transpose Chromatically + + + + By Key + + + + By Interval + + + + Transpose Diatonically + + + + Second + + + + Third + + + + Fourth + + + + Fifth + + + + Sixth + + + + Seventh + + + + Keep degree alterations + + TremoloBarDialog @@ -9787,10 +10175,6 @@ p, li { white-space: pre-wrap; } Save a Copy... Als Kopie sichern... - - Reload - Neu laden - Create new score Erzeuge neue Partitur @@ -10331,14 +10715,6 @@ p, li { white-space: pre-wrap; } Save a copy of the score in addition to the current file Kopie der Datei zusätzlich zur aktuellen Datei speichern - - File reload - Datei neu laden - - - Reload score from file - Partitur neu laden aus Datei - File close Datei schließen @@ -10731,10 +11107,6 @@ p, li { white-space: pre-wrap; } Page: end - - Add slur - - Crescendo Crescendo @@ -11011,14 +11383,6 @@ p, li { white-space: pre-wrap; } Picture - - Player seek to begin - - - - Player seek to end - - &Transpose... @@ -11203,14 +11567,6 @@ p, li { white-space: pre-wrap; } Diatonic up - - next score - - - - previous score - - Reset user settings @@ -11239,10 +11595,6 @@ p, li { white-space: pre-wrap; } Respell pitches - - Grace: 8nd after - - Pan score while playing on/off @@ -11307,10 +11659,6 @@ p, li { white-space: pre-wrap; } Master Palette... - - Insert Measure - - Toggle View Mode @@ -11479,10 +11827,6 @@ p, li { white-space: pre-wrap; } Save Style... - - Save Style As Default... - - Select All @@ -11555,6 +11899,162 @@ p, li { white-space: pre-wrap; } Plugin Creator + + Slur + Bindebogen + + + Add Slur + + + + Add Crescendo + + + + Grace: 8th after + + + + Play Previous Chord + + + + Play Previous Measure + + + + Play Next Chord + + + + Play Next Measure + + + + Player Seek to Begin + + + + Player Seek to End + + + + Save Style as Default... + + + + String above (TAB) + + + + Select string above (TAB only) + + + + String below (TAB) + + + + Select string below (TAB only) + + + + Fret 0 (TAB) + + + + Add fret 0 on current string (TAB only) + + + + Fret 1 (TAB) + + + + Add fret 1 on current string (TAB only) + + + + Fret 2 (TAB) + + + + Add fret 2 on current string (TAB only) + + + + Fret 3 (TAB) + + + + Add fret 3 on current string (TAB only) + + + + Fret 4 (TAB) + + + + Add fret 4 of current string (TAB only) + + + + Fret 5 (TAB) + + + + Add fret 5 of current string (TAB only) + + + + Fret 6 (TAB) + + + + Add fret 6 of current string (TAB only) + + + + Fret 7 (TAB) + + + + Add fret 7 of current string (TAB only) + + + + Fret 8 (TAB) + + + + Add fret 8 of current string (TAB only) + + + + Fret 9 (TAB) + + + + Add fret 9 of current string (TAB only) + + + + Staff Types... + + + + Staff type editor + + + + Show staff type editor + + + + Note anchored Textline + + articulation @@ -11697,6 +12197,10 @@ p, li { white-space: pre-wrap; } Line Linie + + Wavy line + + magTable diff --git a/share/locale/mscore_el.ts b/share/locale/mscore_el.ts index 794a40569eca5..756663cff9085 100644 --- a/share/locale/mscore_el.ts +++ b/share/locale/mscore_el.ts @@ -3,6 +3,14 @@ AboutBox + + About MuseScore + + + + Copy revision number + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -12,9 +20,9 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Support MuseScore with </span><a href="http://www.musescore.org/en/donate"><span style=" font-size:10pt; text-decoration: underline; color:#0000ff;">your donation</span></a></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Arial'; font-size:10pt;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Copyright </span><span style=" font-size:10pt;">©</span><span style=" font-family:'Arial'; font-size:10pt;"> 1999-2009 Werner Schweer and Others. </span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Copyright </span><span style=" font-size:10pt;">©</span><span style=" font-family:'Arial'; font-size:10pt;"> 1999-2012 Werner Schweer and Others. </span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Published under the GNU General Public License</span></p></body></html> - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> @@ -23,15 +31,7 @@ p, li { white-space: pre-wrap; } <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Arial'; font-size:10pt;"></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Copyright </span><span style=" font-size:10pt;">©</span><span style=" font-family:'Arial'; font-size:10pt;"> 1999-2009 Werner Schweer and Others. </span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Published under the GNU General Public License</span></p></body></html> - - - About MuseScore - - - - Copy revision number - +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Published under the GNU General Public License</span></p></body></html> {3C?} {4.0/?} {3.?} {40/?} {1"?} {2'?} {8.25p?} {400;?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {10p?} {10p?} {0000f?} {10p?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {10p?} {10p?} {0000f?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {10p?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {10p?} {10p?} {10p?} {1999-2012 ?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {10p?} @@ -56,17 +56,6 @@ p, li { white-space: pre-wrap; } About MusicXML - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; font-size:10pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">MusicXML is an open file format for exchanging digital sheet music,</p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">supported by many applications. MusicXML is copyright © MakeMusic, Inc.</p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">All rights reserved. For more information see: <a href="http://www.makemusic.com/xml.html"><span style=" text-decoration: underline; color:#0000ff;">MakeMusic</span></a></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; text-decoration: underline; color:#0000ff;"></p></body></html> - - The MusicXML Public License: @@ -114,6 +103,17 @@ p, li { white-space: pre-wrap; } <p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p></body></html> + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans Serif'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">MusicXML is an open file format for exchanging digital sheet music,</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">supported by many applications. MusicXML is copyright © MakeMusic, Inc.</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">All rights reserved. For more information, see: <a href="http://www.makemusic.com/musicxml"><span style=" text-decoration: underline; color:#0000ff;">MakeMusic</span></a></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; text-decoration: underline; color:#0000ff;"></p></body></html> + + Accidental @@ -132,30 +132,14 @@ p, li { white-space: pre-wrap; } Album Name: - - album name - - - - remove current score - - Remove Score - - move current score down in list - - Down Κάτω - - move current score up in list - - Up Επάνω @@ -164,18 +148,10 @@ p, li { white-space: pre-wrap; } Add Score - - create new album - - New Νέο - - load an existing album - - Print Album @@ -208,6 +184,30 @@ p, li { white-space: pre-wrap; } MuseScore: Load Album + + Album Name + + + + Remove Current Score + + + + Move Current Score Down in List + + + + Move Current Score Up in List + + + + Create New Album + + + + Load an Existing Album + + ArticulationBase @@ -299,6 +299,14 @@ p, li { white-space: pre-wrap; } BarLine Διαστολή + + spanFrom: + + + + spanTo: + + BeamBase @@ -354,6 +362,37 @@ p, li { white-space: pre-wrap; } + + BoxBase + + Form + Μορφή + + + bottomMargin: + + + + topGap: + + + + bottomGap: + + + + leftMargin: + + + + topMargin: + + + + rightMargin: + + + BoxPropertiesBase @@ -1425,6 +1464,22 @@ failed: No. + + 1 + 1 + + + 2 + 2 + + + 3 + 3 + + + 4 + 4 + EditInstrumentBase @@ -2044,6 +2099,10 @@ failed: B -1 + + A 7 + + EditRaster @@ -2072,6 +2131,17 @@ failed: + + EditStaff + + Edit Short Name + + + + Edit Long Name + + + EditStaffBase @@ -2142,10 +2212,6 @@ failed: Type: Τύπος: - - Edit... - - ... ... @@ -2329,16 +2395,6 @@ failed: Select: - - Guitar (modern) - tablatture type - - - - Bass (modern) - tablature type - - Italian (historic) tablature type @@ -2349,10 +2405,6 @@ failed: tablature type - - Set - - Show Clef @@ -2477,6 +2529,68 @@ failed: Preview Προεπισκόπηση + + 6 strings (generic guitar) + tablatture type + + + + 4 strings (generic bass) + tablature type + + + + ukulele + + + + bandurria + + + + Custom + + + + Stem position: + + + + Above + Από πάνω + + + Below + + + + Stem style: + + + + Beside staff + + + + Through staff + + + + Half notes: + + + + As short stem + + + + As slashed stem + + + + Show Rests + + EditStringDataBase @@ -2527,6 +2641,14 @@ failed: Chord Συγχορδία + + Edit Plain Text + + + + Edit HTML Text + + EditStyleBase @@ -2624,6 +2746,10 @@ spatium unit ---------- spatium unit ---------- +spatium unit +---------- +spatium unit +---------- spatium unit sp @@ -3201,6 +3327,18 @@ p, li { white-space: pre-wrap; } Clef/Key right margin + + Pedal, Trill + + + + Pedal Line + + + + Trill Line + + EditTempoBase @@ -3485,6 +3623,65 @@ spatium unit + + InspectorBarLine + + Staff default + + + + Tick + + + + Tick alt. + + + + Short + + + + Short alt. + + + + Type: + Τύπος: + + + Measure default + + + + Normal + Κανονικό + + + Dashed + Με παύλες + + + Dotted + + + + Double + + + + End + Τέλος + + + Span: + + + + Custom + + + InspectorBeam @@ -3704,6 +3901,57 @@ spatium unit ... + + InspectorHairpin + + Form + Μορφή + + + Hairpin + Φουρκέτα + + + crescendo + + + + decrescendo + + + + Subtype: + + + + Dynamic Range: + + + + Velo. change: + + + + Staff + + + + Part + + + + SYstem + + + + reset value + + + + ... + ... + + InspectorImage @@ -3956,6 +4204,37 @@ spatium unit + + InspectorOttava + + Form + Μορφή + + + Ottava + Οκτάβα + + + Subtype: + + + + 8va + 8va + + + 15ma + 15ma + + + 8vb + 8vb + + + 15mb + 15mb + + InspectorRest @@ -4024,6 +4303,41 @@ spatium unit + + InspectorTrill + + Form + Μορφή + + + Trill + Τρίλια + + + Subtype: + + + + trill line + + + + up prall + + + + down prall + + + + prall prall + + + + wavy line + + + InspectorVBox @@ -4082,6 +4396,29 @@ spatium unit + + InspectorVolta + + Form + Μορφή + + + Volta + Volta + + + Subtype: + + + + Open + + + + Closed + + + InstrumentDialogBase @@ -4136,24 +4473,24 @@ spatium unit Staves Πεντάγραμμα - - visible - ορατό - Clef Κλειδί - linked + Add Linked Staff - staff linked to previous + Visible + Ορατό + + + Linked - Add Linked Staff + Staff Linked to Previous @@ -4987,6 +5324,34 @@ Would you like to locate %2 now? -> + + 1 + 1 + + + 2 + 2 + + + 4 + 4 + + + 8 + 8 + + + 16 + 16 + + + 32 + 32 + + + 64 + 64 + MeasuresDialogBase @@ -5272,10 +5637,6 @@ before closing? no score χωρίς παρτιτούρα - - note entry mode - λειτουργία εισαγωγής νοτών - edit mode λειτουργία επεξεργασίας @@ -5693,10 +6054,6 @@ Restore session? please choose a different name: - - Cannot read file: %1 error: %2 - - Overture / Score Writer Files <experimental> (*.ove *.scw);; @@ -5978,51 +6335,95 @@ please choose a different name: - LilyPond Format (*.ly) + LilyPond Format (*.ly) + + + + MuseScore: Export Parts + + + + Parts were successfully exported + + + + Continuous View + + + + About &MusicXML + + + + Report a bug + + + + MuseScore: Load Plugin + + + + MuseScore Plugin (*.qml);;All Files (*) + + + + MuseScore: Save Plugin + + + + MuseScore Plugin File (*.qml) + + + + &Plugins + + + + Find - MuseScore: Export Parts + Dotted - Parts were successfully exported + Tick 1 - Continuous View + Tick 2 - About &MusicXML + Short 1 - Report a bug + Short 2 - MuseScore: Load Plugin + plop - MuseScore Plugin (*.qml);;All Files (*) + scoop - MuseScore: Save Plugin + NOTE entry mode - MuseScore Plugin File (*.qml) + DRUM entry mode - &Plugins + TAB entry mode - Find + you cannot create an element @@ -6173,14 +6574,6 @@ please choose a different name: note head group ομάδα κεφαλών φθογγοσήμων - - OnTime: - OnTime: - - - OffTime: - OffTime: - invalid άκυρο @@ -6197,6 +6590,10 @@ please choose a different name: Dot3 + + NoteEvents + + OmrPanel @@ -6791,6 +7188,14 @@ save before closing? Choose Images Directory + + MuseScore Shortcuts + + + + Print Shortcuts + + PrefsDialogBase @@ -7427,6 +7832,10 @@ save before closing? Define Shortcut + + Print + Εκτύπωση + Properties @@ -8073,26 +8482,6 @@ Sequencer will be disabled. Form Μορφή - - Slur - Σύζευξη - - - Slur End - Τέλος Σύζευξης - - - Staff: - Πεντάγραμμο: - - - Voice: - Φωνή: - - - Tick: - Χτύπος: - SlurPropertyBase @@ -8179,6 +8568,14 @@ Sequencer will be disabled. Form Μορφή + + CHORD + + + + NOTE + + SplitStaff @@ -9047,6 +9444,7 @@ altera Space + spatium unit Κενό @@ -9081,10 +9479,6 @@ altera frame line width πάχος γραμμής πλαισίου - - mm - - Margin: Περιθώριο: @@ -9117,6 +9511,10 @@ altera Background Color: + + sp + sp + TextStyleDialog @@ -9216,6 +9614,10 @@ please choose a different name: unstyled + + align vertical baseline + + TimeDialog @@ -9223,14 +9625,6 @@ please choose a different name: MuseScore: Time Signatures MuseScore: Ετικέτα Χρόνου - - 4/4 common time - 4/4 κοινός χρόνος - - - 2/2 alla breve - 2/2 alla breve - TimeDialogBase @@ -9392,10 +9786,6 @@ p, li { white-space: pre-wrap; } MuseScore: Transpose MuseScore: Τρανσπόρτο - - Transpose by Key - Κάνε τρανσπόρτο με κλίμακα - Cb major / Ab minor Ντοb μείζονα / Λαb ελάσσονα @@ -9468,10 +9858,6 @@ p, li { white-space: pre-wrap; } Closest Πλησιέστερο - - Transpose by Interval - Κάνε τρανσπόρτο με το διάστημα - Perfect Unison Τέλεια Ταυτοφωνία @@ -9588,6 +9974,50 @@ p, li { white-space: pre-wrap; } Use double sharps and flats Χρήση διπλών διέσεων και υφέσεων + + Transpose Chromatically + + + + By Key + + + + By Interval + + + + Transpose Diatonically + + + + Second + + + + Third + + + + Fourth + + + + Fifth + + + + Sixth + + + + Seventh + + + + Keep degree alterations + + TremoloBarDialog @@ -9857,18 +10287,6 @@ p, li { white-space: pre-wrap; } Save a copy of the score in addition to the current file Αποθήκευση αντιγράφου της παρτιτούρας επιπρόσθετα με το τρέχον αρχείο - - File reload - Επαναφόρτωση αρχείου - - - Reload - Επαναφόρτωση - - - Reload score from file - Επαναφόρτωση παρτιτούρας από αρχείο - File close Κλείσιμο αρχείου @@ -10761,10 +11179,6 @@ p, li { white-space: pre-wrap; } Page: end - - Add slur - - Crescendo Crescendo @@ -11041,14 +11455,6 @@ p, li { white-space: pre-wrap; } Picture - - Player seek to begin - - - - Player seek to end - - &Transpose... @@ -11233,14 +11639,6 @@ p, li { white-space: pre-wrap; } Diatonic up - - next score - - - - previous score - - Reset user settings @@ -11269,10 +11667,6 @@ p, li { white-space: pre-wrap; } Respell pitches - - Grace: 8nd after - - Pan score while playing on/off @@ -11337,10 +11731,6 @@ p, li { white-space: pre-wrap; } Master Palette... - - Insert Measure - - Toggle View Mode @@ -11509,10 +11899,6 @@ p, li { white-space: pre-wrap; } Save Style... - - Save Style As Default... - - Select All @@ -11585,6 +11971,162 @@ p, li { white-space: pre-wrap; } Plugin Creator + + Slur + Σύζευξη + + + Add Slur + + + + Add Crescendo + + + + Grace: 8th after + + + + Play Previous Chord + + + + Play Previous Measure + + + + Play Next Chord + + + + Play Next Measure + + + + Player Seek to Begin + + + + Player Seek to End + + + + Save Style as Default... + + + + String above (TAB) + + + + Select string above (TAB only) + + + + String below (TAB) + + + + Select string below (TAB only) + + + + Fret 0 (TAB) + + + + Add fret 0 on current string (TAB only) + + + + Fret 1 (TAB) + + + + Add fret 1 on current string (TAB only) + + + + Fret 2 (TAB) + + + + Add fret 2 on current string (TAB only) + + + + Fret 3 (TAB) + + + + Add fret 3 on current string (TAB only) + + + + Fret 4 (TAB) + + + + Add fret 4 of current string (TAB only) + + + + Fret 5 (TAB) + + + + Add fret 5 of current string (TAB only) + + + + Fret 6 (TAB) + + + + Add fret 6 of current string (TAB only) + + + + Fret 7 (TAB) + + + + Add fret 7 of current string (TAB only) + + + + Fret 8 (TAB) + + + + Add fret 8 of current string (TAB only) + + + + Fret 9 (TAB) + + + + Add fret 9 of current string (TAB only) + + + + Staff Types... + + + + Staff type editor + + + + Show staff type editor + + + + Note anchored Textline + + articulation @@ -11727,6 +12269,10 @@ p, li { white-space: pre-wrap; } Line Γραμμή + + Wavy line + + magTable diff --git a/share/locale/mscore_en_GB.ts b/share/locale/mscore_en_GB.ts index 03c3d5a2cb4a6..91abcde633e74 100644 --- a/share/locale/mscore_en_GB.ts +++ b/share/locale/mscore_en_GB.ts @@ -3,6 +3,14 @@ AboutBox + + About MuseScore + + + + Copy revision number + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -12,17 +20,9 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Support MuseScore with </span><a href="http://www.musescore.org/en/donate"><span style=" font-size:10pt; text-decoration: underline; color:#0000ff;">your donation</span></a></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Arial'; font-size:10pt;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Copyright </span><span style=" font-size:10pt;">©</span><span style=" font-family:'Arial'; font-size:10pt;"> 1999-2009 Werner Schweer and Others. </span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Copyright </span><span style=" font-size:10pt;">©</span><span style=" font-family:'Arial'; font-size:10pt;"> 1999-2012 Werner Schweer and Others. </span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Published under the GNU General Public License</span></p></body></html> - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Visit </span><a href="http://www.musescore.org/"><span style=" font-size:10pt; text-decoration: underline; color:#0000ff;">www.musescore.org</span></a><span style=" font-family:'Arial'; font-size:10pt;"> for new versions and more information.</span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Support MuseScore with </span><a href="http://www.musescore.org/en/donate"><span style=" font-size:10pt; text-decoration: underline; color:#0000ff;">your donation</span></a></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Arial'; font-size:10pt;"></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Copyright </span><span style=" font-size:10pt;">©</span><span style=" font-family:'Arial'; font-size:10pt;"> 1999-2009 Werner Schweer and Others. </span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Published under the GNU General Public License</span></p></body></html> - - - About MuseScore - - - - Copy revision number - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Visit </span><a href="http://www.musescore.org/"><span style=" font-size:10pt; text-decoration: underline; color:#0000ff;">www.musescore.org</span></a><span style=" font-family:'Arial'; font-size:10pt;"> for new versions and more information.</span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Support MuseScore with </span><a href="http://www.musescore.org/en/donate"><span style=" font-size:10pt; text-decoration: underline; color:#0000ff;">your donation</span></a></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Arial'; font-size:10pt;"></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Copyright </span><span style=" font-size:10pt;">©</span><span style=" font-family:'Arial'; font-size:10pt;"> 1999-2009 Werner Schweer and Others. </span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Published under the GNU General Public License</span></p></body></html> {3C?} {4.0/?} {3.?} {40/?} {1"?} {2'?} {8.25p?} {400;?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {10p?} {10p?} {0000f?} {10p?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {10p?} {10p?} {0000f?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {10p?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {10p?} {10p?} {10p?} {1999-2012 ?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {10p?} @@ -46,17 +46,6 @@ p, li { white-space: pre-wrap; } About MusicXML - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; font-size:10pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">MusicXML is an open file format for exchanging digital sheet music,</p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">supported by many applications. MusicXML is copyright © MakeMusic, Inc.</p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">All rights reserved. For more information see: <a href="http://www.makemusic.com/xml.html"><span style=" text-decoration: underline; color:#0000ff;">MakeMusic</span></a></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; text-decoration: underline; color:#0000ff;"></p></body></html> - - The MusicXML Public License: @@ -104,6 +93,17 @@ p, li { white-space: pre-wrap; } <p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p></body></html> + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans Serif'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">MusicXML is an open file format for exchanging digital sheet music,</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">supported by many applications. MusicXML is copyright © MakeMusic, Inc.</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">All rights reserved. For more information, see: <a href="http://www.makemusic.com/musicxml"><span style=" text-decoration: underline; color:#0000ff;">MakeMusic</span></a></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; text-decoration: underline; color:#0000ff;"></p></body></html> + + Accidental @@ -122,30 +122,14 @@ p, li { white-space: pre-wrap; } Album Name: - - album name - - - - remove current score - - Remove Score - - move current score down in list - - Down Down - - move current score up in list - - Up Up @@ -154,18 +138,10 @@ p, li { white-space: pre-wrap; } Add Score - - create new album - - New New - - load an existing album - - Print Album @@ -198,6 +174,30 @@ p, li { white-space: pre-wrap; } MuseScore: Load Album + + Album Name + + + + Remove Current Score + + + + Move Current Score Down in List + + + + Move Current Score Up in List + + + + Create New Album + + + + Load an Existing Album + + ArticulationBase @@ -287,6 +287,14 @@ p, li { white-space: pre-wrap; } BarLine Bar Line + + spanFrom: + + + + spanTo: + + BeamBase @@ -342,6 +350,37 @@ p, li { white-space: pre-wrap; } + + BoxBase + + Form + Form + + + bottomMargin: + + + + topGap: + + + + bottomGap: + + + + leftMargin: + + + + topMargin: + + + + rightMargin: + + + BoxPropertiesBase @@ -1403,6 +1442,22 @@ failed: No. + + 1 + 1 + + + 2 + 2 + + + 3 + 3 + + + 4 + 4 + EditInstrumentBase @@ -2021,6 +2076,10 @@ failed: B -1 + + A 7 + + EditRaster @@ -2049,6 +2108,17 @@ failed: + + EditStaff + + Edit Short Name + + + + Edit Long Name + + + EditStaffBase @@ -2119,10 +2189,6 @@ failed: Type: Type: - - Edit... - - ... @@ -2306,16 +2372,6 @@ failed: Select: - - Guitar (modern) - tablatture type - - - - Bass (modern) - tablature type - - Italian (historic) tablature type @@ -2326,10 +2382,6 @@ failed: tablature type - - Set - - Show Clef @@ -2454,6 +2506,68 @@ failed: Preview Preview + + 6 strings (generic guitar) + tablatture type + + + + 4 strings (generic bass) + tablature type + + + + ukulele + + + + bandurria + + + + Custom + + + + Stem position: + + + + Above + Above + + + Below + + + + Stem style: + + + + Beside staff + + + + Through staff + + + + Half notes: + + + + As short stem + + + + As slashed stem + + + + Show Rests + + EditStringDataBase @@ -2504,6 +2618,14 @@ failed: Chord Chord + + Edit Plain Text + + + + Edit HTML Text + + EditStyleBase @@ -2577,6 +2699,10 @@ spatium unit ---------- spatium unit ---------- +spatium unit +---------- +spatium unit +---------- spatium unit sp @@ -3177,6 +3303,18 @@ p, li { white-space: pre-wrap; } Clef/Key right margin + + Pedal, Trill + + + + Pedal Line + + + + Trill Line + + EditTempoBase @@ -3457,6 +3595,65 @@ spatium unit + + InspectorBarLine + + Staff default + + + + Tick + + + + Tick alt. + + + + Short + + + + Short alt. + + + + Type: + Type: + + + Measure default + + + + Normal + Normal + + + Dashed + Dashed + + + Dotted + + + + Double + + + + End + End + + + Span: + + + + Custom + + + InspectorBeam @@ -3676,6 +3873,57 @@ spatium unit + + InspectorHairpin + + Form + Form + + + Hairpin + Hairpin + + + crescendo + + + + decrescendo + + + + Subtype: + + + + Dynamic Range: + + + + Velo. change: + + + + Staff + Stave + + + Part + + + + SYstem + + + + reset value + + + + ... + + + InspectorImage @@ -3928,6 +4176,37 @@ spatium unit + + InspectorOttava + + Form + Form + + + Ottava + Ottava + + + Subtype: + + + + 8va + 8va + + + 15ma + 15ma + + + 8vb + 8vb + + + 15mb + 15mb + + InspectorRest @@ -3996,6 +4275,41 @@ spatium unit + + InspectorTrill + + Form + Form + + + Trill + + + + Subtype: + + + + trill line + + + + up prall + + + + down prall + + + + prall prall + + + + wavy line + + + InspectorVBox @@ -4054,6 +4368,29 @@ spatium unit + + InspectorVolta + + Form + Form + + + Volta + Time Bar + + + Subtype: + + + + Open + + + + Closed + + + InstrumentDialogBase @@ -4108,24 +4445,24 @@ spatium unit Staves Staves - - visible - visible - Clef Clef - linked + Add Linked Staff - staff linked to previous + Visible + Visible + + + Linked - Add Linked Staff + Staff Linked to Previous @@ -4955,6 +5292,34 @@ Would you like to locate %2 now? -> + + 1 + 1 + + + 2 + 2 + + + 4 + 4 + + + 8 + 8 + + + 16 + 16 + + + 32 + 32 + + + 64 + 64 + MeasuresDialogBase @@ -5194,10 +5559,6 @@ Would you like to locate %2 now? &About &About - - note entry mode - note entry mode - edit mode edit mode @@ -5662,10 +6023,6 @@ Restore session? please choose a different name: - - Cannot read file: %1 error: %2 - - Overture / Score Writer Files <experimental> (*.ove *.scw);; @@ -5955,43 +6312,87 @@ please choose a different name: - Parts were successfully exported + Parts were successfully exported + + + + Continuous View + + + + About &MusicXML + + + + Report a bug + + + + MuseScore: Load Plugin + + + + MuseScore Plugin (*.qml);;All Files (*) + + + + MuseScore: Save Plugin + + + + MuseScore Plugin File (*.qml) + + + + &Plugins + + + + Find + + + + Dotted + + + + Tick 1 - Continuous View + Tick 2 - About &MusicXML + Short 1 - Report a bug + Short 2 - MuseScore: Load Plugin + plop - MuseScore Plugin (*.qml);;All Files (*) + scoop - MuseScore: Save Plugin + NOTE entry mode - MuseScore Plugin File (*.qml) + DRUM entry mode - &Plugins + TAB entry mode - Find + you cannot create an element @@ -6142,14 +6543,6 @@ please choose a different name: note head group note head group - - OnTime: - - - - OffTime: - - invalid invalid @@ -6166,6 +6559,10 @@ please choose a different name: Dot3 + + NoteEvents + + OmrPanel @@ -6758,6 +7155,14 @@ save before closing? Choose Images Directory + + MuseScore Shortcuts + + + + Print Shortcuts + + PrefsDialogBase @@ -7393,6 +7798,10 @@ save before closing? Define Shortcut + + Print + + Properties @@ -8036,26 +8445,6 @@ Sequencer will be disabled. Form Form - - Slur - Slur - - - Slur End - Slur End - - - Staff: - Stave: - - - Voice: - Voice: - - - Tick: - Tick: - SlurPropertyBase @@ -8142,6 +8531,14 @@ Sequencer will be disabled. Form Form + + CHORD + + + + NOTE + + SplitStaff @@ -9008,6 +9405,7 @@ altera Space + spatium unit Space @@ -9042,10 +9440,6 @@ altera frame line width frame line width - - mm - mm - Margin: Margin: @@ -9078,6 +9472,10 @@ altera Background Color: + + sp + sp + TextStyleDialog @@ -9177,6 +9575,10 @@ please choose a different name: unstyled + + align vertical baseline + + TimeDialog @@ -9184,14 +9586,6 @@ please choose a different name: MuseScore: Time Signatures MuseScore: Time Signatures - - 4/4 common time - 4/4 common time - - - 2/2 alla breve - 2/2 alla breve - TimeDialogBase @@ -9353,10 +9747,6 @@ p, li { white-space: pre-wrap; } MuseScore: Transpose MuseScore: Transpose - - Transpose by Key - Transpose by Key - Cb major / Ab minor Cb major / Ab minor @@ -9429,10 +9819,6 @@ p, li { white-space: pre-wrap; } Closest Closest - - Transpose by Interval - Transpose by Interval - Perfect Unison Perfect Unison @@ -9549,6 +9935,50 @@ p, li { white-space: pre-wrap; } Use double sharps and flats + + Transpose Chromatically + + + + By Key + + + + By Interval + + + + Transpose Diatonically + + + + Second + + + + Third + + + + Fourth + + + + Fifth + + + + Sixth + + + + Seventh + + + + Keep degree alterations + + TremoloBarDialog @@ -9777,10 +10207,6 @@ p, li { white-space: pre-wrap; } Save a Copy... - - Reload - - Create new score @@ -10321,14 +10747,6 @@ p, li { white-space: pre-wrap; } Save a copy of the score in addition to the current file - - File reload - - - - Reload score from file - - File close @@ -10721,10 +11139,6 @@ p, li { white-space: pre-wrap; } Page: end - - Add slur - - Crescendo Crescendo @@ -11001,14 +11415,6 @@ p, li { white-space: pre-wrap; } Picture - - Player seek to begin - - - - Player seek to end - - &Transpose... @@ -11193,14 +11599,6 @@ p, li { white-space: pre-wrap; } Diatonic up - - next score - - - - previous score - - Reset user settings @@ -11229,10 +11627,6 @@ p, li { white-space: pre-wrap; } Respell pitches - - Grace: 8nd after - - Pan score while playing on/off @@ -11297,10 +11691,6 @@ p, li { white-space: pre-wrap; } Master Palette... - - Insert Measure - - Toggle View Mode @@ -11469,10 +11859,6 @@ p, li { white-space: pre-wrap; } Save Style... - - Save Style As Default... - - Select All @@ -11545,6 +11931,162 @@ p, li { white-space: pre-wrap; } Plugin Creator + + Slur + Slur + + + Add Slur + + + + Add Crescendo + + + + Grace: 8th after + + + + Play Previous Chord + + + + Play Previous Measure + + + + Play Next Chord + + + + Play Next Measure + + + + Player Seek to Begin + + + + Player Seek to End + + + + Save Style as Default... + + + + String above (TAB) + + + + Select string above (TAB only) + + + + String below (TAB) + + + + Select string below (TAB only) + + + + Fret 0 (TAB) + + + + Add fret 0 on current string (TAB only) + + + + Fret 1 (TAB) + + + + Add fret 1 on current string (TAB only) + + + + Fret 2 (TAB) + + + + Add fret 2 on current string (TAB only) + + + + Fret 3 (TAB) + + + + Add fret 3 on current string (TAB only) + + + + Fret 4 (TAB) + + + + Add fret 4 of current string (TAB only) + + + + Fret 5 (TAB) + + + + Add fret 5 of current string (TAB only) + + + + Fret 6 (TAB) + + + + Add fret 6 of current string (TAB only) + + + + Fret 7 (TAB) + + + + Add fret 7 of current string (TAB only) + + + + Fret 8 (TAB) + + + + Add fret 8 of current string (TAB only) + + + + Fret 9 (TAB) + + + + Add fret 9 of current string (TAB only) + + + + Staff Types... + + + + Staff type editor + + + + Show staff type editor + + + + Note anchored Textline + + articulation @@ -11687,6 +12229,10 @@ p, li { white-space: pre-wrap; } Line Line + + Wavy line + + magTable diff --git a/share/locale/mscore_en_US.ts b/share/locale/mscore_en_US.ts index cad974a88d338..5bd0ad3204361 100644 --- a/share/locale/mscore_en_US.ts +++ b/share/locale/mscore_en_US.ts @@ -3,6 +3,14 @@ AboutBox + + About MuseScore + + + + Copy revision number + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -12,18 +20,10 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Support MuseScore with </span><a href="http://www.musescore.org/en/donate"><span style=" font-size:10pt; text-decoration: underline; color:#0000ff;">your donation</span></a></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Arial'; font-size:10pt;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Copyright </span><span style=" font-size:10pt;">©</span><span style=" font-family:'Arial'; font-size:10pt;"> 1999-2009 Werner Schweer and Others. </span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Copyright </span><span style=" font-size:10pt;">©</span><span style=" font-family:'Arial'; font-size:10pt;"> 1999-2012 Werner Schweer and Others. </span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Published under the GNU General Public License</span></p></body></html> - - About MuseScore - - - - Copy revision number - - AboutBoxDialog @@ -46,17 +46,6 @@ p, li { white-space: pre-wrap; } About MusicXML - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; font-size:10pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">MusicXML is an open file format for exchanging digital sheet music,</p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">supported by many applications. MusicXML is copyright © MakeMusic, Inc.</p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">All rights reserved. For more information see: <a href="http://www.makemusic.com/xml.html"><span style=" text-decoration: underline; color:#0000ff;">MakeMusic</span></a></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; text-decoration: underline; color:#0000ff;"></p></body></html> - - The MusicXML Public License: @@ -104,6 +93,17 @@ p, li { white-space: pre-wrap; } <p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p></body></html> + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans Serif'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">MusicXML is an open file format for exchanging digital sheet music,</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">supported by many applications. MusicXML is copyright © MakeMusic, Inc.</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">All rights reserved. For more information, see: <a href="http://www.makemusic.com/musicxml"><span style=" text-decoration: underline; color:#0000ff;">MakeMusic</span></a></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; text-decoration: underline; color:#0000ff;"></p></body></html> + + Accidental @@ -123,79 +123,79 @@ p, li { white-space: pre-wrap; } - album name + Remove Score - remove current score + Down - Remove Score + Up - move current score down in list + Add Score - Down + New - move current score up in list + Print Album - Up + MuseScore Album Files (*.album);; - Add Score + All Files (*) - create new album + MuseScore Files (*.mscz *.mscx *.msc);; - New + Join Scores - load an existing album + Load - Print Album + MuseScore: Add Score - MuseScore Album Files (*.album);; + MuseScore: Load Album - All Files (*) + Album Name - MuseScore Files (*.mscz *.mscx *.msc);; + Remove Current Score - Join Scores + Move Current Score Down in List - Load + Move Current Score Up in List - MuseScore: Add Score + Create New Album - MuseScore: Load Album + Load an Existing Album @@ -287,6 +287,14 @@ p, li { white-space: pre-wrap; } BarLine + + spanFrom: + + + + spanTo: + + BeamBase @@ -342,6 +350,37 @@ p, li { white-space: pre-wrap; } + + BoxBase + + Form + + + + bottomMargin: + + + + topGap: + + + + bottomGap: + + + + leftMargin: + + + + topMargin: + + + + rightMargin: + + + BoxPropertiesBase @@ -1402,6 +1441,22 @@ Failed: No. + + 1 + + + + 2 + + + + 3 + + + + 4 + + EditInstrumentBase @@ -2020,6 +2075,10 @@ Failed: B -1 + + A 7 + + EditRaster @@ -2048,6 +2107,17 @@ Failed: + + EditStaff + + Edit Short Name + + + + Edit Long Name + + + EditStaffBase @@ -2118,10 +2188,6 @@ Failed: Type: - - Edit... - - ... @@ -2305,16 +2371,6 @@ Failed: Select: - - Guitar (modern) - tablatture type - - - - Bass (modern) - tablature type - - Italian (historic) tablature type @@ -2325,10 +2381,6 @@ Failed: tablature type - - Set - - Show Clef @@ -2453,6 +2505,68 @@ Failed: Preview + + 6 strings (generic guitar) + tablatture type + + + + 4 strings (generic bass) + tablature type + + + + ukulele + + + + bandurria + + + + Custom + + + + Stem position: + + + + Above + + + + Below + + + + Stem style: + + + + Beside staff + + + + Through staff + + + + Half notes: + + + + As short stem + + + + As slashed stem + + + + Show Rests + + EditStringDataBase @@ -2503,6 +2617,14 @@ Failed: Chord + + Edit Plain Text + + + + Edit HTML Text + + EditStyleBase @@ -2576,6 +2698,10 @@ spatium unit ---------- spatium unit ---------- +spatium unit +---------- +spatium unit +---------- spatium unit @@ -3177,6 +3303,18 @@ p, li { white-space: pre-wrap; } Clef/Key right margin + + Pedal, Trill + + + + Pedal Line + + + + Trill Line + + EditTempoBase @@ -3457,6 +3595,65 @@ spatium unit + + InspectorBarLine + + Staff default + + + + Tick + + + + Tick alt. + + + + Short + + + + Short alt. + + + + Type: + + + + Measure default + + + + Normal + + + + Dashed + + + + Dotted + + + + Double + + + + End + + + + Span: + + + + Custom + + + InspectorBeam @@ -3676,6 +3873,57 @@ spatium unit + + InspectorHairpin + + Form + + + + Hairpin + + + + crescendo + + + + decrescendo + + + + Subtype: + + + + Dynamic Range: + + + + Velo. change: + + + + Staff + + + + Part + + + + SYstem + + + + reset value + + + + ... + + + InspectorImage @@ -3928,6 +4176,37 @@ spatium unit + + InspectorOttava + + Form + + + + Ottava + + + + Subtype: + + + + 8va + + + + 15ma + + + + 8vb + + + + 15mb + + + InspectorRest @@ -3996,6 +4275,41 @@ spatium unit + + InspectorTrill + + Form + + + + Trill + + + + Subtype: + + + + trill line + + + + up prall + + + + down prall + + + + prall prall + + + + wavy line + + + InspectorVBox @@ -4054,6 +4368,29 @@ spatium unit + + InspectorVolta + + Form + + + + Volta + + + + Subtype: + + + + Open + + + + Closed + + + InstrumentDialogBase @@ -4109,23 +4446,23 @@ spatium unit - visible + Clef - Clef + Add Linked Staff - linked + Visible - staff linked to previous + Linked - Add Linked Staff + Staff Linked to Previous @@ -4955,6 +5292,34 @@ Would you like to locate %2 now? -> + + 1 + + + + 2 + + + + 4 + + + + 8 + + + + 16 + + + + 32 + + + + 64 + + MeasuresDialogBase @@ -5194,10 +5559,6 @@ Would you like to locate %2 now? &About - - note entry mode - Note entry mode - edit mode Edit mode @@ -5662,10 +6023,6 @@ Restore session? please choose a different name: - - Cannot read file: %1 error: %2 - - Overture / Score Writer Files <experimental> (*.ove *.scw);; @@ -5987,11 +6344,55 @@ please choose a different name: - &Plugins + &Plugins + + + + Find + + + + Dotted + + + + Tick 1 + + + + Tick 2 + + + + Short 1 + + + + Short 2 + + + + plop + + + + scoop + + + + NOTE entry mode + + + + DRUM entry mode + + + + TAB entry mode - Find + you cannot create an element @@ -6142,14 +6543,6 @@ please choose a different name: note head group Note Head Group - - OnTime: - - - - OffTime: - - invalid Invalid @@ -6166,6 +6559,10 @@ please choose a different name: Dot3 + + NoteEvents + + OmrPanel @@ -6758,6 +7155,14 @@ save before closing? Choose Images Directory + + MuseScore Shortcuts + + + + Print Shortcuts + + PrefsDialogBase @@ -7393,6 +7798,10 @@ save before closing? Define Shortcut + + Print + + Properties @@ -8039,26 +8448,6 @@ Sequencer will be disabled. Form - - Slur - - - - Slur End - - - - Staff: - - - - Voice: - - - - Tick: - - SlurPropertyBase @@ -8145,6 +8534,14 @@ Sequencer will be disabled. Form + + CHORD + + + + NOTE + + SplitStaff @@ -9011,6 +9408,7 @@ altera Space + spatium unit Space: @@ -9045,10 +9443,6 @@ altera frame line width - - mm - - Margin: @@ -9081,6 +9475,10 @@ altera Background Color: + + sp + + TextStyleDialog @@ -9180,6 +9578,10 @@ please choose a different name: unstyled + + align vertical baseline + + TimeDialog @@ -9187,14 +9589,6 @@ please choose a different name: MuseScore: Time Signatures - - 4/4 common time - - - - 2/2 alla breve - - TimeDialogBase @@ -9353,10 +9747,6 @@ p, li { white-space: pre-wrap; } MuseScore: Transpose - - Transpose by Key - - Cb major / Ab minor @@ -9429,10 +9819,6 @@ p, li { white-space: pre-wrap; } Closest - - Transpose by Interval - - Perfect Unison @@ -9549,6 +9935,50 @@ p, li { white-space: pre-wrap; } Use double sharps and flats + + Transpose Chromatically + + + + By Key + + + + By Interval + + + + Transpose Diatonically + + + + Second + + + + Third + + + + Fourth + + + + Fifth + + + + Sixth + + + + Seventh + + + + Keep degree alterations + + TremoloBarDialog @@ -9777,10 +10207,6 @@ p, li { white-space: pre-wrap; } Save a Copy... - - Reload - - Create new score @@ -10321,14 +10747,6 @@ p, li { white-space: pre-wrap; } Save a copy of the score in addition to the current file - - File reload - - - - Reload score from file - - File close @@ -10721,10 +11139,6 @@ p, li { white-space: pre-wrap; } Page: end - - Add slur - - Crescendo @@ -11001,14 +11415,6 @@ p, li { white-space: pre-wrap; } Picture - - Player seek to begin - - - - Player seek to end - - &Transpose... @@ -11193,14 +11599,6 @@ p, li { white-space: pre-wrap; } Diatonic up - - next score - - - - previous score - - Reset user settings @@ -11229,10 +11627,6 @@ p, li { white-space: pre-wrap; } Respell pitches - - Grace: 8nd after - - Pan score while playing on/off @@ -11297,10 +11691,6 @@ p, li { white-space: pre-wrap; } Master Palette... - - Insert Measure - - Toggle View Mode @@ -11469,10 +11859,6 @@ p, li { white-space: pre-wrap; } Save Style... - - Save Style As Default... - - Select All @@ -11545,6 +11931,162 @@ p, li { white-space: pre-wrap; } Plugin Creator + + Slur + + + + Add Slur + + + + Add Crescendo + + + + Grace: 8th after + + + + Play Previous Chord + + + + Play Previous Measure + + + + Play Next Chord + + + + Play Next Measure + + + + Player Seek to Begin + + + + Player Seek to End + + + + Save Style as Default... + + + + String above (TAB) + + + + Select string above (TAB only) + + + + String below (TAB) + + + + Select string below (TAB only) + + + + Fret 0 (TAB) + + + + Add fret 0 on current string (TAB only) + + + + Fret 1 (TAB) + + + + Add fret 1 on current string (TAB only) + + + + Fret 2 (TAB) + + + + Add fret 2 on current string (TAB only) + + + + Fret 3 (TAB) + + + + Add fret 3 on current string (TAB only) + + + + Fret 4 (TAB) + + + + Add fret 4 of current string (TAB only) + + + + Fret 5 (TAB) + + + + Add fret 5 of current string (TAB only) + + + + Fret 6 (TAB) + + + + Add fret 6 of current string (TAB only) + + + + Fret 7 (TAB) + + + + Add fret 7 of current string (TAB only) + + + + Fret 8 (TAB) + + + + Add fret 8 of current string (TAB only) + + + + Fret 9 (TAB) + + + + Add fret 9 of current string (TAB only) + + + + Staff Types... + + + + Staff type editor + + + + Show staff type editor + + + + Note anchored Textline + + articulation @@ -11687,6 +12229,10 @@ p, li { white-space: pre-wrap; } Line + + Wavy line + + magTable diff --git a/share/locale/mscore_eo.ts b/share/locale/mscore_eo.ts index 03c3d5a2cb4a6..91abcde633e74 100644 --- a/share/locale/mscore_eo.ts +++ b/share/locale/mscore_eo.ts @@ -3,6 +3,14 @@ AboutBox + + About MuseScore + + + + Copy revision number + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -12,17 +20,9 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Support MuseScore with </span><a href="http://www.musescore.org/en/donate"><span style=" font-size:10pt; text-decoration: underline; color:#0000ff;">your donation</span></a></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Arial'; font-size:10pt;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Copyright </span><span style=" font-size:10pt;">©</span><span style=" font-family:'Arial'; font-size:10pt;"> 1999-2009 Werner Schweer and Others. </span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Copyright </span><span style=" font-size:10pt;">©</span><span style=" font-family:'Arial'; font-size:10pt;"> 1999-2012 Werner Schweer and Others. </span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Published under the GNU General Public License</span></p></body></html> - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Visit </span><a href="http://www.musescore.org/"><span style=" font-size:10pt; text-decoration: underline; color:#0000ff;">www.musescore.org</span></a><span style=" font-family:'Arial'; font-size:10pt;"> for new versions and more information.</span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Support MuseScore with </span><a href="http://www.musescore.org/en/donate"><span style=" font-size:10pt; text-decoration: underline; color:#0000ff;">your donation</span></a></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Arial'; font-size:10pt;"></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Copyright </span><span style=" font-size:10pt;">©</span><span style=" font-family:'Arial'; font-size:10pt;"> 1999-2009 Werner Schweer and Others. </span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Published under the GNU General Public License</span></p></body></html> - - - About MuseScore - - - - Copy revision number - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Visit </span><a href="http://www.musescore.org/"><span style=" font-size:10pt; text-decoration: underline; color:#0000ff;">www.musescore.org</span></a><span style=" font-family:'Arial'; font-size:10pt;"> for new versions and more information.</span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Support MuseScore with </span><a href="http://www.musescore.org/en/donate"><span style=" font-size:10pt; text-decoration: underline; color:#0000ff;">your donation</span></a></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Arial'; font-size:10pt;"></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Copyright </span><span style=" font-size:10pt;">©</span><span style=" font-family:'Arial'; font-size:10pt;"> 1999-2009 Werner Schweer and Others. </span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Published under the GNU General Public License</span></p></body></html> {3C?} {4.0/?} {3.?} {40/?} {1"?} {2'?} {8.25p?} {400;?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {10p?} {10p?} {0000f?} {10p?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {10p?} {10p?} {0000f?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {10p?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {10p?} {10p?} {10p?} {1999-2012 ?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {10p?} @@ -46,17 +46,6 @@ p, li { white-space: pre-wrap; } About MusicXML - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; font-size:10pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">MusicXML is an open file format for exchanging digital sheet music,</p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">supported by many applications. MusicXML is copyright © MakeMusic, Inc.</p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">All rights reserved. For more information see: <a href="http://www.makemusic.com/xml.html"><span style=" text-decoration: underline; color:#0000ff;">MakeMusic</span></a></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; text-decoration: underline; color:#0000ff;"></p></body></html> - - The MusicXML Public License: @@ -104,6 +93,17 @@ p, li { white-space: pre-wrap; } <p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p></body></html> + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans Serif'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">MusicXML is an open file format for exchanging digital sheet music,</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">supported by many applications. MusicXML is copyright © MakeMusic, Inc.</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">All rights reserved. For more information, see: <a href="http://www.makemusic.com/musicxml"><span style=" text-decoration: underline; color:#0000ff;">MakeMusic</span></a></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; text-decoration: underline; color:#0000ff;"></p></body></html> + + Accidental @@ -122,30 +122,14 @@ p, li { white-space: pre-wrap; } Album Name: - - album name - - - - remove current score - - Remove Score - - move current score down in list - - Down Down - - move current score up in list - - Up Up @@ -154,18 +138,10 @@ p, li { white-space: pre-wrap; } Add Score - - create new album - - New New - - load an existing album - - Print Album @@ -198,6 +174,30 @@ p, li { white-space: pre-wrap; } MuseScore: Load Album + + Album Name + + + + Remove Current Score + + + + Move Current Score Down in List + + + + Move Current Score Up in List + + + + Create New Album + + + + Load an Existing Album + + ArticulationBase @@ -287,6 +287,14 @@ p, li { white-space: pre-wrap; } BarLine Bar Line + + spanFrom: + + + + spanTo: + + BeamBase @@ -342,6 +350,37 @@ p, li { white-space: pre-wrap; } + + BoxBase + + Form + Form + + + bottomMargin: + + + + topGap: + + + + bottomGap: + + + + leftMargin: + + + + topMargin: + + + + rightMargin: + + + BoxPropertiesBase @@ -1403,6 +1442,22 @@ failed: No. + + 1 + 1 + + + 2 + 2 + + + 3 + 3 + + + 4 + 4 + EditInstrumentBase @@ -2021,6 +2076,10 @@ failed: B -1 + + A 7 + + EditRaster @@ -2049,6 +2108,17 @@ failed: + + EditStaff + + Edit Short Name + + + + Edit Long Name + + + EditStaffBase @@ -2119,10 +2189,6 @@ failed: Type: Type: - - Edit... - - ... @@ -2306,16 +2372,6 @@ failed: Select: - - Guitar (modern) - tablatture type - - - - Bass (modern) - tablature type - - Italian (historic) tablature type @@ -2326,10 +2382,6 @@ failed: tablature type - - Set - - Show Clef @@ -2454,6 +2506,68 @@ failed: Preview Preview + + 6 strings (generic guitar) + tablatture type + + + + 4 strings (generic bass) + tablature type + + + + ukulele + + + + bandurria + + + + Custom + + + + Stem position: + + + + Above + Above + + + Below + + + + Stem style: + + + + Beside staff + + + + Through staff + + + + Half notes: + + + + As short stem + + + + As slashed stem + + + + Show Rests + + EditStringDataBase @@ -2504,6 +2618,14 @@ failed: Chord Chord + + Edit Plain Text + + + + Edit HTML Text + + EditStyleBase @@ -2577,6 +2699,10 @@ spatium unit ---------- spatium unit ---------- +spatium unit +---------- +spatium unit +---------- spatium unit sp @@ -3177,6 +3303,18 @@ p, li { white-space: pre-wrap; } Clef/Key right margin + + Pedal, Trill + + + + Pedal Line + + + + Trill Line + + EditTempoBase @@ -3457,6 +3595,65 @@ spatium unit + + InspectorBarLine + + Staff default + + + + Tick + + + + Tick alt. + + + + Short + + + + Short alt. + + + + Type: + Type: + + + Measure default + + + + Normal + Normal + + + Dashed + Dashed + + + Dotted + + + + Double + + + + End + End + + + Span: + + + + Custom + + + InspectorBeam @@ -3676,6 +3873,57 @@ spatium unit + + InspectorHairpin + + Form + Form + + + Hairpin + Hairpin + + + crescendo + + + + decrescendo + + + + Subtype: + + + + Dynamic Range: + + + + Velo. change: + + + + Staff + Stave + + + Part + + + + SYstem + + + + reset value + + + + ... + + + InspectorImage @@ -3928,6 +4176,37 @@ spatium unit + + InspectorOttava + + Form + Form + + + Ottava + Ottava + + + Subtype: + + + + 8va + 8va + + + 15ma + 15ma + + + 8vb + 8vb + + + 15mb + 15mb + + InspectorRest @@ -3996,6 +4275,41 @@ spatium unit + + InspectorTrill + + Form + Form + + + Trill + + + + Subtype: + + + + trill line + + + + up prall + + + + down prall + + + + prall prall + + + + wavy line + + + InspectorVBox @@ -4054,6 +4368,29 @@ spatium unit + + InspectorVolta + + Form + Form + + + Volta + Time Bar + + + Subtype: + + + + Open + + + + Closed + + + InstrumentDialogBase @@ -4108,24 +4445,24 @@ spatium unit Staves Staves - - visible - visible - Clef Clef - linked + Add Linked Staff - staff linked to previous + Visible + Visible + + + Linked - Add Linked Staff + Staff Linked to Previous @@ -4955,6 +5292,34 @@ Would you like to locate %2 now? -> + + 1 + 1 + + + 2 + 2 + + + 4 + 4 + + + 8 + 8 + + + 16 + 16 + + + 32 + 32 + + + 64 + 64 + MeasuresDialogBase @@ -5194,10 +5559,6 @@ Would you like to locate %2 now? &About &About - - note entry mode - note entry mode - edit mode edit mode @@ -5662,10 +6023,6 @@ Restore session? please choose a different name: - - Cannot read file: %1 error: %2 - - Overture / Score Writer Files <experimental> (*.ove *.scw);; @@ -5955,43 +6312,87 @@ please choose a different name: - Parts were successfully exported + Parts were successfully exported + + + + Continuous View + + + + About &MusicXML + + + + Report a bug + + + + MuseScore: Load Plugin + + + + MuseScore Plugin (*.qml);;All Files (*) + + + + MuseScore: Save Plugin + + + + MuseScore Plugin File (*.qml) + + + + &Plugins + + + + Find + + + + Dotted + + + + Tick 1 - Continuous View + Tick 2 - About &MusicXML + Short 1 - Report a bug + Short 2 - MuseScore: Load Plugin + plop - MuseScore Plugin (*.qml);;All Files (*) + scoop - MuseScore: Save Plugin + NOTE entry mode - MuseScore Plugin File (*.qml) + DRUM entry mode - &Plugins + TAB entry mode - Find + you cannot create an element @@ -6142,14 +6543,6 @@ please choose a different name: note head group note head group - - OnTime: - - - - OffTime: - - invalid invalid @@ -6166,6 +6559,10 @@ please choose a different name: Dot3 + + NoteEvents + + OmrPanel @@ -6758,6 +7155,14 @@ save before closing? Choose Images Directory + + MuseScore Shortcuts + + + + Print Shortcuts + + PrefsDialogBase @@ -7393,6 +7798,10 @@ save before closing? Define Shortcut + + Print + + Properties @@ -8036,26 +8445,6 @@ Sequencer will be disabled. Form Form - - Slur - Slur - - - Slur End - Slur End - - - Staff: - Stave: - - - Voice: - Voice: - - - Tick: - Tick: - SlurPropertyBase @@ -8142,6 +8531,14 @@ Sequencer will be disabled. Form Form + + CHORD + + + + NOTE + + SplitStaff @@ -9008,6 +9405,7 @@ altera Space + spatium unit Space @@ -9042,10 +9440,6 @@ altera frame line width frame line width - - mm - mm - Margin: Margin: @@ -9078,6 +9472,10 @@ altera Background Color: + + sp + sp + TextStyleDialog @@ -9177,6 +9575,10 @@ please choose a different name: unstyled + + align vertical baseline + + TimeDialog @@ -9184,14 +9586,6 @@ please choose a different name: MuseScore: Time Signatures MuseScore: Time Signatures - - 4/4 common time - 4/4 common time - - - 2/2 alla breve - 2/2 alla breve - TimeDialogBase @@ -9353,10 +9747,6 @@ p, li { white-space: pre-wrap; } MuseScore: Transpose MuseScore: Transpose - - Transpose by Key - Transpose by Key - Cb major / Ab minor Cb major / Ab minor @@ -9429,10 +9819,6 @@ p, li { white-space: pre-wrap; } Closest Closest - - Transpose by Interval - Transpose by Interval - Perfect Unison Perfect Unison @@ -9549,6 +9935,50 @@ p, li { white-space: pre-wrap; } Use double sharps and flats + + Transpose Chromatically + + + + By Key + + + + By Interval + + + + Transpose Diatonically + + + + Second + + + + Third + + + + Fourth + + + + Fifth + + + + Sixth + + + + Seventh + + + + Keep degree alterations + + TremoloBarDialog @@ -9777,10 +10207,6 @@ p, li { white-space: pre-wrap; } Save a Copy... - - Reload - - Create new score @@ -10321,14 +10747,6 @@ p, li { white-space: pre-wrap; } Save a copy of the score in addition to the current file - - File reload - - - - Reload score from file - - File close @@ -10721,10 +11139,6 @@ p, li { white-space: pre-wrap; } Page: end - - Add slur - - Crescendo Crescendo @@ -11001,14 +11415,6 @@ p, li { white-space: pre-wrap; } Picture - - Player seek to begin - - - - Player seek to end - - &Transpose... @@ -11193,14 +11599,6 @@ p, li { white-space: pre-wrap; } Diatonic up - - next score - - - - previous score - - Reset user settings @@ -11229,10 +11627,6 @@ p, li { white-space: pre-wrap; } Respell pitches - - Grace: 8nd after - - Pan score while playing on/off @@ -11297,10 +11691,6 @@ p, li { white-space: pre-wrap; } Master Palette... - - Insert Measure - - Toggle View Mode @@ -11469,10 +11859,6 @@ p, li { white-space: pre-wrap; } Save Style... - - Save Style As Default... - - Select All @@ -11545,6 +11931,162 @@ p, li { white-space: pre-wrap; } Plugin Creator + + Slur + Slur + + + Add Slur + + + + Add Crescendo + + + + Grace: 8th after + + + + Play Previous Chord + + + + Play Previous Measure + + + + Play Next Chord + + + + Play Next Measure + + + + Player Seek to Begin + + + + Player Seek to End + + + + Save Style as Default... + + + + String above (TAB) + + + + Select string above (TAB only) + + + + String below (TAB) + + + + Select string below (TAB only) + + + + Fret 0 (TAB) + + + + Add fret 0 on current string (TAB only) + + + + Fret 1 (TAB) + + + + Add fret 1 on current string (TAB only) + + + + Fret 2 (TAB) + + + + Add fret 2 on current string (TAB only) + + + + Fret 3 (TAB) + + + + Add fret 3 on current string (TAB only) + + + + Fret 4 (TAB) + + + + Add fret 4 of current string (TAB only) + + + + Fret 5 (TAB) + + + + Add fret 5 of current string (TAB only) + + + + Fret 6 (TAB) + + + + Add fret 6 of current string (TAB only) + + + + Fret 7 (TAB) + + + + Add fret 7 of current string (TAB only) + + + + Fret 8 (TAB) + + + + Add fret 8 of current string (TAB only) + + + + Fret 9 (TAB) + + + + Add fret 9 of current string (TAB only) + + + + Staff Types... + + + + Staff type editor + + + + Show staff type editor + + + + Note anchored Textline + + articulation @@ -11687,6 +12229,10 @@ p, li { white-space: pre-wrap; } Line Line + + Wavy line + + magTable diff --git a/share/locale/mscore_es.ts b/share/locale/mscore_es.ts index ed8b277c9e011..07222972f3adc 100644 --- a/share/locale/mscore_es.ts +++ b/share/locale/mscore_es.ts @@ -3,6 +3,14 @@ AboutBox + + About MuseScore + + + + Copy revision number + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -12,17 +20,9 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Support MuseScore with </span><a href="http://www.musescore.org/en/donate"><span style=" font-size:10pt; text-decoration: underline; color:#0000ff;">your donation</span></a></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Arial'; font-size:10pt;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Copyright </span><span style=" font-size:10pt;">©</span><span style=" font-family:'Arial'; font-size:10pt;"> 1999-2009 Werner Schweer and Others. </span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Copyright </span><span style=" font-size:10pt;">©</span><span style=" font-family:'Arial'; font-size:10pt;"> 1999-2012 Werner Schweer and Others. </span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Published under the GNU General Public License</span></p></body></html> - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Visita </span><a href="http://www.musescore.org/"><span style=" font-size:10pt; text-decoration: underline; color:#0000ff;">www.musescore.org</span></a><span style=" font-family:'Arial'; font-size:10pt;"> para nuevas versiones y más información </span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Apoya MuseScore con </span><a href="http://www.musescore.org/en/donate"><span style=" font-size:10pt; text-decoration: underline; color:#0000ff;">tu donación</span></a></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Arial'; font-size:10pt;"></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Copyright </span><span style=" font-size:10pt;">©</span><span style=" font-family:'Arial'; font-size:10pt;"> 1999-2009 Werner Schweer and Others. </span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Publicado bajo la GNU General Public License</span></p></body></html> - - - About MuseScore - - - - Copy revision number - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Visita </span><a href="http://www.musescore.org/"><span style=" font-size:10pt; text-decoration: underline; color:#0000ff;">www.musescore.org</span></a><span style=" font-family:'Arial'; font-size:10pt;"> para nuevas versiones y más información </span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Apoya MuseScore con </span><a href="http://www.musescore.org/en/donate"><span style=" font-size:10pt; text-decoration: underline; color:#0000ff;">tu donación</span></a></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Arial'; font-size:10pt;"></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Copyright </span><span style=" font-size:10pt;">©</span><span style=" font-family:'Arial'; font-size:10pt;"> 1999-2009 Werner Schweer and Others. </span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Publicado bajo la GNU General Public License</span></p></body></html> {3C?} {4.0/?} {3.?} {40/?} {1"?} {2'?} {8.25p?} {400;?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {10p?} {10p?} {0000f?} {10p?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {10p?} {10p?} {0000f?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {10p?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {10p?} {10p?} {10p?} {1999-2012 ?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {10p?} @@ -46,17 +46,6 @@ p, li { white-space: pre-wrap; } About MusicXML - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; font-size:10pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">MusicXML is an open file format for exchanging digital sheet music,</p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">supported by many applications. MusicXML is copyright © MakeMusic, Inc.</p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">All rights reserved. For more information see: <a href="http://www.makemusic.com/xml.html"><span style=" text-decoration: underline; color:#0000ff;">MakeMusic</span></a></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; text-decoration: underline; color:#0000ff;"></p></body></html> - - The MusicXML Public License: @@ -104,6 +93,17 @@ p, li { white-space: pre-wrap; } <p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p></body></html> + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans Serif'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">MusicXML is an open file format for exchanging digital sheet music,</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">supported by many applications. MusicXML is copyright © MakeMusic, Inc.</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">All rights reserved. For more information, see: <a href="http://www.makemusic.com/musicxml"><span style=" text-decoration: underline; color:#0000ff;">MakeMusic</span></a></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; text-decoration: underline; color:#0000ff;"></p></body></html> + + Accidental @@ -123,79 +123,79 @@ p, li { white-space: pre-wrap; } - album name + Remove Score - remove current score + Down - Remove Score + Up - move current score down in list + Add Score - Down - + New + Nuevo - move current score up in list + Print Album - Up + MuseScore Album Files (*.album);; - Add Score + All Files (*) - create new album + MuseScore Files (*.mscz *.mscx *.msc);; - New - Nuevo + Join Scores + - load an existing album - + Load + Cargar - Print Album + MuseScore: Add Score - MuseScore Album Files (*.album);; + MuseScore: Load Album - All Files (*) + Album Name - MuseScore Files (*.mscz *.mscx *.msc);; + Remove Current Score - Join Scores + Move Current Score Down in List - Load - Cargar + Move Current Score Up in List + - MuseScore: Add Score + Create New Album - MuseScore: Load Album + Load an Existing Album @@ -287,6 +287,14 @@ p, li { white-space: pre-wrap; } BarLine Línea Divisoria + + spanFrom: + + + + spanTo: + + BeamBase @@ -342,6 +350,37 @@ p, li { white-space: pre-wrap; } + + BoxBase + + Form + + + + bottomMargin: + + + + topGap: + + + + bottomGap: + + + + leftMargin: + + + + topMargin: + + + + rightMargin: + + + BoxPropertiesBase @@ -1403,6 +1442,22 @@ error: No. + + 1 + 1 + + + 2 + 2 + + + 3 + 3 + + + 4 + 4 + EditInstrumentBase @@ -2021,6 +2076,10 @@ error: B -1 + + A 7 + + EditRaster @@ -2049,6 +2108,17 @@ error: + + EditStaff + + Edit Short Name + + + + Edit Long Name + + + EditStaffBase @@ -2119,10 +2189,6 @@ error: Type: Tipo: - - Edit... - - ... @@ -2306,16 +2372,6 @@ error: Select: - - Guitar (modern) - tablatture type - - - - Bass (modern) - tablature type - - Italian (historic) tablature type @@ -2326,10 +2382,6 @@ error: tablature type - - Set - - Show Clef @@ -2454,6 +2506,68 @@ error: Preview Previsualización + + 6 strings (generic guitar) + tablatture type + + + + 4 strings (generic bass) + tablature type + + + + ukulele + + + + bandurria + + + + Custom + + + + Stem position: + + + + Above + Arriba + + + Below + + + + Stem style: + + + + Beside staff + + + + Through staff + + + + Half notes: + + + + As short stem + + + + As slashed stem + + + + Show Rests + + EditStringDataBase @@ -2504,6 +2618,14 @@ error: Chord Acorde + + Edit Plain Text + + + + Edit HTML Text + + EditStyleBase @@ -2569,6 +2691,10 @@ spatium unit ---------- spatium unit ---------- +spatium unit +---------- +spatium unit +---------- spatium unit sp @@ -3177,6 +3303,18 @@ p, li { white-space: pre-wrap; } Clef/Key right margin + + Pedal, Trill + + + + Pedal Line + + + + Trill Line + + EditTempoBase @@ -3457,6 +3595,65 @@ spatium unit + + InspectorBarLine + + Staff default + + + + Tick + + + + Tick alt. + + + + Short + + + + Short alt. + + + + Type: + Tipo: + + + Measure default + + + + Normal + Normal + + + Dashed + Discontinua + + + Dotted + + + + Double + + + + End + Fin + + + Span: + + + + Custom + + + InspectorBeam @@ -3676,6 +3873,57 @@ spatium unit + + InspectorHairpin + + Form + + + + Hairpin + Regulador + + + crescendo + + + + decrescendo + + + + Subtype: + + + + Dynamic Range: + + + + Velo. change: + + + + Staff + Pentagrama + + + Part + + + + SYstem + + + + reset value + + + + ... + + + InspectorImage @@ -3928,6 +4176,37 @@ spatium unit + + InspectorOttava + + Form + + + + Ottava + Ottava + + + Subtype: + + + + 8va + 8va + + + 15ma + 15ma + + + 8vb + 8vb + + + 15mb + 15mb + + InspectorRest @@ -3996,6 +4275,41 @@ spatium unit + + InspectorTrill + + Form + + + + Trill + Trino + + + Subtype: + + + + trill line + + + + up prall + + + + down prall + + + + prall prall + + + + wavy line + + + InspectorVBox @@ -4054,6 +4368,29 @@ spatium unit + + InspectorVolta + + Form + + + + Volta + Volta + + + Subtype: + + + + Open + + + + Closed + + + InstrumentDialogBase @@ -4108,24 +4445,24 @@ spatium unit Staves - - visible - visible - Clef Clave - linked + Add Linked Staff - staff linked to previous + Visible + Visible + + + Linked - Add Linked Staff + Staff Linked to Previous @@ -4955,6 +5292,34 @@ Would you like to locate %2 now? -> + + 1 + 1 + + + 2 + 2 + + + 4 + 4 + + + 8 + 8 + + + 16 + 16 + + + 32 + 32 + + + 64 + 64 + MeasuresDialogBase @@ -5186,10 +5551,6 @@ Would you like to locate %2 now? &About &Acerca de - - note entry mode - modo ingreso de notas - edit mode modo de edición @@ -5662,10 +6023,6 @@ Restore session? please choose a different name: - - Cannot read file: %1 error: %2 - - Overture / Score Writer Files <experimental> (*.ove *.scw);; @@ -5947,51 +6304,95 @@ please choose a different name: - LilyPond Format (*.ly) + LilyPond Format (*.ly) + + + + MuseScore: Export Parts + + + + Parts were successfully exported + + + + Continuous View + + + + About &MusicXML + + + + Report a bug + + + + MuseScore: Load Plugin + + + + MuseScore Plugin (*.qml);;All Files (*) + + + + MuseScore: Save Plugin + + + + MuseScore Plugin File (*.qml) + + + + &Plugins + + + + Find - MuseScore: Export Parts + Dotted - Parts were successfully exported + Tick 1 - Continuous View + Tick 2 - About &MusicXML + Short 1 - Report a bug + Short 2 - MuseScore: Load Plugin + plop - MuseScore Plugin (*.qml);;All Files (*) + scoop - MuseScore: Save Plugin + NOTE entry mode - MuseScore Plugin File (*.qml) + DRUM entry mode - &Plugins + TAB entry mode - Find + you cannot create an element @@ -6142,14 +6543,6 @@ please choose a different name: note head group grupo de cabezas de nota - - OnTime: - A tiempo - - - OffTime: - Fuera de tiempo - invalid inválido @@ -6166,6 +6559,10 @@ please choose a different name: Dot3 + + NoteEvents + + OmrPanel @@ -6758,6 +7155,14 @@ save before closing? Choose Images Directory + + MuseScore Shortcuts + + + + Print Shortcuts + + PrefsDialogBase @@ -7393,6 +7798,10 @@ save before closing? Define Shortcut + + Print + Imprimir + Properties @@ -8038,26 +8447,6 @@ El secuenciador será desactivado Form Formulario - - Slur - Ligadura - - - Slur End - Fin de Ligadura de Expresión - - - Staff: - Pentagrama: - - - Voice: - Voz: - - - Tick: - - SlurPropertyBase @@ -8144,6 +8533,14 @@ El secuenciador será desactivado Form + + CHORD + + + + NOTE + + SplitStaff @@ -9010,6 +9407,7 @@ altera Space + spatium unit Espacio @@ -9044,10 +9442,6 @@ altera frame line width ancho de la línea del marco - - mm - mm - Margin: Margen: @@ -9080,6 +9474,10 @@ altera Background Color: + + sp + sp + TextStyleDialog @@ -9179,6 +9577,10 @@ please choose a different name: unstyled + + align vertical baseline + + TimeDialog @@ -9186,14 +9588,6 @@ please choose a different name: MuseScore: Time Signatures MuseScore: Indicaciones de Compás - - 4/4 common time - compás de 4/4 - - - 2/2 alla breve - 2/2 alla breve - TimeDialogBase @@ -9355,10 +9749,6 @@ p, li { white-space: pre-wrap; } MuseScore: Transpose MuseScore: Transportar - - Transpose by Key - Transportar a la Tonalidad - Cb major / Ab minor Do b M / La b m @@ -9431,10 +9821,6 @@ p, li { white-space: pre-wrap; } Closest Próxima - - Transpose by Interval - Transportar al intervalo - Perfect Unison Unísono Justo @@ -9551,6 +9937,50 @@ p, li { white-space: pre-wrap; } Use double sharps and flats Usar doble sostenidos y bemoles + + Transpose Chromatically + + + + By Key + + + + By Interval + + + + Transpose Diatonically + + + + Second + + + + Third + + + + Fourth + + + + Fifth + + + + Sixth + + + + Seventh + + + + Keep degree alterations + + TremoloBarDialog @@ -9779,10 +10209,6 @@ p, li { white-space: pre-wrap; } Save a Copy... Guardar una Copia - - Reload - Recargar - Create new score Crear partitura nueva @@ -10331,14 +10757,6 @@ p, li { white-space: pre-wrap; } Save a copy of the score in addition to the current file Guardar una copia de la partitura además del archivo actual - - File reload - Recargar archivo - - - Reload score from file - Recargar partitura desde el archivo - File close Cerrar archivo @@ -10723,10 +11141,6 @@ p, li { white-space: pre-wrap; } Page: end - - Add slur - - Crescendo Crescendo @@ -11003,14 +11417,6 @@ p, li { white-space: pre-wrap; } Picture - - Player seek to begin - - - - Player seek to end - - &Transpose... @@ -11195,14 +11601,6 @@ p, li { white-space: pre-wrap; } Diatonic up - - next score - - - - previous score - - Reset user settings @@ -11231,10 +11629,6 @@ p, li { white-space: pre-wrap; } Respell pitches - - Grace: 8nd after - - Pan score while playing on/off @@ -11299,10 +11693,6 @@ p, li { white-space: pre-wrap; } Master Palette... - - Insert Measure - - Toggle View Mode @@ -11471,10 +11861,6 @@ p, li { white-space: pre-wrap; } Save Style... - - Save Style As Default... - - Select All @@ -11547,6 +11933,162 @@ p, li { white-space: pre-wrap; } Plugin Creator + + Slur + Ligadura + + + Add Slur + + + + Add Crescendo + + + + Grace: 8th after + + + + Play Previous Chord + + + + Play Previous Measure + + + + Play Next Chord + + + + Play Next Measure + + + + Player Seek to Begin + + + + Player Seek to End + + + + Save Style as Default... + + + + String above (TAB) + + + + Select string above (TAB only) + + + + String below (TAB) + + + + Select string below (TAB only) + + + + Fret 0 (TAB) + + + + Add fret 0 on current string (TAB only) + + + + Fret 1 (TAB) + + + + Add fret 1 on current string (TAB only) + + + + Fret 2 (TAB) + + + + Add fret 2 on current string (TAB only) + + + + Fret 3 (TAB) + + + + Add fret 3 on current string (TAB only) + + + + Fret 4 (TAB) + + + + Add fret 4 of current string (TAB only) + + + + Fret 5 (TAB) + + + + Add fret 5 of current string (TAB only) + + + + Fret 6 (TAB) + + + + Add fret 6 of current string (TAB only) + + + + Fret 7 (TAB) + + + + Add fret 7 of current string (TAB only) + + + + Fret 8 (TAB) + + + + Add fret 8 of current string (TAB only) + + + + Fret 9 (TAB) + + + + Add fret 9 of current string (TAB only) + + + + Staff Types... + + + + Staff type editor + + + + Show staff type editor + + + + Note anchored Textline + + articulation @@ -11689,6 +12231,10 @@ p, li { white-space: pre-wrap; } Line Línea + + Wavy line + + magTable diff --git a/share/locale/mscore_et.ts b/share/locale/mscore_et.ts index cad974a88d338..5bd0ad3204361 100644 --- a/share/locale/mscore_et.ts +++ b/share/locale/mscore_et.ts @@ -3,6 +3,14 @@ AboutBox + + About MuseScore + + + + Copy revision number + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -12,18 +20,10 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Support MuseScore with </span><a href="http://www.musescore.org/en/donate"><span style=" font-size:10pt; text-decoration: underline; color:#0000ff;">your donation</span></a></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Arial'; font-size:10pt;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Copyright </span><span style=" font-size:10pt;">©</span><span style=" font-family:'Arial'; font-size:10pt;"> 1999-2009 Werner Schweer and Others. </span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Copyright </span><span style=" font-size:10pt;">©</span><span style=" font-family:'Arial'; font-size:10pt;"> 1999-2012 Werner Schweer and Others. </span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Published under the GNU General Public License</span></p></body></html> - - About MuseScore - - - - Copy revision number - - AboutBoxDialog @@ -46,17 +46,6 @@ p, li { white-space: pre-wrap; } About MusicXML - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; font-size:10pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">MusicXML is an open file format for exchanging digital sheet music,</p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">supported by many applications. MusicXML is copyright © MakeMusic, Inc.</p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">All rights reserved. For more information see: <a href="http://www.makemusic.com/xml.html"><span style=" text-decoration: underline; color:#0000ff;">MakeMusic</span></a></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; text-decoration: underline; color:#0000ff;"></p></body></html> - - The MusicXML Public License: @@ -104,6 +93,17 @@ p, li { white-space: pre-wrap; } <p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p></body></html> + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans Serif'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">MusicXML is an open file format for exchanging digital sheet music,</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">supported by many applications. MusicXML is copyright © MakeMusic, Inc.</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">All rights reserved. For more information, see: <a href="http://www.makemusic.com/musicxml"><span style=" text-decoration: underline; color:#0000ff;">MakeMusic</span></a></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; text-decoration: underline; color:#0000ff;"></p></body></html> + + Accidental @@ -123,79 +123,79 @@ p, li { white-space: pre-wrap; } - album name + Remove Score - remove current score + Down - Remove Score + Up - move current score down in list + Add Score - Down + New - move current score up in list + Print Album - Up + MuseScore Album Files (*.album);; - Add Score + All Files (*) - create new album + MuseScore Files (*.mscz *.mscx *.msc);; - New + Join Scores - load an existing album + Load - Print Album + MuseScore: Add Score - MuseScore Album Files (*.album);; + MuseScore: Load Album - All Files (*) + Album Name - MuseScore Files (*.mscz *.mscx *.msc);; + Remove Current Score - Join Scores + Move Current Score Down in List - Load + Move Current Score Up in List - MuseScore: Add Score + Create New Album - MuseScore: Load Album + Load an Existing Album @@ -287,6 +287,14 @@ p, li { white-space: pre-wrap; } BarLine + + spanFrom: + + + + spanTo: + + BeamBase @@ -342,6 +350,37 @@ p, li { white-space: pre-wrap; } + + BoxBase + + Form + + + + bottomMargin: + + + + topGap: + + + + bottomGap: + + + + leftMargin: + + + + topMargin: + + + + rightMargin: + + + BoxPropertiesBase @@ -1402,6 +1441,22 @@ Failed: No. + + 1 + + + + 2 + + + + 3 + + + + 4 + + EditInstrumentBase @@ -2020,6 +2075,10 @@ Failed: B -1 + + A 7 + + EditRaster @@ -2048,6 +2107,17 @@ Failed: + + EditStaff + + Edit Short Name + + + + Edit Long Name + + + EditStaffBase @@ -2118,10 +2188,6 @@ Failed: Type: - - Edit... - - ... @@ -2305,16 +2371,6 @@ Failed: Select: - - Guitar (modern) - tablatture type - - - - Bass (modern) - tablature type - - Italian (historic) tablature type @@ -2325,10 +2381,6 @@ Failed: tablature type - - Set - - Show Clef @@ -2453,6 +2505,68 @@ Failed: Preview + + 6 strings (generic guitar) + tablatture type + + + + 4 strings (generic bass) + tablature type + + + + ukulele + + + + bandurria + + + + Custom + + + + Stem position: + + + + Above + + + + Below + + + + Stem style: + + + + Beside staff + + + + Through staff + + + + Half notes: + + + + As short stem + + + + As slashed stem + + + + Show Rests + + EditStringDataBase @@ -2503,6 +2617,14 @@ Failed: Chord + + Edit Plain Text + + + + Edit HTML Text + + EditStyleBase @@ -2576,6 +2698,10 @@ spatium unit ---------- spatium unit ---------- +spatium unit +---------- +spatium unit +---------- spatium unit @@ -3177,6 +3303,18 @@ p, li { white-space: pre-wrap; } Clef/Key right margin + + Pedal, Trill + + + + Pedal Line + + + + Trill Line + + EditTempoBase @@ -3457,6 +3595,65 @@ spatium unit + + InspectorBarLine + + Staff default + + + + Tick + + + + Tick alt. + + + + Short + + + + Short alt. + + + + Type: + + + + Measure default + + + + Normal + + + + Dashed + + + + Dotted + + + + Double + + + + End + + + + Span: + + + + Custom + + + InspectorBeam @@ -3676,6 +3873,57 @@ spatium unit + + InspectorHairpin + + Form + + + + Hairpin + + + + crescendo + + + + decrescendo + + + + Subtype: + + + + Dynamic Range: + + + + Velo. change: + + + + Staff + + + + Part + + + + SYstem + + + + reset value + + + + ... + + + InspectorImage @@ -3928,6 +4176,37 @@ spatium unit + + InspectorOttava + + Form + + + + Ottava + + + + Subtype: + + + + 8va + + + + 15ma + + + + 8vb + + + + 15mb + + + InspectorRest @@ -3996,6 +4275,41 @@ spatium unit + + InspectorTrill + + Form + + + + Trill + + + + Subtype: + + + + trill line + + + + up prall + + + + down prall + + + + prall prall + + + + wavy line + + + InspectorVBox @@ -4054,6 +4368,29 @@ spatium unit + + InspectorVolta + + Form + + + + Volta + + + + Subtype: + + + + Open + + + + Closed + + + InstrumentDialogBase @@ -4109,23 +4446,23 @@ spatium unit - visible + Clef - Clef + Add Linked Staff - linked + Visible - staff linked to previous + Linked - Add Linked Staff + Staff Linked to Previous @@ -4955,6 +5292,34 @@ Would you like to locate %2 now? -> + + 1 + + + + 2 + + + + 4 + + + + 8 + + + + 16 + + + + 32 + + + + 64 + + MeasuresDialogBase @@ -5194,10 +5559,6 @@ Would you like to locate %2 now? &About - - note entry mode - Note entry mode - edit mode Edit mode @@ -5662,10 +6023,6 @@ Restore session? please choose a different name: - - Cannot read file: %1 error: %2 - - Overture / Score Writer Files <experimental> (*.ove *.scw);; @@ -5987,11 +6344,55 @@ please choose a different name: - &Plugins + &Plugins + + + + Find + + + + Dotted + + + + Tick 1 + + + + Tick 2 + + + + Short 1 + + + + Short 2 + + + + plop + + + + scoop + + + + NOTE entry mode + + + + DRUM entry mode + + + + TAB entry mode - Find + you cannot create an element @@ -6142,14 +6543,6 @@ please choose a different name: note head group Note Head Group - - OnTime: - - - - OffTime: - - invalid Invalid @@ -6166,6 +6559,10 @@ please choose a different name: Dot3 + + NoteEvents + + OmrPanel @@ -6758,6 +7155,14 @@ save before closing? Choose Images Directory + + MuseScore Shortcuts + + + + Print Shortcuts + + PrefsDialogBase @@ -7393,6 +7798,10 @@ save before closing? Define Shortcut + + Print + + Properties @@ -8039,26 +8448,6 @@ Sequencer will be disabled. Form - - Slur - - - - Slur End - - - - Staff: - - - - Voice: - - - - Tick: - - SlurPropertyBase @@ -8145,6 +8534,14 @@ Sequencer will be disabled. Form + + CHORD + + + + NOTE + + SplitStaff @@ -9011,6 +9408,7 @@ altera Space + spatium unit Space: @@ -9045,10 +9443,6 @@ altera frame line width - - mm - - Margin: @@ -9081,6 +9475,10 @@ altera Background Color: + + sp + + TextStyleDialog @@ -9180,6 +9578,10 @@ please choose a different name: unstyled + + align vertical baseline + + TimeDialog @@ -9187,14 +9589,6 @@ please choose a different name: MuseScore: Time Signatures - - 4/4 common time - - - - 2/2 alla breve - - TimeDialogBase @@ -9353,10 +9747,6 @@ p, li { white-space: pre-wrap; } MuseScore: Transpose - - Transpose by Key - - Cb major / Ab minor @@ -9429,10 +9819,6 @@ p, li { white-space: pre-wrap; } Closest - - Transpose by Interval - - Perfect Unison @@ -9549,6 +9935,50 @@ p, li { white-space: pre-wrap; } Use double sharps and flats + + Transpose Chromatically + + + + By Key + + + + By Interval + + + + Transpose Diatonically + + + + Second + + + + Third + + + + Fourth + + + + Fifth + + + + Sixth + + + + Seventh + + + + Keep degree alterations + + TremoloBarDialog @@ -9777,10 +10207,6 @@ p, li { white-space: pre-wrap; } Save a Copy... - - Reload - - Create new score @@ -10321,14 +10747,6 @@ p, li { white-space: pre-wrap; } Save a copy of the score in addition to the current file - - File reload - - - - Reload score from file - - File close @@ -10721,10 +11139,6 @@ p, li { white-space: pre-wrap; } Page: end - - Add slur - - Crescendo @@ -11001,14 +11415,6 @@ p, li { white-space: pre-wrap; } Picture - - Player seek to begin - - - - Player seek to end - - &Transpose... @@ -11193,14 +11599,6 @@ p, li { white-space: pre-wrap; } Diatonic up - - next score - - - - previous score - - Reset user settings @@ -11229,10 +11627,6 @@ p, li { white-space: pre-wrap; } Respell pitches - - Grace: 8nd after - - Pan score while playing on/off @@ -11297,10 +11691,6 @@ p, li { white-space: pre-wrap; } Master Palette... - - Insert Measure - - Toggle View Mode @@ -11469,10 +11859,6 @@ p, li { white-space: pre-wrap; } Save Style... - - Save Style As Default... - - Select All @@ -11545,6 +11931,162 @@ p, li { white-space: pre-wrap; } Plugin Creator + + Slur + + + + Add Slur + + + + Add Crescendo + + + + Grace: 8th after + + + + Play Previous Chord + + + + Play Previous Measure + + + + Play Next Chord + + + + Play Next Measure + + + + Player Seek to Begin + + + + Player Seek to End + + + + Save Style as Default... + + + + String above (TAB) + + + + Select string above (TAB only) + + + + String below (TAB) + + + + Select string below (TAB only) + + + + Fret 0 (TAB) + + + + Add fret 0 on current string (TAB only) + + + + Fret 1 (TAB) + + + + Add fret 1 on current string (TAB only) + + + + Fret 2 (TAB) + + + + Add fret 2 on current string (TAB only) + + + + Fret 3 (TAB) + + + + Add fret 3 on current string (TAB only) + + + + Fret 4 (TAB) + + + + Add fret 4 of current string (TAB only) + + + + Fret 5 (TAB) + + + + Add fret 5 of current string (TAB only) + + + + Fret 6 (TAB) + + + + Add fret 6 of current string (TAB only) + + + + Fret 7 (TAB) + + + + Add fret 7 of current string (TAB only) + + + + Fret 8 (TAB) + + + + Add fret 8 of current string (TAB only) + + + + Fret 9 (TAB) + + + + Add fret 9 of current string (TAB only) + + + + Staff Types... + + + + Staff type editor + + + + Show staff type editor + + + + Note anchored Textline + + articulation @@ -11687,6 +12229,10 @@ p, li { white-space: pre-wrap; } Line + + Wavy line + + magTable diff --git a/share/locale/mscore_eu.ts b/share/locale/mscore_eu.ts index cee036463b777..2c5e2a4587cac 100644 --- a/share/locale/mscore_eu.ts +++ b/share/locale/mscore_eu.ts @@ -23,7 +23,7 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Support MuseScore with </span><a href="http://www.musescore.org/en/donate"><span style=" font-size:10pt; text-decoration: underline; color:#0000ff;">your donation</span></a></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Arial'; font-size:10pt;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Copyright </span><span style=" font-size:10pt;">©</span><span style=" font-family:'Arial'; font-size:10pt;"> 1999-2009 Werner Schweer and Others. </span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Copyright </span><span style=" font-size:10pt;">©</span><span style=" font-family:'Arial'; font-size:10pt;"> 1999-2012 Werner Schweer and Others. </span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Published under the GNU General Public License</span></p></body></html> @@ -31,17 +31,17 @@ p, li { white-space: pre-wrap; } AboutBoxDialog - + Unstable Prerelease for Version: - + Version: Bertsioa: - + Revision: %1 Berrikustea: %1 @@ -61,7 +61,7 @@ p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'Sans Serif'; font-size:10pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">MusicXML is an open file format for exchanging digital sheet music,</p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">supported by many applications. MusicXML is copyright © MakeMusic, Inc.</p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">All rights reserved. For more information see: <a href="http://www.makemusic.com/xml.html"><span style=" text-decoration: underline; color:#0000ff;">MakeMusic</span></a></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">All rights reserved. For more information, see: <a href="http://www.makemusic.com/musicxml"><span style=" text-decoration: underline; color:#0000ff;">MakeMusic</span></a></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; text-decoration: underline; color:#0000ff;"></p></body></html> @@ -137,32 +137,42 @@ p, li { white-space: pre-wrap; } - album name + Album Name - remove current score + Remove Current Score - - Remove Score + + Move Current Score Down in List - - move current score down in list + + Move Current Score Up in List - - Down + + Create New Album - - move current score up in list + + Load an Existing Album + + + + + Remove Score + + + + + Down @@ -175,21 +185,11 @@ p, li { white-space: pre-wrap; } Add Score - - - create new album - - New Berria - - - load an existing album - - Load @@ -206,28 +206,28 @@ p, li { white-space: pre-wrap; } - + MuseScore Album Files (*.album);; - - + + All Files (*) - + MuseScore Files (*.mscz *.mscx *.msc);; - + MuseScore: Add Score - + MuseScore: Load Album @@ -340,6 +340,16 @@ p, li { white-space: pre-wrap; } BarLine + + + spanFrom: + + + + + spanTo: + + BeamBase @@ -407,6 +417,44 @@ p, li { white-space: pre-wrap; } + + BoxBase + + + Form + + + + + bottomMargin: + + + + + topGap: + + + + + bottomGap: + + + + + leftMargin: + + + + + topMargin: + + + + + rightMargin: + + + BoxPropertiesBase @@ -497,17 +545,17 @@ spatium unit - + Arpeggio - + Tremolo Tremolo - + Glissando @@ -1455,12 +1503,12 @@ spatium unit - + Hide courtesy clef - + Show courtesy clef @@ -1603,30 +1651,30 @@ spatium unit - + Open File Fitxategia Ireki - + failed: - + MuseScore: Open File MuseScore: Fitxategia Ireki - + Write File failed: - + MuseScore: Write Drumset @@ -1659,7 +1707,7 @@ failed: Izena: - + Note Head: @@ -1694,47 +1742,67 @@ failed: - + + 1 + 1 + + + + 2 + 2 + + + + 3 + 3 + + + + 4 + 4 + + + Shortcut: - + A A - + B B - + C C - + D D - + E E - + F F - + G G - + -- -- @@ -1976,7 +2044,6 @@ failed: - A 8 @@ -2035,6 +2102,11 @@ failed: Ab 7 + + + A 7 + + Bb 7 @@ -2561,6 +2633,19 @@ failed: + + EditStaff + + + Edit Short Name + + + + + Edit Long Name + + + EditStaffBase @@ -2589,228 +2674,223 @@ failed: - - Edit... - - - - + Part Properties - + Instrument: Instrumentua: - + Change Instrument... Instrumentua Aldatu... - + Part Name: - + Long Instrument Name: Instrumentuaren Izen Luzea: - + Short Instrument Name: Instrumentuaren Izen Motza: + - - - - - + + + + ... ... - + Usable Pitch Range: - + Amateur: Amateur: - - + + - - - + Professional: - + Play Transposition: - + 0 - Perfect Unison - + 1 - Augmented Unison - + 0 - Diminished Second - + 1 - Minor Second - + 2 - Major Second - + 3 - Augmented Second - + 2 - Diminished Third - + 3 - Minor Third - + 4 - Major Third - + 5 - Augmented Third - + 4 - Diminished Fourth - + 5 - Perfect Fourth - + 6 - Augmented Fourth - + 6 - Diminished Fifth - + 7 - Perfect Fifth - + 8 - Augmented Fifth - + 7 - Diminished Sixth - + 8 - Minor Sixth - + 9 - Major Sixth - + 10 - Augmented Sixth - + 9 - Diminished Seventh - + 10 - Minor Seventh - + 11 - Major Seventh - + 12 - Augmented Seventh - + 11 - Diminished Octave - + 12 - Perfect Octave - + Number of strings: - + Edit string data... - + +octave - + up - + down @@ -2839,8 +2919,8 @@ failed: - - + + sp @@ -2851,13 +2931,13 @@ failed: - + Key Signature - + Ledger Lines @@ -2887,34 +2967,17 @@ failed: - - Guitar (modern) - tablatture type - - - - - Bass (modern) - tablature type - - - - + Italian (historic) tablature type - + French (historic) tablature type - - - Set - - Show Clef @@ -2930,153 +2993,231 @@ failed: Show Time Sign. + + + 6 strings (generic guitar) + tablatture type + + + + + 4 strings (generic bass) + tablature type + + + + + ukulele + + + + + bandurria + + + + + Custom + + - + « Full Configur. - + Upside Down - + Quick Presets » - + Fret Marks - - + + Font: - - + + Size: Tamaina - - + + pt - - + + Vert. Offset: - + Marks are: - + Numbers Zenbakiak - + Letters - + Marks are drawn: - + On Lines - + Above Lines - + Lines are: - + Continuous - + Broken - + Note Values - + Shown as: - + + None - + Note Symbols - + Stems and beams - + + Stem position: + + + + + Above + + + + + Below + + + + + Stem style: + + + + + Beside staff + + + + + Through staff + + + + + Half notes: + + + + + As short stem + + + + + As slashed stem + + + + + Show Rests + + + + Preview - + Create new tablature type - + PERCUSSION STAFF - + Create new percussion type - + Save Gorde - + Load - + Stemless @@ -3141,6 +3282,16 @@ failed: Chord Akordea + + + Edit Plain Text + + + + + Edit HTML Text + + EditStyleBase @@ -3151,151 +3302,153 @@ failed: - + Score Partitura - - - + + + Page Orrialdea - + System - + Measure Konpasa - + Barlines - + Notes Notak - + Arpeggios - + Beams - + Sizes - + Hairpins - - + + Chordnames Akordeen Izenak - - + + Articulations, Ornaments - + Voices Ahotsak - + Display in Concert Pitch - + Create Multi Measure Rests - + Minumum width of measure: Konpasaren gutxiengo zabalera: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + sp spatium unit ---------- @@ -3321,81 +3474,85 @@ spatium unit ---------- spatium unit ---------- +spatium unit +---------- +spatium unit +---------- spatium unit - + Minimum Number of empty measures: - + Hide Empty Staves Pentagrama hutsak ezkutatu - + Music upper margin - + Music lower margin - + Staff distance - + Lyrics upper margin - + Lyrics lower margin - + V-frame upper margin - + V-frame lower margin - - - - - - + + + + + + % % - + Last system fill threshold - + Create clef for all systems - + Create key sig for all systems - + Create time signatures @@ -3406,473 +3563,480 @@ spatium unit - + Clefs - + Slurs/Ties - - + + Accidentals - + Musical symbols font: - + Don't hide empty staves in first system - + Grand staff distance - + Vertical-frame upper margin - + Vertical-frame lower margin - + Create courtesy clefs - + Create courtesy time signatures - + Create courtesy key signatures - + Lyrics line height - + Header Text - + show header also on first page - + use odd even page header - - + + left - - + + middle - - + + right - - - + + + edit even page header - - - + + + add odd page header - + Footer Text - + show footer also on first page - + use odd even page footer - - - + + + edit even page footer - - - + + + edit odd page header - + + Pedal, Trill + + + + Min. System distance - + Max. System distance - + System Bracket Distance: - + Akkolade Distance: - + Fix Number of Measures/System: - + Fix Measure Width - + System Bracket Width: - + Akkolade Width: - + minimum Measure width - + Spacing (1=tight) - + Min. note distance - + Clef left margin - + Key sig. left margin - + Time sig. left margin - + Clef-barline distance - + Staff line width - + Show repeat bar tips ("winged" repeats) - + Barline at start of single staff - + Barline at start of multiple staves - + Bar width: - + End bar width: - + End bar distance: - + Double bar width: - + Double bar distance: - + shorten stems - + Progression - + Shortest stem - + Accidental note distance - + Accidental distance - + Note dot distance - + Dot dot distance - + Ledger line width - + Ledger line length - + Default TAB Clef - + Clef1 - + Clef2 - + Distance to note - + Line width - + Hook length - - - + + + Line width: - + Height: - + Line break height: - + Volta Volta - - - + + + + + default Y-position: - - + + Hook height: - + Ottava - + Font: - + Size: Tamaina - + pt - + Vertical position: - + Line height: - + Style - + Modern - + Historic - + note head distance - + articulation distance - + staff distance - + Accidental - + semitones offset - + cents offset - + Stem Direction in Multi-Voice Context - - - - + + + + up - - - - + + + + down - - - + + + show first @@ -3882,37 +4046,37 @@ spatium unit - - + + Figured Bass - - + + odd/even bakoitia/bikoitia - - + + styled - - + + even - - + + odd - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -3925,168 +4089,178 @@ p, li { white-space: pre-wrap; } - + Measure Numbers Konpas Zenbakiak - + all staffs pentagrama guztiak - + every system - + interval bitartea - + Barline-note margin - + Note-barline margin - + Clef/Key right margin - + Beam width - - + + spaces - + Beam distance - + beam width units - + Minimum length - + Minimum slope - + Maximum slope - + line width at end - + line width middle - + bow - + dotted line width - + Small staff size - + Small note size - + Grace note size - + Small clef size - + + Pedal Line + + + + + Trill Line + + + + Use German names Erabili izen Germaniarrak - + Chord description file - - - - - - - - - - - - - + + + + + + + + + + + + + ... ... - - - + + + sp space unit - + Voice 1 1 ahotsa - + Voice 2 2 ahotsa - + Voice 3 3 ahotsa - + Voice 4 4 ahotsa @@ -4249,7 +4423,7 @@ p, li { white-space: pre-wrap; } GreendotButton - + record @@ -4346,7 +4520,7 @@ p, li { white-space: pre-wrap; } Inspector - + Inspector @@ -4433,6 +4607,79 @@ spatium unit + + InspectorBarLine + + + Staff default + + + + + Tick + + + + + Tick alt. + + + + + Short + + + + + Short alt. + + + + + Type: + + + + + Measure default + + + + + Normal + + + + + Dashed + + + + + Dotted + + + + + Double + + + + + End + + + + + Span: + + + + + Custom + + + InspectorBeam @@ -4465,13 +4712,13 @@ spatium unit - - + + ... ... - + User Position @@ -4587,7 +4834,7 @@ spatium unit InspectorClef - + Show Courtesy Clef @@ -4721,15 +4968,80 @@ spatium unit - InspectorImage + InspectorHairpin - + Form - - Image + + Hairpin + + + + + crescendo + + + + + decrescendo + + + + + Subtype: + + + + + Dynamic Range: + + + + + Velo. change: + + + + + Staff + Pentagrama + + + + Part + + + + + SYstem + + + + + + reset value + + + + + + ... + ... + + + + InspectorImage + + + Form + + + + + Image Irudia @@ -4774,12 +5086,12 @@ spatium unit InspectorKeySig - + Show Courtesy Time Signature - + Show Naturals @@ -5018,45 +5330,83 @@ spatium unit - + Select Hautatu - + Dot1 - + Dot2 - + Dot3 - + Hook - + Stem - + Beam + + InspectorOttava + + + Form + + + + + Ottava + + + + + Subtype: + + + + + 8va + + + + + 15ma + + + + + 8vb + + + + + 15mb + + + InspectorRest - + Small @@ -5132,11 +5482,54 @@ spatium unit InspectorTimeSig - + Show Courtesy Time Signature + + InspectorTrill + + + Form + + + + + Trill + + + + + Subtype: + + + + + trill line + + + + + up prall + + + + + down prall + + + + + prall prall + + + + + wavy line + + + InspectorVBox @@ -5223,6 +5616,34 @@ spatium unit + + InspectorVolta + + + Form + + + + + Volta + Volta + + + + Subtype: + + + + + Open + + + + + Closed + + + InstrumentDialogBase @@ -5277,22 +5698,22 @@ spatium unit - visible + Visible - - Clef + + Linked - - linked + + Staff Linked to Previous - - staff linked to previous + + Clef @@ -5416,50 +5837,50 @@ spatium unit - + MuseScore: Save Instrument List MuseScore: Instrumentuen Zerrenda Gorde - + MuseScore Instruments (*.xml);; Musescore Instrumentuak (*.xml);; - + Open Instruments File Instrumentuen Fitxategia Ireki - + failed: - + MuseScore: Open Instruments file Musescore: Instrumentuen Zerrenda ireki - + Write Style failed: - + MuseScore: Write Style - + MuseScore: Load Instrument List - + MuseScore Instruments (*.xml);;All files (*) Musescore Instrumentuak (*.xml);;Fitxategi guztiak (*) @@ -5526,22 +5947,22 @@ failed: KeySig - + Hide Courtesy Key Signature - + Show Courtesy Key Signature - + Hide Naturals - + Show Naturals @@ -6233,12 +6654,12 @@ Would you like to locate %2 now? - + visible - + stemless @@ -6312,57 +6733,92 @@ Would you like to locate %2 now? - + + 1 + 1 + + + + 2 + 2 + + + + 4 + 4 + + + + 8 + 8 + + + + 16 + 16 + + + + 32 + 32 + + + + 64 + 64 + + + Other - + do not count - + Exclude from measure count - + break multi measure rest - + add to measure number - + layout stretch - + repeat count: - + goto previous measure - + <- - + goto next measure - + -> @@ -6447,7 +6903,7 @@ Would you like to locate %2 now? MenuNotes - + &Notes &Notak @@ -6498,462 +6954,456 @@ Would you like to locate %2 now? MuseScore - - + + MuseScore MuseScore - + Save changes to the score "%1" before closing? "%1" partituraren aldaketak gorde itxi aurretik? - + MuseScore: Load Score - - + MuseScore: Load error - + MusicXML Files (*.xml *.mxl);; - + MIDI Files (*.mid *.midi *.kar);; - + Muse Data Files (*.md);; - + Capella Files (*.cap);; - + BB Files <experimental> (*.mgu *.MGU *.sgu *.SGU);; - + PDF Files <experimental omr> (*.pdf);; - + Bagpipe Music Writer Files <experimental> (*.bww);; - + Guitar Pro (*.GTP *.GP3 *.GP4 *.GP5);; - - - + + + All Files (*) - + Untitled Izengabea - - Cannot read file: %1 error: %2 - - - - + Overture / Score Writer Files <experimental> (*.ove *.scw);; - + Compressed MuseScore File (*.mscz) - + MuseScore File (*.mscx) MuseScore Fitxategia (*.mscx) - + MuseScore: Save Score MuseScore: Partitura Gorde - + MuseScore: Save File MuseScore: Fitxategia Gorde - - + + MuseScore: Load Style - + MuseScore Styles (*.mss);;All Files (*) - - - + + + MuseScore: Save Style - - - + + + MuseScore Style File (*.mss) - + SoundFont Files (*.sf2 *.SF2);;All (*) SoundFont Fitxategiak (*.sf2 *.SF2);;Guztiak (*) - + Choose Synthesizer SoundFont - + MuseScore: Choose Synthesizer SoundFont - + MuseScore Chord Style File (*.xml) - + ;;All Files (*) - - + + MuseScore: Load Chord Style - + MuseScore: Save Chord Style - + PDF Scan File (*.pdf);;All (*) - + Choose PDF Scan - + MuseScore: Choose PDF Scan - + OGG Audio File (*.ogg);;All (*) - + Choose Audio File - + MuseScore: Choose OGG Audio File - + PNG Bitmap Graphic (*.png);; - + PDF File (*.pdf);; - + Encapsulated PostScript File (*.eps);; - + Scalable Vector Graphic (*.svg);; - + MuseScore: Save Image - + MuseScore: Load Palette - + MuseScore Palette (*.mpal);;All Files (*) - + MuseScore: Save Palette - + MuseScore Palette (*.mpal) - + MuseScore: Load Plugin - + MuseScore Plugin (*.qml);;All Files (*) - + MuseScore: Save Plugin - + MuseScore Plugin File (*.qml) - + MuseScore: Load Drumset - + MuseScore Drumset (*.drm);;All Files (*) - + MuseScore: Save Drumset - + MuseScore Drumset File (*.drm) - - + + Uncompressed MuseScore Format (*.mscx) - - + + MusicXML Format (*.xml) MusicXML Formatua (*.xml) - - + + Compressed MusicXML Format (*.mxl) - - + + Standard MIDI File (*.mid) - - + + PDF File (*.pdf) PDF Fitxategia (*.pdf) - - + + PostScript File (*.ps) PostScript Fitxategia (*.ps) - - + + PNG Bitmap Graphic (*.png) - - + + Scalable Vector Graphic (*.svg) - - + + Wave Audio (*.wav) Wave Audio (*.wav) - - + + Flac Audio (*.flac) - - + + Ogg Vorbis Audio (*.ogg) - - + + MP3 Audio (*.mp3) - + MuseScore: Export - + MuseScore Format (*.mscx) - + MuseScore: Save a Copy MuseScore: Kopia bat Gorde - - - - + + + + MuseScore: Save As MuseScore: Honela Gorde - + All Supported Files (*.mscz *.mscx *.xml *.mxl *.mid *.midi *.kar *.md *.mgu *.MGU *.sgu *.SGU *.cap *.pdf *.ove *.scw *.bww *.GTP *.GP3 *.GP4 *.GP5);; - + All Supported Files (*.mscz *.mscx *.xml *.mxl *.mid *.midi *.kar *.md *.mgu *.MGU *.sgu *.SGU *.cap *.ove *.scw *.bww *.GTP *.GP3 *.GP4 *.GP5);; - + MuseScore Files (*.mscz *.mscx);; - - + + LilyPond Format (*.ly) - - - - + + + + cannot determine file type - - - + + + MuseScore: Export Parts - + Parts were successfully exported - - + + MuseScore Format (*.mscz) - - + + MuseScore: Save Selection - + MuseScore: Save Selected - + MuseScore: InsertImage - + All Supported Files (*.svg *.jpg *.png *.xpm);;Scalable vector graphics (*.svg);;JPEG (*.jpg);;PNG (*.png);;XPM (*.xpm);;All Files (*) - + Images (*.jpg *.gif *.png);;All (*) - + Grace Notes - + Clefs @@ -6963,247 +7413,247 @@ itxi aurretik? - + Time Signatures - + 4/4 common time - + 2/2 alla breve - + Normal - + Dashed - + End Bar - + Double Bar - + Start Repeat - + End Repeat - + End-Start Repeat - + Arpeggio && Glissando - + Arpeggio - + Glissando - + Breath && Pauses - + Breath - + Caesura - + Brackets - + Square bracket - + Curly bracket - + Thumb - + 1/8 through stem - + 1/16 through stem - + 1/32 through stem - + 1/64 through stem - + 1/8 between notes - + 1/16 between notes - + 1/32 between notes - + 1/64 between notes - + Fall/Doit - + fall - + doit - + Segno Variation - + staff-text - + Staff Text Pentagramako Testua - + system-text - + System Text - + Instrument - + Instrument Change - + 1. 1. - + Lyrics Verse Number - + Tempo Text - + Staff spacer down - + Staff spacer up - + Chord Name Akorde Izena - + Staff Changes - + set visible - + set invisible - + change staff type - + change instrument @@ -7213,7 +7663,7 @@ itxi aurretik? - + Articulations && Ornaments @@ -7223,132 +7673,167 @@ itxi aurretik? Dinamikak - + Fingering - + Fingering %1 - + String number %1 - + Note Heads - + Tremolo Tremolo + + + Dotted + + + + + Tick 1 + + + + + Tick 2 + + + Short 1 + + + + + Short 2 + + + + Repeats Errepikapenak - + Repeat measure sign - + Segno - + Coda Coda - + Varied coda - + Codetta - + Fine Fine - + Da Capo Da Capo - + Da Capo al Fine Da Capo al Fine - + Da Capo al Coda Da Capo al Coda - + D.S al Coda D.S al Coda - + D.S al Fine D.S al Fine - + D.S D.S - + To Coda Coda-ra - + Breaks && Spacer - + Line break - + Page break - + Section break - - &Measures + + plop - + + scoop + + + + + &Measures + + + + &Frames - + &Text @@ -7358,247 +7843,257 @@ itxi aurretik? - + Symbols - + Fret Diagram - + &Create &Sortu - + Text Testua - + switch layer - + synthesizer - + audio track - + switch play mode - + File Operations - + Transport Tools - + Page View - + Concert Pitch - + Foto Mode - + Note Entry - + &File &Fitxategia - + Open &Recent - + &Edit &Editatu - + &Measure - + &Voices - + Pr&ofiles - + &Preferences... - + Add N&ote - + Add &Interval - + T&uplets - + &Plugins - + &Online Handbook - + About &Qt - + Check for &Update - + + NOTE entry mode + + + + + DRUM entry mode + + + + + TAB entry mode + + + + Find - + MuseScore: warning - + Cannot create tuplet: note value too short - + &Layout - + Continuous View - + &Style - + &Display - + &Help &Laguntza - + &About - + About &MusicXML - + Report a bug - + Open failed: unknown file extension or broken file - + System - + no score - - note entry mode - - - - + edit mode - + play - + foto mode - + Go To: Hona Joan: - + Bar %1 Beat %2.%3 - + The previous session quit unexpectedly. Restore session? @@ -7632,28 +8127,28 @@ please choose a different name: - + MuseScore: transpose MuseScore: transposizioa egin - + There is nothing selected. Transpose whole score? Ez dago ezer aukeraturik. Partitura osoaren transposizioa egin? - - + + MuseScore: save style - + MuseScore: load style - + Rehearsal Mark @@ -7695,6 +8190,11 @@ please choose a different name: Error %1 returned from MP3 encoder + + + you cannot create an element + + MyWebView @@ -7762,7 +8262,7 @@ please choose a different name: - + MuseScore: Create New Score Musescore: Partitura Berria Sortu @@ -7770,12 +8270,12 @@ please choose a different name: NewWizardPage1 - + Create New Score Partitura Berria Sortu - + This wizard creates a new score @@ -7783,12 +8283,12 @@ please choose a different name: NewWizardPage2 - + Create New Score Partitura Berria Sortu - + Define a set of instruments. Each instrument is represented by one or more staves @@ -7796,12 +8296,12 @@ please choose a different name: NewWizardPage3 - + Create New Score Partitura Berria Sortu - + Create Time Signature @@ -7809,22 +8309,22 @@ please choose a different name: NewWizardPage4 - + Create New Score Partitura Berria Sortu - + Select Template File: Aukeratu Txantiloi Fitxategia: - + MuseScore: Select Template - + MuseScore Template Files (*.mscz *.mscx) @@ -7832,27 +8332,27 @@ please choose a different name: NewWizardPage5 - + Create New Score Partitura Berria Sortu - + Select Key Signature and Tempo: - + Key Signature - + Tempo Tempo - + BPM: BPM: @@ -7875,33 +8375,28 @@ please choose a different name: - - OnTime: - - - - - OffTime: + + NoteEvents - - + + invalid - + Dot1 - + Dot2 - + Dot3 @@ -8087,27 +8582,27 @@ please choose a different name: PaletteBox - + Palettes - + Palette Operations - + Single Palette Mode - + Reset to factory defaults - + new Palette @@ -8115,42 +8610,42 @@ please choose a different name: PaletteBoxButton - + Palette Properties... - + Insert new Palette... - + Move Palette Up - + Move Palette Down - + Enable Editing - + Save Palette - + Load Palette - + Delete Palette @@ -8474,42 +8969,42 @@ please choose a different name: PluginCreator - + File Operations - + Edit Operations - + MuseScore Plugin Editor - - - + + + MuseScore MuseScore - - - + + + Plugin "%1" has changes save before closing? - + untitled - + Manual @@ -8585,77 +9080,88 @@ save before closing? PreferenceDialog - + Choose Notepaper - + Choose Background Wallpaper - + Choose Default Style - + Choose Default Style for Parts - - + + Choose Instrument List Instrumentuen Zerrenda Aukeratu - - + + Instrument List (*.xml) Instrumentuen Zerrenda (*.xml) - + Choose Starting Score - + MuseScore Files (*.mscz *.mscx *.msc);;All (*) MuseScore Fitxategiak (*.mscz *.mscx *.msc);;Guztiak (*) - + Choose Scores Directory - + Choose Styles Directory - + Choose Templates Directory - + Choose Plugins Directory - + Choose SoundFonts Directory - + Choose Images Directory + + + + MuseScore Shortcuts + + + + + Print Shortcuts + + PrefsDialogBase @@ -9388,7 +9894,7 @@ save before closing? - + Shortcut @@ -9461,47 +9967,52 @@ save before closing? - + + Print + Inprimatu + + + Plugins - + Name: Izena: - + Path: - + Version: - + Load - + Define Shortcut - + Update - + Automatic Update Check - + Check for new versions of MuseScore on startup @@ -9509,7 +10020,7 @@ save before closing? Properties - + small @@ -9545,7 +10056,7 @@ save before closing? QWidget - + MuseScore: Import Capella @@ -9572,13 +10083,13 @@ save before closing? - - - - + + - - + + + + @@ -9593,54 +10104,54 @@ save before closing? - + MuseScore: Save Album - + MuseScore Files (*.album);; - + Open Album File - + failed: - + MuseScore: Open Album file - + Write Album failed: - + MuseScore: Write Album - + Untitled Izengabea - + MuseScore: file not found: MuseScore: fitxategi ez aurkitua: - + MuseScore: load failed: @@ -9662,17 +10173,17 @@ failed: - + MuseScore: load Style failed: - + MuseScore: Load languages failed: - + MuseScore: invalid command @@ -9683,7 +10194,7 @@ failed: - + MuseScore: Import GuitarPro @@ -9691,7 +10202,7 @@ failed: RecordButton - + record @@ -9725,7 +10236,7 @@ failed: Gehiago... - + Staff Pentagrama @@ -9748,26 +10259,26 @@ failed: - - - - + + + + Set Invisible - - - - + + + + Set Visible - + Color... Kolorea... @@ -9779,9 +10290,9 @@ failed: - - - + + + Text Properties... Testuaren Propietateak... @@ -9791,150 +10302,150 @@ failed: - + Bend Properties... - + TremoloBar Properties... - - + + Add Gehitu - - - + + + Frame Properties... - - - + + + Tuplet Properties... - + Volta Properties... Volta Propietateak... - + Line Properties... - + Time Signature Properties... - + MIDI Properties... MIDI Propietateak... - + Staff Text Properties... - + Tempo Properties... - + Change Instrument Properties... - + Edit Mode - + Slur Properties... - - + + Tuplet... - - + + Delete Tuplet - + Style... - + Chord Articulation... - + Marker Properties... - + Jump Properties... - + Section Break Properties... - + Change Instrument... Instrumentua Aldatu... - + Fret Diagram Properties... - + Glissando Properties... - + Dynamics Dinamikak - + Hairpin Properties... - + Harmony Properties... - - + + Staff Properties... @@ -9951,54 +10462,54 @@ failed: - + Measure Konpasa - + Measure Properties... Konpasen Propietateak... - + Please select the complete tuplet and retry the copy operation - + Please select the complete tuplet and retry the cut operation - + No chord/rest selected: please select a chord/rest and try again - + Cannot split measure here: cannot split tuplet - + No measures selected: please select range of measures to join and try again - + No staves found: please use the instruments dialog to first create some staves - + No Measure selected: please select a measure and try again Ez dago aukeratutako Konpasik: @@ -10279,12 +10790,12 @@ Sequencer will be disabled. ShortcutCaptureDialog - + Shortcut conflicts with - + Undefined @@ -10339,31 +10850,6 @@ Sequencer will be disabled. Form - - - Slur - - - - - Slur End - - - - - Staff: - Pentagrama: - - - - Voice: - Ahotsa: - - - - Tick: - - SlurPropertyBase @@ -10469,6 +10955,16 @@ Sequencer will be disabled. Form + + + CHORD + + + + + NOTE + + SplitStaff @@ -10908,7 +11404,7 @@ altera - + MuseScore Startup Dialog @@ -11524,146 +12020,147 @@ altera - + relX: - + reference point offset in percent of parent width - - + + % % - + Y: coordinate Y: - + vertical offset to reference point - + relY: - + reference point offset in percent of parent height - + Unit: Unitatea: - + offset is absolute - + MM MM - + offset in Space units - + Space + spatium unit - + enable text frame - + Frame - + draw circled frame - + Circle - + draw boxed frame - + Box - + Width: Zabalera: - + frame line width - - - mm - mm + + + sp + - + Margin: Marjina: - + frame inner margin - + Round: - + corner round - + Foreground Color: - - + + frame color - + Background Color: @@ -11726,67 +12223,72 @@ please choose a different name: - + align left - + align horizontal center - + align right - + align top - + align bottom - + + align vertical baseline + + + + align vertical center - + subscript - + superscript - + unordered list - + ordered list - + indent more - + indent less - + unstyled @@ -11798,16 +12300,6 @@ please choose a different name: MuseScore: Time Signatures - - - 4/4 common time - - - - - 2/2 alla breve - - TimeDialogBase @@ -11857,12 +12349,12 @@ please choose a different name: TimeSig - + Hide Courtesy Time Signature - + Show Courtesy Time Signature @@ -12005,259 +12497,306 @@ p, li { white-space: pre-wrap; } TMuseScore: transposizioa egin - - Transpose by Key - - - - + Cb major / Ab minor Cb maior / Ab minor - + Gb major / Eb minor Gb maior / Eb minor - + Db major / Bb minor Db maior / Bb minor - + Ab major / F minor Ab maior / F minor - + Eb major / C minor Eb maior / C minor - + Bb major / G minor Bb maior / G minor - + F major / D minor F maior / D minor - + C major / A minor C maior / A minor - + G major / E minor G maior / E minor - + D major / B minor D maior / B minor - + A major / F# minor A maior / F# minor - + E major / C# minor E maior / C# minor - + B major / G# minor B maior / G# minor - + F# major / D# minor F# maior / D# minor - + C# major / A# minor C# maior / A# minor - - + + + Up - - + + + Down - + Closest Hurbilena - - Transpose by Interval - Transposizioa bitarte bidez egin - - - + Perfect Unison - + Augmented Unison - + Diminished Second - + Minor Second - + Major Second - + Augmented Second - + Diminished Third - + Minor Third - + Major Third - + Augmented Third - + Diminished Fourth - + Perfect Fourth - + Augmented Fourth - + Diminished Fifth - + Perfect Fifth - + Augmented Fifth - + Diminished Sixth - + Minor Sixth - + Major Sixth - + Augmented Sixth - + Diminished Seventh - + Minor Seventh - + Major Seventh - + Augmented Seventh - + Diminished Octave - + Perfect Octave - + + Transpose Diatonically + + + + + Second + + + + + Third + + + + + Fourth + + + + + Fifth + + + + + Sixth + + + + + Seventh + + + + + Keep degree alterations + + + + Options - + Transpose key signatures - + + Transpose Chromatically + + + + + By Key + + + + + By Interval + + + + Transpose chord names Akorde izenen transposizioa egin - + Single sharps and flats only Sostengatu eta bemol bakunak bakarrik - + Use double sharps and flats Sostengatu eta bemol bikoitzak erabili @@ -12548,220 +13087,205 @@ p, li { white-space: pre-wrap; } - + File open Fitxategia ireki - + Load score from file - + File save Fitxategia gorde - + Save score to file Partitura fitxategian gorde - + File save as - + Save score under a new file name - + File save a copy - + Save a Copy... Kopia bat Gorde - + Save a copy of the score in addition to the current file - + Save a copy of the score in various formats - - - File reload - - - - - Reload - Birkargatu - - Reload score from file - - - - File close Fitxategia itxi - + Close current score - + Create new score Partitura berria sortu - + Print Inprimatu - + Print score Partitura inprimatu - - + + Undo Desegin - + Undo last change Azken aldaketa desegin - - + + Redo Berregin - + Redo last undo - + Cut Moztu - + Copy Kopiatu - + Paste Itsatsi - + Show instruments dialog - + Note input mode - - + + Note Input - + Enter unison above - + Export Parts - + Export Parts... - + Save a copy of the score's parts in various formats - + Unison Above - + Enter second above - + Second Above - + Enter third above - + Third Above - + Enter fourth above - + Fourth Above - + Enter fifth above - + Fifth Above - + Enter sixth above - + Sixth Above @@ -12776,1071 +13300,1052 @@ p, li { white-space: pre-wrap; } - + Enter octave above - + Octave Above - + Enter ninth above - + Ninth Above - + Enter second below - + Second Below - + Enter third below - + Third Below - + Enter fourth below - + Fourth Below - + Enter fifth below - + Fifth Below - + Enter sixth below - + Sixth Below - + Enter seventh below - + Seventh Below - + Enter octave below - + Octave Below - + Enter ninth below - + Ninth Below - + Enter note A - + A A - + Enter note B - + B B - + Enter note C - + C C - + Enter note D - + D D - + Enter note E - + E E - + Enter note F - + F F - + Enter note G - + G G - + Add note A to chord A nota gehitu akordeari - + Add A A gehitu - + Add note B to chord B nota gehitu akordeari - + Add B B gehitu - + Add note C to chord C nota gehitu akordeari - + Add C C gehitu - + Add note D to chord D nota gehitu akordeari - + Add D D gehitu - + Add note E to chord E nota gehitu akordeari - + Add E E gehitu - + Add note F to chord F nota gehitu akordeari - + Add F F gehitu - + Add note G to chord G nota gehitu akordeari - + Add G G gehitu - + Insert note A - + Insert A - + Insert note B - + Insert B - + Insert note C - + Insert C - + Insert note D - + Insert D - + Insert note E - + Insert E - + Insert note F - + Insert F - + Insert note G - + Insert G - + Enter rest - - - + + + Rest Isilunea - + Add staccato - + Staccato - + Add tenuto - + Tenuto - + Add trill - + Trill - + Add marcato - + Marcato - + Add more stretch to selected measure - + Less stretch - + Add less stretch to selected measure - - + + Reset Beam Mode - + Reset beam mode of selected measures - + Flip direction - + Pitch up - + Up - + Pitch up octave - + Up Octave - + Pitch up by an octave - + Select Section - + Note duration: double whole - - + + Double whole note - - + + Whole note - - + + Half note - - + + Quarter note - - + + 8th note - - + + 16th note - - + + 32nd note - - + + 64th note - + Note duration: 128th - - + + 128th note - + Add system text - + Add staff text - + Add title text - + Add subtitle text - + Add composer text - + Add lyricist text - + Lyricist - + Add chord name - + Show harmony properties for chord - + Add rehearsal mark - - Player seek to begin - - - - - Player seek to end - - - - + Pan score while playing on/off - + Pan - + &Transpose... - + Violin Clef - + Bass Clef - + Display in concert pitch - + next syllable - + previous syllable - + toggle visibility - + set visible - + set unvisible - + Show Unprintable - + Show Page Margins - + Manage parts - + Show inspector - + Reset measure stretch - + Reset user settings - + Note entry: whole rest - + Whole rest - + Note entry: half rest - + Half rest - + Note entry: quarter rest - + Quarter rest - + Note entry: 8th rest - + 8th rest - + Tempo Marking... - + Tempo Marking - + Text Testua - + Add Frame Text - + Load Style... - + Save Style... - - Save Style As Default... - - - - + Select All - + Concert Pitch - + Info... - + Reset - + Debugger - + Reset Stretch - + Insert Special Characters - + Backspace - + Find - + Mirror note head - + General... - + Edit general style - + Text... - + Chords... - + Double duration - + Half duration - + Follow song - + Display documents side by side - + Display documents stacked - + Show OMR image - + Enharmonic up - + Parts... - + Enharmonic down - + Create new revision - + Toggle foto mode - + Enable horizontal raster - + Enable vertical raster - + Configure raster - + Re-Pitch Mode - + Replace pitches without changing rhythms - + Stack down - + Piano Keyboard - + Additional Media... - + Show media dialog - + Split Measure - + Join Measure - + Page Settings... - + Page Settings - + Album... - + Album - + Up Note in Chord - + Go to higher pitched note in chord - + Go to top note in chord - + Top Note in Chord - + Move up - + Pitch down - + Down - + Pitch down octave - + Down octave - + Pitch down by an octave - + Down Note in Chord - - + + Go to lower pitched note in chord - + File new - + Diatonic pitch down - + Diatonic down - + Go to bottom note in chord - + Bottom Note in Chord - - + + Move down - - + Previous chord - - + Previous measure Aurreko konpasa - - + Next chord - - + Next measure Hurrengo konpasa - - + + Delete Ezabatu - + Delete contents of the selected measures - + Timewise Delete - + Delete element and duration - + Delete Selected Measures - + Append measures Konpasak erantsi - + Append Measures... Konpasak Erantsi... - + Insert measures Konpasak txertatu - + Insert Measures... Konpasak Txertatu... @@ -13850,976 +14355,1142 @@ p, li { white-space: pre-wrap; } - + Open... - + Save Gorde - + Save As... - + Export... - + Close Itxi - + New... - + Print... - + Instruments... - - + + Add More Stretch - + Add Less Stretch - - + + Slur + + + + + Add Slur + + + + + Add Crescendo + + + + Insert Horizontal Frame - - + Insert Vertical Frame - + Append Horizontal Frame - + Append Vertical Frame - + Duplet - + Triplet - + Quadruplet - + Quintuplet - + Sextuplet - + Septuplet - + Octuplet - + Nonuplet - + Other... - - + + Longa - - + + Flat Bemola - - + + + + Grace: 8th after + + + + + Enable sound while editing - + Palette - + Play Panel - + Navigator - + Mixer - + Transport - + Status Bar - + Quit Irten - + Lyrics - + + String above (TAB) + + + + + Select string above (TAB only) + + + + + String below (TAB) + + + + + Select string below (TAB only) + + + + + Fret 0 (TAB) + + + + + Add fret 0 on current string (TAB only) + + + + + Fret 1 (TAB) + + + + + Add fret 1 on current string (TAB only) + + + + + Fret 2 (TAB) + + + + + Add fret 2 on current string (TAB only) + + + + + Fret 3 (TAB) + + + + + Add fret 3 on current string (TAB only) + + + + + Fret 4 (TAB) + + + + + Add fret 4 of current string (TAB only) + + + + + Fret 5 (TAB) + + + + + Add fret 5 of current string (TAB only) + + + + + Fret 6 (TAB) + + + + + Add fret 6 of current string (TAB only) + + + + + Fret 7 (TAB) + + + + + Add fret 7 of current string (TAB only) + + + + + Fret 8 (TAB) + + + + + Add fret 8 of current string (TAB only) + + + + + Fret 9 (TAB) + + + + + Add fret 9 of current string (TAB only) + + + + + Staff Types... + + + + + Staff type editor + + + + + Show staff type editor + + + + + Note anchored Textline + + + + Save Selection - + Save Selection... - + Save current selection as new score - + Export score - + Respell pitches - + Diatonic pitch up - + Diatonic up - + Add previous chord to selection - + Select to beginning of measure - + Add next chord to selection - + Move chord/rest right - + Move chord/rest left - + Select to end of measure - + Select to beginning of line - + Select to end of line - + Select to beginning of score - + Select to end of score - + Add staff above to selection - + Add staff below to selection - + Page: previous - + Page: next - + Page: top - + Page: end - - Add slur - - - - + Crescendo - + Decrescendo - + Escape - + Timewise delete - + Append One Measure - + Insert One Measure - - + Insert Text Frame - + Append Text Frame - - + Insert Fret Diagram Frame - + Other tuplets - + Note duration: longa - + Note duration: whole - + Note duration: half - + Note duration: quarter - + Note duration: 8th - + Note duration: 16th - + Note duration: 32nd - + Note duration: 64th - + Note duration: augmentation dot - - + + Augmentation dot - + Note duration: double augmentation dot - - + + Double augmentation dot - + Note duration: tie - - + + Tie - + Note entry: rest - + Note entry: double sharp - - + + Double sharp - + Note entry: sharp - - + + Sharp - + Note entry: natural - - + + Natural - + Note entry: flat - + Note entry: double flat - - + + Double flat - - - + + + Acciaccatura - - - + + + Appoggiatura - - - + + + Grace: quarter - - - + + + Grace: 16th - - - + + + Grace: 32nd - - - - Grace: 8nd after - - - - - - + + + Voice 1 1 ahotsa - - - + + + Voice 2 2 ahotsa - - - + + + Voice 3 3 ahotsa - - - + + + Voice 4 4 ahotsa - + MIDI input - - + + Enable MIDI input - + Editing sound on - + Beam start - + Beam middle - + No beam - + Beam 32nd sub - + Beam 64th sub - + Auto beam - + Feathered beam, slower - + Feathered beam, faster - + Transport toolbar - + Note input toolbar - + Zoom canvas - + + Play Previous Chord + + + + + Play Previous Measure + + + + + Play Next Chord + + + + + Play Next Measure + + + + + Player Seek to Begin + + + + + Player Seek to End + + + + + Save Style as Default... + + + + Full Screen - + Layers... - + MuseScore Connect - + Plugin Creator - + Inspector - + Show OMR Panel - + OmrPanel - + toggle metronome - + Figured Bass - + Next Score - + Previous Score - + Transpose Up - + Transpose Down - + Show master palette - + Master Palette... - - Insert Measure - - - - + Toggle View Mode - + Metronome Metronomoa - + System Text - + Staff Text Pentagramako Testua - + Title Izenburua - + Subtitle Azpi Izenburua - + Composer Konposatzailea - + Chord Name Akorde Izena - + Harmony Properties - + Rehearsal Mark - + Add picture - + Picture - + Player play - + Play - + Start or stop playback - + Player rewind - + Rewind - + Rewind to start position - + Play repeats on/off - + Repeat Errepikatu - + Load style - + Save style - + Transpose Transposizioa egin - + Exchange Voice 1-2 1-2 Ahotsak Trukatu - + Exchange Voice 1-3 1-3 Ahotsak Trukatu - + Exchange Voice 1-4 1-4 Ahotsak Trukatu - + Exchange Voice 2-3 2-3 Ahotsak Trukatu - + Exchange Voice 2-4 2-4 Ahotsak Trukatu - + Exchange Voice 3-4 3-4 Ahotsak Trukatu - + Repeat last command - + Edit score info - + Toggle System Break - + Toggle Page Break - + Toggle Section Break - + Edit Element - + Show Invisible - + Show Frames - + Insert Special Characters... - + Zoom In - + Zoom Out - + Edit text style - + Edit chord style - + Select all similar elements - + All Similar Elements - + Select all similar elements in same staff - + All Similar Elements in Same Staff - + Synthesizer - + Repeat selection - + Documents Side by Side - + Documents Stacked - + Layers - - - next score - - - - - previous score - - articulation - + Bend - + Tremolo Bar @@ -14835,45 +15506,45 @@ p, li { white-space: pre-wrap; } file - - + + error at line %1 column %2: %3 - + internal error: could not open resource musicxml.xsd - + internal error: MusicXML schema is invalid - + error reading container.xml at line %1 column %2: %3 - + can't find rootfile - - + + this is not a valid MusicXML file - + could not open MusicXML file @@ -14890,100 +15561,105 @@ p, li { white-space: pre-wrap; } lines - + Lines - + Slur - + Crescendo - + Diminuendo - + Prima volta Prima volta - + Seconda volta Seconda volta - + Terza volta Terza volta - + Seconda volta 2 Seconda volta 2 - + 8va - + 15ma - + 8vb - + 15mb - - - - + + + + Pedal - + Trill line - + Upprall line - + Downprall line - + Prallprall line - + + Wavy line + + + + Text line - + Line diff --git a/share/locale/mscore_fa.ts b/share/locale/mscore_fa.ts index 03c3d5a2cb4a6..91abcde633e74 100644 --- a/share/locale/mscore_fa.ts +++ b/share/locale/mscore_fa.ts @@ -3,6 +3,14 @@ AboutBox + + About MuseScore + + + + Copy revision number + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -12,17 +20,9 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Support MuseScore with </span><a href="http://www.musescore.org/en/donate"><span style=" font-size:10pt; text-decoration: underline; color:#0000ff;">your donation</span></a></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Arial'; font-size:10pt;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Copyright </span><span style=" font-size:10pt;">©</span><span style=" font-family:'Arial'; font-size:10pt;"> 1999-2009 Werner Schweer and Others. </span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Copyright </span><span style=" font-size:10pt;">©</span><span style=" font-family:'Arial'; font-size:10pt;"> 1999-2012 Werner Schweer and Others. </span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Published under the GNU General Public License</span></p></body></html> - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Visit </span><a href="http://www.musescore.org/"><span style=" font-size:10pt; text-decoration: underline; color:#0000ff;">www.musescore.org</span></a><span style=" font-family:'Arial'; font-size:10pt;"> for new versions and more information.</span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Support MuseScore with </span><a href="http://www.musescore.org/en/donate"><span style=" font-size:10pt; text-decoration: underline; color:#0000ff;">your donation</span></a></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Arial'; font-size:10pt;"></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Copyright </span><span style=" font-size:10pt;">©</span><span style=" font-family:'Arial'; font-size:10pt;"> 1999-2009 Werner Schweer and Others. </span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Published under the GNU General Public License</span></p></body></html> - - - About MuseScore - - - - Copy revision number - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Visit </span><a href="http://www.musescore.org/"><span style=" font-size:10pt; text-decoration: underline; color:#0000ff;">www.musescore.org</span></a><span style=" font-family:'Arial'; font-size:10pt;"> for new versions and more information.</span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Support MuseScore with </span><a href="http://www.musescore.org/en/donate"><span style=" font-size:10pt; text-decoration: underline; color:#0000ff;">your donation</span></a></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Arial'; font-size:10pt;"></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Copyright </span><span style=" font-size:10pt;">©</span><span style=" font-family:'Arial'; font-size:10pt;"> 1999-2009 Werner Schweer and Others. </span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Published under the GNU General Public License</span></p></body></html> {3C?} {4.0/?} {3.?} {40/?} {1"?} {2'?} {8.25p?} {400;?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {10p?} {10p?} {0000f?} {10p?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {10p?} {10p?} {0000f?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {10p?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {10p?} {10p?} {10p?} {1999-2012 ?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {10p?} @@ -46,17 +46,6 @@ p, li { white-space: pre-wrap; } About MusicXML - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; font-size:10pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">MusicXML is an open file format for exchanging digital sheet music,</p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">supported by many applications. MusicXML is copyright © MakeMusic, Inc.</p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">All rights reserved. For more information see: <a href="http://www.makemusic.com/xml.html"><span style=" text-decoration: underline; color:#0000ff;">MakeMusic</span></a></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; text-decoration: underline; color:#0000ff;"></p></body></html> - - The MusicXML Public License: @@ -104,6 +93,17 @@ p, li { white-space: pre-wrap; } <p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p></body></html> + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans Serif'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">MusicXML is an open file format for exchanging digital sheet music,</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">supported by many applications. MusicXML is copyright © MakeMusic, Inc.</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">All rights reserved. For more information, see: <a href="http://www.makemusic.com/musicxml"><span style=" text-decoration: underline; color:#0000ff;">MakeMusic</span></a></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; text-decoration: underline; color:#0000ff;"></p></body></html> + + Accidental @@ -122,30 +122,14 @@ p, li { white-space: pre-wrap; } Album Name: - - album name - - - - remove current score - - Remove Score - - move current score down in list - - Down Down - - move current score up in list - - Up Up @@ -154,18 +138,10 @@ p, li { white-space: pre-wrap; } Add Score - - create new album - - New New - - load an existing album - - Print Album @@ -198,6 +174,30 @@ p, li { white-space: pre-wrap; } MuseScore: Load Album + + Album Name + + + + Remove Current Score + + + + Move Current Score Down in List + + + + Move Current Score Up in List + + + + Create New Album + + + + Load an Existing Album + + ArticulationBase @@ -287,6 +287,14 @@ p, li { white-space: pre-wrap; } BarLine Bar Line + + spanFrom: + + + + spanTo: + + BeamBase @@ -342,6 +350,37 @@ p, li { white-space: pre-wrap; } + + BoxBase + + Form + Form + + + bottomMargin: + + + + topGap: + + + + bottomGap: + + + + leftMargin: + + + + topMargin: + + + + rightMargin: + + + BoxPropertiesBase @@ -1403,6 +1442,22 @@ failed: No. + + 1 + 1 + + + 2 + 2 + + + 3 + 3 + + + 4 + 4 + EditInstrumentBase @@ -2021,6 +2076,10 @@ failed: B -1 + + A 7 + + EditRaster @@ -2049,6 +2108,17 @@ failed: + + EditStaff + + Edit Short Name + + + + Edit Long Name + + + EditStaffBase @@ -2119,10 +2189,6 @@ failed: Type: Type: - - Edit... - - ... @@ -2306,16 +2372,6 @@ failed: Select: - - Guitar (modern) - tablatture type - - - - Bass (modern) - tablature type - - Italian (historic) tablature type @@ -2326,10 +2382,6 @@ failed: tablature type - - Set - - Show Clef @@ -2454,6 +2506,68 @@ failed: Preview Preview + + 6 strings (generic guitar) + tablatture type + + + + 4 strings (generic bass) + tablature type + + + + ukulele + + + + bandurria + + + + Custom + + + + Stem position: + + + + Above + Above + + + Below + + + + Stem style: + + + + Beside staff + + + + Through staff + + + + Half notes: + + + + As short stem + + + + As slashed stem + + + + Show Rests + + EditStringDataBase @@ -2504,6 +2618,14 @@ failed: Chord Chord + + Edit Plain Text + + + + Edit HTML Text + + EditStyleBase @@ -2577,6 +2699,10 @@ spatium unit ---------- spatium unit ---------- +spatium unit +---------- +spatium unit +---------- spatium unit sp @@ -3177,6 +3303,18 @@ p, li { white-space: pre-wrap; } Clef/Key right margin + + Pedal, Trill + + + + Pedal Line + + + + Trill Line + + EditTempoBase @@ -3457,6 +3595,65 @@ spatium unit + + InspectorBarLine + + Staff default + + + + Tick + + + + Tick alt. + + + + Short + + + + Short alt. + + + + Type: + Type: + + + Measure default + + + + Normal + Normal + + + Dashed + Dashed + + + Dotted + + + + Double + + + + End + End + + + Span: + + + + Custom + + + InspectorBeam @@ -3676,6 +3873,57 @@ spatium unit + + InspectorHairpin + + Form + Form + + + Hairpin + Hairpin + + + crescendo + + + + decrescendo + + + + Subtype: + + + + Dynamic Range: + + + + Velo. change: + + + + Staff + Stave + + + Part + + + + SYstem + + + + reset value + + + + ... + + + InspectorImage @@ -3928,6 +4176,37 @@ spatium unit + + InspectorOttava + + Form + Form + + + Ottava + Ottava + + + Subtype: + + + + 8va + 8va + + + 15ma + 15ma + + + 8vb + 8vb + + + 15mb + 15mb + + InspectorRest @@ -3996,6 +4275,41 @@ spatium unit + + InspectorTrill + + Form + Form + + + Trill + + + + Subtype: + + + + trill line + + + + up prall + + + + down prall + + + + prall prall + + + + wavy line + + + InspectorVBox @@ -4054,6 +4368,29 @@ spatium unit + + InspectorVolta + + Form + Form + + + Volta + Time Bar + + + Subtype: + + + + Open + + + + Closed + + + InstrumentDialogBase @@ -4108,24 +4445,24 @@ spatium unit Staves Staves - - visible - visible - Clef Clef - linked + Add Linked Staff - staff linked to previous + Visible + Visible + + + Linked - Add Linked Staff + Staff Linked to Previous @@ -4955,6 +5292,34 @@ Would you like to locate %2 now? -> + + 1 + 1 + + + 2 + 2 + + + 4 + 4 + + + 8 + 8 + + + 16 + 16 + + + 32 + 32 + + + 64 + 64 + MeasuresDialogBase @@ -5194,10 +5559,6 @@ Would you like to locate %2 now? &About &About - - note entry mode - note entry mode - edit mode edit mode @@ -5662,10 +6023,6 @@ Restore session? please choose a different name: - - Cannot read file: %1 error: %2 - - Overture / Score Writer Files <experimental> (*.ove *.scw);; @@ -5955,43 +6312,87 @@ please choose a different name: - Parts were successfully exported + Parts were successfully exported + + + + Continuous View + + + + About &MusicXML + + + + Report a bug + + + + MuseScore: Load Plugin + + + + MuseScore Plugin (*.qml);;All Files (*) + + + + MuseScore: Save Plugin + + + + MuseScore Plugin File (*.qml) + + + + &Plugins + + + + Find + + + + Dotted + + + + Tick 1 - Continuous View + Tick 2 - About &MusicXML + Short 1 - Report a bug + Short 2 - MuseScore: Load Plugin + plop - MuseScore Plugin (*.qml);;All Files (*) + scoop - MuseScore: Save Plugin + NOTE entry mode - MuseScore Plugin File (*.qml) + DRUM entry mode - &Plugins + TAB entry mode - Find + you cannot create an element @@ -6142,14 +6543,6 @@ please choose a different name: note head group note head group - - OnTime: - - - - OffTime: - - invalid invalid @@ -6166,6 +6559,10 @@ please choose a different name: Dot3 + + NoteEvents + + OmrPanel @@ -6758,6 +7155,14 @@ save before closing? Choose Images Directory + + MuseScore Shortcuts + + + + Print Shortcuts + + PrefsDialogBase @@ -7393,6 +7798,10 @@ save before closing? Define Shortcut + + Print + + Properties @@ -8036,26 +8445,6 @@ Sequencer will be disabled. Form Form - - Slur - Slur - - - Slur End - Slur End - - - Staff: - Stave: - - - Voice: - Voice: - - - Tick: - Tick: - SlurPropertyBase @@ -8142,6 +8531,14 @@ Sequencer will be disabled. Form Form + + CHORD + + + + NOTE + + SplitStaff @@ -9008,6 +9405,7 @@ altera Space + spatium unit Space @@ -9042,10 +9440,6 @@ altera frame line width frame line width - - mm - mm - Margin: Margin: @@ -9078,6 +9472,10 @@ altera Background Color: + + sp + sp + TextStyleDialog @@ -9177,6 +9575,10 @@ please choose a different name: unstyled + + align vertical baseline + + TimeDialog @@ -9184,14 +9586,6 @@ please choose a different name: MuseScore: Time Signatures MuseScore: Time Signatures - - 4/4 common time - 4/4 common time - - - 2/2 alla breve - 2/2 alla breve - TimeDialogBase @@ -9353,10 +9747,6 @@ p, li { white-space: pre-wrap; } MuseScore: Transpose MuseScore: Transpose - - Transpose by Key - Transpose by Key - Cb major / Ab minor Cb major / Ab minor @@ -9429,10 +9819,6 @@ p, li { white-space: pre-wrap; } Closest Closest - - Transpose by Interval - Transpose by Interval - Perfect Unison Perfect Unison @@ -9549,6 +9935,50 @@ p, li { white-space: pre-wrap; } Use double sharps and flats + + Transpose Chromatically + + + + By Key + + + + By Interval + + + + Transpose Diatonically + + + + Second + + + + Third + + + + Fourth + + + + Fifth + + + + Sixth + + + + Seventh + + + + Keep degree alterations + + TremoloBarDialog @@ -9777,10 +10207,6 @@ p, li { white-space: pre-wrap; } Save a Copy... - - Reload - - Create new score @@ -10321,14 +10747,6 @@ p, li { white-space: pre-wrap; } Save a copy of the score in addition to the current file - - File reload - - - - Reload score from file - - File close @@ -10721,10 +11139,6 @@ p, li { white-space: pre-wrap; } Page: end - - Add slur - - Crescendo Crescendo @@ -11001,14 +11415,6 @@ p, li { white-space: pre-wrap; } Picture - - Player seek to begin - - - - Player seek to end - - &Transpose... @@ -11193,14 +11599,6 @@ p, li { white-space: pre-wrap; } Diatonic up - - next score - - - - previous score - - Reset user settings @@ -11229,10 +11627,6 @@ p, li { white-space: pre-wrap; } Respell pitches - - Grace: 8nd after - - Pan score while playing on/off @@ -11297,10 +11691,6 @@ p, li { white-space: pre-wrap; } Master Palette... - - Insert Measure - - Toggle View Mode @@ -11469,10 +11859,6 @@ p, li { white-space: pre-wrap; } Save Style... - - Save Style As Default... - - Select All @@ -11545,6 +11931,162 @@ p, li { white-space: pre-wrap; } Plugin Creator + + Slur + Slur + + + Add Slur + + + + Add Crescendo + + + + Grace: 8th after + + + + Play Previous Chord + + + + Play Previous Measure + + + + Play Next Chord + + + + Play Next Measure + + + + Player Seek to Begin + + + + Player Seek to End + + + + Save Style as Default... + + + + String above (TAB) + + + + Select string above (TAB only) + + + + String below (TAB) + + + + Select string below (TAB only) + + + + Fret 0 (TAB) + + + + Add fret 0 on current string (TAB only) + + + + Fret 1 (TAB) + + + + Add fret 1 on current string (TAB only) + + + + Fret 2 (TAB) + + + + Add fret 2 on current string (TAB only) + + + + Fret 3 (TAB) + + + + Add fret 3 on current string (TAB only) + + + + Fret 4 (TAB) + + + + Add fret 4 of current string (TAB only) + + + + Fret 5 (TAB) + + + + Add fret 5 of current string (TAB only) + + + + Fret 6 (TAB) + + + + Add fret 6 of current string (TAB only) + + + + Fret 7 (TAB) + + + + Add fret 7 of current string (TAB only) + + + + Fret 8 (TAB) + + + + Add fret 8 of current string (TAB only) + + + + Fret 9 (TAB) + + + + Add fret 9 of current string (TAB only) + + + + Staff Types... + + + + Staff type editor + + + + Show staff type editor + + + + Note anchored Textline + + articulation @@ -11687,6 +12229,10 @@ p, li { white-space: pre-wrap; } Line Line + + Wavy line + + magTable diff --git a/share/locale/mscore_fi.ts b/share/locale/mscore_fi.ts index de5455c86d4cc..05a0257d0ecd5 100644 --- a/share/locale/mscore_fi.ts +++ b/share/locale/mscore_fi.ts @@ -3,6 +3,14 @@ AboutBox + + About MuseScore + + + + Copy revision number + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -12,9 +20,9 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Support MuseScore with </span><a href="http://www.musescore.org/en/donate"><span style=" font-size:10pt; text-decoration: underline; color:#0000ff;">your donation</span></a></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Arial'; font-size:10pt;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Copyright </span><span style=" font-size:10pt;">©</span><span style=" font-family:'Arial'; font-size:10pt;"> 1999-2009 Werner Schweer and Others. </span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Copyright </span><span style=" font-size:10pt;">©</span><span style=" font-family:'Arial'; font-size:10pt;"> 1999-2012 Werner Schweer and Others. </span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Published under the GNU General Public License</span></p></body></html> - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">line break + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">line break <html><head><meta name="qrichtext" content="1" /><style type="text/css">line break p, li { white-space: pre-wrap; }line break </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;">line break @@ -23,15 +31,7 @@ p, li { white-space: pre-wrap; }line break line break <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Arial'; font-size:10pt;"></p>line break <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Copyright </span><span style=" font-size:10pt;">©</span><span style=" font-family:'Arial'; font-size:10pt;"> 1999-2009 Werner Schweer and Others. </span></p>line break -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Published under the GNU General Public License</span></p></body></html> - - - About MuseScore - - - - Copy revision number - +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Published under the GNU General Public License</span></p></body></html> {3C?} {4.0/?} {3.?} {40/?} {1"?} {2'?} {8.25p?} {400;?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {10p?} {10p?} {0000f?} {10p?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {10p?} {10p?} {0000f?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {10p?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {10p?} {10p?} {10p?} {1999-2012 ?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {10p?} @@ -55,17 +55,6 @@ line break About MusicXML - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; font-size:10pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">MusicXML is an open file format for exchanging digital sheet music,</p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">supported by many applications. MusicXML is copyright © MakeMusic, Inc.</p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">All rights reserved. For more information see: <a href="http://www.makemusic.com/xml.html"><span style=" text-decoration: underline; color:#0000ff;">MakeMusic</span></a></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; text-decoration: underline; color:#0000ff;"></p></body></html> - - The MusicXML Public License: @@ -113,6 +102,17 @@ p, li { white-space: pre-wrap; } <p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p></body></html> + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans Serif'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">MusicXML is an open file format for exchanging digital sheet music,</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">supported by many applications. MusicXML is copyright © MakeMusic, Inc.</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">All rights reserved. For more information, see: <a href="http://www.makemusic.com/musicxml"><span style=" text-decoration: underline; color:#0000ff;">MakeMusic</span></a></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; text-decoration: underline; color:#0000ff;"></p></body></html> + + Accidental @@ -131,30 +131,14 @@ p, li { white-space: pre-wrap; } Album Name: - - album name - - - - remove current score - - Remove Score - - move current score down in list - - Down Alas - - move current score up in list - - Up Ylös @@ -163,18 +147,10 @@ p, li { white-space: pre-wrap; } Add Score - - create new album - - New Uusi - - load an existing album - - Print Album @@ -207,6 +183,30 @@ p, li { white-space: pre-wrap; } MuseScore: Load Album + + Album Name + + + + Remove Current Score + + + + Move Current Score Down in List + + + + Move Current Score Up in List + + + + Create New Album + + + + Load an Existing Album + + ArticulationBase @@ -296,6 +296,14 @@ p, li { white-space: pre-wrap; } BarLine Tahtiviiva + + spanFrom: + + + + spanTo: + + BeamBase @@ -351,6 +359,37 @@ p, li { white-space: pre-wrap; } + + BoxBase + + Form + Muoto + + + bottomMargin: + + + + topGap: + + + + bottomGap: + + + + leftMargin: + + + + topMargin: + + + + rightMargin: + + + BoxPropertiesBase @@ -1412,6 +1451,22 @@ epäonnistui: No. + + 1 + 1 + + + 2 + 2 + + + 3 + 3 + + + 4 + 4 + EditInstrumentBase @@ -2030,6 +2085,10 @@ epäonnistui: B -1 + + A 7 + + EditRaster @@ -2058,6 +2117,17 @@ epäonnistui: + + EditStaff + + Edit Short Name + + + + Edit Long Name + + + EditStaffBase @@ -2128,10 +2198,6 @@ epäonnistui: Type: Tyyppi: - - Edit... - - ... ... @@ -2315,16 +2381,6 @@ epäonnistui: Select: - - Guitar (modern) - tablatture type - - - - Bass (modern) - tablature type - - Italian (historic) tablature type @@ -2335,10 +2391,6 @@ epäonnistui: tablature type - - Set - - Show Clef @@ -2463,6 +2515,68 @@ epäonnistui: Preview Esikatselu + + 6 strings (generic guitar) + tablatture type + + + + 4 strings (generic bass) + tablature type + + + + ukulele + + + + bandurria + + + + Custom + + + + Stem position: + + + + Above + Yllä + + + Below + + + + Stem style: + + + + Beside staff + + + + Through staff + + + + Half notes: + + + + As short stem + + + + As slashed stem + + + + Show Rests + + EditStringDataBase @@ -2513,6 +2627,14 @@ epäonnistui: Chord Soinnussa + + Edit Plain Text + + + + Edit HTML Text + + EditStyleBase @@ -2586,6 +2708,10 @@ spatium unit ---------- spatium unit ---------- +spatium unit +---------- +spatium unit +---------- spatium unit sp @@ -3186,6 +3312,18 @@ p, li { white-space: pre-wrap; } Clef/Key right margin + + Pedal, Trill + + + + Pedal Line + + + + Trill Line + + EditTempoBase @@ -3466,6 +3604,65 @@ spatium unit + + InspectorBarLine + + Staff default + + + + Tick + + + + Tick alt. + + + + Short + + + + Short alt. + + + + Type: + Tyyppi: + + + Measure default + + + + Normal + Normaali + + + Dashed + Katkoviiva + + + Dotted + + + + Double + + + + End + + + + Span: + + + + Custom + + + InspectorBeam @@ -3685,6 +3882,57 @@ spatium unit ... + + InspectorHairpin + + Form + Muoto + + + Hairpin + Dynamiikkaviivat + + + crescendo + + + + decrescendo + + + + Subtype: + + + + Dynamic Range: + + + + Velo. change: + + + + Staff + Viivasto + + + Part + + + + SYstem + + + + reset value + + + + ... + ... + + InspectorImage @@ -3937,6 +4185,37 @@ spatium unit + + InspectorOttava + + Form + Muoto + + + Ottava + Ottava + + + Subtype: + + + + 8va + 8va + + + 15ma + 15ma + + + 8vb + 8vb + + + 15mb + 15mb + + InspectorRest @@ -4005,6 +4284,41 @@ spatium unit + + InspectorTrill + + Form + Muoto + + + Trill + Trilli + + + Subtype: + + + + trill line + + + + up prall + + + + down prall + + + + prall prall + + + + wavy line + + + InspectorVBox @@ -4063,6 +4377,29 @@ spatium unit + + InspectorVolta + + Form + Muoto + + + Volta + Maalit + + + Subtype: + + + + Open + + + + Closed + + + InstrumentDialogBase @@ -4117,24 +4454,24 @@ spatium unit Staves Viivastot - - visible - näkyvä - Clef Nuottiavain - linked + Add Linked Staff - staff linked to previous + Visible + Näkyvä + + + Linked - Add Linked Staff + Staff Linked to Previous @@ -4964,6 +5301,34 @@ Would you like to locate %2 now? -> + + 1 + 1 + + + 2 + 2 + + + 4 + 4 + + + 8 + 8 + + + 16 + 16 + + + 32 + 32 + + + 64 + 64 + MeasuresDialogBase @@ -5203,10 +5568,6 @@ Would you like to locate %2 now? &About &Tietoja - - note entry mode - Nuottien syöttötila - edit mode Muokkaustila @@ -5672,10 +6033,6 @@ Restore session? please choose a different name: - - Cannot read file: %1 error: %2 - - Overture / Score Writer Files <experimental> (*.ove *.scw);; @@ -5961,47 +6318,91 @@ please choose a different name: - MuseScore: Export Parts + MuseScore: Export Parts + + + + Parts were successfully exported + + + + Continuous View + + + + About &MusicXML + + + + Report a bug + + + + MuseScore: Load Plugin + + + + MuseScore Plugin (*.qml);;All Files (*) + + + + MuseScore: Save Plugin + + + + MuseScore Plugin File (*.qml) + + + + &Plugins + + + + Find + + + + Dotted - Parts were successfully exported + Tick 1 - Continuous View + Tick 2 - About &MusicXML + Short 1 - Report a bug + Short 2 - MuseScore: Load Plugin + plop - MuseScore Plugin (*.qml);;All Files (*) + scoop - MuseScore: Save Plugin + NOTE entry mode - MuseScore Plugin File (*.qml) + DRUM entry mode - &Plugins + TAB entry mode - Find + you cannot create an element @@ -6152,14 +6553,6 @@ please choose a different name: note head group nuotin pääryhmä - - OnTime: - OnTime: - - - OffTime: - OffTime: - invalid epäkelpo @@ -6176,6 +6569,10 @@ please choose a different name: Dot3 + + NoteEvents + + OmrPanel @@ -6768,6 +7165,14 @@ save before closing? Choose Images Directory + + MuseScore Shortcuts + + + + Print Shortcuts + + PrefsDialogBase @@ -7403,6 +7808,10 @@ save before closing? Define Shortcut + + Print + + Properties @@ -8049,26 +8458,6 @@ Sequencer will be disabled. Form Muoto - - Slur - Kaari - - - Slur End - Kaaren loppu - - - Staff: - Viivasto: - - - Voice: - Stemmaääni: - - - Tick: - Tick: - SlurPropertyBase @@ -8155,6 +8544,14 @@ Sequencer will be disabled. Form Muoto + + CHORD + + + + NOTE + + SplitStaff @@ -9021,6 +9418,7 @@ altera Space + spatium unit Välilyönti @@ -9055,10 +9453,6 @@ altera frame line width kehyksen viivan leveys - - mm - mm - Margin: Marginaali: @@ -9091,6 +9485,10 @@ altera Background Color: + + sp + sp + TextStyleDialog @@ -9190,6 +9588,10 @@ please choose a different name: unstyled + + align vertical baseline + + TimeDialog @@ -9197,14 +9599,6 @@ please choose a different name: MuseScore: Time Signatures MuseScore: Tahtilajimerkinnät - - 4/4 common time - 4/4 vastaava aika - - - 2/2 alla breve - 2/2 alla breve - TimeDialogBase @@ -9366,10 +9760,6 @@ p, li { white-space: pre-wrap; } MuseScore: Transpose MuseScore: Siirrä sävelkorkeudet uuteen sävellajiin - - Transpose by Key - Siirrä sävelkorkeudet uuteen sävellajiin - Cb major / Ab minor Ces duuri / As molli @@ -9442,10 +9832,6 @@ p, li { white-space: pre-wrap; } Closest - - Transpose by Interval - Siirrä sävelkorkeudet intervallin päähän - Perfect Unison @@ -9562,6 +9948,50 @@ p, li { white-space: pre-wrap; } Use double sharps and flats + + Transpose Chromatically + + + + By Key + + + + By Interval + + + + Transpose Diatonically + + + + Second + + + + Third + + + + Fourth + + + + Fifth + + + + Sixth + + + + Seventh + + + + Keep degree alterations + + TremoloBarDialog @@ -9790,10 +10220,6 @@ p, li { white-space: pre-wrap; } Save a Copy... - - Reload - - Create new score @@ -10334,14 +10760,6 @@ p, li { white-space: pre-wrap; } Save a copy of the score in addition to the current file - - File reload - - - - Reload score from file - - File close @@ -10734,10 +11152,6 @@ p, li { white-space: pre-wrap; } Page: end - - Add slur - - Crescendo Crescendo @@ -11014,14 +11428,6 @@ p, li { white-space: pre-wrap; } Picture - - Player seek to begin - - - - Player seek to end - - &Transpose... @@ -11206,14 +11612,6 @@ p, li { white-space: pre-wrap; } Diatonic up - - next score - - - - previous score - - Reset user settings @@ -11242,10 +11640,6 @@ p, li { white-space: pre-wrap; } Respell pitches - - Grace: 8nd after - - Pan score while playing on/off @@ -11310,10 +11704,6 @@ p, li { white-space: pre-wrap; } Master Palette... - - Insert Measure - - Toggle View Mode @@ -11482,10 +11872,6 @@ p, li { white-space: pre-wrap; } Save Style... - - Save Style As Default... - - Select All @@ -11558,6 +11944,162 @@ p, li { white-space: pre-wrap; } Plugin Creator + + Slur + Kaari + + + Add Slur + + + + Add Crescendo + + + + Grace: 8th after + + + + Play Previous Chord + + + + Play Previous Measure + + + + Play Next Chord + + + + Play Next Measure + + + + Player Seek to Begin + + + + Player Seek to End + + + + Save Style as Default... + + + + String above (TAB) + + + + Select string above (TAB only) + + + + String below (TAB) + + + + Select string below (TAB only) + + + + Fret 0 (TAB) + + + + Add fret 0 on current string (TAB only) + + + + Fret 1 (TAB) + + + + Add fret 1 on current string (TAB only) + + + + Fret 2 (TAB) + + + + Add fret 2 on current string (TAB only) + + + + Fret 3 (TAB) + + + + Add fret 3 on current string (TAB only) + + + + Fret 4 (TAB) + + + + Add fret 4 of current string (TAB only) + + + + Fret 5 (TAB) + + + + Add fret 5 of current string (TAB only) + + + + Fret 6 (TAB) + + + + Add fret 6 of current string (TAB only) + + + + Fret 7 (TAB) + + + + Add fret 7 of current string (TAB only) + + + + Fret 8 (TAB) + + + + Add fret 8 of current string (TAB only) + + + + Fret 9 (TAB) + + + + Add fret 9 of current string (TAB only) + + + + Staff Types... + + + + Staff type editor + + + + Show staff type editor + + + + Note anchored Textline + + articulation @@ -11700,6 +12242,10 @@ p, li { white-space: pre-wrap; } Line Viiva + + Wavy line + + magTable diff --git a/share/locale/mscore_fo.ts b/share/locale/mscore_fo.ts index 03c3d5a2cb4a6..91abcde633e74 100644 --- a/share/locale/mscore_fo.ts +++ b/share/locale/mscore_fo.ts @@ -3,6 +3,14 @@ AboutBox + + About MuseScore + + + + Copy revision number + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -12,17 +20,9 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Support MuseScore with </span><a href="http://www.musescore.org/en/donate"><span style=" font-size:10pt; text-decoration: underline; color:#0000ff;">your donation</span></a></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Arial'; font-size:10pt;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Copyright </span><span style=" font-size:10pt;">©</span><span style=" font-family:'Arial'; font-size:10pt;"> 1999-2009 Werner Schweer and Others. </span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Copyright </span><span style=" font-size:10pt;">©</span><span style=" font-family:'Arial'; font-size:10pt;"> 1999-2012 Werner Schweer and Others. </span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Published under the GNU General Public License</span></p></body></html> - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Visit </span><a href="http://www.musescore.org/"><span style=" font-size:10pt; text-decoration: underline; color:#0000ff;">www.musescore.org</span></a><span style=" font-family:'Arial'; font-size:10pt;"> for new versions and more information.</span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Support MuseScore with </span><a href="http://www.musescore.org/en/donate"><span style=" font-size:10pt; text-decoration: underline; color:#0000ff;">your donation</span></a></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Arial'; font-size:10pt;"></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Copyright </span><span style=" font-size:10pt;">©</span><span style=" font-family:'Arial'; font-size:10pt;"> 1999-2009 Werner Schweer and Others. </span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Published under the GNU General Public License</span></p></body></html> - - - About MuseScore - - - - Copy revision number - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Visit </span><a href="http://www.musescore.org/"><span style=" font-size:10pt; text-decoration: underline; color:#0000ff;">www.musescore.org</span></a><span style=" font-family:'Arial'; font-size:10pt;"> for new versions and more information.</span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Support MuseScore with </span><a href="http://www.musescore.org/en/donate"><span style=" font-size:10pt; text-decoration: underline; color:#0000ff;">your donation</span></a></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Arial'; font-size:10pt;"></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Copyright </span><span style=" font-size:10pt;">©</span><span style=" font-family:'Arial'; font-size:10pt;"> 1999-2009 Werner Schweer and Others. </span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Published under the GNU General Public License</span></p></body></html> {3C?} {4.0/?} {3.?} {40/?} {1"?} {2'?} {8.25p?} {400;?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {10p?} {10p?} {0000f?} {10p?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {10p?} {10p?} {0000f?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {10p?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {10p?} {10p?} {10p?} {1999-2012 ?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {10p?} @@ -46,17 +46,6 @@ p, li { white-space: pre-wrap; } About MusicXML - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; font-size:10pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">MusicXML is an open file format for exchanging digital sheet music,</p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">supported by many applications. MusicXML is copyright © MakeMusic, Inc.</p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">All rights reserved. For more information see: <a href="http://www.makemusic.com/xml.html"><span style=" text-decoration: underline; color:#0000ff;">MakeMusic</span></a></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; text-decoration: underline; color:#0000ff;"></p></body></html> - - The MusicXML Public License: @@ -104,6 +93,17 @@ p, li { white-space: pre-wrap; } <p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p></body></html> + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans Serif'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">MusicXML is an open file format for exchanging digital sheet music,</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">supported by many applications. MusicXML is copyright © MakeMusic, Inc.</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">All rights reserved. For more information, see: <a href="http://www.makemusic.com/musicxml"><span style=" text-decoration: underline; color:#0000ff;">MakeMusic</span></a></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; text-decoration: underline; color:#0000ff;"></p></body></html> + + Accidental @@ -122,30 +122,14 @@ p, li { white-space: pre-wrap; } Album Name: - - album name - - - - remove current score - - Remove Score - - move current score down in list - - Down Down - - move current score up in list - - Up Up @@ -154,18 +138,10 @@ p, li { white-space: pre-wrap; } Add Score - - create new album - - New New - - load an existing album - - Print Album @@ -198,6 +174,30 @@ p, li { white-space: pre-wrap; } MuseScore: Load Album + + Album Name + + + + Remove Current Score + + + + Move Current Score Down in List + + + + Move Current Score Up in List + + + + Create New Album + + + + Load an Existing Album + + ArticulationBase @@ -287,6 +287,14 @@ p, li { white-space: pre-wrap; } BarLine Bar Line + + spanFrom: + + + + spanTo: + + BeamBase @@ -342,6 +350,37 @@ p, li { white-space: pre-wrap; } + + BoxBase + + Form + Form + + + bottomMargin: + + + + topGap: + + + + bottomGap: + + + + leftMargin: + + + + topMargin: + + + + rightMargin: + + + BoxPropertiesBase @@ -1403,6 +1442,22 @@ failed: No. + + 1 + 1 + + + 2 + 2 + + + 3 + 3 + + + 4 + 4 + EditInstrumentBase @@ -2021,6 +2076,10 @@ failed: B -1 + + A 7 + + EditRaster @@ -2049,6 +2108,17 @@ failed: + + EditStaff + + Edit Short Name + + + + Edit Long Name + + + EditStaffBase @@ -2119,10 +2189,6 @@ failed: Type: Type: - - Edit... - - ... @@ -2306,16 +2372,6 @@ failed: Select: - - Guitar (modern) - tablatture type - - - - Bass (modern) - tablature type - - Italian (historic) tablature type @@ -2326,10 +2382,6 @@ failed: tablature type - - Set - - Show Clef @@ -2454,6 +2506,68 @@ failed: Preview Preview + + 6 strings (generic guitar) + tablatture type + + + + 4 strings (generic bass) + tablature type + + + + ukulele + + + + bandurria + + + + Custom + + + + Stem position: + + + + Above + Above + + + Below + + + + Stem style: + + + + Beside staff + + + + Through staff + + + + Half notes: + + + + As short stem + + + + As slashed stem + + + + Show Rests + + EditStringDataBase @@ -2504,6 +2618,14 @@ failed: Chord Chord + + Edit Plain Text + + + + Edit HTML Text + + EditStyleBase @@ -2577,6 +2699,10 @@ spatium unit ---------- spatium unit ---------- +spatium unit +---------- +spatium unit +---------- spatium unit sp @@ -3177,6 +3303,18 @@ p, li { white-space: pre-wrap; } Clef/Key right margin + + Pedal, Trill + + + + Pedal Line + + + + Trill Line + + EditTempoBase @@ -3457,6 +3595,65 @@ spatium unit + + InspectorBarLine + + Staff default + + + + Tick + + + + Tick alt. + + + + Short + + + + Short alt. + + + + Type: + Type: + + + Measure default + + + + Normal + Normal + + + Dashed + Dashed + + + Dotted + + + + Double + + + + End + End + + + Span: + + + + Custom + + + InspectorBeam @@ -3676,6 +3873,57 @@ spatium unit + + InspectorHairpin + + Form + Form + + + Hairpin + Hairpin + + + crescendo + + + + decrescendo + + + + Subtype: + + + + Dynamic Range: + + + + Velo. change: + + + + Staff + Stave + + + Part + + + + SYstem + + + + reset value + + + + ... + + + InspectorImage @@ -3928,6 +4176,37 @@ spatium unit + + InspectorOttava + + Form + Form + + + Ottava + Ottava + + + Subtype: + + + + 8va + 8va + + + 15ma + 15ma + + + 8vb + 8vb + + + 15mb + 15mb + + InspectorRest @@ -3996,6 +4275,41 @@ spatium unit + + InspectorTrill + + Form + Form + + + Trill + + + + Subtype: + + + + trill line + + + + up prall + + + + down prall + + + + prall prall + + + + wavy line + + + InspectorVBox @@ -4054,6 +4368,29 @@ spatium unit + + InspectorVolta + + Form + Form + + + Volta + Time Bar + + + Subtype: + + + + Open + + + + Closed + + + InstrumentDialogBase @@ -4108,24 +4445,24 @@ spatium unit Staves Staves - - visible - visible - Clef Clef - linked + Add Linked Staff - staff linked to previous + Visible + Visible + + + Linked - Add Linked Staff + Staff Linked to Previous @@ -4955,6 +5292,34 @@ Would you like to locate %2 now? -> + + 1 + 1 + + + 2 + 2 + + + 4 + 4 + + + 8 + 8 + + + 16 + 16 + + + 32 + 32 + + + 64 + 64 + MeasuresDialogBase @@ -5194,10 +5559,6 @@ Would you like to locate %2 now? &About &About - - note entry mode - note entry mode - edit mode edit mode @@ -5662,10 +6023,6 @@ Restore session? please choose a different name: - - Cannot read file: %1 error: %2 - - Overture / Score Writer Files <experimental> (*.ove *.scw);; @@ -5955,43 +6312,87 @@ please choose a different name: - Parts were successfully exported + Parts were successfully exported + + + + Continuous View + + + + About &MusicXML + + + + Report a bug + + + + MuseScore: Load Plugin + + + + MuseScore Plugin (*.qml);;All Files (*) + + + + MuseScore: Save Plugin + + + + MuseScore Plugin File (*.qml) + + + + &Plugins + + + + Find + + + + Dotted + + + + Tick 1 - Continuous View + Tick 2 - About &MusicXML + Short 1 - Report a bug + Short 2 - MuseScore: Load Plugin + plop - MuseScore Plugin (*.qml);;All Files (*) + scoop - MuseScore: Save Plugin + NOTE entry mode - MuseScore Plugin File (*.qml) + DRUM entry mode - &Plugins + TAB entry mode - Find + you cannot create an element @@ -6142,14 +6543,6 @@ please choose a different name: note head group note head group - - OnTime: - - - - OffTime: - - invalid invalid @@ -6166,6 +6559,10 @@ please choose a different name: Dot3 + + NoteEvents + + OmrPanel @@ -6758,6 +7155,14 @@ save before closing? Choose Images Directory + + MuseScore Shortcuts + + + + Print Shortcuts + + PrefsDialogBase @@ -7393,6 +7798,10 @@ save before closing? Define Shortcut + + Print + + Properties @@ -8036,26 +8445,6 @@ Sequencer will be disabled. Form Form - - Slur - Slur - - - Slur End - Slur End - - - Staff: - Stave: - - - Voice: - Voice: - - - Tick: - Tick: - SlurPropertyBase @@ -8142,6 +8531,14 @@ Sequencer will be disabled. Form Form + + CHORD + + + + NOTE + + SplitStaff @@ -9008,6 +9405,7 @@ altera Space + spatium unit Space @@ -9042,10 +9440,6 @@ altera frame line width frame line width - - mm - mm - Margin: Margin: @@ -9078,6 +9472,10 @@ altera Background Color: + + sp + sp + TextStyleDialog @@ -9177,6 +9575,10 @@ please choose a different name: unstyled + + align vertical baseline + + TimeDialog @@ -9184,14 +9586,6 @@ please choose a different name: MuseScore: Time Signatures MuseScore: Time Signatures - - 4/4 common time - 4/4 common time - - - 2/2 alla breve - 2/2 alla breve - TimeDialogBase @@ -9353,10 +9747,6 @@ p, li { white-space: pre-wrap; } MuseScore: Transpose MuseScore: Transpose - - Transpose by Key - Transpose by Key - Cb major / Ab minor Cb major / Ab minor @@ -9429,10 +9819,6 @@ p, li { white-space: pre-wrap; } Closest Closest - - Transpose by Interval - Transpose by Interval - Perfect Unison Perfect Unison @@ -9549,6 +9935,50 @@ p, li { white-space: pre-wrap; } Use double sharps and flats + + Transpose Chromatically + + + + By Key + + + + By Interval + + + + Transpose Diatonically + + + + Second + + + + Third + + + + Fourth + + + + Fifth + + + + Sixth + + + + Seventh + + + + Keep degree alterations + + TremoloBarDialog @@ -9777,10 +10207,6 @@ p, li { white-space: pre-wrap; } Save a Copy... - - Reload - - Create new score @@ -10321,14 +10747,6 @@ p, li { white-space: pre-wrap; } Save a copy of the score in addition to the current file - - File reload - - - - Reload score from file - - File close @@ -10721,10 +11139,6 @@ p, li { white-space: pre-wrap; } Page: end - - Add slur - - Crescendo Crescendo @@ -11001,14 +11415,6 @@ p, li { white-space: pre-wrap; } Picture - - Player seek to begin - - - - Player seek to end - - &Transpose... @@ -11193,14 +11599,6 @@ p, li { white-space: pre-wrap; } Diatonic up - - next score - - - - previous score - - Reset user settings @@ -11229,10 +11627,6 @@ p, li { white-space: pre-wrap; } Respell pitches - - Grace: 8nd after - - Pan score while playing on/off @@ -11297,10 +11691,6 @@ p, li { white-space: pre-wrap; } Master Palette... - - Insert Measure - - Toggle View Mode @@ -11469,10 +11859,6 @@ p, li { white-space: pre-wrap; } Save Style... - - Save Style As Default... - - Select All @@ -11545,6 +11931,162 @@ p, li { white-space: pre-wrap; } Plugin Creator + + Slur + Slur + + + Add Slur + + + + Add Crescendo + + + + Grace: 8th after + + + + Play Previous Chord + + + + Play Previous Measure + + + + Play Next Chord + + + + Play Next Measure + + + + Player Seek to Begin + + + + Player Seek to End + + + + Save Style as Default... + + + + String above (TAB) + + + + Select string above (TAB only) + + + + String below (TAB) + + + + Select string below (TAB only) + + + + Fret 0 (TAB) + + + + Add fret 0 on current string (TAB only) + + + + Fret 1 (TAB) + + + + Add fret 1 on current string (TAB only) + + + + Fret 2 (TAB) + + + + Add fret 2 on current string (TAB only) + + + + Fret 3 (TAB) + + + + Add fret 3 on current string (TAB only) + + + + Fret 4 (TAB) + + + + Add fret 4 of current string (TAB only) + + + + Fret 5 (TAB) + + + + Add fret 5 of current string (TAB only) + + + + Fret 6 (TAB) + + + + Add fret 6 of current string (TAB only) + + + + Fret 7 (TAB) + + + + Add fret 7 of current string (TAB only) + + + + Fret 8 (TAB) + + + + Add fret 8 of current string (TAB only) + + + + Fret 9 (TAB) + + + + Add fret 9 of current string (TAB only) + + + + Staff Types... + + + + Staff type editor + + + + Show staff type editor + + + + Note anchored Textline + + articulation @@ -11687,6 +12229,10 @@ p, li { white-space: pre-wrap; } Line Line + + Wavy line + + magTable diff --git a/share/locale/mscore_fr.ts b/share/locale/mscore_fr.ts index 48bc7e3a36fb2..dc627790a5e21 100644 --- a/share/locale/mscore_fr.ts +++ b/share/locale/mscore_fr.ts @@ -3,6 +3,14 @@ AboutBox + + About MuseScore + + + + Copy revision number + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -12,9 +20,9 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Support MuseScore with </span><a href="http://www.musescore.org/en/donate"><span style=" font-size:10pt; text-decoration: underline; color:#0000ff;">your donation</span></a></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Arial'; font-size:10pt;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Copyright </span><span style=" font-size:10pt;">©</span><span style=" font-family:'Arial'; font-size:10pt;"> 1999-2009 Werner Schweer and Others. </span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Copyright </span><span style=" font-size:10pt;">©</span><span style=" font-family:'Arial'; font-size:10pt;"> 1999-2012 Werner Schweer and Others. </span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Published under the GNU General Public License</span></p></body></html> - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> @@ -23,15 +31,7 @@ p, li { white-space: pre-wrap; } <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Arial'; font-size:10pt;"></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Copyright </span><span style=" font-size:10pt;">©</span><span style=" font-family:'Arial'; font-size:10pt;"> 1999-2009 Werner Schweer et autres Contributeurs. </span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Publié sous GNU General Public License</span></p></body></html> - - - About MuseScore - - - - Copy revision number - +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Publié sous GNU General Public License</span></p></body></html> {3C?} {4.0/?} {3.?} {40/?} {1"?} {2'?} {8.25p?} {400;?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {10p?} {10p?} {0000f?} {10p?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {10p?} {10p?} {0000f?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {10p?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {10p?} {10p?} {10p?} {1999-2012 ?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {10p?} @@ -55,17 +55,6 @@ p, li { white-space: pre-wrap; } About MusicXML - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; font-size:10pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">MusicXML is an open file format for exchanging digital sheet music,</p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">supported by many applications. MusicXML is copyright © MakeMusic, Inc.</p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">All rights reserved. For more information see: <a href="http://www.makemusic.com/xml.html"><span style=" text-decoration: underline; color:#0000ff;">MakeMusic</span></a></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; text-decoration: underline; color:#0000ff;"></p></body></html> - - The MusicXML Public License: @@ -113,6 +102,17 @@ p, li { white-space: pre-wrap; } <p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p></body></html> + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans Serif'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">MusicXML is an open file format for exchanging digital sheet music,</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">supported by many applications. MusicXML is copyright © MakeMusic, Inc.</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">All rights reserved. For more information, see: <a href="http://www.makemusic.com/musicxml"><span style=" text-decoration: underline; color:#0000ff;">MakeMusic</span></a></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; text-decoration: underline; color:#0000ff;"></p></body></html> + + Accidental @@ -132,79 +132,79 @@ p, li { white-space: pre-wrap; } - album name + Remove Score - remove current score + Down - Remove Score + Up - move current score down in list + Add Score - Down - + New + Nouveau - move current score up in list + Print Album - Up + MuseScore Album Files (*.album);; - Add Score + All Files (*) - create new album + MuseScore Files (*.mscz *.mscx *.msc);; - New - Nouveau + Join Scores + - load an existing album - + Load + Charger - Print Album + MuseScore: Add Score - MuseScore Album Files (*.album);; + MuseScore: Load Album - All Files (*) + Album Name - MuseScore Files (*.mscz *.mscx *.msc);; + Remove Current Score - Join Scores + Move Current Score Down in List - Load - Charger + Move Current Score Up in List + - MuseScore: Add Score + Create New Album - MuseScore: Load Album + Load an Existing Album @@ -296,6 +296,14 @@ p, li { white-space: pre-wrap; } BarLine Barre de mesure + + spanFrom: + + + + spanTo: + + BeamBase @@ -351,6 +359,37 @@ p, li { white-space: pre-wrap; } + + BoxBase + + Form + + + + bottomMargin: + + + + topGap: + + + + bottomGap: + + + + leftMargin: + + + + topMargin: + + + + rightMargin: + + + BoxPropertiesBase @@ -1412,6 +1451,22 @@ failed: No. + + 1 + 1 + + + 2 + 2 + + + 3 + 3 + + + 4 + 4 + EditInstrumentBase @@ -2030,6 +2085,10 @@ failed: B -1 + + A 7 + + EditRaster @@ -2058,6 +2117,17 @@ failed: + + EditStaff + + Edit Short Name + + + + Edit Long Name + + + EditStaffBase @@ -2128,10 +2198,6 @@ failed: Type: Type : - - Edit... - - ... ... @@ -2315,16 +2381,6 @@ failed: Select: - - Guitar (modern) - tablatture type - - - - Bass (modern) - tablature type - - Italian (historic) tablature type @@ -2335,10 +2391,6 @@ failed: tablature type - - Set - - Show Clef @@ -2463,6 +2515,68 @@ failed: Preview Aperçu + + 6 strings (generic guitar) + tablatture type + + + + 4 strings (generic bass) + tablature type + + + + ukulele + + + + bandurria + + + + Custom + + + + Stem position: + + + + Above + Au dessus + + + Below + + + + Stem style: + + + + Beside staff + + + + Through staff + + + + Half notes: + + + + As short stem + + + + As slashed stem + + + + Show Rests + + EditStringDataBase @@ -2513,6 +2627,14 @@ failed: Chord Accord + + Edit Plain Text + + + + Edit HTML Text + + EditStyleBase @@ -2578,6 +2700,10 @@ spatium unit ---------- spatium unit ---------- +spatium unit +---------- +spatium unit +---------- spatium unit esp. @@ -3186,6 +3312,18 @@ p, li { white-space: pre-wrap; } Clef/Key right margin + + Pedal, Trill + + + + Pedal Line + + + + Trill Line + + EditTempoBase @@ -3466,6 +3604,65 @@ spatium unit + + InspectorBarLine + + Staff default + + + + Tick + + + + Tick alt. + + + + Short + + + + Short alt. + + + + Type: + Type : + + + Measure default + + + + Normal + Normal + + + Dashed + Pointillé + + + Dotted + + + + Double + + + + End + Fin + + + Span: + + + + Custom + + + InspectorBeam @@ -3685,6 +3882,57 @@ spatium unit ... + + InspectorHairpin + + Form + + + + Hairpin + Crescendo / Decrescendo + + + crescendo + + + + decrescendo + + + + Subtype: + + + + Dynamic Range: + + + + Velo. change: + + + + Staff + Portée + + + Part + + + + SYstem + + + + reset value + + + + ... + ... + + InspectorImage @@ -3937,6 +4185,37 @@ spatium unit + + InspectorOttava + + Form + + + + Ottava + Octava + + + Subtype: + + + + 8va + Ottava Alta + + + 15ma + Quintadecima Alta + + + 8vb + Ottava Bassa + + + 15mb + Quintadecima Bassa + + InspectorRest @@ -4005,6 +4284,41 @@ spatium unit + + InspectorTrill + + Form + + + + Trill + Trille + + + Subtype: + + + + trill line + + + + up prall + + + + down prall + + + + prall prall + + + + wavy line + + + InspectorVBox @@ -4063,6 +4377,29 @@ spatium unit + + InspectorVolta + + Form + + + + Volta + Reprise + + + Subtype: + + + + Open + + + + Closed + + + InstrumentDialogBase @@ -4117,24 +4454,24 @@ spatium unit Staves Portées - - visible - visible - Clef Clef - linked + Add Linked Staff - staff linked to previous + Visible + Visible + + + Linked - Add Linked Staff + Staff Linked to Previous @@ -4964,6 +5301,34 @@ Would you like to locate %2 now? -> + + 1 + 1 + + + 2 + 2 + + + 4 + 4 + + + 8 + 8 + + + 16 + 16 + + + 32 + 32 + + + 64 + 64 + MeasuresDialogBase @@ -5195,10 +5560,6 @@ Would you like to locate %2 now? &About &A Propos - - note entry mode - Mode saisie des notes - edit mode Mode édition @@ -5674,10 +6035,6 @@ Restaurer la session? please choose a different name: - - Cannot read file: %1 error: %2 - - Overture / Score Writer Files <experimental> (*.ove *.scw);; @@ -5955,55 +6312,99 @@ please choose a different name: - Delete Profile + Delete Profile + + + + LilyPond Format (*.ly) + + + + MuseScore: Export Parts + + + + Parts were successfully exported + + + + Continuous View + + + + About &MusicXML + + + + Report a bug + + + + MuseScore: Load Plugin + + + + MuseScore Plugin (*.qml);;All Files (*) + + + + MuseScore: Save Plugin + + + + MuseScore Plugin File (*.qml) + + + + &Plugins - LilyPond Format (*.ly) + Find - MuseScore: Export Parts + Dotted - Parts were successfully exported + Tick 1 - Continuous View + Tick 2 - About &MusicXML + Short 1 - Report a bug + Short 2 - MuseScore: Load Plugin + plop - MuseScore Plugin (*.qml);;All Files (*) + scoop - MuseScore: Save Plugin + NOTE entry mode - MuseScore Plugin File (*.qml) + DRUM entry mode - &Plugins + TAB entry mode - Find + you cannot create an element @@ -6154,14 +6555,6 @@ please choose a different name: note head group groupe de la tête de note - - OnTime: - OnTime: - - - OffTime: - OffTime: - invalid invalide @@ -6178,6 +6571,10 @@ please choose a different name: Dot3 + + NoteEvents + + OmrPanel @@ -6771,6 +7168,14 @@ save before closing? Choose Images Directory + + MuseScore Shortcuts + + + + Print Shortcuts + + PrefsDialogBase @@ -7406,6 +7811,10 @@ save before closing? Define Shortcut + + Print + Imprimer + Properties @@ -8052,26 +8461,6 @@ Le séquenceur sera inactif Form Formulaire - - Slur - Liaison - - - Slur End - Fin de la liaison - - - Staff: - Portée : - - - Voice: - Voix : - - - Tick: - Cran : - SlurPropertyBase @@ -8158,6 +8547,14 @@ Le séquenceur sera inactif Form + + CHORD + + + + NOTE + + SplitStaff @@ -9024,6 +9421,7 @@ altera Space + spatium unit Espace @@ -9058,10 +9456,6 @@ altera frame line width largeur des lignes du cadre - - mm - mm - Margin: Marge : @@ -9094,6 +9488,10 @@ altera Background Color: + + sp + + TextStyleDialog @@ -9193,6 +9591,10 @@ please choose a different name: unstyled + + align vertical baseline + + TimeDialog @@ -9200,14 +9602,6 @@ please choose a different name: MuseScore: Time Signatures MuseScore: Indications de Mesures - - 4/4 common time - 4/4 - - - 2/2 alla breve - 2/2 à la brève - TimeDialogBase @@ -9369,10 +9763,6 @@ p, li { white-space: pre-wrap; } MuseScore: Transpose MuseScore: Transposer - - Transpose by Key - Transposer par tonalité - Cb major / Ab minor Do♭ majeur / La♭ mineur @@ -9445,10 +9835,6 @@ p, li { white-space: pre-wrap; } Closest Au plus près - - Transpose by Interval - Transposer par intervalle - Perfect Unison Unisson juste @@ -9565,6 +9951,50 @@ p, li { white-space: pre-wrap; } Use double sharps and flats Utiliser des double dièses et bémols + + Transpose Chromatically + + + + By Key + + + + By Interval + + + + Transpose Diatonically + + + + Second + + + + Third + + + + Fourth + + + + Fifth + + + + Sixth + + + + Seventh + + + + Keep degree alterations + + TremoloBarDialog @@ -9793,10 +10223,6 @@ p, li { white-space: pre-wrap; } Save a Copy... Enregistrer une copie... - - Reload - Recharger - Create new score Créer une nouvelle partition @@ -10337,14 +10763,6 @@ p, li { white-space: pre-wrap; } Save a copy of the score in addition to the current file Enregistrer une copie de la partition en plus du fichier actuel - - File reload - Recharger - - - Reload score from file - Recharger la partition depuis le fichier - File close Fermer le fichier @@ -10737,10 +11155,6 @@ p, li { white-space: pre-wrap; } Page: end - - Add slur - - Crescendo Crescendo @@ -11017,14 +11431,6 @@ p, li { white-space: pre-wrap; } Picture - - Player seek to begin - - - - Player seek to end - - &Transpose... @@ -11209,14 +11615,6 @@ p, li { white-space: pre-wrap; } Diatonic up - - next score - - - - previous score - - Reset user settings @@ -11245,10 +11643,6 @@ p, li { white-space: pre-wrap; } Respell pitches - - Grace: 8nd after - - Pan score while playing on/off @@ -11313,10 +11707,6 @@ p, li { white-space: pre-wrap; } Master Palette... - - Insert Measure - - Toggle View Mode @@ -11485,10 +11875,6 @@ p, li { white-space: pre-wrap; } Save Style... - - Save Style As Default... - - Select All @@ -11561,6 +11947,162 @@ p, li { white-space: pre-wrap; } Plugin Creator + + Slur + Liaison + + + Add Slur + + + + Add Crescendo + + + + Grace: 8th after + + + + Play Previous Chord + + + + Play Previous Measure + + + + Play Next Chord + + + + Play Next Measure + + + + Player Seek to Begin + + + + Player Seek to End + + + + Save Style as Default... + + + + String above (TAB) + + + + Select string above (TAB only) + + + + String below (TAB) + + + + Select string below (TAB only) + + + + Fret 0 (TAB) + + + + Add fret 0 on current string (TAB only) + + + + Fret 1 (TAB) + + + + Add fret 1 on current string (TAB only) + + + + Fret 2 (TAB) + + + + Add fret 2 on current string (TAB only) + + + + Fret 3 (TAB) + + + + Add fret 3 on current string (TAB only) + + + + Fret 4 (TAB) + + + + Add fret 4 of current string (TAB only) + + + + Fret 5 (TAB) + + + + Add fret 5 of current string (TAB only) + + + + Fret 6 (TAB) + + + + Add fret 6 of current string (TAB only) + + + + Fret 7 (TAB) + + + + Add fret 7 of current string (TAB only) + + + + Fret 8 (TAB) + + + + Add fret 8 of current string (TAB only) + + + + Fret 9 (TAB) + + + + Add fret 9 of current string (TAB only) + + + + Staff Types... + + + + Staff type editor + + + + Show staff type editor + + + + Note anchored Textline + + articulation @@ -11703,6 +12245,10 @@ p, li { white-space: pre-wrap; } Line Ligne + + Wavy line + + magTable diff --git a/share/locale/mscore_gl.ts b/share/locale/mscore_gl.ts index abf24e5b1fd3b..756a33f6e5a0d 100644 --- a/share/locale/mscore_gl.ts +++ b/share/locale/mscore_gl.ts @@ -3,6 +3,14 @@ AboutBox + + About MuseScore + + + + Copy revision number + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -12,9 +20,9 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Support MuseScore with </span><a href="http://www.musescore.org/en/donate"><span style=" font-size:10pt; text-decoration: underline; color:#0000ff;">your donation</span></a></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Arial'; font-size:10pt;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Copyright </span><span style=" font-size:10pt;">©</span><span style=" font-family:'Arial'; font-size:10pt;"> 1999-2009 Werner Schweer and Others. </span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Copyright </span><span style=" font-size:10pt;">©</span><span style=" font-family:'Arial'; font-size:10pt;"> 1999-2012 Werner Schweer and Others. </span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Published under the GNU General Public License</span></p></body></html> - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> @@ -23,15 +31,7 @@ p, li { white-space: pre-wrap; } <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Arial'; font-size:10pt;"></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Copyright </span><span style=" font-size:10pt;">©</span><span style=" font-family:'Arial'; font-size:10pt;"> 1999-2009 Werner Schweer e Outros. </span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Publicado baixo a Licenza Pública Xeral de GNU</span></p></body></html> - - - About MuseScore - - - - Copy revision number - +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Publicado baixo a Licenza Pública Xeral de GNU</span></p></body></html> {3C?} {4.0/?} {3.?} {40/?} {1"?} {2'?} {8.25p?} {400;?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {10p?} {10p?} {0000f?} {10p?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {10p?} {10p?} {0000f?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {10p?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {10p?} {10p?} {10p?} {1999-2012 ?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {10p?} @@ -55,17 +55,6 @@ p, li { white-space: pre-wrap; } About MusicXML - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; font-size:10pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">MusicXML is an open file format for exchanging digital sheet music,</p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">supported by many applications. MusicXML is copyright © MakeMusic, Inc.</p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">All rights reserved. For more information see: <a href="http://www.makemusic.com/xml.html"><span style=" text-decoration: underline; color:#0000ff;">MakeMusic</span></a></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; text-decoration: underline; color:#0000ff;"></p></body></html> - - The MusicXML Public License: @@ -113,6 +102,17 @@ p, li { white-space: pre-wrap; } <p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p></body></html> + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans Serif'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">MusicXML is an open file format for exchanging digital sheet music,</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">supported by many applications. MusicXML is copyright © MakeMusic, Inc.</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">All rights reserved. For more information, see: <a href="http://www.makemusic.com/musicxml"><span style=" text-decoration: underline; color:#0000ff;">MakeMusic</span></a></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; text-decoration: underline; color:#0000ff;"></p></body></html> + + Accidental @@ -131,30 +131,14 @@ p, li { white-space: pre-wrap; } Album Name: - - album name - - - - remove current score - - Remove Score - - move current score down in list - - Down Abaixo - - move current score up in list - - Up @@ -163,18 +147,10 @@ p, li { white-space: pre-wrap; } Add Score - - create new album - - New Nova - - load an existing album - - Print Album @@ -207,6 +183,30 @@ p, li { white-space: pre-wrap; } MuseScore: Load Album + + Album Name + + + + Remove Current Score + + + + Move Current Score Down in List + + + + Move Current Score Up in List + + + + Create New Album + + + + Load an Existing Album + + ArticulationBase @@ -296,6 +296,14 @@ p, li { white-space: pre-wrap; } BarLine BarraDivisoria + + spanFrom: + + + + spanTo: + + BeamBase @@ -351,6 +359,37 @@ p, li { white-space: pre-wrap; } + + BoxBase + + Form + Formulario + + + bottomMargin: + + + + topGap: + + + + bottomGap: + + + + leftMargin: + + + + topMargin: + + + + rightMargin: + + + BoxPropertiesBase @@ -1412,6 +1451,22 @@ fallou: No. + + 1 + 1 + + + 2 + 2 + + + 3 + 3 + + + 4 + 4 + EditInstrumentBase @@ -2030,6 +2085,10 @@ fallou: B -1 + + A 7 + + EditRaster @@ -2058,6 +2117,17 @@ fallou: + + EditStaff + + Edit Short Name + + + + Edit Long Name + + + EditStaffBase @@ -2128,10 +2198,6 @@ fallou: Type: Tipo: - - Edit... - - ... ... @@ -2315,16 +2381,6 @@ fallou: Select: - - Guitar (modern) - tablatture type - - - - Bass (modern) - tablature type - - Italian (historic) tablature type @@ -2335,10 +2391,6 @@ fallou: tablature type - - Set - - Show Clef @@ -2463,6 +2515,68 @@ fallou: Preview Vista previa + + 6 strings (generic guitar) + tablatture type + + + + 4 strings (generic bass) + tablature type + + + + ukulele + + + + bandurria + + + + Custom + + + + Stem position: + + + + Above + Arriba + + + Below + + + + Stem style: + + + + Beside staff + + + + Through staff + + + + Half notes: + + + + As short stem + + + + As slashed stem + + + + Show Rests + + EditStringDataBase @@ -2513,6 +2627,14 @@ fallou: Chord Acorde + + Edit Plain Text + + + + Edit HTML Text + + EditStyleBase @@ -2594,6 +2716,10 @@ spatium unit ---------- spatium unit ---------- +spatium unit +---------- +spatium unit +---------- spatium unit sp @@ -3186,6 +3312,18 @@ p, li { white-space: pre-wrap; } Clef/Key right margin + + Pedal, Trill + + + + Pedal Line + + + + Trill Line + + EditTempoBase @@ -3466,6 +3604,65 @@ spatium unit + + InspectorBarLine + + Staff default + + + + Tick + + + + Tick alt. + + + + Short + + + + Short alt. + + + + Type: + Tipo: + + + Measure default + + + + Normal + Normal + + + Dashed + Discontínua + + + Dotted + + + + Double + + + + End + + + + Span: + + + + Custom + + + InspectorBeam @@ -3685,6 +3882,57 @@ spatium unit ... + + InspectorHairpin + + Form + Formulario + + + Hairpin + Variación de intensidade + + + crescendo + + + + decrescendo + + + + Subtype: + + + + Dynamic Range: + + + + Velo. change: + + + + Staff + Pentagrama + + + Part + + + + SYstem + + + + reset value + + + + ... + ... + + InspectorImage @@ -3937,6 +4185,37 @@ spatium unit + + InspectorOttava + + Form + Formulario + + + Ottava + Oitava + + + Subtype: + + + + 8va + Ottava alta + + + 15ma + Quindicesima alta + + + 8vb + Ottava bassa + + + 15mb + Quindicesima bassa + + InspectorRest @@ -4005,6 +4284,41 @@ spatium unit + + InspectorTrill + + Form + Formulario + + + Trill + Trino + + + Subtype: + + + + trill line + + + + up prall + + + + down prall + + + + prall prall + + + + wavy line + + + InspectorVBox @@ -4063,6 +4377,29 @@ spatium unit + + InspectorVolta + + Form + Formulario + + + Volta + Volta + + + Subtype: + + + + Open + + + + Closed + + + InstrumentDialogBase @@ -4117,24 +4454,24 @@ spatium unit Staves Pentagramas - - visible - visíbel - Clef Clave - linked + Add Linked Staff - staff linked to previous + Visible + Visíbel + + + Linked - Add Linked Staff + Staff Linked to Previous @@ -4964,6 +5301,34 @@ Would you like to locate %2 now? -> + + 1 + 1 + + + 2 + 2 + + + 4 + 4 + + + 8 + 8 + + + 16 + 16 + + + 32 + 32 + + + 64 + 64 + MeasuresDialogBase @@ -5139,10 +5504,6 @@ Would you like to locate %2 now? &About &Acerca de - - note entry mode - modo de introdución de notas - edit mode modificar o modo @@ -5674,10 +6035,6 @@ Restaurar a sesión? please choose a different name: - - Cannot read file: %1 error: %2 - - Overture / Score Writer Files <experimental> (*.ove *.scw);; @@ -5955,55 +6312,99 @@ please choose a different name: - Delete Profile + Delete Profile + + + + LilyPond Format (*.ly) + + + + MuseScore: Export Parts + + + + Parts were successfully exported + + + + Continuous View + + + + About &MusicXML + + + + Report a bug + + + + MuseScore: Load Plugin + + + + MuseScore Plugin (*.qml);;All Files (*) + + + + MuseScore: Save Plugin + + + + MuseScore Plugin File (*.qml) + + + + &Plugins - LilyPond Format (*.ly) + Find - MuseScore: Export Parts + Dotted - Parts were successfully exported + Tick 1 - Continuous View + Tick 2 - About &MusicXML + Short 1 - Report a bug + Short 2 - MuseScore: Load Plugin + plop - MuseScore Plugin (*.qml);;All Files (*) + scoop - MuseScore: Save Plugin + NOTE entry mode - MuseScore Plugin File (*.qml) + DRUM entry mode - &Plugins + TAB entry mode - Find + you cannot create an element @@ -6154,14 +6555,6 @@ please choose a different name: note head group grupo de cabezas - - OnTime: - NoTempo: - - - OffTime: - FóraDoTempo: - invalid non válido @@ -6178,6 +6571,10 @@ please choose a different name: Dot3 + + NoteEvents + + OmrPanel @@ -6770,6 +7167,14 @@ save before closing? Choose Images Directory + + MuseScore Shortcuts + + + + Print Shortcuts + + PrefsDialogBase @@ -7405,6 +7810,10 @@ save before closing? Define Shortcut + + Print + Imprimir + Properties @@ -8052,26 +8461,6 @@ Desactívase o secuenciador. Form Formulario - - Slur - Ligadura de expresión - - - Slur End - Fin da ligadura - - - Staff: - Pentagrama: - - - Voice: - Voz: - - - Tick: - Pulso: - SlurPropertyBase @@ -8158,6 +8547,14 @@ Desactívase o secuenciador. Form Formulario + + CHORD + + + + NOTE + + SplitStaff @@ -9024,6 +9421,7 @@ altera Space + spatium unit Espazo @@ -9058,10 +9456,6 @@ altera frame line width anchura da liña da moldura - - mm - mm - Margin: Marxe: @@ -9094,6 +9488,10 @@ altera Background Color: + + sp + sp + TextStyleDialog @@ -9193,6 +9591,10 @@ please choose a different name: unstyled + + align vertical baseline + + TimeDialog @@ -9200,14 +9602,6 @@ please choose a different name: MuseScore: Time Signatures Musescore: Marcas de tempo - - 4/4 common time - 4/4 compasillo - - - 2/2 alla breve - 2/2 alla breve - TimeDialogBase @@ -9366,10 +9760,6 @@ p, li { white-space: pre-wrap; } MuseScore: Transpose Musescore: Transpor - - Transpose by Key - Transpor pola armadura - Cb major / Ab minor Si b maior / La b menor @@ -9442,10 +9832,6 @@ p, li { white-space: pre-wrap; } Closest A máis próxima - - Transpose by Interval - Transpor por intervalo - Perfect Unison Unísono xusto @@ -9562,6 +9948,50 @@ p, li { white-space: pre-wrap; } Use double sharps and flats Empregar dobres sostenidos e bemoles + + Transpose Chromatically + + + + By Key + + + + By Interval + + + + Transpose Diatonically + + + + Second + + + + Third + + + + Fourth + + + + Fifth + + + + Sixth + + + + Seventh + + + + Keep degree alterations + + TremoloBarDialog @@ -9790,10 +10220,6 @@ p, li { white-space: pre-wrap; } Save a Copy... Gardar unha copia... - - Reload - Cargar de novo - Create new score Crear unha partitura nova @@ -10334,14 +10760,6 @@ p, li { white-space: pre-wrap; } Save a copy of the score in addition to the current file Gravar unha copia da partitura a parte do ficheiro actual - - File reload - Volver a cargar o ficheiro - - - Reload score from file - Volver a cargar a partitura desde o ficheiro - File close Fechar o ficheiro @@ -10734,10 +11152,6 @@ p, li { white-space: pre-wrap; } Page: end - - Add slur - - Crescendo Crescendo @@ -11014,14 +11428,6 @@ p, li { white-space: pre-wrap; } Picture - - Player seek to begin - - - - Player seek to end - - &Transpose... @@ -11206,14 +11612,6 @@ p, li { white-space: pre-wrap; } Diatonic up - - next score - - - - previous score - - Reset user settings @@ -11242,10 +11640,6 @@ p, li { white-space: pre-wrap; } Respell pitches - - Grace: 8nd after - - Pan score while playing on/off @@ -11310,10 +11704,6 @@ p, li { white-space: pre-wrap; } Master Palette... - - Insert Measure - - Toggle View Mode @@ -11482,10 +11872,6 @@ p, li { white-space: pre-wrap; } Save Style... - - Save Style As Default... - - Select All @@ -11558,6 +11944,162 @@ p, li { white-space: pre-wrap; } Plugin Creator + + Slur + Ligadura de expresión + + + Add Slur + + + + Add Crescendo + + + + Grace: 8th after + + + + Play Previous Chord + + + + Play Previous Measure + + + + Play Next Chord + + + + Play Next Measure + + + + Player Seek to Begin + + + + Player Seek to End + + + + Save Style as Default... + + + + String above (TAB) + + + + Select string above (TAB only) + + + + String below (TAB) + + + + Select string below (TAB only) + + + + Fret 0 (TAB) + + + + Add fret 0 on current string (TAB only) + + + + Fret 1 (TAB) + + + + Add fret 1 on current string (TAB only) + + + + Fret 2 (TAB) + + + + Add fret 2 on current string (TAB only) + + + + Fret 3 (TAB) + + + + Add fret 3 on current string (TAB only) + + + + Fret 4 (TAB) + + + + Add fret 4 of current string (TAB only) + + + + Fret 5 (TAB) + + + + Add fret 5 of current string (TAB only) + + + + Fret 6 (TAB) + + + + Add fret 6 of current string (TAB only) + + + + Fret 7 (TAB) + + + + Add fret 7 of current string (TAB only) + + + + Fret 8 (TAB) + + + + Add fret 8 of current string (TAB only) + + + + Fret 9 (TAB) + + + + Add fret 9 of current string (TAB only) + + + + Staff Types... + + + + Staff type editor + + + + Show staff type editor + + + + Note anchored Textline + + articulation @@ -11700,6 +12242,10 @@ p, li { white-space: pre-wrap; } Line Liña + + Wavy line + + magTable diff --git a/share/locale/mscore_he.ts b/share/locale/mscore_he.ts index 92d569cac520a..a50f4d92e7c83 100644 --- a/share/locale/mscore_he.ts +++ b/share/locale/mscore_he.ts @@ -23,7 +23,7 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Support MuseScore with </span><a href="http://www.musescore.org/en/donate"><span style=" font-size:10pt; text-decoration: underline; color:#0000ff;">your donation</span></a></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Arial'; font-size:10pt;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Copyright </span><span style=" font-size:10pt;">©</span><span style=" font-family:'Arial'; font-size:10pt;"> 1999-2009 Werner Schweer and Others. </span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Copyright </span><span style=" font-size:10pt;">©</span><span style=" font-family:'Arial'; font-size:10pt;"> 1999-2012 Werner Schweer and Others. </span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Published under the GNU General Public License</span></p></body></html> @@ -31,17 +31,17 @@ p, li { white-space: pre-wrap; } AboutBoxDialog - + Unstable Prerelease for Version: - + Version: גרסה - + Revision: %1 @@ -61,7 +61,7 @@ p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'Sans Serif'; font-size:10pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">MusicXML is an open file format for exchanging digital sheet music,</p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">supported by many applications. MusicXML is copyright © MakeMusic, Inc.</p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">All rights reserved. For more information see: <a href="http://www.makemusic.com/xml.html"><span style=" text-decoration: underline; color:#0000ff;">MakeMusic</span></a></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">All rights reserved. For more information, see: <a href="http://www.makemusic.com/musicxml"><span style=" text-decoration: underline; color:#0000ff;">MakeMusic</span></a></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; text-decoration: underline; color:#0000ff;"></p></body></html> @@ -137,57 +137,57 @@ p, li { white-space: pre-wrap; } - album name + Album Name - remove current score + Remove Current Score - - Remove Score + + Move Current Score Down in List - - move current score down in list + + Move Current Score Up in List - - Down + + Create New Album - - move current score up in list + + Load an Existing Album - - Up + + Remove Score - - Add Score + + Down - - create new album + + Up - - New + + Add Score - - load an existing album + + New @@ -206,28 +206,28 @@ p, li { white-space: pre-wrap; } - + MuseScore Album Files (*.album);; - - + + All Files (*) - + MuseScore Files (*.mscz *.mscx *.msc);; - + MuseScore: Add Score - + MuseScore: Load Album @@ -340,6 +340,16 @@ p, li { white-space: pre-wrap; } BarLine + + + spanFrom: + + + + + spanTo: + + BeamBase @@ -407,6 +417,44 @@ p, li { white-space: pre-wrap; } + + BoxBase + + + Form + + + + + bottomMargin: + + + + + topGap: + + + + + bottomGap: + + + + + leftMargin: + + + + + topMargin: + + + + + rightMargin: + + + BoxPropertiesBase @@ -497,17 +545,17 @@ spatium unit - + Arpeggio - + Tremolo - + Glissando @@ -1455,12 +1503,12 @@ spatium unit - + Hide courtesy clef - + Show courtesy clef @@ -1603,29 +1651,29 @@ spatium unit - + Open File - + failed: - + MuseScore: Open File - + Write File failed: - + MuseScore: Write Drumset @@ -1658,7 +1706,7 @@ failed: - + Note Head: @@ -1693,47 +1741,67 @@ failed: - + + 1 + + + + + 2 + + + + + 3 + + + + + 4 + + + + Shortcut: - + A - + B - + C - + D - + E - + F - + G - + -- @@ -1975,7 +2043,6 @@ failed: - A 8 @@ -2034,6 +2101,11 @@ failed: Ab 7 + + + A 7 + + Bb 7 @@ -2560,6 +2632,19 @@ failed: + + EditStaff + + + Edit Short Name + + + + + Edit Long Name + + + EditStaffBase @@ -2588,228 +2673,223 @@ failed: - - Edit... - - - - + Part Properties - + Instrument: - + Change Instrument... - + Part Name: - + Long Instrument Name: - + Short Instrument Name: + - - - - - + + + + ... - + Usable Pitch Range: - + Amateur: - - + + - - + Professional: - + Play Transposition: - + 0 - Perfect Unison - + 1 - Augmented Unison - + 0 - Diminished Second - + 1 - Minor Second - + 2 - Major Second - + 3 - Augmented Second - + 2 - Diminished Third - + 3 - Minor Third - + 4 - Major Third - + 5 - Augmented Third - + 4 - Diminished Fourth - + 5 - Perfect Fourth - + 6 - Augmented Fourth - + 6 - Diminished Fifth - + 7 - Perfect Fifth - + 8 - Augmented Fifth - + 7 - Diminished Sixth - + 8 - Minor Sixth - + 9 - Major Sixth - + 10 - Augmented Sixth - + 9 - Diminished Seventh - + 10 - Minor Seventh - + 11 - Major Seventh - + 12 - Augmented Seventh - + 11 - Diminished Octave - + 12 - Perfect Octave - + Number of strings: - + Edit string data... - + +octave - + up - + down @@ -2838,8 +2918,8 @@ failed: - - + + sp @@ -2850,19 +2930,19 @@ failed: - + Stemless - + Key Signature - + Ledger Lines @@ -2892,34 +2972,17 @@ failed: - - Guitar (modern) - tablatture type - - - - - Bass (modern) - tablature type - - - - + Italian (historic) tablature type - + French (historic) tablature type - - - Set - - Show Clef @@ -2935,147 +2998,225 @@ failed: Show Time Sign. + + + 6 strings (generic guitar) + tablatture type + + + + + 4 strings (generic bass) + tablature type + + + + + ukulele + + + + + bandurria + + + + + Custom + + - + « Full Configur. - + Upside Down - + Quick Presets » - + Fret Marks - - + + Font: - - + + Size: - - + + pt - - + + Vert. Offset: - + Marks are: - + Numbers - + Letters - + Marks are drawn: - + On Lines - + Above Lines - + Lines are: - + Continuous - + Broken - + Note Values - + Shown as: - + + None - + Note Symbols - + Stems and beams - + + Stem position: + + + + + Above + + + + + Below + + + + + Stem style: + + + + + Beside staff + + + + + Through staff + + + + + Half notes: + + + + + As short stem + + + + + As slashed stem + + + + + Show Rests + + + + Preview - + Create new tablature type - + PERCUSSION STAFF - + Create new percussion type - + Save - + Load @@ -3140,6 +3281,16 @@ failed: Chord + + + Edit Plain Text + + + + + Edit HTML Text + + EditStyleBase @@ -3150,151 +3301,153 @@ failed: - + Score - - - + + + Page - + System - + Measure - + Barlines - + Notes - + Arpeggios - + Beams - + Sizes - + Hairpins - - + + Chordnames - - + + Articulations, Ornaments - + Voices - + Display in Concert Pitch - + Create Multi Measure Rests - + Minumum width of measure: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + sp spatium unit ---------- @@ -3320,81 +3473,85 @@ spatium unit ---------- spatium unit ---------- +spatium unit +---------- +spatium unit +---------- spatium unit - + Minimum Number of empty measures: - + Hide Empty Staves - + Music upper margin - + Music lower margin - + Staff distance - + Lyrics upper margin - + Lyrics lower margin - + V-frame upper margin - + V-frame lower margin - - - - - - + + + + + + % - + Last system fill threshold - + Create clef for all systems - + Create key sig for all systems - + Create time signatures @@ -3405,473 +3562,480 @@ spatium unit - + Clefs - + Slurs/Ties - - + + Accidentals - + Musical symbols font: - + Don't hide empty staves in first system - + Grand staff distance - + Vertical-frame upper margin - + Vertical-frame lower margin - + Create courtesy clefs - + Create courtesy time signatures - + Create courtesy key signatures - + Lyrics line height - + Header Text - + show header also on first page - + use odd even page header - - + + left - - + + middle - - + + right - - - + + + edit even page header - - - + + + add odd page header - + Footer Text - + show footer also on first page - + use odd even page footer - - - + + + edit even page footer - - - + + + edit odd page header - + + Pedal, Trill + + + + Min. System distance - + Max. System distance - + System Bracket Distance: - + Akkolade Distance: - + Fix Number of Measures/System: - + Fix Measure Width - + System Bracket Width: - + Akkolade Width: - + minimum Measure width - + Spacing (1=tight) - + Min. note distance - + Clef left margin - + Key sig. left margin - + Time sig. left margin - + Clef-barline distance - + Staff line width - + Show repeat bar tips ("winged" repeats) - + Barline at start of single staff - + Barline at start of multiple staves - + Bar width: - + End bar width: - + End bar distance: - + Double bar width: - + Double bar distance: - + shorten stems - + Progression - + Shortest stem - + Accidental note distance - + Accidental distance - + Note dot distance - + Dot dot distance - + Ledger line width - + Ledger line length - + Default TAB Clef - + Clef1 - + Clef2 - + Distance to note - + Line width - + Hook length - - - + + + Line width: - + Height: - + Line break height: - + Volta - - - + + + + + default Y-position: - - + + Hook height: - + Ottava - + Font: - + Size: - + pt - + Vertical position: - + Line height: - + Style - + Modern - + Historic - + note head distance - + articulation distance - + staff distance - + Accidental - + semitones offset - + cents offset - + Stem Direction in Multi-Voice Context - - - - + + + + up - - - - + + + + down - - - + + + show first @@ -3881,37 +4045,37 @@ spatium unit - - + + Figured Bass - - + + odd/even - - + + styled - - + + even - - + + odd - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -3924,168 +4088,178 @@ p, li { white-space: pre-wrap; } - + Measure Numbers - + all staffs - + every system - + interval - + Barline-note margin - + Note-barline margin - + Clef/Key right margin - + Beam width - - + + spaces - + Beam distance - + beam width units - + Minimum length - + Minimum slope - + Maximum slope - + line width at end - + line width middle - + bow - + dotted line width - + Small staff size - + Small note size - + Grace note size - + Small clef size - + + Pedal Line + + + + + Trill Line + + + + Use German names - + Chord description file - - - - - - - - - - - - - + + + + + + + + + + + + + ... - - - + + + sp space unit - + Voice 1 - + Voice 2 - + Voice 3 - + Voice 4 @@ -4248,7 +4422,7 @@ p, li { white-space: pre-wrap; } GreendotButton - + record @@ -4345,7 +4519,7 @@ p, li { white-space: pre-wrap; } Inspector - + Inspector @@ -4432,6 +4606,79 @@ spatium unit + + InspectorBarLine + + + Staff default + + + + + Tick + + + + + Tick alt. + + + + + Short + + + + + Short alt. + + + + + Type: + + + + + Measure default + + + + + Normal + + + + + Dashed + + + + + Dotted + + + + + Double + + + + + End + + + + + Span: + + + + + Custom + + + InspectorBeam @@ -4464,13 +4711,13 @@ spatium unit - - + + ... - + User Position @@ -4586,7 +4833,7 @@ spatium unit InspectorClef - + Show Courtesy Clef @@ -4720,15 +4967,80 @@ spatium unit - InspectorImage + InspectorHairpin - + Form - - Image + + Hairpin + + + + + crescendo + + + + + decrescendo + + + + + Subtype: + + + + + Dynamic Range: + + + + + Velo. change: + + + + + Staff + + + + + Part + + + + + SYstem + + + + + + reset value + + + + + + ... + + + + + InspectorImage + + + Form + + + + + Image @@ -4773,12 +5085,12 @@ spatium unit InspectorKeySig - + Show Courtesy Time Signature - + Show Naturals @@ -5017,45 +5329,83 @@ spatium unit - + Select - + Dot1 - + Dot2 - + Dot3 - + Hook - + Stem - + Beam + + InspectorOttava + + + Form + + + + + Ottava + + + + + Subtype: + + + + + 8va + + + + + 15ma + + + + + 8vb + + + + + 15mb + + + InspectorRest - + Small @@ -5131,11 +5481,54 @@ spatium unit InspectorTimeSig - + Show Courtesy Time Signature + + InspectorTrill + + + Form + + + + + Trill + + + + + Subtype: + + + + + trill line + + + + + up prall + + + + + down prall + + + + + prall prall + + + + + wavy line + + + InspectorVBox @@ -5222,6 +5615,34 @@ spatium unit + + InspectorVolta + + + Form + + + + + Volta + + + + + Subtype: + + + + + Open + + + + + Closed + + + InstrumentDialogBase @@ -5276,22 +5697,22 @@ spatium unit - visible + Visible - - Clef + + Linked - - linked + + Staff Linked to Previous - - staff linked to previous + + Clef @@ -5415,49 +5836,49 @@ spatium unit - + MuseScore: Save Instrument List - + MuseScore Instruments (*.xml);; - + Open Instruments File - + failed: - + MuseScore: Open Instruments file - + Write Style failed: - + MuseScore: Write Style - + MuseScore: Load Instrument List - + MuseScore Instruments (*.xml);;All files (*) @@ -5524,22 +5945,22 @@ failed: KeySig - + Hide Courtesy Key Signature - + Show Courtesy Key Signature - + Hide Naturals - + Show Naturals @@ -6231,12 +6652,12 @@ Would you like to locate %2 now? - + visible - + stemless @@ -6310,57 +6731,92 @@ Would you like to locate %2 now? - + + 1 + + + + + 2 + + + + + 4 + + + + + 8 + + + + + 16 + + + + + 32 + + + + + 64 + + + + Other - + do not count - + Exclude from measure count - + break multi measure rest - + add to measure number - + layout stretch - + repeat count: - + goto previous measure - + <- - + goto next measure - + -> @@ -6445,7 +6901,7 @@ Would you like to locate %2 now? MenuNotes - + &Notes @@ -6496,461 +6952,455 @@ Would you like to locate %2 now? MuseScore - - + + MuseScore - + Save changes to the score "%1" before closing? - + MuseScore: Load Score - - + MuseScore: Load error - + MusicXML Files (*.xml *.mxl);; - + MIDI Files (*.mid *.midi *.kar);; - + Muse Data Files (*.md);; - + Capella Files (*.cap);; - + BB Files <experimental> (*.mgu *.MGU *.sgu *.SGU);; - + PDF Files <experimental omr> (*.pdf);; - + Bagpipe Music Writer Files <experimental> (*.bww);; - + Guitar Pro (*.GTP *.GP3 *.GP4 *.GP5);; - - - + + + All Files (*) - + Untitled - - Cannot read file: %1 error: %2 - - - - + Overture / Score Writer Files <experimental> (*.ove *.scw);; - + Compressed MuseScore File (*.mscz) - + MuseScore File (*.mscx) - + MuseScore: Save Score - + MuseScore: Save File - - + + MuseScore: Load Style - + MuseScore Styles (*.mss);;All Files (*) - - - + + + MuseScore: Save Style - - - + + + MuseScore Style File (*.mss) - + SoundFont Files (*.sf2 *.SF2);;All (*) - + Choose Synthesizer SoundFont - + MuseScore: Choose Synthesizer SoundFont - + MuseScore Chord Style File (*.xml) - + ;;All Files (*) - - + + MuseScore: Load Chord Style - + MuseScore: Save Chord Style - + PDF Scan File (*.pdf);;All (*) - + Choose PDF Scan - + MuseScore: Choose PDF Scan - + OGG Audio File (*.ogg);;All (*) - + Choose Audio File - + MuseScore: Choose OGG Audio File - + PNG Bitmap Graphic (*.png);; - + PDF File (*.pdf);; - + Encapsulated PostScript File (*.eps);; - + Scalable Vector Graphic (*.svg);; - + MuseScore: Save Image - + MuseScore: Load Palette - + MuseScore Palette (*.mpal);;All Files (*) - + MuseScore: Save Palette - + MuseScore Palette (*.mpal) - + MuseScore: Load Plugin - + MuseScore Plugin (*.qml);;All Files (*) - + MuseScore: Save Plugin - + MuseScore Plugin File (*.qml) - + MuseScore: Load Drumset - + MuseScore Drumset (*.drm);;All Files (*) - + MuseScore: Save Drumset - + MuseScore Drumset File (*.drm) - - + + Uncompressed MuseScore Format (*.mscx) - - + + MusicXML Format (*.xml) - - + + Compressed MusicXML Format (*.mxl) - - + + Standard MIDI File (*.mid) - - + + PDF File (*.pdf) - - + + PostScript File (*.ps) - - + + PNG Bitmap Graphic (*.png) - - + + Scalable Vector Graphic (*.svg) - - + + Wave Audio (*.wav) - - + + Flac Audio (*.flac) - - + + Ogg Vorbis Audio (*.ogg) - - + + MP3 Audio (*.mp3) - + MuseScore: Export - + MuseScore Format (*.mscx) - + MuseScore: Save a Copy - - - - + + + + MuseScore: Save As - + All Supported Files (*.mscz *.mscx *.xml *.mxl *.mid *.midi *.kar *.md *.mgu *.MGU *.sgu *.SGU *.cap *.pdf *.ove *.scw *.bww *.GTP *.GP3 *.GP4 *.GP5);; - + All Supported Files (*.mscz *.mscx *.xml *.mxl *.mid *.midi *.kar *.md *.mgu *.MGU *.sgu *.SGU *.cap *.ove *.scw *.bww *.GTP *.GP3 *.GP4 *.GP5);; - + MuseScore Files (*.mscz *.mscx);; - - + + LilyPond Format (*.ly) - - - - + + + + cannot determine file type - - - + + + MuseScore: Export Parts - + Parts were successfully exported - - + + MuseScore Format (*.mscz) - - + + MuseScore: Save Selection - + MuseScore: Save Selected - + MuseScore: InsertImage - + All Supported Files (*.svg *.jpg *.png *.xpm);;Scalable vector graphics (*.svg);;JPEG (*.jpg);;PNG (*.png);;XPM (*.xpm);;All Files (*) - + Images (*.jpg *.gif *.png);;All (*) - + Grace Notes - + Clefs @@ -6960,257 +7410,257 @@ before closing? - + Time Signatures - + 4/4 common time - + 2/2 alla breve - + Normal - + Dashed - + End Bar - + Double Bar - + Start Repeat - + End Repeat - + End-Start Repeat - + Arpeggio && Glissando - + Arpeggio - + Glissando - + Breath && Pauses - + Breath - + Caesura - + Brackets - + Square bracket - + Curly bracket - + Thumb - + 1/8 through stem - + 1/16 through stem - + 1/32 through stem - + 1/64 through stem - + 1/8 between notes - + 1/16 between notes - + 1/32 between notes - + 1/64 between notes - + Fall/Doit - + fall - + doit - + Segno Variation - + staff-text - + Staff Text - + system-text - + System Text - + Instrument - + Instrument Change - + 1. - + Lyrics Verse Number - + Tempo Text - + Section break - + Staff spacer down - + Staff spacer up - + Chord Name - + Staff Changes - + set visible - + set invisible - + change staff type - + change instrument - + Fret Diagram @@ -7220,7 +7670,7 @@ before closing? - + Articulations && Ornaments @@ -7230,127 +7680,162 @@ before closing? - + Fingering - + Fingering %1 - + String number %1 - + Note Heads - + Tremolo + + + Dotted + + + + + Tick 1 + + + + + Tick 2 + + + Short 1 + + + + + Short 2 + + + + Repeats - + Repeat measure sign - + Segno - + Coda - + Varied coda - + Codetta - + Fine - + Da Capo - + Da Capo al Fine - + Da Capo al Coda - + D.S al Coda - + D.S al Fine - + D.S - + To Coda - + Breaks && Spacer - + Line break - + Page break - + + plop + + + + + scoop + + + + &Measures - + &Frames - + &Text @@ -7360,242 +7845,252 @@ before closing? - + Symbols - + &Create - + Text - + switch layer - + synthesizer - + audio track - + switch play mode - + File Operations - + Transport Tools - + Page View - + Concert Pitch - + Foto Mode - + Note Entry - + &File - + Open &Recent - + &Edit - + &Measure - + &Voices - + Pr&ofiles - + &Preferences... - + Add N&ote - + Add &Interval - + T&uplets - + &Plugins - + &Online Handbook - + About &Qt - + Check for &Update - + + NOTE entry mode + + + + + DRUM entry mode + + + + + TAB entry mode + + + + Find - + MuseScore: warning - + Cannot create tuplet: note value too short - + &Layout - + Continuous View - + &Style - + &Display - + &Help - + &About - + About &MusicXML - + Report a bug - + Open failed: unknown file extension or broken file - + System - + no score - - note entry mode - - - - + edit mode - + play - + foto mode - + Go To: - + Bar %1 Beat %2.%3 - + The previous session quit unexpectedly. Restore session? @@ -7629,28 +8124,28 @@ please choose a different name: - + MuseScore: transpose - + There is nothing selected. Transpose whole score? - - + + MuseScore: save style - + MuseScore: load style - + Rehearsal Mark @@ -7692,6 +8187,11 @@ please choose a different name: Error %1 returned from MP3 encoder + + + you cannot create an element + + MyWebView @@ -7759,7 +8259,7 @@ please choose a different name: - + MuseScore: Create New Score @@ -7767,12 +8267,12 @@ please choose a different name: NewWizardPage1 - + Create New Score - + This wizard creates a new score @@ -7780,12 +8280,12 @@ please choose a different name: NewWizardPage2 - + Create New Score - + Define a set of instruments. Each instrument is represented by one or more staves @@ -7793,12 +8293,12 @@ please choose a different name: NewWizardPage3 - + Create New Score - + Create Time Signature @@ -7806,22 +8306,22 @@ please choose a different name: NewWizardPage4 - + Create New Score - + Select Template File: - + MuseScore: Select Template - + MuseScore Template Files (*.mscz *.mscx) @@ -7829,27 +8329,27 @@ please choose a different name: NewWizardPage5 - + Create New Score - + Select Key Signature and Tempo: - + Key Signature - + Tempo - + BPM: @@ -7872,36 +8372,31 @@ please choose a different name: - - OnTime: + + NoteEvents - - + + invalid - + Dot1 - + Dot2 - + Dot3 - - - OffTime: - - OmrPanel @@ -8084,27 +8579,27 @@ please choose a different name: PaletteBox - + Palettes - + Palette Operations - + Single Palette Mode - + Reset to factory defaults - + new Palette @@ -8112,42 +8607,42 @@ please choose a different name: PaletteBoxButton - + Palette Properties... - + Insert new Palette... - + Move Palette Up - + Move Palette Down - + Enable Editing - + Save Palette - + Load Palette - + Delete Palette @@ -8471,42 +8966,42 @@ please choose a different name: PluginCreator - + File Operations - + Edit Operations - + MuseScore Plugin Editor - - - + + + MuseScore - - - + + + Plugin "%1" has changes save before closing? - + untitled - + Manual @@ -8582,77 +9077,88 @@ save before closing? PreferenceDialog - + Choose Notepaper - + Choose Background Wallpaper - + Choose Default Style - + Choose Default Style for Parts - - + + Choose Instrument List - - + + Instrument List (*.xml) - + Choose Starting Score - + MuseScore Files (*.mscz *.mscx *.msc);;All (*) - + Choose Scores Directory - + Choose Styles Directory - + Choose Templates Directory - + Choose Plugins Directory - + Choose SoundFonts Directory - + Choose Images Directory + + + + MuseScore Shortcuts + + + + + Print Shortcuts + + PrefsDialogBase @@ -9385,7 +9891,7 @@ save before closing? - + Shortcut @@ -9458,47 +9964,52 @@ save before closing? - + + Print + + + + Plugins - + Name: - + Path: - + Version: - + Load - + Define Shortcut - + Update - + Automatic Update Check - + Check for new versions of MuseScore on startup @@ -9506,7 +10017,7 @@ save before closing? Properties - + small @@ -9542,7 +10053,7 @@ save before closing? QWidget - + MuseScore: Import Capella @@ -9569,13 +10080,13 @@ save before closing? - - - - + + - - + + + + @@ -9590,54 +10101,54 @@ save before closing? - + MuseScore: Save Album - + MuseScore Files (*.album);; - + Open Album File - + failed: - + MuseScore: Open Album file - + Write Album failed: - + MuseScore: Write Album - + Untitled - + MuseScore: file not found: - + MuseScore: load failed: @@ -9659,17 +10170,17 @@ failed: - + MuseScore: load Style failed: - + MuseScore: Load languages failed: - + MuseScore: invalid command @@ -9680,7 +10191,7 @@ failed: - + MuseScore: Import GuitarPro @@ -9688,7 +10199,7 @@ failed: RecordButton - + record @@ -9722,7 +10233,7 @@ failed: - + Staff @@ -9745,26 +10256,26 @@ failed: - - - - + + + + Set Invisible - - - - + + + + Set Visible - + Color... @@ -9776,9 +10287,9 @@ failed: - - - + + + Text Properties... @@ -9788,150 +10299,150 @@ failed: - + Bend Properties... - + TremoloBar Properties... - - + + Add - - - + + + Frame Properties... - - - + + + Tuplet Properties... - + Volta Properties... - + Line Properties... - + Time Signature Properties... - + MIDI Properties... - + Staff Text Properties... - + Tempo Properties... - + Change Instrument Properties... - + Edit Mode - + Slur Properties... - - + + Tuplet... - - + + Delete Tuplet - + Style... - + Chord Articulation... - + Marker Properties... - + Jump Properties... - + Section Break Properties... - + Change Instrument... - + Fret Diagram Properties... - + Glissando Properties... - + Dynamics - + Hairpin Properties... - + Harmony Properties... - - + + Staff Properties... @@ -9948,54 +10459,54 @@ failed: - + Measure - + Measure Properties... - + Please select the complete tuplet and retry the copy operation - + Please select the complete tuplet and retry the cut operation - + No chord/rest selected: please select a chord/rest and try again - + Cannot split measure here: cannot split tuplet - + No measures selected: please select range of measures to join and try again - + No staves found: please use the instruments dialog to first create some staves - + No Measure selected: please select a measure and try again @@ -10275,12 +10786,12 @@ Sequencer will be disabled. ShortcutCaptureDialog - + Shortcut conflicts with - + Undefined @@ -10335,31 +10846,6 @@ Sequencer will be disabled. Form - - - Slur - - - - - Slur End - - - - - Staff: - - - - - Voice: - - - - - Tick: - - SlurPropertyBase @@ -10465,6 +10951,16 @@ Sequencer will be disabled. Form + + + CHORD + + + + + NOTE + + SplitStaff @@ -10904,7 +11400,7 @@ altera - + MuseScore Startup Dialog @@ -11520,146 +12016,147 @@ altera - + relX: - + reference point offset in percent of parent width - - + + % - + Y: coordinate - + vertical offset to reference point - + relY: - + reference point offset in percent of parent height - + Unit: - + offset is absolute - + MM - + offset in Space units - + Space + spatium unit - + enable text frame - + Frame - + draw circled frame - + Circle - + draw boxed frame - + Box - + Width: - + frame line width - - - mm + + + sp - + Margin: - + frame inner margin - + Round: - + corner round - + Foreground Color: - - + + frame color - + Background Color: @@ -11722,67 +12219,72 @@ please choose a different name: - + align left - + align horizontal center - + align right - + align top - + align bottom - + + align vertical baseline + + + + align vertical center - + subscript - + superscript - + unordered list - + ordered list - + indent more - + indent less - + unstyled @@ -11794,16 +12296,6 @@ please choose a different name: MuseScore: Time Signatures - - - 4/4 common time - - - - - 2/2 alla breve - - TimeDialogBase @@ -11853,12 +12345,12 @@ please choose a different name: TimeSig - + Hide Courtesy Time Signature - + Show Courtesy Time Signature @@ -12001,259 +12493,306 @@ p, li { white-space: pre-wrap; } - - Transpose by Key - - - - + Cb major / Ab minor - + Gb major / Eb minor - + Db major / Bb minor - + Ab major / F minor - + Eb major / C minor - + Bb major / G minor - + F major / D minor - + C major / A minor - + G major / E minor - + D major / B minor - + A major / F# minor - + E major / C# minor - + B major / G# minor - + F# major / D# minor - + C# major / A# minor - - + + + Up - - + + + Down - + Closest - - Transpose by Interval - - - - + Perfect Unison - + Augmented Unison - + Diminished Second - + Minor Second - + Major Second - + Augmented Second - + Diminished Third - + Minor Third - + Major Third - + Augmented Third - + Diminished Fourth - + Perfect Fourth - + Augmented Fourth - + Diminished Fifth - + Perfect Fifth - + Augmented Fifth - + Diminished Sixth - + Minor Sixth - + Major Sixth - + Augmented Sixth - + Diminished Seventh - + Minor Seventh - + Major Seventh - + Augmented Seventh - + Diminished Octave - + Perfect Octave - + + Transpose Diatonically + + + + + Second + + + + + Third + + + + + Fourth + + + + + Fifth + + + + + Sixth + + + + + Seventh + + + + + Keep degree alterations + + + + Options - + Transpose key signatures - + + Transpose Chromatically + + + + + By Key + + + + + By Interval + + + + Transpose chord names - + Single sharps and flats only - + Use double sharps and flats @@ -12544,220 +13083,205 @@ p, li { white-space: pre-wrap; } - + File open - + Load score from file - + File save - + Save score to file - + File save as - + Save score under a new file name - + File save a copy - + Save a Copy... - + Save a copy of the score in addition to the current file - + Save a copy of the score in various formats - - - File reload - - - - - Reload - - - Reload score from file - - - - File close - + Close current score - + Create new score - + Print - + Print score - - + + Undo - + Undo last change - - + + Redo - + Redo last undo - + Cut - + Copy - + Paste - + Show instruments dialog - + Note input mode - - + + Note Input - + Enter unison above - + Export Parts - + Export Parts... - + Save a copy of the score's parts in various formats - + Unison Above - + Enter second above - + Second Above - + Enter third above - + Third Above - + Enter fourth above - + Fourth Above - + Enter fifth above - + Fifth Above - + Enter sixth above - + Sixth Above @@ -12772,1076 +13296,1057 @@ p, li { white-space: pre-wrap; } - + Enter octave above - + Octave Above - + Enter ninth above - + Ninth Above - + Enter second below - + Second Below - + Enter third below - + Third Below - + Enter fourth below - + Fourth Below - + Enter fifth below - + Fifth Below - + Enter sixth below - + Sixth Below - + Enter seventh below - + Seventh Below - + Enter octave below - + Octave Below - + Enter ninth below - + Ninth Below - + Enter note A - + A - + Enter note B - + B - + Enter note C - + C - + Enter note D - + D - + Enter note E - + E - + Enter note F - + F - + Enter note G - + G - + Add note A to chord - + Add A - + Add note B to chord - + Add B - + Add note C to chord - + Add C - + Add note D to chord - + Add D - + Add note E to chord - + Add E - + Add note F to chord - + Add F - + Add note G to chord - + Add G - + Insert note A - + Insert A - + Insert note B - + Insert B - + Insert note C - + Insert C - + Insert note D - + Insert D - + Insert note E - + Insert E - + Insert note F - + Insert F - + Insert note G - + Insert G - + Enter rest - - - + + + Rest - + Add staccato - + Staccato - + Add tenuto - + Tenuto - + Add trill - + Trill - + Add marcato - + Marcato - + Add more stretch to selected measure - + Less stretch - + Add less stretch to selected measure - - + + Reset Beam Mode - + Reset beam mode of selected measures - + Flip direction - + Pitch up - + Up - + Pitch up octave - + Up Octave - + Pitch up by an octave - + Select Section - + Note duration: double whole - - + + Double whole note - - + + Whole note - - + + Half note - - + + Quarter note - - + + 8th note - - + + 16th note - - + + 32nd note - - + + 64th note - + Note duration: 128th - - + + 128th note - + Add system text - + Add staff text - + Add title text - + Add subtitle text - + Add composer text - + Add lyricist text - + Lyricist - + Add chord name - + Show harmony properties for chord - + Add rehearsal mark - - Player seek to begin - - - - - Player seek to end - - - - + Pan score while playing on/off - + Pan - + &Transpose... - + Violin Clef - + Bass Clef - + Display in concert pitch - + next syllable - + previous syllable - + toggle visibility - + set visible - + set unvisible - + Toggle Section Break - + Show Unprintable - + Show Page Margins - + Manage parts - + Show inspector - + Reset measure stretch - + Reset user settings - + Note entry: whole rest - + Whole rest - + Note entry: half rest - + Half rest - + Note entry: quarter rest - + Quarter rest - + Note entry: 8th rest - + 8th rest - + Tempo Marking... - + Tempo Marking - + Text - + Add Frame Text - + Load Style... - + Save Style... - - Save Style As Default... - - - - + Select All - + Concert Pitch - + Info... - + Reset - + Debugger - + Reset Stretch - + Insert Special Characters - + Backspace - + Find - + Mirror note head - + General... - + Edit general style - + Text... - + Chords... - + Double duration - + Half duration - + Follow song - + Display documents side by side - + Display documents stacked - + Show OMR image - + Enharmonic up - + Parts... - + Enharmonic down - + Create new revision - + Toggle foto mode - + Enable horizontal raster - + Enable vertical raster - + Configure raster - + Re-Pitch Mode - + Replace pitches without changing rhythms - + Stack down - + Piano Keyboard - + Additional Media... - + Show media dialog - + Split Measure - + Join Measure - + Page Settings... - + Page Settings - + Album... - + Album - + Up Note in Chord - + Go to higher pitched note in chord - + Go to top note in chord - + Top Note in Chord - + Move up - + Pitch down - + Down - + Pitch down octave - + Down octave - + Pitch down by an octave - + Down Note in Chord - - + + Go to lower pitched note in chord - + File new - + Diatonic pitch down - + Diatonic down - + Go to bottom note in chord - + Bottom Note in Chord - - + + Move down - - + Previous chord - - + Previous measure - - + Next chord - - + Next measure - - + + Delete - + Delete contents of the selected measures - + Timewise Delete - + Delete element and duration - + Delete Selected Measures - + Append measures - + Append Measures... - + Insert measures - + Insert Measures... @@ -13851,971 +14356,1137 @@ p, li { white-space: pre-wrap; } - + Open... - + Save - + Save As... - + Export... - + Close - + New... - + Print... - + Instruments... - - + + Add More Stretch - + Add Less Stretch - - + + Slur + + + + + Add Slur + + + + + Add Crescendo + + + + Insert Horizontal Frame - - + Insert Vertical Frame - + Append Horizontal Frame - + Append Vertical Frame - + Duplet - + Triplet - + Quadruplet - + Quintuplet - + Sextuplet - + Septuplet - + Octuplet - + Nonuplet - + Other... - - + + Longa - - + + Flat - - + + + + Grace: 8th after + + + + + Enable sound while editing - + Palette - + Play Panel - + Navigator - + Mixer - + Transport - + Status Bar - + Quit - + Lyrics - + + String above (TAB) + + + + + Select string above (TAB only) + + + + + String below (TAB) + + + + + Select string below (TAB only) + + + + + Fret 0 (TAB) + + + + + Add fret 0 on current string (TAB only) + + + + + Fret 1 (TAB) + + + + + Add fret 1 on current string (TAB only) + + + + + Fret 2 (TAB) + + + + + Add fret 2 on current string (TAB only) + + + + + Fret 3 (TAB) + + + + + Add fret 3 on current string (TAB only) + + + + + Fret 4 (TAB) + + + + + Add fret 4 of current string (TAB only) + + + + + Fret 5 (TAB) + + + + + Add fret 5 of current string (TAB only) + + + + + Fret 6 (TAB) + + + + + Add fret 6 of current string (TAB only) + + + + + Fret 7 (TAB) + + + + + Add fret 7 of current string (TAB only) + + + + + Fret 8 (TAB) + + + + + Add fret 8 of current string (TAB only) + + + + + Fret 9 (TAB) + + + + + Add fret 9 of current string (TAB only) + + + + + Staff Types... + + + + + Staff type editor + + + + + Show staff type editor + + + + + Note anchored Textline + + + + Save Selection - + Save Selection... - + Save current selection as new score - + Export score - + Respell pitches - + Diatonic pitch up - + Diatonic up - + Add previous chord to selection - + Select to beginning of measure - + Add next chord to selection - + Move chord/rest right - + Move chord/rest left - + Select to end of measure - + Select to beginning of line - + Select to end of line - + Select to beginning of score - + Select to end of score - + Add staff above to selection - + Add staff below to selection - + Page: previous - + Page: next - + Page: top - + Page: end - - Add slur - - - - + Crescendo - + Decrescendo - + Escape - + Timewise delete - + Append One Measure - + Insert One Measure - - + Insert Text Frame - + Append Text Frame - - + Insert Fret Diagram Frame - + Other tuplets - + Note duration: longa - + Note duration: whole - + Note duration: half - + Note duration: quarter - + Note duration: 8th - + Note duration: 16th - + Note duration: 32nd - + Note duration: 64th - + Note duration: augmentation dot - - + + Augmentation dot - + Note duration: double augmentation dot - - + + Double augmentation dot - + Note duration: tie - - + + Tie - + Note entry: rest - + Note entry: double sharp - - + + Double sharp - + Note entry: sharp - - + + Sharp - + Note entry: natural - - + + Natural - + Note entry: flat - + Note entry: double flat - - + + Double flat - - - + + + Acciaccatura - - - + + + Appoggiatura - - - + + + Grace: quarter - - - + + + Grace: 16th - - - + + + Grace: 32nd - - - - Grace: 8nd after - - - - - - + + + Voice 1 - - - + + + Voice 2 - - - + + + Voice 3 - - - + + + Voice 4 - + MIDI input - - + + Enable MIDI input - + Editing sound on - + Beam start - + Beam middle - + No beam - + Beam 32nd sub - + Beam 64th sub - + Auto beam - + Feathered beam, slower - + Feathered beam, faster - + Transport toolbar - + Note input toolbar - + Zoom canvas - + + Play Previous Chord + + + + + Play Previous Measure + + + + + Play Next Chord + + + + + Play Next Measure + + + + + Player Seek to Begin + + + + + Player Seek to End + + + + + Save Style as Default... + + + + Full Screen - + Layers... - + MuseScore Connect - + Plugin Creator - + Inspector - + Show OMR Panel - + OmrPanel - + toggle metronome - + Figured Bass - + Next Score - + Previous Score - + Transpose Up - + Transpose Down - + Show master palette - + Master Palette... - - Insert Measure - - - - + Toggle View Mode - + Metronome - + System Text - + Staff Text - + Title - + Subtitle - + Composer - + Chord Name - + Harmony Properties - + Rehearsal Mark - + Add picture - + Picture - + Player play - + Play - + Start or stop playback - + Player rewind - + Rewind - + Rewind to start position - + Play repeats on/off - + Repeat - + Load style - + Save style - + Transpose - + Exchange Voice 1-2 - + Exchange Voice 1-3 - + Exchange Voice 1-4 - + Exchange Voice 2-3 - + Exchange Voice 2-4 - + Exchange Voice 3-4 - + Repeat last command - + Edit score info - + Toggle System Break - + Toggle Page Break - + Edit Element - + Show Invisible - + Show Frames - + Insert Special Characters... - + Zoom In - + Zoom Out - + Edit text style - + Edit chord style - + Select all similar elements - + All Similar Elements - + Select all similar elements in same staff - + All Similar Elements in Same Staff - + Synthesizer - + Repeat selection - + Documents Side by Side - + Documents Stacked - + Layers - - - next score - - - - - previous score - - articulation - + Bend - + Tremolo Bar @@ -14831,45 +15502,45 @@ p, li { white-space: pre-wrap; } file - - + + error at line %1 column %2: %3 - + internal error: could not open resource musicxml.xsd - + internal error: MusicXML schema is invalid - + error reading container.xml at line %1 column %2: %3 - + can't find rootfile - - + + this is not a valid MusicXML file - + could not open MusicXML file @@ -14886,100 +15557,105 @@ p, li { white-space: pre-wrap; } lines - + Lines - + Slur - + Crescendo - + Diminuendo - + Prima volta - + Seconda volta - + Terza volta - + Seconda volta 2 - + 8va - + 15ma - + 8vb - + 15mb - - - - + + + + Pedal - + Trill line - + Upprall line - + Downprall line - + Prallprall line - + + Wavy line + + + + Text line - + Line diff --git a/share/locale/mscore_hi_IN.ts b/share/locale/mscore_hi_IN.ts index e7465edf1471b..a9b71d39df154 100644 --- a/share/locale/mscore_hi_IN.ts +++ b/share/locale/mscore_hi_IN.ts @@ -3,6 +3,14 @@ AboutBox + + About MuseScore + + + + Copy revision number + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -12,18 +20,10 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Support MuseScore with </span><a href="http://www.musescore.org/en/donate"><span style=" font-size:10pt; text-decoration: underline; color:#0000ff;">your donation</span></a></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Arial'; font-size:10pt;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Copyright </span><span style=" font-size:10pt;">©</span><span style=" font-family:'Arial'; font-size:10pt;"> 1999-2009 Werner Schweer and Others. </span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Copyright </span><span style=" font-size:10pt;">©</span><span style=" font-family:'Arial'; font-size:10pt;"> 1999-2012 Werner Schweer and Others. </span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Published under the GNU General Public License</span></p></body></html> - - About MuseScore - - - - Copy revision number - - AboutBoxDialog @@ -46,17 +46,6 @@ p, li { white-space: pre-wrap; } About MusicXML - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; font-size:10pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">MusicXML is an open file format for exchanging digital sheet music,</p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">supported by many applications. MusicXML is copyright © MakeMusic, Inc.</p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">All rights reserved. For more information see: <a href="http://www.makemusic.com/xml.html"><span style=" text-decoration: underline; color:#0000ff;">MakeMusic</span></a></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; text-decoration: underline; color:#0000ff;"></p></body></html> - - The MusicXML Public License: @@ -104,6 +93,17 @@ p, li { white-space: pre-wrap; } <p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p></body></html> + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans Serif'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">MusicXML is an open file format for exchanging digital sheet music,</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">supported by many applications. MusicXML is copyright © MakeMusic, Inc.</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">All rights reserved. For more information, see: <a href="http://www.makemusic.com/musicxml"><span style=" text-decoration: underline; color:#0000ff;">MakeMusic</span></a></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; text-decoration: underline; color:#0000ff;"></p></body></html> + + Accidental @@ -122,30 +122,14 @@ p, li { white-space: pre-wrap; } Album Name: - - album name - - - - remove current score - - Remove Score - - move current score down in list - - Down नीचे - - move current score up in list - - Up ऊपर @@ -154,18 +138,10 @@ p, li { white-space: pre-wrap; } Add Score - - create new album - - New - - load an existing album - - Print Album @@ -198,6 +174,30 @@ p, li { white-space: pre-wrap; } MuseScore: Load Album + + Album Name + + + + Remove Current Score + + + + Move Current Score Down in List + + + + Move Current Score Up in List + + + + Create New Album + + + + Load an Existing Album + + ArticulationBase @@ -287,6 +287,14 @@ p, li { white-space: pre-wrap; } BarLine बार लाइन + + spanFrom: + + + + spanTo: + + BeamBase @@ -342,6 +350,37 @@ p, li { white-space: pre-wrap; } + + BoxBase + + Form + पृष्ट/फॉर्म + + + bottomMargin: + + + + topGap: + + + + bottomGap: + + + + leftMargin: + + + + topMargin: + + + + rightMargin: + + + BoxPropertiesBase @@ -1403,6 +1442,22 @@ failed: No. + + 1 + + + + 2 + + + + 3 + + + + 4 + + EditInstrumentBase @@ -2021,6 +2076,10 @@ failed: B -1 + + A 7 + + EditRaster @@ -2049,6 +2108,17 @@ failed: + + EditStaff + + Edit Short Name + + + + Edit Long Name + + + EditStaffBase @@ -2119,10 +2189,6 @@ failed: Type: - - Edit... - - ... @@ -2306,16 +2372,6 @@ failed: Select: - - Guitar (modern) - tablatture type - - - - Bass (modern) - tablature type - - Italian (historic) tablature type @@ -2326,10 +2382,6 @@ failed: tablature type - - Set - - Show Clef @@ -2454,6 +2506,68 @@ failed: Preview + + 6 strings (generic guitar) + tablatture type + + + + 4 strings (generic bass) + tablature type + + + + ukulele + + + + bandurria + + + + Custom + + + + Stem position: + + + + Above + + + + Below + + + + Stem style: + + + + Beside staff + + + + Through staff + + + + Half notes: + + + + As short stem + + + + As slashed stem + + + + Show Rests + + EditStringDataBase @@ -2504,6 +2618,14 @@ failed: Chord स्वरसंघात/कॉर्ड + + Edit Plain Text + + + + Edit HTML Text + + EditStyleBase @@ -2585,6 +2707,10 @@ spatium unit ---------- spatium unit ---------- +spatium unit +---------- +spatium unit +---------- spatium unit @@ -3177,6 +3303,18 @@ p, li { white-space: pre-wrap; } Clef/Key right margin + + Pedal, Trill + + + + Pedal Line + + + + Trill Line + + EditTempoBase @@ -3457,6 +3595,65 @@ spatium unit + + InspectorBarLine + + Staff default + + + + Tick + + + + Tick alt. + + + + Short + + + + Short alt. + + + + Type: + + + + Measure default + + + + Normal + + + + Dashed + + + + Dotted + + + + Double + + + + End + + + + Span: + + + + Custom + + + InspectorBeam @@ -3676,6 +3873,57 @@ spatium unit + + InspectorHairpin + + Form + पृष्ट/फॉर्म + + + Hairpin + + + + crescendo + + + + decrescendo + + + + Subtype: + + + + Dynamic Range: + + + + Velo. change: + + + + Staff + स्वरलिपि पंक्ति + + + Part + + + + SYstem + + + + reset value + + + + ... + + + InspectorImage @@ -3928,6 +4176,37 @@ spatium unit + + InspectorOttava + + Form + पृष्ट/फॉर्म + + + Ottava + + + + Subtype: + + + + 8va + + + + 15ma + + + + 8vb + + + + 15mb + + + InspectorRest @@ -3996,6 +4275,41 @@ spatium unit + + InspectorTrill + + Form + पृष्ट/फॉर्म + + + Trill + + + + Subtype: + + + + trill line + + + + up prall + + + + down prall + + + + prall prall + + + + wavy line + + + InspectorVBox @@ -4054,6 +4368,29 @@ spatium unit + + InspectorVolta + + Form + पृष्ट/फॉर्म + + + Volta + + + + Subtype: + + + + Open + + + + Closed + + + InstrumentDialogBase @@ -4109,23 +4446,23 @@ spatium unit स्वरलिपि पंक्तियाँ - visible + Clef - Clef + Add Linked Staff - linked + Visible - staff linked to previous + Linked - Add Linked Staff + Staff Linked to Previous @@ -4954,6 +5291,34 @@ Would you like to locate %2 now? -> + + 1 + + + + 2 + + + + 4 + + + + 8 + १ {8?} + + + 16 + १ {16?} + + + 32 + ३ {32?} + + + 64 + ३ {64?} + MeasuresDialogBase @@ -5129,10 +5494,6 @@ Would you like to locate %2 now? &About - - note entry mode - - edit mode @@ -5661,10 +6022,6 @@ Restore session? please choose a different name: - - Cannot read file: %1 error: %2 - - Overture / Score Writer Files <experimental> (*.ove *.scw);; @@ -5986,11 +6343,55 @@ please choose a different name: - &Plugins + &Plugins + + + + Find + + + + Dotted + + + + Tick 1 + + + + Tick 2 + + + + Short 1 + + + + Short 2 + + + + plop + + + + scoop + + + + NOTE entry mode + + + + DRUM entry mode + + + + TAB entry mode - Find + you cannot create an element @@ -6141,14 +6542,6 @@ please choose a different name: note head group - - OnTime: - - - - OffTime: - - invalid अमान्य @@ -6165,6 +6558,10 @@ please choose a different name: Dot3 + + NoteEvents + + OmrPanel @@ -6757,6 +7154,14 @@ save before closing? Choose Images Directory + + MuseScore Shortcuts + + + + Print Shortcuts + + PrefsDialogBase @@ -7392,6 +7797,10 @@ save before closing? Define Shortcut + + Print + + Properties @@ -8035,26 +8444,6 @@ Sequencer will be disabled. Form पृष्ट/फॉर्म - - Slur - - - - Slur End - - - - Staff: - - - - Voice: - - - - Tick: - - SlurPropertyBase @@ -8141,6 +8530,14 @@ Sequencer will be disabled. Form पृष्ट/फॉर्म + + CHORD + + + + NOTE + + SplitStaff @@ -9007,6 +9404,7 @@ altera Space + spatium unit @@ -9041,10 +9439,6 @@ altera frame line width - - mm - मिमी. - Margin: @@ -9077,6 +9471,10 @@ altera Background Color: + + sp + + TextStyleDialog @@ -9176,6 +9574,10 @@ please choose a different name: unstyled + + align vertical baseline + + TimeDialog @@ -9183,14 +9585,6 @@ please choose a different name: MuseScore: Time Signatures - - 4/4 common time - - - - 2/2 alla breve - - TimeDialogBase @@ -9349,10 +9743,6 @@ p, li { white-space: pre-wrap; } MuseScore: Transpose - - Transpose by Key - - Cb major / Ab minor @@ -9425,10 +9815,6 @@ p, li { white-space: pre-wrap; } Closest - - Transpose by Interval - - Perfect Unison @@ -9545,6 +9931,50 @@ p, li { white-space: pre-wrap; } Use double sharps and flats + + Transpose Chromatically + + + + By Key + + + + By Interval + + + + Transpose Diatonically + + + + Second + + + + Third + + + + Fourth + + + + Fifth + + + + Sixth + + + + Seventh + + + + Keep degree alterations + + TremoloBarDialog @@ -9773,10 +10203,6 @@ p, li { white-space: pre-wrap; } Save a Copy... - - Reload - - Create new score @@ -10317,14 +10743,6 @@ p, li { white-space: pre-wrap; } Save a copy of the score in addition to the current file - - File reload - - - - Reload score from file - - File close @@ -10717,10 +11135,6 @@ p, li { white-space: pre-wrap; } Page: end - - Add slur - - Crescendo @@ -10997,14 +11411,6 @@ p, li { white-space: pre-wrap; } Picture - - Player seek to begin - - - - Player seek to end - - &Transpose... @@ -11189,14 +11595,6 @@ p, li { white-space: pre-wrap; } Diatonic up - - next score - - - - previous score - - Reset user settings @@ -11225,10 +11623,6 @@ p, li { white-space: pre-wrap; } Respell pitches - - Grace: 8nd after - - Pan score while playing on/off @@ -11293,10 +11687,6 @@ p, li { white-space: pre-wrap; } Master Palette... - - Insert Measure - - Toggle View Mode @@ -11465,10 +11855,6 @@ p, li { white-space: pre-wrap; } Save Style... - - Save Style As Default... - - Select All @@ -11541,6 +11927,162 @@ p, li { white-space: pre-wrap; } Plugin Creator + + Slur + + + + Add Slur + + + + Add Crescendo + + + + Grace: 8th after + + + + Play Previous Chord + + + + Play Previous Measure + + + + Play Next Chord + + + + Play Next Measure + + + + Player Seek to Begin + + + + Player Seek to End + + + + Save Style as Default... + + + + String above (TAB) + + + + Select string above (TAB only) + + + + String below (TAB) + + + + Select string below (TAB only) + + + + Fret 0 (TAB) + + + + Add fret 0 on current string (TAB only) + + + + Fret 1 (TAB) + + + + Add fret 1 on current string (TAB only) + + + + Fret 2 (TAB) + + + + Add fret 2 on current string (TAB only) + + + + Fret 3 (TAB) + + + + Add fret 3 on current string (TAB only) + + + + Fret 4 (TAB) + + + + Add fret 4 of current string (TAB only) + + + + Fret 5 (TAB) + + + + Add fret 5 of current string (TAB only) + + + + Fret 6 (TAB) + + + + Add fret 6 of current string (TAB only) + + + + Fret 7 (TAB) + + + + Add fret 7 of current string (TAB only) + + + + Fret 8 (TAB) + + + + Add fret 8 of current string (TAB only) + + + + Fret 9 (TAB) + + + + Add fret 9 of current string (TAB only) + + + + Staff Types... + + + + Staff type editor + + + + Show staff type editor + + + + Note anchored Textline + + articulation @@ -11683,6 +12225,10 @@ p, li { white-space: pre-wrap; } Line + + Wavy line + + magTable diff --git a/share/locale/mscore_hr.ts b/share/locale/mscore_hr.ts index cad974a88d338..5bd0ad3204361 100644 --- a/share/locale/mscore_hr.ts +++ b/share/locale/mscore_hr.ts @@ -3,6 +3,14 @@ AboutBox + + About MuseScore + + + + Copy revision number + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -12,18 +20,10 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Support MuseScore with </span><a href="http://www.musescore.org/en/donate"><span style=" font-size:10pt; text-decoration: underline; color:#0000ff;">your donation</span></a></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Arial'; font-size:10pt;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Copyright </span><span style=" font-size:10pt;">©</span><span style=" font-family:'Arial'; font-size:10pt;"> 1999-2009 Werner Schweer and Others. </span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Copyright </span><span style=" font-size:10pt;">©</span><span style=" font-family:'Arial'; font-size:10pt;"> 1999-2012 Werner Schweer and Others. </span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Published under the GNU General Public License</span></p></body></html> - - About MuseScore - - - - Copy revision number - - AboutBoxDialog @@ -46,17 +46,6 @@ p, li { white-space: pre-wrap; } About MusicXML - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; font-size:10pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">MusicXML is an open file format for exchanging digital sheet music,</p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">supported by many applications. MusicXML is copyright © MakeMusic, Inc.</p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">All rights reserved. For more information see: <a href="http://www.makemusic.com/xml.html"><span style=" text-decoration: underline; color:#0000ff;">MakeMusic</span></a></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; text-decoration: underline; color:#0000ff;"></p></body></html> - - The MusicXML Public License: @@ -104,6 +93,17 @@ p, li { white-space: pre-wrap; } <p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p></body></html> + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans Serif'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">MusicXML is an open file format for exchanging digital sheet music,</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">supported by many applications. MusicXML is copyright © MakeMusic, Inc.</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">All rights reserved. For more information, see: <a href="http://www.makemusic.com/musicxml"><span style=" text-decoration: underline; color:#0000ff;">MakeMusic</span></a></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; text-decoration: underline; color:#0000ff;"></p></body></html> + + Accidental @@ -123,79 +123,79 @@ p, li { white-space: pre-wrap; } - album name + Remove Score - remove current score + Down - Remove Score + Up - move current score down in list + Add Score - Down + New - move current score up in list + Print Album - Up + MuseScore Album Files (*.album);; - Add Score + All Files (*) - create new album + MuseScore Files (*.mscz *.mscx *.msc);; - New + Join Scores - load an existing album + Load - Print Album + MuseScore: Add Score - MuseScore Album Files (*.album);; + MuseScore: Load Album - All Files (*) + Album Name - MuseScore Files (*.mscz *.mscx *.msc);; + Remove Current Score - Join Scores + Move Current Score Down in List - Load + Move Current Score Up in List - MuseScore: Add Score + Create New Album - MuseScore: Load Album + Load an Existing Album @@ -287,6 +287,14 @@ p, li { white-space: pre-wrap; } BarLine + + spanFrom: + + + + spanTo: + + BeamBase @@ -342,6 +350,37 @@ p, li { white-space: pre-wrap; } + + BoxBase + + Form + + + + bottomMargin: + + + + topGap: + + + + bottomGap: + + + + leftMargin: + + + + topMargin: + + + + rightMargin: + + + BoxPropertiesBase @@ -1402,6 +1441,22 @@ Failed: No. + + 1 + + + + 2 + + + + 3 + + + + 4 + + EditInstrumentBase @@ -2020,6 +2075,10 @@ Failed: B -1 + + A 7 + + EditRaster @@ -2048,6 +2107,17 @@ Failed: + + EditStaff + + Edit Short Name + + + + Edit Long Name + + + EditStaffBase @@ -2118,10 +2188,6 @@ Failed: Type: - - Edit... - - ... @@ -2305,16 +2371,6 @@ Failed: Select: - - Guitar (modern) - tablatture type - - - - Bass (modern) - tablature type - - Italian (historic) tablature type @@ -2325,10 +2381,6 @@ Failed: tablature type - - Set - - Show Clef @@ -2453,6 +2505,68 @@ Failed: Preview + + 6 strings (generic guitar) + tablatture type + + + + 4 strings (generic bass) + tablature type + + + + ukulele + + + + bandurria + + + + Custom + + + + Stem position: + + + + Above + + + + Below + + + + Stem style: + + + + Beside staff + + + + Through staff + + + + Half notes: + + + + As short stem + + + + As slashed stem + + + + Show Rests + + EditStringDataBase @@ -2503,6 +2617,14 @@ Failed: Chord + + Edit Plain Text + + + + Edit HTML Text + + EditStyleBase @@ -2576,6 +2698,10 @@ spatium unit ---------- spatium unit ---------- +spatium unit +---------- +spatium unit +---------- spatium unit @@ -3177,6 +3303,18 @@ p, li { white-space: pre-wrap; } Clef/Key right margin + + Pedal, Trill + + + + Pedal Line + + + + Trill Line + + EditTempoBase @@ -3457,6 +3595,65 @@ spatium unit + + InspectorBarLine + + Staff default + + + + Tick + + + + Tick alt. + + + + Short + + + + Short alt. + + + + Type: + + + + Measure default + + + + Normal + + + + Dashed + + + + Dotted + + + + Double + + + + End + + + + Span: + + + + Custom + + + InspectorBeam @@ -3676,6 +3873,57 @@ spatium unit + + InspectorHairpin + + Form + + + + Hairpin + + + + crescendo + + + + decrescendo + + + + Subtype: + + + + Dynamic Range: + + + + Velo. change: + + + + Staff + + + + Part + + + + SYstem + + + + reset value + + + + ... + + + InspectorImage @@ -3928,6 +4176,37 @@ spatium unit + + InspectorOttava + + Form + + + + Ottava + + + + Subtype: + + + + 8va + + + + 15ma + + + + 8vb + + + + 15mb + + + InspectorRest @@ -3996,6 +4275,41 @@ spatium unit + + InspectorTrill + + Form + + + + Trill + + + + Subtype: + + + + trill line + + + + up prall + + + + down prall + + + + prall prall + + + + wavy line + + + InspectorVBox @@ -4054,6 +4368,29 @@ spatium unit + + InspectorVolta + + Form + + + + Volta + + + + Subtype: + + + + Open + + + + Closed + + + InstrumentDialogBase @@ -4109,23 +4446,23 @@ spatium unit - visible + Clef - Clef + Add Linked Staff - linked + Visible - staff linked to previous + Linked - Add Linked Staff + Staff Linked to Previous @@ -4955,6 +5292,34 @@ Would you like to locate %2 now? -> + + 1 + + + + 2 + + + + 4 + + + + 8 + + + + 16 + + + + 32 + + + + 64 + + MeasuresDialogBase @@ -5194,10 +5559,6 @@ Would you like to locate %2 now? &About - - note entry mode - Note entry mode - edit mode Edit mode @@ -5662,10 +6023,6 @@ Restore session? please choose a different name: - - Cannot read file: %1 error: %2 - - Overture / Score Writer Files <experimental> (*.ove *.scw);; @@ -5987,11 +6344,55 @@ please choose a different name: - &Plugins + &Plugins + + + + Find + + + + Dotted + + + + Tick 1 + + + + Tick 2 + + + + Short 1 + + + + Short 2 + + + + plop + + + + scoop + + + + NOTE entry mode + + + + DRUM entry mode + + + + TAB entry mode - Find + you cannot create an element @@ -6142,14 +6543,6 @@ please choose a different name: note head group Note Head Group - - OnTime: - - - - OffTime: - - invalid Invalid @@ -6166,6 +6559,10 @@ please choose a different name: Dot3 + + NoteEvents + + OmrPanel @@ -6758,6 +7155,14 @@ save before closing? Choose Images Directory + + MuseScore Shortcuts + + + + Print Shortcuts + + PrefsDialogBase @@ -7393,6 +7798,10 @@ save before closing? Define Shortcut + + Print + + Properties @@ -8039,26 +8448,6 @@ Sequencer will be disabled. Form - - Slur - - - - Slur End - - - - Staff: - - - - Voice: - - - - Tick: - - SlurPropertyBase @@ -8145,6 +8534,14 @@ Sequencer will be disabled. Form + + CHORD + + + + NOTE + + SplitStaff @@ -9011,6 +9408,7 @@ altera Space + spatium unit Space: @@ -9045,10 +9443,6 @@ altera frame line width - - mm - - Margin: @@ -9081,6 +9475,10 @@ altera Background Color: + + sp + + TextStyleDialog @@ -9180,6 +9578,10 @@ please choose a different name: unstyled + + align vertical baseline + + TimeDialog @@ -9187,14 +9589,6 @@ please choose a different name: MuseScore: Time Signatures - - 4/4 common time - - - - 2/2 alla breve - - TimeDialogBase @@ -9353,10 +9747,6 @@ p, li { white-space: pre-wrap; } MuseScore: Transpose - - Transpose by Key - - Cb major / Ab minor @@ -9429,10 +9819,6 @@ p, li { white-space: pre-wrap; } Closest - - Transpose by Interval - - Perfect Unison @@ -9549,6 +9935,50 @@ p, li { white-space: pre-wrap; } Use double sharps and flats + + Transpose Chromatically + + + + By Key + + + + By Interval + + + + Transpose Diatonically + + + + Second + + + + Third + + + + Fourth + + + + Fifth + + + + Sixth + + + + Seventh + + + + Keep degree alterations + + TremoloBarDialog @@ -9777,10 +10207,6 @@ p, li { white-space: pre-wrap; } Save a Copy... - - Reload - - Create new score @@ -10321,14 +10747,6 @@ p, li { white-space: pre-wrap; } Save a copy of the score in addition to the current file - - File reload - - - - Reload score from file - - File close @@ -10721,10 +11139,6 @@ p, li { white-space: pre-wrap; } Page: end - - Add slur - - Crescendo @@ -11001,14 +11415,6 @@ p, li { white-space: pre-wrap; } Picture - - Player seek to begin - - - - Player seek to end - - &Transpose... @@ -11193,14 +11599,6 @@ p, li { white-space: pre-wrap; } Diatonic up - - next score - - - - previous score - - Reset user settings @@ -11229,10 +11627,6 @@ p, li { white-space: pre-wrap; } Respell pitches - - Grace: 8nd after - - Pan score while playing on/off @@ -11297,10 +11691,6 @@ p, li { white-space: pre-wrap; } Master Palette... - - Insert Measure - - Toggle View Mode @@ -11469,10 +11859,6 @@ p, li { white-space: pre-wrap; } Save Style... - - Save Style As Default... - - Select All @@ -11545,6 +11931,162 @@ p, li { white-space: pre-wrap; } Plugin Creator + + Slur + + + + Add Slur + + + + Add Crescendo + + + + Grace: 8th after + + + + Play Previous Chord + + + + Play Previous Measure + + + + Play Next Chord + + + + Play Next Measure + + + + Player Seek to Begin + + + + Player Seek to End + + + + Save Style as Default... + + + + String above (TAB) + + + + Select string above (TAB only) + + + + String below (TAB) + + + + Select string below (TAB only) + + + + Fret 0 (TAB) + + + + Add fret 0 on current string (TAB only) + + + + Fret 1 (TAB) + + + + Add fret 1 on current string (TAB only) + + + + Fret 2 (TAB) + + + + Add fret 2 on current string (TAB only) + + + + Fret 3 (TAB) + + + + Add fret 3 on current string (TAB only) + + + + Fret 4 (TAB) + + + + Add fret 4 of current string (TAB only) + + + + Fret 5 (TAB) + + + + Add fret 5 of current string (TAB only) + + + + Fret 6 (TAB) + + + + Add fret 6 of current string (TAB only) + + + + Fret 7 (TAB) + + + + Add fret 7 of current string (TAB only) + + + + Fret 8 (TAB) + + + + Add fret 8 of current string (TAB only) + + + + Fret 9 (TAB) + + + + Add fret 9 of current string (TAB only) + + + + Staff Types... + + + + Staff type editor + + + + Show staff type editor + + + + Note anchored Textline + + articulation @@ -11687,6 +12229,10 @@ p, li { white-space: pre-wrap; } Line + + Wavy line + + magTable diff --git a/share/locale/mscore_hu.ts b/share/locale/mscore_hu.ts index 4509e6c617ba0..9a780caff4c60 100644 --- a/share/locale/mscore_hu.ts +++ b/share/locale/mscore_hu.ts @@ -3,6 +3,14 @@ AboutBox + + About MuseScore + + + + Copy revision number + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -12,9 +20,9 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Support MuseScore with </span><a href="http://www.musescore.org/en/donate"><span style=" font-size:10pt; text-decoration: underline; color:#0000ff;">your donation</span></a></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Arial'; font-size:10pt;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Copyright </span><span style=" font-size:10pt;">©</span><span style=" font-family:'Arial'; font-size:10pt;"> 1999-2009 Werner Schweer and Others. </span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Copyright </span><span style=" font-size:10pt;">©</span><span style=" font-family:'Arial'; font-size:10pt;"> 1999-2012 Werner Schweer and Others. </span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Published under the GNU General Public License</span></p></body></html> - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">line break + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">line break <html><head><meta name="qrichtext" content="1" /><style type="text/css">line break p, li { white-space: pre-wrap; }line break </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;">line break @@ -23,15 +31,7 @@ p, li { white-space: pre-wrap; }line break line break <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Arial'; font-size:10pt;"></p>line break <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Copyright </span><span style=" font-size:10pt;">©</span><span style=" font-family:'Arial'; font-size:10pt;"> 1999-2009 Werner Schweer and Others. </span></p>line break -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">A GNU General Public License feltételeinek megfelelő kiadás</span></p></body></html> - - - About MuseScore - - - - Copy revision number - +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">A GNU General Public License feltételeinek megfelelő kiadás</span></p></body></html> {3C?} {4.0/?} {3.?} {40/?} {1"?} {2'?} {8.25p?} {400;?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {10p?} {10p?} {0000f?} {10p?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {10p?} {10p?} {0000f?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {10p?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {10p?} {10p?} {10p?} {1999-2012 ?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {10p?} @@ -55,17 +55,6 @@ line break About MusicXML - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; font-size:10pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">MusicXML is an open file format for exchanging digital sheet music,</p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">supported by many applications. MusicXML is copyright © MakeMusic, Inc.</p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">All rights reserved. For more information see: <a href="http://www.makemusic.com/xml.html"><span style=" text-decoration: underline; color:#0000ff;">MakeMusic</span></a></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; text-decoration: underline; color:#0000ff;"></p></body></html> - - The MusicXML Public License: @@ -113,6 +102,17 @@ p, li { white-space: pre-wrap; } <p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p></body></html> + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans Serif'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">MusicXML is an open file format for exchanging digital sheet music,</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">supported by many applications. MusicXML is copyright © MakeMusic, Inc.</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">All rights reserved. For more information, see: <a href="http://www.makemusic.com/musicxml"><span style=" text-decoration: underline; color:#0000ff;">MakeMusic</span></a></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; text-decoration: underline; color:#0000ff;"></p></body></html> + + Accidental @@ -131,30 +131,14 @@ p, li { white-space: pre-wrap; } Album Name: - - album name - - - - remove current score - - Remove Score - - move current score down in list - - Down Le - - move current score up in list - - Up Fel @@ -163,18 +147,10 @@ p, li { white-space: pre-wrap; } Add Score - - create new album - - New Új - - load an existing album - - Print Album @@ -207,6 +183,30 @@ p, li { white-space: pre-wrap; } MuseScore: Load Album + + Album Name + + + + Remove Current Score + + + + Move Current Score Down in List + + + + Move Current Score Up in List + + + + Create New Album + + + + Load an Existing Album + + ArticulationBase @@ -296,6 +296,14 @@ p, li { white-space: pre-wrap; } BarLine Ütemvonal + + spanFrom: + + + + spanTo: + + BeamBase @@ -351,6 +359,37 @@ p, li { white-space: pre-wrap; } + + BoxBase + + Form + Ablak + + + bottomMargin: + + + + topGap: + + + + bottomGap: + + + + leftMargin: + + + + topMargin: + + + + rightMargin: + + + BoxPropertiesBase @@ -1412,6 +1451,22 @@ sikertelen: No. + + 1 + 1 + + + 2 + 2 + + + 3 + 3 + + + 4 + 4 + EditInstrumentBase @@ -2030,6 +2085,10 @@ sikertelen: B -1 + + A 7 + + EditRaster @@ -2058,6 +2117,17 @@ sikertelen: + + EditStaff + + Edit Short Name + + + + Edit Long Name + + + EditStaffBase @@ -2128,10 +2198,6 @@ sikertelen: Type: Típus: - - Edit... - - ... ... @@ -2315,16 +2381,6 @@ sikertelen: Select: - - Guitar (modern) - tablatture type - - - - Bass (modern) - tablature type - - Italian (historic) tablature type @@ -2335,10 +2391,6 @@ sikertelen: tablature type - - Set - - Show Clef @@ -2463,6 +2515,68 @@ sikertelen: Preview Előnézet + + 6 strings (generic guitar) + tablatture type + + + + 4 strings (generic bass) + tablature type + + + + ukulele + + + + bandurria + + + + Custom + + + + Stem position: + + + + Above + Felül + + + Below + + + + Stem style: + + + + Beside staff + + + + Through staff + + + + Half notes: + + + + As short stem + + + + As slashed stem + + + + Show Rests + + EditStringDataBase @@ -2513,6 +2627,14 @@ sikertelen: Chord Akkord + + Edit Plain Text + + + + Edit HTML Text + + EditStyleBase @@ -2602,6 +2724,10 @@ spatium unit ---------- spatium unit ---------- +spatium unit +---------- +spatium unit +---------- spatium unit sp @@ -3186,6 +3312,18 @@ p, li { white-space: pre-wrap; } Clef/Key right margin + + Pedal, Trill + + + + Pedal Line + + + + Trill Line + + EditTempoBase @@ -3466,6 +3604,65 @@ spatium unit + + InspectorBarLine + + Staff default + + + + Tick + + + + Tick alt. + + + + Short + + + + Short alt. + + + + Type: + Típus: + + + Measure default + + + + Normal + Normál + + + Dashed + Áthúzott + + + Dotted + + + + Double + + + + End + + + + Span: + + + + Custom + + + InspectorBeam @@ -3685,6 +3882,57 @@ spatium unit ... + + InspectorHairpin + + Form + Ablak + + + Hairpin + Hajtű + + + crescendo + + + + decrescendo + + + + Subtype: + + + + Dynamic Range: + + + + Velo. change: + + + + Staff + Vonalrendszer + + + Part + + + + SYstem + + + + reset value + + + + ... + ... + + InspectorImage @@ -3937,6 +4185,37 @@ spatium unit + + InspectorOttava + + Form + Ablak + + + Ottava + Oktáv + + + Subtype: + + + + 8va + 8va + + + 15ma + 15ma + + + 8vb + 8vb + + + 15mb + 15mb + + InspectorRest @@ -4005,6 +4284,41 @@ spatium unit + + InspectorTrill + + Form + Ablak + + + Trill + Trilla + + + Subtype: + + + + trill line + + + + up prall + + + + down prall + + + + prall prall + + + + wavy line + + + InspectorVBox @@ -4063,6 +4377,29 @@ spatium unit + + InspectorVolta + + Form + Ablak + + + Volta + Prima volta... + + + Subtype: + + + + Open + + + + Closed + + + InstrumentDialogBase @@ -4117,24 +4454,24 @@ spatium unit Staves Vonalrendszerek - - visible - látható - Clef Kulcs - linked + Add Linked Staff - staff linked to previous + Visible + Látható + + + Linked - Add Linked Staff + Staff Linked to Previous @@ -4964,6 +5301,34 @@ Would you like to locate %2 now? -> + + 1 + 1 + + + 2 + 2 + + + 4 + 4 + + + 8 + 8 + + + 16 + 16 + + + 32 + 32 + + + 64 + 64 + MeasuresDialogBase @@ -5245,10 +5610,6 @@ módosításait bezárás előtt? no score nincs kotta - - note entry mode - hangjegybevitel mód - edit mode szerkesztési mód @@ -5670,10 +6031,6 @@ Helyreállítsa a munkamenetet? please choose a different name: - - Cannot read file: %1 error: %2 - - Overture / Score Writer Files <experimental> (*.ove *.scw);; @@ -5951,55 +6308,99 @@ please choose a different name: - Delete Profile + Delete Profile + + + + LilyPond Format (*.ly) + + + + MuseScore: Export Parts + + + + Parts were successfully exported + + + + Continuous View + + + + About &MusicXML + + + + Report a bug + + + + MuseScore: Load Plugin + + + + MuseScore Plugin (*.qml);;All Files (*) + + + + MuseScore: Save Plugin + + + + MuseScore Plugin File (*.qml) + + + + &Plugins - LilyPond Format (*.ly) + Find - MuseScore: Export Parts + Dotted - Parts were successfully exported + Tick 1 - Continuous View + Tick 2 - About &MusicXML + Short 1 - Report a bug + Short 2 - MuseScore: Load Plugin + plop - MuseScore Plugin (*.qml);;All Files (*) + scoop - MuseScore: Save Plugin + NOTE entry mode - MuseScore Plugin File (*.qml) + DRUM entry mode - &Plugins + TAB entry mode - Find + you cannot create an element @@ -6150,14 +6551,6 @@ please choose a different name: note head group kottafejcsoport - - OnTime: - Megszólalás ideje: - - - OffTime: - Elhallgatás ideje: - invalid érvénytelen @@ -6174,6 +6567,10 @@ please choose a different name: Dot3 + + NoteEvents + + OmrPanel @@ -6766,6 +7163,14 @@ save before closing? Choose Images Directory + + MuseScore Shortcuts + + + + Print Shortcuts + + PrefsDialogBase @@ -7401,6 +7806,10 @@ save before closing? Define Shortcut + + Print + Nyomtatás + Properties @@ -8047,26 +8456,6 @@ Sequencer will be disabled. Form Ablak - - Slur - Hajlítás - - - Slur End - Hajlítás vége - - - Staff: - Vonalrendszer: - - - Voice: - Szólam: - - - Tick: - Ütés: - SlurPropertyBase @@ -8153,6 +8542,14 @@ Sequencer will be disabled. Form Ablak + + CHORD + + + + NOTE + + SplitStaff @@ -9019,6 +9416,7 @@ altera Space + spatium unit Szóköz @@ -9053,10 +9451,6 @@ altera frame line width keretvonal szélessége - - mm - mm - Margin: Margó: @@ -9089,6 +9483,10 @@ altera Background Color: + + sp + sp + TextStyleDialog @@ -9188,6 +9586,10 @@ please choose a different name: unstyled + + align vertical baseline + + TimeDialog @@ -9195,14 +9597,6 @@ please choose a different name: MuseScore: Time Signatures MuseScore: Ütemmutatók - - 4/4 common time - 4/4 rövidítve - - - 2/2 alla breve - 2/2 rövidítve - TimeDialogBase @@ -9364,10 +9758,6 @@ p, li { white-space: pre-wrap; } MuseScore: Transpose MuseScore: Transzponálás - - Transpose by Key - Transzponálás előjegyzéssel - Cb major / Ab minor Cesz-dúr / asz-moll @@ -9440,10 +9830,6 @@ p, li { white-space: pre-wrap; } Closest Legközelebbi - - Transpose by Interval - Transzponálás hangközzel - Perfect Unison Tiszta prím @@ -9560,6 +9946,50 @@ p, li { white-space: pre-wrap; } Use double sharps and flats Használjon dupla kereszteket és b-ket + + Transpose Chromatically + + + + By Key + + + + By Interval + + + + Transpose Diatonically + + + + Second + + + + Third + + + + Fourth + + + + Fifth + + + + Sixth + + + + Seventh + + + + Keep degree alterations + + TremoloBarDialog @@ -9788,10 +10218,6 @@ p, li { white-space: pre-wrap; } Save a Copy... Másolat mentése... - - Reload - Újratöltés - Create new score Új kotta létrehozása @@ -10332,14 +10758,6 @@ p, li { white-space: pre-wrap; } Save a copy of the score in addition to the current file A kotta egy másolatának mentése a meglévő fájl mellett - - File reload - Fájl újratöltése - - - Reload score from file - Kotta újbóli betöltése fájlból - File close Fájl bezárása @@ -10732,10 +11150,6 @@ p, li { white-space: pre-wrap; } Page: end - - Add slur - - Crescendo Crescendo @@ -11012,14 +11426,6 @@ p, li { white-space: pre-wrap; } Picture - - Player seek to begin - - - - Player seek to end - - &Transpose... @@ -11204,14 +11610,6 @@ p, li { white-space: pre-wrap; } Diatonic up - - next score - - - - previous score - - Reset user settings @@ -11240,10 +11638,6 @@ p, li { white-space: pre-wrap; } Respell pitches - - Grace: 8nd after - - Pan score while playing on/off @@ -11308,10 +11702,6 @@ p, li { white-space: pre-wrap; } Master Palette... - - Insert Measure - - Toggle View Mode @@ -11480,10 +11870,6 @@ p, li { white-space: pre-wrap; } Save Style... - - Save Style As Default... - - Select All @@ -11556,6 +11942,162 @@ p, li { white-space: pre-wrap; } Plugin Creator + + Slur + Hajlítás + + + Add Slur + + + + Add Crescendo + + + + Grace: 8th after + + + + Play Previous Chord + + + + Play Previous Measure + + + + Play Next Chord + + + + Play Next Measure + + + + Player Seek to Begin + + + + Player Seek to End + + + + Save Style as Default... + + + + String above (TAB) + + + + Select string above (TAB only) + + + + String below (TAB) + + + + Select string below (TAB only) + + + + Fret 0 (TAB) + + + + Add fret 0 on current string (TAB only) + + + + Fret 1 (TAB) + + + + Add fret 1 on current string (TAB only) + + + + Fret 2 (TAB) + + + + Add fret 2 on current string (TAB only) + + + + Fret 3 (TAB) + + + + Add fret 3 on current string (TAB only) + + + + Fret 4 (TAB) + + + + Add fret 4 of current string (TAB only) + + + + Fret 5 (TAB) + + + + Add fret 5 of current string (TAB only) + + + + Fret 6 (TAB) + + + + Add fret 6 of current string (TAB only) + + + + Fret 7 (TAB) + + + + Add fret 7 of current string (TAB only) + + + + Fret 8 (TAB) + + + + Add fret 8 of current string (TAB only) + + + + Fret 9 (TAB) + + + + Add fret 9 of current string (TAB only) + + + + Staff Types... + + + + Staff type editor + + + + Show staff type editor + + + + Note anchored Textline + + articulation @@ -11698,6 +12240,10 @@ p, li { white-space: pre-wrap; } Line Vonal + + Wavy line + + magTable diff --git a/share/locale/mscore_id.ts b/share/locale/mscore_id.ts index 587b2cc2131d6..566b59691e193 100644 --- a/share/locale/mscore_id.ts +++ b/share/locale/mscore_id.ts @@ -3,6 +3,14 @@ AboutBox + + About MuseScore + + + + Copy revision number + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -12,18 +20,10 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Support MuseScore with </span><a href="http://www.musescore.org/en/donate"><span style=" font-size:10pt; text-decoration: underline; color:#0000ff;">your donation</span></a></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Arial'; font-size:10pt;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Copyright </span><span style=" font-size:10pt;">©</span><span style=" font-family:'Arial'; font-size:10pt;"> 1999-2009 Werner Schweer and Others. </span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Copyright </span><span style=" font-size:10pt;">©</span><span style=" font-family:'Arial'; font-size:10pt;"> 1999-2012 Werner Schweer and Others. </span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Published under the GNU General Public License</span></p></body></html> - - About MuseScore - - - - Copy revision number - - AboutBoxDialog @@ -46,17 +46,6 @@ p, li { white-space: pre-wrap; } About MusicXML - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; font-size:10pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">MusicXML is an open file format for exchanging digital sheet music,</p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">supported by many applications. MusicXML is copyright © MakeMusic, Inc.</p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">All rights reserved. For more information see: <a href="http://www.makemusic.com/xml.html"><span style=" text-decoration: underline; color:#0000ff;">MakeMusic</span></a></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; text-decoration: underline; color:#0000ff;"></p></body></html> - - The MusicXML Public License: @@ -104,6 +93,17 @@ p, li { white-space: pre-wrap; } <p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p></body></html> + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans Serif'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">MusicXML is an open file format for exchanging digital sheet music,</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">supported by many applications. MusicXML is copyright © MakeMusic, Inc.</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">All rights reserved. For more information, see: <a href="http://www.makemusic.com/musicxml"><span style=" text-decoration: underline; color:#0000ff;">MakeMusic</span></a></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; text-decoration: underline; color:#0000ff;"></p></body></html> + + Accidental @@ -123,79 +123,79 @@ p, li { white-space: pre-wrap; } - album name + Remove Score - remove current score + Down - Remove Score + Up - move current score down in list + Add Score - Down + New - move current score up in list + Print Album - Up + MuseScore Album Files (*.album);; - Add Score + All Files (*) - create new album + MuseScore Files (*.mscz *.mscx *.msc);; - New + Join Scores - load an existing album + Load - Print Album + MuseScore: Add Score - MuseScore Album Files (*.album);; + MuseScore: Load Album - All Files (*) + Album Name - MuseScore Files (*.mscz *.mscx *.msc);; + Remove Current Score - Join Scores + Move Current Score Down in List - Load + Move Current Score Up in List - MuseScore: Add Score + Create New Album - MuseScore: Load Album + Load an Existing Album @@ -287,6 +287,14 @@ p, li { white-space: pre-wrap; } BarLine + + spanFrom: + + + + spanTo: + + BeamBase @@ -342,6 +350,37 @@ p, li { white-space: pre-wrap; } + + BoxBase + + Form + + + + bottomMargin: + + + + topGap: + + + + bottomGap: + + + + leftMargin: + + + + topMargin: + + + + rightMargin: + + + BoxPropertiesBase @@ -1401,6 +1440,22 @@ failed: No. + + 1 + 1 + + + 2 + 2 + + + 3 + 3 + + + 4 + 4 + EditInstrumentBase @@ -2019,6 +2074,10 @@ failed: B -1 + + A 7 + + EditRaster @@ -2047,6 +2106,17 @@ failed: + + EditStaff + + Edit Short Name + + + + Edit Long Name + + + EditStaffBase @@ -2117,10 +2187,6 @@ failed: Type: - - Edit... - - ... @@ -2304,16 +2370,6 @@ failed: Select: - - Guitar (modern) - tablatture type - - - - Bass (modern) - tablature type - - Italian (historic) tablature type @@ -2324,10 +2380,6 @@ failed: tablature type - - Set - - Show Clef @@ -2452,6 +2504,68 @@ failed: Preview + + 6 strings (generic guitar) + tablatture type + + + + 4 strings (generic bass) + tablature type + + + + ukulele + + + + bandurria + + + + Custom + + + + Stem position: + + + + Above + + + + Below + + + + Stem style: + + + + Beside staff + + + + Through staff + + + + Half notes: + + + + As short stem + + + + As slashed stem + + + + Show Rests + + EditStringDataBase @@ -2502,6 +2616,14 @@ failed: Chord + + Edit Plain Text + + + + Edit HTML Text + + EditStyleBase @@ -2599,6 +2721,10 @@ spatium unit ---------- spatium unit ---------- +spatium unit +---------- +spatium unit +---------- spatium unit @@ -3175,6 +3301,18 @@ p, li { white-space: pre-wrap; } Clef/Key right margin + + Pedal, Trill + + + + Pedal Line + + + + Trill Line + + EditTempoBase @@ -3455,6 +3593,65 @@ spatium unit + + InspectorBarLine + + Staff default + + + + Tick + + + + Tick alt. + + + + Short + + + + Short alt. + + + + Type: + + + + Measure default + + + + Normal + + + + Dashed + + + + Dotted + + + + Double + + + + End + + + + Span: + + + + Custom + + + InspectorBeam @@ -3674,6 +3871,57 @@ spatium unit + + InspectorHairpin + + Form + + + + Hairpin + + + + crescendo + + + + decrescendo + + + + Subtype: + + + + Dynamic Range: + + + + Velo. change: + + + + Staff + + + + Part + + + + SYstem + + + + reset value + + + + ... + + + InspectorImage @@ -3926,6 +4174,37 @@ spatium unit + + InspectorOttava + + Form + + + + Ottava + + + + Subtype: + + + + 8va + + + + 15ma + + + + 8vb + + + + 15mb + + + InspectorRest @@ -3994,6 +4273,41 @@ spatium unit + + InspectorTrill + + Form + + + + Trill + + + + Subtype: + + + + trill line + + + + up prall + + + + down prall + + + + prall prall + + + + wavy line + + + InspectorVBox @@ -4052,6 +4366,29 @@ spatium unit + + InspectorVolta + + Form + + + + Volta + + + + Subtype: + + + + Open + + + + Closed + + + InstrumentDialogBase @@ -4107,23 +4444,23 @@ spatium unit - visible + Clef - Clef + Add Linked Staff - linked + Visible - staff linked to previous + Linked - Add Linked Staff + Staff Linked to Previous @@ -4951,6 +5288,34 @@ Would you like to locate %2 now? -> + + 1 + 1 + + + 2 + 2 + + + 4 + 4 + + + 8 + 8 + + + 16 + 16 + + + 32 + 32 + + + 64 + 64 + MeasuresDialogBase @@ -5235,10 +5600,6 @@ before closing? no score - - note entry mode - - edit mode @@ -5654,10 +6015,6 @@ Restore session? please choose a different name: - - Cannot read file: %1 error: %2 - - Overture / Score Writer Files <experimental> (*.ove *.scw);; @@ -5979,11 +6336,55 @@ please choose a different name: - &Plugins + &Plugins + + + + Find + + + + Dotted + + + + Tick 1 + + + + Tick 2 + + + + Short 1 + + + + Short 2 + + + + plop + + + + scoop + + + + NOTE entry mode + + + + DRUM entry mode + + + + TAB entry mode - Find + you cannot create an element @@ -6134,14 +6535,6 @@ please choose a different name: note head group - - OnTime: - - - - OffTime: - - invalid @@ -6158,6 +6551,10 @@ please choose a different name: Dot3 + + NoteEvents + + OmrPanel @@ -6750,6 +7147,14 @@ save before closing? Choose Images Directory + + MuseScore Shortcuts + + + + Print Shortcuts + + PrefsDialogBase @@ -7385,6 +7790,10 @@ save before closing? Define Shortcut + + Print + + Properties @@ -8027,26 +8436,6 @@ Sequencer will be disabled. Form - - Slur - - - - Slur End - - - - Staff: - - - - Voice: - - - - Tick: - - SlurPropertyBase @@ -8133,6 +8522,14 @@ Sequencer will be disabled. Form + + CHORD + + + + NOTE + + SplitStaff @@ -8999,6 +9396,7 @@ altera Space + spatium unit @@ -9033,10 +9431,6 @@ altera frame line width - - mm - mm - Margin: @@ -9069,6 +9463,10 @@ altera Background Color: + + sp + + TextStyleDialog @@ -9168,6 +9566,10 @@ please choose a different name: unstyled + + align vertical baseline + + TimeDialog @@ -9175,14 +9577,6 @@ please choose a different name: MuseScore: Time Signatures - - 4/4 common time - - - - 2/2 alla breve - - TimeDialogBase @@ -9341,10 +9735,6 @@ p, li { white-space: pre-wrap; } MuseScore: Transpose - - Transpose by Key - - Cb major / Ab minor @@ -9417,10 +9807,6 @@ p, li { white-space: pre-wrap; } Closest - - Transpose by Interval - - Perfect Unison @@ -9537,6 +9923,50 @@ p, li { white-space: pre-wrap; } Use double sharps and flats + + Transpose Chromatically + + + + By Key + + + + By Interval + + + + Transpose Diatonically + + + + Second + + + + Third + + + + Fourth + + + + Fifth + + + + Sixth + + + + Seventh + + + + Keep degree alterations + + TremoloBarDialog @@ -9765,10 +10195,6 @@ p, li { white-space: pre-wrap; } Save a Copy... Simpan Sebagai Salinan - - Reload - - Create new score Buat partitur baru @@ -10309,14 +10735,6 @@ p, li { white-space: pre-wrap; } Save a copy of the score in addition to the current file - - File reload - - - - Reload score from file - - File close @@ -10709,10 +11127,6 @@ p, li { white-space: pre-wrap; } Page: end - - Add slur - - Crescendo @@ -10989,14 +11403,6 @@ p, li { white-space: pre-wrap; } Picture - - Player seek to begin - - - - Player seek to end - - &Transpose... @@ -11181,14 +11587,6 @@ p, li { white-space: pre-wrap; } Diatonic up - - next score - - - - previous score - - Reset user settings @@ -11217,10 +11615,6 @@ p, li { white-space: pre-wrap; } Respell pitches - - Grace: 8nd after - - Pan score while playing on/off @@ -11285,10 +11679,6 @@ p, li { white-space: pre-wrap; } Master Palette... - - Insert Measure - - Toggle View Mode @@ -11457,10 +11847,6 @@ p, li { white-space: pre-wrap; } Save Style... - - Save Style As Default... - - Select All @@ -11533,6 +11919,162 @@ p, li { white-space: pre-wrap; } Plugin Creator + + Slur + + + + Add Slur + + + + Add Crescendo + + + + Grace: 8th after + + + + Play Previous Chord + + + + Play Previous Measure + + + + Play Next Chord + + + + Play Next Measure + + + + Player Seek to Begin + + + + Player Seek to End + + + + Save Style as Default... + + + + String above (TAB) + + + + Select string above (TAB only) + + + + String below (TAB) + + + + Select string below (TAB only) + + + + Fret 0 (TAB) + + + + Add fret 0 on current string (TAB only) + + + + Fret 1 (TAB) + + + + Add fret 1 on current string (TAB only) + + + + Fret 2 (TAB) + + + + Add fret 2 on current string (TAB only) + + + + Fret 3 (TAB) + + + + Add fret 3 on current string (TAB only) + + + + Fret 4 (TAB) + + + + Add fret 4 of current string (TAB only) + + + + Fret 5 (TAB) + + + + Add fret 5 of current string (TAB only) + + + + Fret 6 (TAB) + + + + Add fret 6 of current string (TAB only) + + + + Fret 7 (TAB) + + + + Add fret 7 of current string (TAB only) + + + + Fret 8 (TAB) + + + + Add fret 8 of current string (TAB only) + + + + Fret 9 (TAB) + + + + Add fret 9 of current string (TAB only) + + + + Staff Types... + + + + Staff type editor + + + + Show staff type editor + + + + Note anchored Textline + + articulation @@ -11675,6 +12217,10 @@ p, li { white-space: pre-wrap; } Line + + Wavy line + + magTable diff --git a/share/locale/mscore_it.ts b/share/locale/mscore_it.ts index 93dc168768457..7be1f59d94e9a 100644 --- a/share/locale/mscore_it.ts +++ b/share/locale/mscore_it.ts @@ -3,6 +3,14 @@ AboutBox + + About MuseScore + + + + Copy revision number + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -12,9 +20,9 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Support MuseScore with </span><a href="http://www.musescore.org/en/donate"><span style=" font-size:10pt; text-decoration: underline; color:#0000ff;">your donation</span></a></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Arial'; font-size:10pt;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Copyright </span><span style=" font-size:10pt;">©</span><span style=" font-family:'Arial'; font-size:10pt;"> 1999-2009 Werner Schweer and Others. </span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Copyright </span><span style=" font-size:10pt;">©</span><span style=" font-family:'Arial'; font-size:10pt;"> 1999-2012 Werner Schweer and Others. </span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Published under the GNU General Public License</span></p></body></html> - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> @@ -23,15 +31,7 @@ p, li { white-space: pre-wrap; } <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Arial'; font-size:10pt;"></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Copyright </span><span style=" font-size:10pt;">©</span><span style=" font-family:'Arial'; font-size:10pt;"> 1999-2009 Werner Schweer and Others. </span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Published under the GNU General Public License</span></p></body></html> - - - About MuseScore - - - - Copy revision number - +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Published under the GNU General Public License</span></p></body></html> {3C?} {4.0/?} {3.?} {40/?} {1"?} {2'?} {8.25p?} {400;?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {10p?} {10p?} {0000f?} {10p?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {10p?} {10p?} {0000f?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {10p?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {10p?} {10p?} {10p?} {1999-2012 ?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {10p?} @@ -55,17 +55,6 @@ p, li { white-space: pre-wrap; } About MusicXML - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; font-size:10pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">MusicXML is an open file format for exchanging digital sheet music,</p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">supported by many applications. MusicXML is copyright © MakeMusic, Inc.</p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">All rights reserved. For more information see: <a href="http://www.makemusic.com/xml.html"><span style=" text-decoration: underline; color:#0000ff;">MakeMusic</span></a></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; text-decoration: underline; color:#0000ff;"></p></body></html> - - The MusicXML Public License: @@ -113,6 +102,17 @@ p, li { white-space: pre-wrap; } <p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p></body></html> + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans Serif'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">MusicXML is an open file format for exchanging digital sheet music,</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">supported by many applications. MusicXML is copyright © MakeMusic, Inc.</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">All rights reserved. For more information, see: <a href="http://www.makemusic.com/musicxml"><span style=" text-decoration: underline; color:#0000ff;">MakeMusic</span></a></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; text-decoration: underline; color:#0000ff;"></p></body></html> + + Accidental @@ -132,79 +132,79 @@ p, li { white-space: pre-wrap; } - album name + Remove Score - remove current score + Down - Remove Score + Up - move current score down in list + Add Score - Down - + New + Nuova - move current score up in list + Print Album - Up + MuseScore Album Files (*.album);; - Add Score + All Files (*) - create new album + MuseScore Files (*.mscz *.mscx *.msc);; - New - Nuova + Join Scores + - load an existing album - + Load + Carica - Print Album + MuseScore: Add Score - MuseScore Album Files (*.album);; + MuseScore: Load Album - All Files (*) + Album Name - MuseScore Files (*.mscz *.mscx *.msc);; + Remove Current Score - Join Scores + Move Current Score Down in List - Load - Carica + Move Current Score Up in List + - MuseScore: Add Score + Create New Album - MuseScore: Load Album + Load an Existing Album @@ -296,6 +296,14 @@ p, li { white-space: pre-wrap; } BarLine Tipo Stanghetta + + spanFrom: + + + + spanTo: + + BeamBase @@ -351,6 +359,37 @@ p, li { white-space: pre-wrap; } + + BoxBase + + Form + + + + bottomMargin: + + + + topGap: + + + + bottomGap: + + + + leftMargin: + + + + topMargin: + + + + rightMargin: + + + BoxPropertiesBase @@ -1412,6 +1451,22 @@ fallito: No. + + 1 + 1 + + + 2 + 2 + + + 3 + 3 + + + 4 + 4 + EditInstrumentBase @@ -2030,6 +2085,10 @@ fallito: B -1 + + A 7 + + EditRaster @@ -2058,6 +2117,17 @@ fallito: + + EditStaff + + Edit Short Name + + + + Edit Long Name + + + EditStaffBase @@ -2128,10 +2198,6 @@ fallito: Type: Tipo: - - Edit... - - ... ... @@ -2315,16 +2381,6 @@ fallito: Select: - - Guitar (modern) - tablatture type - - - - Bass (modern) - tablature type - - Italian (historic) tablature type @@ -2335,10 +2391,6 @@ fallito: tablature type - - Set - - Show Clef @@ -2463,6 +2515,68 @@ fallito: Preview Anteprima + + 6 strings (generic guitar) + tablatture type + + + + 4 strings (generic bass) + tablature type + + + + ukulele + + + + bandurria + + + + Custom + + + + Stem position: + + + + Above + Sopra + + + Below + + + + Stem style: + + + + Beside staff + + + + Through staff + + + + Half notes: + + + + As short stem + + + + As slashed stem + + + + Show Rests + + EditStringDataBase @@ -2513,6 +2627,14 @@ fallito: Chord Accordo + + Edit Plain Text + + + + Edit HTML Text + + EditStyleBase @@ -2598,6 +2720,10 @@ spatium unit ---------- spatium unit ---------- +spatium unit +---------- +spatium unit +---------- spatium unit sp @@ -3186,6 +3312,18 @@ p, li { white-space: pre-wrap; } Clef/Key right margin + + Pedal, Trill + + + + Pedal Line + + + + Trill Line + + EditTempoBase @@ -3466,6 +3604,65 @@ spatium unit + + InspectorBarLine + + Staff default + + + + Tick + + + + Tick alt. + + + + Short + + + + Short alt. + + + + Type: + Tipo: + + + Measure default + + + + Normal + Normale + + + Dashed + Tratteggiata + + + Dotted + + + + Double + + + + End + Fine + + + Span: + + + + Custom + + + InspectorBeam @@ -3685,6 +3882,57 @@ spatium unit ... + + InspectorHairpin + + Form + + + + Hairpin + Forcella + + + crescendo + + + + decrescendo + + + + Subtype: + + + + Dynamic Range: + + + + Velo. change: + + + + Staff + Pentagramma + + + Part + + + + SYstem + + + + reset value + + + + ... + ... + + InspectorImage @@ -3937,6 +4185,37 @@ spatium unit + + InspectorOttava + + Form + + + + Ottava + Ottava + + + Subtype: + + + + 8va + 8va + + + 15ma + 15ma + + + 8vb + 8vb + + + 15mb + 15mb + + InspectorRest @@ -4005,6 +4284,41 @@ spatium unit + + InspectorTrill + + Form + + + + Trill + Trillo + + + Subtype: + + + + trill line + + + + up prall + + + + down prall + + + + prall prall + + + + wavy line + + + InspectorVBox @@ -4063,6 +4377,29 @@ spatium unit + + InspectorVolta + + Form + + + + Volta + Volta + + + Subtype: + + + + Open + + + + Closed + + + InstrumentDialogBase @@ -4117,24 +4454,24 @@ spatium unit Staves Pentagrammi - - visible - visibile - Clef Chiave - linked + Add Linked Staff - staff linked to previous + Visible + Visibile + + + Linked - Add Linked Staff + Staff Linked to Previous @@ -4964,6 +5301,34 @@ Would you like to locate %2 now? -> + + 1 + 1 + + + 2 + 2 + + + 4 + 4 + + + 8 + 8 + + + 16 + 16 + + + 32 + 32 + + + 64 + 64 + MeasuresDialogBase @@ -5123,10 +5488,6 @@ Would you like to locate %2 now? &About &A Proposito di MuseScore - - note entry mode - modalità inserimento note - edit mode modalità di modifica @@ -5674,10 +6035,6 @@ Ripristinare la sessione? please choose a different name: - - Cannot read file: %1 error: %2 - - Overture / Score Writer Files <experimental> (*.ove *.scw);; @@ -5963,47 +6320,91 @@ please choose a different name: - MuseScore: Export Parts + MuseScore: Export Parts + + + + Parts were successfully exported + + + + Continuous View + + + + About &MusicXML + + + + Report a bug + + + + MuseScore: Load Plugin + + + + MuseScore Plugin (*.qml);;All Files (*) + + + + MuseScore: Save Plugin + + + + MuseScore Plugin File (*.qml) + + + + &Plugins + + + + Find + + + + Dotted - Parts were successfully exported + Tick 1 - Continuous View + Tick 2 - About &MusicXML + Short 1 - Report a bug + Short 2 - MuseScore: Load Plugin + plop - MuseScore Plugin (*.qml);;All Files (*) + scoop - MuseScore: Save Plugin + NOTE entry mode - MuseScore Plugin File (*.qml) + DRUM entry mode - &Plugins + TAB entry mode - Find + you cannot create an element @@ -6154,14 +6555,6 @@ please choose a different name: note head group gruppo testa delle note - - OnTime: - - - - OffTime: - - invalid non valido @@ -6178,6 +6571,10 @@ please choose a different name: Dot3 + + NoteEvents + + OmrPanel @@ -6770,6 +7167,14 @@ save before closing? Choose Images Directory + + MuseScore Shortcuts + + + + Print Shortcuts + + PrefsDialogBase @@ -7405,6 +7810,10 @@ save before closing? Define Shortcut + + Print + Stampa + Properties @@ -8052,26 +8461,6 @@ Il sequencer sarà disabilitato. Form Modulo - - Staff: - Pentagramma: - - - Voice: - Voce: - - - Tick: - Tick: - - - Slur End - Fine legatura di portamento - - - Slur - Legatura di portamento - SlurPropertyBase @@ -8158,6 +8547,14 @@ Il sequencer sarà disabilitato. Form + + CHORD + + + + NOTE + + SplitStaff @@ -9024,6 +9421,7 @@ altera Space + spatium unit Spazio @@ -9058,10 +9456,6 @@ altera frame line width spessore linea cornice - - mm - mm - Margin: Margine: @@ -9094,6 +9488,10 @@ altera Background Color: + + sp + sp + TextStyleDialog @@ -9193,6 +9591,10 @@ please choose a different name: unstyled + + align vertical baseline + + TimeDialog @@ -9200,14 +9602,6 @@ please choose a different name: MuseScore: Time Signatures MuseScore: Unità di tempo - - 4/4 common time - 4/4 tempo comune - - - 2/2 alla breve - 2/2 alla breve - TimeDialogBase @@ -9369,10 +9763,6 @@ p, li { white-space: pre-wrap; } MuseScore: Transpose MuseScore: Trasporto - - Transpose by Key - Trasporta per tonalità - Cb major / Ab minor Dob maggiore / Lab minore @@ -9445,10 +9835,6 @@ p, li { white-space: pre-wrap; } Closest Tonalità vicina - - Transpose by Interval - Trasporta per intervallo - Perfect Unison Unisono giusto @@ -9565,6 +9951,50 @@ p, li { white-space: pre-wrap; } Use double sharps and flats Usa doppi diesis e doppi bemolli + + Transpose Chromatically + + + + By Key + + + + By Interval + + + + Transpose Diatonically + + + + Second + + + + Third + + + + Fourth + + + + Fifth + + + + Sixth + + + + Seventh + + + + Keep degree alterations + + TremoloBarDialog @@ -9793,10 +10223,6 @@ p, li { white-space: pre-wrap; } Save a Copy... Salva una copia... - - Reload - Ricarica - Create new score Crea nuova partitura @@ -10337,14 +10763,6 @@ p, li { white-space: pre-wrap; } Save a copy of the score in addition to the current file Salva una copia della partitura in aggiunta al file corrente - - File reload - File: ricarica - - - Reload score from file - Ricarica la partitura dal file - File close File: chiudi @@ -10737,10 +11155,6 @@ p, li { white-space: pre-wrap; } Page: end - - Add slur - - Crescendo Crescendo @@ -11017,14 +11431,6 @@ p, li { white-space: pre-wrap; } Picture - - Player seek to begin - - - - Player seek to end - - &Transpose... @@ -11209,14 +11615,6 @@ p, li { white-space: pre-wrap; } Diatonic up - - next score - - - - previous score - - Reset user settings @@ -11245,10 +11643,6 @@ p, li { white-space: pre-wrap; } Respell pitches - - Grace: 8nd after - - Pan score while playing on/off @@ -11313,10 +11707,6 @@ p, li { white-space: pre-wrap; } Master Palette... - - Insert Measure - - Toggle View Mode @@ -11485,10 +11875,6 @@ p, li { white-space: pre-wrap; } Save Style... - - Save Style As Default... - - Select All @@ -11561,6 +11947,162 @@ p, li { white-space: pre-wrap; } Plugin Creator + + Slur + Legatura di portamento + + + Add Slur + + + + Add Crescendo + + + + Grace: 8th after + + + + Play Previous Chord + + + + Play Previous Measure + + + + Play Next Chord + + + + Play Next Measure + + + + Player Seek to Begin + + + + Player Seek to End + + + + Save Style as Default... + + + + String above (TAB) + + + + Select string above (TAB only) + + + + String below (TAB) + + + + Select string below (TAB only) + + + + Fret 0 (TAB) + + + + Add fret 0 on current string (TAB only) + + + + Fret 1 (TAB) + + + + Add fret 1 on current string (TAB only) + + + + Fret 2 (TAB) + + + + Add fret 2 on current string (TAB only) + + + + Fret 3 (TAB) + + + + Add fret 3 on current string (TAB only) + + + + Fret 4 (TAB) + + + + Add fret 4 of current string (TAB only) + + + + Fret 5 (TAB) + + + + Add fret 5 of current string (TAB only) + + + + Fret 6 (TAB) + + + + Add fret 6 of current string (TAB only) + + + + Fret 7 (TAB) + + + + Add fret 7 of current string (TAB only) + + + + Fret 8 (TAB) + + + + Add fret 8 of current string (TAB only) + + + + Fret 9 (TAB) + + + + Add fret 9 of current string (TAB only) + + + + Staff Types... + + + + Staff type editor + + + + Show staff type editor + + + + Note anchored Textline + + articulation @@ -11703,6 +12245,10 @@ p, li { white-space: pre-wrap; } Line Linea + + Wavy line + + magTable diff --git a/share/locale/mscore_ja.ts b/share/locale/mscore_ja.ts index 12882c7c89928..602c3fe0fc275 100644 --- a/share/locale/mscore_ja.ts +++ b/share/locale/mscore_ja.ts @@ -3,6 +3,14 @@ AboutBox + + About MuseScore + + + + Copy revision number + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -12,18 +20,10 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Support MuseScore with </span><a href="http://www.musescore.org/en/donate"><span style=" font-size:10pt; text-decoration: underline; color:#0000ff;">your donation</span></a></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Arial'; font-size:10pt;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Copyright </span><span style=" font-size:10pt;">©</span><span style=" font-family:'Arial'; font-size:10pt;"> 1999-2009 Werner Schweer and Others. </span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Copyright </span><span style=" font-size:10pt;">©</span><span style=" font-family:'Arial'; font-size:10pt;"> 1999-2012 Werner Schweer and Others. </span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Published under the GNU General Public License</span></p></body></html> - - About MuseScore - - - - Copy revision number - - AboutBoxDialog @@ -46,17 +46,6 @@ p, li { white-space: pre-wrap; } About MusicXML - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; font-size:10pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">MusicXML is an open file format for exchanging digital sheet music,</p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">supported by many applications. MusicXML is copyright © MakeMusic, Inc.</p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">All rights reserved. For more information see: <a href="http://www.makemusic.com/xml.html"><span style=" text-decoration: underline; color:#0000ff;">MakeMusic</span></a></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; text-decoration: underline; color:#0000ff;"></p></body></html> - - The MusicXML Public License: @@ -104,6 +93,17 @@ p, li { white-space: pre-wrap; } <p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p></body></html> + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans Serif'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">MusicXML is an open file format for exchanging digital sheet music,</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">supported by many applications. MusicXML is copyright © MakeMusic, Inc.</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">All rights reserved. For more information, see: <a href="http://www.makemusic.com/musicxml"><span style=" text-decoration: underline; color:#0000ff;">MakeMusic</span></a></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; text-decoration: underline; color:#0000ff;"></p></body></html> + + Accidental @@ -123,79 +123,79 @@ p, li { white-space: pre-wrap; } - album name + Remove Score - remove current score + Down - Remove Score + Up - move current score down in list + Add Score - Down - + New + 新規 - move current score up in list + Print Album - Up + MuseScore Album Files (*.album);; - Add Score + All Files (*) - create new album + MuseScore Files (*.mscz *.mscx *.msc);; - New - 新規 + Join Scores + - load an existing album - + Load + 読み込み - Print Album + MuseScore: Add Score - MuseScore Album Files (*.album);; + MuseScore: Load Album - All Files (*) + Album Name - MuseScore Files (*.mscz *.mscx *.msc);; + Remove Current Score - Join Scores + Move Current Score Down in List - Load - 読み込み + Move Current Score Up in List + - MuseScore: Add Score + Create New Album - MuseScore: Load Album + Load an Existing Album @@ -287,6 +287,14 @@ p, li { white-space: pre-wrap; } BarLine 縦線 + + spanFrom: + + + + spanTo: + + BeamBase @@ -342,6 +350,37 @@ p, li { white-space: pre-wrap; } + + BoxBase + + Form + フォーム + + + bottomMargin: + + + + topGap: + + + + bottomGap: + + + + leftMargin: + + + + topMargin: + + + + rightMargin: + + + BoxPropertiesBase @@ -1404,6 +1443,22 @@ failed: No. + + 1 + + + + 2 + 2 + + + 3 + 3 + + + 4 + 4 + EditInstrumentBase @@ -2022,6 +2077,10 @@ failed: B -1 + + A 7 + + EditRaster @@ -2050,6 +2109,17 @@ failed: + + EditStaff + + Edit Short Name + + + + Edit Long Name + + + EditStaffBase @@ -2120,10 +2190,6 @@ failed: Type: - - Edit... - - ... ... @@ -2307,16 +2373,6 @@ failed: Select: - - Guitar (modern) - tablatture type - - - - Bass (modern) - tablature type - - Italian (historic) tablature type @@ -2327,10 +2383,6 @@ failed: tablature type - - Set - - Show Clef @@ -2455,6 +2507,68 @@ failed: Preview プレビュー + + 6 strings (generic guitar) + tablatture type + + + + 4 strings (generic bass) + tablature type + + + + ukulele + + + + bandurria + + + + Custom + + + + Stem position: + + + + Above + + + + Below + + + + Stem style: + + + + Beside staff + + + + Through staff + + + + Half notes: + + + + As short stem + + + + As slashed stem + + + + Show Rests + + EditStringDataBase @@ -2505,6 +2619,14 @@ failed: Chord コード + + Edit Plain Text + + + + Edit HTML Text + + EditStyleBase @@ -2598,6 +2720,10 @@ spatium unit ---------- spatium unit ---------- +spatium unit +---------- +spatium unit +---------- spatium unit sp @@ -3178,6 +3304,18 @@ p, li { white-space: pre-wrap; } Clef/Key right margin + + Pedal, Trill + + + + Pedal Line + + + + Trill Line + + EditTempoBase @@ -3458,6 +3596,65 @@ spatium unit + + InspectorBarLine + + Staff default + + + + Tick + + + + Tick alt. + + + + Short + + + + Short alt. + + + + Type: + + + + Measure default + + + + Normal + 標準 + + + Dashed + 破線 + + + Dotted + + + + Double + + + + End + + + + Span: + + + + Custom + + + InspectorBeam @@ -3677,6 +3874,57 @@ spatium unit ... + + InspectorHairpin + + Form + フォーム + + + Hairpin + クレッシェンド/デクレッシェンド + + + crescendo + + + + decrescendo + + + + Subtype: + + + + Dynamic Range: + + + + Velo. change: + + + + Staff + 譜表 + + + Part + + + + SYstem + + + + reset value + + + + ... + ... + + InspectorImage @@ -3929,6 +4177,37 @@ spatium unit + + InspectorOttava + + Form + フォーム + + + Ottava + オッターバ + + + Subtype: + + + + 8va + オッターヴァ + + + 15ma + クィンディチェージマ + + + 8vb + オッターヴァ・バッサ + + + 15mb + クィンディチェージマ・バッサ + + InspectorRest @@ -3997,6 +4276,41 @@ spatium unit + + InspectorTrill + + Form + フォーム + + + Trill + トリル + + + Subtype: + + + + trill line + + + + up prall + + + + down prall + + + + prall prall + + + + wavy line + + + InspectorVBox @@ -4055,6 +4369,29 @@ spatium unit + + InspectorVolta + + Form + フォーム + + + Volta + 反復記号 + + + Subtype: + + + + Open + + + + Closed + + + InstrumentDialogBase @@ -4109,24 +4446,24 @@ spatium unit Staves 譜表数 - - visible - 表示 - Clef 音部記号 - linked + Add Linked Staff - staff linked to previous + Visible + 表示 + + + Linked - Add Linked Staff + Staff Linked to Previous @@ -4956,6 +5293,34 @@ Would you like to locate %2 now? -> + + 1 + + + + 2 + 2 + + + 4 + 4 + + + 8 + 8 + + + 16 + 16 + + + 32 + 32 + + + 64 + 64 + MeasuresDialogBase @@ -5237,10 +5602,6 @@ before closing? no score スコア無し - - note entry mode - 音符入力モード - edit mode 編集モード @@ -5662,10 +6023,6 @@ Restore session? please choose a different name: - - Cannot read file: %1 error: %2 - - Overture / Score Writer Files <experimental> (*.ove *.scw);; @@ -5951,47 +6308,91 @@ please choose a different name: - MuseScore: Export Parts + MuseScore: Export Parts + + + + Parts were successfully exported + + + + Continuous View + + + + About &MusicXML + + + + Report a bug + + + + MuseScore: Load Plugin + + + + MuseScore Plugin (*.qml);;All Files (*) + + + + MuseScore: Save Plugin + + + + MuseScore Plugin File (*.qml) + + + + &Plugins + + + + Find + + + + Dotted - Parts were successfully exported + Tick 1 - Continuous View + Tick 2 - About &MusicXML + Short 1 - Report a bug + Short 2 - MuseScore: Load Plugin + plop - MuseScore Plugin (*.qml);;All Files (*) + scoop - MuseScore: Save Plugin + NOTE entry mode - MuseScore Plugin File (*.qml) + DRUM entry mode - &Plugins + TAB entry mode - Find + you cannot create an element @@ -6142,14 +6543,6 @@ please choose a different name: note head group 符頭グループ - - OnTime: - - - - OffTime: - - invalid 不正 @@ -6166,6 +6559,10 @@ please choose a different name: Dot3 + + NoteEvents + + OmrPanel @@ -6758,6 +7155,14 @@ save before closing? Choose Images Directory + + MuseScore Shortcuts + + + + Print Shortcuts + + PrefsDialogBase @@ -7393,6 +7798,10 @@ save before closing? Define Shortcut + + Print + 印刷 + Properties @@ -8039,26 +8448,6 @@ Sequencer will be disabled. Form フォーム - - Slur - スラー - - - Slur End - - - - Staff: - 譜表: - - - Voice: - 声部: - - - Tick: - - SlurPropertyBase @@ -8145,6 +8534,14 @@ Sequencer will be disabled. Form フォーム + + CHORD + + + + NOTE + + SplitStaff @@ -9011,6 +9408,7 @@ altera Space + spatium unit 間隔 @@ -9045,10 +9443,6 @@ altera frame line width 枠線の幅 - - mm - mm - Margin: 余白: @@ -9081,6 +9475,10 @@ altera Background Color: + + sp + sp + TextStyleDialog @@ -9180,6 +9578,10 @@ please choose a different name: unstyled + + align vertical baseline + + TimeDialog @@ -9187,14 +9589,6 @@ please choose a different name: MuseScore: Time Signatures MuseScore: 拍子記号 - - 4/4 common time - 4/4 標準の拍子 - - - 2/2 alla breve - - TimeDialogBase @@ -9356,10 +9750,6 @@ p, li { white-space: pre-wrap; } MuseScore: Transpose MuseScore: 移調 - - Transpose by Key - 調を指定して移調 - Cb major / Ab minor 変ハ長調(Cb major)/変イ短調(Ab minor) @@ -9432,10 +9822,6 @@ p, li { white-space: pre-wrap; } Closest 近いほう - - Transpose by Interval - 音程による移調 - Perfect Unison 完全1度 @@ -9552,6 +9938,50 @@ p, li { white-space: pre-wrap; } Use double sharps and flats ダブルシャープ、ダブルフラットを使う + + Transpose Chromatically + + + + By Key + + + + By Interval + + + + Transpose Diatonically + + + + Second + + + + Third + + + + Fourth + + + + Fifth + + + + Sixth + + + + Seventh + + + + Keep degree alterations + + TremoloBarDialog @@ -9780,10 +10210,6 @@ p, li { white-space: pre-wrap; } Save a Copy... コピーを保存... - - Reload - 再読込み - Create new score 新しい楽譜の作成 @@ -10324,14 +10750,6 @@ p, li { white-space: pre-wrap; } Save a copy of the score in addition to the current file - - File reload - ファイル再読み込み - - - Reload score from file - ファイルからスコア再読み込み - File close @@ -10724,10 +11142,6 @@ p, li { white-space: pre-wrap; } Page: end - - Add slur - - Crescendo クレシェンド @@ -11004,14 +11418,6 @@ p, li { white-space: pre-wrap; } Picture - - Player seek to begin - - - - Player seek to end - - &Transpose... @@ -11196,14 +11602,6 @@ p, li { white-space: pre-wrap; } Diatonic up - - next score - - - - previous score - - Reset user settings @@ -11232,10 +11630,6 @@ p, li { white-space: pre-wrap; } Respell pitches - - Grace: 8nd after - - Pan score while playing on/off @@ -11300,10 +11694,6 @@ p, li { white-space: pre-wrap; } Master Palette... - - Insert Measure - - Toggle View Mode @@ -11472,10 +11862,6 @@ p, li { white-space: pre-wrap; } Save Style... - - Save Style As Default... - - Select All @@ -11548,6 +11934,162 @@ p, li { white-space: pre-wrap; } Plugin Creator + + Slur + スラー + + + Add Slur + + + + Add Crescendo + + + + Grace: 8th after + + + + Play Previous Chord + + + + Play Previous Measure + + + + Play Next Chord + + + + Play Next Measure + + + + Player Seek to Begin + + + + Player Seek to End + + + + Save Style as Default... + + + + String above (TAB) + + + + Select string above (TAB only) + + + + String below (TAB) + + + + Select string below (TAB only) + + + + Fret 0 (TAB) + + + + Add fret 0 on current string (TAB only) + + + + Fret 1 (TAB) + + + + Add fret 1 on current string (TAB only) + + + + Fret 2 (TAB) + + + + Add fret 2 on current string (TAB only) + + + + Fret 3 (TAB) + + + + Add fret 3 on current string (TAB only) + + + + Fret 4 (TAB) + + + + Add fret 4 of current string (TAB only) + + + + Fret 5 (TAB) + + + + Add fret 5 of current string (TAB only) + + + + Fret 6 (TAB) + + + + Add fret 6 of current string (TAB only) + + + + Fret 7 (TAB) + + + + Add fret 7 of current string (TAB only) + + + + Fret 8 (TAB) + + + + Add fret 8 of current string (TAB only) + + + + Fret 9 (TAB) + + + + Add fret 9 of current string (TAB only) + + + + Staff Types... + + + + Staff type editor + + + + Show staff type editor + + + + Note anchored Textline + + articulation @@ -11690,6 +12232,10 @@ p, li { white-space: pre-wrap; } Line + + Wavy line + + magTable diff --git a/share/locale/mscore_ko.ts b/share/locale/mscore_ko.ts index a6db295eeb9ff..cf6732c6ae719 100644 --- a/share/locale/mscore_ko.ts +++ b/share/locale/mscore_ko.ts @@ -23,7 +23,7 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Support MuseScore with </span><a href="http://www.musescore.org/en/donate"><span style=" font-size:10pt; text-decoration: underline; color:#0000ff;">your donation</span></a></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Arial'; font-size:10pt;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Copyright </span><span style=" font-size:10pt;">©</span><span style=" font-family:'Arial'; font-size:10pt;"> 1999-2009 Werner Schweer and Others. </span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Copyright </span><span style=" font-size:10pt;">©</span><span style=" font-family:'Arial'; font-size:10pt;"> 1999-2012 Werner Schweer and Others. </span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Published under the GNU General Public License</span></p></body></html> @@ -31,17 +31,17 @@ p, li { white-space: pre-wrap; } AboutBoxDialog - + Unstable Prerelease for Version: - + Version: - + Revision: %1 @@ -61,7 +61,7 @@ p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'Sans Serif'; font-size:10pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">MusicXML is an open file format for exchanging digital sheet music,</p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">supported by many applications. MusicXML is copyright © MakeMusic, Inc.</p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">All rights reserved. For more information see: <a href="http://www.makemusic.com/xml.html"><span style=" text-decoration: underline; color:#0000ff;">MakeMusic</span></a></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">All rights reserved. For more information, see: <a href="http://www.makemusic.com/musicxml"><span style=" text-decoration: underline; color:#0000ff;">MakeMusic</span></a></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; text-decoration: underline; color:#0000ff;"></p></body></html> @@ -137,57 +137,57 @@ p, li { white-space: pre-wrap; } - album name + Album Name - remove current score + Remove Current Score - - Remove Score + + Move Current Score Down in List - - move current score down in list + + Move Current Score Up in List - - Down + + Create New Album - - move current score up in list + + Load an Existing Album - - Up + + Remove Score - - Add Score + + Down - - create new album + + Up - - New + + Add Score - - load an existing album + + New @@ -206,28 +206,28 @@ p, li { white-space: pre-wrap; } - + MuseScore Album Files (*.album);; - - + + All Files (*) - + MuseScore Files (*.mscz *.mscx *.msc);; - + MuseScore: Add Score - + MuseScore: Load Album @@ -340,6 +340,16 @@ p, li { white-space: pre-wrap; } BarLine + + + spanFrom: + + + + + spanTo: + + BeamBase @@ -407,6 +417,44 @@ p, li { white-space: pre-wrap; } + + BoxBase + + + Form + + + + + bottomMargin: + + + + + topGap: + + + + + bottomGap: + + + + + leftMargin: + + + + + topMargin: + + + + + rightMargin: + + + BoxPropertiesBase @@ -497,17 +545,17 @@ spatium unit - + Arpeggio - + Tremolo - + Glissando @@ -1455,12 +1503,12 @@ spatium unit - + Hide courtesy clef - + Show courtesy clef @@ -1603,29 +1651,29 @@ spatium unit - + Open File - + failed: - + MuseScore: Open File - + Write File failed: - + MuseScore: Write Drumset @@ -1673,52 +1721,72 @@ failed: - + + 1 + + + + + 2 + + + + + 3 + + + + + 4 + + + + Shortcut: - + A - + B - + C - + D - + E - + F - + G - + -- - + Note Head: @@ -1975,7 +2043,6 @@ failed: - A 8 @@ -2034,6 +2101,11 @@ failed: Ab 7 + + + A 7 + + Bb 7 @@ -2560,6 +2632,19 @@ failed: + + EditStaff + + + Edit Short Name + + + + + Edit Long Name + + + EditStaffBase @@ -2588,228 +2673,223 @@ failed: - - Edit... - - - - + Part Properties - + Instrument: - + Change Instrument... - + Part Name: - + Long Instrument Name: - + Short Instrument Name: + - - - - - + + + + ... - + Usable Pitch Range: - + Amateur: - - + + - - + Professional: - + Play Transposition: - + 0 - Perfect Unison - + 1 - Augmented Unison - + 0 - Diminished Second - + 1 - Minor Second - + 2 - Major Second - + 3 - Augmented Second - + 2 - Diminished Third - + 3 - Minor Third - + 4 - Major Third - + 5 - Augmented Third - + 4 - Diminished Fourth - + 5 - Perfect Fourth - + 6 - Augmented Fourth - + 6 - Diminished Fifth - + 7 - Perfect Fifth - + 8 - Augmented Fifth - + 7 - Diminished Sixth - + 8 - Minor Sixth - + 9 - Major Sixth - + 10 - Augmented Sixth - + 9 - Diminished Seventh - + 10 - Minor Seventh - + 11 - Major Seventh - + 12 - Augmented Seventh - + 11 - Diminished Octave - + 12 - Perfect Octave - + +octave - + up - + down - + Number of strings: - + Edit string data... @@ -2838,8 +2918,8 @@ failed: - - + + sp @@ -2850,19 +2930,19 @@ failed: - + Stemless - + Key Signature - + Ledger Lines @@ -2896,186 +2976,247 @@ failed: Show Time Sign. + + + 6 strings (generic guitar) + tablatture type + + + + + 4 strings (generic bass) + tablature type + + + + + ukulele + + + + + bandurria + + + + + Custom + + - + « Full Configur. - + Upside Down - + Quick Presets » - + Fret Marks - - + + Font: - - + + Size: - - + + pt - - + + Vert. Offset: - + Marks are: - + Numbers - + Letters - + Marks are drawn: - + On Lines - + Above Lines - + Lines are: - + Continuous - + Broken - + Note Values - + Shown as: - + + None - + Note Symbols - + Stems and beams - - Presets + + Stem position: - - Select: + + Above - - Guitar (modern) - tablatture type + + Below - - Bass (modern) - tablature type + + Stem style: - - Italian (historic) - tablature type + + Beside staff - - French (historic) + + Through staff + + + + + Half notes: + + + + + As short stem + + + + + As slashed stem + + + + + Show Rests + + + + + Presets + + + + + Select: + + + + + Italian (historic) tablature type - - Set + + French (historic) + tablature type - + Preview - + Create new tablature type - + PERCUSSION STAFF - + Create new percussion type - + Save - + Load @@ -3140,6 +3281,16 @@ failed: Chord + + + Edit Plain Text + + + + + Edit HTML Text + + EditStyleBase @@ -3150,15 +3301,15 @@ failed: - + Score - - - + + + Page @@ -3169,70 +3320,70 @@ failed: - + System - + Measure - + Barlines - + Notes - + Arpeggios - + Beams - + Slurs/Ties - + Sizes - + Barline-note margin - + Note-barline margin - + Hairpins - - + + Chordnames @@ -3242,96 +3393,98 @@ failed: - - + + Figured Bass - - + + Articulations, Ornaments - + Voices - + Musical symbols font: - + Display in Concert Pitch - + Create Multi Measure Rests - + Minumum width of measure: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + sp spatium unit ---------- @@ -3357,582 +3510,593 @@ spatium unit ---------- spatium unit ---------- +spatium unit +---------- +spatium unit +---------- spatium unit - + Minimum Number of empty measures: - + Hide Empty Staves - + Don't hide empty staves in first system - + Music upper margin - + Music lower margin - + Staff distance - + Grand staff distance - + Lyrics upper margin - + Lyrics lower margin - + Vertical-frame upper margin - + V-frame upper margin - + Vertical-frame lower margin - + V-frame lower margin - - - - - - + + + + + + % - + Last system fill threshold - + Create clef for all systems - + Clefs - - + + Accidentals - + Create courtesy clefs - + Create time signatures - + Create courtesy time signatures - + Create key sig for all systems - + Create courtesy key signatures - + Lyrics line height - + Header Text - + show header also on first page - - - + + + show first - + use odd even page header - - + + odd/even - - + + left - - + + middle - - + + right - - - + + + edit even page header - - - - - - - - - - - - - + + + + + + + + + + + + + ... - - - + + + add odd page header - + Footer Text - + show footer also on first page - + use odd even page footer - - - + + + edit even page footer - - - + + + edit odd page header - + + Pedal, Trill + + + + Min. System distance - + Max. System distance - + Measure Numbers - + all staffs - + every system - + interval - + System Bracket Distance: - + Akkolade Distance: - + Fix Number of Measures/System: - + Fix Measure Width - + System Bracket Width: - + Akkolade Width: - + minimum Measure width - + Spacing (1=tight) - + Min. note distance - + Clef left margin - + Key sig. left margin - + Time sig. left margin - + Clef-barline distance - + Staff line width - + Show repeat bar tips ("winged" repeats) - + Barline at start of single staff - + Barline at start of multiple staves - + Bar width: - + End bar width: - + End bar distance: - + Double bar width: - + Double bar distance: - + shorten stems - + Progression - + Shortest stem - + Accidental note distance - + Accidental distance - + Note dot distance - + Dot dot distance - + Ledger line width - + Ledger line length - + Default TAB Clef - + Clef1 - + Clef2 - + Distance to note - + Line width - + Hook length - + Beam width - - + + spaces - + Beam distance - + beam width units - + Minimum length - + Minimum slope - + Maximum slope - + line width at end - + line width middle - + bow - + dotted line width - + Small staff size - + Small note size - + Grace note size - + Small clef size - - - + + + Line width: - + Height: - + Line break height: - + Volta - - - + + + + + default Y-position: - - + + styled - - + + even - - + + odd - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -3945,147 +4109,157 @@ p, li { white-space: pre-wrap; } - + Clef/Key right margin - - + + Hook height: - + Ottava - + + Pedal Line + + + + + Trill Line + + + + Use German names - + Chord description file - + Font: - + Size: - + pt - + Vertical position: - + Line height: - + Style - + Modern - + Historic - + note head distance - - - + + + sp space unit - + articulation distance - + staff distance - + Accidental - + semitones offset - + cents offset - + Stem Direction in Multi-Voice Context - + Voice 1 - - - - + + + + up - - - - + + + + down - + Voice 2 - + Voice 3 - + Voice 4 @@ -4248,7 +4422,7 @@ p, li { white-space: pre-wrap; } GreendotButton - + record @@ -4345,7 +4519,7 @@ p, li { white-space: pre-wrap; } Inspector - + Inspector @@ -4432,6 +4606,79 @@ spatium unit + + InspectorBarLine + + + Staff default + + + + + Tick + + + + + Tick alt. + + + + + Short + + + + + Short alt. + + + + + Type: + + + + + Measure default + + + + + Normal + + + + + Dashed + + + + + Dotted + + + + + Double + + + + + End + + + + + Span: + + + + + Custom + + + InspectorBeam @@ -4464,13 +4711,13 @@ spatium unit - - + + ... - + User Position @@ -4586,7 +4833,7 @@ spatium unit InspectorClef - + Show Courtesy Clef @@ -4720,24 +4967,89 @@ spatium unit - InspectorImage + InspectorHairpin - + Form - - Image + + Hairpin - - Size + + crescendo - + + decrescendo + + + + + Subtype: + + + + + Dynamic Range: + + + + + Velo. change: + + + + + Staff + + + + + Part + + + + + SYstem + + + + + + reset value + + + + + + ... + + + + + InspectorImage + + + Form + + + + + Image + + + + + Size + + + + Scale: @@ -4773,12 +5085,12 @@ spatium unit InspectorKeySig - + Show Courtesy Time Signature - + Show Naturals @@ -5017,45 +5329,83 @@ spatium unit - + Select - + Dot1 - + Dot2 - + Dot3 - + Hook - + Stem - + Beam + + InspectorOttava + + + Form + + + + + Ottava + + + + + Subtype: + + + + + 8va + + + + + 15ma + + + + + 8vb + + + + + 15mb + + + InspectorRest - + Small @@ -5131,11 +5481,54 @@ spatium unit InspectorTimeSig - + Show Courtesy Time Signature + + InspectorTrill + + + Form + + + + + Trill + + + + + Subtype: + + + + + trill line + + + + + up prall + + + + + down prall + + + + + prall prall + + + + + wavy line + + + InspectorVBox @@ -5222,6 +5615,34 @@ spatium unit + + InspectorVolta + + + Form + + + + + Volta + + + + + Subtype: + + + + + Open + + + + + Closed + + + InstrumentDialogBase @@ -5276,22 +5697,22 @@ spatium unit - visible + Visible - - Clef + + Linked - - linked + + Staff Linked to Previous - - staff linked to previous + + Clef @@ -5415,49 +5836,49 @@ spatium unit - + MuseScore: Save Instrument List - + MuseScore Instruments (*.xml);; - + Open Instruments File - + failed: - + MuseScore: Open Instruments file - + Write Style failed: - + MuseScore: Write Style - + MuseScore: Load Instrument List - + MuseScore Instruments (*.xml);;All files (*) @@ -5524,22 +5945,22 @@ failed: KeySig - + Hide Courtesy Key Signature - + Show Courtesy Key Signature - + Hide Naturals - + Show Naturals @@ -6231,12 +6652,12 @@ Would you like to locate %2 now? - + visible - + stemless @@ -6310,57 +6731,92 @@ Would you like to locate %2 now? - + + 1 + + + + + 2 + + + + + 4 + + + + + 8 + + + + + 16 + + + + + 32 + + + + + 64 + + + + Other - + do not count - + Exclude from measure count - + break multi measure rest - + add to measure number - + layout stretch - + repeat count: - + goto previous measure - + <- - + goto next measure - + -> @@ -6445,7 +6901,7 @@ Would you like to locate %2 now? MenuNotes - + &Notes @@ -6496,451 +6952,445 @@ Would you like to locate %2 now? MuseScore - - + MuseScore: Load error - - + + MuseScore - + Save changes to the score "%1" before closing? - + MuseScore: Load Score - + MusicXML Files (*.xml *.mxl);; - + MIDI Files (*.mid *.midi *.kar);; - + Muse Data Files (*.md);; - + Capella Files (*.cap);; - + BB Files <experimental> (*.mgu *.MGU *.sgu *.SGU);; - + PDF Files <experimental omr> (*.pdf);; - + Bagpipe Music Writer Files <experimental> (*.bww);; - + Guitar Pro (*.GTP *.GP3 *.GP4 *.GP5);; - - - + + + All Files (*) - + Untitled - - Cannot read file: %1 error: %2 - - - - + Overture / Score Writer Files <experimental> (*.ove *.scw);; - + Compressed MuseScore File (*.mscz) - + MuseScore File (*.mscx) - + MuseScore: Save Score - + MuseScore: Save File - - + + MuseScore: Load Style - + MuseScore Styles (*.mss);;All Files (*) - - - + + + MuseScore: Save Style - - - + + + MuseScore Style File (*.mss) - + Choose Synthesizer SoundFont - + MuseScore: Choose Synthesizer SoundFont - + MuseScore Chord Style File (*.xml) - + ;;All Files (*) - - + + MuseScore: Load Chord Style - + MuseScore: Save Chord Style - + PDF Scan File (*.pdf);;All (*) - + Choose PDF Scan - + MuseScore: Choose PDF Scan - + OGG Audio File (*.ogg);;All (*) - + Choose Audio File - + MuseScore: Choose OGG Audio File - + PNG Bitmap Graphic (*.png);; - + PDF File (*.pdf);; - + Encapsulated PostScript File (*.eps);; - + Scalable Vector Graphic (*.svg);; - + MuseScore: Save Image - + MuseScore: Load Palette - + MuseScore Palette (*.mpal);;All Files (*) - + MuseScore: Save Palette - + MuseScore Palette (*.mpal) - + MuseScore: Load Plugin - + MuseScore Plugin (*.qml);;All Files (*) - + MuseScore: Save Plugin - + MuseScore Plugin File (*.qml) - + MuseScore: Load Drumset - + MuseScore Drumset (*.drm);;All Files (*) - + MuseScore: Save Drumset - + MuseScore Drumset File (*.drm) - - + + Uncompressed MuseScore Format (*.mscx) - - + + MusicXML Format (*.xml) - - + + Compressed MusicXML Format (*.mxl) - - + + Standard MIDI File (*.mid) - - + + PDF File (*.pdf) - - + + PostScript File (*.ps) - - + + PNG Bitmap Graphic (*.png) - - + + Scalable Vector Graphic (*.svg) - - + + Wave Audio (*.wav) - - + + Flac Audio (*.flac) - - + + Ogg Vorbis Audio (*.ogg) - - + + MP3 Audio (*.mp3) - + MuseScore: Export - + MuseScore Format (*.mscx) - + MuseScore: Save a Copy - - - - + + + + MuseScore: Save As - + All Supported Files (*.mscz *.mscx *.xml *.mxl *.mid *.midi *.kar *.md *.mgu *.MGU *.sgu *.SGU *.cap *.pdf *.ove *.scw *.bww *.GTP *.GP3 *.GP4 *.GP5);; - + All Supported Files (*.mscz *.mscx *.xml *.mxl *.mid *.midi *.kar *.md *.mgu *.MGU *.sgu *.SGU *.cap *.ove *.scw *.bww *.GTP *.GP3 *.GP4 *.GP5);; - + MuseScore Files (*.mscz *.mscx);; - - + + LilyPond Format (*.ly) - - - - + + + + cannot determine file type - - - + + + MuseScore: Export Parts - + Parts were successfully exported - - + + MuseScore Format (*.mscz) - - + + MuseScore: Save Selection - + MuseScore: Save Selected - + MuseScore: InsertImage - + All Supported Files (*.svg *.jpg *.png *.xpm);;Scalable vector graphics (*.svg);;JPEG (*.jpg);;PNG (*.png);;XPM (*.xpm);;All Files (*) - + Images (*.jpg *.gif *.png);;All (*) - + SoundFont Files (*.sf2 *.SF2);;All (*) @@ -6950,112 +7400,112 @@ before closing? - + Grace Notes - + Clefs - + Time Signatures - + 4/4 common time - + 2/2 alla breve - + Normal - + Dashed - + End Bar - + Double Bar - + Start Repeat - + End Repeat - + End-Start Repeat - + Arpeggio && Glissando - + Arpeggio - + Glissando - + Breath && Pauses - + Breath - + Caesura - + Brackets - + Square bracket - + Curly bracket - + Articulations && Ornaments @@ -7065,292 +7515,327 @@ before closing? - + Fingering - + Fingering %1 - + String number %1 - + Thumb - + Note Heads - + Tremolo - + 1/8 through stem - + 1/16 through stem - + 1/32 through stem - + 1/64 through stem - + 1/8 between notes - + 1/16 between notes - + 1/32 between notes - + 1/64 between notes - + Fall/Doit - + fall - + doit - + Repeats - + + Dotted + + + + + Tick 1 + + + + + Tick 2 + + + + + Short 1 + + + + + Short 2 + + + + Repeat measure sign - + Segno - + Segno Variation - + Coda - + Varied coda - + Codetta - + Fine - + Da Capo - + Da Capo al Fine - + Da Capo al Coda - + D.S al Coda - + D.S al Fine - + D.S - + To Coda - - Text + + plop - - staff-text + + scoop - - Staff Text + + Text + + + + + staff-text + + + + + Staff Text - + system-text - + System Text - + &Measures - + &Frames - + &Text - + Rehearsal Mark - + Instrument - + Instrument Change - + 1. - + Lyrics Verse Number - + Tempo Text - + Breaks && Spacer - + Line break - + Page break - + Section break - + Staff spacer down - + Staff spacer up - + Chord Name - + Staff Changes - + set visible - + set invisible - + change staff type - + change instrument @@ -7360,17 +7845,17 @@ before closing? - + Symbols - + Fret Diagram - + &Create @@ -7380,227 +7865,237 @@ before closing? - + switch layer - + synthesizer - + audio track - + switch play mode - + File Operations - + Transport Tools - + Page View - + Concert Pitch - + Foto Mode - + Note Entry - + &File - + Open &Recent - + &Edit - + &Measure - + &Voices - + Pr&ofiles - + &Preferences... - + Add N&ote - + Add &Interval - + T&uplets - + &Plugins - + &Online Handbook - + About &Qt - + Check for &Update - + + NOTE entry mode + + + + + DRUM entry mode + + + + + TAB entry mode + + + + Find - + MuseScore: warning - + Cannot create tuplet: note value too short - + &Layout - + Continuous View - + &Style - + &Display - + &Help - + &About - + About &MusicXML - + Report a bug - + Open failed: unknown file extension or broken file - + System - + no score - - note entry mode - - - - + edit mode - + play - + foto mode - + Go To: - + Bar %1 Beat %2.%3 - + The previous session quit unexpectedly. Restore session? @@ -7634,23 +8129,23 @@ please choose a different name: - + MuseScore: transpose - + There is nothing selected. Transpose whole score? - - + + MuseScore: save style - + MuseScore: load style @@ -7692,6 +8187,11 @@ please choose a different name: Error %1 returned from MP3 encoder + + + you cannot create an element + + MyWebView @@ -7759,7 +8259,7 @@ please choose a different name: - + MuseScore: Create New Score @@ -7767,12 +8267,12 @@ please choose a different name: NewWizardPage1 - + Create New Score - + This wizard creates a new score @@ -7780,12 +8280,12 @@ please choose a different name: NewWizardPage2 - + Create New Score - + Define a set of instruments. Each instrument is represented by one or more staves @@ -7793,12 +8293,12 @@ please choose a different name: NewWizardPage3 - + Create New Score - + Create Time Signature @@ -7806,22 +8306,22 @@ please choose a different name: NewWizardPage4 - + Create New Score - + Select Template File: - + MuseScore: Select Template - + MuseScore Template Files (*.mscz *.mscx) @@ -7829,27 +8329,27 @@ please choose a different name: NewWizardPage5 - + Create New Score - + Select Key Signature and Tempo: - + Key Signature - + Tempo - + BPM: @@ -7872,33 +8372,28 @@ please choose a different name: - - OnTime: + + NoteEvents - - OffTime: - - - - - + + invalid - + Dot1 - + Dot2 - + Dot3 @@ -8084,27 +8579,27 @@ please choose a different name: PaletteBox - + Palettes - + Palette Operations - + Single Palette Mode - + Reset to factory defaults - + new Palette @@ -8112,42 +8607,42 @@ please choose a different name: PaletteBoxButton - + Palette Properties... - + Insert new Palette... - + Move Palette Up - + Move Palette Down - + Enable Editing - + Save Palette - + Load Palette - + Delete Palette @@ -8471,42 +8966,42 @@ please choose a different name: PluginCreator - + File Operations - + Edit Operations - + MuseScore Plugin Editor - - - + + + MuseScore - - - + + + Plugin "%1" has changes save before closing? - + untitled - + Manual @@ -8582,77 +9077,88 @@ save before closing? PreferenceDialog - + Choose Notepaper - + Choose Background Wallpaper - + Choose Default Style - + Choose Default Style for Parts - - + + Choose Instrument List - - + + Instrument List (*.xml) - + Choose Starting Score - + MuseScore Files (*.mscz *.mscx *.msc);;All (*) - + Choose Scores Directory - + Choose Styles Directory - + Choose Templates Directory - + Choose Plugins Directory - + Choose SoundFonts Directory - + Choose Images Directory + + + + MuseScore Shortcuts + + + + + Print Shortcuts + + PrefsDialogBase @@ -9437,7 +9943,7 @@ save before closing? - + Shortcut @@ -9458,47 +9964,52 @@ save before closing? - + + Print + + + + Plugins - + Name: - + Path: - + Version: - + Load - + Define Shortcut - + Update - + Automatic Update Check - + Check for new versions of MuseScore on startup @@ -9506,7 +10017,7 @@ save before closing? Properties - + small @@ -9542,7 +10053,7 @@ save before closing? QWidget - + MuseScore: Import Capella @@ -9569,13 +10080,13 @@ save before closing? - - - - + + - - + + + + @@ -9590,54 +10101,54 @@ save before closing? - + MuseScore: Save Album - + MuseScore Files (*.album);; - + Open Album File - + failed: - + MuseScore: Open Album file - + Write Album failed: - + MuseScore: Write Album - + Untitled - + MuseScore: file not found: - + MuseScore: load failed: @@ -9649,7 +10160,7 @@ failed: - + MuseScore: Import GuitarPro @@ -9664,17 +10175,17 @@ failed: - + MuseScore: load Style failed: - + MuseScore: Load languages failed: - + MuseScore: invalid command @@ -9688,7 +10199,7 @@ failed: RecordButton - + record @@ -9712,14 +10223,14 @@ failed: ScoreView - + No staves found: please use the instruments dialog to first create some staves - + No Measure selected: please select a measure and try again @@ -9786,17 +10297,17 @@ please select a measure and try again - + Please select the complete tuplet and retry the copy operation - + Please select the complete tuplet and retry the cut operation - + Staff @@ -9817,25 +10328,25 @@ please select a measure and try again - + Measure Properties... - + No chord/rest selected: please select a chord/rest and try again - + Cannot split measure here: cannot split tuplet - + No measures selected: please select range of measures to join and try again @@ -9843,26 +10354,26 @@ please select range of measures to join and try again - - - - + + + + Set Invisible - - - - + + + + Set Visible - + Color... @@ -9874,9 +10385,9 @@ please select range of measures to join and try again - - - + + + Text Properties... @@ -9886,150 +10397,150 @@ please select range of measures to join and try again - + Bend Properties... - + TremoloBar Properties... - - + + Add - - - + + + Frame Properties... - - - + + + Tuplet Properties... - + Volta Properties... - + Line Properties... - + Time Signature Properties... - + MIDI Properties... - + Staff Text Properties... - + Tempo Properties... - + Change Instrument Properties... - + Edit Mode - + Slur Properties... - - + + Tuplet... - - + + Delete Tuplet - + Style... - + Chord Articulation... - + Marker Properties... - + Jump Properties... - + Section Break Properties... - + Change Instrument... - + Fret Diagram Properties... - + Glissando Properties... - + Dynamics - + Hairpin Properties... - + Harmony Properties... - - + + Staff Properties... @@ -10040,7 +10551,7 @@ please select range of measures to join and try again - + Measure @@ -10275,12 +10786,12 @@ Sequencer will be disabled. ShortcutCaptureDialog - + Shortcut conflicts with - + Undefined @@ -10335,31 +10846,6 @@ Sequencer will be disabled. Form - - - Slur - - - - - Slur End - - - - - Staff: - - - - - Voice: - - - - - Tick: - - SlurPropertyBase @@ -10465,6 +10951,16 @@ Sequencer will be disabled. Form + + + CHORD + + + + + NOTE + + SplitStaff @@ -10904,7 +11400,7 @@ altera - + MuseScore Startup Dialog @@ -11515,146 +12011,147 @@ altera - + relX: - + reference point offset in percent of parent width - - + + % - + Y: coordinate - + vertical offset to reference point - + relY: - + reference point offset in percent of parent height - + Unit: - + offset is absolute - + MM - + offset in Space units - + Space + spatium unit - + enable text frame - + Frame - + draw circled frame - + Circle - + draw boxed frame - + Box - + Width: - + frame line width - - - mm + + + sp - + Margin: - + frame inner margin - + Round: - + corner round - + Foreground Color: - - + + frame color - + Background Color: @@ -11722,67 +12219,72 @@ please choose a different name: - + align left - + align horizontal center - + align right - + align top - + align bottom - + + align vertical baseline + + + + align vertical center - + subscript - + superscript - + unordered list - + ordered list - + indent more - + indent less - + unstyled @@ -11794,16 +12296,6 @@ please choose a different name: MuseScore: Time Signatures - - - 4/4 common time - - - - - 2/2 alla breve - - TimeDialogBase @@ -11853,12 +12345,12 @@ please choose a different name: TimeSig - + Hide Courtesy Time Signature - + Show Courtesy Time Signature @@ -12001,259 +12493,306 @@ p, li { white-space: pre-wrap; } - - Transpose by Key - - - - + Cb major / Ab minor - + Gb major / Eb minor - + Db major / Bb minor - + Ab major / F minor - + Eb major / C minor - + Bb major / G minor - + F major / D minor - + C major / A minor - + G major / E minor - + D major / B minor - + A major / F# minor - + E major / C# minor - + B major / G# minor - + F# major / D# minor - + C# major / A# minor - - + + + Up - - + + + Down - + Closest - - Transpose by Interval - - - - + Perfect Unison - + Augmented Unison - + Diminished Second - + Minor Second - + Major Second - + Augmented Second - + Diminished Third - + Minor Third - + Major Third - + Augmented Third - + Diminished Fourth - + Perfect Fourth - + Augmented Fourth - + Diminished Fifth - + Perfect Fifth - + Augmented Fifth - + Diminished Sixth - + Minor Sixth - + Major Sixth - + Augmented Sixth - + Diminished Seventh - + Minor Seventh - + Major Seventh - + Augmented Seventh - + Diminished Octave - + Perfect Octave - + + Transpose Diatonically + + + + + Second + + + + + Third + + + + + Fourth + + + + + Fifth + + + + + Sixth + + + + + Seventh + + + + + Keep degree alterations + + + + Options - + Transpose key signatures - + + Transpose Chromatically + + + + + By Key + + + + + By Interval + + + + Transpose chord names - + Single sharps and flats only - + Use double sharps and flats @@ -12544,220 +13083,205 @@ p, li { white-space: pre-wrap; } - + File open - + Load score from file - + File save - + Save score to file - + File save as - + Save score under a new file name - + File save a copy - + Save a Copy... - + Save a copy of the score in addition to the current file - + Save a copy of the score in various formats - - - File reload - - - - - Reload - - - Reload score from file - - - - File close - + Close current score - + Create new score - + Print - + Print score - - + + Undo - + Undo last change - - + + Redo - + Redo last undo - + Cut - + Copy - + Paste - + Show instruments dialog - + Note input mode - - + + Note Input - + Enter unison above - + Export Parts - + Export Parts... - + Save a copy of the score's parts in various formats - + Unison Above - + Enter second above - + Second Above - + Enter third above - + Third Above - + Enter fourth above - + Fourth Above - + Enter fifth above - + Fifth Above - + Enter sixth above - + Sixth Above @@ -12772,1418 +13296,1393 @@ p, li { white-space: pre-wrap; } - + Enter octave above - + Octave Above - + Enter ninth above - + Ninth Above - + Enter second below - + Second Below - + Enter third below - + Third Below - + Enter fourth below - + Fourth Below - + Enter fifth below - + Fifth Below - + Enter sixth below - + Sixth Below - + Enter seventh below - + Seventh Below - + Enter octave below - + Octave Below - + Enter ninth below - + Ninth Below - + Enter note A - + A - + Enter note B - + B - + Enter note C - + C - + Enter note D - + D - + Enter note E - + E - + Enter note F - + F - + Enter note G - + G - + Add note A to chord - + Add A - + Add note B to chord - + Add B - + Add note C to chord - + Add C - + Add note D to chord - + Add D - + Add note E to chord - + Add E - + Add note F to chord - + Add F - + Add note G to chord - + Add G - + Insert note A - + Insert A - + Insert note B - + Insert B - + Insert note C - + Insert C - + Insert note D - + Insert D - + Insert note E - + Insert E - + Insert note F - + Insert F - + Insert note G - + Insert G - + Enter rest - - - + + + Rest - + Add staccato - + Staccato - + Add tenuto - + Tenuto - + Add trill - + Trill - + Add marcato - + Marcato - + Add more stretch to selected measure - + Less stretch - + Add less stretch to selected measure - - + + Reset Beam Mode - + Reset beam mode of selected measures - + Flip direction - + Pitch up - + Up - + Pitch up octave - + Up Octave - + Pitch up by an octave - + Select Section - + Note duration: double whole - - + + Double whole note - - + + Whole note - - + + Half note - - + + Quarter note - - + + 8th note - - + + 16th note - - + + 32nd note - - + + 64th note - + Note duration: 128th - - + + 128th note - + Add system text - + Add staff text - + Add title text - + Add subtitle text - + Add composer text - + Add lyricist text - + Add chord name - + Show harmony properties for chord - + Add rehearsal mark - + Add picture - - Player seek to begin - - - - - Player seek to end - - - - + Pan score while playing on/off - + Pan - + &Transpose... - + Violin Clef - + Bass Clef - + Display in concert pitch - + next syllable - + previous syllable - + toggle visibility - + set visible - + set unvisible - + Show Unprintable - + Show Page Margins - + Manage parts - + Show inspector - + Reset measure stretch - + Reset user settings - + Mirror note head - + Edit general style - + Double duration - + Half duration - + Follow song - + Display documents side by side - + Display documents stacked - + Show OMR image - + Enharmonic up - + Tempo Marking... - + Tempo Marking - + Text - + Add Frame Text - + Load Style... - + Save Style... - - Save Style As Default... - - - - + Select All - + Concert Pitch - + Info... - + Reset - + Debugger - + Reset Stretch - + Insert Special Characters - + Find - + General... - + Text... - + Chords... - + Parts... - + Enharmonic down - + Create new revision - + Toggle foto mode - + Enable horizontal raster - + Enable vertical raster - + Configure raster - + Re-Pitch Mode - + Replace pitches without changing rhythms - + Stack down - + Piano Keyboard - + Additional Media... - + Show media dialog - + Split Measure - + Join Measure - + Page Settings... - + Page Settings - + Album... - + Album - + Up Note in Chord - + Go to higher pitched note in chord - + Go to top note in chord - + Top Note in Chord - + Move up - + Pitch down - + Down - + Pitch down octave - + Down octave - + Pitch down by an octave - + Down Note in Chord - - + + Go to lower pitched note in chord - + File new - + Diatonic pitch down - + Diatonic down - + Go to bottom note in chord - + Bottom Note in Chord - - + + Move down - - + Previous chord - - + Previous measure - - + Next chord - - + Next measure - - + + Delete - + Delete contents of the selected measures - + Timewise Delete - + Delete element and duration - + Delete Selected Measures - + Append measures - + Append Measures... - + Insert measures - + Insert Measures... - - + + Slur + + + + + Add Slur + + + + Insert Horizontal Frame - - + Insert Text Frame - + Append Text Frame - - + Insert Fret Diagram Frame - - + Insert Vertical Frame - + Append Horizontal Frame - + Append Vertical Frame - + Duplet - + Triplet - + Quadruplet - + Quintuplet - + Sextuplet - + Septuplet - + Octuplet - + Nonuplet - + Other... - + Note duration: longa - - + + Longa - + Note duration: whole - + Note duration: half - + Note duration: quarter - + Note duration: 8th - + Note duration: 16th - + Note duration: 32nd - + Note duration: 64th - + Note duration: augmentation dot - - + + Augmentation dot - + Note duration: double augmentation dot - - + + Double augmentation dot - + Note duration: tie - - + + Tie - + Note entry: rest - + Note entry: double sharp - - + + Double sharp - + Note entry: sharp - - + + Sharp - + Note entry: natural - - + + Natural - + Note entry: flat - - + + Flat - + Note entry: double flat - - + + Double flat - - - - Grace: 8nd after - - - - + MIDI input - - + + Enable MIDI input - - + + Enable sound while editing - + Palette - + Play Panel - + Navigator - + Mixer - + Transport - + Status Bar - + Quit - + Lyrics - + Plugin Creator - + Inspector - + Show OMR Panel - + OmrPanel - + toggle metronome - + Figured Bass - + Next Score - + Previous Score - + Transpose Up - + Transpose Down - + Show master palette - + Master Palette... - - Insert Measure - - - - + Toggle View Mode - + Save Selection - + Save Selection... - + Save current selection as new score - + Export score - + Respell pitches - + Diatonic pitch up - + Diatonic up @@ -14193,629 +14692,801 @@ p, li { white-space: pre-wrap; } - + Open... - + Save - + Save As... - + Export... - + Close - + New... - + Print... - + Instruments... - - + + Add More Stretch - + Add Less Stretch - + Add previous chord to selection - + Select to beginning of measure - + Add next chord to selection - + Move chord/rest right - + Move chord/rest left - + Select to end of measure - + Select to beginning of line - + Select to end of line - + Select to beginning of score - + Select to end of score - + Add staff above to selection - + Add staff below to selection - + Page: previous - + Page: next - + Page: top - + Page: end - - Add slur + + Crescendo - - Crescendo + + Add Crescendo - + Decrescendo - + Escape - + Timewise delete - + Append One Measure - + Insert One Measure - + Other tuplets - - - + + + Acciaccatura - - - + + + Appoggiatura - - - + + + Grace: quarter - - - + + + Grace: 16th - - - + + + Grace: 32nd - - - + + + + Grace: 8th after + + + + + + Voice 1 - - - + + + Voice 2 - - - + + + Voice 3 - - - + + + Voice 4 - + Editing sound on - + Beam start - + Beam middle - + No beam - + Beam 32nd sub - + Beam 64th sub - + Auto beam - + Feathered beam, slower - + Feathered beam, faster - + Transport toolbar - + Note input toolbar - + Zoom canvas - + + Play Previous Chord + + + + + Play Previous Measure + + + + + Play Next Chord + + + + + Play Next Measure + + + + + Player Seek to Begin + + + + + Player Seek to End + + + + + Save Style as Default... + + + + Edit score info - + Insert Special Characters... - + Layers - + MuseScore Connect - + Metronome - + + String above (TAB) + + + + + Select string above (TAB only) + + + + + String below (TAB) + + + + + Select string below (TAB only) + + + + + Fret 0 (TAB) + + + + + Add fret 0 on current string (TAB only) + + + + + Fret 1 (TAB) + + + + + Add fret 1 on current string (TAB only) + + + + + Fret 2 (TAB) + + + + + Add fret 2 on current string (TAB only) + + + + + Fret 3 (TAB) + + + + + Add fret 3 on current string (TAB only) + + + + + Fret 4 (TAB) + + + + + Add fret 4 of current string (TAB only) + + + + + Fret 5 (TAB) + + + + + Add fret 5 of current string (TAB only) + + + + + Fret 6 (TAB) + + + + + Add fret 6 of current string (TAB only) + + + + + Fret 7 (TAB) + + + + + Add fret 7 of current string (TAB only) + + + + + Fret 8 (TAB) + + + + + Add fret 8 of current string (TAB only) + + + + + Fret 9 (TAB) + + + + + Add fret 9 of current string (TAB only) + + + + + Staff Types... + + + + + Staff type editor + + + + + Show staff type editor + + + + + Note anchored Textline + + + + System Text - + Staff Text - + Title - + Subtitle - + Composer - + Lyricist - + Chord Name - + Harmony Properties - + Rehearsal Mark - + Picture - + Player play - + Play - + Start or stop playback - + Player rewind - + Rewind - + Rewind to start position - + Play repeats on/off - + Repeat - + Load style - + Save style - + Transpose - + Exchange Voice 1-2 - + Exchange Voice 1-3 - + Exchange Voice 1-4 - + Exchange Voice 2-3 - + Exchange Voice 2-4 - + Exchange Voice 3-4 - + Repeat last command - + Toggle System Break - + Toggle Page Break - + Toggle Section Break - + Edit Element - + Show Invisible - + Show Frames - + Note entry: whole rest - + Whole rest - + Note entry: half rest - + Half rest - + Note entry: quarter rest - + Quarter rest - + Note entry: 8th rest - + 8th rest - + Backspace - + Zoom In - + Zoom Out - + Edit text style - + Edit chord style - + Select all similar elements - + All Similar Elements - + Select all similar elements in same staff - + All Similar Elements in Same Staff - + Synthesizer - + Repeat selection - + Documents Side by Side - + Documents Stacked - + Full Screen - + Layers... - - - next score - - - - - previous score - - articulation - + Bend - + Tremolo Bar @@ -14831,45 +15502,45 @@ p, li { white-space: pre-wrap; } file - - + + error at line %1 column %2: %3 - + internal error: could not open resource musicxml.xsd - + internal error: MusicXML schema is invalid - + error reading container.xml at line %1 column %2: %3 - + can't find rootfile - - + + this is not a valid MusicXML file - + could not open MusicXML file @@ -14886,100 +15557,105 @@ p, li { white-space: pre-wrap; } lines - + Lines - + Slur - + Crescendo - + Diminuendo - + Prima volta - + Seconda volta - + Terza volta - + Seconda volta 2 - + 8va - + 15ma - + 8vb - + 15mb - - - - + + + + Pedal - + Trill line - + Upprall line - + Downprall line - + Prallprall line - + + Wavy line + + + + Text line - + Line diff --git a/share/locale/mscore_lt.ts b/share/locale/mscore_lt.ts index 7c599bb6d48c5..e81fb6502de2b 100644 --- a/share/locale/mscore_lt.ts +++ b/share/locale/mscore_lt.ts @@ -23,9 +23,9 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Support MuseScore with </span><a href="http://www.musescore.org/en/donate"><span style=" font-size:10pt; text-decoration: underline; color:#0000ff;">your donation</span></a></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Arial'; font-size:10pt;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Copyright </span><span style=" font-size:10pt;">©</span><span style=" font-family:'Arial'; font-size:10pt;"> 1999-2009 Werner Schweer and Others. </span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Copyright </span><span style=" font-size:10pt;">©</span><span style=" font-family:'Arial'; font-size:10pt;"> 1999-2012 Werner Schweer and Others. </span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Published under the GNU General Public License</span></p></body></html> - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> @@ -34,23 +34,23 @@ p, li { white-space: pre-wrap; } <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Arial'; font-size:10pt;"></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Copyright </span><span style=" font-size:10pt;">©</span><span style=" font-family:'Arial'; font-size:10pt;"> 1999-2011 Werner Schweer and Others. </span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Published under the GNU General Public License</span></p></body></html> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Published under the GNU General Public License</span></p></body></html> {3C?} {4.0/?} {3.?} {40/?} {1"?} {2'?} {8.25p?} {400;?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {10p?} {10p?} {0000f?} {10p?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {10p?} {10p?} {0000f?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {10p?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {10p?} {10p?} {10p?} {1999-2012 ?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {10p?} AboutBoxDialog - + Unstable Prerelease for Version: - + Version: - + Revision: %1 @@ -70,7 +70,7 @@ p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'Sans Serif'; font-size:10pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">MusicXML is an open file format for exchanging digital sheet music,</p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">supported by many applications. MusicXML is copyright © MakeMusic, Inc.</p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">All rights reserved. For more information see: <a href="http://www.makemusic.com/xml.html"><span style=" text-decoration: underline; color:#0000ff;">MakeMusic</span></a></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">All rights reserved. For more information, see: <a href="http://www.makemusic.com/musicxml"><span style=" text-decoration: underline; color:#0000ff;">MakeMusic</span></a></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; text-decoration: underline; color:#0000ff;"></p></body></html> @@ -146,57 +146,57 @@ p, li { white-space: pre-wrap; } - album name + Album Name - remove current score + Remove Current Score - - Remove Score + + Move Current Score Down in List - - move current score down in list + + Move Current Score Up in List - - Down + + Create New Album - - move current score up in list + + Load an Existing Album - - Up + + Remove Score - - Add Score + + Down - - create new album + + Up - - New + + Add Score - - load an existing album + + New @@ -215,28 +215,28 @@ p, li { white-space: pre-wrap; } - + MuseScore Album Files (*.album);; - - + + All Files (*) - + MuseScore Files (*.mscz *.mscx *.msc);; - + MuseScore: Add Score - + MuseScore: Load Album @@ -349,6 +349,16 @@ p, li { white-space: pre-wrap; } BarLine + + + spanFrom: + + + + + spanTo: + + BeamBase @@ -416,6 +426,44 @@ p, li { white-space: pre-wrap; } + + BoxBase + + + Form + + + + + bottomMargin: + + + + + topGap: + + + + + bottomGap: + + + + + leftMargin: + + + + + topMargin: + + + + + rightMargin: + + + BoxPropertiesBase @@ -506,17 +554,17 @@ spatium unit - + Arpeggio - + Tremolo - + Glissando @@ -1464,12 +1512,12 @@ spatium unit - + Hide courtesy clef - + Show courtesy clef @@ -1612,29 +1660,29 @@ spatium unit - + Open File - + failed: - + MuseScore: Open File - + Write File failed: - + MuseScore: Write Drumset @@ -1667,7 +1715,7 @@ failed: - + Note Head: @@ -1702,47 +1750,67 @@ failed: - + + 1 + + + + + 2 + + + + + 3 + + + + + 4 + + + + Shortcut: - + A - + B - + C - + D - + E - + F - + G - + -- @@ -1984,7 +2052,6 @@ failed: - A 8 @@ -2043,6 +2110,11 @@ failed: Ab 7 + + + A 7 + + Bb 7 @@ -2569,6 +2641,19 @@ failed: + + EditStaff + + + Edit Short Name + + + + + Edit Long Name + + + EditStaffBase @@ -2597,228 +2682,223 @@ failed: - - Edit... - - - - + Part Properties - + Instrument: - + Change Instrument... - + Part Name: - + Long Instrument Name: - + Short Instrument Name: + - - - - - + + + + ... - + Usable Pitch Range: - + Amateur: - - + + - - + Professional: - + Play Transposition: - + 0 - Perfect Unison - + 1 - Augmented Unison - + 0 - Diminished Second - + 1 - Minor Second - + 2 - Major Second - + 3 - Augmented Second - + 2 - Diminished Third - + 3 - Minor Third - + 4 - Major Third - + 5 - Augmented Third - + 4 - Diminished Fourth - + 5 - Perfect Fourth - + 6 - Augmented Fourth - + 6 - Diminished Fifth - + 7 - Perfect Fifth - + 8 - Augmented Fifth - + 7 - Diminished Sixth - + 8 - Minor Sixth - + 9 - Major Sixth - + 10 - Augmented Sixth - + 9 - Diminished Seventh - + 10 - Minor Seventh - + 11 - Major Seventh - + 12 - Augmented Seventh - + 11 - Diminished Octave - + 12 - Perfect Octave - + Number of strings: - + Edit string data... - + +octave - + up - + down @@ -2847,8 +2927,8 @@ failed: - - + + sp @@ -2859,19 +2939,19 @@ failed: - + Stemless - + Key Signature - + Ledger Lines @@ -2901,34 +2981,17 @@ failed: - - Guitar (modern) - tablatture type - - - - - Bass (modern) - tablature type - - - - + Italian (historic) tablature type - + French (historic) tablature type - - - Set - - Show Clef @@ -2944,147 +3007,225 @@ failed: Show Time Sign. + + + 6 strings (generic guitar) + tablatture type + + + + + 4 strings (generic bass) + tablature type + + + + + ukulele + + + + + bandurria + + + + + Custom + + - + « Full Configur. - + Upside Down - + Quick Presets » - + Fret Marks - - + + Font: - - + + Size: - - + + pt - - + + Vert. Offset: - + Marks are: - + Numbers - + Letters - + Marks are drawn: - + On Lines - + Above Lines - + Lines are: - + Continuous - + Broken - + Note Values - + Shown as: - + + None - + Note Symbols - + Stems and beams - + + Stem position: + + + + + Above + + + + + Below + + + + + Stem style: + + + + + Beside staff + + + + + Through staff + + + + + Half notes: + + + + + As short stem + + + + + As slashed stem + + + + + Show Rests + + + + Preview - + Create new tablature type - + PERCUSSION STAFF - + Create new percussion type - + Save - + Load @@ -3149,6 +3290,16 @@ failed: Chord + + + Edit Plain Text + + + + + Edit HTML Text + + EditStyleBase @@ -3159,151 +3310,153 @@ failed: - + Score - - - + + + Page - + System - + Measure - + Barlines - + Notes - + Arpeggios - + Beams - + Sizes - + Hairpins - - + + Chordnames - - + + Articulations, Ornaments - + Voices - + Display in Concert Pitch - + Create Multi Measure Rests - + Minumum width of measure: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + sp spatium unit ---------- @@ -3329,546 +3482,565 @@ spatium unit ---------- spatium unit ---------- +spatium unit +---------- +spatium unit +---------- spatium unit - + Minimum Number of empty measures: - + Hide Empty Staves - - - - - - + + + + + + % - + Last system fill threshold - + Create clef for all systems - + Create time signatures - + Create key sig for all systems - + Create courtesy time signatures - + System Bracket Distance: - + shorten stems - - - + + + show first - - + + odd/even - + Measure Numbers - + all staffs - + every system - + interval - - + + spaces - + Create courtesy key signatures - + Clefs - - + + Figured Bass - - + + Accidentals - + Music upper margin - + Music lower margin - + Staff distance - + Lyrics upper margin - + Lyrics lower margin - + Vertical-frame upper margin - + V-frame upper margin - + Vertical-frame lower margin - + V-frame lower margin - + Create courtesy clefs - + Lyrics line height - + Header Text - + show header also on first page - + use odd even page header - - + + styled - - + + left - - + + middle - - + + right - - - + + + edit even page header - - - + + + add odd page header - + Footer Text - + show footer also on first page - + use odd even page footer - - - + + + edit even page footer - - - + + + edit odd page header - + + Pedal, Trill + + + + Min. System distance - + Max. System distance - + Fix Number of Measures/System: - + Fix Measure Width - + System Bracket Width: - + Akkolade Width: - + minimum Measure width - + Spacing (1=tight) - + Min. note distance - + Clef left margin - + Key sig. left margin - + Time sig. left margin - + Clef-barline distance - + Staff line width - + Show repeat bar tips ("winged" repeats) - + Barline at start of single staff - + Barline at start of multiple staves - + Bar width: - + End bar width: - + End bar distance: - + Double bar width: - + Double bar distance: - + Progression - + Shortest stem - + Accidental note distance - + Accidental distance - + Note dot distance - + Dot dot distance - + Ledger line width - + Ledger line length - + Default TAB Clef - + Clef1 - + Clef2 - + Distance to note - + line width at end - + line width middle - + bow - + dotted line width - + Ottava - + + Pedal Line + + + + + Trill Line + + + + Use German names - + Chord description file - + Font: - + Size: - + pt - + Vertical position: - + Line height: - + Style - + Modern - + Historic - + Accidental - + semitones offset - + cents offset - - - - + + + + up - - - - + + + + down - + beam width units - + Line width @@ -3879,7 +4051,7 @@ spatium unit - + Slurs/Ties @@ -3889,34 +4061,34 @@ spatium unit - + Musical symbols font: - + Don't hide empty staves in first system - + Grand staff distance - - + + even - - + + odd - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -3929,172 +4101,174 @@ p, li { white-space: pre-wrap; } - + Akkolade Distance: - + Barline-note margin - + Note-barline margin - + Clef/Key right margin - + Hook length - + Beam width - + Beam distance - + Minimum length - + Minimum slope - + Maximum slope - + Small staff size - + Small note size - + Grace note size - + Small clef size - - - - - - - - - - - - - + + + + + + + + + + + + + ... - - - + + + Line width: - + Height: - + Line break height: - + Volta - - - + + + + + default Y-position: - - + + Hook height: - + note head distance - - - + + + sp space unit - + articulation distance - + staff distance - + Stem Direction in Multi-Voice Context - + Voice 1 - + Voice 2 - + Voice 3 - + Voice 4 @@ -4257,7 +4431,7 @@ p, li { white-space: pre-wrap; } GreendotButton - + record @@ -4354,7 +4528,7 @@ p, li { white-space: pre-wrap; } Inspector - + Inspector @@ -4441,6 +4615,79 @@ spatium unit + + InspectorBarLine + + + Staff default + + + + + Tick + + + + + Tick alt. + + + + + Short + + + + + Short alt. + + + + + Type: + + + + + Measure default + + + + + Normal + + + + + Dashed + + + + + Dotted + + + + + Double + + + + + End + + + + + Span: + + + + + Custom + + + InspectorBeam @@ -4473,13 +4720,13 @@ spatium unit - - + + ... - + User Position @@ -4595,7 +4842,7 @@ spatium unit InspectorClef - + Show Courtesy Clef @@ -4729,15 +4976,80 @@ spatium unit - InspectorImage + InspectorHairpin - + Form - - Image + + Hairpin + + + + + crescendo + + + + + decrescendo + + + + + Subtype: + + + + + Dynamic Range: + + + + + Velo. change: + + + + + Staff + + + + + Part + + + + + SYstem + + + + + + reset value + + + + + + ... + + + + + InspectorImage + + + Form + + + + + Image @@ -4782,12 +5094,12 @@ spatium unit InspectorKeySig - + Show Courtesy Time Signature - + Show Naturals @@ -5026,45 +5338,83 @@ spatium unit - + Select - + Dot1 - + Dot2 - + Dot3 - + Hook - + Stem - + Beam + + InspectorOttava + + + Form + + + + + Ottava + + + + + Subtype: + + + + + 8va + + + + + 15ma + + + + + 8vb + + + + + 15mb + + + InspectorRest - + Small @@ -5140,11 +5490,54 @@ spatium unit InspectorTimeSig - + Show Courtesy Time Signature + + InspectorTrill + + + Form + + + + + Trill + + + + + Subtype: + + + + + trill line + + + + + up prall + + + + + down prall + + + + + prall prall + + + + + wavy line + + + InspectorVBox @@ -5231,6 +5624,34 @@ spatium unit + + InspectorVolta + + + Form + + + + + Volta + + + + + Subtype: + + + + + Open + + + + + Closed + + + InstrumentDialogBase @@ -5285,22 +5706,22 @@ spatium unit - visible + Visible - - Clef + + Linked - - linked + + Staff Linked to Previous - - staff linked to previous + + Clef @@ -5424,49 +5845,49 @@ spatium unit - + MuseScore: Save Instrument List - + MuseScore Instruments (*.xml);; - + Open Instruments File - + failed: - + MuseScore: Open Instruments file - + Write Style failed: - + MuseScore: Write Style - + MuseScore: Load Instrument List - + MuseScore Instruments (*.xml);;All files (*) @@ -5533,22 +5954,22 @@ failed: KeySig - + Hide Courtesy Key Signature - + Show Courtesy Key Signature - + Hide Naturals - + Show Naturals @@ -6240,12 +6661,12 @@ Would you like to locate %2 now? - + visible - + stemless @@ -6319,57 +6740,92 @@ Would you like to locate %2 now? - + + 1 + + + + + 2 + + + + + 4 + + + + + 8 + + + + + 16 + + + + + 32 + + + + + 64 + + + + Other - + do not count - + Exclude from measure count - + break multi measure rest - + add to measure number - + layout stretch - + repeat count: - + goto previous measure - + <- - + goto next measure - + -> @@ -6454,7 +6910,7 @@ Would you like to locate %2 now? MenuNotes - + &Notes @@ -6505,476 +6961,470 @@ Would you like to locate %2 now? MuseScore - + Fingering - + Rehearsal Mark - + Concert Pitch - - + + MuseScore - + Save changes to the score "%1" before closing? - + Overture / Score Writer Files <experimental> (*.ove *.scw);; - + MuseScore: Load Score - - Cannot read file: %1 error: %2 - - - - + MusicXML Files (*.xml *.mxl);; - + MIDI Files (*.mid *.midi *.kar);; - + Muse Data Files (*.md);; - + Capella Files (*.cap);; - - + MuseScore: Load error - + All Supported Files (*.mscz *.mscx *.xml *.mxl *.mid *.midi *.kar *.md *.mgu *.MGU *.sgu *.SGU *.cap *.pdf *.ove *.scw *.bww *.GTP *.GP3 *.GP4 *.GP5);; - + All Supported Files (*.mscz *.mscx *.xml *.mxl *.mid *.midi *.kar *.md *.mgu *.MGU *.sgu *.SGU *.cap *.ove *.scw *.bww *.GTP *.GP3 *.GP4 *.GP5);; - + MuseScore Files (*.mscz *.mscx);; - + BB Files <experimental> (*.mgu *.MGU *.sgu *.SGU);; - + PDF Files <experimental omr> (*.pdf);; - + Bagpipe Music Writer Files <experimental> (*.bww);; - + Guitar Pro (*.GTP *.GP3 *.GP4 *.GP5);; - - - + + + All Files (*) - + Compressed MuseScore File (*.mscz) - + MuseScore File (*.mscx) - + MuseScore: Save Score - + MuseScore: Save File - + Untitled - - + + MuseScore: Load Style - + MuseScore Styles (*.mss);;All Files (*) - - - + + + MuseScore: Save Style - - - + + + MuseScore Style File (*.mss) - + SoundFont Files (*.sf2 *.SF2);;All (*) - + Choose Synthesizer SoundFont - + MuseScore: Choose Synthesizer SoundFont - + MuseScore Chord Style File (*.xml) - + ;;All Files (*) - - + + MuseScore: Load Chord Style - + MuseScore: Save Chord Style - + PDF Scan File (*.pdf);;All (*) - + Choose PDF Scan - + MuseScore: Choose PDF Scan - + OGG Audio File (*.ogg);;All (*) - + Choose Audio File - + MuseScore: Choose OGG Audio File - + PNG Bitmap Graphic (*.png);; - + PDF File (*.pdf);; - + Encapsulated PostScript File (*.eps);; - + Scalable Vector Graphic (*.svg);; - + MuseScore: Save Image - + MuseScore: Load Palette - + MuseScore Palette (*.mpal);;All Files (*) - + MuseScore: Save Palette - + MuseScore Palette (*.mpal) - + MuseScore: Load Plugin - + MuseScore Plugin (*.qml);;All Files (*) - + MuseScore: Save Plugin - + MuseScore Plugin File (*.qml) - + MuseScore: Load Drumset - + MuseScore Drumset (*.drm);;All Files (*) - + MuseScore: Save Drumset - + MuseScore Drumset File (*.drm) - - + + Uncompressed MuseScore Format (*.mscx) - - + + MusicXML Format (*.xml) - - + + Compressed MusicXML Format (*.mxl) - - + + Standard MIDI File (*.mid) - - + + PDF File (*.pdf) - - + + PostScript File (*.ps) - - + + PNG Bitmap Graphic (*.png) - - + + Scalable Vector Graphic (*.svg) - - + + Wave Audio (*.wav) - - + + Flac Audio (*.flac) - - + + Ogg Vorbis Audio (*.ogg) - - + + MP3 Audio (*.mp3) - + MuseScore: Export - + MuseScore Format (*.mscx) - + MuseScore: Save a Copy - - - - + + + + MuseScore: Save As - - + + LilyPond Format (*.ly) - - - - + + + + cannot determine file type - - - + + + MuseScore: Export Parts - + Parts were successfully exported - - + + MuseScore Format (*.mscz) - - + + MuseScore: Save Selection - + MuseScore: Save Selected - + MuseScore: InsertImage - + All Supported Files (*.svg *.jpg *.png *.xpm);;Scalable vector graphics (*.svg);;JPEG (*.jpg);;PNG (*.png);;XPM (*.xpm);;All Files (*) - + Images (*.jpg *.gif *.png);;All (*) - + Grace Notes - + Clefs @@ -6984,277 +7434,312 @@ before closing? - + Time Signatures - + 2/2 alla breve - + Normal - + Dashed - + Arpeggio && Glissando - + Arpeggio - + Breath && Pauses - + Caesura - + Square bracket - + Curly bracket - + Articulations && Ornaments - + Fingering %1 - + String number %1 - + Thumb - + 1/8 through stem - + 1/16 through stem - + 1/32 through stem - + 1/64 through stem - + 1/8 between notes - + 1/16 between notes - + 1/32 between notes - + 1/64 between notes - + Fall/Doit - + fall - + doit - + Repeat measure sign - + Segno Variation - + Da Capo - + Da Capo al Fine - + Da Capo al Coda - + staff-text - + Staff Text - + system-text - + System Text - + Instrument - + Instrument Change - + 1. - + Lyrics Verse Number - + Tempo Text - + Breaks && Spacer - + + Dotted + + + + + Tick 1 + + + + + Tick 2 + + + + + Short 1 + + + + + Short 2 + + + + Line break - + Page break - + Section break - + Staff spacer down - + Staff spacer up - + + plop + + + + + scoop + + + + Chord Name - + Staff Changes - + set visible - + set invisible - + change staff type - + change instrument - + Fret Diagram - + &Measures - + &Frames - + &Text @@ -7264,42 +7749,42 @@ before closing? - + 4/4 common time - + End Bar - + Double Bar - + Start Repeat - + End Repeat - + End-Start Repeat - + Breath - + Brackets @@ -7309,62 +7794,62 @@ before closing? - + Note Heads - + Tremolo - + Repeats - + Segno - + Coda - + Varied coda - + Codetta - + Fine - + D.S al Coda - + D.S al Fine - + D.S - + To Coda @@ -7374,62 +7859,62 @@ before closing? - + Symbols - + &Create - + Text - + File Operations - + Transport Tools - + Page View - + Foto Mode - + Note Entry - + &File - + Open &Recent - + &Edit - + &Layout @@ -7461,205 +7946,215 @@ please choose a different name: - + MuseScore: transpose - + There is nothing selected. Transpose whole score? - - + + MuseScore: save style - + MuseScore: load style - + Open failed: unknown file extension or broken file - + foto mode - + Bar %1 Beat %2.%3 - + The previous session quit unexpectedly. Restore session? - + &Style - + synthesizer - + audio track - + switch play mode - + Continuous View - + &Measure - + &Voices - + Pr&ofiles - + &Preferences... - + Add N&ote - + Add &Interval - + T&uplets - + &Display - + &Plugins - + &Help - + &Online Handbook - + About &Qt - + About &MusicXML - + Check for &Update - + Report a bug - + + NOTE entry mode + + + + + DRUM entry mode + + + + + TAB entry mode + + + + Find - + MuseScore: warning - + Cannot create tuplet: note value too short - + &About - + switch layer - + no score - - note entry mode - - - - + edit mode - + play - + Go To: - + System - + Glissando @@ -7701,6 +8196,11 @@ Restore session? Error %1 returned from MP3 encoder + + + you cannot create an element + + MyWebView @@ -7728,7 +8228,7 @@ Restore session? NewWizard - + MuseScore: Create New Score @@ -7776,12 +8276,12 @@ Restore session? NewWizardPage1 - + Create New Score - + This wizard creates a new score @@ -7789,12 +8289,12 @@ Restore session? NewWizardPage2 - + Create New Score - + Define a set of instruments. Each instrument is represented by one or more staves @@ -7802,12 +8302,12 @@ Restore session? NewWizardPage3 - + Create New Score - + Create Time Signature @@ -7815,22 +8315,22 @@ Restore session? NewWizardPage4 - + Create New Score - + Select Template File: - + MuseScore: Select Template - + MuseScore Template Files (*.mscz *.mscx) @@ -7838,27 +8338,27 @@ Restore session? NewWizardPage5 - + Create New Score - + Select Key Signature and Tempo: - + Key Signature - + Tempo - + BPM: @@ -7881,33 +8381,28 @@ Restore session? - - OnTime: + + NoteEvents - - OffTime: - - - - - + + invalid - + Dot1 - + Dot2 - + Dot3 @@ -8093,27 +8588,27 @@ Restore session? PaletteBox - + Palettes - + Palette Operations - + Single Palette Mode - + Reset to factory defaults - + new Palette @@ -8121,42 +8616,42 @@ Restore session? PaletteBoxButton - + Palette Properties... - + Insert new Palette... - + Move Palette Up - + Move Palette Down - + Enable Editing - + Save Palette - + Load Palette - + Delete Palette @@ -8480,42 +8975,42 @@ Restore session? PluginCreator - + File Operations - + Edit Operations - + MuseScore Plugin Editor - - - + + + MuseScore - - - + + + Plugin "%1" has changes save before closing? - + untitled - + Manual @@ -8591,74 +9086,85 @@ save before closing? PreferenceDialog - + Choose Default Style - + Choose Default Style for Parts - - + + Choose Instrument List - - + + Instrument List (*.xml) - + Choose Starting Score - + Choose Scores Directory - + Choose Styles Directory - + Choose Templates Directory - + Choose Plugins Directory - + Choose SoundFonts Directory - + Choose Images Directory - + + + MuseScore Shortcuts + + + + + Print Shortcuts + + + + Choose Notepaper - + Choose Background Wallpaper - + MuseScore Files (*.mscz *.mscx *.msc);;All (*) @@ -8991,47 +9497,52 @@ save before closing? - + + Print + + + + Plugins - + Name: - + Path: - + Version: - + Load - + Define Shortcut - + Update - + Automatic Update Check - + Check for new versions of MuseScore on startup @@ -9490,7 +10001,7 @@ save before closing? - + Shortcut @@ -9515,7 +10026,7 @@ save before closing? Properties - + small @@ -9551,7 +10062,7 @@ save before closing? QWidget - + MuseScore: Import Capella @@ -9578,13 +10089,13 @@ save before closing? - - - - + + - - + + + + @@ -9599,54 +10110,54 @@ save before closing? - + MuseScore: Save Album - + MuseScore Files (*.album);; - + Open Album File - + failed: - + MuseScore: Open Album file - + Write Album failed: - + MuseScore: Write Album - + Untitled - + MuseScore: file not found: - + MuseScore: load failed: @@ -9668,17 +10179,17 @@ failed: - + MuseScore: load Style failed: - + MuseScore: Load languages failed: - + MuseScore: invalid command @@ -9689,7 +10200,7 @@ failed: - + MuseScore: Import GuitarPro @@ -9697,7 +10208,7 @@ failed: RecordButton - + record @@ -9731,7 +10242,7 @@ failed: - + Staff @@ -9754,26 +10265,26 @@ failed: - - - - + + + + Set Invisible - - - - + + + + Set Visible - + Color... @@ -9785,9 +10296,9 @@ failed: - - - + + + Text Properties... @@ -9797,150 +10308,150 @@ failed: - + Bend Properties... - + TremoloBar Properties... - - + + Add - - - + + + Frame Properties... - - - + + + Tuplet Properties... - + Volta Properties... - + Line Properties... - + Time Signature Properties... - + MIDI Properties... - + Staff Text Properties... - + Tempo Properties... - + Change Instrument Properties... - + Edit Mode - + Slur Properties... - - + + Tuplet... - - + + Delete Tuplet - + Style... - + Chord Articulation... - + Marker Properties... - + Jump Properties... - + Section Break Properties... - + Change Instrument... - + Fret Diagram Properties... - + Glissando Properties... - + Dynamics - + Hairpin Properties... - + Harmony Properties... - - + + Staff Properties... @@ -9957,54 +10468,54 @@ failed: - + Measure - + Measure Properties... - + Please select the complete tuplet and retry the copy operation - + Please select the complete tuplet and retry the cut operation - + No chord/rest selected: please select a chord/rest and try again - + Cannot split measure here: cannot split tuplet - + No measures selected: please select range of measures to join and try again - + No staves found: please use the instruments dialog to first create some staves - + No Measure selected: please select a measure and try again @@ -10284,12 +10795,12 @@ Sequencer will be disabled. ShortcutCaptureDialog - + Shortcut conflicts with - + Undefined @@ -10344,31 +10855,6 @@ Sequencer will be disabled. Form - - - Slur - - - - - Slur End - - - - - Staff: - - - - - Voice: - - - - - Tick: - - SlurPropertyBase @@ -10474,6 +10960,16 @@ Sequencer will be disabled. Form + + + CHORD + + + + + NOTE + + SplitStaff @@ -10913,7 +11409,7 @@ altera - + MuseScore Startup Dialog @@ -11529,146 +12025,147 @@ altera - + relX: - + reference point offset in percent of parent width - - + + % - + Y: coordinate - + vertical offset to reference point - + relY: - + reference point offset in percent of parent height - + Unit: - + offset is absolute - + MM - + offset in Space units - + Space + spatium unit - + enable text frame - + Frame - + draw circled frame - + Circle - + draw boxed frame - + Box - + Width: - + frame line width - - - mm + + + sp - + Margin: - + frame inner margin - + Round: - + corner round - + Foreground Color: - - + + frame color - + Background Color: @@ -11731,67 +12228,72 @@ please choose a different name: - + align left - + align horizontal center - + align right - + align top - + align bottom - + + align vertical baseline + + + + align vertical center - + subscript - + superscript - + unordered list - + ordered list - + indent more - + indent less - + unstyled @@ -11803,16 +12305,6 @@ please choose a different name: MuseScore: Time Signatures - - - 4/4 common time - - - - - 2/2 alla breve - - TimeDialogBase @@ -11862,12 +12354,12 @@ please choose a different name: TimeSig - + Hide Courtesy Time Signature - + Show Courtesy Time Signature @@ -12010,259 +12502,306 @@ p, li { white-space: pre-wrap; } - - Transpose by Key - - - - + Cb major / Ab minor - + Gb major / Eb minor - + Db major / Bb minor - + Ab major / F minor - + Eb major / C minor - + Bb major / G minor - + F major / D minor - + C major / A minor - + G major / E minor - + D major / B minor - + A major / F# minor - + E major / C# minor - + B major / G# minor - + F# major / D# minor - + C# major / A# minor - - + + + Up - - + + + Down - + Closest - - Transpose by Interval - - - - + Perfect Unison - + Augmented Unison - + Diminished Second - + Minor Second - + Major Second - + Augmented Second - + Diminished Third - + Minor Third - + Major Third - + Augmented Third - + Diminished Fourth - + Perfect Fourth - + Augmented Fourth - + Diminished Fifth - + Perfect Fifth - + Augmented Fifth - + Diminished Sixth - + Minor Sixth - + Major Sixth - + Augmented Sixth - + Diminished Seventh - + Minor Seventh - + Major Seventh - + Augmented Seventh - + Diminished Octave - + Perfect Octave - + + Transpose Diatonically + + + + + Second + + + + + Third + + + + + Fourth + + + + + Fifth + + + + + Sixth + + + + + Seventh + + + + + Keep degree alterations + + + + Options - + Transpose key signatures - + + Transpose Chromatically + + + + + By Key + + + + + By Interval + + + + Transpose chord names - + Single sharps and flats only - + Use double sharps and flats @@ -12543,135 +13082,130 @@ p, li { white-space: pre-wrap; } action - + Save a Copy... - + Export... - - Reload - - - - + Close - + New... - + Create new score - + Print... - - + + Undo - - + + Redo - + Cut - + Copy - + Paste - + Instruments... - - + + Note Input - + Unison Above - + Enter unison above - + Second Above - + Enter second above - + Third Above - + Enter third above - + Fourth Above - + Enter fourth above - + Fifth Above - + Enter fifth above - + Sixth Above - + Enter sixth above @@ -12686,1555 +13220,1672 @@ p, li { white-space: pre-wrap; } - + Octave Above - + Enter octave above - + Ninth Above - + Enter ninth above - + Second Below - + Enter second below - + Third Below - + Enter third below - + Fourth Below - + Enter fourth below - + Fifth Below - + Enter fifth below - + Sixth Below - + Enter sixth below - + Seventh Below - + Enter seventh below - + Octave Below - + Enter octave below - + Ninth Below - + Enter ninth below - + A - + B - + C - + D - + E - + F - + G - + Add A - + Add note A to chord - + Add B - + Add note B to chord - + Add C - + Add note C to chord - + Add D - + Add note D to chord - + Add E - + Add note E to chord - + Add F - + Add note F to chord - + Add G - + Add note G to chord - - + + Add More Stretch - + Add more stretch to selected measure - + Add Less Stretch - + Add less stretch to selected measure - - + + Reset Beam Mode - - Local handbook + + String above (TAB) - - Show local handbook + + Select string above (TAB only) - - File open + + String below (TAB) - - Load score from file + + Select string below (TAB only) - - File save + + Fret 0 (TAB) - - Save score to file + + Add fret 0 on current string (TAB only) - - File save as + + Fret 1 (TAB) - - Save score under a new file name + + Add fret 1 on current string (TAB only) - - File save a copy + + Fret 2 (TAB) - - Save a copy of the score in addition to the current file + + Add fret 2 on current string (TAB only) - - Save a copy of the score in various formats + + Fret 3 (TAB) - - Export Parts + + Add fret 3 on current string (TAB only) - - Export Parts... + + Fret 4 (TAB) - - Save a copy of the score's parts in various formats + + Add fret 4 of current string (TAB only) - - File reload + + Fret 5 (TAB) - - Reload score from file + + Add fret 5 of current string (TAB only) - - File close + + Fret 6 (TAB) - - Close current score + + Add fret 6 of current string (TAB only) - - File new + + Fret 7 (TAB) - - Print + + Add fret 7 of current string (TAB only) - - Print score + + Fret 8 (TAB) - - Undo last change + + Add fret 8 of current string (TAB only) - + + Fret 9 (TAB) + + + + + Add fret 9 of current string (TAB only) + + + + + Staff Types... + + + + + Staff type editor + + + + + Show staff type editor + + + + + Note anchored Textline + + + + + Local handbook + + + + + Show local handbook + + + + + File open + + + + + Load score from file + + + + + File save + + + + + Save score to file + + + + + File save as + + + + + Save score under a new file name + + + + + File save a copy + + + + + Save a copy of the score in addition to the current file + + + + + Save a copy of the score in various formats + + + + + Export Parts + + + + + Export Parts... + + + + + Save a copy of the score's parts in various formats + + + + + File close + + + + + Close current score + + + + + File new + + + + + Print + + + + + Print score + + + + + Undo last change + + + + Redo last undo - + Show instruments dialog - + Note input mode - + Enter note A - + Enter note B - + Enter note C - + Enter note D - + Enter note E - + Enter note F - + Enter note G - + Insert note A - + Insert A - + Insert note B - + Insert B - + Insert note C - + Insert C - + Insert note D - + Insert D - + Insert note E - + Insert E - + Insert note F - + Insert F - + Insert note G - + Insert G - + Enter rest - - - + + + Rest - + Add staccato - + Staccato - + Add tenuto - + Tenuto - + Add marcato - + Marcato - + Diatonic pitch down - + Diatonic down - + Add previous chord to selection - + Select to beginning of measure - + Add next chord to selection - + Select Section - + Move chord/rest right - + Move chord/rest left - + Select to end of measure - + Select to beginning of line - + Select to end of line - + Select to beginning of score - + Select to end of score - + Add staff above to selection - + Add staff below to selection - + Page: previous - + Page: next - + Page: top - + Page: end - - Add slur - - - - + Crescendo - + Decrescendo - + Escape - - + + Delete - + Delete contents of the selected measures - + Timewise delete - + Append One Measure - + Insert One Measure - - + Insert Text Frame - + Append Text Frame - - + Insert Fret Diagram Frame - + Other tuplets - + Note duration: longa - + Parts... - + Full Screen - + Additional Media... - + Page Settings... - + Album... - + Layers... - + Plugin Creator - + next syllable - + previous syllable - + toggle visibility - + set visible - + set unvisible - + Note duration: whole - + Note duration: half - + Note duration: quarter - + Note duration: 8th - + Note duration: 16th - + Note duration: 32nd - + Note duration: 64th - + Note duration: 128th - - + + 128th note - + Note duration: augmentation dot - - + + Augmentation dot - + Note duration: double augmentation dot - - + + Double augmentation dot - + Note duration: tie - - + + Tie - + Note entry: rest - + Note entry: double sharp - - + + Double sharp - + Note entry: sharp - - + + Sharp - + Note entry: natural - - + + Natural - + Note entry: flat - - + + Flat - - - - Grace: 8nd after - - - - + Pan score while playing on/off - + Pan - + &Transpose... - + Violin Clef - + Bass Clef - + Display in concert pitch - + Toggle Section Break - + Show Unprintable - + Show Page Margins - + Manage parts - + Inspector - + Show OMR Panel - + OmrPanel - + toggle metronome - + Figured Bass - + Next Score - + Previous Score - + Transpose Up - + Transpose Down - + Show master palette - + Master Palette... - - Insert Measure - - - - + Toggle View Mode - + Show inspector - + Reset measure stretch - + Note entry: whole rest - + Whole rest - + Note entry: half rest - + Half rest - + Note entry: quarter rest - + Quarter rest - + Note entry: 8th rest - + 8th rest - + Text - + Add Frame Text - + Debugger - + Reset Stretch - + Insert Special Characters - + Backspace - + Find - + Mirror note head - + General... - + Edit general style - + Text... - + Chords... - + Double duration - + Half duration - + Follow song - + Display documents side by side - + Display documents stacked - + Show OMR image - + Enharmonic up - + Enharmonic down - + Create new revision - + Toggle foto mode - + Enable horizontal raster - + Enable vertical raster - + Configure raster - + Re-Pitch Mode - + Replace pitches without changing rhythms - + Stack down - - next score - - - - - previous score - - - - + Show media dialog - + Piano Keyboard - + Split Measure - + Join Measure - + Page Settings - + Album - + Add trill - + Trill - + Less stretch - + Reset beam mode of selected measures - + Flip direction - + Pitch up - + Up - + Pitch up octave - + Up Octave - + Pitch up by an octave - + Up Note in Chord - + Go to higher pitched note in chord - + Go to top note in chord - + Top Note in Chord - + Move up - + Pitch down - + Down - + Pitch down octave - + Down octave - + Pitch down by an octave - + Down Note in Chord - - + + Go to lower pitched note in chord - + Go to bottom note in chord - + Bottom Note in Chord - - + + Move down - - + Previous chord - - + Previous measure - - + Next chord - - + Next measure - + Append measures - + Insert measures - + Save Selection - + Save Selection... - + Save current selection as new score - + Export score - + Respell pitches - Timewise Delete + Slur + Add Slur + + + + + Add Crescendo + + + + + Timewise Delete + + + + Delete element and duration - + Delete Selected Measures - + Append Measures... - + Insert Measures... - - + Insert Horizontal Frame - - + Insert Vertical Frame - + Append Horizontal Frame - + Append Vertical Frame - + Duplet - + Triplet - + Quadruplet - + Quintuplet - + Sextuplet - + Septuplet - + Octuplet - + Nonuplet - + Other... - - + + Longa - - + + + + Grace: 8th after + + + + + Enable sound while editing - + Palette - + Play Panel - + Navigator - + Mixer - + Transport - + Status Bar - + Quit - + Lyrics - + Note entry: double flat - - + + Double flat @@ -14244,574 +14895,594 @@ p, li { white-space: pre-wrap; } - + Open... - + Save - + Save As... - - - + + + Acciaccatura - - - + + + Appoggiatura - - - + + + Grace: quarter - - - + + + Grace: 16th - - - + + + Grace: 32nd - - - + + + Voice 1 - - - + + + Voice 2 - - - + + + Voice 3 - - - + + + Voice 4 - + MIDI input - - + + Enable MIDI input - + Editing sound on - + Beam start - + Beam middle - + No beam - + Beam 32nd sub - + Beam 64th sub - + Auto beam - + Feathered beam, slower - + Feathered beam, faster - + Transport toolbar - + Note input toolbar - + Zoom canvas - + + Play Previous Chord + + + + + Play Previous Measure + + + + + Play Next Chord + + + + + Play Next Measure + + + + + Player Seek to Begin + + + + + Player Seek to End + + + + + Save Style as Default... + + + + Layers - + MuseScore Connect - + Metronome - + System Text - + Staff Text - + Title - + Subtitle - + Composer - + Chord Name - + Harmony Properties - + Rehearsal Mark - + Play - + Start or stop playback - - Player seek to begin - - - - + Rewind - - Player seek to end - - - - + Repeat - + Load Style... - + Save Style... - - Save Style As Default... - - - - + Select All - + Concert Pitch - + Info... - + Reset - + Reset user settings - + Transpose - + Diatonic pitch up - + Diatonic up - + Note duration: double whole - - + + Double whole note - - + + Whole note - - + + Half note - - + + Quarter note - - + + 8th note - - + + 16th note - - + + 32nd note - - + + 64th note - + Tempo Marking... - + Tempo Marking - + Add system text - + Add staff text - + Add title text - + Add subtitle text - + Add composer text - + Add lyricist text - + Lyricist - + Add chord name - + Show harmony properties for chord - + Add rehearsal mark - + Add picture - + Picture - + Player play - + Player rewind - + Rewind to start position - + Play repeats on/off - + Load style - + Save style - + Exchange Voice 1-2 - + Exchange Voice 1-3 - + Exchange Voice 1-4 - + Exchange Voice 2-3 - + Exchange Voice 2-4 - + Exchange Voice 3-4 - + Repeat last command - + Edit score info - + Toggle System Break - + Toggle Page Break - + Edit Element - + Show Invisible - + Show Frames - + Insert Special Characters... - + Zoom In - + Zoom Out - + Edit text style - + Edit chord style - + Select all similar elements - + All Similar Elements - + Select all similar elements in same staff - + All Similar Elements in Same Staff - + Synthesizer - + Repeat selection - + Documents Side by Side - + Documents Stacked @@ -14819,12 +15490,12 @@ p, li { white-space: pre-wrap; } articulation - + Bend - + Tremolo Bar @@ -14840,45 +15511,45 @@ p, li { white-space: pre-wrap; } file - - + + error at line %1 column %2: %3 - + internal error: could not open resource musicxml.xsd - + internal error: MusicXML schema is invalid - + error reading container.xml at line %1 column %2: %3 - + can't find rootfile - - + + this is not a valid MusicXML file - + could not open MusicXML file @@ -14895,100 +15566,105 @@ p, li { white-space: pre-wrap; } lines - + Lines - + Slur - + Crescendo - + Diminuendo - + Prima volta - + Seconda volta - + Terza volta - + Seconda volta 2 - + 8va - + 15ma - + 8vb - + 15mb - - - - + + + + Pedal - + Trill line - + Upprall line - + Downprall line - + Prallprall line - + + Wavy line + + + + Text line - + Line diff --git a/share/locale/mscore_nb.ts b/share/locale/mscore_nb.ts index fdd253f79bae4..75e55051f3e47 100644 --- a/share/locale/mscore_nb.ts +++ b/share/locale/mscore_nb.ts @@ -3,6 +3,14 @@ AboutBox + + About MuseScore + + + + Copy revision number + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -12,9 +20,9 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Support MuseScore with </span><a href="http://www.musescore.org/en/donate"><span style=" font-size:10pt; text-decoration: underline; color:#0000ff;">your donation</span></a></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Arial'; font-size:10pt;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Copyright </span><span style=" font-size:10pt;">©</span><span style=" font-family:'Arial'; font-size:10pt;"> 1999-2009 Werner Schweer and Others. </span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Copyright </span><span style=" font-size:10pt;">©</span><span style=" font-family:'Arial'; font-size:10pt;"> 1999-2012 Werner Schweer and Others. </span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Published under the GNU General Public License</span></p></body></html> - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> @@ -23,15 +31,7 @@ p, li { white-space: pre-wrap; } <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Arial'; font-size:10pt;"></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Opphavsrett </span><span style=" font-size:10pt;">©</span><span style=" font-family:'Arial'; font-size:10pt;"> 1999-2009 Werner Schweer med flere. </span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Publisert under lisensen GNU General Public License</span></p></body></html> - - - About MuseScore - - - - Copy revision number - +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Publisert under lisensen GNU General Public License</span></p></body></html> {3C?} {4.0/?} {3.?} {40/?} {1"?} {2'?} {8.25p?} {400;?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {10p?} {10p?} {0000f?} {10p?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {10p?} {10p?} {0000f?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {10p?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {10p?} {10p?} {10p?} {1999-2012 ?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {10p?} @@ -55,17 +55,6 @@ p, li { white-space: pre-wrap; } About MusicXML - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; font-size:10pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">MusicXML is an open file format for exchanging digital sheet music,</p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">supported by many applications. MusicXML is copyright © MakeMusic, Inc.</p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">All rights reserved. For more information see: <a href="http://www.makemusic.com/xml.html"><span style=" text-decoration: underline; color:#0000ff;">MakeMusic</span></a></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; text-decoration: underline; color:#0000ff;"></p></body></html> - - The MusicXML Public License: @@ -113,6 +102,17 @@ p, li { white-space: pre-wrap; } <p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p></body></html> + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans Serif'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">MusicXML is an open file format for exchanging digital sheet music,</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">supported by many applications. MusicXML is copyright © MakeMusic, Inc.</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">All rights reserved. For more information, see: <a href="http://www.makemusic.com/musicxml"><span style=" text-decoration: underline; color:#0000ff;">MakeMusic</span></a></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; text-decoration: underline; color:#0000ff;"></p></body></html> + + Accidental @@ -131,30 +131,14 @@ p, li { white-space: pre-wrap; } Album Name: - - album name - - - - remove current score - - Remove Score - - move current score down in list - - Down Ned - - move current score up in list - - Up Opp @@ -163,18 +147,10 @@ p, li { white-space: pre-wrap; } Add Score - - create new album - - New Ny - - load an existing album - - Print Album @@ -207,6 +183,30 @@ p, li { white-space: pre-wrap; } MuseScore: Load Album + + Album Name + + + + Remove Current Score + + + + Move Current Score Down in List + + + + Move Current Score Up in List + + + + Create New Album + + + + Load an Existing Album + + ArticulationBase @@ -296,6 +296,14 @@ p, li { white-space: pre-wrap; } BarLine Taktstrek + + spanFrom: + + + + spanTo: + + BeamBase @@ -351,6 +359,37 @@ p, li { white-space: pre-wrap; } + + BoxBase + + Form + Skjema + + + bottomMargin: + + + + topGap: + + + + bottomGap: + + + + leftMargin: + + + + topMargin: + + + + rightMargin: + + + BoxPropertiesBase @@ -1412,6 +1451,22 @@ feilet: No. + + 1 + 1 + + + 2 + 2 + + + 3 + 3 + + + 4 + 4 + EditInstrumentBase @@ -2030,6 +2085,10 @@ feilet: B -1 + + A 7 + + EditRaster @@ -2058,6 +2117,17 @@ feilet: + + EditStaff + + Edit Short Name + + + + Edit Long Name + + + EditStaffBase @@ -2128,10 +2198,6 @@ feilet: Type: Type: - - Edit... - - ... ... @@ -2315,16 +2381,6 @@ feilet: Select: - - Guitar (modern) - tablatture type - - - - Bass (modern) - tablature type - - Italian (historic) tablature type @@ -2335,10 +2391,6 @@ feilet: tablature type - - Set - - Show Clef @@ -2463,6 +2515,68 @@ feilet: Preview Forhåndsvisning + + 6 strings (generic guitar) + tablatture type + + + + 4 strings (generic bass) + tablature type + + + + ukulele + + + + bandurria + + + + Custom + + + + Stem position: + + + + Above + Ovenfor + + + Below + + + + Stem style: + + + + Beside staff + + + + Through staff + + + + Half notes: + + + + As short stem + + + + As slashed stem + + + + Show Rests + + EditStringDataBase @@ -2513,6 +2627,14 @@ feilet: Chord Akkord + + Edit Plain Text + + + + Edit HTML Text + + EditStyleBase @@ -2602,6 +2724,10 @@ spatium unit ---------- spatium unit ---------- +spatium unit +---------- +spatium unit +---------- spatium unit pkt @@ -3186,6 +3312,18 @@ p, li { white-space: pre-wrap; } Clef/Key right margin + + Pedal, Trill + + + + Pedal Line + + + + Trill Line + + EditTempoBase @@ -3466,6 +3604,65 @@ spatium unit + + InspectorBarLine + + Staff default + + + + Tick + + + + Tick alt. + + + + Short + + + + Short alt. + + + + Type: + Type: + + + Measure default + + + + Normal + Normal + + + Dashed + Stiplet + + + Dotted + + + + Double + + + + End + Slutt + + + Span: + + + + Custom + + + InspectorBeam @@ -3685,6 +3882,57 @@ spatium unit ... + + InspectorHairpin + + Form + Skjema + + + Hairpin + Crescendo / Decrescendo + + + crescendo + + + + decrescendo + + + + Subtype: + + + + Dynamic Range: + + + + Velo. change: + + + + Staff + Notesystem + + + Part + + + + SYstem + + + + reset value + + + + ... + ... + + InspectorImage @@ -3937,6 +4185,37 @@ spatium unit + + InspectorOttava + + Form + Skjema + + + Ottava + Ottava + + + Subtype: + + + + 8va + 8va + + + 15ma + 15ma + + + 8vb + 8vb + + + 15mb + 15mb + + InspectorRest @@ -4005,6 +4284,41 @@ spatium unit + + InspectorTrill + + Form + Skjema + + + Trill + Trille + + + Subtype: + + + + trill line + + + + up prall + + + + down prall + + + + prall prall + + + + wavy line + + + InspectorVBox @@ -4063,6 +4377,29 @@ spatium unit + + InspectorVolta + + Form + Skjema + + + Volta + Hus + + + Subtype: + + + + Open + + + + Closed + + + InstrumentDialogBase @@ -4117,24 +4454,24 @@ spatium unit Staves Notesystemer - - visible - Synlig - Clef Nøkkel - linked + Add Linked Staff - staff linked to previous + Visible + Synlig + + + Linked - Add Linked Staff + Staff Linked to Previous @@ -4964,6 +5301,34 @@ Would you like to locate %2 now? -> + + 1 + 1 + + + 2 + 2 + + + 4 + 4 + + + 8 + 8 + + + 16 + 16 + + + 32 + 32 + + + 64 + 64 + MeasuresDialogBase @@ -5245,10 +5610,6 @@ før lukking? no score Intet noteark - - note entry mode - Noteinnsettingsmodus - edit mode Redigeringsmodus @@ -5670,10 +6031,6 @@ Gjenopprett økt? please choose a different name: - - Cannot read file: %1 error: %2 - - Overture / Score Writer Files <experimental> (*.ove *.scw);; @@ -5951,55 +6308,99 @@ please choose a different name: - Delete Profile + Delete Profile + + + + LilyPond Format (*.ly) + + + + MuseScore: Export Parts + + + + Parts were successfully exported + + + + Continuous View + + + + About &MusicXML + + + + Report a bug + + + + MuseScore: Load Plugin + + + + MuseScore Plugin (*.qml);;All Files (*) + + + + MuseScore: Save Plugin + + + + MuseScore Plugin File (*.qml) + + + + &Plugins - LilyPond Format (*.ly) + Find - MuseScore: Export Parts + Dotted - Parts were successfully exported + Tick 1 - Continuous View + Tick 2 - About &MusicXML + Short 1 - Report a bug + Short 2 - MuseScore: Load Plugin + plop - MuseScore Plugin (*.qml);;All Files (*) + scoop - MuseScore: Save Plugin + NOTE entry mode - MuseScore Plugin File (*.qml) + DRUM entry mode - &Plugins + TAB entry mode - Find + you cannot create an element @@ -6150,14 +6551,6 @@ please choose a different name: note head group Notehodegruppe - - OnTime: - Notestart: - - - OffTime: - Noteslutt: - invalid ugyldig @@ -6174,6 +6567,10 @@ please choose a different name: Dot3 + + NoteEvents + + OmrPanel @@ -6766,6 +7163,14 @@ save before closing? Choose Images Directory + + MuseScore Shortcuts + + + + Print Shortcuts + + PrefsDialogBase @@ -7401,6 +7806,10 @@ save before closing? Define Shortcut + + Print + Skriv ut + Properties @@ -8047,26 +8456,6 @@ Sequencer ble deaktivert. Form Skjema - - Slur - Bue - - - Slur End - Bueavslutning - - - Staff: - Notesystem: - - - Voice: - Stemme: - - - Tick: - Merke: - SlurPropertyBase @@ -8153,6 +8542,14 @@ Sequencer ble deaktivert. Form Skjema + + CHORD + + + + NOTE + + SplitStaff @@ -9019,6 +9416,7 @@ altera Space + spatium unit Avstand @@ -9053,10 +9451,6 @@ altera frame line width Tykkelse på kantlinje - - mm - mm - Margin: Marg: @@ -9089,6 +9483,10 @@ altera Background Color: + + sp + pkt + TextStyleDialog @@ -9188,6 +9586,10 @@ please choose a different name: unstyled + + align vertical baseline + + TimeDialog @@ -9195,14 +9597,6 @@ please choose a different name: MuseScore: Time Signatures MuseScore: Taktarter - - 4/4 common time - 4/4 taktart - - - 2/2 alla breve - 2/2 alle breve - TimeDialogBase @@ -9364,10 +9758,6 @@ p, li { white-space: pre-wrap; } MuseScore: Transpose MuseScore: Transponere - - Transpose by Key - Transponér til ny toneart - Cb major / Ab minor Cess-dur / Ass-moll @@ -9440,10 +9830,6 @@ p, li { white-space: pre-wrap; } Closest Nærmeste - - Transpose by Interval - Transponér ved intervall - Perfect Unison Ren prim @@ -9560,6 +9946,50 @@ p, li { white-space: pre-wrap; } Use double sharps and flats Bruk doble kryss og b + + Transpose Chromatically + + + + By Key + + + + By Interval + + + + Transpose Diatonically + + + + Second + + + + Third + + + + Fourth + + + + Fifth + + + + Sixth + + + + Seventh + + + + Keep degree alterations + + TremoloBarDialog @@ -9788,10 +10218,6 @@ p, li { white-space: pre-wrap; } Save a Copy... Lagre en kopi... - - Reload - Last på ny - Create new score Opprett nytt noteark @@ -10332,14 +10758,6 @@ p, li { white-space: pre-wrap; } Save a copy of the score in addition to the current file Lagre en kopi av notearket i tillegg til nåværenede fil - - File reload - Last inn fil på ny - - - Reload score from file - Last inn noteark fra fil på ny - File close Lukk fil @@ -10732,10 +11150,6 @@ p, li { white-space: pre-wrap; } Page: end - - Add slur - - Crescendo Crescendo @@ -11012,14 +11426,6 @@ p, li { white-space: pre-wrap; } Picture - - Player seek to begin - - - - Player seek to end - - &Transpose... @@ -11204,14 +11610,6 @@ p, li { white-space: pre-wrap; } Diatonic up - - next score - - - - previous score - - Reset user settings @@ -11240,10 +11638,6 @@ p, li { white-space: pre-wrap; } Respell pitches - - Grace: 8nd after - - Pan score while playing on/off @@ -11308,10 +11702,6 @@ p, li { white-space: pre-wrap; } Master Palette... - - Insert Measure - - Toggle View Mode @@ -11480,10 +11870,6 @@ p, li { white-space: pre-wrap; } Save Style... - - Save Style As Default... - - Select All @@ -11556,6 +11942,162 @@ p, li { white-space: pre-wrap; } Plugin Creator + + Slur + Bue + + + Add Slur + + + + Add Crescendo + + + + Grace: 8th after + + + + Play Previous Chord + + + + Play Previous Measure + + + + Play Next Chord + + + + Play Next Measure + + + + Player Seek to Begin + + + + Player Seek to End + + + + Save Style as Default... + + + + String above (TAB) + + + + Select string above (TAB only) + + + + String below (TAB) + + + + Select string below (TAB only) + + + + Fret 0 (TAB) + + + + Add fret 0 on current string (TAB only) + + + + Fret 1 (TAB) + + + + Add fret 1 on current string (TAB only) + + + + Fret 2 (TAB) + + + + Add fret 2 on current string (TAB only) + + + + Fret 3 (TAB) + + + + Add fret 3 on current string (TAB only) + + + + Fret 4 (TAB) + + + + Add fret 4 of current string (TAB only) + + + + Fret 5 (TAB) + + + + Add fret 5 of current string (TAB only) + + + + Fret 6 (TAB) + + + + Add fret 6 of current string (TAB only) + + + + Fret 7 (TAB) + + + + Add fret 7 of current string (TAB only) + + + + Fret 8 (TAB) + + + + Add fret 8 of current string (TAB only) + + + + Fret 9 (TAB) + + + + Add fret 9 of current string (TAB only) + + + + Staff Types... + + + + Staff type editor + + + + Show staff type editor + + + + Note anchored Textline + + articulation @@ -11698,6 +12240,10 @@ p, li { white-space: pre-wrap; } Line Linje + + Wavy line + + magTable diff --git a/share/locale/mscore_nl.ts b/share/locale/mscore_nl.ts index 40544feb10a9a..9ce672fbab97f 100644 --- a/share/locale/mscore_nl.ts +++ b/share/locale/mscore_nl.ts @@ -3,6 +3,14 @@ AboutBox + + About MuseScore + + + + Copy revision number + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -12,9 +20,9 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Support MuseScore with </span><a href="http://www.musescore.org/en/donate"><span style=" font-size:10pt; text-decoration: underline; color:#0000ff;">your donation</span></a></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Arial'; font-size:10pt;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Copyright </span><span style=" font-size:10pt;">©</span><span style=" font-family:'Arial'; font-size:10pt;"> 1999-2009 Werner Schweer and Others. </span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Copyright </span><span style=" font-size:10pt;">©</span><span style=" font-family:'Arial'; font-size:10pt;"> 1999-2012 Werner Schweer and Others. </span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Published under the GNU General Public License</span></p></body></html> - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> @@ -23,15 +31,7 @@ p, li { white-space: pre-wrap; } <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Arial'; font-size:10pt;"></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Copyright </span><span style=" font-size:10pt;">©</span><span style=" font-family:'Arial'; font-size:10pt;"> 1999-2009 Werner Schweer en Anderen. </span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Gepubliseerd onder de GNU Generale Publieke Licensie</span></p></body></html> - - - About MuseScore - - - - Copy revision number - +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Gepubliseerd onder de GNU Generale Publieke Licensie</span></p></body></html> {3C?} {4.0/?} {3.?} {40/?} {1"?} {2'?} {8.25p?} {400;?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {10p?} {10p?} {0000f?} {10p?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {10p?} {10p?} {0000f?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {10p?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {10p?} {10p?} {10p?} {1999-2012 ?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {10p?} @@ -55,17 +55,6 @@ p, li { white-space: pre-wrap; } About MusicXML - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; font-size:10pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">MusicXML is an open file format for exchanging digital sheet music,</p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">supported by many applications. MusicXML is copyright © MakeMusic, Inc.</p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">All rights reserved. For more information see: <a href="http://www.makemusic.com/xml.html"><span style=" text-decoration: underline; color:#0000ff;">MakeMusic</span></a></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; text-decoration: underline; color:#0000ff;"></p></body></html> - - The MusicXML Public License: @@ -113,6 +102,17 @@ p, li { white-space: pre-wrap; } <p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p></body></html> + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans Serif'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">MusicXML is an open file format for exchanging digital sheet music,</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">supported by many applications. MusicXML is copyright © MakeMusic, Inc.</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">All rights reserved. For more information, see: <a href="http://www.makemusic.com/musicxml"><span style=" text-decoration: underline; color:#0000ff;">MakeMusic</span></a></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; text-decoration: underline; color:#0000ff;"></p></body></html> + + Accidental @@ -131,30 +131,14 @@ p, li { white-space: pre-wrap; } Album Name: - - album name - - - - remove current score - - Remove Score - - move current score down in list - - Down Omlaag - - move current score up in list - - Up Omhoog @@ -163,18 +147,10 @@ p, li { white-space: pre-wrap; } Add Score - - create new album - - New Nieuw - - load an existing album - - Print Album @@ -207,6 +183,30 @@ p, li { white-space: pre-wrap; } MuseScore: Load Album + + Album Name + + + + Remove Current Score + + + + Move Current Score Down in List + + + + Move Current Score Up in List + + + + Create New Album + + + + Load an Existing Album + + ArticulationBase @@ -296,6 +296,14 @@ p, li { white-space: pre-wrap; } BarLine Maatstreep + + spanFrom: + + + + spanTo: + + BeamBase @@ -351,6 +359,37 @@ p, li { white-space: pre-wrap; } + + BoxBase + + Form + + + + bottomMargin: + + + + topGap: + + + + bottomGap: + + + + leftMargin: + + + + topMargin: + + + + rightMargin: + + + BoxPropertiesBase @@ -1412,6 +1451,22 @@ mislukt: No. + + 1 + 1 + + + 2 + 2 + + + 3 + 3 + + + 4 + 4 + EditInstrumentBase @@ -2030,6 +2085,10 @@ mislukt: B -1 + + A 7 + + EditRaster @@ -2058,6 +2117,17 @@ mislukt: + + EditStaff + + Edit Short Name + + + + Edit Long Name + + + EditStaffBase @@ -2128,10 +2198,6 @@ mislukt: Type: Type: - - Edit... - - ... ... @@ -2315,16 +2381,6 @@ mislukt: Select: - - Guitar (modern) - tablatture type - - - - Bass (modern) - tablature type - - Italian (historic) tablature type @@ -2335,10 +2391,6 @@ mislukt: tablature type - - Set - - Show Clef @@ -2463,6 +2515,68 @@ mislukt: Preview Voorbeeld + + 6 strings (generic guitar) + tablatture type + + + + 4 strings (generic bass) + tablature type + + + + ukulele + + + + bandurria + + + + Custom + + + + Stem position: + + + + Above + Boven + + + Below + + + + Stem style: + + + + Beside staff + + + + Through staff + + + + Half notes: + + + + As short stem + + + + As slashed stem + + + + Show Rests + + EditStringDataBase @@ -2513,6 +2627,14 @@ mislukt: BottomStaff Onderste Notenbalk + + Edit Plain Text + + + + Edit HTML Text + + EditStyleBase @@ -2546,6 +2668,10 @@ spatium unit ---------- spatium unit ---------- +spatium unit +---------- +spatium unit +---------- spatium unit sp @@ -3186,6 +3312,18 @@ p, li { white-space: pre-wrap; } Clef/Key right margin + + Pedal, Trill + + + + Pedal Line + + + + Trill Line + + EditTempoBase @@ -3466,6 +3604,65 @@ spatium unit + + InspectorBarLine + + Staff default + + + + Tick + + + + Tick alt. + + + + Short + + + + Short alt. + + + + Type: + Type: + + + Measure default + + + + Normal + Normaal + + + Dashed + Gestreept + + + Dotted + + + + Double + + + + End + + + + Span: + + + + Custom + + + InspectorBeam @@ -3685,6 +3882,57 @@ spatium unit ... + + InspectorHairpin + + Form + + + + Hairpin + Crescendo/Decrescendo-teken + + + crescendo + + + + decrescendo + + + + Subtype: + + + + Dynamic Range: + + + + Velo. change: + + + + Staff + Notenbalk + + + Part + + + + SYstem + + + + reset value + + + + ... + ... + + InspectorImage @@ -3937,6 +4185,37 @@ spatium unit + + InspectorOttava + + Form + + + + Ottava + Ottava + + + Subtype: + + + + 8va + 8va + + + 15ma + 15ma + + + 8vb + 8vb + + + 15mb + 15mb + + InspectorRest @@ -4005,6 +4284,41 @@ spatium unit + + InspectorTrill + + Form + + + + Trill + Triller + + + Subtype: + + + + trill line + + + + up prall + + + + down prall + + + + prall prall + + + + wavy line + + + InspectorVBox @@ -4063,6 +4377,29 @@ spatium unit + + InspectorVolta + + Form + + + + Volta + Volta + + + Subtype: + + + + Open + + + + Closed + + + InstrumentDialogBase @@ -4117,24 +4454,24 @@ spatium unit Staves Notenbalken - - visible - zichtbaar - Clef Sleutel - linked + Add Linked Staff - staff linked to previous + Visible + Zichtbaar + + + Linked - Add Linked Staff + Staff Linked to Previous @@ -4964,6 +5301,34 @@ Would you like to locate %2 now? -> + + 1 + 1 + + + 2 + 2 + + + 4 + 4 + + + 8 + 8 + + + 16 + 16 + + + 32 + 32 + + + 64 + 64 + MeasuresDialogBase @@ -5169,10 +5534,6 @@ voordat u afsluit? String number %1 Snaar nummer %1 - - note entry mode - noot-invoermodus - 4/4 common time 4/4 gewone maat @@ -5674,10 +6035,6 @@ Sessie herstellen? please choose a different name: - - Cannot read file: %1 error: %2 - - Overture / Score Writer Files <experimental> (*.ove *.scw);; @@ -5955,55 +6312,99 @@ please choose a different name: - Delete Profile + Delete Profile + + + + LilyPond Format (*.ly) + + + + MuseScore: Export Parts + + + + Parts were successfully exported + + + + Continuous View + + + + About &MusicXML + + + + Report a bug + + + + MuseScore: Load Plugin + + + + MuseScore Plugin (*.qml);;All Files (*) + + + + MuseScore: Save Plugin + + + + MuseScore Plugin File (*.qml) + + + + &Plugins - LilyPond Format (*.ly) + Find - MuseScore: Export Parts + Dotted - Parts were successfully exported + Tick 1 - Continuous View + Tick 2 - About &MusicXML + Short 1 - Report a bug + Short 2 - MuseScore: Load Plugin + plop - MuseScore Plugin (*.qml);;All Files (*) + scoop - MuseScore: Save Plugin + NOTE entry mode - MuseScore Plugin File (*.qml) + DRUM entry mode - &Plugins + TAB entry mode - Find + you cannot create an element @@ -6154,14 +6555,6 @@ please choose a different name: note head group nootkop-groep - - OnTime: - Tijd Aan: - - - OffTime: - Tijd Uit: - invalid ongeldig @@ -6178,6 +6571,10 @@ please choose a different name: Dot3 + + NoteEvents + + OmrPanel @@ -6770,6 +7167,14 @@ save before closing? Choose Images Directory + + MuseScore Shortcuts + + + + Print Shortcuts + + PrefsDialogBase @@ -7405,6 +7810,10 @@ save before closing? Define Shortcut + + Print + Print + Properties @@ -8053,26 +8462,6 @@ De sequencer wordt uitgeschakeld.. Form Vorm - - Slur - Boog - - - Tick: - Tik: - - - Slur End - Einde Boog - - - Staff: - Notenbalk: - - - Voice: - Stem: - SlurPropertyBase @@ -8159,6 +8548,14 @@ De sequencer wordt uitgeschakeld.. Form + + CHORD + + + + NOTE + + SplitStaff @@ -9025,6 +9422,7 @@ altera Space + spatium unit Spatie @@ -9059,10 +9457,6 @@ altera frame line width breedte van de kaderlijn - - mm - mm - Margin: Marge: @@ -9095,6 +9489,10 @@ altera Background Color: + + sp + sp + TextStyleDialog @@ -9194,6 +9592,10 @@ please choose a different name: unstyled + + align vertical baseline + + TimeDialog @@ -9201,14 +9603,6 @@ please choose a different name: MuseScore: Time Signatures MuseScore: Maatsoorten - - 4/4 common time - 4/4 gewone maat - - - 2/2 alla breve - 2/2 alla breve - TimeDialogBase @@ -9370,10 +9764,6 @@ p, li { white-space: pre-wrap; } MuseScore: Transpose MuseScore: Transponeer - - Transpose by Key - Transponeer via Toonsoort - Cb major / Ab minor Cb majeur / Ab mineur @@ -9446,10 +9836,6 @@ p, li { white-space: pre-wrap; } Closest Dichtstbijzijnde - - Transpose by Interval - Transponeren via Interval - Perfect Unison Reine Prime @@ -9566,6 +9952,50 @@ p, li { white-space: pre-wrap; } Use double sharps and flats Gebruik dubbelkruisen en -mollen + + Transpose Chromatically + + + + By Key + + + + By Interval + + + + Transpose Diatonically + + + + Second + + + + Third + + + + Fourth + + + + Fifth + + + + Sixth + + + + Seventh + + + + Keep degree alterations + + TremoloBarDialog @@ -10126,10 +10556,6 @@ p, li { white-space: pre-wrap; } Unison Above Prime (Unisono) Erboven - - Reload - Herlaad - Repeat Herhaal @@ -10146,10 +10572,6 @@ p, li { white-space: pre-wrap; } Go to lower pitched note in chord Ga naar lagere noot in akkoord - - Reload score from file - Herlaad partituur van bestand - Load score from file Laad partituur van bestand @@ -10230,10 +10652,6 @@ p, li { white-space: pre-wrap; } Septuplet Septool - - File reload - Bestand herladen - Repeat last command Herhaal laatste opdracht @@ -10738,10 +11156,6 @@ p, li { white-space: pre-wrap; } Page: end - - Add slur - - Crescendo Crescendo @@ -11018,14 +11432,6 @@ p, li { white-space: pre-wrap; } Picture - - Player seek to begin - - - - Player seek to end - - &Transpose... @@ -11210,14 +11616,6 @@ p, li { white-space: pre-wrap; } Diatonic up - - next score - - - - previous score - - Reset user settings @@ -11246,10 +11644,6 @@ p, li { white-space: pre-wrap; } Respell pitches - - Grace: 8nd after - - Pan score while playing on/off @@ -11314,10 +11708,6 @@ p, li { white-space: pre-wrap; } Master Palette... - - Insert Measure - - Toggle View Mode @@ -11486,10 +11876,6 @@ p, li { white-space: pre-wrap; } Save Style... - - Save Style As Default... - - Select All @@ -11562,6 +11948,162 @@ p, li { white-space: pre-wrap; } Plugin Creator + + Slur + Boog + + + Add Slur + + + + Add Crescendo + + + + Grace: 8th after + + + + Play Previous Chord + + + + Play Previous Measure + + + + Play Next Chord + + + + Play Next Measure + + + + Player Seek to Begin + + + + Player Seek to End + + + + Save Style as Default... + + + + String above (TAB) + + + + Select string above (TAB only) + + + + String below (TAB) + + + + Select string below (TAB only) + + + + Fret 0 (TAB) + + + + Add fret 0 on current string (TAB only) + + + + Fret 1 (TAB) + + + + Add fret 1 on current string (TAB only) + + + + Fret 2 (TAB) + + + + Add fret 2 on current string (TAB only) + + + + Fret 3 (TAB) + + + + Add fret 3 on current string (TAB only) + + + + Fret 4 (TAB) + + + + Add fret 4 of current string (TAB only) + + + + Fret 5 (TAB) + + + + Add fret 5 of current string (TAB only) + + + + Fret 6 (TAB) + + + + Add fret 6 of current string (TAB only) + + + + Fret 7 (TAB) + + + + Add fret 7 of current string (TAB only) + + + + Fret 8 (TAB) + + + + Add fret 8 of current string (TAB only) + + + + Fret 9 (TAB) + + + + Add fret 9 of current string (TAB only) + + + + Staff Types... + + + + Staff type editor + + + + Show staff type editor + + + + Note anchored Textline + + articulation @@ -11704,6 +12246,10 @@ p, li { white-space: pre-wrap; } Line Lijn + + Wavy line + + magTable diff --git a/share/locale/mscore_pl.ts b/share/locale/mscore_pl.ts index cb9813d8fd2f3..a9f229f24043f 100644 --- a/share/locale/mscore_pl.ts +++ b/share/locale/mscore_pl.ts @@ -3,6 +3,14 @@ AboutBox + + About MuseScore + + + + Copy revision number + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -12,9 +20,9 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Support MuseScore with </span><a href="http://www.musescore.org/en/donate"><span style=" font-size:10pt; text-decoration: underline; color:#0000ff;">your donation</span></a></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Arial'; font-size:10pt;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Copyright </span><span style=" font-size:10pt;">©</span><span style=" font-family:'Arial'; font-size:10pt;"> 1999-2009 Werner Schweer and Others. </span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Copyright </span><span style=" font-size:10pt;">©</span><span style=" font-family:'Arial'; font-size:10pt;"> 1999-2012 Werner Schweer and Others. </span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Published under the GNU General Public License</span></p></body></html> - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> @@ -23,15 +31,7 @@ p, li { white-space: pre-wrap; } <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Arial'; font-size:10pt;"></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Copyright </span><span style=" font-size:10pt;">©</span><span style=" font-family:'Arial'; font-size:10pt;"> 1999-2009 Werner Schweer i inni. </span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Opublikowane na licencji GNU General Public License.</span></p></body></html> - - - About MuseScore - - - - Copy revision number - +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Opublikowane na licencji GNU General Public License.</span></p></body></html> {3C?} {4.0/?} {3.?} {40/?} {1"?} {2'?} {8.25p?} {400;?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {10p?} {10p?} {0000f?} {10p?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {10p?} {10p?} {0000f?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {10p?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {10p?} {10p?} {10p?} {1999-2012 ?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {10p?} @@ -55,17 +55,6 @@ p, li { white-space: pre-wrap; } About MusicXML - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; font-size:10pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">MusicXML is an open file format for exchanging digital sheet music,</p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">supported by many applications. MusicXML is copyright © MakeMusic, Inc.</p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">All rights reserved. For more information see: <a href="http://www.makemusic.com/xml.html"><span style=" text-decoration: underline; color:#0000ff;">MakeMusic</span></a></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; text-decoration: underline; color:#0000ff;"></p></body></html> - - The MusicXML Public License: @@ -113,6 +102,17 @@ p, li { white-space: pre-wrap; } <p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p></body></html> + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans Serif'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">MusicXML is an open file format for exchanging digital sheet music,</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">supported by many applications. MusicXML is copyright © MakeMusic, Inc.</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">All rights reserved. For more information, see: <a href="http://www.makemusic.com/musicxml"><span style=" text-decoration: underline; color:#0000ff;">MakeMusic</span></a></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; text-decoration: underline; color:#0000ff;"></p></body></html> + + Accidental @@ -131,30 +131,14 @@ p, li { white-space: pre-wrap; } Album Name: - - album name - - - - remove current score - - Remove Score - - move current score down in list - - Down - - move current score up in list - - Up W górę @@ -163,18 +147,10 @@ p, li { white-space: pre-wrap; } Add Score - - create new album - - New Nowy - - load an existing album - - Print Album @@ -207,6 +183,30 @@ p, li { white-space: pre-wrap; } MuseScore: Load Album + + Album Name + + + + Remove Current Score + + + + Move Current Score Down in List + + + + Move Current Score Up in List + + + + Create New Album + + + + Load an Existing Album + + ArticulationBase @@ -296,6 +296,14 @@ p, li { white-space: pre-wrap; } BarLine Kreska taktowa + + spanFrom: + + + + spanTo: + + BeamBase @@ -351,6 +359,37 @@ p, li { white-space: pre-wrap; } + + BoxBase + + Form + + + + bottomMargin: + + + + topGap: + + + + bottomGap: + + + + leftMargin: + + + + topMargin: + + + + rightMargin: + + + BoxPropertiesBase @@ -1413,6 +1452,22 @@ niepowodzenie: No. + + 1 + 1 + + + 2 + 2 + + + 3 + 3 + + + 4 + 4 + EditInstrumentBase @@ -2031,6 +2086,10 @@ niepowodzenie: B -1 + + A 7 + + EditRaster @@ -2059,6 +2118,17 @@ niepowodzenie: + + EditStaff + + Edit Short Name + + + + Edit Long Name + + + EditStaffBase @@ -2129,10 +2199,6 @@ niepowodzenie: Type: Typ: - - Edit... - - ... ... @@ -2316,16 +2382,6 @@ niepowodzenie: Select: - - Guitar (modern) - tablatture type - - - - Bass (modern) - tablature type - - Italian (historic) tablature type @@ -2336,10 +2392,6 @@ niepowodzenie: tablature type - - Set - - Show Clef @@ -2464,6 +2516,68 @@ niepowodzenie: Preview Podgląd + + 6 strings (generic guitar) + tablatture type + + + + 4 strings (generic bass) + tablature type + + + + ukulele + + + + bandurria + + + + Custom + + + + Stem position: + + + + Above + Nad + + + Below + + + + Stem style: + + + + Beside staff + + + + Through staff + + + + Half notes: + + + + As short stem + + + + As slashed stem + + + + Show Rests + + EditStringDataBase @@ -2514,6 +2628,14 @@ niepowodzenie: Chord Akord + + Edit Plain Text + + + + Edit HTML Text + + EditStyleBase @@ -2603,6 +2725,10 @@ spatium unit ---------- spatium unit ---------- +spatium unit +---------- +spatium unit +---------- spatium unit sp @@ -3187,6 +3313,18 @@ p, li { white-space: pre-wrap; } Clef/Key right margin + + Pedal, Trill + + + + Pedal Line + + + + Trill Line + + EditTempoBase @@ -3467,6 +3605,65 @@ spatium unit + + InspectorBarLine + + Staff default + + + + Tick + + + + Tick alt. + + + + Short + + + + Short alt. + + + + Type: + Typ: + + + Measure default + + + + Normal + Normalna + + + Dashed + Przerywana + + + Dotted + + + + Double + + + + End + Koniec + + + Span: + + + + Custom + + + InspectorBeam @@ -3686,6 +3883,57 @@ spatium unit ... + + InspectorHairpin + + Form + + + + Hairpin + Crescendo + + + crescendo + + + + decrescendo + + + + Subtype: + + + + Dynamic Range: + + + + Velo. change: + + + + Staff + Pięciolinia + + + Part + + + + SYstem + + + + reset value + + + + ... + ... + + InspectorImage @@ -3938,6 +4186,37 @@ spatium unit + + InspectorOttava + + Form + + + + Ottava + Ottava + + + Subtype: + + + + 8va + 8va + + + 15ma + 15ma + + + 8vb + 8vb + + + 15mb + 15vb + + InspectorRest @@ -4006,6 +4285,41 @@ spatium unit + + InspectorTrill + + Form + + + + Trill + Tryl + + + Subtype: + + + + trill line + + + + up prall + + + + down prall + + + + prall prall + + + + wavy line + + + InspectorVBox @@ -4064,6 +4378,29 @@ spatium unit + + InspectorVolta + + Form + + + + Volta + Volta + + + Subtype: + + + + Open + + + + Closed + + + InstrumentDialogBase @@ -4118,24 +4455,24 @@ spatium unit Staves Pięciolinie - - visible - - Clef Klucz - linked + Add Linked Staff - staff linked to previous + Visible + Widoczna + + + Linked - Add Linked Staff + Staff Linked to Previous @@ -4965,6 +5302,34 @@ Would you like to locate %2 now? -> + + 1 + 1 + + + 2 + 2 + + + 4 + 4 + + + 8 + 8 + + + 16 + 16 + + + 32 + 32 + + + 64 + 64 + MeasuresDialogBase @@ -5245,10 +5610,6 @@ before closing? no score brak partytury - - note entry mode - tryb wpisywania nut - edit mode tryb edycji @@ -5668,10 +6029,6 @@ Restore session? please choose a different name: - - Cannot read file: %1 error: %2 - - Overture / Score Writer Files <experimental> (*.ove *.scw);; @@ -5958,47 +6315,91 @@ Czy przetransponować całą partyturę? - MuseScore: Export Parts + MuseScore: Export Parts + + + + Parts were successfully exported + + + + Continuous View + + + + About &MusicXML + + + + Report a bug + + + + MuseScore: Load Plugin + + + + MuseScore Plugin (*.qml);;All Files (*) + + + + MuseScore: Save Plugin + + + + MuseScore Plugin File (*.qml) + + + + &Plugins + + + + Find + + + + Dotted - Parts were successfully exported + Tick 1 - Continuous View + Tick 2 - About &MusicXML + Short 1 - Report a bug + Short 2 - MuseScore: Load Plugin + plop - MuseScore Plugin (*.qml);;All Files (*) + scoop - MuseScore: Save Plugin + NOTE entry mode - MuseScore Plugin File (*.qml) + DRUM entry mode - &Plugins + TAB entry mode - Find + you cannot create an element @@ -6149,14 +6550,6 @@ Czy przetransponować całą partyturę? note head group grupa główki - - OnTime: - - - - OffTime: - - invalid brak @@ -6173,6 +6566,10 @@ Czy przetransponować całą partyturę? Dot3 + + NoteEvents + + OmrPanel @@ -6765,6 +7162,14 @@ save before closing? Choose Images Directory + + MuseScore Shortcuts + + + + Print Shortcuts + + PrefsDialogBase @@ -7400,6 +7805,10 @@ save before closing? Define Shortcut + + Print + Drukuj + Properties @@ -8046,26 +8455,6 @@ Sekwencer będzie nieczynny. Form Forma - - Slur - Łuk - - - Slur End - Koniec łuku - - - Staff: - Pięciolinia: - - - Voice: - Głos: - - - Tick: - Ptaszek: - SlurPropertyBase @@ -8152,6 +8541,14 @@ Sekwencer będzie nieczynny. Form + + CHORD + + + + NOTE + + SplitStaff @@ -9018,6 +9415,7 @@ altera Space + spatium unit Przestrzeń @@ -9052,10 +9450,6 @@ altera frame line width szerokość linii ramki - - mm - mm - Margin: Margines: @@ -9088,6 +9482,10 @@ altera Background Color: + + sp + sp + TextStyleDialog @@ -9187,6 +9585,10 @@ please choose a different name: unstyled + + align vertical baseline + + TimeDialog @@ -9194,14 +9596,6 @@ please choose a different name: MuseScore: Time Signatures MuseScore: Oznaczenie metrum - - 4/4 common time - 4/4 (C)` - - - 2/2 alla breve - 2/2 alla breve - TimeDialogBase @@ -9363,10 +9757,6 @@ p, li { white-space: pre-wrap; } MuseScore: Transpose MuseScore: Transponuj - - Transpose by Key - Transponuj do tonacji - Cb major / Ab minor Ces-dur, as-moll @@ -9439,10 +9829,6 @@ p, li { white-space: pre-wrap; } Closest Najbliższa - - Transpose by Interval - Transponuj o interwał - Perfect Unison Pryma czysta @@ -9559,6 +9945,50 @@ p, li { white-space: pre-wrap; } Use double sharps and flats Użyj podwójnych znaków chromatycznych + + Transpose Chromatically + + + + By Key + + + + By Interval + + + + Transpose Diatonically + + + + Second + + + + Third + + + + Fourth + + + + Fifth + + + + Sixth + + + + Seventh + + + + Keep degree alterations + + TremoloBarDialog @@ -9787,10 +10217,6 @@ p, li { white-space: pre-wrap; } Save a Copy... Zapisz kopię... - - Reload - Przeładuj - Create new score Utwórz nową partyturę @@ -10331,14 +10757,6 @@ p, li { white-space: pre-wrap; } Save a copy of the score in addition to the current file Zapisz dodatkową kopię partytury obecnego pliku - - File reload - Plik odśwież - - - Reload score from file - Odśwież partyturę z pliku - File close Plik zamknij @@ -10731,10 +11149,6 @@ p, li { white-space: pre-wrap; } Page: end - - Add slur - - Crescendo Crescendo @@ -11011,14 +11425,6 @@ p, li { white-space: pre-wrap; } Picture - - Player seek to begin - - - - Player seek to end - - &Transpose... @@ -11203,14 +11609,6 @@ p, li { white-space: pre-wrap; } Diatonic up - - next score - - - - previous score - - Reset user settings @@ -11239,10 +11637,6 @@ p, li { white-space: pre-wrap; } Respell pitches - - Grace: 8nd after - - Pan score while playing on/off @@ -11307,10 +11701,6 @@ p, li { white-space: pre-wrap; } Master Palette... - - Insert Measure - - Toggle View Mode @@ -11479,10 +11869,6 @@ p, li { white-space: pre-wrap; } Save Style... - - Save Style As Default... - - Select All @@ -11555,6 +11941,162 @@ p, li { white-space: pre-wrap; } Plugin Creator + + Slur + Łuk + + + Add Slur + + + + Add Crescendo + + + + Grace: 8th after + + + + Play Previous Chord + + + + Play Previous Measure + + + + Play Next Chord + + + + Play Next Measure + + + + Player Seek to Begin + + + + Player Seek to End + + + + Save Style as Default... + + + + String above (TAB) + + + + Select string above (TAB only) + + + + String below (TAB) + + + + Select string below (TAB only) + + + + Fret 0 (TAB) + + + + Add fret 0 on current string (TAB only) + + + + Fret 1 (TAB) + + + + Add fret 1 on current string (TAB only) + + + + Fret 2 (TAB) + + + + Add fret 2 on current string (TAB only) + + + + Fret 3 (TAB) + + + + Add fret 3 on current string (TAB only) + + + + Fret 4 (TAB) + + + + Add fret 4 of current string (TAB only) + + + + Fret 5 (TAB) + + + + Add fret 5 of current string (TAB only) + + + + Fret 6 (TAB) + + + + Add fret 6 of current string (TAB only) + + + + Fret 7 (TAB) + + + + Add fret 7 of current string (TAB only) + + + + Fret 8 (TAB) + + + + Add fret 8 of current string (TAB only) + + + + Fret 9 (TAB) + + + + Add fret 9 of current string (TAB only) + + + + Staff Types... + + + + Staff type editor + + + + Show staff type editor + + + + Note anchored Textline + + articulation @@ -11697,6 +12239,10 @@ p, li { white-space: pre-wrap; } Line Linia + + Wavy line + + magTable diff --git a/share/locale/mscore_pt.ts b/share/locale/mscore_pt.ts index 97f78371085ea..0c0ded88105f9 100644 --- a/share/locale/mscore_pt.ts +++ b/share/locale/mscore_pt.ts @@ -3,6 +3,14 @@ AboutBox + + About MuseScore + + + + Copy revision number + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -12,18 +20,10 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Support MuseScore with </span><a href="http://www.musescore.org/en/donate"><span style=" font-size:10pt; text-decoration: underline; color:#0000ff;">your donation</span></a></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Arial'; font-size:10pt;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Copyright </span><span style=" font-size:10pt;">©</span><span style=" font-family:'Arial'; font-size:10pt;"> 1999-2009 Werner Schweer and Others. </span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Copyright </span><span style=" font-size:10pt;">©</span><span style=" font-family:'Arial'; font-size:10pt;"> 1999-2012 Werner Schweer and Others. </span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Published under the GNU General Public License</span></p></body></html> - - About MuseScore - - - - Copy revision number - - AboutBoxDialog @@ -46,17 +46,6 @@ p, li { white-space: pre-wrap; } About MusicXML - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; font-size:10pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">MusicXML is an open file format for exchanging digital sheet music,</p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">supported by many applications. MusicXML is copyright © MakeMusic, Inc.</p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">All rights reserved. For more information see: <a href="http://www.makemusic.com/xml.html"><span style=" text-decoration: underline; color:#0000ff;">MakeMusic</span></a></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; text-decoration: underline; color:#0000ff;"></p></body></html> - - The MusicXML Public License: @@ -104,6 +93,17 @@ p, li { white-space: pre-wrap; } <p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p></body></html> + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans Serif'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">MusicXML is an open file format for exchanging digital sheet music,</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">supported by many applications. MusicXML is copyright © MakeMusic, Inc.</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">All rights reserved. For more information, see: <a href="http://www.makemusic.com/musicxml"><span style=" text-decoration: underline; color:#0000ff;">MakeMusic</span></a></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; text-decoration: underline; color:#0000ff;"></p></body></html> + + Accidental @@ -123,79 +123,79 @@ p, li { white-space: pre-wrap; } - album name + Remove Score - remove current score + Down - Remove Score + Up - move current score down in list + Add Score - Down - + New + Novo - move current score up in list + Print Album - Up + MuseScore Album Files (*.album);; - Add Score + All Files (*) - create new album + MuseScore Files (*.mscz *.mscx *.msc);; - New - Novo + Join Scores + - load an existing album - + Load + Carregar - Print Album + MuseScore: Add Score - MuseScore Album Files (*.album);; + MuseScore: Load Album - All Files (*) + Album Name - MuseScore Files (*.mscz *.mscx *.msc);; + Remove Current Score - Join Scores + Move Current Score Down in List - Load - Carregar + Move Current Score Up in List + - MuseScore: Add Score + Create New Album - MuseScore: Load Album + Load an Existing Album @@ -287,6 +287,14 @@ p, li { white-space: pre-wrap; } BarLine Barra de Compasso + + spanFrom: + + + + spanTo: + + BeamBase @@ -342,6 +350,37 @@ p, li { white-space: pre-wrap; } + + BoxBase + + Form + + + + bottomMargin: + + + + topGap: + + + + bottomGap: + + + + leftMargin: + + + + topMargin: + + + + rightMargin: + + + BoxPropertiesBase @@ -1403,6 +1442,22 @@ Falhou: No. + + 1 + 1 + + + 2 + 2 + + + 3 + 3 + + + 4 + 4 + EditInstrumentBase @@ -2021,6 +2076,10 @@ Falhou: B -1 + + A 7 + + EditRaster @@ -2049,6 +2108,17 @@ Falhou: + + EditStaff + + Edit Short Name + + + + Edit Long Name + + + EditStaffBase @@ -2119,10 +2189,6 @@ Falhou: Type: - - Edit... - - ... ... @@ -2306,16 +2372,6 @@ Falhou: Select: - - Guitar (modern) - tablatture type - - - - Bass (modern) - tablature type - - Italian (historic) tablature type @@ -2326,10 +2382,6 @@ Falhou: tablature type - - Set - - Show Clef @@ -2454,6 +2506,68 @@ Falhou: Preview Pré-visualização + + 6 strings (generic guitar) + tablatture type + + + + 4 strings (generic bass) + tablature type + + + + ukulele + + + + bandurria + + + + Custom + + + + Stem position: + + + + Above + Por cima + + + Below + + + + Stem style: + + + + Beside staff + + + + Through staff + + + + Half notes: + + + + As short stem + + + + As slashed stem + + + + Show Rests + + EditStringDataBase @@ -2504,6 +2618,14 @@ Falhou: Chord Acorde + + Edit Plain Text + + + + Edit HTML Text + + EditStyleBase @@ -2589,6 +2711,10 @@ spatium unit ---------- spatium unit ---------- +spatium unit +---------- +spatium unit +---------- spatium unit sp @@ -3177,6 +3303,18 @@ p, li { white-space: pre-wrap; } Clef/Key right margin + + Pedal, Trill + + + + Pedal Line + + + + Trill Line + + EditTempoBase @@ -3457,6 +3595,65 @@ spatium unit + + InspectorBarLine + + Staff default + + + + Tick + + + + Tick alt. + + + + Short + + + + Short alt. + + + + Type: + + + + Measure default + + + + Normal + Normal + + + Dashed + + + + Dotted + + + + Double + + + + End + Fim + + + Span: + + + + Custom + + + InspectorBeam @@ -3676,6 +3873,57 @@ spatium unit ... + + InspectorHairpin + + Form + + + + Hairpin + Crescendo/Diminuendo + + + crescendo + + + + decrescendo + + + + Subtype: + + + + Dynamic Range: + + + + Velo. change: + + + + Staff + Pauta + + + Part + + + + SYstem + + + + reset value + + + + ... + ... + + InspectorImage @@ -3928,6 +4176,37 @@ spatium unit + + InspectorOttava + + Form + + + + Ottava + Oitava + + + Subtype: + + + + 8va + 8ª acima + + + 15ma + 15ª acima + + + 8vb + 8ª abaixo + + + 15mb + 15ª abaixo> + + InspectorRest @@ -3996,6 +4275,41 @@ spatium unit + + InspectorTrill + + Form + + + + Trill + + + + Subtype: + + + + trill line + + + + up prall + + + + down prall + + + + prall prall + + + + wavy line + + + InspectorVBox @@ -4054,6 +4368,29 @@ spatium unit + + InspectorVolta + + Form + + + + Volta + Repetição + + + Subtype: + + + + Open + + + + Closed + + + InstrumentDialogBase @@ -4108,24 +4445,24 @@ spatium unit Staves Pautas - - visible - Visível - Clef Clave - linked + Add Linked Staff - staff linked to previous + Visible + Visível + + + Linked - Add Linked Staff + Staff Linked to Previous @@ -4954,6 +5291,34 @@ Would you like to locate %2 now? -> + + 1 + 1 + + + 2 + 2 + + + 4 + 4 + + + 8 + 8 + + + 16 + 16 + + + 32 + 32 + + + 64 + 64 + MeasuresDialogBase @@ -5173,10 +5538,6 @@ Would you like to locate %2 now? &About &Sobre - - note entry mode - modo de entrada de notas - edit mode modo de edição @@ -5664,10 +6025,6 @@ Deseja restaurar a sessão please choose a different name: - - Cannot read file: %1 error: %2 - - Overture / Score Writer Files <experimental> (*.ove *.scw);; @@ -5953,47 +6310,91 @@ please choose a different name: - MuseScore: Export Parts + MuseScore: Export Parts + + + + Parts were successfully exported + + + + Continuous View + + + + About &MusicXML + + + + Report a bug + + + + MuseScore: Load Plugin + + + + MuseScore Plugin (*.qml);;All Files (*) + + + + MuseScore: Save Plugin + + + + MuseScore Plugin File (*.qml) + + + + &Plugins + + + + Find + + + + Dotted - Parts were successfully exported + Tick 1 - Continuous View + Tick 2 - About &MusicXML + Short 1 - Report a bug + Short 2 - MuseScore: Load Plugin + plop - MuseScore Plugin (*.qml);;All Files (*) + scoop - MuseScore: Save Plugin + NOTE entry mode - MuseScore Plugin File (*.qml) + DRUM entry mode - &Plugins + TAB entry mode - Find + you cannot create an element @@ -6144,14 +6545,6 @@ please choose a different name: note head group Grupo das Cabeças das notas - - OnTime: - - - - OffTime: - - invalid Inválido @@ -6168,6 +6561,10 @@ please choose a different name: Dot3 + + NoteEvents + + OmrPanel @@ -6760,6 +7157,14 @@ save before closing? Choose Images Directory + + MuseScore Shortcuts + + + + Print Shortcuts + + PrefsDialogBase @@ -7395,6 +7800,10 @@ save before closing? Define Shortcut + + Print + Imprimir + Properties @@ -8040,26 +8449,6 @@ Sequencer will be disabled. Form Forma - - Slur End - Fim da Ligadura - - - Staff: - Pauta: - - - Voice: - Voz: - - - Tick: - Guia: - - - Slur - Ligadura - SlurPropertyBase @@ -8146,6 +8535,14 @@ Sequencer will be disabled. Form + + CHORD + + + + NOTE + + SplitStaff @@ -9012,6 +9409,7 @@ altera Space + spatium unit Espaço @@ -9046,10 +9444,6 @@ altera frame line width Largura da linha da caixa - - mm - mm - Margin: Margem @@ -9082,6 +9476,10 @@ altera Background Color: + + sp + sp + TextStyleDialog @@ -9181,6 +9579,10 @@ please choose a different name: unstyled + + align vertical baseline + + TimeDialog @@ -9188,14 +9590,6 @@ please choose a different name: MuseScore: Time Signatures MuseScore: Compassos - - 4/4 common time - 4/4 tempo comum - - - 2/2 alla breve - - TimeDialogBase @@ -9357,10 +9751,6 @@ p, li { white-space: pre-wrap; } MuseScore: Transpose MuseScore: Transpor - - Transpose by Key - Transpor por Tonalidade - Cb major / Ab minor @@ -9433,10 +9823,6 @@ p, li { white-space: pre-wrap; } Closest - - Transpose by Interval - - Perfect Unison Uníssono Perfeito @@ -9553,6 +9939,50 @@ p, li { white-space: pre-wrap; } Use double sharps and flats + + Transpose Chromatically + + + + By Key + + + + By Interval + + + + Transpose Diatonically + + + + Second + + + + Third + + + + Fourth + + + + Fifth + + + + Sixth + + + + Seventh + + + + Keep degree alterations + + TremoloBarDialog @@ -9781,10 +10211,6 @@ p, li { white-space: pre-wrap; } Save a Copy... guardar uma cópia - - Reload - Recarregar - Create new score Criar nova partitura @@ -10325,14 +10751,6 @@ p, li { white-space: pre-wrap; } Save a copy of the score in addition to the current file - - File reload - Recarregar icheiro - - - Reload score from file - Recarregar partitura a partir do ficheiro - File close Fechar @@ -10725,10 +11143,6 @@ p, li { white-space: pre-wrap; } Page: end - - Add slur - - Crescendo Crescendo @@ -11005,14 +11419,6 @@ p, li { white-space: pre-wrap; } Picture - - Player seek to begin - - - - Player seek to end - - &Transpose... @@ -11197,14 +11603,6 @@ p, li { white-space: pre-wrap; } Diatonic up - - next score - - - - previous score - - Reset user settings @@ -11233,10 +11631,6 @@ p, li { white-space: pre-wrap; } Respell pitches - - Grace: 8nd after - - Pan score while playing on/off @@ -11301,10 +11695,6 @@ p, li { white-space: pre-wrap; } Master Palette... - - Insert Measure - - Toggle View Mode @@ -11473,10 +11863,6 @@ p, li { white-space: pre-wrap; } Save Style... - - Save Style As Default... - - Select All @@ -11549,6 +11935,162 @@ p, li { white-space: pre-wrap; } Plugin Creator + + Slur + Ligadura + + + Add Slur + + + + Add Crescendo + + + + Grace: 8th after + + + + Play Previous Chord + + + + Play Previous Measure + + + + Play Next Chord + + + + Play Next Measure + + + + Player Seek to Begin + + + + Player Seek to End + + + + Save Style as Default... + + + + String above (TAB) + + + + Select string above (TAB only) + + + + String below (TAB) + + + + Select string below (TAB only) + + + + Fret 0 (TAB) + + + + Add fret 0 on current string (TAB only) + + + + Fret 1 (TAB) + + + + Add fret 1 on current string (TAB only) + + + + Fret 2 (TAB) + + + + Add fret 2 on current string (TAB only) + + + + Fret 3 (TAB) + + + + Add fret 3 on current string (TAB only) + + + + Fret 4 (TAB) + + + + Add fret 4 of current string (TAB only) + + + + Fret 5 (TAB) + + + + Add fret 5 of current string (TAB only) + + + + Fret 6 (TAB) + + + + Add fret 6 of current string (TAB only) + + + + Fret 7 (TAB) + + + + Add fret 7 of current string (TAB only) + + + + Fret 8 (TAB) + + + + Add fret 8 of current string (TAB only) + + + + Fret 9 (TAB) + + + + Add fret 9 of current string (TAB only) + + + + Staff Types... + + + + Staff type editor + + + + Show staff type editor + + + + Note anchored Textline + + articulation @@ -11691,6 +12233,10 @@ p, li { white-space: pre-wrap; } Line Linha + + Wavy line + + magTable diff --git a/share/locale/mscore_pt_BR.ts b/share/locale/mscore_pt_BR.ts index c872129a6e8e1..9840d3c89693e 100644 --- a/share/locale/mscore_pt_BR.ts +++ b/share/locale/mscore_pt_BR.ts @@ -3,6 +3,14 @@ AboutBox + + About MuseScore + + + + Copy revision number + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -12,9 +20,9 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Support MuseScore with </span><a href="http://www.musescore.org/en/donate"><span style=" font-size:10pt; text-decoration: underline; color:#0000ff;">your donation</span></a></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Arial'; font-size:10pt;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Copyright </span><span style=" font-size:10pt;">©</span><span style=" font-family:'Arial'; font-size:10pt;"> 1999-2009 Werner Schweer and Others. </span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Copyright </span><span style=" font-size:10pt;">©</span><span style=" font-family:'Arial'; font-size:10pt;"> 1999-2012 Werner Schweer and Others. </span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Published under the GNU General Public License</span></p></body></html> - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> @@ -23,15 +31,7 @@ p, li { white-space: pre-wrap; } <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Arial'; font-size:10pt;"></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Copyright </span><span style=" font-size:10pt;">©</span><span style=" font-family:'Arial'; font-size:10pt;"> 1999-2009 Werner Schweer and Others. </span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Publicado sob GNU General Public License</span></p></body></html> - - - About MuseScore - - - - Copy revision number - +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Publicado sob GNU General Public License</span></p></body></html> {3C?} {4.0/?} {3.?} {40/?} {1"?} {2'?} {8.25p?} {400;?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {10p?} {10p?} {0000f?} {10p?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {10p?} {10p?} {0000f?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {10p?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {10p?} {10p?} {10p?} {1999-2012 ?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {10p?} @@ -55,17 +55,6 @@ p, li { white-space: pre-wrap; } About MusicXML - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; font-size:10pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">MusicXML is an open file format for exchanging digital sheet music,</p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">supported by many applications. MusicXML is copyright © MakeMusic, Inc.</p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">All rights reserved. For more information see: <a href="http://www.makemusic.com/xml.html"><span style=" text-decoration: underline; color:#0000ff;">MakeMusic</span></a></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; text-decoration: underline; color:#0000ff;"></p></body></html> - - The MusicXML Public License: @@ -113,6 +102,17 @@ p, li { white-space: pre-wrap; } <p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p></body></html> + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans Serif'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">MusicXML is an open file format for exchanging digital sheet music,</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">supported by many applications. MusicXML is copyright © MakeMusic, Inc.</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">All rights reserved. For more information, see: <a href="http://www.makemusic.com/musicxml"><span style=" text-decoration: underline; color:#0000ff;">MakeMusic</span></a></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; text-decoration: underline; color:#0000ff;"></p></body></html> + + Accidental @@ -132,79 +132,79 @@ p, li { white-space: pre-wrap; } - album name + Remove Score - remove current score + Down - Remove Score + Up - move current score down in list + Add Score - Down - + New + Novo - move current score up in list + Print Album - Up + MuseScore Album Files (*.album);; - Add Score + All Files (*) - create new album + MuseScore Files (*.mscz *.mscx *.msc);; - New - Novo + Join Scores + - load an existing album - + Load + Carregar - Print Album + MuseScore: Add Score - MuseScore Album Files (*.album);; + MuseScore: Load Album - All Files (*) + Album Name - MuseScore Files (*.mscz *.mscx *.msc);; + Remove Current Score - Join Scores + Move Current Score Down in List - Load - Carregar + Move Current Score Up in List + - MuseScore: Add Score + Create New Album - MuseScore: Load Album + Load an Existing Album @@ -296,6 +296,14 @@ p, li { white-space: pre-wrap; } BarLine Barra de Compasso + + spanFrom: + + + + spanTo: + + BeamBase @@ -351,6 +359,37 @@ p, li { white-space: pre-wrap; } + + BoxBase + + Form + Formulário + + + bottomMargin: + + + + topGap: + + + + bottomGap: + + + + leftMargin: + + + + topMargin: + + + + rightMargin: + + + BoxPropertiesBase @@ -1412,6 +1451,22 @@ Falhou: No. + + 1 + 1 + + + 2 + 2 + + + 3 + 3 + + + 4 + 4 + EditInstrumentBase @@ -2030,6 +2085,10 @@ Falhou: B -1 + + A 7 + + EditRaster @@ -2058,6 +2117,17 @@ Falhou: + + EditStaff + + Edit Short Name + + + + Edit Long Name + + + EditStaffBase @@ -2128,10 +2198,6 @@ Falhou: Type: Tipo: - - Edit... - - ... ... @@ -2315,16 +2381,6 @@ Falhou: Select: - - Guitar (modern) - tablatture type - - - - Bass (modern) - tablature type - - Italian (historic) tablature type @@ -2335,10 +2391,6 @@ Falhou: tablature type - - Set - - Show Clef @@ -2463,6 +2515,68 @@ Falhou: Preview Pré-visualização + + 6 strings (generic guitar) + tablatture type + + + + 4 strings (generic bass) + tablature type + + + + ukulele + + + + bandurria + + + + Custom + + + + Stem position: + + + + Above + Acima + + + Below + + + + Stem style: + + + + Beside staff + + + + Through staff + + + + Half notes: + + + + As short stem + + + + As slashed stem + + + + Show Rests + + EditStringDataBase @@ -2513,6 +2627,14 @@ Falhou: Chord Acorde + + Edit Plain Text + + + + Edit HTML Text + + EditStyleBase @@ -2598,6 +2720,10 @@ spatium unit ---------- spatium unit ---------- +spatium unit +---------- +spatium unit +---------- spatium unit sp @@ -3186,6 +3312,18 @@ p, li { white-space: pre-wrap; } Clef/Key right margin + + Pedal, Trill + + + + Pedal Line + + + + Trill Line + + EditTempoBase @@ -3466,6 +3604,65 @@ spatium unit + + InspectorBarLine + + Staff default + + + + Tick + + + + Tick alt. + + + + Short + + + + Short alt. + + + + Type: + Tipo: + + + Measure default + + + + Normal + Normal + + + Dashed + Tracejada + + + Dotted + + + + Double + + + + End + Fim + + + Span: + + + + Custom + + + InspectorBeam @@ -3685,6 +3882,57 @@ spatium unit ... + + InspectorHairpin + + Form + Formulário + + + Hairpin + Crescendo/Decrescendo + + + crescendo + + + + decrescendo + + + + Subtype: + + + + Dynamic Range: + + + + Velo. change: + + + + Staff + Pauta + + + Part + + + + SYstem + + + + reset value + + + + ... + ... + + InspectorImage @@ -3937,6 +4185,37 @@ spatium unit + + InspectorOttava + + Form + Formulário + + + Ottava + Oitava + + + Subtype: + + + + 8va + 8va + + + 15ma + 15ma + + + 8vb + 8va + + + 15mb + 15mb + + InspectorRest @@ -4005,6 +4284,41 @@ spatium unit + + InspectorTrill + + Form + Formulário + + + Trill + Trilo + + + Subtype: + + + + trill line + + + + up prall + + + + down prall + + + + prall prall + + + + wavy line + + + InspectorVBox @@ -4063,6 +4377,29 @@ spatium unit + + InspectorVolta + + Form + Formulário + + + Volta + Chaves de 1ª e 2ª + + + Subtype: + + + + Open + + + + Closed + + + InstrumentDialogBase @@ -4117,24 +4454,24 @@ spatium unit Staves Pautas - - visible - visível - Clef Clave - linked + Add Linked Staff - staff linked to previous + Visible + Visível + + + Linked - Add Linked Staff + Staff Linked to Previous @@ -4964,6 +5301,34 @@ Would you like to locate %2 now? -> + + 1 + 1 + + + 2 + 2 + + + 4 + 4 + + + 8 + 8 + + + 16 + 16 + + + 32 + 32 + + + 64 + 64 + MeasuresDialogBase @@ -5183,10 +5548,6 @@ Would you like to locate %2 now? &About &Sobre - - note entry mode - modo de inserção de notas - edit mode modo de edição @@ -5674,10 +6035,6 @@ Restaurar sessão? please choose a different name: - - Cannot read file: %1 error: %2 - - Overture / Score Writer Files <experimental> (*.ove *.scw);; @@ -5959,51 +6316,95 @@ please choose a different name: - LilyPond Format (*.ly) + LilyPond Format (*.ly) + + + + MuseScore: Export Parts + + + + Parts were successfully exported + + + + Continuous View + + + + About &MusicXML + + + + Report a bug + + + + MuseScore: Load Plugin + + + + MuseScore Plugin (*.qml);;All Files (*) + + + + MuseScore: Save Plugin + + + + MuseScore Plugin File (*.qml) + + + + &Plugins + + + + Find - MuseScore: Export Parts + Dotted - Parts were successfully exported + Tick 1 - Continuous View + Tick 2 - About &MusicXML + Short 1 - Report a bug + Short 2 - MuseScore: Load Plugin + plop - MuseScore Plugin (*.qml);;All Files (*) + scoop - MuseScore: Save Plugin + NOTE entry mode - MuseScore Plugin File (*.qml) + DRUM entry mode - &Plugins + TAB entry mode - Find + you cannot create an element @@ -6154,14 +6555,6 @@ please choose a different name: note head group grupo de cabeça de nota - - OnTime: - NoTempo - - - OffTime: - ForaDoTempo - invalid Inválido @@ -6178,6 +6571,10 @@ please choose a different name: Dot3 + + NoteEvents + + OmrPanel @@ -6770,6 +7167,14 @@ save before closing? Choose Images Directory + + MuseScore Shortcuts + + + + Print Shortcuts + + PrefsDialogBase @@ -7405,6 +7810,10 @@ save before closing? Define Shortcut + + Print + Imprimir + Properties @@ -8051,26 +8460,6 @@ O sequenciador será desabilitado. Form Formulário - - Slur End - Fim do Legato - - - Staff: - Pauta: - - - Voice: - Voz: - - - Tick: - Tick: - - - Slur - Legato - SlurPropertyBase @@ -8157,6 +8546,14 @@ O sequenciador será desabilitado. Form Formulário + + CHORD + + + + NOTE + + SplitStaff @@ -9023,6 +9420,7 @@ altera Space + spatium unit Espaço @@ -9057,10 +9455,6 @@ altera frame line width espessura da linha da moldura - - mm - mm - Margin: Margem: @@ -9093,6 +9487,10 @@ altera Background Color: + + sp + sp + TextStyleDialog @@ -9192,6 +9590,10 @@ please choose a different name: unstyled + + align vertical baseline + + TimeDialog @@ -9199,14 +9601,6 @@ please choose a different name: MuseScore: Time Signatures MuseScore: Fórmulas de Compasso - - 4/4 common time - 4/4 compasso comum - - - 2/2 alla breve - 2/2 meio comum - TimeDialogBase @@ -9368,10 +9762,6 @@ p, li { white-space: pre-wrap; } MuseScore: Transpose MuseScore: Transpor - - Transpose by Key - Transpor por Tonalidade - Cb major / Ab minor Dób maior / Láb menor @@ -9444,10 +9834,6 @@ p, li { white-space: pre-wrap; } Closest Mais Próximo - - Transpose by Interval - Transpor por Intervalo - Perfect Unison Uníssono Justo @@ -9564,6 +9950,50 @@ p, li { white-space: pre-wrap; } Use double sharps and flats Usar dobrados sustenidos e bemóis + + Transpose Chromatically + + + + By Key + + + + By Interval + + + + Transpose Diatonically + + + + Second + + + + Third + + + + Fourth + + + + Fifth + + + + Sixth + + + + Seventh + + + + Keep degree alterations + + TremoloBarDialog @@ -9792,10 +10222,6 @@ p, li { white-space: pre-wrap; } Save a Copy... Salvar Cópia... - - Reload - Reabrir - Create new score Criar nova partitura @@ -10336,14 +10762,6 @@ p, li { white-space: pre-wrap; } Save a copy of the score in addition to the current file Salvar uma cópia adicional da partitura - - File reload - Reabrir arquivo - - - Reload score from file - Reabrir partitura de um arquivo - File close Fechar arquivo @@ -10736,10 +11154,6 @@ p, li { white-space: pre-wrap; } Page: end - - Add slur - - Crescendo Crescendo @@ -11016,14 +11430,6 @@ p, li { white-space: pre-wrap; } Picture - - Player seek to begin - - - - Player seek to end - - &Transpose... @@ -11208,14 +11614,6 @@ p, li { white-space: pre-wrap; } Diatonic up - - next score - - - - previous score - - Reset user settings @@ -11244,10 +11642,6 @@ p, li { white-space: pre-wrap; } Respell pitches - - Grace: 8nd after - - Pan score while playing on/off @@ -11312,10 +11706,6 @@ p, li { white-space: pre-wrap; } Master Palette... - - Insert Measure - - Toggle View Mode @@ -11484,10 +11874,6 @@ p, li { white-space: pre-wrap; } Save Style... - - Save Style As Default... - - Select All @@ -11560,6 +11946,162 @@ p, li { white-space: pre-wrap; } Plugin Creator + + Slur + Legato + + + Add Slur + + + + Add Crescendo + + + + Grace: 8th after + + + + Play Previous Chord + + + + Play Previous Measure + + + + Play Next Chord + + + + Play Next Measure + + + + Player Seek to Begin + + + + Player Seek to End + + + + Save Style as Default... + + + + String above (TAB) + + + + Select string above (TAB only) + + + + String below (TAB) + + + + Select string below (TAB only) + + + + Fret 0 (TAB) + + + + Add fret 0 on current string (TAB only) + + + + Fret 1 (TAB) + + + + Add fret 1 on current string (TAB only) + + + + Fret 2 (TAB) + + + + Add fret 2 on current string (TAB only) + + + + Fret 3 (TAB) + + + + Add fret 3 on current string (TAB only) + + + + Fret 4 (TAB) + + + + Add fret 4 of current string (TAB only) + + + + Fret 5 (TAB) + + + + Add fret 5 of current string (TAB only) + + + + Fret 6 (TAB) + + + + Add fret 6 of current string (TAB only) + + + + Fret 7 (TAB) + + + + Add fret 7 of current string (TAB only) + + + + Fret 8 (TAB) + + + + Add fret 8 of current string (TAB only) + + + + Fret 9 (TAB) + + + + Add fret 9 of current string (TAB only) + + + + Staff Types... + + + + Staff type editor + + + + Show staff type editor + + + + Note anchored Textline + + articulation @@ -11702,6 +12244,10 @@ p, li { white-space: pre-wrap; } Line Linha + + Wavy line + + magTable diff --git a/share/locale/mscore_ro.ts b/share/locale/mscore_ro.ts index fd96498585018..482639dd02a6e 100644 --- a/share/locale/mscore_ro.ts +++ b/share/locale/mscore_ro.ts @@ -3,6 +3,14 @@ AboutBox + + About MuseScore + + + + Copy revision number + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -12,9 +20,9 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Support MuseScore with </span><a href="http://www.musescore.org/en/donate"><span style=" font-size:10pt; text-decoration: underline; color:#0000ff;">your donation</span></a></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Arial'; font-size:10pt;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Copyright </span><span style=" font-size:10pt;">©</span><span style=" font-family:'Arial'; font-size:10pt;"> 1999-2009 Werner Schweer and Others. </span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Copyright </span><span style=" font-size:10pt;">©</span><span style=" font-family:'Arial'; font-size:10pt;"> 1999-2012 Werner Schweer and Others. </span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Published under the GNU General Public License</span></p></body></html> - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html> <head> @@ -34,15 +42,7 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Toate drepturile rezervate </span><span style=" font-size:10pt;">©</span><span style=" font-family:'Arial'; font-size:10pt;"> 1999-2009 Werner Schweer şi alţii. </span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Publicat sub Licenţa Publică Generală GNU</span></p></body></html> - - - About MuseScore - - - - Copy revision number - +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Publicat sub Licenţa Publică Generală GNU</span></p></body></html> {3C?} {4.0/?} {3.?} {40/?} {1"?} {2'?} {8.25p?} {400;?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {10p?} {10p?} {0000f?} {10p?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {10p?} {10p?} {0000f?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {10p?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {10p?} {10p?} {10p?} {1999-2012 ?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {10p?} @@ -66,17 +66,6 @@ p, li { white-space: pre-wrap; } About MusicXML - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; font-size:10pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">MusicXML is an open file format for exchanging digital sheet music,</p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">supported by many applications. MusicXML is copyright © MakeMusic, Inc.</p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">All rights reserved. For more information see: <a href="http://www.makemusic.com/xml.html"><span style=" text-decoration: underline; color:#0000ff;">MakeMusic</span></a></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; text-decoration: underline; color:#0000ff;"></p></body></html> - - The MusicXML Public License: @@ -124,6 +113,17 @@ p, li { white-space: pre-wrap; } <p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p></body></html> + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans Serif'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">MusicXML is an open file format for exchanging digital sheet music,</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">supported by many applications. MusicXML is copyright © MakeMusic, Inc.</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">All rights reserved. For more information, see: <a href="http://www.makemusic.com/musicxml"><span style=" text-decoration: underline; color:#0000ff;">MakeMusic</span></a></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; text-decoration: underline; color:#0000ff;"></p></body></html> + + Accidental @@ -143,79 +143,79 @@ p, li { white-space: pre-wrap; } - album name + Remove Score - remove current score + Down - Remove Score + Up - move current score down in list + Add Score - Down - + New + « Adaugă - move current score up in list + Print Album - Up + MuseScore Album Files (*.album);; - Add Score + All Files (*) - create new album + MuseScore Files (*.mscz *.mscx *.msc);; - New - « Adaugă + Join Scores + - load an existing album - + Load + Încarcă - Print Album + MuseScore: Add Score - MuseScore Album Files (*.album);; + MuseScore: Load Album - All Files (*) + Album Name - MuseScore Files (*.mscz *.mscx *.msc);; + Remove Current Score - Join Scores + Move Current Score Down in List - Load - Încarcă + Move Current Score Up in List + - MuseScore: Add Score + Create New Album - MuseScore: Load Album + Load an Existing Album @@ -308,6 +308,14 @@ p, li { white-space: pre-wrap; } BarLine Bară de masură + + spanFrom: + + + + spanTo: + + BeamBase @@ -363,6 +371,37 @@ p, li { white-space: pre-wrap; } + + BoxBase + + Form + + + + bottomMargin: + + + + topGap: + + + + bottomGap: + + + + leftMargin: + + + + topMargin: + + + + rightMargin: + + + BoxPropertiesBase @@ -1427,6 +1466,22 @@ eroare: No. + + 1 + 1 + + + 2 + 2 + + + 3 + 3 + + + 4 + 4 + EditInstrumentBase @@ -2045,6 +2100,10 @@ eroare: B -1 + + A 7 + + EditRaster @@ -2073,6 +2132,17 @@ eroare: + + EditStaff + + Edit Short Name + + + + Edit Long Name + + + EditStaffBase @@ -2143,10 +2213,6 @@ eroare: Type: Tip: - - Edit... - - ... ... @@ -2330,16 +2396,6 @@ eroare: Select: - - Guitar (modern) - tablatture type - - - - Bass (modern) - tablature type - - Italian (historic) tablature type @@ -2350,10 +2406,6 @@ eroare: tablature type - - Set - - Show Clef @@ -2478,6 +2530,68 @@ eroare: Preview Verificare + + 6 strings (generic guitar) + tablatture type + + + + 4 strings (generic bass) + tablature type + + + + ukulele + + + + bandurria + + + + Custom + + + + Stem position: + + + + Above + Desupra + + + Below + + + + Stem style: + + + + Beside staff + + + + Through staff + + + + Half notes: + + + + As short stem + + + + As slashed stem + + + + Show Rests + + EditStringDataBase @@ -2528,6 +2642,14 @@ eroare: Chord numele acordului + + Edit Plain Text + + + + Edit HTML Text + + EditStyleBase @@ -2617,6 +2739,10 @@ spatium unit ---------- spatium unit ---------- +spatium unit +---------- +spatium unit +---------- spatium unit sp @@ -3201,6 +3327,18 @@ p, li { white-space: pre-wrap; } Clef/Key right margin + + Pedal, Trill + + + + Pedal Line + + + + Trill Line + + EditTempoBase @@ -3482,6 +3620,65 @@ spatium unit + + InspectorBarLine + + Staff default + + + + Tick + + + + Tick alt. + + + + Short + + + + Short alt. + + + + Type: + Tip: + + + Measure default + + + + Normal + Normală + + + Dashed + Punctată + + + Dotted + + + + Double + + + + End + Sfârşit + + + Span: + + + + Custom + + + InspectorBeam @@ -3701,6 +3898,57 @@ spatium unit ... + + InspectorHairpin + + Form + + + + Hairpin + Crescendo/decrescendo + + + crescendo + + + + decrescendo + + + + Subtype: + + + + Dynamic Range: + + + + Velo. change: + + + + Staff + Portativ + + + Part + + + + SYstem + + + + reset value + + + + ... + ... + + InspectorImage @@ -3953,6 +4201,37 @@ spatium unit + + InspectorOttava + + Form + + + + Ottava + Ottava + + + Subtype: + + + + 8va + 8va + + + 15ma + 15ma + + + 8vb + 8vb + + + 15mb + 15mb + + InspectorRest @@ -4021,6 +4300,41 @@ spatium unit + + InspectorTrill + + Form + + + + Trill + Tril + + + Subtype: + + + + trill line + + + + up prall + + + + down prall + + + + prall prall + + + + wavy line + + + InspectorVBox @@ -4079,6 +4393,29 @@ spatium unit + + InspectorVolta + + Form + + + + Volta + Volta + + + Subtype: + + + + Open + + + + Closed + + + InstrumentDialogBase @@ -4133,24 +4470,24 @@ spatium unit Staves - - visible - vizibil - Clef Cheie - linked + Add Linked Staff - staff linked to previous + Visible + Vizibil + + + Linked - Add Linked Staff + Staff Linked to Previous @@ -4980,6 +5317,34 @@ Would you like to locate %2 now? -> + + 1 + 1 + + + 2 + 2 + + + 4 + 4 + + + 8 + 8 + + + 16 + 16 + + + 32 + 32 + + + 64 + 64 + MeasuresDialogBase @@ -5261,10 +5626,6 @@ before closing? no score lipsă partitură - - note entry mode - modul introducere note - edit mode mod editare @@ -5686,10 +6047,6 @@ Restaurez sesiunea? please choose a different name: - - Cannot read file: %1 error: %2 - - Overture / Score Writer Files <experimental> (*.ove *.scw);; @@ -5967,55 +6324,99 @@ please choose a different name: - Delete Profile + Delete Profile + + + + LilyPond Format (*.ly) + + + + MuseScore: Export Parts + + + + Parts were successfully exported + + + + Continuous View + + + + About &MusicXML + + + + Report a bug + + + + MuseScore: Load Plugin + + + + MuseScore Plugin (*.qml);;All Files (*) + + + + MuseScore: Save Plugin + + + + MuseScore Plugin File (*.qml) + + + + &Plugins - LilyPond Format (*.ly) + Find - MuseScore: Export Parts + Dotted - Parts were successfully exported + Tick 1 - Continuous View + Tick 2 - About &MusicXML + Short 1 - Report a bug + Short 2 - MuseScore: Load Plugin + plop - MuseScore Plugin (*.qml);;All Files (*) + scoop - MuseScore: Save Plugin + NOTE entry mode - MuseScore Plugin File (*.qml) + DRUM entry mode - &Plugins + TAB entry mode - Find + you cannot create an element @@ -6166,14 +6567,6 @@ please choose a different name: note head group tipul boabei - - OnTime: - Timpi tari - - - OffTime: - Timpi slabi - invalid lipsă @@ -6190,6 +6583,10 @@ please choose a different name: Dot3 + + NoteEvents + + OmrPanel @@ -6782,6 +7179,14 @@ save before closing? Choose Images Directory + + MuseScore Shortcuts + + + + Print Shortcuts + + PrefsDialogBase @@ -7417,6 +7822,10 @@ save before closing? Define Shortcut + + Print + Tipăreşte + Properties @@ -8064,26 +8473,6 @@ Interpretarea partiturii nu va fi disponibilă. Form Formular - - Slur - Legato - - - Slur End - Final Legato - - - Staff: - Portativ: - - - Voice: - Voce: - - - Tick: - Tick: - SlurPropertyBase @@ -8170,6 +8559,14 @@ Interpretarea partiturii nu va fi disponibilă. Form + + CHORD + + + + NOTE + + SplitStaff @@ -9036,6 +9433,7 @@ altera Space + spatium unit spaţii @@ -9070,10 +9468,6 @@ altera frame line width grosime încadrament - - mm - mm - Margin: Margine: @@ -9106,6 +9500,10 @@ altera Background Color: + + sp + sp + TextStyleDialog @@ -9205,6 +9603,10 @@ please choose a different name: unstyled + + align vertical baseline + + TimeDialog @@ -9212,14 +9614,6 @@ please choose a different name: MuseScore: Time Signatures MuseScore: Metri - - 4/4 common time - 4/4 în scriere prescurtată - - - 2/2 alla breve - 2/2 alla breve - TimeDialogBase @@ -9381,10 +9775,6 @@ p, li { white-space: pre-wrap; } MuseScore: Transpose MuseScore: Transpoziţie - - Transpose by Key - Transpune într-o altă tonalitate - Cb major / Ab minor Do b major / La b minor @@ -9457,10 +9847,6 @@ p, li { white-space: pre-wrap; } Closest Cea mai apropiată - - Transpose by Interval - Transpunere intervalică - Perfect Unison Unison Perfect @@ -9577,6 +9963,50 @@ p, li { white-space: pre-wrap; } Use double sharps and flats Cu dublu-diez sau dublu-bemol + + Transpose Chromatically + + + + By Key + + + + By Interval + + + + Transpose Diatonically + + + + Second + + + + Third + + + + Fourth + + + + Fifth + + + + Sixth + + + + Seventh + + + + Keep degree alterations + + TremoloBarDialog @@ -9805,10 +10235,6 @@ p, li { white-space: pre-wrap; } Save a Copy... Salvează o copie... - - Reload - Reîncarcă - Create new score Crează partitură nouă @@ -10349,14 +10775,6 @@ p, li { white-space: pre-wrap; } Save a copy of the score in addition to the current file Salvează şi o copie pe lângă fişierul curent - - File reload - File reload - - - Reload score from file - Reîncarcă partitura din fişier - File close File close @@ -10749,10 +11167,6 @@ p, li { white-space: pre-wrap; } Page: end - - Add slur - - Crescendo Crescendo @@ -11029,14 +11443,6 @@ p, li { white-space: pre-wrap; } Picture - - Player seek to begin - - - - Player seek to end - - &Transpose... @@ -11221,14 +11627,6 @@ p, li { white-space: pre-wrap; } Diatonic up - - next score - - - - previous score - - Reset user settings @@ -11257,10 +11655,6 @@ p, li { white-space: pre-wrap; } Respell pitches - - Grace: 8nd after - - Pan score while playing on/off @@ -11325,10 +11719,6 @@ p, li { white-space: pre-wrap; } Master Palette... - - Insert Measure - - Toggle View Mode @@ -11497,10 +11887,6 @@ p, li { white-space: pre-wrap; } Save Style... - - Save Style As Default... - - Select All @@ -11573,6 +11959,162 @@ p, li { white-space: pre-wrap; } Plugin Creator + + Slur + Legato + + + Add Slur + + + + Add Crescendo + + + + Grace: 8th after + + + + Play Previous Chord + + + + Play Previous Measure + + + + Play Next Chord + + + + Play Next Measure + + + + Player Seek to Begin + + + + Player Seek to End + + + + Save Style as Default... + + + + String above (TAB) + + + + Select string above (TAB only) + + + + String below (TAB) + + + + Select string below (TAB only) + + + + Fret 0 (TAB) + + + + Add fret 0 on current string (TAB only) + + + + Fret 1 (TAB) + + + + Add fret 1 on current string (TAB only) + + + + Fret 2 (TAB) + + + + Add fret 2 on current string (TAB only) + + + + Fret 3 (TAB) + + + + Add fret 3 on current string (TAB only) + + + + Fret 4 (TAB) + + + + Add fret 4 of current string (TAB only) + + + + Fret 5 (TAB) + + + + Add fret 5 of current string (TAB only) + + + + Fret 6 (TAB) + + + + Add fret 6 of current string (TAB only) + + + + Fret 7 (TAB) + + + + Add fret 7 of current string (TAB only) + + + + Fret 8 (TAB) + + + + Add fret 8 of current string (TAB only) + + + + Fret 9 (TAB) + + + + Add fret 9 of current string (TAB only) + + + + Staff Types... + + + + Staff type editor + + + + Show staff type editor + + + + Note anchored Textline + + articulation @@ -11715,6 +12257,10 @@ p, li { white-space: pre-wrap; } Line Linia + + Wavy line + + magTable diff --git a/share/locale/mscore_ru.ts b/share/locale/mscore_ru.ts index b1b6458bba1cb..1b0551802abf1 100644 --- a/share/locale/mscore_ru.ts +++ b/share/locale/mscore_ru.ts @@ -3,6 +3,14 @@ AboutBox + + About MuseScore + + + + Copy revision number + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -12,18 +20,10 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Support MuseScore with </span><a href="http://www.musescore.org/en/donate"><span style=" font-size:10pt; text-decoration: underline; color:#0000ff;">your donation</span></a></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Arial'; font-size:10pt;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Copyright </span><span style=" font-size:10pt;">©</span><span style=" font-family:'Arial'; font-size:10pt;"> 1999-2009 Werner Schweer and Others. </span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Copyright </span><span style=" font-size:10pt;">©</span><span style=" font-family:'Arial'; font-size:10pt;"> 1999-2012 Werner Schweer and Others. </span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Published under the GNU General Public License</span></p></body></html> - - About MuseScore - - - - Copy revision number - - AboutBoxDialog @@ -46,17 +46,6 @@ p, li { white-space: pre-wrap; } About MusicXML - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; font-size:10pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">MusicXML is an open file format for exchanging digital sheet music,</p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">supported by many applications. MusicXML is copyright © MakeMusic, Inc.</p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">All rights reserved. For more information see: <a href="http://www.makemusic.com/xml.html"><span style=" text-decoration: underline; color:#0000ff;">MakeMusic</span></a></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; text-decoration: underline; color:#0000ff;"></p></body></html> - - The MusicXML Public License: @@ -104,6 +93,17 @@ p, li { white-space: pre-wrap; } <p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p></body></html> + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans Serif'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">MusicXML is an open file format for exchanging digital sheet music,</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">supported by many applications. MusicXML is copyright © MakeMusic, Inc.</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">All rights reserved. For more information, see: <a href="http://www.makemusic.com/musicxml"><span style=" text-decoration: underline; color:#0000ff;">MakeMusic</span></a></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; text-decoration: underline; color:#0000ff;"></p></body></html> + + Accidental @@ -122,30 +122,14 @@ p, li { white-space: pre-wrap; } Album Name: - - album name - - - - remove current score - - Remove Score - - move current score down in list - - Down Вниз - - move current score up in list - - Up Вверх @@ -154,18 +138,10 @@ p, li { white-space: pre-wrap; } Add Score - - create new album - - New Создать - - load an existing album - - Print Album @@ -198,6 +174,30 @@ p, li { white-space: pre-wrap; } MuseScore: Load Album + + Album Name + + + + Remove Current Score + + + + Move Current Score Down in List + + + + Move Current Score Up in List + + + + Create New Album + + + + Load an Existing Album + + ArticulationBase @@ -287,6 +287,14 @@ p, li { white-space: pre-wrap; } BarLine Тактовая черта + + spanFrom: + + + + spanTo: + + BeamBase @@ -342,6 +350,37 @@ p, li { white-space: pre-wrap; } + + BoxBase + + Form + Form + + + bottomMargin: + + + + topGap: + + + + bottomGap: + + + + leftMargin: + + + + topMargin: + + + + rightMargin: + + + BoxPropertiesBase @@ -1403,6 +1442,22 @@ failed: No. + + 1 + 1 + + + 2 + 2 + + + 3 + 3 + + + 4 + 4 + EditInstrumentBase @@ -2021,6 +2076,10 @@ failed: B -1 + + A 7 + + EditRaster @@ -2049,6 +2108,17 @@ failed: + + EditStaff + + Edit Short Name + + + + Edit Long Name + + + EditStaffBase @@ -2119,10 +2189,6 @@ failed: Type: Тип: - - Edit... - - ... ... @@ -2306,16 +2372,6 @@ failed: Select: - - Guitar (modern) - tablatture type - - - - Bass (modern) - tablature type - - Italian (historic) tablature type @@ -2326,10 +2382,6 @@ failed: tablature type - - Set - - Show Clef @@ -2454,6 +2506,68 @@ failed: Preview Просмотр + + 6 strings (generic guitar) + tablatture type + + + + 4 strings (generic bass) + tablature type + + + + ukulele + + + + bandurria + + + + Custom + + + + Stem position: + + + + Above + + + + Below + + + + Stem style: + + + + Beside staff + + + + Through staff + + + + Half notes: + + + + As short stem + + + + As slashed stem + + + + Show Rests + + EditStringDataBase @@ -2504,6 +2618,14 @@ failed: Chord Аккорд + + Edit Plain Text + + + + Edit HTML Text + + EditStyleBase @@ -2589,6 +2711,10 @@ spatium unit ---------- spatium unit ---------- +spatium unit +---------- +spatium unit +---------- spatium unit @@ -3177,6 +3303,18 @@ p, li { white-space: pre-wrap; } Clef/Key right margin + + Pedal, Trill + + + + Pedal Line + + + + Trill Line + + EditTempoBase @@ -3457,6 +3595,65 @@ spatium unit + + InspectorBarLine + + Staff default + + + + Tick + + + + Tick alt. + + + + Short + + + + Short alt. + + + + Type: + Тип: + + + Measure default + + + + Normal + Обычная + + + Dashed + Пунктирная + + + Dotted + + + + Double + + + + End + Конец + + + Span: + + + + Custom + + + InspectorBeam @@ -3676,6 +3873,57 @@ spatium unit ... + + InspectorHairpin + + Form + Form + + + Hairpin + Вилка + + + crescendo + + + + decrescendo + + + + Subtype: + + + + Dynamic Range: + + + + Velo. change: + + + + Staff + Нотный стан + + + Part + + + + SYstem + + + + reset value + + + + ... + ... + + InspectorImage @@ -3928,6 +4176,37 @@ spatium unit + + InspectorOttava + + Form + Form + + + Ottava + Октава + + + Subtype: + + + + 8va + 8va + + + 15ma + 15ma + + + 8vb + 8vb + + + 15mb + 15mb + + InspectorRest @@ -3996,6 +4275,41 @@ spatium unit + + InspectorTrill + + Form + Form + + + Trill + Трель + + + Subtype: + + + + trill line + + + + up prall + + + + down prall + + + + prall prall + + + + wavy line + + + InspectorVBox @@ -4054,6 +4368,29 @@ spatium unit + + InspectorVolta + + Form + Form + + + Volta + Вольта + + + Subtype: + + + + Open + + + + Closed + + + InstrumentDialogBase @@ -4108,24 +4445,24 @@ spatium unit Staves Нотные станы - - visible - - Clef Ключ - linked + Add Linked Staff - staff linked to previous + Visible - Add Linked Staff + Linked + + + + Staff Linked to Previous @@ -4955,6 +5292,34 @@ Would you like to locate %2 now? -> + + 1 + 1 + + + 2 + 2 + + + 4 + 4 + + + 8 + 8 + + + 16 + 16 + + + 32 + 32 + + + 64 + 64 + MeasuresDialogBase @@ -5114,10 +5479,6 @@ Would you like to locate %2 now? MuseScore: Load Score MuseScore: Загрузить партитуру - - note entry mode - Режим ввода нот - edit mode Режим правки @@ -5663,10 +6024,6 @@ Restore session? please choose a different name: - - Cannot read file: %1 error: %2 - - Overture / Score Writer Files <experimental> (*.ove *.scw);; @@ -5956,43 +6313,87 @@ please choose a different name: - Parts were successfully exported + Parts were successfully exported + + + + Continuous View + + + + About &MusicXML + + + + Report a bug + + + + MuseScore: Load Plugin + + + + MuseScore Plugin (*.qml);;All Files (*) + + + + MuseScore: Save Plugin + + + + MuseScore Plugin File (*.qml) + + + + &Plugins + + + + Find + + + + Dotted + + + + Tick 1 - Continuous View + Tick 2 - About &MusicXML + Short 1 - Report a bug + Short 2 - MuseScore: Load Plugin + plop - MuseScore Plugin (*.qml);;All Files (*) + scoop - MuseScore: Save Plugin + NOTE entry mode - MuseScore Plugin File (*.qml) + DRUM entry mode - &Plugins + TAB entry mode - Find + you cannot create an element @@ -6143,14 +6544,6 @@ please choose a different name: note head group - - OnTime: - - - - OffTime: - - invalid @@ -6167,6 +6560,10 @@ please choose a different name: Dot3 + + NoteEvents + + OmrPanel @@ -6759,6 +7156,14 @@ save before closing? Choose Images Directory + + MuseScore Shortcuts + + + + Print Shortcuts + + PrefsDialogBase @@ -7394,6 +7799,10 @@ save before closing? Define Shortcut + + Print + + Properties @@ -8040,26 +8449,6 @@ Sequencer will be disabled. Form Form - - Staff: - Стан: - - - Voice: - Голос: - - - Tick: - Тик: - - - Slur End - Конец лиги - - - Slur - Лига - SlurPropertyBase @@ -8146,6 +8535,14 @@ Sequencer will be disabled. Form Form + + CHORD + + + + NOTE + + SplitStaff @@ -9012,6 +9409,7 @@ altera Space + spatium unit Интервал @@ -9046,10 +9444,6 @@ altera frame line width - - mm - мм - Margin: Поле: @@ -9082,6 +9476,10 @@ altera Background Color: + + sp + + TextStyleDialog @@ -9181,6 +9579,10 @@ please choose a different name: unstyled + + align vertical baseline + + TimeDialog @@ -9188,14 +9590,6 @@ please choose a different name: MuseScore: Time Signatures MuseScore: Размеры - - 4/4 common time - 4/4 обычный размер - - - 2/2 alla breve - - TimeDialogBase @@ -9357,10 +9751,6 @@ p, li { white-space: pre-wrap; } MuseScore: Transpose MuseScore: Транспозиция - - Transpose by Key - Транспонировать по тональности - Cb major / Ab minor До-бекар мажор, ля-бекар мажор @@ -9433,10 +9823,6 @@ p, li { white-space: pre-wrap; } Closest К ближайшей - - Transpose by Interval - Транспонировать по интервалу - Perfect Unison Идеальный унисон @@ -9553,6 +9939,50 @@ p, li { white-space: pre-wrap; } Use double sharps and flats + + Transpose Chromatically + + + + By Key + + + + By Interval + + + + Transpose Diatonically + + + + Second + + + + Third + + + + Fourth + + + + Fifth + + + + Sixth + + + + Seventh + + + + Keep degree alterations + + TremoloBarDialog @@ -9781,10 +10211,6 @@ p, li { white-space: pre-wrap; } Save a Copy... Сохранить копию... - - Reload - Восстановить - Create new score Создать новую партитуру @@ -10325,14 +10751,6 @@ p, li { white-space: pre-wrap; } Save a copy of the score in addition to the current file - - File reload - - - - Reload score from file - - File close @@ -10725,10 +11143,6 @@ p, li { white-space: pre-wrap; } Page: end - - Add slur - - Crescendo Крещендо @@ -11005,14 +11419,6 @@ p, li { white-space: pre-wrap; } Picture - - Player seek to begin - - - - Player seek to end - - &Transpose... @@ -11197,14 +11603,6 @@ p, li { white-space: pre-wrap; } Diatonic up - - next score - - - - previous score - - Reset user settings @@ -11233,10 +11631,6 @@ p, li { white-space: pre-wrap; } Respell pitches - - Grace: 8nd after - - Pan score while playing on/off @@ -11301,10 +11695,6 @@ p, li { white-space: pre-wrap; } Master Palette... - - Insert Measure - - Toggle View Mode @@ -11473,10 +11863,6 @@ p, li { white-space: pre-wrap; } Save Style... - - Save Style As Default... - - Select All @@ -11549,6 +11935,162 @@ p, li { white-space: pre-wrap; } Plugin Creator + + Slur + Лига + + + Add Slur + + + + Add Crescendo + + + + Grace: 8th after + + + + Play Previous Chord + + + + Play Previous Measure + + + + Play Next Chord + + + + Play Next Measure + + + + Player Seek to Begin + + + + Player Seek to End + + + + Save Style as Default... + + + + String above (TAB) + + + + Select string above (TAB only) + + + + String below (TAB) + + + + Select string below (TAB only) + + + + Fret 0 (TAB) + + + + Add fret 0 on current string (TAB only) + + + + Fret 1 (TAB) + + + + Add fret 1 on current string (TAB only) + + + + Fret 2 (TAB) + + + + Add fret 2 on current string (TAB only) + + + + Fret 3 (TAB) + + + + Add fret 3 on current string (TAB only) + + + + Fret 4 (TAB) + + + + Add fret 4 of current string (TAB only) + + + + Fret 5 (TAB) + + + + Add fret 5 of current string (TAB only) + + + + Fret 6 (TAB) + + + + Add fret 6 of current string (TAB only) + + + + Fret 7 (TAB) + + + + Add fret 7 of current string (TAB only) + + + + Fret 8 (TAB) + + + + Add fret 8 of current string (TAB only) + + + + Fret 9 (TAB) + + + + Add fret 9 of current string (TAB only) + + + + Staff Types... + + + + Staff type editor + + + + Show staff type editor + + + + Note anchored Textline + + articulation @@ -11691,6 +12233,10 @@ p, li { white-space: pre-wrap; } Line Линия + + Wavy line + + magTable diff --git a/share/locale/mscore_sk.ts b/share/locale/mscore_sk.ts index 25f07a8d3e69e..777ffc567de31 100644 --- a/share/locale/mscore_sk.ts +++ b/share/locale/mscore_sk.ts @@ -23,7 +23,7 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Support MuseScore with </span><a href="http://www.musescore.org/en/donate"><span style=" font-size:10pt; text-decoration: underline; color:#0000ff;">your donation</span></a></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Arial'; font-size:10pt;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Copyright </span><span style=" font-size:10pt;">©</span><span style=" font-family:'Arial'; font-size:10pt;"> 1999-2009 Werner Schweer and Others. </span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Copyright </span><span style=" font-size:10pt;">©</span><span style=" font-family:'Arial'; font-size:10pt;"> 1999-2012 Werner Schweer and Others. </span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Published under the GNU General Public License</span></p></body></html> @@ -31,17 +31,17 @@ p, li { white-space: pre-wrap; } AboutBoxDialog - + Unstable Prerelease for Version: - + Version: - + Revision: %1 @@ -61,7 +61,7 @@ p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'Sans Serif'; font-size:10pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">MusicXML is an open file format for exchanging digital sheet music,</p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">supported by many applications. MusicXML is copyright © MakeMusic, Inc.</p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">All rights reserved. For more information see: <a href="http://www.makemusic.com/xml.html"><span style=" text-decoration: underline; color:#0000ff;">MakeMusic</span></a></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">All rights reserved. For more information, see: <a href="http://www.makemusic.com/musicxml"><span style=" text-decoration: underline; color:#0000ff;">MakeMusic</span></a></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; text-decoration: underline; color:#0000ff;"></p></body></html> @@ -137,57 +137,57 @@ p, li { white-space: pre-wrap; } - album name + Album Name - remove current score + Remove Current Score - - Remove Score + + Move Current Score Down in List - - move current score down in list + + Move Current Score Up in List - - Down + + Create New Album - - move current score up in list + + Load an Existing Album - - Up + + Remove Score - - Add Score + + Down - - create new album + + Up - - New + + Add Score - - load an existing album + + New @@ -206,28 +206,28 @@ p, li { white-space: pre-wrap; } - + MuseScore Album Files (*.album);; - - + + All Files (*) - + MuseScore Files (*.mscz *.mscx *.msc);; - + MuseScore: Add Score - + MuseScore: Load Album @@ -340,6 +340,16 @@ p, li { white-space: pre-wrap; } BarLine + + + spanFrom: + + + + + spanTo: + + BeamBase @@ -407,6 +417,44 @@ p, li { white-space: pre-wrap; } + + BoxBase + + + Form + + + + + bottomMargin: + + + + + topGap: + + + + + bottomGap: + + + + + leftMargin: + + + + + topMargin: + + + + + rightMargin: + + + BoxPropertiesBase @@ -497,17 +545,17 @@ spatium unit - + Arpeggio - + Tremolo - + Glissando @@ -1455,12 +1503,12 @@ spatium unit - + Hide courtesy clef - + Show courtesy clef @@ -1603,29 +1651,29 @@ spatium unit - + Open File - + failed: - + MuseScore: Open File - + Write File failed: - + MuseScore: Write Drumset @@ -1673,52 +1721,72 @@ failed: - + + 1 + + + + + 2 + + + + + 3 + + + + + 4 + + + + Shortcut: - + A - + B - + C - + D - + E - + F - + G - + -- - + Note Head: @@ -1975,7 +2043,6 @@ failed: - A 8 @@ -2034,6 +2101,11 @@ failed: Ab 7 + + + A 7 + + Bb 7 @@ -2560,6 +2632,19 @@ failed: + + EditStaff + + + Edit Short Name + + + + + Edit Long Name + + + EditStaffBase @@ -2588,228 +2673,223 @@ failed: - - Edit... - - - - + Part Properties - + Instrument: - + Change Instrument... - + Part Name: - + Long Instrument Name: - + Short Instrument Name: + - - - - - + + + + ... - + Usable Pitch Range: - + Amateur: - - + + - - + Professional: - + Play Transposition: - + 0 - Perfect Unison - + 1 - Augmented Unison - + 0 - Diminished Second - + 1 - Minor Second - + 2 - Major Second - + 3 - Augmented Second - + 2 - Diminished Third - + 3 - Minor Third - + 4 - Major Third - + 5 - Augmented Third - + 4 - Diminished Fourth - + 5 - Perfect Fourth - + 6 - Augmented Fourth - + 6 - Diminished Fifth - + 7 - Perfect Fifth - + 8 - Augmented Fifth - + 7 - Diminished Sixth - + 8 - Minor Sixth - + 9 - Major Sixth - + 10 - Augmented Sixth - + 9 - Diminished Seventh - + 10 - Minor Seventh - + 11 - Major Seventh - + 12 - Augmented Seventh - + 11 - Diminished Octave - + 12 - Perfect Octave - + +octave - + up - + down - + Number of strings: - + Edit string data... @@ -2838,8 +2918,8 @@ failed: - - + + sp @@ -2860,7 +2940,7 @@ failed: - + Stemless @@ -2871,13 +2951,13 @@ failed: - + Key Signature - + Ledger Lines @@ -2906,176 +2986,237 @@ failed: Select: + + + Italian (historic) + tablature type + + + + + French (historic) + tablature type + + - Guitar (modern) + 6 strings (generic guitar) tablatture type - Bass (modern) + 4 strings (generic bass) tablature type - Italian (historic) - tablature type + ukulele - French (historic) - tablature type + bandurria - - Set + + Custom - + « Full Configur. - + Upside Down - + Quick Presets » - + Fret Marks - - + + Font: - - + + Size: - - + + pt - - + + Vert. Offset: - + Marks are: - + Numbers - + Letters - + Marks are drawn: - + On Lines - + Above Lines - + Lines are: - + Continuous - + Broken - + Note Values - + Shown as: - + + None - + Note Symbols - + Stems and beams - + + Stem position: + + + + + Above + + + + + Below + + + + + Stem style: + + + + + Beside staff + + + + + Through staff + + + + + Half notes: + + + + + As short stem + + + + + As slashed stem + + + + + Show Rests + + + + Preview - + Create new tablature type - + PERCUSSION STAFF - + Create new percussion type - + Save - + Load @@ -3140,6 +3281,16 @@ failed: Chord + + + Edit Plain Text + + + + + Edit HTML Text + + EditStyleBase @@ -3150,15 +3301,15 @@ failed: - + Score - - - + + + Page @@ -3169,170 +3320,172 @@ failed: - + System - + Measure - + Barlines - + Notes - + Arpeggios - + Beams - + Slurs/Ties - + Sizes - + Barline-note margin - + Note-barline margin - + Hairpins - - + + Chordnames - + Clefs - - + + Articulations, Ornaments - - + + Accidentals - + Voices - + Musical symbols font: - + Display in Concert Pitch - + Create Multi Measure Rests - + Minumum width of measure: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + sp spatium unit ---------- @@ -3358,327 +3511,333 @@ spatium unit ---------- spatium unit ---------- +spatium unit +---------- +spatium unit +---------- spatium unit - + Minimum Number of empty measures: - + Hide Empty Staves - + Don't hide empty staves in first system - + Music upper margin - + Create clef for all systems - + Music lower margin - + Staff distance - + Grand staff distance - + Lyrics upper margin - + Lyrics lower margin - + Vertical-frame upper margin - + V-frame upper margin - + Vertical-frame lower margin - + V-frame lower margin - - - - - - + + + + + + % - + Last system fill threshold - + Create courtesy clefs - + Create time signatures - + Create courtesy time signatures - + Create key sig for all systems - + Create courtesy key signatures - + Lyrics line height - + Header Text - + show header also on first page - - - + + + show first - + use odd even page header - - + + odd/even - - + + left - - + + middle - - + + right - - - + + + edit even page header - - - - - - - - - - - - - + + + + + + + + + + + + + ... - - - + + + add odd page header - + Footer Text - + show footer also on first page - + use odd even page footer - - - + + + edit even page footer - - - + + + edit odd page header - + Measure Numbers - + all staffs - + every system - + interval - + System Bracket Distance: - + Fix Number of Measures/System: - + Fix Measure Width - + Spacing (1=tight) - + Clef/Key right margin - + Default TAB Clef - + Clef1 - + Clef2 - - - + + + Line width: - + Height: - + Line break height: - + Volta - - - + + + + + default Y-position: - - + + Hook height: - + Min. note distance @@ -3688,41 +3847,46 @@ spatium unit - - + + Pedal, Trill + + + + + Figured Bass - + Min. System distance - + Max. System distance - - + + styled - - + + even - - + + odd - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -3735,357 +3899,367 @@ p, li { white-space: pre-wrap; } - + Akkolade Distance: - + System Bracket Width: - + Akkolade Width: - + minimum Measure width - + Clef left margin - + Key sig. left margin - + Time sig. left margin - + Clef-barline distance - + Staff line width - + Show repeat bar tips ("winged" repeats) - + Barline at start of single staff - + Barline at start of multiple staves - + Bar width: - + End bar width: - + End bar distance: - + Double bar width: - + Double bar distance: - + shorten stems - + Progression - + Shortest stem - + Accidental note distance - + Accidental distance - + Note dot distance - + Dot dot distance - + Ledger line width - + Ledger line length - + Distance to note - + Line width - + Hook length - + Beam width - - + + spaces - + Beam distance - + beam width units - + Minimum length - + Minimum slope - + Maximum slope - + line width at end - + line width middle - + bow - + dotted line width - + Small staff size - + Small note size - + Grace note size - + Small clef size - + Ottava - + + Pedal Line + + + + + Trill Line + + + + Use German names - + Chord description file - + Font: - + Size: - + pt - + Vertical position: - + Line height: - + Style - + Modern - + Historic - + note head distance - - - + + + sp space unit - + articulation distance - + staff distance - + Accidental - + semitones offset - + cents offset - + Stem Direction in Multi-Voice Context - + Voice 1 - - - - + + + + up - - - - + + + + down - + Voice 2 - + Voice 3 - + Voice 4 @@ -4248,7 +4422,7 @@ p, li { white-space: pre-wrap; } GreendotButton - + record @@ -4345,7 +4519,7 @@ p, li { white-space: pre-wrap; } Inspector - + Inspector @@ -4432,6 +4606,79 @@ spatium unit + + InspectorBarLine + + + Staff default + + + + + Tick + + + + + Tick alt. + + + + + Short + + + + + Short alt. + + + + + Type: + + + + + Measure default + + + + + Normal + + + + + Dashed + + + + + Dotted + + + + + Double + + + + + End + + + + + Span: + + + + + Custom + + + InspectorBeam @@ -4464,13 +4711,13 @@ spatium unit - - + + ... - + User Position @@ -4586,7 +4833,7 @@ spatium unit InspectorClef - + Show Courtesy Clef @@ -4720,65 +4967,130 @@ spatium unit - InspectorImage + InspectorHairpin - + Form - - Image + + Hairpin - - Size + + crescendo - - Scale: + + decrescendo - - - % + + Subtype: - - - - ... + + Dynamic Range: - - Lock Aspect Ratio + + Velo. change: - - Size in Spatium Units + + Staff - - Scale to Frame Size + + Part - - - InspectorKeySig - + + SYstem + + + + + + reset value + + + + + + ... + + + + + InspectorImage + + + Form + + + + + Image + + + + + Size + + + + + Scale: + + + + + + % + + + + + + + ... + + + + + Lock Aspect Ratio + + + + + Size in Spatium Units + + + + + Scale to Frame Size + + + + + InspectorKeySig + + Show Courtesy Time Signature - + Show Naturals @@ -5017,45 +5329,83 @@ spatium unit - + Select - + Dot1 - + Dot2 - + Dot3 - + Hook - + Stem - + Beam + + InspectorOttava + + + Form + + + + + Ottava + + + + + Subtype: + + + + + 8va + + + + + 15ma + + + + + 8vb + + + + + 15mb + + + InspectorRest - + Small @@ -5131,11 +5481,54 @@ spatium unit InspectorTimeSig - + Show Courtesy Time Signature + + InspectorTrill + + + Form + + + + + Trill + + + + + Subtype: + + + + + trill line + + + + + up prall + + + + + down prall + + + + + prall prall + + + + + wavy line + + + InspectorVBox @@ -5222,6 +5615,34 @@ spatium unit + + InspectorVolta + + + Form + + + + + Volta + + + + + Subtype: + + + + + Open + + + + + Closed + + + InstrumentDialogBase @@ -5276,22 +5697,22 @@ spatium unit - visible + Visible - - Clef + + Linked - - linked + + Staff Linked to Previous - - staff linked to previous + + Clef @@ -5415,49 +5836,49 @@ spatium unit - + MuseScore: Save Instrument List - + MuseScore Instruments (*.xml);; - + Open Instruments File - + failed: - + MuseScore: Open Instruments file - + Write Style failed: - + MuseScore: Write Style - + MuseScore: Load Instrument List - + MuseScore Instruments (*.xml);;All files (*) @@ -5524,22 +5945,22 @@ failed: KeySig - + Hide Courtesy Key Signature - + Show Courtesy Key Signature - + Hide Naturals - + Show Naturals @@ -6231,12 +6652,12 @@ Would you like to locate %2 now? - + visible - + stemless @@ -6310,57 +6731,92 @@ Would you like to locate %2 now? - + + 1 + + + + + 2 + + + + + 4 + + + + + 8 + + + + + 16 + + + + + 32 + + + + + 64 + + + + Other - + do not count - + Exclude from measure count - + break multi measure rest - + add to measure number - + layout stretch - + repeat count: - + goto previous measure - + <- - + goto next measure - + -> @@ -6445,7 +6901,7 @@ Would you like to locate %2 now? MenuNotes - + &Notes @@ -6496,451 +6952,445 @@ Would you like to locate %2 now? MuseScore - - + MuseScore: Load error - - + + MuseScore - + Save changes to the score "%1" before closing? - + MusicXML Files (*.xml *.mxl);; - + MIDI Files (*.mid *.midi *.kar);; - + Muse Data Files (*.md);; - + Capella Files (*.cap);; - + BB Files <experimental> (*.mgu *.MGU *.sgu *.SGU);; - + PDF Files <experimental omr> (*.pdf);; - + Bagpipe Music Writer Files <experimental> (*.bww);; - + Guitar Pro (*.GTP *.GP3 *.GP4 *.GP5);; - - - + + + All Files (*) - + Untitled - + MuseScore: Load Score - - Cannot read file: %1 error: %2 - - - - + Overture / Score Writer Files <experimental> (*.ove *.scw);; - + Compressed MuseScore File (*.mscz) - + MuseScore File (*.mscx) - + MuseScore: Save Score - + MuseScore: Save File - - + + MuseScore: Load Style - + MuseScore Styles (*.mss);;All Files (*) - - - + + + MuseScore: Save Style - - - + + + MuseScore Style File (*.mss) - + SoundFont Files (*.sf2 *.SF2);;All (*) - + Choose Synthesizer SoundFont - + MuseScore: Choose Synthesizer SoundFont - + MuseScore Chord Style File (*.xml) - + ;;All Files (*) - - + + MuseScore: Load Chord Style - + MuseScore: Save Chord Style - + PDF Scan File (*.pdf);;All (*) - + Choose PDF Scan - + MuseScore: Choose PDF Scan - + OGG Audio File (*.ogg);;All (*) - + Choose Audio File - + MuseScore: Choose OGG Audio File - + PNG Bitmap Graphic (*.png);; - + PDF File (*.pdf);; - + Encapsulated PostScript File (*.eps);; - + Scalable Vector Graphic (*.svg);; - + MuseScore: Save Image - + MuseScore: Load Palette - + MuseScore Palette (*.mpal);;All Files (*) - + MuseScore: Save Palette - + MuseScore Palette (*.mpal) - + MuseScore: Load Plugin - + MuseScore Plugin (*.qml);;All Files (*) - + MuseScore: Save Plugin - + MuseScore Plugin File (*.qml) - + MuseScore: Load Drumset - + MuseScore Drumset (*.drm);;All Files (*) - + MuseScore: Save Drumset - + MuseScore Drumset File (*.drm) - - + + Uncompressed MuseScore Format (*.mscx) - - + + MusicXML Format (*.xml) - - + + Compressed MusicXML Format (*.mxl) - - + + Standard MIDI File (*.mid) - - + + PDF File (*.pdf) - - + + PostScript File (*.ps) - - + + PNG Bitmap Graphic (*.png) - - + + Scalable Vector Graphic (*.svg) - - + + Wave Audio (*.wav) - - + + Flac Audio (*.flac) - - + + Ogg Vorbis Audio (*.ogg) - - + + MP3 Audio (*.mp3) - + MuseScore: Export - + MuseScore Format (*.mscx) - + MuseScore: Save a Copy - - - - + + + + MuseScore: Save As - + All Supported Files (*.mscz *.mscx *.xml *.mxl *.mid *.midi *.kar *.md *.mgu *.MGU *.sgu *.SGU *.cap *.pdf *.ove *.scw *.bww *.GTP *.GP3 *.GP4 *.GP5);; - + All Supported Files (*.mscz *.mscx *.xml *.mxl *.mid *.midi *.kar *.md *.mgu *.MGU *.sgu *.SGU *.cap *.ove *.scw *.bww *.GTP *.GP3 *.GP4 *.GP5);; - + MuseScore Files (*.mscz *.mscx);; - - + + LilyPond Format (*.ly) - - - - + + + + cannot determine file type - - - + + + MuseScore: Export Parts - + Parts were successfully exported - - + + MuseScore Format (*.mscz) - - + + MuseScore: Save Selection - + MuseScore: Save Selected - + MuseScore: InsertImage - + All Supported Files (*.svg *.jpg *.png *.xpm);;Scalable vector graphics (*.svg);;JPEG (*.jpg);;PNG (*.png);;XPM (*.xpm);;All Files (*) - + Images (*.jpg *.gif *.png);;All (*) @@ -6950,112 +7400,112 @@ before closing? - + Grace Notes - + Clefs - + Time Signatures - + 4/4 common time - + 2/2 alla breve - + Normal - + Dashed - + End Bar - + Double Bar - + Start Repeat - + End Repeat - + End-Start Repeat - + Arpeggio && Glissando - + Arpeggio - + Glissando - + Breath && Pauses - + Breath - + Caesura - + Brackets - + Square bracket - + Curly bracket - + Articulations && Ornaments @@ -7065,292 +7515,327 @@ before closing? - + Fingering - + Fingering %1 - + String number %1 - + Thumb - + Note Heads - + Tremolo - + 1/8 through stem - + 1/16 through stem - + 1/32 through stem - + 1/64 through stem - + 1/8 between notes - + 1/16 between notes - + 1/32 between notes - + 1/64 between notes - + Fall/Doit - + fall - + doit - + Repeats - - Repeat measure sign + + Dotted - - Segno + + Tick 1 - - Segno Variation + + Tick 2 - - Coda + + Short 1 - - Varied coda + + Short 2 - - Codetta + + Repeat measure sign - - Fine + + Segno - - Da Capo + + Segno Variation - Da Capo al Fine + Coda - Da Capo al Coda + Varied coda - D.S al Coda + Codetta - D.S al Fine + Fine - D.S + Da Capo + Da Capo al Fine + + + + + Da Capo al Coda + + + + + D.S al Coda + + + + + D.S al Fine + + + + + D.S + + + + To Coda - + + plop + + + + + scoop + + + + Text - + staff-text - + Staff Text - + system-text - + System Text - + &Measures - + &Frames - + &Text - + Rehearsal Mark - + Instrument - + Instrument Change - + 1. - + Lyrics Verse Number - + Tempo Text - + Breaks && Spacer - + Line break - + Page break - + Section break - + Staff spacer down - + Staff spacer up - + Chord Name - + Staff Changes - + set visible - + set invisible - + change staff type - + change instrument @@ -7360,17 +7845,17 @@ before closing? - + Symbols - + Fret Diagram - + &Create @@ -7380,227 +7865,237 @@ before closing? - + switch layer - + synthesizer - + audio track - + switch play mode - + File Operations - + Transport Tools - + Page View - + Concert Pitch - + Foto Mode - + Note Entry - + &File - + Open &Recent - + &Edit - + &Measure - + &Voices - + Pr&ofiles - + &Preferences... - + Add N&ote - + Add &Interval - + T&uplets - + &Plugins - + &Online Handbook - + About &Qt - + Check for &Update - + + NOTE entry mode + + + + + DRUM entry mode + + + + + TAB entry mode + + + + Find - + MuseScore: warning - + Cannot create tuplet: note value too short - + &Layout - + Continuous View - + &Style - + &Display - + &Help - + &About - + About &MusicXML - + Report a bug - + Open failed: unknown file extension or broken file - + System - + no score - - note entry mode - - - - + edit mode - + play - + foto mode - + Go To: - + Bar %1 Beat %2.%3 - + The previous session quit unexpectedly. Restore session? @@ -7634,23 +8129,23 @@ please choose a different name: - + MuseScore: transpose - + There is nothing selected. Transpose whole score? - - + + MuseScore: save style - + MuseScore: load style @@ -7692,6 +8187,11 @@ please choose a different name: Error %1 returned from MP3 encoder + + + you cannot create an element + + MyWebView @@ -7759,7 +8259,7 @@ please choose a different name: - + MuseScore: Create New Score @@ -7767,12 +8267,12 @@ please choose a different name: NewWizardPage1 - + Create New Score - + This wizard creates a new score @@ -7780,12 +8280,12 @@ please choose a different name: NewWizardPage2 - + Create New Score - + Define a set of instruments. Each instrument is represented by one or more staves @@ -7793,12 +8293,12 @@ please choose a different name: NewWizardPage3 - + Create New Score - + Create Time Signature @@ -7806,22 +8306,22 @@ please choose a different name: NewWizardPage4 - + Create New Score - + Select Template File: - + MuseScore: Select Template - + MuseScore Template Files (*.mscz *.mscx) @@ -7829,27 +8329,27 @@ please choose a different name: NewWizardPage5 - + Create New Score - + Select Key Signature and Tempo: - + Key Signature - + Tempo - + BPM: @@ -7872,33 +8372,28 @@ please choose a different name: - - OnTime: + + NoteEvents - - OffTime: - - - - - + + invalid - + Dot1 - + Dot2 - + Dot3 @@ -8084,27 +8579,27 @@ please choose a different name: PaletteBox - + Palettes - + Palette Operations - + Single Palette Mode - + Reset to factory defaults - + new Palette @@ -8112,42 +8607,42 @@ please choose a different name: PaletteBoxButton - + Palette Properties... - + Insert new Palette... - + Move Palette Up - + Move Palette Down - + Enable Editing - + Save Palette - + Load Palette - + Delete Palette @@ -8471,42 +8966,42 @@ please choose a different name: PluginCreator - + File Operations - + Edit Operations - + MuseScore Plugin Editor - - - + + + MuseScore - - - + + + Plugin "%1" has changes save before closing? - + untitled - + Manual @@ -8582,77 +9077,88 @@ save before closing? PreferenceDialog - + Choose Notepaper - + Choose Background Wallpaper - + Choose Default Style - + Choose Default Style for Parts - - + + Choose Instrument List - - + + Instrument List (*.xml) - + Choose Starting Score - + MuseScore Files (*.mscz *.mscx *.msc);;All (*) - + Choose Scores Directory - + Choose Styles Directory - + Choose Templates Directory - + Choose Plugins Directory - + Choose SoundFonts Directory - + Choose Images Directory + + + + MuseScore Shortcuts + + + + + Print Shortcuts + + PrefsDialogBase @@ -9448,7 +9954,7 @@ save before closing? - + Shortcut @@ -9458,47 +9964,52 @@ save before closing? - + + Print + + + + Plugins - + Name: - + Path: - + Version: - + Load - + Define Shortcut - + Update - + Automatic Update Check - + Check for new versions of MuseScore on startup @@ -9506,7 +10017,7 @@ save before closing? Properties - + small @@ -9542,7 +10053,7 @@ save before closing? QWidget - + MuseScore: Import Capella @@ -9569,13 +10080,13 @@ save before closing? - - - - + + - - + + + + @@ -9590,54 +10101,54 @@ save before closing? - + MuseScore: Save Album - + MuseScore Files (*.album);; - + Open Album File - + failed: - + MuseScore: Open Album file - + Write Album failed: - + MuseScore: Write Album - + Untitled - + MuseScore: file not found: - + MuseScore: load failed: @@ -9649,7 +10160,7 @@ failed: - + MuseScore: Import GuitarPro @@ -9664,17 +10175,17 @@ failed: - + MuseScore: load Style failed: - + MuseScore: Load languages failed: - + MuseScore: invalid command @@ -9688,7 +10199,7 @@ failed: RecordButton - + record @@ -9712,14 +10223,14 @@ failed: ScoreView - + No staves found: please use the instruments dialog to first create some staves - + No Measure selected: please select a measure and try again @@ -9786,17 +10297,17 @@ please select a measure and try again - + Please select the complete tuplet and retry the copy operation - + Please select the complete tuplet and retry the cut operation - + Staff @@ -9817,25 +10328,25 @@ please select a measure and try again - + Measure Properties... - + No chord/rest selected: please select a chord/rest and try again - + Cannot split measure here: cannot split tuplet - + No measures selected: please select range of measures to join and try again @@ -9843,26 +10354,26 @@ please select range of measures to join and try again - - - - + + + + Set Invisible - - - - + + + + Set Visible - + Color... @@ -9874,9 +10385,9 @@ please select range of measures to join and try again - - - + + + Text Properties... @@ -9886,150 +10397,150 @@ please select range of measures to join and try again - + Bend Properties... - + TremoloBar Properties... - - + + Add - - - + + + Frame Properties... - - - + + + Tuplet Properties... - + Volta Properties... - + Line Properties... - + Time Signature Properties... - + MIDI Properties... - + Staff Text Properties... - + Tempo Properties... - + Change Instrument Properties... - + Edit Mode - + Slur Properties... - - + + Tuplet... - - + + Delete Tuplet - + Style... - + Chord Articulation... - + Marker Properties... - + Jump Properties... - + Section Break Properties... - + Change Instrument... - + Fret Diagram Properties... - + Glissando Properties... - + Dynamics - + Hairpin Properties... - + Harmony Properties... - - + + Staff Properties... @@ -10040,7 +10551,7 @@ please select range of measures to join and try again - + Measure @@ -10275,12 +10786,12 @@ Sequencer will be disabled. ShortcutCaptureDialog - + Shortcut conflicts with - + Undefined @@ -10335,31 +10846,6 @@ Sequencer will be disabled. Form - - - Slur - - - - - Slur End - - - - - Staff: - - - - - Voice: - - - - - Tick: - - SlurPropertyBase @@ -10465,6 +10951,16 @@ Sequencer will be disabled. Form + + + CHORD + + + + + NOTE + + SplitStaff @@ -10904,7 +11400,7 @@ altera - + MuseScore Startup Dialog @@ -11515,146 +12011,147 @@ altera - + relX: - + reference point offset in percent of parent width - - + + % - + Y: coordinate - + vertical offset to reference point - + relY: - + reference point offset in percent of parent height - + Unit: - + offset is absolute - + MM - + offset in Space units - + Space + spatium unit - + enable text frame - + Frame - + draw circled frame - + Circle - + draw boxed frame - + Box - + Width: - + frame line width - - - mm + + + sp - + Margin: - + frame inner margin - + Round: - + corner round - + Foreground Color: - - + + frame color - + Background Color: @@ -11722,67 +12219,72 @@ please choose a different name: - + align left - + align horizontal center - + align right - + align top - + align bottom - + + align vertical baseline + + + + align vertical center - + subscript - + superscript - + unordered list - + ordered list - + indent more - + indent less - + unstyled @@ -11794,16 +12296,6 @@ please choose a different name: MuseScore: Time Signatures - - - 4/4 common time - - - - - 2/2 alla breve - - TimeDialogBase @@ -11853,12 +12345,12 @@ please choose a different name: TimeSig - + Hide Courtesy Time Signature - + Show Courtesy Time Signature @@ -12001,259 +12493,306 @@ p, li { white-space: pre-wrap; } - - Transpose by Key - - - - + Cb major / Ab minor - + Gb major / Eb minor - + Db major / Bb minor - + Ab major / F minor - + Eb major / C minor - + Bb major / G minor - + F major / D minor - + C major / A minor - + G major / E minor - + D major / B minor - + A major / F# minor - + E major / C# minor - + B major / G# minor - + F# major / D# minor - + C# major / A# minor - - + + + Up - - + + + Down - + Closest - - Transpose by Interval - - - - + Perfect Unison - + Augmented Unison - + Diminished Second - + Minor Second - + Major Second - + Augmented Second - + Diminished Third - + Minor Third - + Major Third - + Augmented Third - + Diminished Fourth - + Perfect Fourth - + Augmented Fourth - + Diminished Fifth - + Perfect Fifth - + Augmented Fifth - + Diminished Sixth - + Minor Sixth - + Major Sixth - + Augmented Sixth - + Diminished Seventh - + Minor Seventh - + Major Seventh - + Augmented Seventh - + Diminished Octave - + Perfect Octave - + + Transpose Diatonically + + + + + Second + + + + + Third + + + + + Fourth + + + + + Fifth + + + + + Sixth + + + + + Seventh + + + + + Keep degree alterations + + + + Options - + Transpose key signatures - + + Transpose Chromatically + + + + + By Key + + + + + By Interval + + + + Transpose chord names - + Single sharps and flats only - + Use double sharps and flats @@ -12544,225 +13083,210 @@ p, li { white-space: pre-wrap; } - + File open - + Load score from file - + File save - + Save score to file - + File save as - + Save score under a new file name - + File save a copy - + Save a Copy... - + Save a copy of the score in addition to the current file - + Save a copy of the score in various formats - - - File reload - - - - - Reload - - - Reload score from file - - - - File close - + Close current score - + File new - + Create new score - + Print - + Print score - - + + Undo - + Undo last change - - + + Redo - + Redo last undo - + Cut - + Copy - + Paste - + Show instruments dialog - + Note input mode - - + + Note Input - + Enter unison above - + Export Parts - + Export Parts... - + Save a copy of the score's parts in various formats - + Unison Above - + Enter second above - + Second Above - + Enter third above - + Third Above - + Enter fourth above - + Fourth Above - + Enter fifth above - + Fifth Above - + Enter sixth above - + Sixth Above @@ -12777,1086 +13301,1083 @@ p, li { white-space: pre-wrap; } - + Enter octave above - + Octave Above - + Enter ninth above - + Ninth Above - + Enter second below - + Second Below - + Enter third below - + Third Below - + Enter fourth below - + Fourth Below - + Enter fifth below - + Fifth Below - + Enter sixth below - + Sixth Below - + Enter seventh below - + Seventh Below - + Enter octave below - + Octave Below - + Enter ninth below - + Ninth Below - + Enter note A - + A - + Enter note B - + B - + Enter note C - + C - + Enter note D - + D - + Enter note E - + E - + Enter note F - + F - + Enter note G - + G - + Add note A to chord - + Add A - + Add note B to chord - + Add B - + Add note C to chord - + Add C - + Add note D to chord - + Add D - + Add note E to chord - + Add E - + Add note F to chord - + Add F - + Add note G to chord - + Add G - + Insert note A - + Insert A - + Insert note B - + Insert B - + Insert note C - + Insert C - + Insert note D - + Insert D - + Insert note E - + Insert E - + Insert note F - + Insert F - + Insert note G - + Insert G - + Enter rest - - - + + + Rest - + Add staccato - + Staccato - + Add tenuto - + Tenuto - + Add trill - + Trill - + Add marcato - + Marcato - + Add more stretch to selected measure - + Less stretch - + Add less stretch to selected measure - - + + Reset Beam Mode - + Reset beam mode of selected measures - + Flip direction - + Pitch up - + Up - + Diatonic pitch up - + Diatonic up - + Pitch up octave - + Up Octave - + Pitch up by an octave - + Go to higher pitched note in chord - + Up Note in Chord - + Go to top note in chord - + Top Note in Chord - + Move up - + Pitch down - + Down - + Diatonic pitch down - + Diatonic down - + Pitch down octave - + Down octave - + Pitch down by an octave - - + + Go to lower pitched note in chord - + Down Note in Chord - + Go to bottom note in chord - + Bottom Note in Chord - - + + Move down - - + Previous chord - - + Previous measure - - + Next chord - - + Next measure - + Add previous chord to selection - + Select to beginning of measure - + Add next chord to selection - + Select Section - + Move chord/rest right - + Move chord/rest left - + Select to end of measure - + Select to beginning of line - + Select to end of line - + Select to beginning of score - + Select to end of score - + Add staff above to selection - + Add staff below to selection - + Page: previous - + Page: next - + Page: top - + Page: end - - Add slur - - - - + Crescendo - + Decrescendo - + Escape - - + + Delete - + Delete contents of the selected measures - + Timewise delete - + Timewise Delete - + Delete element and duration - + Delete Selected Measures - + Append One Measure - + Append measures - + Append Measures... - + Insert One Measure - + Insert measures - + Insert Measures... - - + + Slur + + + + + Add Slur + + + + + Add Crescendo + + + + Insert Horizontal Frame - - + Insert Text Frame - + Append Text Frame - - + Insert Fret Diagram Frame - - + Insert Vertical Frame - + Append Horizontal Frame - + Append Vertical Frame - + Duplet - + Triplet - + Quadruplet - + Quintuplet - + Sextuplet - + Septuplet - + Octuplet - + Nonuplet - + Other tuplets - + Other... - + Note duration: longa - - + + Longa - + Text - + Add Frame Text - + Load Style... - + Save Style... - - Save Style As Default... - - - - + Select All - + Concert Pitch - + Info... - + Reset - + Debugger - + Reset Stretch - + Insert Special Characters - + Find - + General... - + Text... - + Chords... - + Parts... - + Full Screen - + Additional Media... - + Page Settings... - + Album... - + Layers... - + Plugin Creator - + next syllable - + previous syllable - + toggle visibility - + set visible - + set unvisible - + Note duration: whole - + Note duration: half - + Note duration: quarter - + Note duration: 8th - + Note duration: 16th - + Note duration: 32nd - + Note duration: 64th - + Note duration: 128th - - + + 128th note - + Note duration: augmentation dot - - + + Augmentation dot - + Note duration: double augmentation dot - - + + Double augmentation dot - + Note duration: tie - - + + Tie - + Note entry: rest - + Note entry: double sharp - - + + Double sharp - + Note entry: sharp - - + + Sharp - + Note entry: natural - - + + Natural - + Note entry: flat - - + + Flat - + Note entry: double flat - - + + Double flat @@ -13866,943 +14387,1093 @@ p, li { white-space: pre-wrap; } - + Open... - + Save - + Save As... - + Export... - + Close - + New... - + Print... - + Instruments... - - + + Add More Stretch - + Add Less Stretch - - - + + + Acciaccatura - - - + + + Appoggiatura - - - + + + Grace: quarter - - - + + + Grace: 16th - - - + + + Grace: 32nd - - - - Grace: 8nd after - - - - - - + + + Voice 1 - - - + + + Voice 2 - - - + + + Voice 3 - - - + + + Voice 4 - + MIDI input - - + + Enable MIDI input - + Editing sound on - - + + Enable sound while editing - + Beam start - + Beam middle - + No beam - + Beam 32nd sub - + Beam 64th sub - + Auto beam - + Feathered beam, slower - + Feathered beam, faster - + Palette - + Play Panel - + Navigator - + Mixer - + Transport toolbar - + Transport - + Note input toolbar - + Status Bar - + Quit - + Zoom canvas - + Lyrics - + Edit score info - + Insert Special Characters... - + Layers - + MuseScore Connect - + toggle metronome - + Figured Bass - + Next Score - + Previous Score - + Transpose Up - + Transpose Down - + Show master palette - + Master Palette... - - Insert Measure - - - - + Toggle View Mode - + Inspector - + Show OMR Panel - + OmrPanel - + Metronome - + Add system text - + Save Selection - + Save Selection... - + Save current selection as new score - + Export score - + Respell pitches - + Note duration: double whole - - + + Double whole note - - + + Whole note - - + + Half note - - + + Quarter note - - + + 8th note - - + + 16th note - - + + 32nd note - - + + 64th note - + Tempo Marking... - + Tempo Marking - + System Text - + Add staff text - + Staff Text - + Add title text - + Title - + Add subtitle text - + Subtitle - + Add composer text - + Composer - + Add lyricist text - + Lyricist - + Add chord name - + Chord Name - + Show harmony properties for chord - + Harmony Properties - + Add rehearsal mark - + Rehearsal Mark - + Add picture - + Picture - + Player play - + Play - + Start or stop playback - - Player seek to begin - - - - + Player rewind - + Rewind - + Rewind to start position - - Player seek to end - - - - + Play repeats on/off - + Repeat - + Pan score while playing on/off - + Pan - + Load style - + Save style - + Transpose - + &Transpose... - + + + + Grace: 8th after + + + + + Play Previous Chord + + + + + Play Previous Measure + + + + + Play Next Chord + + + + + Play Next Measure + + + + + Player Seek to Begin + + + + + Player Seek to End + + + + + Save Style as Default... + + + + Violin Clef - + Bass Clef - + Exchange Voice 1-2 - + Exchange Voice 1-3 - + Exchange Voice 1-4 - + Exchange Voice 2-3 - + Exchange Voice 2-4 - + Exchange Voice 3-4 - + Display in concert pitch - + Repeat last command - + Toggle System Break - + Toggle Page Break - + Toggle Section Break - + Edit Element - + Show inspector - + + String above (TAB) + + + + + Select string above (TAB only) + + + + + String below (TAB) + + + + + Select string below (TAB only) + + + + + Fret 0 (TAB) + + + + + Add fret 0 on current string (TAB only) + + + + + Fret 1 (TAB) + + + + + Add fret 1 on current string (TAB only) + + + + + Fret 2 (TAB) + + + + + Add fret 2 on current string (TAB only) + + + + + Fret 3 (TAB) + + + + + Add fret 3 on current string (TAB only) + + + + + Fret 4 (TAB) + + + + + Add fret 4 of current string (TAB only) + + + + + Fret 5 (TAB) + + + + + Add fret 5 of current string (TAB only) + + + + + Fret 6 (TAB) + + + + + Add fret 6 of current string (TAB only) + + + + + Fret 7 (TAB) + + + + + Add fret 7 of current string (TAB only) + + + + + Fret 8 (TAB) + + + + + Add fret 8 of current string (TAB only) + + + + + Fret 9 (TAB) + + + + + Add fret 9 of current string (TAB only) + + + + + Staff Types... + + + + + Staff type editor + + + + + Show staff type editor + + + + + Note anchored Textline + + + + Reset measure stretch - + Show Invisible - + Show Frames - + Note entry: whole rest - + Whole rest - + Note entry: half rest - + Half rest - + Note entry: quarter rest - + Quarter rest - + Note entry: 8th rest - + 8th rest - + Backspace - + Zoom In - + Zoom Out - + Mirror note head - + Edit general style - + Edit text style - + Edit chord style - + Select all similar elements - + All Similar Elements - + Select all similar elements in same staff - + All Similar Elements in Same Staff - + Synthesizer - + Double duration - + Half duration - + Repeat selection - + Follow song - + Display documents side by side - + Documents Side by Side - + Display documents stacked - + Documents Stacked - + Show OMR image - + Enharmonic up - + Show Unprintable - + Show Page Margins - + Manage parts - + Enharmonic down - + Create new revision - + Toggle foto mode - + Enable horizontal raster - + Enable vertical raster - + Configure raster - + Re-Pitch Mode - + Replace pitches without changing rhythms - + Stack down - - next score - - - - - previous score - - - - + Show media dialog - + Reset user settings - + Piano Keyboard - + Split Measure - + Join Measure - + Page Settings - + Album @@ -14810,12 +15481,12 @@ p, li { white-space: pre-wrap; } articulation - + Bend - + Tremolo Bar @@ -14831,45 +15502,45 @@ p, li { white-space: pre-wrap; } file - - + + error at line %1 column %2: %3 - + internal error: could not open resource musicxml.xsd - + internal error: MusicXML schema is invalid - + error reading container.xml at line %1 column %2: %3 - + can't find rootfile - - + + this is not a valid MusicXML file - + could not open MusicXML file @@ -14886,100 +15557,105 @@ p, li { white-space: pre-wrap; } lines - + Lines - + Slur - + Crescendo - + Diminuendo - + Prima volta - + Seconda volta - + Terza volta - + Seconda volta 2 - + 8va - + 15ma - + 8vb - + 15mb - - - - + + + + Pedal - + Trill line - + Upprall line - + Downprall line - + Prallprall line - + + Wavy line + + + + Text line - + Line diff --git a/share/locale/mscore_sl.ts b/share/locale/mscore_sl.ts index c6c908854b977..4c8cee1c0345f 100644 --- a/share/locale/mscore_sl.ts +++ b/share/locale/mscore_sl.ts @@ -23,9 +23,9 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Support MuseScore with </span><a href="http://www.musescore.org/en/donate"><span style=" font-size:10pt; text-decoration: underline; color:#0000ff;">your donation</span></a></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Arial'; font-size:10pt;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Copyright </span><span style=" font-size:10pt;">©</span><span style=" font-family:'Arial'; font-size:10pt;"> 1999-2009 Werner Schweer and Others. </span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Copyright </span><span style=" font-size:10pt;">©</span><span style=" font-family:'Arial'; font-size:10pt;"> 1999-2012 Werner Schweer and Others. </span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Published under the GNU General Public License</span></p></body></html> - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> @@ -34,23 +34,23 @@ p, li { white-space: pre-wrap; } <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Arial'; font-size:10pt;"></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Copyright </span><span style=" font-size:10pt;">©</span><span style=" font-family:'Arial'; font-size:10pt;"> 1999-2010 Werner Schweer in drugi. </span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Objavljeno pod licenco GNU GPL.</span></p></body></html> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Objavljeno pod licenco GNU GPL.</span></p></body></html> {3C?} {4.0/?} {3.?} {40/?} {1"?} {2'?} {8.25p?} {400;?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {10p?} {10p?} {0000f?} {10p?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {10p?} {10p?} {0000f?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {10p?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {10p?} {10p?} {10p?} {1999-2012 ?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {10p?} AboutBoxDialog - + Unstable Prerelease for Version: Nestabilna izdaja za različico: - + Version: Različica: - + Revision: %1 Revizija: %1 @@ -70,7 +70,7 @@ p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'Sans Serif'; font-size:10pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">MusicXML is an open file format for exchanging digital sheet music,</p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">supported by many applications. MusicXML is copyright © MakeMusic, Inc.</p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">All rights reserved. For more information see: <a href="http://www.makemusic.com/xml.html"><span style=" text-decoration: underline; color:#0000ff;">MakeMusic</span></a></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">All rights reserved. For more information, see: <a href="http://www.makemusic.com/musicxml"><span style=" text-decoration: underline; color:#0000ff;">MakeMusic</span></a></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; text-decoration: underline; color:#0000ff;"></p></body></html> @@ -146,34 +146,44 @@ p, li { white-space: pre-wrap; } - album name + Album Name - remove current score + Remove Current Score - - Remove Score + + Move Current Score Down in List - - move current score down in list + + Move Current Score Up in List - - Down - Dol + + Create New Album + - - move current score up in list + + Load an Existing Album + + + Remove Score + + + + + Down + Dol + Up @@ -184,21 +194,11 @@ p, li { white-space: pre-wrap; } Add Score - - - create new album - - New Novo - - - load an existing album - - Load @@ -215,28 +215,28 @@ p, li { white-space: pre-wrap; } - + MuseScore Album Files (*.album);; - - + + All Files (*) - + MuseScore Files (*.mscz *.mscx *.msc);; - + MuseScore: Add Score - + MuseScore: Load Album @@ -349,6 +349,16 @@ p, li { white-space: pre-wrap; } BarLine Taktnica + + + spanFrom: + + + + + spanTo: + + BeamBase @@ -416,6 +426,44 @@ p, li { white-space: pre-wrap; } + + BoxBase + + + Form + Obrazec + + + + bottomMargin: + + + + + topGap: + + + + + bottomGap: + + + + + leftMargin: + + + + + topMargin: + + + + + rightMargin: + + + BoxPropertiesBase @@ -506,17 +554,17 @@ spatium unit Obrazec - + Arpeggio Arpeggio - + Tremolo Tremolo - + Glissando Glissando @@ -1464,12 +1512,12 @@ spatium unit - + Hide courtesy clef - + Show courtesy clef @@ -1612,31 +1660,31 @@ spatium unit neveljavno - + Open File Odpri datoteko - + failed: spodletelo: - + MuseScore: Open File MuseScore: Odpri datoteko - + Write File failed: Pisanje spodletelo: - + MuseScore: Write Drumset MuseScore: Zapiši tolkala @@ -1669,7 +1717,7 @@ spodletelo: Ime: - + Note Head: Notna glavica: @@ -1704,47 +1752,67 @@ spodletelo: Privzet glas: - + + 1 + 1 + + + + 2 + 2 + + + + 3 + 3 + + + + 4 + 4 + + + Shortcut: Bližnjica: - + A A - + B H - + C C - + D D - + E E - + F F - + G G - + -- -- @@ -1986,7 +2054,6 @@ spodletelo: - A 8 @@ -2045,6 +2112,11 @@ spodletelo: Ab 7 + + + A 7 + + Bb 7 @@ -2571,6 +2643,19 @@ spodletelo: + + EditStaff + + + Edit Short Name + + + + + Edit Long Name + + + EditStaffBase @@ -2599,228 +2684,223 @@ spodletelo: Tip: - - Edit... - - - - + Part Properties Lastnosti dela - + Instrument: Inštrument: - + Change Instrument... Spremeni inštrument ... - + Part Name: - + Long Instrument Name: Ime inštrumenta: - + Short Instrument Name: Skrajšano ime inštrumenta: + - - - - - + + + + ... ... - + Usable Pitch Range: Uporaben razpon: - + Amateur: Začetnik: - - + + - - - + Professional: Profesionalec: - + Play Transposition: Igraj transponirano: - + 0 - Perfect Unison - + 1 - Augmented Unison - + 0 - Diminished Second - + 1 - Minor Second - + 2 - Major Second - + 3 - Augmented Second - + 2 - Diminished Third - + 3 - Minor Third - + 4 - Major Third - + 5 - Augmented Third - + 4 - Diminished Fourth - + 5 - Perfect Fourth - + 6 - Augmented Fourth - + 6 - Diminished Fifth - + 7 - Perfect Fifth - + 8 - Augmented Fifth - + 7 - Diminished Sixth - + 8 - Minor Sixth - + 9 - Major Sixth - + 10 - Augmented Sixth - + 9 - Diminished Seventh - + 10 - Minor Seventh - + 11 - Major Seventh - + 12 - Augmented Seventh - + 11 - Diminished Octave - + 12 - Perfect Octave - + Number of strings: - + Edit string data... - + +octave +št. oktav - + up gor - + down dol @@ -2849,8 +2929,8 @@ spodletelo: - - + + sp pe @@ -2861,19 +2941,19 @@ spodletelo: - + Stemless Brez vratov - + Key Signature Predznaki - + Ledger Lines @@ -2903,34 +2983,17 @@ spodletelo: - - Guitar (modern) - tablatture type - - - - - Bass (modern) - tablature type - - - - + Italian (historic) tablature type - + French (historic) tablature type - - - Set - - Show Clef @@ -2946,147 +3009,225 @@ spodletelo: Show Time Sign. + + + 6 strings (generic guitar) + tablatture type + + + + + 4 strings (generic bass) + tablature type + + + + + ukulele + + + + + bandurria + + + + + Custom + + - + « Full Configur. - + Upside Down - + Quick Presets » - + Fret Marks - - + + Font: Pisava: - - + + Size: Velikost: - - + + pt pt - - + + Vert. Offset: - + Marks are: - + Numbers Oštevilčenje - + Letters - + Marks are drawn: - + On Lines - + Above Lines - + Lines are: - + Continuous - + Broken - + Note Values - + Shown as: - + + None - + Note Symbols - + Stems and beams - + + Stem position: + + + + + Above + Zgoraj + + + + Below + + + + + Stem style: + + + + + Beside staff + + + + + Through staff + + + + + Half notes: + + + + + As short stem + + + + + As slashed stem + + + + + Show Rests + + + + Preview Predogled - + Create new tablature type - + PERCUSSION STAFF - + Create new percussion type - + Save Shrani - + Load Naloži @@ -3151,6 +3292,16 @@ spodletelo: Chord Akord + + + Edit Plain Text + + + + + Edit HTML Text + + EditStyleBase @@ -3161,151 +3312,153 @@ spodletelo: - + Score Skladba - - - + + + Page Stran - + System Sistem - + Measure Takt - + Barlines Taktnice - + Notes Note - + Arpeggios Arpeggi - + Beams - + Sizes Velikosti - + Hairpins Črte - - + + Chordnames Imena akordov - - + + Articulations, Ornaments Artikulacije, Ornamenti - + Voices Glasovi - + Display in Concert Pitch Prikaži v koncertni intonaciji - + Create Multi Measure Rests Prikaži večtaktne pavze - + Minumum width of measure: Najmanjša širina takta: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + sp spatium unit ---------- @@ -3331,81 +3484,85 @@ spatium unit ---------- spatium unit ---------- +spatium unit +---------- +spatium unit +---------- spatium unit pe - + Minimum Number of empty measures: Najmanjša širina praznega takta: - + Hide Empty Staves Skrij prazne takte - + Music upper margin Zgornji rob - + Music lower margin Spodnji rob - + Staff distance Razdalja med črtovji - + Lyrics upper margin Zgornji razmik do besedila - + Lyrics lower margin Spodnji razmik do besedila - + V-frame upper margin Zgornji rob navpičnega okvira - + V-frame lower margin Spodnji rob navpičnega okvira - - - - - - + + + + + + % % - + Last system fill threshold Prag za zapolnitev zadnjega sistema - + Create clef for all systems Prikaži ključ v vseh sistemih - + Create key sig for all systems Prikaži predznake v vseh sistemih - + Create time signatures Prikaži taktovski način v vseh sistemih @@ -3416,473 +3573,480 @@ spatium unit - + Clefs Ključi - + Slurs/Ties - - + + Accidentals Predznaki - + Musical symbols font: - + Don't hide empty staves in first system - + Grand staff distance - + Vertical-frame upper margin - + Vertical-frame lower margin - + Create courtesy clefs - + Create courtesy time signatures Prikaži nov taktovski način v prejšnjem sistemu - + Create courtesy key signatures Prikaži nove predznake v prejšnjem sistemu - + Lyrics line height - + Header Text - + show header also on first page - + use odd even page header - - + + left - - + + middle - - + + right - - - + + + edit even page header - - - + + + add odd page header - + Footer Text - + show footer also on first page - + use odd even page footer - - - + + + edit even page footer - - - + + + edit odd page header - + + Pedal, Trill + + + + Min. System distance - + Max. System distance - + System Bracket Distance: Razdalja do prečke sistema: - + Akkolade Distance: - + Fix Number of Measures/System: Zakleni število taktov/sistem: - + Fix Measure Width Zakleni širino takta - + System Bracket Width: - + Akkolade Width: - + minimum Measure width - + Spacing (1=tight) Razmik (1=ozko) - + Min. note distance Min. razdalja do note - + Clef left margin Levi rob do ključa - + Key sig. left margin Levi rob do st. predznakov - + Time sig. left margin Levi rob do takt. načina - + Clef-barline distance Ključ-taktnica razdalja - + Staff line width - + Show repeat bar tips ("winged" repeats) Prikaži namige ob ponavljajih - + Barline at start of single staff Taktnica ob začetku enojnega črtovja - + Barline at start of multiple staves Taktnica ob začetku sistema črtovij - + Bar width: - + End bar width: - + End bar distance: - + Double bar width: - + Double bar distance: - + shorten stems Skrajšaj vratove - + Progression Količnik - + Shortest stem Najkrajši vrat - + Accidental note distance Razdalja predznakov do note - + Accidental distance Razdalja med več predznaki - + Note dot distance Razdalja do pike - + Dot dot distance Razdalja med pikama - + Ledger line width Debelina pomožne črte - + Ledger line length - + Default TAB Clef - + Clef1 - + Clef2 - + Distance to note Razdalja do note - + Line width Debelina črte - + Hook length - - - + + + Line width: - + Height: - + Line break height: - + Volta Volta - - - + + + + + default Y-position: - - + + Hook height: - + Ottava Oktava - + Font: Pisava: - + Size: Velikost: - + pt pt - + Vertical position: - + Line height: - + Style Slog - + Modern - + Historic - + note head distance - + articulation distance - + staff distance - + Accidental - + semitones offset - + cents offset - + Stem Direction in Multi-Voice Context - - - - + + + + up gor - - - - + + + + down dol - - - + + + show first Prikaži prvo @@ -3892,37 +4056,37 @@ spatium unit - - + + Figured Bass - - + + odd/even Lihe/sode - - + + styled - - + + even - - + + odd - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } @@ -3935,168 +4099,178 @@ p, li { white-space: pre-wrap; } - + Measure Numbers Številke taktov - + all staffs Vsa črtovja - + every system Vsak sistem - + interval Vsakih - + Barline-note margin - + Note-barline margin - + Clef/Key right margin - + Beam width Širina prečke - - + + spaces razmikov - + Beam distance Razdalja do prečke - + beam width units enote debeline prečke - + Minimum length Min. dolžnia - + Minimum slope Min. naklon - + Maximum slope Max. naklon - + line width at end - + line width middle - + bow - + dotted line width - + Small staff size Velikost majhnega črtovja - + Small note size Velikost majhne note - + Grace note size Velikost okrasne note - + Small clef size Velikost majhnega ključa - + + Pedal Line + + + + + Trill Line + + + + Use German names Uporabi nemška imena - + Chord description file Datoteka z opisi akordov - - - - - - - - - - - - - + + + + + + + + + + + + + ... ... - - - + + + sp space unit pe - + Voice 1 Glas 1 - + Voice 2 Glas 2 - + Voice 3 Glas 3 - + Voice 4 Glas 4 @@ -4259,7 +4433,7 @@ p, li { white-space: pre-wrap; } GreendotButton - + record snemanje @@ -4356,7 +4530,7 @@ p, li { white-space: pre-wrap; } Inspector - + Inspector Struktura dokumenta @@ -4443,6 +4617,79 @@ spatium unit + + InspectorBarLine + + + Staff default + + + + + Tick + + + + + Tick alt. + + + + + Short + + + + + Short alt. + + + + + Type: + Tip: + + + + Measure default + + + + + Normal + Navadna + + + + Dashed + Črtkana + + + + Dotted + + + + + Double + + + + + End + Zaključek + + + + Span: + + + + + Custom + + + InspectorBeam @@ -4475,13 +4722,13 @@ spatium unit - - + + ... ... - + User Position @@ -4597,7 +4844,7 @@ spatium unit InspectorClef - + Show Courtesy Clef @@ -4731,15 +4978,80 @@ spatium unit - InspectorImage + InspectorHairpin - + Form Obrazec - - Image + + Hairpin + Vilice + + + + crescendo + + + + + decrescendo + + + + + Subtype: + + + + + Dynamic Range: + + + + + Velo. change: + + + + + Staff + Črtovje + + + + Part + + + + + SYstem + + + + + + reset value + + + + + + ... + ... + + + + InspectorImage + + + Form + Obrazec + + + + Image Slika @@ -4784,12 +5096,12 @@ spatium unit InspectorKeySig - + Show Courtesy Time Signature - + Show Naturals @@ -5028,45 +5340,83 @@ spatium unit - + Select Izbor - + Dot1 - + Dot2 - + Dot3 - + Hook - + Stem - + Beam + + InspectorOttava + + + Form + Obrazec + + + + Ottava + Oktava + + + + Subtype: + + + + + 8va + 8va + + + + 15ma + 15ma + + + + 8vb + 8bassa + + + + 15mb + 15bassa + + InspectorRest - + Small Majhno @@ -5142,11 +5492,54 @@ spatium unit InspectorTimeSig - + Show Courtesy Time Signature + + InspectorTrill + + + Form + Obrazec + + + + Trill + Trilček + + + + Subtype: + + + + + trill line + + + + + up prall + + + + + down prall + + + + + prall prall + + + + + wavy line + + + InspectorVBox @@ -5233,6 +5626,34 @@ spatium unit + + InspectorVolta + + + Form + Obrazec + + + + Volta + Volta + + + + Subtype: + + + + + Open + + + + + Closed + + + InstrumentDialogBase @@ -5287,24 +5708,24 @@ spatium unit - visible - viden - - - - Clef - Ključi + Visible + Vidno - linked + Linked - staff linked to previous + Staff Linked to Previous + + + Clef + Ključi + Load @@ -5426,51 +5847,51 @@ spatium unit - + MuseScore: Save Instrument List MuseScore: Shrani seznam inštrumentov - + MuseScore Instruments (*.xml);; MuseScore inštrumenti (*.xml);; - + Open Instruments File Odpri datoteko z inštrumenti - + failed: spodletelo: - + MuseScore: Open Instruments file MuseScore: Odpri datoteko z inštrumenti - + Write Style failed: Zapisanje sloga spodletelo: - + MuseScore: Write Style MuseScore: Zapisovanje slogov - + MuseScore: Load Instrument List MuseScore: Naloži seznam inštrumentov - + MuseScore Instruments (*.xml);;All files (*) MuseScore inštrumenti (*.xml);;Vse datoteke (*) @@ -5537,22 +5958,22 @@ spodletelo: KeySig - + Hide Courtesy Key Signature - + Show Courtesy Key Signature - + Hide Naturals - + Show Naturals @@ -6244,12 +6665,12 @@ Would you like to locate %2 now? - + visible viden - + stemless brez vratu @@ -6323,57 +6744,92 @@ Would you like to locate %2 now? dejansko - + + 1 + 1 + + + + 2 + 2 + + + + 4 + 4 + + + + 8 + 8 + + + + 16 + 16 + + + + 32 + 32 + + + + 64 + 64 + + + Other Drugo - + do not count brez štetja - + Exclude from measure count - + break multi measure rest prekini večtaktne pavze - + add to measure number - + layout stretch - + repeat count: št. ponovitev: - + goto previous measure - + <- - + goto next measure - + -> @@ -6458,7 +6914,7 @@ Would you like to locate %2 now? MenuNotes - + &Notes &Note @@ -6509,462 +6965,456 @@ Would you like to locate %2 now? MuseScore - - + + MuseScore - + Save changes to the score "%1" before closing? Želite shraniti spremembe za skladbo "%1"? - + MuseScore: Load Score MuseScore: Naloži skladbo - - + MuseScore: Load error - + MusicXML Files (*.xml *.mxl);; - + MIDI Files (*.mid *.midi *.kar);; - + Muse Data Files (*.md);; - + Capella Files (*.cap);; - + BB Files <experimental> (*.mgu *.MGU *.sgu *.SGU);; - + PDF Files <experimental omr> (*.pdf);; - + Bagpipe Music Writer Files <experimental> (*.bww);; - + Guitar Pro (*.GTP *.GP3 *.GP4 *.GP5);; - - - + + + All Files (*) - + Untitled Neimenovano - - Cannot read file: %1 error: %2 - - - - + Overture / Score Writer Files <experimental> (*.ove *.scw);; - + Compressed MuseScore File (*.mscz) Stisnjena MuseScore datoteka (*.mscz) - + MuseScore File (*.mscx) MuseScore datoteka (*.mscx) - + MuseScore: Save Score MuseScore: Shrani skladbo - + MuseScore: Save File MuseScore: Shrani datoteko - - + + MuseScore: Load Style MuseScore: Naloži slog - + MuseScore Styles (*.mss);;All Files (*) MuseScore slogi (*.mss);; Vse datoteke (*) - - - + + + MuseScore: Save Style MuseScore: Shrani slog - - - + + + MuseScore Style File (*.mss) MuseScore datoteka s slogi (*.mss) - + SoundFont Files (*.sf2 *.SF2);;All (*) SoundFont datoteke (*.sf2, *.SF2);; Vse datoteke (*) - + Choose Synthesizer SoundFont Izberite glasbeno pisavo za sintetizator - + MuseScore: Choose Synthesizer SoundFont - + MuseScore Chord Style File (*.xml) - + ;;All Files (*) - - + + MuseScore: Load Chord Style - + MuseScore: Save Chord Style - + PDF Scan File (*.pdf);;All (*) - + Choose PDF Scan - + MuseScore: Choose PDF Scan - + OGG Audio File (*.ogg);;All (*) - + Choose Audio File - + MuseScore: Choose OGG Audio File - + PNG Bitmap Graphic (*.png);; - + PDF File (*.pdf);; - + Encapsulated PostScript File (*.eps);; - + Scalable Vector Graphic (*.svg);; - + MuseScore: Save Image - + MuseScore: Load Palette - + MuseScore Palette (*.mpal);;All Files (*) - + MuseScore: Save Palette - + MuseScore Palette (*.mpal) - + MuseScore: Load Plugin - + MuseScore Plugin (*.qml);;All Files (*) - + MuseScore: Save Plugin - + MuseScore Plugin File (*.qml) - + MuseScore: Load Drumset MuseScore: Naloži tolkala - + MuseScore Drumset (*.drm);;All Files (*) - + MuseScore: Save Drumset MuseScore: Shrani tolkala - + MuseScore Drumset File (*.drm) - - + + Uncompressed MuseScore Format (*.mscx) - - + + MusicXML Format (*.xml) MusicXML zapis (*.xml) - - + + Compressed MusicXML Format (*.mxl) Stisnjen MusicXML zapis (*.mxl) - - + + Standard MIDI File (*.mid) Standardizirana MIDI datoteka (*.mid) - - + + PDF File (*.pdf) PDF datoteka (*.pdf) - - + + PostScript File (*.ps) PostScript datoteka (*.ps) - - + + PNG Bitmap Graphic (*.png) PNG rasterska slika (*.png) - - + + Scalable Vector Graphic (*.svg) Scalable Vector Graphic (*.svg) - - + + Wave Audio (*.wav) Wave zvok (*.wav) - - + + Flac Audio (*.flac) Flac zvok (*.flac) - - + + Ogg Vorbis Audio (*.ogg) Ogg Vorbis zvok (*.ogg) - - + + MP3 Audio (*.mp3) - + MuseScore: Export - + MuseScore Format (*.mscx) - + MuseScore: Save a Copy MuseScore: Shrani kopijo - - - - + + + + MuseScore: Save As MuseScore: Shrani kot - + All Supported Files (*.mscz *.mscx *.xml *.mxl *.mid *.midi *.kar *.md *.mgu *.MGU *.sgu *.SGU *.cap *.pdf *.ove *.scw *.bww *.GTP *.GP3 *.GP4 *.GP5);; - + All Supported Files (*.mscz *.mscx *.xml *.mxl *.mid *.midi *.kar *.md *.mgu *.MGU *.sgu *.SGU *.cap *.ove *.scw *.bww *.GTP *.GP3 *.GP4 *.GP5);; - + MuseScore Files (*.mscz *.mscx);; - - + + LilyPond Format (*.ly) - - - - + + + + cannot determine file type ni mogoče zaznati tipa datoteke - - - + + + MuseScore: Export Parts - + Parts were successfully exported - - + + MuseScore Format (*.mscz) - - + + MuseScore: Save Selection - + MuseScore: Save Selected - + MuseScore: InsertImage - + All Supported Files (*.svg *.jpg *.png *.xpm);;Scalable vector graphics (*.svg);;JPEG (*.jpg);;PNG (*.png);;XPM (*.xpm);;All Files (*) - + Images (*.jpg *.gif *.png);;All (*) - + Grace Notes Okrasne note - + Clefs Ključi @@ -6974,257 +7424,257 @@ skladbo "%1"? Tonalitete - + Time Signatures Taktovski načini - + 4/4 common time 4/4 - + 2/2 alla breve 2/2 alla breve - + Normal Navadna - + Dashed Črtkana - + End Bar Končaj - + Double Bar Dvojna - + Start Repeat Začetni ponavljaj - + End Repeat Ponavljaj - + End-Start Repeat Dvojni ponavljaj - + Arpeggio && Glissando Arpeggio in Glissando - + Arpeggio Arpeggio - + Glissando Glissando - + Breath && Pauses Dihi in cezure - + Breath Dih - + Caesura Cezura - + Brackets Prečke sistema - + Square bracket - + Curly bracket - + Thumb - + 1/8 through stem 3 skozi vrat {1/8 ?} - + 1/16 through stem 3 skozi vrat {1/16 ?} - + 1/32 through stem 3 skozi vrat {1/32 ?} - + 1/64 through stem 3 skozi vrat {1/64 ?} - + 1/8 between notes 3 med notami {1/8 ?} - + 1/16 between notes 3 med notami {1/16 ?} - + 1/32 between notes 3 med notami {1/32 ?} - + 1/64 between notes 3 med notami {1/64 ?} - + Fall/Doit - + fall - + doit - + Segno Variation - + staff-text - + Staff Text Napis nad črtovje - + system-text - + System Text Napis nad sistemom - + Instrument - + Instrument Change - + 1. 1. - + Lyrics Verse Number - + Tempo Text - + Section break - + Staff spacer down - + Staff spacer up - + Chord Name Ime akorda - + Staff Changes - + set visible - + set invisible - + change staff type - + change instrument - + Fret Diagram @@ -7234,7 +7684,7 @@ skladbo "%1"? - + Articulations && Ornaments Artikulacije in okraski @@ -7244,127 +7694,162 @@ skladbo "%1"? Dinamika - + Fingering Prstni red - + Fingering %1 Prstni red %1 - + String number %1 Struna št. %1 - + Note Heads Notne glavice - + Tremolo Tremolo + + + Dotted + + + + + Tick 1 + + + + + Tick 2 + + + Short 1 + + + + + Short 2 + + + + Repeats Ponavljanja - + Repeat measure sign Znak za ponavljanje - + Segno Segno - + Coda Coda - + Varied coda Coda2 - + Codetta Codetta - + Fine Fine - + Da Capo Da capo - + Da Capo al Fine Da capo al fine - + Da Capo al Coda Da capo al coda - + D.S al Coda D.S al coda - + D.S al Fine D.S al fine - + D.S D.S - + To Coda do coda - + Breaks && Spacer Prelomi in razmiki - + Line break Prelom vrstice - + Page break Prelom strani - + + plop + + + + + scoop + + + + &Measures - + &Frames - + &Text @@ -7374,242 +7859,252 @@ skladbo "%1"? Prečke vratov - + Symbols Simboli - + &Create &Dodaj - + Text Besedilo - + switch layer - + synthesizer - + audio track - + switch play mode - + File Operations - + Transport Tools Orodja za predvajanje - + Page View - + Concert Pitch Koncertna intonacija - + Foto Mode - + Note Entry Vnos not - + &File &Datoteka - + Open &Recent Odpri &nedavne - + &Edit Ur&edi - + &Measure - + &Voices - + Pr&ofiles - + &Preferences... - + Add N&ote - + Add &Interval - + T&uplets - + &Plugins - + &Online Handbook - + About &Qt - + Check for &Update - + + NOTE entry mode + + + + + DRUM entry mode + + + + + TAB entry mode + + + + Find - + MuseScore: warning - + Cannot create tuplet: note value too short - + &Layout Postavi&tev - + Continuous View - + &Style &Slog - + &Display &Pogled - + &Help &Pomoč - + &About &O programu - + About &MusicXML - + Report a bug - + Open failed: unknown file extension or broken file - + System Sistem - + no score ni skladbe - - note entry mode - način za vnos not - - - + edit mode način za urejanje - + play predvajaj - + foto mode - + Go To: Pojdi na: - + Bar %1 Beat %2.%3 Takt %1 Doba %2.%3 - + The previous session quit unexpectedly. Restore session? @@ -7645,28 +8140,28 @@ please choose a different name: - + MuseScore: transpose MuseScore: transpozicija - + There is nothing selected. Transpose whole score? Ni izbranih elementov. Transponiram celotno skladbo? - - + + MuseScore: save style - + MuseScore: load style - + Rehearsal Mark Oznake za vajo @@ -7708,6 +8203,11 @@ please choose a different name: Error %1 returned from MP3 encoder + + + you cannot create an element + + MyWebView @@ -7775,7 +8275,7 @@ please choose a different name: Ustvari prazno novo skladbo - + MuseScore: Create New Score MuseScore: Ustvari novo skladbo @@ -7783,12 +8283,12 @@ please choose a different name: NewWizardPage1 - + Create New Score Ustvari novo skladbo - + This wizard creates a new score Ta čarovnik ustvari novo skladbo @@ -7796,12 +8296,12 @@ please choose a different name: NewWizardPage2 - + Create New Score Ustvari novo skladbo - + Define a set of instruments. Each instrument is represented by one or more staves Izberite želene inštrumente. Vsak inštrument lahko uporablja enega ali več črtovij @@ -7809,12 +8309,12 @@ please choose a different name: NewWizardPage3 - + Create New Score Ustvari novo skladbo - + Create Time Signature Ustvari taktovski način @@ -7822,22 +8322,22 @@ please choose a different name: NewWizardPage4 - + Create New Score Ustvari novo skladbo - + Select Template File: Izberite datoteko s predlogo: - + MuseScore: Select Template - + MuseScore Template Files (*.mscz *.mscx) @@ -7845,27 +8345,27 @@ please choose a different name: NewWizardPage5 - + Create New Score Ustvari novo skladbo - + Select Key Signature and Tempo: - + Key Signature Predznaki - + Tempo Tempo - + BPM: Udarcev / minuto: @@ -7888,36 +8388,31 @@ please choose a different name: - - OnTime: - Čas zaigranja: + + NoteEvents + - - + + invalid neveljavno - + Dot1 - + Dot2 - + Dot3 - - - OffTime: - Čas odstavljanja: - OmrPanel @@ -8100,27 +8595,27 @@ please choose a different name: PaletteBox - + Palettes Palete - + Palette Operations - + Single Palette Mode - + Reset to factory defaults - + new Palette @@ -8128,42 +8623,42 @@ please choose a different name: PaletteBoxButton - + Palette Properties... - + Insert new Palette... - + Move Palette Up Premakni gor - + Move Palette Down Premakni dol - + Enable Editing Omogoči urejanje - + Save Palette - + Load Palette - + Delete Palette Zbriši paleto @@ -8487,42 +8982,42 @@ please choose a different name: PluginCreator - + File Operations - + Edit Operations - + MuseScore Plugin Editor - - - + + + MuseScore - - - + + + Plugin "%1" has changes save before closing? - + untitled - + Manual @@ -8598,77 +9093,88 @@ save before closing? PreferenceDialog - + Choose Notepaper Izberite notni papir - + Choose Background Wallpaper Izberite ozadje - + Choose Default Style - + Choose Default Style for Parts - - + + Choose Instrument List Izberite seznam inštrumentov - - + + Instrument List (*.xml) Seznam inštrumentov (*.xml) - + Choose Starting Score Izberite začetno skladbo - + MuseScore Files (*.mscz *.mscx *.msc);;All (*) MuseScore datoteke (*.mscz *.mscx *.msc);; Vse (*) - + Choose Scores Directory - + Choose Styles Directory - + Choose Templates Directory - + Choose Plugins Directory - + Choose SoundFonts Directory - + Choose Images Directory + + + + MuseScore Shortcuts + + + + + Print Shortcuts + + PrefsDialogBase @@ -9401,7 +9907,7 @@ save before closing? - + Shortcut Bližnjica @@ -9474,47 +9980,52 @@ save before closing? Izberi ... - + + Print + Natisni + + + Plugins - + Name: Ime: - + Path: - + Version: - + Load Naloži - + Define Shortcut - + Update Posodobitve - + Automatic Update Check Samodejno preverjanje posodobitev - + Check for new versions of MuseScore on startup Ob zagonu preveri, če obstaja novejša verzija MuseScore @@ -9522,7 +10033,7 @@ save before closing? Properties - + small majhno @@ -9558,7 +10069,7 @@ save before closing? QWidget - + MuseScore: Import Capella MuseScore: Capella uvoz @@ -9585,13 +10096,13 @@ save before closing? - - - - + + - - + + + + @@ -9606,55 +10117,55 @@ save before closing? - + MuseScore: Save Album - + MuseScore Files (*.album);; - + Open Album File - + failed: spodletelo: - + MuseScore: Open Album file - + Write Album failed: - + MuseScore: Write Album - + Untitled Neimenovano - + MuseScore: file not found: MuseScore: datoteka ne obstaja: - + MuseScore: load failed: MuseScore: nalaganje spodletelo: @@ -9676,17 +10187,17 @@ spodletelo: Nalaganje spodletelo: - + MuseScore: load Style failed: MuseScore: nalaganje slogov spodletelo: - + MuseScore: Load languages failed: MuseScore: Nalaganje jezikov spodletelo: - + MuseScore: invalid command MuseScore: neveljaven ukaz @@ -9697,7 +10208,7 @@ spodletelo: MuseScore: Nalaganje palete spodletelo: - + MuseScore: Import GuitarPro @@ -9705,7 +10216,7 @@ spodletelo: RecordButton - + record snemanje @@ -9739,7 +10250,7 @@ spodletelo: Več ... - + Staff Črtovje @@ -9762,26 +10273,26 @@ spodletelo: - - - - + + + + Set Invisible Nastavi skrito - - - - + + + + Set Visible Nastavi vidno - + Color... Barva ... @@ -9793,9 +10304,9 @@ spodletelo: - - - + + + Text Properties... Nastavitve besedila ... @@ -9805,150 +10316,150 @@ spodletelo: Artikulacijske lastnosti ... - + Bend Properties... - + TremoloBar Properties... - - + + Add Dodaj - - - + + + Frame Properties... - - - + + + Tuplet Properties... Lastnosti triole ... - + Volta Properties... Lastnosti volta ... - + Line Properties... Lastnosti črte ... - + Time Signature Properties... - + MIDI Properties... MIDI lastnosti ... - + Staff Text Properties... Lastnosti besedila črtovja ... - + Tempo Properties... Lastnosti tempa ... - + Change Instrument Properties... - + Edit Mode Način za urejanje - + Slur Properties... Lastnosti loka ... - - + + Tuplet... Triole ... - - + + Delete Tuplet Zbriši triolo - + Style... - + Chord Articulation... - + Marker Properties... Lastnosti kazalca ... - + Jump Properties... Nastavitve skoka ... - + Section Break Properties... - + Change Instrument... Spremeni inštrument ... - + Fret Diagram Properties... - + Glissando Properties... Lastnosti glissanda ... - + Dynamics Dinamika - + Hairpin Properties... - + Harmony Properties... Harmonske lastnosti ... - - + + Staff Properties... Lastnosti črtovja ... @@ -9965,47 +10476,47 @@ spodletelo: Razdeli črtovje ... - + Measure Takt - + Measure Properties... Lastnosti takta ... - + Please select the complete tuplet and retry the copy operation - + Please select the complete tuplet and retry the cut operation - + No chord/rest selected: please select a chord/rest and try again - + Cannot split measure here: cannot split tuplet - + No measures selected: please select range of measures to join and try again - + No staves found: please use the instruments dialog to first create some staves @@ -10014,7 +10525,7 @@ uporabite okno z inštrumenti in najprej dodajte nekaj črtovij - + No Measure selected: please select a measure and try again Ni izbranega takta: @@ -10296,12 +10807,12 @@ Sekvenčnik bo onemogočen. ShortcutCaptureDialog - + Shortcut conflicts with Bližnjica v konfliktu z - + Undefined Nedoločeno @@ -10356,31 +10867,6 @@ Sekvenčnik bo onemogočen. Form Obrazec - - - Slur - Loki - - - - Slur End - Konec loka - - - - Staff: - Črtovje: - - - - Voice: - Glas: - - - - Tick: - Udarec: - SlurPropertyBase @@ -10486,6 +10972,16 @@ Sekvenčnik bo onemogočen. Form Obrazec + + + CHORD + + + + + NOTE + + SplitStaff @@ -10925,7 +11421,7 @@ altera - + MuseScore Startup Dialog @@ -11541,146 +12037,147 @@ altera vodoravni odmik besedila od referenčne točke - + relX: rel. x: - + reference point offset in percent of parent width odmik od referenčne točke v procentih od širine nadrejenega elementa - - + + % % - + Y: coordinate y: - + vertical offset to reference point navpični odmik od referenčne točke - + relY: rel. y: - + reference point offset in percent of parent height odmik od referenčne točke v procentih od višine nadrejenega elementa - + Unit: Enota: - + offset is absolute absolutni odmik - + MM mm - + offset in Space units odmik v prostorskih enotah - + Space + spatium unit Razmik - + enable text frame vklopi okvir besedila - + Frame Okvir - + draw circled frame izriši okrogel okvir - + Circle Okrogel - + draw boxed frame izriši oglat okvir - + Box Pravokoten - + Width: Debelina: - + frame line width debelina črte okvira - - - mm - mm + + + sp + pe - + Margin: Rob: - + frame inner margin notranji rob okvira - + Round: Zaobljenost: - + corner round zaobljenost vogalov - + Foreground Color: - - + + frame color barva okvira - + Background Color: @@ -11743,67 +12240,72 @@ please choose a different name: podčrtano - + align left Leva poravnava - + align horizontal center - + align right - + align top - + align bottom - + + align vertical baseline + + + + align vertical center - + subscript - + superscript - + unordered list - + ordered list - + indent more - + indent less - + unstyled @@ -11815,16 +12317,6 @@ please choose a different name: MuseScore: Time Signatures MuseScore: Taktovski načini - - - 4/4 common time - 4/4 - - - - 2/2 alla breve - 2/2 alla breve - TimeDialogBase @@ -11874,12 +12366,12 @@ please choose a different name: TimeSig - + Hide Courtesy Time Signature - + Show Courtesy Time Signature @@ -12025,259 +12517,306 @@ p, li { white-space: pre-wrap; } MuseScore: Transpozicija - - Transpose by Key - Transponiraj glede na tonaliteto - - - + Cb major / Ab minor Ces-dur / as-mol - + Gb major / Eb minor Ges-dur / es-mol - + Db major / Bb minor Des-dur / b-mol - + Ab major / F minor As-dur / f-mol - + Eb major / C minor Es-dur / c-mol - + Bb major / G minor B-dur / g-mol - + F major / D minor F-dur / d-mol - + C major / A minor C-dur / a-mol - + G major / E minor G-dur / e-mol - + D major / B minor D-dur / h-mol - + A major / F# minor A-dur / fis-mol - + E major / C# minor E-dur / cis-mol - + B major / G# minor H-dur / gis-mol - + F# major / D# minor Fis-dur / dis-mol - + C# major / A# minor Cis-dur / ais-mol - - + + + Up Gor - - + + + Down Dol - + Closest Najbliže - - Transpose by Interval - Transponiraj za interval - - - + Perfect Unison Čista prima - + Augmented Unison Zvečana prima - + Diminished Second Zmanjšana sekunda - + Minor Second Mala sekunda - + Major Second Velika sekunda - + Augmented Second Zvečana sekunda - + Diminished Third Zmanjšana terca - + Minor Third Mala terca - + Major Third Velika Terca - + Augmented Third Zvečana kvarta - + Diminished Fourth Zmanjšana kvarta - + Perfect Fourth Čista kvarta - + Augmented Fourth Zvečana kvarta - + Diminished Fifth Zmanjšana kvinta - + Perfect Fifth Čista kvinta - + Augmented Fifth Zvečana kvinta - + Diminished Sixth Zmanjšana seksta - + Minor Sixth Mala seksta - + Major Sixth Velika seksta - + Augmented Sixth Zvečana seksta - + Diminished Seventh Zmanjšana septima - + Minor Seventh Mala septima - + Major Seventh Velika septima - + Augmented Seventh Zvečana septima - + Diminished Octave Zmanjšana oktava - + Perfect Octave Čista oktava - + + Transpose Diatonically + + + + + Second + + + + + Third + + + + + Fourth + + + + + Fifth + + + + + Sixth + + + + + Seventh + + + + + Keep degree alterations + + + + Options Možnosti - + Transpose key signatures Tranponiraj predznake - + + Transpose Chromatically + + + + + By Key + + + + + By Interval + + + + Transpose chord names Transponiraj imena akordov - + Single sharps and flats only Uporabi enojne višaje in nižaje - + Use double sharps and flats Uporabi dvojne višaje in nižaje @@ -12568,220 +13107,205 @@ p, li { white-space: pre-wrap; } Prikaži lokalni priročnik - + File open Odpri datoteko - + Load score from file Naloži skladbo iz datoteke - + File save Shrani v datoteko - + Save score to file Shrani skladbo v datoteko - + File save as Shrani datoteko kot - + Save score under a new file name Shrani skladbo v novo datoteko - + File save a copy Shrani kopijo - + Save a Copy... Shrani kopijo ... - + Save a copy of the score in addition to the current file Shrani kopijo skladbe poleg trenutne datoteke - + Save a copy of the score in various formats - - - File reload - Ponovno naloži datoteko - - - - Reload - Ponovno naloži - - Reload score from file - Ponovno naloži skladbo iz datoteke - - - File close Zapri datoteko - + Close current score Zapri trenutno skladbo - + Create new score Ustvari novo skladbo - + Print Natisni - + Print score Natisni skladbo - - + + Undo Razveljavi - + Undo last change Razveljavi zadnjo spremembo - - + + Redo Uveljavi - + Redo last undo Uveljavi zadnjo razveljavitev - + Cut Izreži - + Copy Kopiraj - + Paste Prilepi - + Show instruments dialog Prikaži okno z inštrumenti - + Note input mode Način za vnos not - - + + Note Input Vnos not - + Enter unison above Vnesi primo gor - + Export Parts - + Export Parts... - + Save a copy of the score's parts in various formats - + Unison Above Prima gor - + Enter second above Vnesi sekundo gor - + Second Above Sekunda gor - + Enter third above Vnesi terco gor - + Third Above Terca gor - + Enter fourth above Vnesi kvarto gor - + Fourth Above Kvarta gor - + Enter fifth above Vnesi kvinto gor - + Fifth Above Kvinta gor - + Enter sixth above Vnesi seksto gor - + Sixth Above Seksta gor @@ -12796,1076 +13320,1057 @@ p, li { white-space: pre-wrap; } Septima gor - + Enter octave above Vnesi oktavo gor - + Octave Above Oktava gor - + Enter ninth above Vnesi nono gor - + Ninth Above Nona gor - + Enter second below Vnesi sekundo dol - + Second Below Sekunda dol - + Enter third below Vnesi terco dol - + Third Below Terca dol - + Enter fourth below Vnesi kvarto dol - + Fourth Below Kvarta dol - + Enter fifth below Vnesi kvinto dol - + Fifth Below Kvinta dol - + Enter sixth below Vnesi seksto dol - + Sixth Below Seksta dol - + Enter seventh below Vnesi septimo dol - + Seventh Below Septima dol - + Enter octave below Vnesi oktavo dol - + Octave Below Oktava dol - + Enter ninth below Vnesi nono dol - + Ninth Below Nona dol - + Enter note A Vnesi noto A - + A A - + Enter note B Vnesi noto H - + B H - + Enter note C Vnesi noto C - + C C - + Enter note D Vnesi noto D - + D D - + Enter note E Vnesi noto E - + E E - + Enter note F Vnesi noto F - + F F - + Enter note G Vnesi noto G - + G G - + Add note A to chord Dodaj noto A v akord - + Add A Dodaj A - + Add note B to chord Dodaj noto H v akord - + Add B Dodaj H - + Add note C to chord Dodaj noto C v akord - + Add C Dodaj C - + Add note D to chord Dodaj noto D v akord - + Add D Dodaj D - + Add note E to chord Dodaj noto E v akord - + Add E Dodaj E - + Add note F to chord Dodaj noto F v akord - + Add F Dodaj F - + Add note G to chord Dodaj noto G v akord - + Add G Dodaj G - + Insert note A - + Insert A - + Insert note B - + Insert B - + Insert note C - + Insert C - + Insert note D - + Insert D - + Insert note E - + Insert E - + Insert note F - + Insert F - + Insert note G - + Insert G - + Enter rest Vstavi pavzo - - - + + + Rest Pavza - + Add staccato Dodaj staccato - + Staccato Staccato - + Add tenuto - + Tenuto - + Add trill Dodaj trilček - + Trill Trilček - + Add marcato - + Marcato - + Add more stretch to selected measure Dodaj več prostora po širini za izbran takt - + Less stretch Zoži - + Add less stretch to selected measure Zmanjšaj prostor po širini za izbran takt - - + + Reset Beam Mode Privzet način prečke - + Reset beam mode of selected measures Ponastavi način prečke za izbrane takte - + Flip direction Obrni smer - + Pitch up Višina gor - + Up Gor - + Pitch up octave Višina gor za oktavo - + Up Octave Gor oktavo - + Pitch up by an octave Povišaj za oktavo - + Select Section - + Note duration: double whole - - + + Double whole note - - + + Whole note - - + + Half note - - + + Quarter note - - + + 8th note - - + + 16th note - - + + 32nd note - - + + 64th note - + Note duration: 128th - - + + 128th note - + Add system text - + Add staff text - + Add title text - + Add subtitle text - + Add composer text - + Add lyricist text - + Lyricist - + Add chord name - + Show harmony properties for chord - + Add rehearsal mark - - Player seek to begin - - - - - Player seek to end - - - - + Pan score while playing on/off - + Pan Pan - + &Transpose... - + Violin Clef - + Bass Clef - + Display in concert pitch - + next syllable - + previous syllable - + toggle visibility - + set visible - + set unvisible - + Toggle Section Break - + Show Unprintable - + Show Page Margins - + Manage parts - + Show inspector - + Reset measure stretch - + Reset user settings - + Note entry: whole rest - + Whole rest - + Note entry: half rest - + Half rest - + Note entry: quarter rest - + Quarter rest - + Note entry: 8th rest - + 8th rest - + Tempo Marking... - + Tempo Marking - + Text Besedilo - + Add Frame Text - + Load Style... - + Save Style... - - Save Style As Default... - - - - + Select All - + Concert Pitch Koncertna intonacija - + Info... - + Reset - + Debugger - + Reset Stretch - + Insert Special Characters - + Backspace - + Find - + Mirror note head - + General... - + Edit general style - + Text... - + Chords... - + Double duration - + Half duration - + Follow song - + Display documents side by side - + Display documents stacked - + Show OMR image - + Enharmonic up - + Parts... - + Enharmonic down - + Create new revision - + Toggle foto mode - + Enable horizontal raster - + Enable vertical raster - + Configure raster - + Re-Pitch Mode - + Replace pitches without changing rhythms - + Stack down - + Piano Keyboard - + Additional Media... - + Show media dialog - + Split Measure - + Join Measure - + Page Settings... - + Page Settings - + Album... - + Album - + Up Note in Chord Povišaj noto v akordu - + Go to higher pitched note in chord Pojdi na višjo noto v akordu - + Go to top note in chord Pojdi na zgornjo noto v akordu - + Top Note in Chord Najvišja nota v akordu - + Move up Premakni gor - + Pitch down Višina dol - + Down Dol - + Pitch down octave Višina dol za oktavo - + Down octave Dol oktavo - + Pitch down by an octave Znižaj za oktavo - + Down Note in Chord Znižaj noto v akordu - - + + Go to lower pitched note in chord Pojdi na nižjo noto v akordu - + File new - + Diatonic pitch down - + Diatonic down - + Go to bottom note in chord Pojdi na najnižjo noto v akordu - + Bottom Note in Chord Najnižja nota v akordu - - + + Move down Premakni dol - - + Previous chord Prejšnji akord - - + Previous measure Prejšnji takt - - + Next chord Naslednji akord - - + Next measure Naslednji takt - - + + Delete Odstrani - + Delete contents of the selected measures Zbriši vsebino izbranih taktov - + Timewise Delete Časovno brisanje - + Delete element and duration Zbriši element in trajanje - + Delete Selected Measures Zbriši izbrane takte - + Append measures Dodaj takte - + Append Measures... Dodaj takte ... - + Insert measures Vstavi takte - + Insert Measures... Vstavi takte ... @@ -13875,971 +14380,1137 @@ p, li { white-space: pre-wrap; } - + Open... - + Save Shrani - + Save As... - + Export... - + Close Zapri - + New... - + Print... - + Instruments... - - + + Add More Stretch - + Add Less Stretch - - + + Slur + Loki + + + + Add Slur + + + + + Add Crescendo + + + + Insert Horizontal Frame Vstavi vodoravni okvir - - + Insert Vertical Frame Vstavi navpični okvir - + Append Horizontal Frame Dodaj vodoravni okvir - + Append Vertical Frame Dodaj navpični okvir - + Duplet Duola - + Triplet Triola - + Quadruplet Kvadrola - + Quintuplet Kvintola - + Sextuplet Sekstola - + Septuplet - + Octuplet - + Nonuplet - + Other... Drugo ... - - + + Longa Longa - - + + Flat Nižaj - - + + + + Grace: 8th after + + + + + Enable sound while editing Zvok med urejanjem - + Palette Paleta - + Play Panel Predvajalna plošča - + Navigator Navigator - + Mixer Mešalnik - + Transport Predvajanje - + Status Bar Vrstica stanja - + Quit Izhod - + Lyrics Besedilo - + + String above (TAB) + + + + + Select string above (TAB only) + + + + + String below (TAB) + + + + + Select string below (TAB only) + + + + + Fret 0 (TAB) + + + + + Add fret 0 on current string (TAB only) + + + + + Fret 1 (TAB) + + + + + Add fret 1 on current string (TAB only) + + + + + Fret 2 (TAB) + + + + + Add fret 2 on current string (TAB only) + + + + + Fret 3 (TAB) + + + + + Add fret 3 on current string (TAB only) + + + + + Fret 4 (TAB) + + + + + Add fret 4 of current string (TAB only) + + + + + Fret 5 (TAB) + + + + + Add fret 5 of current string (TAB only) + + + + + Fret 6 (TAB) + + + + + Add fret 6 of current string (TAB only) + + + + + Fret 7 (TAB) + + + + + Add fret 7 of current string (TAB only) + + + + + Fret 8 (TAB) + + + + + Add fret 8 of current string (TAB only) + + + + + Fret 9 (TAB) + + + + + Add fret 9 of current string (TAB only) + + + + + Staff Types... + + + + + Staff type editor + + + + + Show staff type editor + + + + + Note anchored Textline + + + + Save Selection - + Save Selection... - + Save current selection as new score - + Export score - + Respell pitches - + Diatonic pitch up - + Diatonic up - + Add previous chord to selection - + Select to beginning of measure - + Add next chord to selection - + Move chord/rest right - + Move chord/rest left - + Select to end of measure - + Select to beginning of line - + Select to end of line - + Select to beginning of score - + Select to end of score - + Add staff above to selection - + Add staff below to selection - + Page: previous - + Page: next - + Page: top - + Page: end - - Add slur - - - - + Crescendo Crescendo - + Decrescendo - + Escape - + Timewise delete - + Append One Measure - + Insert One Measure - - + Insert Text Frame - + Append Text Frame - - + Insert Fret Diagram Frame - + Other tuplets - + Note duration: longa - + Note duration: whole - + Note duration: half - + Note duration: quarter - + Note duration: 8th - + Note duration: 16th - + Note duration: 32nd - + Note duration: 64th - + Note duration: augmentation dot - - + + Augmentation dot - + Note duration: double augmentation dot - - + + Double augmentation dot - + Note duration: tie - - + + Tie Vezaj - + Note entry: rest - + Note entry: double sharp - - + + Double sharp - + Note entry: sharp - - + + Sharp - + Note entry: natural - - + + Natural - + Note entry: flat - + Note entry: double flat - - + + Double flat - - - + + + Acciaccatura Acciaccatura - - - + + + Appoggiatura Appoggiatura - - - + + + Grace: quarter - - - + + + Grace: 16th - - - + + + Grace: 32nd - - - - Grace: 8nd after - - - - - - + + + Voice 1 Glas 1 - - - + + + Voice 2 Glas 2 - - - + + + Voice 3 Glas 3 - - - + + + Voice 4 Glas 4 - + MIDI input - - + + Enable MIDI input - + Editing sound on - + Beam start - + Beam middle - + No beam Brez prečke - + Beam 32nd sub - + Beam 64th sub - + Auto beam Samodejna prečka - + Feathered beam, slower - + Feathered beam, faster - + Transport toolbar - + Note input toolbar - + Zoom canvas - + + Play Previous Chord + + + + + Play Previous Measure + + + + + Play Next Chord + + + + + Play Next Measure + + + + + Player Seek to Begin + + + + + Player Seek to End + + + + + Save Style as Default... + + + + Full Screen - + Layers... - + MuseScore Connect - + Plugin Creator - + Inspector Struktura dokumenta - + Show OMR Panel - + OmrPanel - + toggle metronome - + Figured Bass - + Next Score - + Previous Score - + Transpose Up - + Transpose Down - + Show master palette - + Master Palette... - - Insert Measure - - - - + Toggle View Mode - + Metronome Metronom - + System Text Napis nad sistemom - + Staff Text Napis nad črtovje - + Title Naslov - + Subtitle Podnaslov - + Composer Skladatelj - + Chord Name Ime akorda - + Harmony Properties Harmonske lastnosti - + Rehearsal Mark Oznake za vajo - + Add picture - + Picture - + Player play Predvajalnik predvajaj - + Play Predvajaj - + Start or stop playback Začni ali ustavi predvajanje - + Player rewind Predvajalnik prevrti - + Rewind Prevrti - + Rewind to start position Prevrti na začetek - + Play repeats on/off Ponavljaj med predvajanjem vklj./izklj. - + Repeat Ponavljaj - + Load style Naloži slog - + Save style Shrani slog - + Transpose Transpozicija - + Exchange Voice 1-2 Zamenjaj glasova 1-2 - + Exchange Voice 1-3 Zamenjaj glasova 1-3 - + Exchange Voice 1-4 Zamenjaj glasova 1-4 - + Exchange Voice 2-3 Zamenjaj glasova 2-3 - + Exchange Voice 2-4 Zamenjaj glasova 2-4 - + Exchange Voice 3-4 Zamenjaj glasova 3-4 - + Repeat last command Ponovi zadnji ukaz - + Edit score info - + Toggle System Break Preklapljaj prelom sistema - + Toggle Page Break Preklapljaj prelom strani - + Edit Element Urejanje elementa - + Show Invisible Prikaži nevidne - + Show Frames Prikaži okvire - + Insert Special Characters... - + Zoom In Povečaj - + Zoom Out Pomanjšaj - + Edit text style - + Edit chord style - + Select all similar elements Izberi vse podobne elemente - + All Similar Elements Vsi podobni elementi - + Select all similar elements in same staff Izberi vse podobne elemente v istem črtovju - + All Similar Elements in Same Staff Vsi podobni elementi v istem črtovju - + Synthesizer Sintetizator - + Repeat selection Ponavljaj izbor - + Documents Side by Side Skladbe druga ob drugi - + Documents Stacked Skladbe v sklad - + Layers - - - next score - - - - - previous score - - articulation - + Bend - + Tremolo Bar @@ -14855,45 +15526,45 @@ p, li { white-space: pre-wrap; } file - - + + error at line %1 column %2: %3 - + internal error: could not open resource musicxml.xsd - + internal error: MusicXML schema is invalid - + error reading container.xml at line %1 column %2: %3 - + can't find rootfile - - + + this is not a valid MusicXML file - + could not open MusicXML file @@ -14910,100 +15581,105 @@ p, li { white-space: pre-wrap; } lines - + Lines Črte - + Slur Loki - + Crescendo Crescendo - + Diminuendo Diminuendo - + Prima volta 1. volta - + Seconda volta 2. volta - + Terza volta 3. volta - + Seconda volta 2 2. volta 2 - + 8va 8va - + 15ma 15ma - + 8vb 8bassa - + 15mb 15bassa - - - - + + + + Pedal Pedal - + Trill line Trilček - + Upprall line - + Downprall line - + Prallprall line - + + Wavy line + + + + Text line Napis - + Line Črta diff --git a/share/locale/mscore_sr.ts b/share/locale/mscore_sr.ts index 03c3d5a2cb4a6..91abcde633e74 100644 --- a/share/locale/mscore_sr.ts +++ b/share/locale/mscore_sr.ts @@ -3,6 +3,14 @@ AboutBox + + About MuseScore + + + + Copy revision number + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -12,17 +20,9 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Support MuseScore with </span><a href="http://www.musescore.org/en/donate"><span style=" font-size:10pt; text-decoration: underline; color:#0000ff;">your donation</span></a></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Arial'; font-size:10pt;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Copyright </span><span style=" font-size:10pt;">©</span><span style=" font-family:'Arial'; font-size:10pt;"> 1999-2009 Werner Schweer and Others. </span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Copyright </span><span style=" font-size:10pt;">©</span><span style=" font-family:'Arial'; font-size:10pt;"> 1999-2012 Werner Schweer and Others. </span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Published under the GNU General Public License</span></p></body></html> - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Visit </span><a href="http://www.musescore.org/"><span style=" font-size:10pt; text-decoration: underline; color:#0000ff;">www.musescore.org</span></a><span style=" font-family:'Arial'; font-size:10pt;"> for new versions and more information.</span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Support MuseScore with </span><a href="http://www.musescore.org/en/donate"><span style=" font-size:10pt; text-decoration: underline; color:#0000ff;">your donation</span></a></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Arial'; font-size:10pt;"></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Copyright </span><span style=" font-size:10pt;">©</span><span style=" font-family:'Arial'; font-size:10pt;"> 1999-2009 Werner Schweer and Others. </span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Published under the GNU General Public License</span></p></body></html> - - - About MuseScore - - - - Copy revision number - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Visit </span><a href="http://www.musescore.org/"><span style=" font-size:10pt; text-decoration: underline; color:#0000ff;">www.musescore.org</span></a><span style=" font-family:'Arial'; font-size:10pt;"> for new versions and more information.</span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Support MuseScore with </span><a href="http://www.musescore.org/en/donate"><span style=" font-size:10pt; text-decoration: underline; color:#0000ff;">your donation</span></a></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Arial'; font-size:10pt;"></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Copyright </span><span style=" font-size:10pt;">©</span><span style=" font-family:'Arial'; font-size:10pt;"> 1999-2009 Werner Schweer and Others. </span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Published under the GNU General Public License</span></p></body></html> {3C?} {4.0/?} {3.?} {40/?} {1"?} {2'?} {8.25p?} {400;?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {10p?} {10p?} {0000f?} {10p?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {10p?} {10p?} {0000f?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {10p?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {10p?} {10p?} {10p?} {1999-2012 ?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {10p?} @@ -46,17 +46,6 @@ p, li { white-space: pre-wrap; } About MusicXML - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; font-size:10pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">MusicXML is an open file format for exchanging digital sheet music,</p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">supported by many applications. MusicXML is copyright © MakeMusic, Inc.</p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">All rights reserved. For more information see: <a href="http://www.makemusic.com/xml.html"><span style=" text-decoration: underline; color:#0000ff;">MakeMusic</span></a></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; text-decoration: underline; color:#0000ff;"></p></body></html> - - The MusicXML Public License: @@ -104,6 +93,17 @@ p, li { white-space: pre-wrap; } <p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p></body></html> + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans Serif'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">MusicXML is an open file format for exchanging digital sheet music,</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">supported by many applications. MusicXML is copyright © MakeMusic, Inc.</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">All rights reserved. For more information, see: <a href="http://www.makemusic.com/musicxml"><span style=" text-decoration: underline; color:#0000ff;">MakeMusic</span></a></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; text-decoration: underline; color:#0000ff;"></p></body></html> + + Accidental @@ -122,30 +122,14 @@ p, li { white-space: pre-wrap; } Album Name: - - album name - - - - remove current score - - Remove Score - - move current score down in list - - Down Down - - move current score up in list - - Up Up @@ -154,18 +138,10 @@ p, li { white-space: pre-wrap; } Add Score - - create new album - - New New - - load an existing album - - Print Album @@ -198,6 +174,30 @@ p, li { white-space: pre-wrap; } MuseScore: Load Album + + Album Name + + + + Remove Current Score + + + + Move Current Score Down in List + + + + Move Current Score Up in List + + + + Create New Album + + + + Load an Existing Album + + ArticulationBase @@ -287,6 +287,14 @@ p, li { white-space: pre-wrap; } BarLine Bar Line + + spanFrom: + + + + spanTo: + + BeamBase @@ -342,6 +350,37 @@ p, li { white-space: pre-wrap; } + + BoxBase + + Form + Form + + + bottomMargin: + + + + topGap: + + + + bottomGap: + + + + leftMargin: + + + + topMargin: + + + + rightMargin: + + + BoxPropertiesBase @@ -1403,6 +1442,22 @@ failed: No. + + 1 + 1 + + + 2 + 2 + + + 3 + 3 + + + 4 + 4 + EditInstrumentBase @@ -2021,6 +2076,10 @@ failed: B -1 + + A 7 + + EditRaster @@ -2049,6 +2108,17 @@ failed: + + EditStaff + + Edit Short Name + + + + Edit Long Name + + + EditStaffBase @@ -2119,10 +2189,6 @@ failed: Type: Type: - - Edit... - - ... @@ -2306,16 +2372,6 @@ failed: Select: - - Guitar (modern) - tablatture type - - - - Bass (modern) - tablature type - - Italian (historic) tablature type @@ -2326,10 +2382,6 @@ failed: tablature type - - Set - - Show Clef @@ -2454,6 +2506,68 @@ failed: Preview Preview + + 6 strings (generic guitar) + tablatture type + + + + 4 strings (generic bass) + tablature type + + + + ukulele + + + + bandurria + + + + Custom + + + + Stem position: + + + + Above + Above + + + Below + + + + Stem style: + + + + Beside staff + + + + Through staff + + + + Half notes: + + + + As short stem + + + + As slashed stem + + + + Show Rests + + EditStringDataBase @@ -2504,6 +2618,14 @@ failed: Chord Chord + + Edit Plain Text + + + + Edit HTML Text + + EditStyleBase @@ -2577,6 +2699,10 @@ spatium unit ---------- spatium unit ---------- +spatium unit +---------- +spatium unit +---------- spatium unit sp @@ -3177,6 +3303,18 @@ p, li { white-space: pre-wrap; } Clef/Key right margin + + Pedal, Trill + + + + Pedal Line + + + + Trill Line + + EditTempoBase @@ -3457,6 +3595,65 @@ spatium unit + + InspectorBarLine + + Staff default + + + + Tick + + + + Tick alt. + + + + Short + + + + Short alt. + + + + Type: + Type: + + + Measure default + + + + Normal + Normal + + + Dashed + Dashed + + + Dotted + + + + Double + + + + End + End + + + Span: + + + + Custom + + + InspectorBeam @@ -3676,6 +3873,57 @@ spatium unit + + InspectorHairpin + + Form + Form + + + Hairpin + Hairpin + + + crescendo + + + + decrescendo + + + + Subtype: + + + + Dynamic Range: + + + + Velo. change: + + + + Staff + Stave + + + Part + + + + SYstem + + + + reset value + + + + ... + + + InspectorImage @@ -3928,6 +4176,37 @@ spatium unit + + InspectorOttava + + Form + Form + + + Ottava + Ottava + + + Subtype: + + + + 8va + 8va + + + 15ma + 15ma + + + 8vb + 8vb + + + 15mb + 15mb + + InspectorRest @@ -3996,6 +4275,41 @@ spatium unit + + InspectorTrill + + Form + Form + + + Trill + + + + Subtype: + + + + trill line + + + + up prall + + + + down prall + + + + prall prall + + + + wavy line + + + InspectorVBox @@ -4054,6 +4368,29 @@ spatium unit + + InspectorVolta + + Form + Form + + + Volta + Time Bar + + + Subtype: + + + + Open + + + + Closed + + + InstrumentDialogBase @@ -4108,24 +4445,24 @@ spatium unit Staves Staves - - visible - visible - Clef Clef - linked + Add Linked Staff - staff linked to previous + Visible + Visible + + + Linked - Add Linked Staff + Staff Linked to Previous @@ -4955,6 +5292,34 @@ Would you like to locate %2 now? -> + + 1 + 1 + + + 2 + 2 + + + 4 + 4 + + + 8 + 8 + + + 16 + 16 + + + 32 + 32 + + + 64 + 64 + MeasuresDialogBase @@ -5194,10 +5559,6 @@ Would you like to locate %2 now? &About &About - - note entry mode - note entry mode - edit mode edit mode @@ -5662,10 +6023,6 @@ Restore session? please choose a different name: - - Cannot read file: %1 error: %2 - - Overture / Score Writer Files <experimental> (*.ove *.scw);; @@ -5955,43 +6312,87 @@ please choose a different name: - Parts were successfully exported + Parts were successfully exported + + + + Continuous View + + + + About &MusicXML + + + + Report a bug + + + + MuseScore: Load Plugin + + + + MuseScore Plugin (*.qml);;All Files (*) + + + + MuseScore: Save Plugin + + + + MuseScore Plugin File (*.qml) + + + + &Plugins + + + + Find + + + + Dotted + + + + Tick 1 - Continuous View + Tick 2 - About &MusicXML + Short 1 - Report a bug + Short 2 - MuseScore: Load Plugin + plop - MuseScore Plugin (*.qml);;All Files (*) + scoop - MuseScore: Save Plugin + NOTE entry mode - MuseScore Plugin File (*.qml) + DRUM entry mode - &Plugins + TAB entry mode - Find + you cannot create an element @@ -6142,14 +6543,6 @@ please choose a different name: note head group note head group - - OnTime: - - - - OffTime: - - invalid invalid @@ -6166,6 +6559,10 @@ please choose a different name: Dot3 + + NoteEvents + + OmrPanel @@ -6758,6 +7155,14 @@ save before closing? Choose Images Directory + + MuseScore Shortcuts + + + + Print Shortcuts + + PrefsDialogBase @@ -7393,6 +7798,10 @@ save before closing? Define Shortcut + + Print + + Properties @@ -8036,26 +8445,6 @@ Sequencer will be disabled. Form Form - - Slur - Slur - - - Slur End - Slur End - - - Staff: - Stave: - - - Voice: - Voice: - - - Tick: - Tick: - SlurPropertyBase @@ -8142,6 +8531,14 @@ Sequencer will be disabled. Form Form + + CHORD + + + + NOTE + + SplitStaff @@ -9008,6 +9405,7 @@ altera Space + spatium unit Space @@ -9042,10 +9440,6 @@ altera frame line width frame line width - - mm - mm - Margin: Margin: @@ -9078,6 +9472,10 @@ altera Background Color: + + sp + sp + TextStyleDialog @@ -9177,6 +9575,10 @@ please choose a different name: unstyled + + align vertical baseline + + TimeDialog @@ -9184,14 +9586,6 @@ please choose a different name: MuseScore: Time Signatures MuseScore: Time Signatures - - 4/4 common time - 4/4 common time - - - 2/2 alla breve - 2/2 alla breve - TimeDialogBase @@ -9353,10 +9747,6 @@ p, li { white-space: pre-wrap; } MuseScore: Transpose MuseScore: Transpose - - Transpose by Key - Transpose by Key - Cb major / Ab minor Cb major / Ab minor @@ -9429,10 +9819,6 @@ p, li { white-space: pre-wrap; } Closest Closest - - Transpose by Interval - Transpose by Interval - Perfect Unison Perfect Unison @@ -9549,6 +9935,50 @@ p, li { white-space: pre-wrap; } Use double sharps and flats + + Transpose Chromatically + + + + By Key + + + + By Interval + + + + Transpose Diatonically + + + + Second + + + + Third + + + + Fourth + + + + Fifth + + + + Sixth + + + + Seventh + + + + Keep degree alterations + + TremoloBarDialog @@ -9777,10 +10207,6 @@ p, li { white-space: pre-wrap; } Save a Copy... - - Reload - - Create new score @@ -10321,14 +10747,6 @@ p, li { white-space: pre-wrap; } Save a copy of the score in addition to the current file - - File reload - - - - Reload score from file - - File close @@ -10721,10 +11139,6 @@ p, li { white-space: pre-wrap; } Page: end - - Add slur - - Crescendo Crescendo @@ -11001,14 +11415,6 @@ p, li { white-space: pre-wrap; } Picture - - Player seek to begin - - - - Player seek to end - - &Transpose... @@ -11193,14 +11599,6 @@ p, li { white-space: pre-wrap; } Diatonic up - - next score - - - - previous score - - Reset user settings @@ -11229,10 +11627,6 @@ p, li { white-space: pre-wrap; } Respell pitches - - Grace: 8nd after - - Pan score while playing on/off @@ -11297,10 +11691,6 @@ p, li { white-space: pre-wrap; } Master Palette... - - Insert Measure - - Toggle View Mode @@ -11469,10 +11859,6 @@ p, li { white-space: pre-wrap; } Save Style... - - Save Style As Default... - - Select All @@ -11545,6 +11931,162 @@ p, li { white-space: pre-wrap; } Plugin Creator + + Slur + Slur + + + Add Slur + + + + Add Crescendo + + + + Grace: 8th after + + + + Play Previous Chord + + + + Play Previous Measure + + + + Play Next Chord + + + + Play Next Measure + + + + Player Seek to Begin + + + + Player Seek to End + + + + Save Style as Default... + + + + String above (TAB) + + + + Select string above (TAB only) + + + + String below (TAB) + + + + Select string below (TAB only) + + + + Fret 0 (TAB) + + + + Add fret 0 on current string (TAB only) + + + + Fret 1 (TAB) + + + + Add fret 1 on current string (TAB only) + + + + Fret 2 (TAB) + + + + Add fret 2 on current string (TAB only) + + + + Fret 3 (TAB) + + + + Add fret 3 on current string (TAB only) + + + + Fret 4 (TAB) + + + + Add fret 4 of current string (TAB only) + + + + Fret 5 (TAB) + + + + Add fret 5 of current string (TAB only) + + + + Fret 6 (TAB) + + + + Add fret 6 of current string (TAB only) + + + + Fret 7 (TAB) + + + + Add fret 7 of current string (TAB only) + + + + Fret 8 (TAB) + + + + Add fret 8 of current string (TAB only) + + + + Fret 9 (TAB) + + + + Add fret 9 of current string (TAB only) + + + + Staff Types... + + + + Staff type editor + + + + Show staff type editor + + + + Note anchored Textline + + articulation @@ -11687,6 +12229,10 @@ p, li { white-space: pre-wrap; } Line Line + + Wavy line + + magTable diff --git a/share/locale/mscore_sv.ts b/share/locale/mscore_sv.ts index 8bd190d0da9bd..a1d792790bfad 100644 --- a/share/locale/mscore_sv.ts +++ b/share/locale/mscore_sv.ts @@ -3,6 +3,14 @@ AboutBox + + About MuseScore + + + + Copy revision number + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -12,9 +20,9 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Support MuseScore with </span><a href="http://www.musescore.org/en/donate"><span style=" font-size:10pt; text-decoration: underline; color:#0000ff;">your donation</span></a></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Arial'; font-size:10pt;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Copyright </span><span style=" font-size:10pt;">©</span><span style=" font-family:'Arial'; font-size:10pt;"> 1999-2009 Werner Schweer and Others. </span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Copyright </span><span style=" font-size:10pt;">©</span><span style=" font-family:'Arial'; font-size:10pt;"> 1999-2012 Werner Schweer and Others. </span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Published under the GNU General Public License</span></p></body></html> - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> @@ -23,15 +31,7 @@ p, li { white-space: pre-wrap; } <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Arial'; font-size:10pt;"></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Copyright </span><span style=" font-size:10pt;">©</span><span style=" font-family:'Arial'; font-size:10pt;"> 1999-2009 Werner Schweer med flera. </span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Publicerad under GNU General Public License</span></p></body></html> - - - About MuseScore - - - - Copy revision number - +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Publicerad under GNU General Public License</span></p></body></html> {3C?} {4.0/?} {3.?} {40/?} {1"?} {2'?} {8.25p?} {400;?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {10p?} {10p?} {0000f?} {10p?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {10p?} {10p?} {0000f?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {10p?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {10p?} {10p?} {10p?} {1999-2012 ?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {10p?} @@ -55,17 +55,6 @@ p, li { white-space: pre-wrap; } About MusicXML - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; font-size:10pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">MusicXML is an open file format for exchanging digital sheet music,</p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">supported by many applications. MusicXML is copyright © MakeMusic, Inc.</p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">All rights reserved. For more information see: <a href="http://www.makemusic.com/xml.html"><span style=" text-decoration: underline; color:#0000ff;">MakeMusic</span></a></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; text-decoration: underline; color:#0000ff;"></p></body></html> - - The MusicXML Public License: @@ -113,6 +102,17 @@ p, li { white-space: pre-wrap; } <p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p></body></html> + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans Serif'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">MusicXML is an open file format for exchanging digital sheet music,</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">supported by many applications. MusicXML is copyright © MakeMusic, Inc.</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">All rights reserved. For more information, see: <a href="http://www.makemusic.com/musicxml"><span style=" text-decoration: underline; color:#0000ff;">MakeMusic</span></a></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; text-decoration: underline; color:#0000ff;"></p></body></html> + + Accidental @@ -131,30 +131,14 @@ p, li { white-space: pre-wrap; } Album Name: - - album name - - - - remove current score - - Remove Score - - move current score down in list - - Down Ner - - move current score up in list - - Up Upp @@ -163,18 +147,10 @@ p, li { white-space: pre-wrap; } Add Score - - create new album - - New Ny - - load an existing album - - Print Album @@ -207,6 +183,30 @@ p, li { white-space: pre-wrap; } MuseScore: Load Album + + Album Name + + + + Remove Current Score + + + + Move Current Score Down in List + + + + Move Current Score Up in List + + + + Create New Album + + + + Load an Existing Album + + ArticulationBase @@ -296,6 +296,14 @@ p, li { white-space: pre-wrap; } BarLine Taktstreck + + spanFrom: + + + + spanTo: + + BeamBase @@ -351,6 +359,37 @@ p, li { white-space: pre-wrap; } + + BoxBase + + Form + Form + + + bottomMargin: + + + + topGap: + + + + bottomGap: + + + + leftMargin: + + + + topMargin: + + + + rightMargin: + + + BoxPropertiesBase @@ -1412,6 +1451,22 @@ misslyckades: No. + + 1 + 1 + + + 2 + 2 + + + 3 + 3 + + + 4 + 4 + EditInstrumentBase @@ -2030,6 +2085,10 @@ misslyckades: B -1 + + A 7 + + EditRaster @@ -2058,6 +2117,17 @@ misslyckades: + + EditStaff + + Edit Short Name + + + + Edit Long Name + + + EditStaffBase @@ -2128,10 +2198,6 @@ misslyckades: Type: Typ: - - Edit... - - ... ... @@ -2315,16 +2381,6 @@ misslyckades: Select: - - Guitar (modern) - tablatture type - - - - Bass (modern) - tablature type - - Italian (historic) tablature type @@ -2335,10 +2391,6 @@ misslyckades: tablature type - - Set - - Show Clef @@ -2463,6 +2515,68 @@ misslyckades: Preview Förhandsvisning + + 6 strings (generic guitar) + tablatture type + + + + 4 strings (generic bass) + tablature type + + + + ukulele + + + + bandurria + + + + Custom + + + + Stem position: + + + + Above + Över + + + Below + + + + Stem style: + + + + Beside staff + + + + Through staff + + + + Half notes: + + + + As short stem + + + + As slashed stem + + + + Show Rests + + EditStringDataBase @@ -2513,6 +2627,14 @@ misslyckades: Chord Ackord + + Edit Plain Text + + + + Edit HTML Text + + EditStyleBase @@ -2602,6 +2724,10 @@ spatium unit ---------- spatium unit ---------- +spatium unit +---------- +spatium unit +---------- spatium unit mellanrum @@ -3186,6 +3312,18 @@ p, li { white-space: pre-wrap; } Clef/Key right margin + + Pedal, Trill + + + + Pedal Line + + + + Trill Line + + EditTempoBase @@ -3466,6 +3604,65 @@ spatium unit + + InspectorBarLine + + Staff default + + + + Tick + + + + Tick alt. + + + + Short + + + + Short alt. + + + + Type: + Typ: + + + Measure default + + + + Normal + Normal + + + Dashed + Prickad + + + Dotted + + + + Double + + + + End + + + + Span: + + + + Custom + + + InspectorBeam @@ -3685,6 +3882,57 @@ spatium unit ... + + InspectorHairpin + + Form + Form + + + Hairpin + Dynamikklyka + + + crescendo + + + + decrescendo + + + + Subtype: + + + + Dynamic Range: + + + + Velo. change: + + + + Staff + + + + Part + + + + SYstem + + + + reset value + + + + ... + ... + + InspectorImage @@ -3937,6 +4185,37 @@ spatium unit + + InspectorOttava + + Form + Form + + + Ottava + Ottava + + + Subtype: + + + + 8va + 8va + + + 15ma + 15ma + + + 8vb + 8vb + + + 15mb + 15mb + + InspectorRest @@ -4005,6 +4284,41 @@ spatium unit + + InspectorTrill + + Form + Form + + + Trill + Drill + + + Subtype: + + + + trill line + + + + up prall + + + + down prall + + + + prall prall + + + + wavy line + + + InspectorVBox @@ -4063,6 +4377,29 @@ spatium unit + + InspectorVolta + + Form + Form + + + Volta + Volta + + + Subtype: + + + + Open + + + + Closed + + + InstrumentDialogBase @@ -4117,24 +4454,24 @@ spatium unit Staves - - visible - synlig - Clef Klav - linked + Add Linked Staff - staff linked to previous + Visible + Synlig + + + Linked - Add Linked Staff + Staff Linked to Previous @@ -4964,6 +5301,34 @@ Would you like to locate %2 now? -> + + 1 + 1 + + + 2 + 2 + + + 4 + 4 + + + 8 + 8 + + + 16 + 16 + + + 32 + 32 + + + 64 + 64 + MeasuresDialogBase @@ -5245,10 +5610,6 @@ före stängning? no score inget dokument - - note entry mode - notinmatningsläge - edit mode redigeringsläge @@ -5670,10 +6031,6 @@ Restore session? please choose a different name: - - Cannot read file: %1 error: %2 - - Overture / Score Writer Files <experimental> (*.ove *.scw);; @@ -5955,51 +6312,95 @@ please choose a different name: - LilyPond Format (*.ly) + LilyPond Format (*.ly) + + + + MuseScore: Export Parts + + + + Parts were successfully exported + + + + Continuous View + + + + About &MusicXML + + + + Report a bug + + + + MuseScore: Load Plugin + + + + MuseScore Plugin (*.qml);;All Files (*) + + + + MuseScore: Save Plugin + + + + MuseScore Plugin File (*.qml) + + + + &Plugins + + + + Find - MuseScore: Export Parts + Dotted - Parts were successfully exported + Tick 1 - Continuous View + Tick 2 - About &MusicXML + Short 1 - Report a bug + Short 2 - MuseScore: Load Plugin + plop - MuseScore Plugin (*.qml);;All Files (*) + scoop - MuseScore: Save Plugin + NOTE entry mode - MuseScore Plugin File (*.qml) + DRUM entry mode - &Plugins + TAB entry mode - Find + you cannot create an element @@ -6150,14 +6551,6 @@ please choose a different name: note head group nothuvudgrupp - - OnTime: - OnTime: - - - OffTime: - OffTime: - invalid ogiltig @@ -6174,6 +6567,10 @@ please choose a different name: Dot3 + + NoteEvents + + OmrPanel @@ -6766,6 +7163,14 @@ save before closing? Choose Images Directory + + MuseScore Shortcuts + + + + Print Shortcuts + + PrefsDialogBase @@ -7401,6 +7806,10 @@ save before closing? Define Shortcut + + Print + Skriv ut + Properties @@ -8047,26 +8456,6 @@ Sequencer will be disabled. Form Form - - Slur - Båge - - - Slur End - Legatobågsände - - - Staff: - System: - - - Voice: - Stämma: - - - Tick: - Tick: - SlurPropertyBase @@ -8153,6 +8542,14 @@ Sequencer will be disabled. Form Form + + CHORD + + + + NOTE + + SplitStaff @@ -9019,6 +9416,7 @@ altera Space + spatium unit Mellanrum @@ -9053,10 +9451,6 @@ altera frame line width ramlinjebredd - - mm - mm - Margin: Marginal: @@ -9089,6 +9483,10 @@ altera Background Color: + + sp + + TextStyleDialog @@ -9188,6 +9586,10 @@ please choose a different name: unstyled + + align vertical baseline + + TimeDialog @@ -9195,14 +9597,6 @@ please choose a different name: MuseScore: Time Signatures MuseScore: Taktartssignaturer - - 4/4 common time - fyrafjärdedelstakt - - - 2/2 alla breve - 2/2 alla breve - TimeDialogBase @@ -9364,10 +9758,6 @@ p, li { white-space: pre-wrap; } MuseScore: Transpose MuseScore: Transponering - - Transpose by Key - Transponera till tonart - Cb major / Ab minor Cb-dur / Ab-moll @@ -9440,10 +9830,6 @@ p, li { white-space: pre-wrap; } Closest Närmast - - Transpose by Interval - Transponera intervall - Perfect Unison Ren prim @@ -9560,6 +9946,50 @@ p, li { white-space: pre-wrap; } Use double sharps and flats Använd dubbelkors/dubbelbe + + Transpose Chromatically + + + + By Key + + + + By Interval + + + + Transpose Diatonically + + + + Second + + + + Third + + + + Fourth + + + + Fifth + + + + Sixth + + + + Seventh + + + + Keep degree alterations + + TremoloBarDialog @@ -9788,10 +10218,6 @@ p, li { white-space: pre-wrap; } Save a Copy... Spara en kopia... - - Reload - Uppdatera - Create new score Skapa nytt dokument @@ -10332,14 +10758,6 @@ p, li { white-space: pre-wrap; } Save a copy of the score in addition to the current file Spara en kopia av dokumentet förutom den aktuella filen - - File reload - Återöppna fil - - - Reload score from file - Återöppna dokument från fil - File close Stäng dokument @@ -10732,10 +11150,6 @@ p, li { white-space: pre-wrap; } Page: end - - Add slur - - Crescendo Crescendo @@ -11012,14 +11426,6 @@ p, li { white-space: pre-wrap; } Picture - - Player seek to begin - - - - Player seek to end - - &Transpose... @@ -11204,14 +11610,6 @@ p, li { white-space: pre-wrap; } Diatonic up - - next score - - - - previous score - - Reset user settings @@ -11240,10 +11638,6 @@ p, li { white-space: pre-wrap; } Respell pitches - - Grace: 8nd after - - Pan score while playing on/off @@ -11308,10 +11702,6 @@ p, li { white-space: pre-wrap; } Master Palette... - - Insert Measure - - Toggle View Mode @@ -11480,10 +11870,6 @@ p, li { white-space: pre-wrap; } Save Style... - - Save Style As Default... - - Select All @@ -11556,6 +11942,162 @@ p, li { white-space: pre-wrap; } Plugin Creator + + Slur + Båge + + + Add Slur + + + + Add Crescendo + + + + Grace: 8th after + + + + Play Previous Chord + + + + Play Previous Measure + + + + Play Next Chord + + + + Play Next Measure + + + + Player Seek to Begin + + + + Player Seek to End + + + + Save Style as Default... + + + + String above (TAB) + + + + Select string above (TAB only) + + + + String below (TAB) + + + + Select string below (TAB only) + + + + Fret 0 (TAB) + + + + Add fret 0 on current string (TAB only) + + + + Fret 1 (TAB) + + + + Add fret 1 on current string (TAB only) + + + + Fret 2 (TAB) + + + + Add fret 2 on current string (TAB only) + + + + Fret 3 (TAB) + + + + Add fret 3 on current string (TAB only) + + + + Fret 4 (TAB) + + + + Add fret 4 of current string (TAB only) + + + + Fret 5 (TAB) + + + + Add fret 5 of current string (TAB only) + + + + Fret 6 (TAB) + + + + Add fret 6 of current string (TAB only) + + + + Fret 7 (TAB) + + + + Add fret 7 of current string (TAB only) + + + + Fret 8 (TAB) + + + + Add fret 8 of current string (TAB only) + + + + Fret 9 (TAB) + + + + Add fret 9 of current string (TAB only) + + + + Staff Types... + + + + Staff type editor + + + + Show staff type editor + + + + Note anchored Textline + + articulation @@ -11698,6 +12240,10 @@ p, li { white-space: pre-wrap; } Line Linje + + Wavy line + + magTable diff --git a/share/locale/mscore_th.ts b/share/locale/mscore_th.ts index c0057c4e57383..52b5a00963ffa 100644 --- a/share/locale/mscore_th.ts +++ b/share/locale/mscore_th.ts @@ -3,6 +3,14 @@ AboutBox + + About MuseScore + + + + Copy revision number + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -12,9 +20,9 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Support MuseScore with </span><a href="http://www.musescore.org/en/donate"><span style=" font-size:10pt; text-decoration: underline; color:#0000ff;">your donation</span></a></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Arial'; font-size:10pt;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Copyright </span><span style=" font-size:10pt;">©</span><span style=" font-family:'Arial'; font-size:10pt;"> 1999-2009 Werner Schweer and Others. </span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Copyright </span><span style=" font-size:10pt;">©</span><span style=" font-family:'Arial'; font-size:10pt;"> 1999-2012 Werner Schweer and Others. </span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Published under the GNU General Public License</span></p></body></html> - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">line break + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">line break <html><head><meta name="qrichtext" content="1" /><style type="text/css">line break p, li { white-space: pre-wrap; }line break </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;">line break @@ -23,15 +31,7 @@ p, li { white-space: pre-wrap; }line break line break <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Arial'; font-size:10pt;"></p>line break <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">สงวนลิขสิทธื์ </span><span style=" font-size:10pt;">©</span><span style=" font-family:'Arial'; font-size:10pt;"> 1999-2009 Werner Schweer and Others </span></p>line break -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">เผยแพร่ภายใต้ลิขสิทธิ์สาธารณะทั่วไป GNU</span></p></body></html> - - - About MuseScore - - - - Copy revision number - +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">เผยแพร่ภายใต้ลิขสิทธิ์สาธารณะทั่วไป GNU</span></p></body></html> {3C?} {4.0/?} {3.?} {40/?} {1"?} {2'?} {8.25p?} {400;?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {10p?} {10p?} {0000f?} {10p?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {10p?} {10p?} {0000f?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {10p?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {10p?} {10p?} {10p?} {1999-2012 ?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {10p?} @@ -55,17 +55,6 @@ line break About MusicXML - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; font-size:10pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">MusicXML is an open file format for exchanging digital sheet music,</p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">supported by many applications. MusicXML is copyright © MakeMusic, Inc.</p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">All rights reserved. For more information see: <a href="http://www.makemusic.com/xml.html"><span style=" text-decoration: underline; color:#0000ff;">MakeMusic</span></a></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; text-decoration: underline; color:#0000ff;"></p></body></html> - - The MusicXML Public License: @@ -113,6 +102,17 @@ p, li { white-space: pre-wrap; } <p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p></body></html> + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans Serif'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">MusicXML is an open file format for exchanging digital sheet music,</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">supported by many applications. MusicXML is copyright © MakeMusic, Inc.</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">All rights reserved. For more information, see: <a href="http://www.makemusic.com/musicxml"><span style=" text-decoration: underline; color:#0000ff;">MakeMusic</span></a></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; text-decoration: underline; color:#0000ff;"></p></body></html> + + Accidental @@ -131,30 +131,14 @@ p, li { white-space: pre-wrap; } Album Name: - - album name - - - - remove current score - - Remove Score - - move current score down in list - - Down ลง - - move current score up in list - - Up ขึ้น @@ -163,18 +147,10 @@ p, li { white-space: pre-wrap; } Add Score - - create new album - - New สร้างใหม่ - - load an existing album - - Print Album @@ -207,6 +183,30 @@ p, li { white-space: pre-wrap; } MuseScore: Load Album + + Album Name + + + + Remove Current Score + + + + Move Current Score Down in List + + + + Move Current Score Up in List + + + + Create New Album + + + + Load an Existing Album + + ArticulationBase @@ -296,6 +296,14 @@ p, li { white-space: pre-wrap; } BarLine เส้นกั้นห้อง + + spanFrom: + + + + spanTo: + + BeamBase @@ -351,6 +359,37 @@ p, li { white-space: pre-wrap; } + + BoxBase + + Form + ฟอร์ม + + + bottomMargin: + + + + topGap: + + + + bottomGap: + + + + leftMargin: + + + + topMargin: + + + + rightMargin: + + + BoxPropertiesBase @@ -1412,6 +1451,22 @@ failed: No. + + 1 + 1 + + + 2 + 2 + + + 3 + 3 + + + 4 + 4 + EditInstrumentBase @@ -2030,6 +2085,10 @@ failed: B -1 + + A 7 + + EditRaster @@ -2058,6 +2117,17 @@ failed: + + EditStaff + + Edit Short Name + + + + Edit Long Name + + + EditStaffBase @@ -2128,10 +2198,6 @@ failed: Type: - - Edit... - - ... ... @@ -2315,16 +2381,6 @@ failed: Select: - - Guitar (modern) - tablatture type - - - - Bass (modern) - tablature type - - Italian (historic) tablature type @@ -2335,10 +2391,6 @@ failed: tablature type - - Set - - Show Clef @@ -2463,6 +2515,68 @@ failed: Preview ตัวอย่าง + + 6 strings (generic guitar) + tablatture type + + + + 4 strings (generic bass) + tablature type + + + + ukulele + + + + bandurria + + + + Custom + + + + Stem position: + + + + Above + บน + + + Below + + + + Stem style: + + + + Beside staff + + + + Through staff + + + + Half notes: + + + + As short stem + + + + As slashed stem + + + + Show Rests + + EditStringDataBase @@ -2513,6 +2627,14 @@ failed: Chord คอร์ด + + Edit Plain Text + + + + Edit HTML Text + + EditStyleBase @@ -2610,6 +2732,10 @@ spatium unit ---------- spatium unit ---------- +spatium unit +---------- +spatium unit +---------- spatium unit sp @@ -3186,6 +3312,18 @@ p, li { white-space: pre-wrap; } Clef/Key right margin + + Pedal, Trill + + + + Pedal Line + + + + Trill Line + + EditTempoBase @@ -3466,6 +3604,65 @@ spatium unit + + InspectorBarLine + + Staff default + + + + Tick + + + + Tick alt. + + + + Short + + + + Short alt. + + + + Type: + + + + Measure default + + + + Normal + ปกติ + + + Dashed + ประ + + + Dotted + + + + Double + + + + End + สิ้นสุด + + + Span: + + + + Custom + + + InspectorBeam @@ -3685,6 +3882,57 @@ spatium unit ... + + InspectorHairpin + + Form + ฟอร์ม + + + Hairpin + เครื่องหมายแปลงระดับ + + + crescendo + + + + decrescendo + + + + Subtype: + + + + Dynamic Range: + + + + Velo. change: + + + + Staff + บรรทัดห้าเส้น + + + Part + + + + SYstem + + + + reset value + + + + ... + ... + + InspectorImage @@ -3937,6 +4185,37 @@ spatium unit + + InspectorOttava + + Form + ฟอร์ม + + + Ottava + เสียงแปดระดับ + + + Subtype: + + + + 8va + 8va + + + 15ma + 15ma + + + 8vb + 8vb + + + 15mb + 15mb + + InspectorRest @@ -4005,6 +4284,41 @@ spatium unit + + InspectorTrill + + Form + ฟอร์ม + + + Trill + + + + Subtype: + + + + trill line + + + + up prall + + + + down prall + + + + prall prall + + + + wavy line + + + InspectorVBox @@ -4063,6 +4377,29 @@ spatium unit + + InspectorVolta + + Form + ฟอร์ม + + + Volta + ครั้ง + + + Subtype: + + + + Open + + + + Closed + + + InstrumentDialogBase @@ -4117,24 +4454,24 @@ spatium unit Staves บรรทัดห้าเส้น - - visible - มองเห็นได้ - Clef กุญแจเสียง - linked + Add Linked Staff - staff linked to previous + Visible + มองเห็นได้ + + + Linked - Add Linked Staff + Staff Linked to Previous @@ -4964,6 +5301,34 @@ Would you like to locate %2 now? -> + + 1 + 1 + + + 2 + 2 + + + 4 + 4 + + + 8 + 8 + + + 16 + 16 + + + 32 + 32 + + + 64 + 64 + MeasuresDialogBase @@ -5249,10 +5614,6 @@ before closing? no score ไม่มีบทเพลง - - note entry mode - โหมดใส่โน้ต - edit mode แก้ไขโหมด @@ -5670,10 +6031,6 @@ Restore session? please choose a different name: - - Cannot read file: %1 error: %2 - - Overture / Score Writer Files <experimental> (*.ove *.scw);; @@ -5987,19 +6344,63 @@ please choose a different name: - MuseScore: Save Plugin + MuseScore: Save Plugin + + + + MuseScore Plugin File (*.qml) + + + + &Plugins + + + + Find + + + + Dotted + + + + Tick 1 + + + + Tick 2 + + + + Short 1 + + + + Short 2 + + + + plop + + + + scoop + + + + NOTE entry mode - MuseScore Plugin File (*.qml) + DRUM entry mode - &Plugins + TAB entry mode - Find + you cannot create an element @@ -6150,14 +6551,6 @@ please choose a different name: note head group กลุ่มหัวโน้ต - - OnTime: - - - - OffTime: - - invalid ไม่มีอยู่จริง @@ -6174,6 +6567,10 @@ please choose a different name: Dot3 + + NoteEvents + + OmrPanel @@ -6766,6 +7163,14 @@ save before closing? Choose Images Directory + + MuseScore Shortcuts + + + + Print Shortcuts + + PrefsDialogBase @@ -7401,6 +7806,10 @@ save before closing? Define Shortcut + + Print + + Properties @@ -8044,26 +8453,6 @@ Sequencer will be disabled. Form ฟอร์ม - - Slur - เครื่องหมายเชื่อมเสียง - - - Slur End - - - - Staff: - - - - Voice: - - - - Tick: - - SlurPropertyBase @@ -8150,6 +8539,14 @@ Sequencer will be disabled. Form ฟอร์ม + + CHORD + + + + NOTE + + SplitStaff @@ -9016,6 +9413,7 @@ altera Space + spatium unit เว้นวรรค @@ -9050,10 +9448,6 @@ altera frame line width - - mm - มม - Margin: @@ -9086,6 +9480,10 @@ altera Background Color: + + sp + sp + TextStyleDialog @@ -9185,6 +9583,10 @@ please choose a different name: unstyled + + align vertical baseline + + TimeDialog @@ -9192,14 +9594,6 @@ please choose a different name: MuseScore: Time Signatures - - 4/4 common time - 4/4 อัตราจังหวะสามัญ - - - 2/2 alla breve - 2/2 อัลลาเบรเว - TimeDialogBase @@ -9358,10 +9752,6 @@ p, li { white-space: pre-wrap; } MuseScore: Transpose - - Transpose by Key - - Cb major / Ab minor @@ -9434,10 +9824,6 @@ p, li { white-space: pre-wrap; } Closest - - Transpose by Interval - - Perfect Unison @@ -9554,6 +9940,50 @@ p, li { white-space: pre-wrap; } Use double sharps and flats + + Transpose Chromatically + + + + By Key + + + + By Interval + + + + Transpose Diatonically + + + + Second + + + + Third + + + + Fourth + + + + Fifth + + + + Sixth + + + + Seventh + + + + Keep degree alterations + + TremoloBarDialog @@ -9782,10 +10212,6 @@ p, li { white-space: pre-wrap; } Save a Copy... - - Reload - - Create new score @@ -10326,14 +10752,6 @@ p, li { white-space: pre-wrap; } Save a copy of the score in addition to the current file - - File reload - - - - Reload score from file - - File close @@ -10726,10 +11144,6 @@ p, li { white-space: pre-wrap; } Page: end - - Add slur - - Crescendo ดังขึ้นเรื่อยๆ @@ -11006,14 +11420,6 @@ p, li { white-space: pre-wrap; } Picture - - Player seek to begin - - - - Player seek to end - - &Transpose... @@ -11198,14 +11604,6 @@ p, li { white-space: pre-wrap; } Diatonic up - - next score - - - - previous score - - Reset user settings @@ -11234,10 +11632,6 @@ p, li { white-space: pre-wrap; } Respell pitches - - Grace: 8nd after - - Pan score while playing on/off @@ -11302,10 +11696,6 @@ p, li { white-space: pre-wrap; } Master Palette... - - Insert Measure - - Toggle View Mode @@ -11474,10 +11864,6 @@ p, li { white-space: pre-wrap; } Save Style... - - Save Style As Default... - - Select All @@ -11550,6 +11936,162 @@ p, li { white-space: pre-wrap; } Plugin Creator + + Slur + เครื่องหมายเชื่อมเสียง + + + Add Slur + + + + Add Crescendo + + + + Grace: 8th after + + + + Play Previous Chord + + + + Play Previous Measure + + + + Play Next Chord + + + + Play Next Measure + + + + Player Seek to Begin + + + + Player Seek to End + + + + Save Style as Default... + + + + String above (TAB) + + + + Select string above (TAB only) + + + + String below (TAB) + + + + Select string below (TAB only) + + + + Fret 0 (TAB) + + + + Add fret 0 on current string (TAB only) + + + + Fret 1 (TAB) + + + + Add fret 1 on current string (TAB only) + + + + Fret 2 (TAB) + + + + Add fret 2 on current string (TAB only) + + + + Fret 3 (TAB) + + + + Add fret 3 on current string (TAB only) + + + + Fret 4 (TAB) + + + + Add fret 4 of current string (TAB only) + + + + Fret 5 (TAB) + + + + Add fret 5 of current string (TAB only) + + + + Fret 6 (TAB) + + + + Add fret 6 of current string (TAB only) + + + + Fret 7 (TAB) + + + + Add fret 7 of current string (TAB only) + + + + Fret 8 (TAB) + + + + Add fret 8 of current string (TAB only) + + + + Fret 9 (TAB) + + + + Add fret 9 of current string (TAB only) + + + + Staff Types... + + + + Staff type editor + + + + Show staff type editor + + + + Note anchored Textline + + articulation @@ -11692,6 +12234,10 @@ p, li { white-space: pre-wrap; } Line บรรทัด + + Wavy line + + magTable diff --git a/share/locale/mscore_tr.ts b/share/locale/mscore_tr.ts index f783c8cdee813..02c31c0730404 100644 --- a/share/locale/mscore_tr.ts +++ b/share/locale/mscore_tr.ts @@ -3,6 +3,14 @@ AboutBox + + About MuseScore + + + + Copy revision number + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -12,18 +20,10 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Support MuseScore with </span><a href="http://www.musescore.org/en/donate"><span style=" font-size:10pt; text-decoration: underline; color:#0000ff;">your donation</span></a></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Arial'; font-size:10pt;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Copyright </span><span style=" font-size:10pt;">©</span><span style=" font-family:'Arial'; font-size:10pt;"> 1999-2009 Werner Schweer and Others. </span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Copyright </span><span style=" font-size:10pt;">©</span><span style=" font-family:'Arial'; font-size:10pt;"> 1999-2012 Werner Schweer and Others. </span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Published under the GNU General Public License</span></p></body></html> - - About MuseScore - - - - Copy revision number - - AboutBoxDialog @@ -46,17 +46,6 @@ p, li { white-space: pre-wrap; } About MusicXML - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; font-size:10pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">MusicXML is an open file format for exchanging digital sheet music,</p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">supported by many applications. MusicXML is copyright © MakeMusic, Inc.</p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">All rights reserved. For more information see: <a href="http://www.makemusic.com/xml.html"><span style=" text-decoration: underline; color:#0000ff;">MakeMusic</span></a></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; text-decoration: underline; color:#0000ff;"></p></body></html> - - The MusicXML Public License: @@ -104,6 +93,17 @@ p, li { white-space: pre-wrap; } <p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p></body></html> + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans Serif'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">MusicXML is an open file format for exchanging digital sheet music,</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">supported by many applications. MusicXML is copyright © MakeMusic, Inc.</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">All rights reserved. For more information, see: <a href="http://www.makemusic.com/musicxml"><span style=" text-decoration: underline; color:#0000ff;">MakeMusic</span></a></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; text-decoration: underline; color:#0000ff;"></p></body></html> + + Accidental @@ -122,30 +122,14 @@ p, li { white-space: pre-wrap; } Album Name: - - album name - - - - remove current score - - Remove Score - - move current score down in list - - Down Aşağı - - move current score up in list - - Up Yukarı @@ -154,18 +138,10 @@ p, li { white-space: pre-wrap; } Add Score - - create new album - - New Yeni - - load an existing album - - Print Album @@ -198,6 +174,30 @@ p, li { white-space: pre-wrap; } MuseScore: Load Album + + Album Name + + + + Remove Current Score + + + + Move Current Score Down in List + + + + Move Current Score Up in List + + + + Create New Album + + + + Load an Existing Album + + ArticulationBase @@ -287,6 +287,14 @@ p, li { white-space: pre-wrap; } BarLine Ölçü Çizgisi(!!!) + + spanFrom: + + + + spanTo: + + BeamBase @@ -342,6 +350,37 @@ p, li { white-space: pre-wrap; } + + BoxBase + + Form + Form + + + bottomMargin: + + + + topGap: + + + + bottomGap: + + + + leftMargin: + + + + topMargin: + + + + rightMargin: + + + BoxPropertiesBase @@ -1403,6 +1442,22 @@ yapılamadı: No. + + 1 + 1 + + + 2 + 2 + + + 3 + 3 + + + 4 + 4 + EditInstrumentBase @@ -2021,6 +2076,10 @@ yapılamadı: B -1 + + A 7 + + EditRaster @@ -2049,6 +2108,17 @@ yapılamadı: + + EditStaff + + Edit Short Name + + + + Edit Long Name + + + EditStaffBase @@ -2119,10 +2189,6 @@ yapılamadı: Type: Tip - - Edit... - - ... ... @@ -2306,16 +2372,6 @@ yapılamadı: Select: - - Guitar (modern) - tablatture type - - - - Bass (modern) - tablature type - - Italian (historic) tablature type @@ -2326,10 +2382,6 @@ yapılamadı: tablature type - - Set - - Show Clef @@ -2454,6 +2506,68 @@ yapılamadı: Preview Önizleme + + 6 strings (generic guitar) + tablatture type + + + + 4 strings (generic bass) + tablature type + + + + ukulele + + + + bandurria + + + + Custom + + + + Stem position: + + + + Above + + + + Below + + + + Stem style: + + + + Beside staff + + + + Through staff + + + + Half notes: + + + + As short stem + + + + As slashed stem + + + + Show Rests + + EditStringDataBase @@ -2504,6 +2618,14 @@ yapılamadı: Chord Akor + + Edit Plain Text + + + + Edit HTML Text + + EditStyleBase @@ -2585,6 +2707,10 @@ spatium unit ---------- spatium unit ---------- +spatium unit +---------- +spatium unit +---------- spatium unit @@ -3177,6 +3303,18 @@ p, li { white-space: pre-wrap; } Clef/Key right margin + + Pedal, Trill + + + + Pedal Line + + + + Trill Line + + EditTempoBase @@ -3457,6 +3595,65 @@ spatium unit + + InspectorBarLine + + Staff default + + + + Tick + + + + Tick alt. + + + + Short + + + + Short alt. + + + + Type: + Tip + + + Measure default + + + + Normal + + + + Dashed + + + + Dotted + + + + Double + + + + End + + + + Span: + + + + Custom + + + InspectorBeam @@ -3676,6 +3873,57 @@ spatium unit ... + + InspectorHairpin + + Form + Form + + + Hairpin + Gürlük İşareti + + + crescendo + + + + decrescendo + + + + Subtype: + + + + Dynamic Range: + + + + Velo. change: + + + + Staff + Porte + + + Part + + + + SYstem + + + + reset value + + + + ... + ... + + InspectorImage @@ -3928,6 +4176,37 @@ spatium unit + + InspectorOttava + + Form + Form + + + Ottava + + + + Subtype: + + + + 8va + + + + 15ma + + + + 8vb + + + + 15mb + + + InspectorRest @@ -3996,6 +4275,41 @@ spatium unit + + InspectorTrill + + Form + Form + + + Trill + + + + Subtype: + + + + trill line + + + + up prall + + + + down prall + + + + prall prall + + + + wavy line + + + InspectorVBox @@ -4054,6 +4368,29 @@ spatium unit + + InspectorVolta + + Form + Form + + + Volta + Dolap + + + Subtype: + + + + Open + + + + Closed + + + InstrumentDialogBase @@ -4108,24 +4445,24 @@ spatium unit Staves Porteler - - visible - - Clef Anahtar - linked + Add Linked Staff - staff linked to previous + Visible + Görünür + + + Linked - Add Linked Staff + Staff Linked to Previous @@ -4955,6 +5292,34 @@ Would you like to locate %2 now? -> + + 1 + 1 + + + 2 + 2 + + + 4 + 4 + + + 8 + 8 + + + 16 + 16 + + + 32 + 32 + + + 64 + 64 + MeasuresDialogBase @@ -5216,10 +5581,6 @@ kaydetmek ister misiniz? no score nota yok - - note entry mode - nota giriş modu - edit mode düzenleme modu @@ -5663,10 +6024,6 @@ Restore session? please choose a different name: - - Cannot read file: %1 error: %2 - - Overture / Score Writer Files <experimental> (*.ove *.scw);; @@ -5972,27 +6329,71 @@ please choose a different name: - MuseScore: Load Plugin + MuseScore: Load Plugin + + + + MuseScore Plugin (*.qml);;All Files (*) + + + + MuseScore: Save Plugin + + + + MuseScore Plugin File (*.qml) + + + + &Plugins + + + + Find + + + + Dotted + + + + Tick 1 + + + + Tick 2 + + + + Short 1 + + + + Short 2 + + + + plop - MuseScore Plugin (*.qml);;All Files (*) + scoop - MuseScore: Save Plugin + NOTE entry mode - MuseScore Plugin File (*.qml) + DRUM entry mode - &Plugins + TAB entry mode - Find + you cannot create an element @@ -6143,14 +6544,6 @@ please choose a different name: note head group nota-başı grubu - - OnTime: - - - - OffTime: - - invalid geçersiz @@ -6167,6 +6560,10 @@ please choose a different name: Dot3 + + NoteEvents + + OmrPanel @@ -6759,6 +7156,14 @@ save before closing? Choose Images Directory + + MuseScore Shortcuts + + + + Print Shortcuts + + PrefsDialogBase @@ -7394,6 +7799,10 @@ save before closing? Define Shortcut + + Print + + Properties @@ -8040,26 +8449,6 @@ Sequencer will be disabled. Form Form - - Slur - Bağ - - - Slur End - Bağ Sonu - - - Staff: - Porte: - - - Voice: - Ses: - - - Tick: - Gürlük: - SlurPropertyBase @@ -8146,6 +8535,14 @@ Sequencer will be disabled. Form Form + + CHORD + + + + NOTE + + SplitStaff @@ -9012,6 +9409,7 @@ altera Space + spatium unit Boşluk @@ -9046,10 +9444,6 @@ altera frame line width - - mm - mm - Margin: Kenar Boşluğu: @@ -9082,6 +9476,10 @@ altera Background Color: + + sp + + TextStyleDialog @@ -9181,6 +9579,10 @@ please choose a different name: unstyled + + align vertical baseline + + TimeDialog @@ -9188,14 +9590,6 @@ please choose a different name: MuseScore: Time Signatures - - 4/4 common time - - - - 2/2 alla breve - - TimeDialogBase @@ -9354,10 +9748,6 @@ p, li { white-space: pre-wrap; } MuseScore: Transpose - - Transpose by Key - - Cb major / Ab minor @@ -9430,10 +9820,6 @@ p, li { white-space: pre-wrap; } Closest - - Transpose by Interval - - Perfect Unison @@ -9550,6 +9936,50 @@ p, li { white-space: pre-wrap; } Use double sharps and flats + + Transpose Chromatically + + + + By Key + + + + By Interval + + + + Transpose Diatonically + + + + Second + + + + Third + + + + Fourth + + + + Fifth + + + + Sixth + + + + Seventh + + + + Keep degree alterations + + TremoloBarDialog @@ -9778,10 +10208,6 @@ p, li { white-space: pre-wrap; } Save a Copy... - - Reload - - Create new score @@ -10322,14 +10748,6 @@ p, li { white-space: pre-wrap; } Save a copy of the score in addition to the current file - - File reload - - - - Reload score from file - - File close @@ -10722,10 +11140,6 @@ p, li { white-space: pre-wrap; } Page: end - - Add slur - - Crescendo @@ -11002,14 +11416,6 @@ p, li { white-space: pre-wrap; } Picture - - Player seek to begin - - - - Player seek to end - - &Transpose... @@ -11194,14 +11600,6 @@ p, li { white-space: pre-wrap; } Diatonic up - - next score - - - - previous score - - Reset user settings @@ -11230,10 +11628,6 @@ p, li { white-space: pre-wrap; } Respell pitches - - Grace: 8nd after - - Pan score while playing on/off @@ -11298,10 +11692,6 @@ p, li { white-space: pre-wrap; } Master Palette... - - Insert Measure - - Toggle View Mode @@ -11470,10 +11860,6 @@ p, li { white-space: pre-wrap; } Save Style... - - Save Style As Default... - - Select All @@ -11546,6 +11932,162 @@ p, li { white-space: pre-wrap; } Plugin Creator + + Slur + Bağ + + + Add Slur + + + + Add Crescendo + + + + Grace: 8th after + + + + Play Previous Chord + + + + Play Previous Measure + + + + Play Next Chord + + + + Play Next Measure + + + + Player Seek to Begin + + + + Player Seek to End + + + + Save Style as Default... + + + + String above (TAB) + + + + Select string above (TAB only) + + + + String below (TAB) + + + + Select string below (TAB only) + + + + Fret 0 (TAB) + + + + Add fret 0 on current string (TAB only) + + + + Fret 1 (TAB) + + + + Add fret 1 on current string (TAB only) + + + + Fret 2 (TAB) + + + + Add fret 2 on current string (TAB only) + + + + Fret 3 (TAB) + + + + Add fret 3 on current string (TAB only) + + + + Fret 4 (TAB) + + + + Add fret 4 of current string (TAB only) + + + + Fret 5 (TAB) + + + + Add fret 5 of current string (TAB only) + + + + Fret 6 (TAB) + + + + Add fret 6 of current string (TAB only) + + + + Fret 7 (TAB) + + + + Add fret 7 of current string (TAB only) + + + + Fret 8 (TAB) + + + + Add fret 8 of current string (TAB only) + + + + Fret 9 (TAB) + + + + Add fret 9 of current string (TAB only) + + + + Staff Types... + + + + Staff type editor + + + + Show staff type editor + + + + Note anchored Textline + + articulation @@ -11688,6 +12230,10 @@ p, li { white-space: pre-wrap; } Line Çizgi + + Wavy line + + magTable diff --git a/share/locale/mscore_uk.ts b/share/locale/mscore_uk.ts index 125f994ffc833..582b97e0ecaa0 100644 --- a/share/locale/mscore_uk.ts +++ b/share/locale/mscore_uk.ts @@ -3,6 +3,14 @@ AboutBox + + About MuseScore + + + + Copy revision number + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -12,9 +20,9 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Support MuseScore with </span><a href="http://www.musescore.org/en/donate"><span style=" font-size:10pt; text-decoration: underline; color:#0000ff;">your donation</span></a></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Arial'; font-size:10pt;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Copyright </span><span style=" font-size:10pt;">©</span><span style=" font-family:'Arial'; font-size:10pt;"> 1999-2009 Werner Schweer and Others. </span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Copyright </span><span style=" font-size:10pt;">©</span><span style=" font-family:'Arial'; font-size:10pt;"> 1999-2012 Werner Schweer and Others. </span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Published under the GNU General Public License</span></p></body></html> - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> @@ -23,15 +31,7 @@ p, li { white-space: pre-wrap; } <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Arial'; font-size:10pt;"></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Авторські права </span><span style=" font-size:10pt;">©</span><span style=" font-family:'Arial'; font-size:10pt;"> 1999-2009 Werner Schweer та інші. </span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Розповсюжується під Загальною публічною ліценцією GNU — GPL</span></p></body></html> - - - About MuseScore - - - - Copy revision number - +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Розповсюжується під Загальною публічною ліценцією GNU — GPL</span></p></body></html> {3C?} {4.0/?} {3.?} {40/?} {1"?} {2'?} {8.25p?} {400;?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {10p?} {10p?} {0000f?} {10p?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {10p?} {10p?} {0000f?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {10p?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {10p?} {10p?} {10p?} {1999-2012 ?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {10p?} @@ -55,17 +55,6 @@ p, li { white-space: pre-wrap; } About MusicXML - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; font-size:10pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">MusicXML is an open file format for exchanging digital sheet music,</p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">supported by many applications. MusicXML is copyright © MakeMusic, Inc.</p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">All rights reserved. For more information see: <a href="http://www.makemusic.com/xml.html"><span style=" text-decoration: underline; color:#0000ff;">MakeMusic</span></a></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; text-decoration: underline; color:#0000ff;"></p></body></html> - - The MusicXML Public License: @@ -113,6 +102,17 @@ p, li { white-space: pre-wrap; } <p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p></body></html> + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans Serif'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">MusicXML is an open file format for exchanging digital sheet music,</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">supported by many applications. MusicXML is copyright © MakeMusic, Inc.</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">All rights reserved. For more information, see: <a href="http://www.makemusic.com/musicxml"><span style=" text-decoration: underline; color:#0000ff;">MakeMusic</span></a></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; text-decoration: underline; color:#0000ff;"></p></body></html> + + Accidental @@ -131,30 +131,14 @@ p, li { white-space: pre-wrap; } Album Name: - - album name - - - - remove current score - - Remove Score - - move current score down in list - - Down Вниз - - move current score up in list - - Up Догори @@ -163,18 +147,10 @@ p, li { white-space: pre-wrap; } Add Score - - create new album - - New Нова - - load an existing album - - Print Album @@ -207,6 +183,30 @@ p, li { white-space: pre-wrap; } MuseScore: Load Album + + Album Name + + + + Remove Current Score + + + + Move Current Score Down in List + + + + Move Current Score Up in List + + + + Create New Album + + + + Load an Existing Album + + ArticulationBase @@ -296,6 +296,14 @@ p, li { white-space: pre-wrap; } BarLine Тактова риска + + spanFrom: + + + + spanTo: + + BeamBase @@ -351,6 +359,37 @@ p, li { white-space: pre-wrap; } + + BoxBase + + Form + Форма + + + bottomMargin: + + + + topGap: + + + + bottomGap: + + + + leftMargin: + + + + topMargin: + + + + rightMargin: + + + BoxPropertiesBase @@ -1412,6 +1451,22 @@ failed: No. + + 1 + 1 + + + 2 + 2 + + + 3 + 3 + + + 4 + 4 + EditInstrumentBase @@ -2030,6 +2085,10 @@ failed: B -1 + + A 7 + + EditRaster @@ -2058,6 +2117,17 @@ failed: + + EditStaff + + Edit Short Name + + + + Edit Long Name + + + EditStaffBase @@ -2128,10 +2198,6 @@ failed: Type: Тип: - - Edit... - - ... @@ -2315,16 +2381,6 @@ failed: Select: - - Guitar (modern) - tablatture type - - - - Bass (modern) - tablature type - - Italian (historic) tablature type @@ -2335,10 +2391,6 @@ failed: tablature type - - Set - - Show Clef @@ -2463,6 +2515,68 @@ failed: Preview Попередній перегляд + + 6 strings (generic guitar) + tablatture type + + + + 4 strings (generic bass) + tablature type + + + + ukulele + + + + bandurria + + + + Custom + + + + Stem position: + + + + Above + + + + Below + + + + Stem style: + + + + Beside staff + + + + Through staff + + + + Half notes: + + + + As short stem + + + + As slashed stem + + + + Show Rests + + EditStringDataBase @@ -2513,6 +2627,14 @@ failed: Chord Акорд + + Edit Plain Text + + + + Edit HTML Text + + EditStyleBase @@ -2599,6 +2721,10 @@ spatium unit ---------- spatium unit ---------- +spatium unit +---------- +spatium unit +---------- spatium unit пр @@ -3187,6 +3313,18 @@ p, li { white-space: pre-wrap; } Clef/Key right margin + + Pedal, Trill + + + + Pedal Line + + + + Trill Line + + EditTempoBase @@ -3467,6 +3605,65 @@ spatium unit + + InspectorBarLine + + Staff default + + + + Tick + + + + Tick alt. + + + + Short + + + + Short alt. + + + + Type: + Тип: + + + Measure default + + + + Normal + Тактова риска (звичайна) + + + Dashed + Пунктирна тактова риска + + + Dotted + + + + Double + + + + End + Кінець + + + Span: + + + + Custom + + + InspectorBeam @@ -3686,6 +3883,57 @@ spatium unit + + InspectorHairpin + + Form + Форма + + + Hairpin + Вилка + + + crescendo + + + + decrescendo + + + + Subtype: + + + + Dynamic Range: + + + + Velo. change: + + + + Staff + + + + Part + + + + SYstem + + + + reset value + + + + ... + + + InspectorImage @@ -3938,6 +4186,37 @@ spatium unit + + InspectorOttava + + Form + Форма + + + Ottava + Октава + + + Subtype: + + + + 8va + октовою вище + + + 15ma + вище на дві октави + + + 8vb + октавою нище + + + 15mb + нище на дві октави + + InspectorRest @@ -4006,6 +4285,41 @@ spatium unit + + InspectorTrill + + Form + Форма + + + Trill + Трель + + + Subtype: + + + + trill line + + + + up prall + + + + down prall + + + + prall prall + + + + wavy line + + + InspectorVBox @@ -4064,6 +4378,29 @@ spatium unit + + InspectorVolta + + Form + Форма + + + Volta + Вольта + + + Subtype: + + + + Open + + + + Closed + + + InstrumentDialogBase @@ -4118,24 +4455,24 @@ spatium unit Staves Нотні стани - - visible - видимий - Clef Ключ - linked + Add Linked Staff - staff linked to previous + Visible + Видимий + + + Linked - Add Linked Staff + Staff Linked to Previous @@ -4966,6 +5303,34 @@ Would you like to locate %2 now? -> + + 1 + 1 + + + 2 + 2 + + + 4 + 4 + + + 8 + 8 + + + 16 + 16 + + + 32 + 32 + + + 64 + 64 + MeasuresDialogBase @@ -5125,10 +5490,6 @@ Would you like to locate %2 now? MuseScore: Load Score MuseScore: вибір партитури - - note entry mode - Режим вводу нот - edit mode Режим редагування @@ -5672,10 +6033,6 @@ Restore session? please choose a different name: - - Cannot read file: %1 error: %2 - - Overture / Score Writer Files <experimental> (*.ove *.scw);; @@ -5957,51 +6314,95 @@ please choose a different name: - LilyPond Format (*.ly) + LilyPond Format (*.ly) + + + + MuseScore: Export Parts + + + + Parts were successfully exported + + + + Continuous View + + + + About &MusicXML + + + + Report a bug + + + + MuseScore: Load Plugin + + + + MuseScore Plugin (*.qml);;All Files (*) + + + + MuseScore: Save Plugin + + + + MuseScore Plugin File (*.qml) + + + + &Plugins + + + + Find - MuseScore: Export Parts + Dotted - Parts were successfully exported + Tick 1 - Continuous View + Tick 2 - About &MusicXML + Short 1 - Report a bug + Short 2 - MuseScore: Load Plugin + plop - MuseScore Plugin (*.qml);;All Files (*) + scoop - MuseScore: Save Plugin + NOTE entry mode - MuseScore Plugin File (*.qml) + DRUM entry mode - &Plugins + TAB entry mode - Find + you cannot create an element @@ -6152,14 +6553,6 @@ please choose a different name: note head group група нотної головки - - OnTime: - Час включення: - - - OffTime: - Час виключення: - invalid @@ -6176,6 +6569,10 @@ please choose a different name: Dot3 + + NoteEvents + + OmrPanel @@ -6768,6 +7165,14 @@ save before closing? Choose Images Directory + + MuseScore Shortcuts + + + + Print Shortcuts + + PrefsDialogBase @@ -7403,6 +7808,10 @@ save before closing? Define Shortcut + + Print + Друк + Properties @@ -8049,26 +8458,6 @@ Sequencer will be disabled. Form Форма - - Staff: - Нотоносець: - - - Voice: - Голос: - - - Tick: - Тік: - - - Slur End - Кінець ліги - - - Slur - Ліга - SlurPropertyBase @@ -8155,6 +8544,14 @@ Sequencer will be disabled. Form Форма + + CHORD + + + + NOTE + + SplitStaff @@ -9024,6 +9421,7 @@ altera Space + spatium unit Пробіл @@ -9058,10 +9456,6 @@ altera frame line width ширина лінії рамки - - mm - мм - Margin: Поле: @@ -9094,6 +9488,10 @@ altera Background Color: + + sp + пр + TextStyleDialog @@ -9193,6 +9591,10 @@ please choose a different name: unstyled + + align vertical baseline + + TimeDialog @@ -9200,14 +9602,6 @@ please choose a different name: MuseScore: Time Signatures MuseScore: тактові розміри - - 4/4 common time - 4/4 звичайний розмір - - - 2/2 alla breve - 2/2 алла бреве - TimeDialogBase @@ -9369,10 +9763,6 @@ p, li { white-space: pre-wrap; } MuseScore: Transpose MuseScore: транспозиція - - Transpose by Key - - Cb major / Ab minor @@ -9445,10 +9835,6 @@ p, li { white-space: pre-wrap; } Closest - - Transpose by Interval - - Perfect Unison @@ -9565,6 +9951,50 @@ p, li { white-space: pre-wrap; } Use double sharps and flats Використовувати дубль дієзи та бемолі + + Transpose Chromatically + + + + By Key + + + + By Interval + + + + Transpose Diatonically + + + + Second + + + + Third + + + + Fourth + + + + Fifth + + + + Sixth + + + + Seventh + + + + Keep degree alterations + + TremoloBarDialog @@ -9793,10 +10223,6 @@ p, li { white-space: pre-wrap; } Save a Copy... Зберегти копію... - - Reload - Оновити файл - Create new score Створити нову партитуру @@ -10337,14 +10763,6 @@ p, li { white-space: pre-wrap; } Save a copy of the score in addition to the current file Зберегти копію партитури на додаток до поточного файлу - - File reload - Перевідкрити файл - - - Reload score from file - Перевідкрити файл партитури - File close Закрити файл @@ -10737,10 +11155,6 @@ p, li { white-space: pre-wrap; } Page: end - - Add slur - - Crescendo Крещендо @@ -11017,14 +11431,6 @@ p, li { white-space: pre-wrap; } Picture - - Player seek to begin - - - - Player seek to end - - &Transpose... @@ -11209,14 +11615,6 @@ p, li { white-space: pre-wrap; } Diatonic up - - next score - - - - previous score - - Reset user settings @@ -11245,10 +11643,6 @@ p, li { white-space: pre-wrap; } Respell pitches - - Grace: 8nd after - - Pan score while playing on/off @@ -11313,10 +11707,6 @@ p, li { white-space: pre-wrap; } Master Palette... - - Insert Measure - - Toggle View Mode @@ -11485,10 +11875,6 @@ p, li { white-space: pre-wrap; } Save Style... - - Save Style As Default... - - Select All @@ -11561,6 +11947,162 @@ p, li { white-space: pre-wrap; } Plugin Creator + + Slur + Ліга + + + Add Slur + + + + Add Crescendo + + + + Grace: 8th after + + + + Play Previous Chord + + + + Play Previous Measure + + + + Play Next Chord + + + + Play Next Measure + + + + Player Seek to Begin + + + + Player Seek to End + + + + Save Style as Default... + + + + String above (TAB) + + + + Select string above (TAB only) + + + + String below (TAB) + + + + Select string below (TAB only) + + + + Fret 0 (TAB) + + + + Add fret 0 on current string (TAB only) + + + + Fret 1 (TAB) + + + + Add fret 1 on current string (TAB only) + + + + Fret 2 (TAB) + + + + Add fret 2 on current string (TAB only) + + + + Fret 3 (TAB) + + + + Add fret 3 on current string (TAB only) + + + + Fret 4 (TAB) + + + + Add fret 4 of current string (TAB only) + + + + Fret 5 (TAB) + + + + Add fret 5 of current string (TAB only) + + + + Fret 6 (TAB) + + + + Add fret 6 of current string (TAB only) + + + + Fret 7 (TAB) + + + + Add fret 7 of current string (TAB only) + + + + Fret 8 (TAB) + + + + Add fret 8 of current string (TAB only) + + + + Fret 9 (TAB) + + + + Add fret 9 of current string (TAB only) + + + + Staff Types... + + + + Staff type editor + + + + Show staff type editor + + + + Note anchored Textline + + articulation @@ -11703,6 +12245,10 @@ p, li { white-space: pre-wrap; } Line Лінія + + Wavy line + + magTable diff --git a/share/locale/mscore_vi.ts b/share/locale/mscore_vi.ts index 03c3d5a2cb4a6..91abcde633e74 100644 --- a/share/locale/mscore_vi.ts +++ b/share/locale/mscore_vi.ts @@ -3,6 +3,14 @@ AboutBox + + About MuseScore + + + + Copy revision number + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -12,17 +20,9 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Support MuseScore with </span><a href="http://www.musescore.org/en/donate"><span style=" font-size:10pt; text-decoration: underline; color:#0000ff;">your donation</span></a></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Arial'; font-size:10pt;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Copyright </span><span style=" font-size:10pt;">©</span><span style=" font-family:'Arial'; font-size:10pt;"> 1999-2009 Werner Schweer and Others. </span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Copyright </span><span style=" font-size:10pt;">©</span><span style=" font-family:'Arial'; font-size:10pt;"> 1999-2012 Werner Schweer and Others. </span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Published under the GNU General Public License</span></p></body></html> - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Visit </span><a href="http://www.musescore.org/"><span style=" font-size:10pt; text-decoration: underline; color:#0000ff;">www.musescore.org</span></a><span style=" font-family:'Arial'; font-size:10pt;"> for new versions and more information.</span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Support MuseScore with </span><a href="http://www.musescore.org/en/donate"><span style=" font-size:10pt; text-decoration: underline; color:#0000ff;">your donation</span></a></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Arial'; font-size:10pt;"></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Copyright </span><span style=" font-size:10pt;">©</span><span style=" font-family:'Arial'; font-size:10pt;"> 1999-2009 Werner Schweer and Others. </span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Published under the GNU General Public License</span></p></body></html> - - - About MuseScore - - - - Copy revision number - + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Visit </span><a href="http://www.musescore.org/"><span style=" font-size:10pt; text-decoration: underline; color:#0000ff;">www.musescore.org</span></a><span style=" font-family:'Arial'; font-size:10pt;"> for new versions and more information.</span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Support MuseScore with </span><a href="http://www.musescore.org/en/donate"><span style=" font-size:10pt; text-decoration: underline; color:#0000ff;">your donation</span></a></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Arial'; font-size:10pt;"></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Copyright </span><span style=" font-size:10pt;">©</span><span style=" font-family:'Arial'; font-size:10pt;"> 1999-2009 Werner Schweer and Others. </span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Published under the GNU General Public License</span></p></body></html> {3C?} {4.0/?} {3.?} {40/?} {1"?} {2'?} {8.25p?} {400;?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {10p?} {10p?} {0000f?} {10p?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {10p?} {10p?} {0000f?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {10p?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {10p?} {10p?} {10p?} {1999-2012 ?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {10p?} @@ -46,17 +46,6 @@ p, li { white-space: pre-wrap; } About MusicXML - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; font-size:10pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">MusicXML is an open file format for exchanging digital sheet music,</p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">supported by many applications. MusicXML is copyright © MakeMusic, Inc.</p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">All rights reserved. For more information see: <a href="http://www.makemusic.com/xml.html"><span style=" text-decoration: underline; color:#0000ff;">MakeMusic</span></a></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; text-decoration: underline; color:#0000ff;"></p></body></html> - - The MusicXML Public License: @@ -104,6 +93,17 @@ p, li { white-space: pre-wrap; } <p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p></body></html> + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans Serif'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">MusicXML is an open file format for exchanging digital sheet music,</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">supported by many applications. MusicXML is copyright © MakeMusic, Inc.</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">All rights reserved. For more information, see: <a href="http://www.makemusic.com/musicxml"><span style=" text-decoration: underline; color:#0000ff;">MakeMusic</span></a></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; text-decoration: underline; color:#0000ff;"></p></body></html> + + Accidental @@ -122,30 +122,14 @@ p, li { white-space: pre-wrap; } Album Name: - - album name - - - - remove current score - - Remove Score - - move current score down in list - - Down Down - - move current score up in list - - Up Up @@ -154,18 +138,10 @@ p, li { white-space: pre-wrap; } Add Score - - create new album - - New New - - load an existing album - - Print Album @@ -198,6 +174,30 @@ p, li { white-space: pre-wrap; } MuseScore: Load Album + + Album Name + + + + Remove Current Score + + + + Move Current Score Down in List + + + + Move Current Score Up in List + + + + Create New Album + + + + Load an Existing Album + + ArticulationBase @@ -287,6 +287,14 @@ p, li { white-space: pre-wrap; } BarLine Bar Line + + spanFrom: + + + + spanTo: + + BeamBase @@ -342,6 +350,37 @@ p, li { white-space: pre-wrap; } + + BoxBase + + Form + Form + + + bottomMargin: + + + + topGap: + + + + bottomGap: + + + + leftMargin: + + + + topMargin: + + + + rightMargin: + + + BoxPropertiesBase @@ -1403,6 +1442,22 @@ failed: No. + + 1 + 1 + + + 2 + 2 + + + 3 + 3 + + + 4 + 4 + EditInstrumentBase @@ -2021,6 +2076,10 @@ failed: B -1 + + A 7 + + EditRaster @@ -2049,6 +2108,17 @@ failed: + + EditStaff + + Edit Short Name + + + + Edit Long Name + + + EditStaffBase @@ -2119,10 +2189,6 @@ failed: Type: Type: - - Edit... - - ... @@ -2306,16 +2372,6 @@ failed: Select: - - Guitar (modern) - tablatture type - - - - Bass (modern) - tablature type - - Italian (historic) tablature type @@ -2326,10 +2382,6 @@ failed: tablature type - - Set - - Show Clef @@ -2454,6 +2506,68 @@ failed: Preview Preview + + 6 strings (generic guitar) + tablatture type + + + + 4 strings (generic bass) + tablature type + + + + ukulele + + + + bandurria + + + + Custom + + + + Stem position: + + + + Above + Above + + + Below + + + + Stem style: + + + + Beside staff + + + + Through staff + + + + Half notes: + + + + As short stem + + + + As slashed stem + + + + Show Rests + + EditStringDataBase @@ -2504,6 +2618,14 @@ failed: Chord Chord + + Edit Plain Text + + + + Edit HTML Text + + EditStyleBase @@ -2577,6 +2699,10 @@ spatium unit ---------- spatium unit ---------- +spatium unit +---------- +spatium unit +---------- spatium unit sp @@ -3177,6 +3303,18 @@ p, li { white-space: pre-wrap; } Clef/Key right margin + + Pedal, Trill + + + + Pedal Line + + + + Trill Line + + EditTempoBase @@ -3457,6 +3595,65 @@ spatium unit + + InspectorBarLine + + Staff default + + + + Tick + + + + Tick alt. + + + + Short + + + + Short alt. + + + + Type: + Type: + + + Measure default + + + + Normal + Normal + + + Dashed + Dashed + + + Dotted + + + + Double + + + + End + End + + + Span: + + + + Custom + + + InspectorBeam @@ -3676,6 +3873,57 @@ spatium unit + + InspectorHairpin + + Form + Form + + + Hairpin + Hairpin + + + crescendo + + + + decrescendo + + + + Subtype: + + + + Dynamic Range: + + + + Velo. change: + + + + Staff + Stave + + + Part + + + + SYstem + + + + reset value + + + + ... + + + InspectorImage @@ -3928,6 +4176,37 @@ spatium unit + + InspectorOttava + + Form + Form + + + Ottava + Ottava + + + Subtype: + + + + 8va + 8va + + + 15ma + 15ma + + + 8vb + 8vb + + + 15mb + 15mb + + InspectorRest @@ -3996,6 +4275,41 @@ spatium unit + + InspectorTrill + + Form + Form + + + Trill + + + + Subtype: + + + + trill line + + + + up prall + + + + down prall + + + + prall prall + + + + wavy line + + + InspectorVBox @@ -4054,6 +4368,29 @@ spatium unit + + InspectorVolta + + Form + Form + + + Volta + Time Bar + + + Subtype: + + + + Open + + + + Closed + + + InstrumentDialogBase @@ -4108,24 +4445,24 @@ spatium unit Staves Staves - - visible - visible - Clef Clef - linked + Add Linked Staff - staff linked to previous + Visible + Visible + + + Linked - Add Linked Staff + Staff Linked to Previous @@ -4955,6 +5292,34 @@ Would you like to locate %2 now? -> + + 1 + 1 + + + 2 + 2 + + + 4 + 4 + + + 8 + 8 + + + 16 + 16 + + + 32 + 32 + + + 64 + 64 + MeasuresDialogBase @@ -5194,10 +5559,6 @@ Would you like to locate %2 now? &About &About - - note entry mode - note entry mode - edit mode edit mode @@ -5662,10 +6023,6 @@ Restore session? please choose a different name: - - Cannot read file: %1 error: %2 - - Overture / Score Writer Files <experimental> (*.ove *.scw);; @@ -5955,43 +6312,87 @@ please choose a different name: - Parts were successfully exported + Parts were successfully exported + + + + Continuous View + + + + About &MusicXML + + + + Report a bug + + + + MuseScore: Load Plugin + + + + MuseScore Plugin (*.qml);;All Files (*) + + + + MuseScore: Save Plugin + + + + MuseScore Plugin File (*.qml) + + + + &Plugins + + + + Find + + + + Dotted + + + + Tick 1 - Continuous View + Tick 2 - About &MusicXML + Short 1 - Report a bug + Short 2 - MuseScore: Load Plugin + plop - MuseScore Plugin (*.qml);;All Files (*) + scoop - MuseScore: Save Plugin + NOTE entry mode - MuseScore Plugin File (*.qml) + DRUM entry mode - &Plugins + TAB entry mode - Find + you cannot create an element @@ -6142,14 +6543,6 @@ please choose a different name: note head group note head group - - OnTime: - - - - OffTime: - - invalid invalid @@ -6166,6 +6559,10 @@ please choose a different name: Dot3 + + NoteEvents + + OmrPanel @@ -6758,6 +7155,14 @@ save before closing? Choose Images Directory + + MuseScore Shortcuts + + + + Print Shortcuts + + PrefsDialogBase @@ -7393,6 +7798,10 @@ save before closing? Define Shortcut + + Print + + Properties @@ -8036,26 +8445,6 @@ Sequencer will be disabled. Form Form - - Slur - Slur - - - Slur End - Slur End - - - Staff: - Stave: - - - Voice: - Voice: - - - Tick: - Tick: - SlurPropertyBase @@ -8142,6 +8531,14 @@ Sequencer will be disabled. Form Form + + CHORD + + + + NOTE + + SplitStaff @@ -9008,6 +9405,7 @@ altera Space + spatium unit Space @@ -9042,10 +9440,6 @@ altera frame line width frame line width - - mm - mm - Margin: Margin: @@ -9078,6 +9472,10 @@ altera Background Color: + + sp + sp + TextStyleDialog @@ -9177,6 +9575,10 @@ please choose a different name: unstyled + + align vertical baseline + + TimeDialog @@ -9184,14 +9586,6 @@ please choose a different name: MuseScore: Time Signatures MuseScore: Time Signatures - - 4/4 common time - 4/4 common time - - - 2/2 alla breve - 2/2 alla breve - TimeDialogBase @@ -9353,10 +9747,6 @@ p, li { white-space: pre-wrap; } MuseScore: Transpose MuseScore: Transpose - - Transpose by Key - Transpose by Key - Cb major / Ab minor Cb major / Ab minor @@ -9429,10 +9819,6 @@ p, li { white-space: pre-wrap; } Closest Closest - - Transpose by Interval - Transpose by Interval - Perfect Unison Perfect Unison @@ -9549,6 +9935,50 @@ p, li { white-space: pre-wrap; } Use double sharps and flats + + Transpose Chromatically + + + + By Key + + + + By Interval + + + + Transpose Diatonically + + + + Second + + + + Third + + + + Fourth + + + + Fifth + + + + Sixth + + + + Seventh + + + + Keep degree alterations + + TremoloBarDialog @@ -9777,10 +10207,6 @@ p, li { white-space: pre-wrap; } Save a Copy... - - Reload - - Create new score @@ -10321,14 +10747,6 @@ p, li { white-space: pre-wrap; } Save a copy of the score in addition to the current file - - File reload - - - - Reload score from file - - File close @@ -10721,10 +11139,6 @@ p, li { white-space: pre-wrap; } Page: end - - Add slur - - Crescendo Crescendo @@ -11001,14 +11415,6 @@ p, li { white-space: pre-wrap; } Picture - - Player seek to begin - - - - Player seek to end - - &Transpose... @@ -11193,14 +11599,6 @@ p, li { white-space: pre-wrap; } Diatonic up - - next score - - - - previous score - - Reset user settings @@ -11229,10 +11627,6 @@ p, li { white-space: pre-wrap; } Respell pitches - - Grace: 8nd after - - Pan score while playing on/off @@ -11297,10 +11691,6 @@ p, li { white-space: pre-wrap; } Master Palette... - - Insert Measure - - Toggle View Mode @@ -11469,10 +11859,6 @@ p, li { white-space: pre-wrap; } Save Style... - - Save Style As Default... - - Select All @@ -11545,6 +11931,162 @@ p, li { white-space: pre-wrap; } Plugin Creator + + Slur + Slur + + + Add Slur + + + + Add Crescendo + + + + Grace: 8th after + + + + Play Previous Chord + + + + Play Previous Measure + + + + Play Next Chord + + + + Play Next Measure + + + + Player Seek to Begin + + + + Player Seek to End + + + + Save Style as Default... + + + + String above (TAB) + + + + Select string above (TAB only) + + + + String below (TAB) + + + + Select string below (TAB only) + + + + Fret 0 (TAB) + + + + Add fret 0 on current string (TAB only) + + + + Fret 1 (TAB) + + + + Add fret 1 on current string (TAB only) + + + + Fret 2 (TAB) + + + + Add fret 2 on current string (TAB only) + + + + Fret 3 (TAB) + + + + Add fret 3 on current string (TAB only) + + + + Fret 4 (TAB) + + + + Add fret 4 of current string (TAB only) + + + + Fret 5 (TAB) + + + + Add fret 5 of current string (TAB only) + + + + Fret 6 (TAB) + + + + Add fret 6 of current string (TAB only) + + + + Fret 7 (TAB) + + + + Add fret 7 of current string (TAB only) + + + + Fret 8 (TAB) + + + + Add fret 8 of current string (TAB only) + + + + Fret 9 (TAB) + + + + Add fret 9 of current string (TAB only) + + + + Staff Types... + + + + Staff type editor + + + + Show staff type editor + + + + Note anchored Textline + + articulation @@ -11687,6 +12229,10 @@ p, li { white-space: pre-wrap; } Line Line + + Wavy line + + magTable diff --git a/share/locale/mscore_zh_CN.ts b/share/locale/mscore_zh_CN.ts index a586c7471c669..1f1d99cead66e 100644 --- a/share/locale/mscore_zh_CN.ts +++ b/share/locale/mscore_zh_CN.ts @@ -3,6 +3,14 @@ AboutBox + + About MuseScore + + + + Copy revision number + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -12,9 +20,9 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Support MuseScore with </span><a href="http://www.musescore.org/en/donate"><span style=" font-size:10pt; text-decoration: underline; color:#0000ff;">your donation</span></a></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Arial'; font-size:10pt;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Copyright </span><span style=" font-size:10pt;">©</span><span style=" font-family:'Arial'; font-size:10pt;"> 1999-2009 Werner Schweer and Others. </span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Copyright </span><span style=" font-size:10pt;">©</span><span style=" font-family:'Arial'; font-size:10pt;"> 1999-2012 Werner Schweer and Others. </span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Published under the GNU General Public License</span></p></body></html> - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> @@ -23,15 +31,7 @@ p, li { white-space: pre-wrap; } <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Arial'; font-size:10pt;"></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">版权所有 </span><span style=" font-size:10pt;">©</span><span style=" font-family:'Arial'; font-size:10pt;"> 1999-2009 Werner Schweer 和他的团队。 </span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">依据 GNU General Public License GNU公众许可方式发布。</span></p></body></html> - - - About MuseScore - - - - Copy revision number - +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">依据 GNU General Public License GNU公众许可方式发布。</span></p></body></html> {3C?} {4.0/?} {3.?} {40/?} {1"?} {2'?} {8.25p?} {400;?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {10p?} {10p?} {0000f?} {10p?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {10p?} {10p?} {0000f?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {10p?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {10p?} {10p?} {10p?} {1999-2012 ?} {0p?} {0p?} {0p?} {0p?} {0;?} {0p?} {10p?} @@ -55,17 +55,6 @@ p, li { white-space: pre-wrap; } About MusicXML - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; font-size:10pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">MusicXML is an open file format for exchanging digital sheet music,</p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">supported by many applications. MusicXML is copyright © MakeMusic, Inc.</p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">All rights reserved. For more information see: <a href="http://www.makemusic.com/xml.html"><span style=" text-decoration: underline; color:#0000ff;">MakeMusic</span></a></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; text-decoration: underline; color:#0000ff;"></p></body></html> - - The MusicXML Public License: @@ -113,6 +102,17 @@ p, li { white-space: pre-wrap; } <p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p></body></html> + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans Serif'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">MusicXML is an open file format for exchanging digital sheet music,</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">supported by many applications. MusicXML is copyright © MakeMusic, Inc.</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">All rights reserved. For more information, see: <a href="http://www.makemusic.com/musicxml"><span style=" text-decoration: underline; color:#0000ff;">MakeMusic</span></a></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; text-decoration: underline; color:#0000ff;"></p></body></html> + + Accidental @@ -131,30 +131,14 @@ p, li { white-space: pre-wrap; } Album Name: - - album name - - - - remove current score - - Remove Score - - move current score down in list - - Down 向下 - - move current score up in list - - Up @@ -163,18 +147,10 @@ p, li { white-space: pre-wrap; } Add Score - - create new album - - New 新建 - - load an existing album - - Print Album @@ -207,6 +183,30 @@ p, li { white-space: pre-wrap; } MuseScore: Load Album + + Album Name + + + + Remove Current Score + + + + Move Current Score Down in List + + + + Move Current Score Up in List + + + + Create New Album + + + + Load an Existing Album + + ArticulationBase @@ -296,6 +296,14 @@ p, li { white-space: pre-wrap; } BarLine 小节线 + + spanFrom: + + + + spanTo: + + BeamBase @@ -351,6 +359,37 @@ p, li { white-space: pre-wrap; } + + BoxBase + + Form + + + + bottomMargin: + + + + topGap: + + + + bottomGap: + + + + leftMargin: + + + + topMargin: + + + + rightMargin: + + + BoxPropertiesBase @@ -1412,6 +1451,22 @@ failed: No. + + 1 + 1 + + + 2 + 2 + + + 3 + 3 + + + 4 + 4 + EditInstrumentBase @@ -2030,6 +2085,10 @@ failed: B -1 + + A 7 + + EditRaster @@ -2058,6 +2117,17 @@ failed: + + EditStaff + + Edit Short Name + + + + Edit Long Name + + + EditStaffBase @@ -2128,10 +2198,6 @@ failed: Type: - - Edit... - - ... ... @@ -2315,16 +2381,6 @@ failed: Select: - - Guitar (modern) - tablatture type - - - - Bass (modern) - tablature type - - Italian (historic) tablature type @@ -2335,10 +2391,6 @@ failed: tablature type - - Set - - Show Clef @@ -2463,6 +2515,68 @@ failed: Preview 预览 + + 6 strings (generic guitar) + tablatture type + + + + 4 strings (generic bass) + tablature type + + + + ukulele + + + + bandurria + + + + Custom + + + + Stem position: + + + + Above + + + + Below + + + + Stem style: + + + + Beside staff + + + + Through staff + + + + Half notes: + + + + As short stem + + + + As slashed stem + + + + Show Rests + + EditStringDataBase @@ -2513,6 +2627,14 @@ failed: Chord 音符组 + + Edit Plain Text + + + + Edit HTML Text + + EditStyleBase @@ -2586,6 +2708,10 @@ spatium unit ---------- spatium unit ---------- +spatium unit +---------- +spatium unit +---------- spatium unit sp @@ -3186,6 +3312,18 @@ p, li { white-space: pre-wrap; } Clef/Key right margin + + Pedal, Trill + + + + Pedal Line + + + + Trill Line + + EditTempoBase @@ -3466,6 +3604,65 @@ spatium unit + + InspectorBarLine + + Staff default + + + + Tick + + + + Tick alt. + + + + Short + + + + Short alt. + + + + Type: + + + + Measure default + + + + Normal + 普通 + + + Dashed + ┈┈(点线) + + + Dotted + + + + Double + + + + End + + + + Span: + + + + Custom + + + InspectorBeam @@ -3685,6 +3882,57 @@ spatium unit ... + + InspectorHairpin + + Form + + + + Hairpin + 音量记号 + + + crescendo + + + + decrescendo + + + + Subtype: + + + + Dynamic Range: + + + + Velo. change: + + + + Staff + 谱表 + + + Part + + + + SYstem + + + + reset value + + + + ... + ... + + InspectorImage @@ -3937,6 +4185,37 @@ spatium unit + + InspectorOttava + + Form + + + + Ottava + 八度记号 + + + Subtype: + + + + 8va + 高八度 + + + 15ma + 倍高八度 + + + 8vb + 低八度 + + + 15mb + 倍低八度 + + InspectorRest @@ -4005,6 +4284,41 @@ spatium unit + + InspectorTrill + + Form + + + + Trill + 颤音 + + + Subtype: + + + + trill line + + + + up prall + + + + down prall + + + + prall prall + + + + wavy line + + + InspectorVBox @@ -4063,6 +4377,29 @@ spatium unit + + InspectorVolta + + Form + + + + Volta + 数字结尾/跳房子 + + + Subtype: + + + + Open + + + + Closed + + + InstrumentDialogBase @@ -4117,24 +4454,24 @@ spatium unit Staves 谱表数 - - visible - - Clef 谱号 - linked + Add Linked Staff - staff linked to previous + Visible + 显示的 + + + Linked - Add Linked Staff + Staff Linked to Previous @@ -4964,6 +5301,34 @@ Would you like to locate %2 now? -> + + 1 + 1 + + + 2 + 2 + + + 4 + 4 + + + 8 + 8 + + + 16 + 16 + + + 32 + 32 + + + 64 + 64 + MeasuresDialogBase @@ -5199,10 +5564,6 @@ Would you like to locate %2 now? &About 关于(&A) - - note entry mode - 音符输入模式 - edit mode 编辑模式 @@ -5674,10 +6035,6 @@ Restore session? please choose a different name: - - Cannot read file: %1 error: %2 - - Overture / Score Writer Files <experimental> (*.ove *.scw);; @@ -5955,55 +6312,99 @@ please choose a different name: - Delete Profile + Delete Profile + + + + LilyPond Format (*.ly) + + + + MuseScore: Export Parts + + + + Parts were successfully exported + + + + Continuous View + + + + About &MusicXML + + + + Report a bug + + + + MuseScore: Load Plugin + + + + MuseScore Plugin (*.qml);;All Files (*) + + + + MuseScore: Save Plugin + + + + MuseScore Plugin File (*.qml) + + + + &Plugins - LilyPond Format (*.ly) + Find - MuseScore: Export Parts + Dotted - Parts were successfully exported + Tick 1 - Continuous View + Tick 2 - About &MusicXML + Short 1 - Report a bug + Short 2 - MuseScore: Load Plugin + plop - MuseScore Plugin (*.qml);;All Files (*) + scoop - MuseScore: Save Plugin + NOTE entry mode - MuseScore Plugin File (*.qml) + DRUM entry mode - &Plugins + TAB entry mode - Find + you cannot create an element @@ -6154,14 +6555,6 @@ please choose a different name: note head group 符头组 - - OnTime: - 起始时间 - - - OffTime: - 终止时间 - invalid 未设置 @@ -6178,6 +6571,10 @@ please choose a different name: Dot3 + + NoteEvents + + OmrPanel @@ -6770,6 +7167,14 @@ save before closing? Choose Images Directory + + MuseScore Shortcuts + + + + Print Shortcuts + + PrefsDialogBase @@ -7405,6 +7810,10 @@ save before closing? Define Shortcut + + Print + 打印 + Properties @@ -8050,26 +8459,6 @@ Sequencer will be disabled. Form 表单 - - Slur - 连句线 - - - Slur End - 连句线终点 - - - Staff: - 谱表: - - - Voice: - 声部: - - - Tick: - Tick: - SlurPropertyBase @@ -8156,6 +8545,14 @@ Sequencer will be disabled. Form + + CHORD + + + + NOTE + + SplitStaff @@ -9022,6 +9419,7 @@ altera Space + spatium unit 谱线间隔(sp) @@ -9056,10 +9454,6 @@ altera frame line width 框线宽度 - - mm - 毫米 - Margin: 边距: @@ -9092,6 +9486,10 @@ altera Background Color: + + sp + sp + TextStyleDialog @@ -9191,6 +9589,10 @@ please choose a different name: unstyled + + align vertical baseline + + TimeDialog @@ -9198,14 +9600,6 @@ please choose a different name: MuseScore: Time Signatures MuseScore: 拍号 - - 4/4 common time - 四四拍子(简写) - - - 2/2 alla breve - 二二拍子(简写) - TimeDialogBase @@ -9367,10 +9761,6 @@ p, li { white-space: pre-wrap; } MuseScore: Transpose MuseScore: 移调 - - Transpose by Key - 根据调号移调 - Cb major / Ab minor Cb 大调 / Ab 小调 @@ -9443,10 +9833,6 @@ p, li { white-space: pre-wrap; } Closest 距离最近的 - - Transpose by Interval - 按音程距离移调 - Perfect Unison 纯一度 @@ -9563,6 +9949,50 @@ p, li { white-space: pre-wrap; } Use double sharps and flats 允许出现重升或重降号 + + Transpose Chromatically + + + + By Key + + + + By Interval + + + + Transpose Diatonically + + + + Second + + + + Third + + + + Fourth + + + + Fifth + + + + Sixth + + + + Seventh + + + + Keep degree alterations + + TremoloBarDialog @@ -9791,10 +10221,6 @@ p, li { white-space: pre-wrap; } Save a Copy... 保存副本... - - Reload - 重新载入 - Create new score 新建乐谱 @@ -10335,14 +10761,6 @@ p, li { white-space: pre-wrap; } Save a copy of the score in addition to the current file 保存一份乐谱副本作为当前文件的补充 - - File reload - 重新加载文件 - - - Reload score from file - 从文件重新加载乐谱 - File close 关闭文件 @@ -10735,10 +11153,6 @@ p, li { white-space: pre-wrap; } Page: end - - Add slur - - Crescendo 渐强符号 @@ -11015,14 +11429,6 @@ p, li { white-space: pre-wrap; } Picture - - Player seek to begin - - - - Player seek to end - - &Transpose... @@ -11207,14 +11613,6 @@ p, li { white-space: pre-wrap; } Diatonic up - - next score - - - - previous score - - Reset user settings @@ -11243,10 +11641,6 @@ p, li { white-space: pre-wrap; } Respell pitches - - Grace: 8nd after - - Pan score while playing on/off @@ -11311,10 +11705,6 @@ p, li { white-space: pre-wrap; } Master Palette... - - Insert Measure - - Toggle View Mode @@ -11483,10 +11873,6 @@ p, li { white-space: pre-wrap; } Save Style... - - Save Style As Default... - - Select All @@ -11559,6 +11945,162 @@ p, li { white-space: pre-wrap; } Plugin Creator + + Slur + 连句线 + + + Add Slur + + + + Add Crescendo + + + + Grace: 8th after + + + + Play Previous Chord + + + + Play Previous Measure + + + + Play Next Chord + + + + Play Next Measure + + + + Player Seek to Begin + + + + Player Seek to End + + + + Save Style as Default... + + + + String above (TAB) + + + + Select string above (TAB only) + + + + String below (TAB) + + + + Select string below (TAB only) + + + + Fret 0 (TAB) + + + + Add fret 0 on current string (TAB only) + + + + Fret 1 (TAB) + + + + Add fret 1 on current string (TAB only) + + + + Fret 2 (TAB) + + + + Add fret 2 on current string (TAB only) + + + + Fret 3 (TAB) + + + + Add fret 3 on current string (TAB only) + + + + Fret 4 (TAB) + + + + Add fret 4 of current string (TAB only) + + + + Fret 5 (TAB) + + + + Add fret 5 of current string (TAB only) + + + + Fret 6 (TAB) + + + + Add fret 6 of current string (TAB only) + + + + Fret 7 (TAB) + + + + Add fret 7 of current string (TAB only) + + + + Fret 8 (TAB) + + + + Add fret 8 of current string (TAB only) + + + + Fret 9 (TAB) + + + + Add fret 9 of current string (TAB only) + + + + Staff Types... + + + + Staff type editor + + + + Show staff type editor + + + + Note anchored Textline + + articulation @@ -11701,6 +12243,10 @@ p, li { white-space: pre-wrap; } Line 线条 + + Wavy line + + magTable diff --git a/share/locale/mscore_zh_Hant.ts b/share/locale/mscore_zh_Hant.ts index 9a8b612c27fe4..1992a87ddadf1 100644 --- a/share/locale/mscore_zh_Hant.ts +++ b/share/locale/mscore_zh_Hant.ts @@ -3,6 +3,14 @@ AboutBox + + About MuseScore + + + + Copy revision number + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -12,18 +20,10 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Support MuseScore with </span><a href="http://www.musescore.org/en/donate"><span style=" font-size:10pt; text-decoration: underline; color:#0000ff;">your donation</span></a></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Arial'; font-size:10pt;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Copyright </span><span style=" font-size:10pt;">©</span><span style=" font-family:'Arial'; font-size:10pt;"> 1999-2009 Werner Schweer and Others. </span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Copyright </span><span style=" font-size:10pt;">©</span><span style=" font-family:'Arial'; font-size:10pt;"> 1999-2012 Werner Schweer and Others. </span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Published under the GNU General Public License</span></p></body></html> - - About MuseScore - - - - Copy revision number - - AboutBoxDialog @@ -46,17 +46,6 @@ p, li { white-space: pre-wrap; } About MusicXML - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; font-size:10pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">MusicXML is an open file format for exchanging digital sheet music,</p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">supported by many applications. MusicXML is copyright © MakeMusic, Inc.</p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">All rights reserved. For more information see: <a href="http://www.makemusic.com/xml.html"><span style=" text-decoration: underline; color:#0000ff;">MakeMusic</span></a></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; text-decoration: underline; color:#0000ff;"></p></body></html> - - The MusicXML Public License: @@ -104,6 +93,17 @@ p, li { white-space: pre-wrap; } <p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p></body></html> + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans Serif'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">MusicXML is an open file format for exchanging digital sheet music,</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">supported by many applications. MusicXML is copyright © MakeMusic, Inc.</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">All rights reserved. For more information, see: <a href="http://www.makemusic.com/musicxml"><span style=" text-decoration: underline; color:#0000ff;">MakeMusic</span></a></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; text-decoration: underline; color:#0000ff;"></p></body></html> + + Accidental @@ -123,79 +123,79 @@ p, li { white-space: pre-wrap; } - album name + Remove Score - remove current score + Down - Remove Score + Up - move current score down in list + Add Score - Down + New - move current score up in list + Print Album - Up + MuseScore Album Files (*.album);; - Add Score + All Files (*) - create new album + MuseScore Files (*.mscz *.mscx *.msc);; - New + Join Scores - load an existing album + Load - Print Album + MuseScore: Add Score - MuseScore Album Files (*.album);; + MuseScore: Load Album - All Files (*) + Album Name - MuseScore Files (*.mscz *.mscx *.msc);; + Remove Current Score - Join Scores + Move Current Score Down in List - Load + Move Current Score Up in List - MuseScore: Add Score + Create New Album - MuseScore: Load Album + Load an Existing Album @@ -287,6 +287,14 @@ p, li { white-space: pre-wrap; } BarLine + + spanFrom: + + + + spanTo: + + BeamBase @@ -342,6 +350,37 @@ p, li { white-space: pre-wrap; } + + BoxBase + + Form + + + + bottomMargin: + + + + topGap: + + + + bottomGap: + + + + leftMargin: + + + + topMargin: + + + + rightMargin: + + + BoxPropertiesBase @@ -1401,6 +1440,22 @@ failed: No. + + 1 + + + + 2 + + + + 3 + + + + 4 + + EditInstrumentBase @@ -2019,6 +2074,10 @@ failed: B -1 + + A 7 + + EditRaster @@ -2047,6 +2106,17 @@ failed: + + EditStaff + + Edit Short Name + + + + Edit Long Name + + + EditStaffBase @@ -2117,10 +2187,6 @@ failed: Type: - - Edit... - - ... @@ -2304,16 +2370,6 @@ failed: Select: - - Guitar (modern) - tablatture type - - - - Bass (modern) - tablature type - - Italian (historic) tablature type @@ -2324,10 +2380,6 @@ failed: tablature type - - Set - - Show Clef @@ -2452,6 +2504,68 @@ failed: Preview + + 6 strings (generic guitar) + tablatture type + + + + 4 strings (generic bass) + tablature type + + + + ukulele + + + + bandurria + + + + Custom + + + + Stem position: + + + + Above + + + + Below + + + + Stem style: + + + + Beside staff + + + + Through staff + + + + Half notes: + + + + As short stem + + + + As slashed stem + + + + Show Rests + + EditStringDataBase @@ -2502,6 +2616,14 @@ failed: Chord + + Edit Plain Text + + + + Edit HTML Text + + EditStyleBase @@ -2583,6 +2705,10 @@ spatium unit ---------- spatium unit ---------- +spatium unit +---------- +spatium unit +---------- spatium unit @@ -3175,6 +3301,18 @@ p, li { white-space: pre-wrap; } Clef/Key right margin + + Pedal, Trill + + + + Pedal Line + + + + Trill Line + + EditTempoBase @@ -3455,6 +3593,65 @@ spatium unit + + InspectorBarLine + + Staff default + + + + Tick + + + + Tick alt. + + + + Short + + + + Short alt. + + + + Type: + + + + Measure default + + + + Normal + + + + Dashed + + + + Dotted + + + + Double + + + + End + + + + Span: + + + + Custom + + + InspectorBeam @@ -3674,6 +3871,57 @@ spatium unit + + InspectorHairpin + + Form + + + + Hairpin + + + + crescendo + + + + decrescendo + + + + Subtype: + + + + Dynamic Range: + + + + Velo. change: + + + + Staff + + + + Part + + + + SYstem + + + + reset value + + + + ... + + + InspectorImage @@ -3926,6 +4174,37 @@ spatium unit + + InspectorOttava + + Form + + + + Ottava + + + + Subtype: + + + + 8va + + + + 15ma + + + + 8vb + + + + 15mb + + + InspectorRest @@ -3994,6 +4273,41 @@ spatium unit + + InspectorTrill + + Form + + + + Trill + + + + Subtype: + + + + trill line + + + + up prall + + + + down prall + + + + prall prall + + + + wavy line + + + InspectorVBox @@ -4052,6 +4366,29 @@ spatium unit + + InspectorVolta + + Form + + + + Volta + + + + Subtype: + + + + Open + + + + Closed + + + InstrumentDialogBase @@ -4107,23 +4444,23 @@ spatium unit - visible + Clef - Clef + Add Linked Staff - linked + Visible - staff linked to previous + Linked - Add Linked Staff + Staff Linked to Previous @@ -4951,6 +5288,34 @@ Would you like to locate %2 now? -> + + 1 + + + + 2 + + + + 4 + + + + 8 + + + + 16 + + + + 32 + + + + 64 + + MeasuresDialogBase @@ -5126,10 +5491,6 @@ Would you like to locate %2 now? &About - - note entry mode - - edit mode @@ -5658,10 +6019,6 @@ Restore session? please choose a different name: - - Cannot read file: %1 error: %2 - - Overture / Score Writer Files <experimental> (*.ove *.scw);; @@ -5983,11 +6340,55 @@ please choose a different name: - &Plugins + &Plugins + + + + Find + + + + Dotted + + + + Tick 1 + + + + Tick 2 + + + + Short 1 + + + + Short 2 + + + + plop + + + + scoop + + + + NOTE entry mode + + + + DRUM entry mode + + + + TAB entry mode - Find + you cannot create an element @@ -6138,14 +6539,6 @@ please choose a different name: note head group - - OnTime: - - - - OffTime: - - invalid @@ -6162,6 +6555,10 @@ please choose a different name: Dot3 + + NoteEvents + + OmrPanel @@ -6754,6 +7151,14 @@ save before closing? Choose Images Directory + + MuseScore Shortcuts + + + + Print Shortcuts + + PrefsDialogBase @@ -7389,6 +7794,10 @@ save before closing? Define Shortcut + + Print + + Properties @@ -8031,26 +8440,6 @@ Sequencer will be disabled. Form - - Slur - - - - Slur End - - - - Staff: - - - - Voice: - - - - Tick: - - SlurPropertyBase @@ -8137,6 +8526,14 @@ Sequencer will be disabled. Form + + CHORD + + + + NOTE + + SplitStaff @@ -9003,6 +9400,7 @@ altera Space + spatium unit @@ -9037,10 +9435,6 @@ altera frame line width - - mm - - Margin: @@ -9073,6 +9467,10 @@ altera Background Color: + + sp + + TextStyleDialog @@ -9172,6 +9570,10 @@ please choose a different name: unstyled + + align vertical baseline + + TimeDialog @@ -9179,14 +9581,6 @@ please choose a different name: MuseScore: Time Signatures - - 4/4 common time - - - - 2/2 alla breve - - TimeDialogBase @@ -9345,10 +9739,6 @@ p, li { white-space: pre-wrap; } MuseScore: Transpose - - Transpose by Key - - Cb major / Ab minor @@ -9421,10 +9811,6 @@ p, li { white-space: pre-wrap; } Closest - - Transpose by Interval - - Perfect Unison @@ -9541,6 +9927,50 @@ p, li { white-space: pre-wrap; } Use double sharps and flats + + Transpose Chromatically + + + + By Key + + + + By Interval + + + + Transpose Diatonically + + + + Second + + + + Third + + + + Fourth + + + + Fifth + + + + Sixth + + + + Seventh + + + + Keep degree alterations + + TremoloBarDialog @@ -9769,10 +10199,6 @@ p, li { white-space: pre-wrap; } Save a Copy... - - Reload - - Create new score @@ -10313,14 +10739,6 @@ p, li { white-space: pre-wrap; } Save a copy of the score in addition to the current file - - File reload - - - - Reload score from file - - File close @@ -10713,10 +11131,6 @@ p, li { white-space: pre-wrap; } Page: end - - Add slur - - Crescendo @@ -10993,14 +11407,6 @@ p, li { white-space: pre-wrap; } Picture - - Player seek to begin - - - - Player seek to end - - &Transpose... @@ -11185,14 +11591,6 @@ p, li { white-space: pre-wrap; } Diatonic up - - next score - - - - previous score - - Reset user settings @@ -11221,10 +11619,6 @@ p, li { white-space: pre-wrap; } Respell pitches - - Grace: 8nd after - - Pan score while playing on/off @@ -11289,10 +11683,6 @@ p, li { white-space: pre-wrap; } Master Palette... - - Insert Measure - - Toggle View Mode @@ -11461,10 +11851,6 @@ p, li { white-space: pre-wrap; } Save Style... - - Save Style As Default... - - Select All @@ -11537,6 +11923,162 @@ p, li { white-space: pre-wrap; } Plugin Creator + + Slur + + + + Add Slur + + + + Add Crescendo + + + + Grace: 8th after + + + + Play Previous Chord + + + + Play Previous Measure + + + + Play Next Chord + + + + Play Next Measure + + + + Player Seek to Begin + + + + Player Seek to End + + + + Save Style as Default... + + + + String above (TAB) + + + + Select string above (TAB only) + + + + String below (TAB) + + + + Select string below (TAB only) + + + + Fret 0 (TAB) + + + + Add fret 0 on current string (TAB only) + + + + Fret 1 (TAB) + + + + Add fret 1 on current string (TAB only) + + + + Fret 2 (TAB) + + + + Add fret 2 on current string (TAB only) + + + + Fret 3 (TAB) + + + + Add fret 3 on current string (TAB only) + + + + Fret 4 (TAB) + + + + Add fret 4 of current string (TAB only) + + + + Fret 5 (TAB) + + + + Add fret 5 of current string (TAB only) + + + + Fret 6 (TAB) + + + + Add fret 6 of current string (TAB only) + + + + Fret 7 (TAB) + + + + Add fret 7 of current string (TAB only) + + + + Fret 8 (TAB) + + + + Add fret 8 of current string (TAB only) + + + + Fret 9 (TAB) + + + + Add fret 9 of current string (TAB only) + + + + Staff Types... + + + + Staff type editor + + + + Show staff type editor + + + + Note anchored Textline + + articulation @@ -11679,6 +12221,10 @@ p, li { white-space: pre-wrap; } Line + + Wavy line + + magTable diff --git a/share/locale/mscore_zh_TW.ts b/share/locale/mscore_zh_TW.ts index e532d9d23ab66..26d7ce02645f9 100644 --- a/share/locale/mscore_zh_TW.ts +++ b/share/locale/mscore_zh_TW.ts @@ -3,6 +3,14 @@ AboutBox + + About MuseScore + + + + Copy revision number + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> @@ -12,18 +20,10 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Support MuseScore with </span><a href="http://www.musescore.org/en/donate"><span style=" font-size:10pt; text-decoration: underline; color:#0000ff;">your donation</span></a></p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Arial'; font-size:10pt;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Copyright </span><span style=" font-size:10pt;">©</span><span style=" font-family:'Arial'; font-size:10pt;"> 1999-2009 Werner Schweer and Others. </span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Copyright </span><span style=" font-size:10pt;">©</span><span style=" font-family:'Arial'; font-size:10pt;"> 1999-2012 Werner Schweer and Others. </span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Arial'; font-size:10pt;">Published under the GNU General Public License</span></p></body></html> - - About MuseScore - - - - Copy revision number - - AboutBoxDialog @@ -46,17 +46,6 @@ p, li { white-space: pre-wrap; } About MusicXML - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; font-size:10pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">MusicXML is an open file format for exchanging digital sheet music,</p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">supported by many applications. MusicXML is copyright © MakeMusic, Inc.</p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">All rights reserved. For more information see: <a href="http://www.makemusic.com/xml.html"><span style=" text-decoration: underline; color:#0000ff;">MakeMusic</span></a></p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; text-decoration: underline; color:#0000ff;"></p></body></html> - - The MusicXML Public License: @@ -104,6 +93,17 @@ p, li { white-space: pre-wrap; } <p style="-qt-paragraph-type:empty; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p></body></html> + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'Sans Serif'; font-size:10pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">MusicXML is an open file format for exchanging digital sheet music,</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">supported by many applications. MusicXML is copyright © MakeMusic, Inc.</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">All rights reserved. For more information, see: <a href="http://www.makemusic.com/musicxml"><span style=" text-decoration: underline; color:#0000ff;">MakeMusic</span></a></p> +<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; text-decoration: underline; color:#0000ff;"></p></body></html> + + Accidental @@ -122,30 +122,14 @@ p, li { white-space: pre-wrap; } Album Name: - - album name - - - - remove current score - - Remove Score - - move current score down in list - - Down 向下 - - move current score up in list - - Up 向上 @@ -154,18 +138,10 @@ p, li { white-space: pre-wrap; } Add Score - - create new album - - New 新增 - - load an existing album - - Print Album @@ -198,6 +174,30 @@ p, li { white-space: pre-wrap; } MuseScore: Load Album + + Album Name + + + + Remove Current Score + + + + Move Current Score Down in List + + + + Move Current Score Up in List + + + + Create New Album + + + + Load an Existing Album + + ArticulationBase @@ -287,6 +287,14 @@ p, li { white-space: pre-wrap; } BarLine 小節線 + + spanFrom: + + + + spanTo: + + BeamBase @@ -342,6 +350,37 @@ p, li { white-space: pre-wrap; } + + BoxBase + + Form + 表單 + + + bottomMargin: + + + + topGap: + + + + bottomGap: + + + + leftMargin: + + + + topMargin: + + + + rightMargin: + + + BoxPropertiesBase @@ -1403,6 +1442,22 @@ failed: No. + + 1 + 1 + + + 2 + 2 + + + 3 + 3 + + + 4 + 4 + EditInstrumentBase @@ -2021,6 +2076,10 @@ failed: B -1 + + A 7 + + EditRaster @@ -2049,6 +2108,17 @@ failed: + + EditStaff + + Edit Short Name + + + + Edit Long Name + + + EditStaffBase @@ -2119,10 +2189,6 @@ failed: Type: 單位: - - Edit... - - ... ... @@ -2306,16 +2372,6 @@ failed: Select: - - Guitar (modern) - tablatture type - - - - Bass (modern) - tablature type - - Italian (historic) tablature type @@ -2326,10 +2382,6 @@ failed: tablature type - - Set - - Show Clef @@ -2454,6 +2506,68 @@ failed: Preview 預覽 + + 6 strings (generic guitar) + tablatture type + + + + 4 strings (generic bass) + tablature type + + + + ukulele + + + + bandurria + + + + Custom + + + + Stem position: + + + + Above + + + + Below + + + + Stem style: + + + + Beside staff + + + + Through staff + + + + Half notes: + + + + As short stem + + + + As slashed stem + + + + Show Rests + + EditStringDataBase @@ -2504,6 +2618,14 @@ failed: Chord 和弦音符 + + Edit Plain Text + + + + Edit HTML Text + + EditStyleBase @@ -2577,6 +2699,10 @@ spatium unit ---------- spatium unit ---------- +spatium unit +---------- +spatium unit +---------- spatium unit @@ -3177,6 +3303,18 @@ p, li { white-space: pre-wrap; } Clef/Key right margin + + Pedal, Trill + + + + Pedal Line + + + + Trill Line + + EditTempoBase @@ -3457,6 +3595,65 @@ spatium unit + + InspectorBarLine + + Staff default + + + + Tick + + + + Tick alt. + + + + Short + + + + Short alt. + + + + Type: + 單位: + + + Measure default + + + + Normal + + + + Dashed + + + + Dotted + + + + Double + + + + End + 結束 + + + Span: + + + + Custom + + + InspectorBeam @@ -3676,6 +3873,57 @@ spatium unit ... + + InspectorHairpin + + Form + 表單 + + + Hairpin + 音量變化記號 + + + crescendo + + + + decrescendo + + + + Subtype: + + + + Dynamic Range: + + + + Velo. change: + + + + Staff + 譜表 + + + Part + + + + SYstem + + + + reset value + + + + ... + ... + + InspectorImage @@ -3928,6 +4176,37 @@ spatium unit + + InspectorOttava + + Form + 表單 + + + Ottava + 八度記號 + + + Subtype: + + + + 8va + 高八度 + + + 15ma + 倍高八度 + + + 8vb + 低八度 + + + 15mb + 倍低八度 + + InspectorRest @@ -3996,6 +4275,41 @@ spatium unit + + InspectorTrill + + Form + 表單 + + + Trill + 震音記號 + + + Subtype: + + + + trill line + + + + up prall + + + + down prall + + + + prall prall + + + + wavy line + + + InspectorVBox @@ -4054,6 +4368,29 @@ spatium unit + + InspectorVolta + + Form + 表單 + + + Volta + 反復記號 + + + Subtype: + + + + Open + + + + Closed + + + InstrumentDialogBase @@ -4108,24 +4445,24 @@ spatium unit Staves 譜表個數 - - visible - - Clef 譜號 - linked + Add Linked Staff - staff linked to previous + Visible + 顯示 + + + Linked - Add Linked Staff + Staff Linked to Previous @@ -4955,6 +5292,34 @@ Would you like to locate %2 now? -> + + 1 + 1 + + + 2 + 2 + + + 4 + 4 + + + 8 + 8 + + + 16 + 16 + + + 32 + 32 + + + 64 + 64 + MeasuresDialogBase @@ -5191,10 +5556,6 @@ Would you like to locate %2 now? &About 關於(&A) - - note entry mode - 音符輸入模式 - edit mode 編輯模式 @@ -5664,10 +6025,6 @@ Restore session? please choose a different name: - - Cannot read file: %1 error: %2 - - Overture / Score Writer Files <experimental> (*.ove *.scw);; @@ -5965,35 +6322,79 @@ please choose a different name: - About &MusicXML + About &MusicXML + + + + Report a bug + + + + MuseScore: Load Plugin + + + + MuseScore Plugin (*.qml);;All Files (*) + + + + MuseScore: Save Plugin + + + + MuseScore Plugin File (*.qml) + + + + &Plugins + + + + Find + + + + Dotted + + + + Tick 1 + + + + Tick 2 + + + + Short 1 - Report a bug + Short 2 - MuseScore: Load Plugin + plop - MuseScore Plugin (*.qml);;All Files (*) + scoop - MuseScore: Save Plugin + NOTE entry mode - MuseScore Plugin File (*.qml) + DRUM entry mode - &Plugins + TAB entry mode - Find + you cannot create an element @@ -6144,14 +6545,6 @@ please choose a different name: note head group 符頭群組 - - OnTime: - - - - OffTime: - - invalid 不設定 @@ -6168,6 +6561,10 @@ please choose a different name: Dot3 + + NoteEvents + + OmrPanel @@ -6760,6 +7157,14 @@ save before closing? Choose Images Directory + + MuseScore Shortcuts + + + + Print Shortcuts + + PrefsDialogBase @@ -7395,6 +7800,10 @@ save before closing? Define Shortcut + + Print + + Properties @@ -8040,26 +8449,6 @@ Sequencer will be disabled. Form 表單 - - Slur - 圓滑線 - - - Slur End - 圓滑線終點 - - - Staff: - 譜表: - - - Voice: - 聲部: - - - Tick: - 勾線: - SlurPropertyBase @@ -8146,6 +8535,14 @@ Sequencer will be disabled. Form 表單 + + CHORD + + + + NOTE + + SplitStaff @@ -9012,6 +9409,7 @@ altera Space + spatium unit 間隔 @@ -9046,10 +9444,6 @@ altera frame line width 框線寬度 - - mm - 毫米 - Margin: 邊緣: @@ -9082,6 +9476,10 @@ altera Background Color: + + sp + + TextStyleDialog @@ -9181,6 +9579,10 @@ please choose a different name: unstyled + + align vertical baseline + + TimeDialog @@ -9188,14 +9590,6 @@ please choose a different name: MuseScore: Time Signatures - - 4/4 common time - 4/4 一般拍子 - - - 2/2 alla breve - - TimeDialogBase @@ -9357,10 +9751,6 @@ p, li { white-space: pre-wrap; } MuseScore: Transpose - - Transpose by Key - - Cb major / Ab minor @@ -9433,10 +9823,6 @@ p, li { white-space: pre-wrap; } Closest - - Transpose by Interval - - Perfect Unison @@ -9553,6 +9939,50 @@ p, li { white-space: pre-wrap; } Use double sharps and flats + + Transpose Chromatically + + + + By Key + + + + By Interval + + + + Transpose Diatonically + + + + Second + + + + Third + + + + Fourth + + + + Fifth + + + + Sixth + + + + Seventh + + + + Keep degree alterations + + TremoloBarDialog @@ -9781,10 +10211,6 @@ p, li { white-space: pre-wrap; } Save a Copy... - - Reload - - Create new score @@ -10325,14 +10751,6 @@ p, li { white-space: pre-wrap; } Save a copy of the score in addition to the current file - - File reload - - - - Reload score from file - - File close @@ -10725,10 +11143,6 @@ p, li { white-space: pre-wrap; } Page: end - - Add slur - - Crescendo @@ -11005,14 +11419,6 @@ p, li { white-space: pre-wrap; } Picture - - Player seek to begin - - - - Player seek to end - - &Transpose... @@ -11197,14 +11603,6 @@ p, li { white-space: pre-wrap; } Diatonic up - - next score - - - - previous score - - Reset user settings @@ -11233,10 +11631,6 @@ p, li { white-space: pre-wrap; } Respell pitches - - Grace: 8nd after - - Pan score while playing on/off @@ -11301,10 +11695,6 @@ p, li { white-space: pre-wrap; } Master Palette... - - Insert Measure - - Toggle View Mode @@ -11473,10 +11863,6 @@ p, li { white-space: pre-wrap; } Save Style... - - Save Style As Default... - - Select All @@ -11549,6 +11935,162 @@ p, li { white-space: pre-wrap; } Plugin Creator + + Slur + 圓滑線 + + + Add Slur + + + + Add Crescendo + + + + Grace: 8th after + + + + Play Previous Chord + + + + Play Previous Measure + + + + Play Next Chord + + + + Play Next Measure + + + + Player Seek to Begin + + + + Player Seek to End + + + + Save Style as Default... + + + + String above (TAB) + + + + Select string above (TAB only) + + + + String below (TAB) + + + + Select string below (TAB only) + + + + Fret 0 (TAB) + + + + Add fret 0 on current string (TAB only) + + + + Fret 1 (TAB) + + + + Add fret 1 on current string (TAB only) + + + + Fret 2 (TAB) + + + + Add fret 2 on current string (TAB only) + + + + Fret 3 (TAB) + + + + Add fret 3 on current string (TAB only) + + + + Fret 4 (TAB) + + + + Add fret 4 of current string (TAB only) + + + + Fret 5 (TAB) + + + + Add fret 5 of current string (TAB only) + + + + Fret 6 (TAB) + + + + Add fret 6 of current string (TAB only) + + + + Fret 7 (TAB) + + + + Add fret 7 of current string (TAB only) + + + + Fret 8 (TAB) + + + + Add fret 8 of current string (TAB only) + + + + Fret 9 (TAB) + + + + Add fret 9 of current string (TAB only) + + + + Staff Types... + + + + Staff type editor + + + + Show staff type editor + + + + Note anchored Textline + + articulation @@ -11691,6 +12233,10 @@ p, li { white-space: pre-wrap; } Line 線條 + + Wavy line + + magTable