From 8d5a94808cd2468d1eaded3df1c9b9e6233842d2 Mon Sep 17 00:00:00 2001 From: Werner Schweer Date: Wed, 8 Aug 2012 11:16:55 +0200 Subject: [PATCH] build fixes for plugin manual --- .gitignore | 1 - CMakeLists.txt | 11 + Makefile | 2 - manual/genManual.cpp | 19 +- mscore/pluginCreator.cpp | 7 - mscore/revision.h | 2 +- share/locale/mscore_af.ts | 4341 ++++++++++++++---------------- share/locale/mscore_ar.ts | 879 +++--- share/locale/mscore_ast.ts | 4295 ++++++++++++++--------------- share/locale/mscore_be.ts | 4445 ++++++++++++++----------------- share/locale/mscore_bg.ts | 4341 ++++++++++++++---------------- share/locale/mscore_ca.ts | 898 +++---- share/locale/mscore_cs.ts | 894 +++---- share/locale/mscore_da.ts | 900 +++---- share/locale/mscore_de.ts | 905 +++---- share/locale/mscore_el.ts | 902 +++---- share/locale/mscore_en_GB.ts | 885 +++--- share/locale/mscore_en_US.ts | 864 +++--- share/locale/mscore_eo.ts | 885 +++--- share/locale/mscore_es.ts | 894 +++---- share/locale/mscore_et.ts | 864 +++--- share/locale/mscore_eu.ts | 4329 ++++++++++++++---------------- share/locale/mscore_fa.ts | 885 +++--- share/locale/mscore_fi.ts | 890 +++---- share/locale/mscore_fo.ts | 885 +++--- share/locale/mscore_fr.ts | 900 +++---- share/locale/mscore_gl.ts | 898 +++---- share/locale/mscore_he.ts | 4297 ++++++++++++++---------------- share/locale/mscore_hi_IN.ts | 858 +++--- share/locale/mscore_hr.ts | 864 +++--- share/locale/mscore_hu.ts | 899 +++---- share/locale/mscore_id.ts | 856 +++--- share/locale/mscore_it.ts | 891 +++---- share/locale/mscore_ja.ts | 886 +++--- share/locale/mscore_ko.ts | 4265 ++++++++++++++--------------- share/locale/mscore_lt.ts | 4341 ++++++++++++++---------------- share/locale/mscore_nb.ts | 902 +++---- share/locale/mscore_nl.ts | 902 +++---- share/locale/mscore_pl.ts | 898 +++---- share/locale/mscore_pt.ts | 888 +++--- share/locale/mscore_pt_BR.ts | 900 +++---- share/locale/mscore_ro.ts | 900 +++---- share/locale/mscore_ru.ts | 885 +++--- share/locale/mscore_sk.ts | 4387 ++++++++++++++---------------- share/locale/mscore_sl.ts | 4332 ++++++++++++++---------------- share/locale/mscore_sv.ts | 897 +++---- share/locale/mscore_th.ts | 879 +++--- share/locale/mscore_tr.ts | 872 +++--- share/locale/mscore_uk.ts | 891 +++---- share/locale/mscore_vi.ts | 885 +++--- share/locale/mscore_zh_CN.ts | 902 +++---- share/locale/mscore_zh_Hant.ts | 854 +++--- share/locale/mscore_zh_TW.ts | 872 +++--- share/manual/plugins/manual.css | 67 + 54 files changed, 33673 insertions(+), 42618 deletions(-) create mode 100644 share/manual/plugins/manual.css diff --git a/.gitignore b/.gitignore index 64e926575f5b..43b5e8e5e2bf 100644 --- a/.gitignore +++ b/.gitignore @@ -10,7 +10,6 @@ applebuild *.qm share/manual/en share/manual/de -share/manual/plugins Doc DocLib build.qt5 diff --git a/CMakeLists.txt b/CMakeLists.txt index e811d2ef0f96..9cf2d07d85fb 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -468,3 +468,14 @@ add_custom_target(lrelease WORKING_DIRECTORY ${PROJECT_BINARY_DIR} ) +add_custom_command(OUTPUT ${PROJECT_BINARY_DIR}/plugins + COMMAND genManual ${PROJECT_SOURCE_DIR} ${PROJECT_BINARY_DIR} + DEPENDS genManual + ) + +add_custom_target(install_plugins_manual + COMMAND ${PROJECT_BINARY_DIR}/manual/genManual ${PROJECT_SOURCE_DIR} /usr/local/${Mscore_SHARE_NAME}${Mscore_INSTALL_NAME}manual + ) + +install(CODE "execute_process(COMMAND make install_plugins_manual)") + diff --git a/Makefile b/Makefile index e1ab14d467c0..32353a5d600e 100755 --- a/Makefile +++ b/Makefile @@ -33,7 +33,6 @@ release: revision ..; \ make lrelease; \ make -j ${CPUS}; \ - ./manual/genManual .. \ debug: @@ -44,7 +43,6 @@ debug: ..; \ make lrelease; \ make -j ${CPUS}; \ - ./manual/genManual .. \ qt5: diff --git a/manual/genManual.cpp b/manual/genManual.cpp index f897d26081fb..34fc29176512 100644 --- a/manual/genManual.cpp +++ b/manual/genManual.cpp @@ -13,6 +13,7 @@ #include QString srcPath; +QString dstPath; //--------------------------------------------------------- // Prop @@ -298,10 +299,10 @@ static void writeOutput() } addFooter(out); - QString ofile = srcPath + "/share/manual/plugins/" + cl.name.toLower() + ".html"; + QString ofile = dstPath + "/plugins/" + cl.name.toLower() + ".html"; QFile of(ofile); if (!of.open(QIODevice::WriteOnly)) { - printf("open <%s> failed\n", qPrintable(ofile)); + printf("open <%s> failed: %s\n", qPrintable(ofile), qPrintable(of.errorString())); exit(-4); } of.write(out.toUtf8()); @@ -322,7 +323,7 @@ static void writeOutput() } addFooter(out); - QString ofile = srcPath + "/share/manual/plugins/plugins.html"; + QString ofile = dstPath + "/plugins/plugins.html"; QFile of(ofile); if (!of.open(QIODevice::WriteOnly)) { printf("open <%s> failed\n", qPrintable(ofile)); @@ -339,7 +340,7 @@ static void writeOutput() static void usage(const char* program, const char* hint) { fprintf(stderr, "%s: %s\n", program, hint); - fprintf(stderr, "usage: %s [options] srcPath\n", program); + fprintf(stderr, "usage: %s [options] srcPath dstPath\n", program); fprintf(stderr, "options: -v print version\n" ); } @@ -374,11 +375,12 @@ int main(int argc, char* argv[]) } argc -= optind; argv += optind; - if (argc != 1) { + if (argc != 2) { usage(prog, "bad arguments"); return -1; } srcPath = argv[0]; + dstPath = argv[1]; QStringList files; files << "mscore/plugins.h"; @@ -403,6 +405,13 @@ int main(int argc, char* argv[]) scanFile(in); inFile.close(); } + QDir dir; + QString opath = dstPath + "/plugins"; + if (!dir.mkpath(opath)) { + fprintf(stderr, "%s: cannot create destination path: <%s>\n", + argv[0], qPrintable(dstPath)); + return -3; + } writeOutput(); return 0; } diff --git a/mscore/pluginCreator.cpp b/mscore/pluginCreator.cpp index a291485ae49f..e169454f64a5 100644 --- a/mscore/pluginCreator.cpp +++ b/mscore/pluginCreator.cpp @@ -99,13 +99,6 @@ QString PluginCreator::manualPath() { QString path = mscoreGlobalShare; path += "/manual/plugins/plugins.html"; - - QString p1 = QDir::homePath(); // hack for debugging - p1 += "/mscore/share/manual/plugins/plugins.html"; - if (QFile(p1).exists()) { - printf("PluginManual: found <%s>\n", qPrintable(p1)); - return p1; - } return path; } diff --git a/mscore/revision.h b/mscore/revision.h index 39fa96bdc4f3..76f495302f67 100644 --- a/mscore/revision.h +++ b/mscore/revision.h @@ -1 +1 @@ -6c8c240 +5d0280e diff --git a/share/locale/mscore_af.ts b/share/locale/mscore_af.ts index 0447e5dbd2a7..bfe1aa024316 100644 --- a/share/locale/mscore_af.ts +++ b/share/locale/mscore_af.ts @@ -31,17 +31,17 @@ p, li { white-space: pre-wrap; } AboutBoxDialog - + Unstable Prerelease for Version: - + Version: - + Revision: %1 @@ -141,99 +141,94 @@ p, li { white-space: pre-wrap; } - + remove current score - - - Remove Score - - - score list + Remove Score - + move current score down in list - + Down - + move current score up in list - + Up - + Add Score - path to new score you want to add + create new album - - open file manager + + New - ... + load an existing album - - create new album + + Load - - New + + Join Scores - - load an existing album + + Print Album - - Join Scores + + MuseScore Album Files (*.album);; - - Print Album + + + All Files (*) - - MuseScore Album Files (*.album);; + + MuseScore Files (*.mscz *.mscx *.msc);; - - - All Files (*) + + MuseScore: Add Score - - MuseScore Files (*.mscz *.mscx *.msc);; + + MuseScore: Load Album @@ -1456,7 +1451,7 @@ spatium unit - showCourtesyClef + showCourtesy @@ -1497,7 +1492,7 @@ spatium unit - Drumset + Edit Drumset @@ -1608,29 +1603,29 @@ spatium unit - + Open File - + failed: - + MuseScore: Open File - + Write File failed: - + MuseScore: Write Drumset @@ -1643,17 +1638,17 @@ failed: - + Note - + Shortcut - + Name @@ -1663,97 +1658,97 @@ failed: - + Note Head: - + Staff Line: - + Stem Direction: - + Auto - + Up - + Down - + Default Voice: - + Shortcut: - + A - + B - + C - + D - + E - + F - + G - + -- - + Load - + Save - + No. @@ -3181,48 +3176,48 @@ failed: - + Barlines - + Notes - + Arpeggios - + Beams - + Sizes - + Hairpins - + Chordnames - + Articulations, Ornaments @@ -3262,45 +3257,44 @@ failed: - - - - - - - - + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + sp spatium unit ---------- @@ -3341,11 +3335,11 @@ spatium unit - - - - - + + + + + % @@ -3380,7 +3374,7 @@ spatium unit - + shorten stems @@ -3418,8 +3412,8 @@ spatium unit - - + + spaces @@ -3430,19 +3424,19 @@ spatium unit - + Clefs - + Figured Bass - + Accidentals @@ -3614,40 +3608,35 @@ spatium unit - + minimum Measure width - + Spacing (1=tight) - + Min. note distance - + Clef left margin - + Key sig. left margin - + Time sig. left margin - - - Clef-key distance - - Clef-barline distance @@ -3655,227 +3644,222 @@ spatium unit - Begin repeat left margin - - - - 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 - + 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 @@ -3886,7 +3870,7 @@ spatium unit - + Slurs/Ties @@ -3941,62 +3925,67 @@ p, li { white-space: pre-wrap; } - + 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 @@ -4013,90 +4002,90 @@ p, li { white-space: pre-wrap; } - + ... - - - + + + 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 @@ -4259,7 +4248,7 @@ p, li { white-space: pre-wrap; } GreendotButton - + record @@ -4356,7 +4345,7 @@ p, li { white-space: pre-wrap; } Inspector - + Inspector @@ -4379,8 +4368,8 @@ p, li { white-space: pre-wrap; } - - + + sp spatium unit ---------- @@ -4388,57 +4377,57 @@ spatium unit - + Offset Y: - + Direction: - + Auto - + Up - + Down - + Anchor: - + Top Staff - + Bottom Staff - + Chord Automatic - + Top Chord - + Bottom Chord @@ -4461,27 +4450,27 @@ spatium unit - - + + sp - + Position - - - - - + + + + + ... - + User Position @@ -4530,48 +4519,77 @@ spatium unit - - + Offset X: + + + + + + sp + spatium unit +---------- +spatium unit + + + + + + reset value - - - + + + + + ... - + Small - + Stemless - + Stem direction - + Auto - + Up - + Down + + + Offset Y: + + + + + InspectorClef + + + Show Courtesy Clef + + InspectorElement @@ -4586,31 +4604,31 @@ spatium unit - + Offset X: - + Color: - - - - + + + + ... - + Visible - - + + sp spatium unit ---------- @@ -4618,7 +4636,7 @@ spatium unit - + Offset Y: @@ -4641,12 +4659,12 @@ spatium unit - + Set Visible - + Set Invisible @@ -4664,26 +4682,26 @@ spatium unit - + Left Gap: - - + + reset value - - + + ... - - - + + + sp spatium unit ---------- @@ -4691,12 +4709,12 @@ spatium unit - + Right Gap: - + Width: @@ -4714,30 +4732,30 @@ spatium unit - + Size - + Scale: - - + + % - - - + + + ... - + Lock Aspect Ratio @@ -4752,6 +4770,42 @@ spatium unit + + InspectorKeySig + + + Show Courtesy Time Signature + + + + + Show Naturals + + + + + InspectorLasso + + + Form + + + + + Lasso + + + + + Position: + + + + + Size + + + InspectorNote @@ -4775,225 +4829,225 @@ spatium unit - - - + + + Auto - + Top - + Bottom - - - - - - - - - + + + + + + + + + reset value - - - - - - - - - + + + + + + + + + ... - + Ontime Offset - + Left - + Right - + Dot Position - + Note Head Group - + Tuning Offset - + Note Head Type - + Velocity Type - + Whole - + Half - + Quarter - + Breve - + Velocity - + Offset - + User - + normal - + cross - + diamond - + triangle - + slash - + xcircle - + do - + re - + mi - + fa - + sol - + la - + ti - + alt. brevis - + Select - + Dot1 - + Dot2 - + Dot3 - + Hook - + Stem - + Beam @@ -5001,7 +5055,7 @@ spatium unit InspectorRest - + Small @@ -5024,8 +5078,8 @@ spatium unit - - + + sp spatium unit ---------- @@ -5033,19 +5087,19 @@ spatium unit - + Leading space: - - + + reset value - - + + ... @@ -5068,12 +5122,20 @@ spatium unit - + sp spatium unit + + InspectorTimeSig + + + Show Courtesy Time Signature + + + InspectorVBox @@ -5082,14 +5144,14 @@ spatium unit - + Top Gap: - - - + + + sp spatium unit ---------- @@ -5109,20 +5171,20 @@ spatium unit - - - + + + reset value - - - + + + ... @@ -5132,30 +5194,30 @@ spatium unit - - - - + + + + mm - + Top Margin: - + Left Margin: - + Bottom Gap: - + Height: @@ -5353,49 +5415,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 (*) @@ -5758,14 +5820,14 @@ failed: - - - - - - - - + + + + + + + + sp @@ -5805,110 +5867,110 @@ failed: - + diagonally - + Begin - - + + Text - - + + ... - - + + place: - - + + Below - - + + Left - - + + Above - - - + + + Symb. - - - + + + Ped (Pedal) - - - + + + x: - - - + + + y: - - + + Hook - - + + Up - - + + 90° - - + + 45° - + Continue - + End @@ -6383,7 +6445,7 @@ Would you like to locate %2 now? MenuNotes - + &Notes @@ -6434,28 +6496,23 @@ Would you like to locate %2 now? MuseScore - + Fingering - + Rehearsal Mark - + Concert Pitch - - - Search - - - + MuseScore @@ -6466,14 +6523,13 @@ before closing? - - + MuseScore: Load Score - + MuseScore: Load error @@ -6519,13 +6575,13 @@ before closing? - - + + All Files (*) - + Untitled @@ -6540,273 +6596,293 @@ before closing? - + 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 @@ -6826,70 +6902,70 @@ before closing? - - + + 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 @@ -6899,277 +6975,277 @@ 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 - + 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 - + Fret Diagram - + &Measures - + &Frames - + &Text @@ -7179,42 +7255,42 @@ before closing? - + 4/4 common time - + End Bar - + Double Bar - + Start Repeat - + End Repeat - + End-Start Repeat - + Breath - + Brackets @@ -7224,62 +7300,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 @@ -7289,62 +7365,62 @@ before closing? - + Symbols - + &Create - + Text - + File Operations - + Transport Tools - + Page View - + Foto Mode - + Note Entry - + &File - + Open &Recent - + &Edit - + &Layout @@ -7376,257 +7452,228 @@ 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 - - MuseScore: warning - - - - - Cannot create tuplet: note value too short + + Find - - MuseScore handbook not found at: - + + MuseScore: warning - - - -From the "Help" menu try choosing "Online Handbook" instead. + + Cannot create tuplet: note value too short - + &About - + switch layer - - MuseScore: Open Help - - - - + no score - + note entry mode - + edit mode - + play - + Go To: - + System - + Glissando - - - Error loading plugin -"%1" line %2: -%3 - - - - - Script -%1 -is incompatible with current interface - - - - - MuseScore is too old to run script -%1 - - - - - + + Error opening lame library - + Could not open MP3 encoding library! - + Not a valid or supported MP3 encoding library! - - + + Encoding error @@ -7636,12 +7683,12 @@ is incompatible with current interface - + Unable to open target file for writing - + Error %1 returned from MP3 encoder @@ -7672,7 +7719,7 @@ is incompatible with current interface NewWizard - + MuseScore: Create New Score @@ -7720,12 +7767,12 @@ is incompatible with current interface NewWizardPage1 - + Create New Score - + This wizard creates a new score @@ -7733,12 +7780,12 @@ is incompatible with current interface NewWizardPage2 - + Create New Score - + Define a set of instruments. Each instrument is represented by one or more staves @@ -7746,12 +7793,12 @@ is incompatible with current interface NewWizardPage3 - + Create New Score - + Create Time Signature @@ -7759,22 +7806,22 @@ is incompatible with current interface NewWizardPage4 - + Create New Score - + Select Template File: - + MuseScore: Select Template - + MuseScore Template Files (*.mscz *.mscx) @@ -7782,27 +7829,27 @@ is incompatible with current interface NewWizardPage5 - + Create New Score - + Select Key Signature and Tempo: - + Key Signature - + Tempo - + BPM: @@ -8037,27 +8084,27 @@ is incompatible with current interface PaletteBox - + Palettes - + Palette Operations - + Single Palette Mode - + Reset to factory defaults - + new Palette @@ -8065,42 +8112,42 @@ is incompatible with current interface PaletteBoxButton - + Palette Properties... - + Insert new Palette... - + Move Palette Up - + Move Palette Down - + Enable Editing - + Save Palette - + Load Palette - + Delete Palette @@ -8394,7 +8441,7 @@ is incompatible with current interface - + relative tempo @@ -8404,117 +8451,205 @@ is incompatible with current interface - - Straight + + Vol. + short text for volume slider - - Swing + + Tmp. + short text for tempo slider - - Shuffle + + master volume + + + PluginCreator - - Vol. - short text for volume slider + + File Operations - - Tmp. - short text for tempo slider + + Edit Operations - - master volume + + MuseScore Plugin Editor + + + + + + + MuseScore + + + + + + + Plugin "%1" has changes +save before closing? + + + + + untitled + + + + + Manual - PreferenceDialog + PluginCreatorBase + + + MainWindow + + + + + Run + + + + + Stop + + + + + File + + + + + Help + + + + + Edit + + + + + New + + + + + Open + + + + + Save + + + + + Manual + + + + + Undo + + - - load + + Redo - - Plugin Path + + Quit + + + 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 - + Choose Notepaper - + Choose Background Wallpaper - + MuseScore Files (*.mscz *.mscx *.msc);;All (*) @@ -8522,822 +8657,848 @@ is incompatible with current interface PrefsDialogBase - + MuseScore: Preferences - + General - + Scores Directory: - + Styles Directory: - + Templates Directory: - + Plugins Directory: - + SoundFonts Directory: - + Images Directory: - + Program Start - + start empty - + continue last session - + start with new score - + start with score: - + Color notes outside of usable pitch range - + MIDI Remote Control - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ... - + show splash screen - + MuseScore Preferences - + Browse... - + Language - + Attention: changing the language requires a restart of MuseScore. - + Paths - - Instrument List: - - - - + Windows - + Style - + Auto Save - + Save every - + minutes - + Canvas - + Background - - + + Wallpaper - - + + Color - + Proximity for selecting elements - + disable antialiased drawing - + uncheck this to speed up drawing - + Draw Antialiased - + Text - - + + Note Entry - + Play notes when editing - + ms - + + Instrument List2: + + + + + Instrument List1: + + + + Use JACK MIDI - + Remember last connection(s) - + PortAudio - + API: - + Default SoundFont - + Choose MIDI input interface - + Style Used for Import - + Built in style - + Use style file: - + Character Set used when import non-unicode strings. (For binary file import) - - + + MusicXML - + Import layout - + Import system and page breaks - + Shortest Note: - + 1/4 - + 1/8 - + 1/16 - + 1/32 - + 1/64 - + PNG/SVG - + Resolution DPI - + Transparent background - - + + MIDI - + Expand repeats - + Plugins - + + Name: + + + + + Path: + + + + + Version: + + + + + Load + + + + + Define Shortcut + + + + Update - + Automatic Update Check - + Check for new versions of MuseScore on startup - + Auto-correction - + Replace 1/2 with fraction character ½ - + Replace (C) with copyright symbol © (Only applies to text in the copyright section) - - - - - + + + + + is active - - - - - + + + + + record - + Score - + Show Play Panel - + Show Navigator - + Show MuseScore Connect - + OSC remote control - + Port Number: - + dark - - light - - - - + native - + Icon size: - + use native file dialogs - + Paper - + Miscellaneous - + Enable MIDI input - + Default Duration: - + enable MIDI remote control - + rewind - + toggle play - + whole note - + half note - + quarter note - + 8th note - + rest - + augmentation dot - + double augmentation dot - + tie - + play - + stop - + note entry - + 16th note - + 32nd note - + 64nd note - + Default Files - + Style: - + Style for Part: - + View - + Scale - + default scale for new score views - + I/O - + Ports - + Use internal synthesizer - + JACK Audio Server - + Left-Port: - + Right-Port: - + ALSA Audio - + PulseAudio - - + + Device: - + default - - + + Sample Rate: - + 192000 - + 96000 - + 88200 - - + + 48000 - - + + 44100 - + 32000 - + 22050 - + Fragments: - + Period Size: - + 4096 - + 2048 - + 1024 - + 512 - + 256 - + 128 - + 64 - + Attention: Any changes on this page require a restart of MuseScore. - + Import - + Character Set: - + Export - + Audio - + Export layout - + Export all system and page breaks - + Export manually added system and page breaks only - + Do not export system or page breaks - + Shortcuts - + Action - + + Shortcut - - + + Reset to Default - - + + Clear - + Define... @@ -9413,11 +9574,11 @@ is incompatible with current interface - - - - - + + + + + Quit @@ -9465,6 +9626,11 @@ failed: MuseScore: Write Album + + + Untitled + + MuseScore: file not found: @@ -9476,7 +9642,7 @@ failed: - + MuseScore: Load Style failed: @@ -9493,52 +9659,26 @@ failed: - + MuseScore: load Style failed: - - MuseScore - - - - - reading file < - - - - - > failed: - - - - - &Quit - - - - + MuseScore: Load languages failed: - + MuseScore: invalid command - - + + MuseScore: Load Palette failed: - - - - MuseScore: register script plugin: - - MuseScore: Import GuitarPro @@ -9548,7 +9688,7 @@ failed: RecordButton - + record @@ -9572,33 +9712,33 @@ failed: ScoreView - + Select - + More... - + Staff - + Edit Drumset... - + Drumroll Editor... - + Pianoroll Editor... @@ -9792,116 +9932,116 @@ failed: - + Staff Properties... - - + + Object Debugger - + Split Staff... - + 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 - + Foto-Mode - + Resolution (%1 dpi)... - + transparent background - + Save As (print mode)... - + Save As (screenshot mode)... - + MuseScore: Set Output Resolution - + Set output resolution for png/svg - + MuseScore: Save As - + cannot determine file type @@ -9942,92 +10082,97 @@ please select a measure and try again - + Segment - + Ticks - - Tick: - - - - + Bar - + Beat - + Clef Segment - + Key Signature - + Time Signature - + Begin Repeat - + Chord/Rest - + Breath Segment - + End Bar Line - + Time Signature Announce - + SpannerFor: - + SpannerBack: - + Annotations: - + Lyrics: - + + tick: + + + + + rTick: + + + + Segment Type: @@ -10220,22 +10365,23 @@ Sequencer will be disabled. SlurPropertyBase - Volta Properties - - - Slur Properties - solid + Solid - dotted + Dotted + + + + + Dashed @@ -10758,7 +10904,7 @@ altera - + MuseScore Startup Dialog @@ -11059,13 +11205,18 @@ altera - + + layoutToParentWidth + + + + Text: do not translate - + Offset: do not translate @@ -11098,7 +11249,7 @@ altera - + TextStyle: do not translate @@ -11339,7 +11490,6 @@ altera - Color: @@ -11349,159 +11499,170 @@ altera - + System Flag - + Offset - + X: coordinate - + horizontal offset to reference point - + 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 - + enable text frame - + Frame - + draw circled frame - + Circle - + draw boxed frame - + Box - + Width: - + frame line width - - + + mm - + Margin: - + frame inner margin - + Round: - + corner round - + + Foreground Color: + + + + + frame color + + + Background Color: + + TextStyleDialog @@ -11757,32 +11918,74 @@ please choose a different name: - + / - + + + 1 + + + + + + 2 + + + + + + 4 + + + + + + 8 + + + + + + 16 + + + + + + 32 + + + + + + 64 + + + + Pickup Measure - + Time Signature - + Enter Number of Measures: - + Measures: - + <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:9pt; font-weight:400; font-style:normal;"> @@ -12323,7 +12526,7 @@ p, li { white-space: pre-wrap; } - + round bracket @@ -12331,32 +12534,49 @@ p, li { white-space: pre-wrap; } action - - Local &Handbook... + + Save a Copy... - - Save a Copy... + + Export... - + Reload + + + Close + + + + + New... + + Create new score + + + Print... + + + Undo + Redo @@ -12366,354 +12586,330 @@ p, li { white-space: pre-wrap; } - + 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 - + Seventh Above - - + Enter seventh above - + 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 to selected measure - - - - - Add less stretch to selected measure + + + Add More Stretch - - Reset Beam Mode + + Add more stretch to selected measure - - - up+shift+ctrl + + Add Less Stretch - - - down+shift+ctrl + + Add less stretch to selected measure - - - left+ctrl + + + Reset Beam Mode - + Local handbook @@ -12722,14 +12918,9 @@ p, li { white-space: pre-wrap; } Show local handbook - - - File open - - - &Open... + File open @@ -12737,14 +12928,9 @@ p, li { white-space: pre-wrap; } Load score from file - - - File save - - - &Save + File save @@ -12752,14 +12938,9 @@ p, li { white-space: pre-wrap; } Save score to file - - - File save as - - - Save &As... + File save as @@ -12768,7 +12949,7 @@ p, li { white-space: pre-wrap; } - + File save a copy @@ -12783,12 +12964,12 @@ p, li { white-space: pre-wrap; } - + Export Parts - + Export Parts... @@ -12798,7 +12979,7 @@ p, li { white-space: pre-wrap; } - + File reload @@ -12807,14 +12988,9 @@ p, li { white-space: pre-wrap; } Reload score from file - - - File close - - - &Close + File close @@ -12822,24 +12998,14 @@ p, li { white-space: pre-wrap; } Close current score - - - File new - - - &New... - - - - - Print + File new - &Print... + Print @@ -12847,2351 +13013,1796 @@ p, li { white-space: pre-wrap; } Print score - - - &Undo - - Undo last change - - - &Redo - - Redo last undo - - Cu&t - - - - - &Copy - - - - - &Paste - - - - - + 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 - - Add &More Stretch - - - - - Add &Less Stretch - - - - - Reset &Beam Mode - - - - - + Diatonic pitch down - + Diatonic down - + Add previous chord to selection - + Select to beginning of measure - + Add next chord to selection - - + Select Section - - 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 - - - - + Append One Measure - - Insert one measure - - - - + Insert One Measure - - - Insert horizontal frame + + + Insert Text Frame - - Insert text frame + + Append Text Frame - - - Insert Text Frame + + + Insert Fret Diagram Frame - - Append text frame + + Other tuplets - - Append Text Frame + + Note duration: longa - - Insert fret diagram frame + + Parts... - - - Insert Fret Diagram Frame + + Full Screen - - - Insert vertical frame + + Additional Media... - - Append horizontal frame + + Page Settings... - - Append vertical frame + + Album... - - Other tuplets + + Layers... - - Note duration: longa + + 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 - - &Load Style... - - - - - &Save Style... - - - - - - Save style as default - - - - - Save Style As &Default... - - - - - Select A&ll - - - - + &Transpose... - - - Violin clef - - - - + Violin Clef - - - Bass clef - - - - + Bass Clef - - + Display in concert pitch - - &Concert Pitch - - - - - Repeat Last Command - - - - - - Toggle system break - - - - - - Toggle page break - - - - - - Toggle section break - - - - + Toggle Section Break - - - Edit element - - - - - &Reset - - - - - De&bugger - - - - - Reset &Stretch - - - - + Show Unprintable - - - + Show Page Margins - - &Search - - - - - &General... - - - - - &Text... - - - - - &Chords... - - - - - Parts - - - - - Par&ts... - - - - + Manage parts - - Additional &Media... - - - - - &Page Settings... - - - - - &Album... - - - - - Show Inspector - - - - + Inspector - + Show OMR Panel - + OmrPanel - - Show OMR PAnel - - - - - metronome - - - - + 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 - - - Show invisible + + Note entry: whole rest - - - Show unprintable + + Whole rest - - - Show frames + + Note entry: half rest - - - Enable script debugger + + Half rest - - Note entry: whole rest + + Note entry: quarter rest - - - Whole rest + + Quarter rest - - Note entry: half rest + + Note entry: 8th rest - - - Half rest + + 8th rest - - Note entry: quarter rest + + Text - - - Quarter rest + + Add Frame Text - - Note entry: 8th rest + + Debugger - - - 8th rest + + Reset Stretch - - - + + Insert Special Characters + + + + Backspace - - - - Mirror note head + + Find - - - Edit general style + + Mirror note head - - - - Double duration + + General... - - - - Half duration + + Edit general style - - - Follow song + + Text... - - - Display documents side by side + + Chords... - - - Display documents stacked + + Double duration - - Show score image + + Half duration - - - Show OMR image + + Follow song - - - - Enharmonic up + + Display documents side by side - - - - Enharmonic down + + Display documents stacked - - - - Create new revision + + Show OMR image - - - - Toggle foto mode + + Enharmonic up - - Full screen + + Enharmonic down - - F&ull Screen + + Create new revision - - F&ull screen + + Toggle foto mode - - - + Enable horizontal raster - - - + Enable vertical raster - - - + Configure raster - - Re-pitch mode - - - - + 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 - - More stretch - - - - + Less stretch - + Reset beam mode of selected measures - - + Flip direction - - 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 Chord - - - - - - - - + + Previous measure - - Previous Measure - - - - - - - - - Next chord - - - - - Next Chord - - - - - - - - - Next measure - - - - - Next Measure - - - - - - Delete selected measures - - - - - Append measures - - - - - Insert measures - - - - - - left+shift - - - - - Save Selection - - - - - Save Selection... - - - - - Save current selection as new score - - - - - Export score - - - - - &Export... - - - - - &Instruments... - - - - - &Note Input + + + Next chord - - - Respell pitches + + + Next measure - - &Respell Pitches + + Append measures - - - right+shift + + Insert measures - - - right+ctrl+shift + + Save Selection - - - shift+home + + Save Selection... - - - shift+end + + Save current selection as new score - - - ctrl+shift+home + + Export score - - - ctrl+shift+end + + Respell pitches - + 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 - - + + Enable sound while editing - - - + Palette - + Play Panel - - - + Navigator - - - + Mixer - + Transport - + Status Bar - - - + Quit - - Zoom Canvas + + Lyrics - - - - Lyrics + + Note entry: double flat - - Tempo... + + + Double flat - - - Tempo + + Local Handbook... - - Note entry: double flat + + Open... - - - Double flat + + 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, Slower - - - - - + Feathered beam, faster - - Feathered Beam, Faster - - - - - - Play panel - - - - + Transport toolbar - + Note input toolbar - - - Status bar - - - - - + Zoom canvas - - + Layers - - &Layers... - - - - - - + MuseScore Connect - + Metronome - + System Text - + Staff Text - - Frame 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 - - - Reset user settings + + Load Style... + + + + + Save Style... + + + + + Save Style As Default... + + + + + Select All + + + + + Concert Pitch + + + + + Info... - - - Show debugger + + 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 - - - Add system text + + Tempo Marking... - - - Add staff text + + Tempo Marking + + + + + Add system text - - - Add 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 - - - Select all - - - - - + Exchange Voice 1-2 - - Exchange voice 1-2 - - - - - - Exchange voice 1-3 - - - - + Exchange Voice 1-3 - - - Exchange voice 1-4 - - - - + Exchange Voice 1-4 - - - Exchange voice 2-3 - - - - + Exchange Voice 2-3 - - - Exchange voice 2-4 - - - - + Exchange Voice 2-4 - - - Exchange voice 3-4 - - - - + Exchange Voice 3-4 - - + Repeat last command - - + Edit score info - - &Info... - - - - + Toggle System Break - + Toggle Page Break - + Edit Element - + Show Invisible - + Show Frames - - - Insert special characters - - - - + Insert Special Characters... - - Enable Script Debugger - - - - - - Search - - - - - Zoom in - - - - + Zoom In - - Zoom out - - - - + 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 - - Follow Song - - - - + Documents Side by Side - + Documents Stacked @@ -15199,12 +14810,12 @@ p, li { white-space: pre-wrap; } articulation - + Bend - + Tremolo Bar @@ -15212,7 +14823,7 @@ p, li { white-space: pre-wrap; } barlines - + Barlines @@ -15220,45 +14831,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 @@ -15267,7 +14878,7 @@ p, li { white-space: pre-wrap; } images_directory - + Images @@ -15275,100 +14886,100 @@ 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 - + Text line - + Line @@ -15457,7 +15068,7 @@ p, li { white-space: pre-wrap; } plugins_directory - + Plugins @@ -15465,37 +15076,37 @@ p, li { white-space: pre-wrap; } preferences - + Never - + Every day - + Every 3 days - + Every week - + Every 2 weeks - + Every month - + Every 2 months @@ -15503,7 +15114,7 @@ p, li { white-space: pre-wrap; } scores_directory - + Scores @@ -15511,7 +15122,7 @@ p, li { white-space: pre-wrap; } soundfonts_directory - + Soundfonts @@ -15519,7 +15130,7 @@ p, li { white-space: pre-wrap; } styles_directory - + Styles @@ -15527,7 +15138,7 @@ p, li { white-space: pre-wrap; } templates_directory - + Templates diff --git a/share/locale/mscore_ar.ts b/share/locale/mscore_ar.ts index 81755bee2b6c..77dd07fae887 100644 --- a/share/locale/mscore_ar.ts +++ b/share/locale/mscore_ar.ts @@ -134,10 +134,6 @@ p, li { white-space: pre-wrap; } Remove Score - - score list - - move current score down in list @@ -158,18 +154,6 @@ p, li { white-space: pre-wrap; } Add Score - - path to new score you want to add - - - - open file manager - - - - ... - ... - create new album @@ -202,6 +186,18 @@ p, li { white-space: pre-wrap; } Join Scores + + Load + تحميل + + + MuseScore: Add Score + + + + MuseScore: Load Album + + ArticulationBase @@ -1159,15 +1155,15 @@ spatium unit صغير - showCourtesyClef + Hide courtesy clef - Hide courtesy clef + Show courtesy clef - Show courtesy clef + showCourtesy @@ -1192,14 +1188,14 @@ spatium unit Drum Tools - - Drumset - - Drums الطبول + + Edit Drumset + + DrumrollEditor @@ -2777,18 +2773,10 @@ spatium unit Time sig. left margin الحد الأيسر للميزان - - Clef-key distance - المسافة من المفتاح حتى الدليل - Clef-barline distance المسافة من المفتاح حتى الفاصل - - Begin repeat left margin - الحد الأيسر لبداية المرجّع - Show repeat bar tips ("winged" repeats) إظهار أجنحة لفواصل المرجّعات @@ -3185,6 +3173,10 @@ p, li { white-space: pre-wrap; } Max. System distance + + Clef/Key right margin + + EditTempoBase @@ -3562,6 +3554,28 @@ spatium unit Down لأسفل + + Offset X: + + + + sp + spatium unit +---------- +spatium unit + مسافة + + + Offset Y: + + + + + InspectorClef + + Show Courtesy Clef + + InspectorElement @@ -3701,6 +3715,36 @@ spatium unit % + + InspectorKeySig + + Show Courtesy Time Signature + + + + Show Naturals + + + + + InspectorLasso + + Form + سياق + + + Lasso + + + + Position: + + + + Size + + + InspectorNote @@ -3945,6 +3989,13 @@ spatium unit مسافة + + InspectorTimeSig + + Show Courtesy Time Signature + + + InspectorVBox @@ -5079,10 +5130,6 @@ Would you like to locate %2 now? &About &بيان - - MuseScore: Open Help - ميوزسكور: فتح العون - note entry mode طور إدراج النغمات @@ -5213,28 +5260,10 @@ before closing? End-Start Repeat نهاية-بداية إعادة - - Search - بحث - Go To: ذهاب إلى: - - MuseScore handbook not found at: - - لم يُستدل على دليل المستخدم فى: - - - - - -From the "Help" menu try choosing "Online Handbook" instead. - - -حاول اختيار "دليل المستخدم على الإنترنت" من قائمة المساعدة بدلاً من ذلك. - Grace Notes نغمات مخطوفة @@ -5331,27 +5360,10 @@ Restore session? Varied coda قفلة منوّعة - - Script -%1 -is incompatible with current interface - - - - MuseScore is too old to run script -%1 - - Bar %1 Beat %2.%3 - - Error loading plugin -"%1" line %2: -%3 - - MuseScore: Load error @@ -5961,6 +5973,30 @@ please choose a different name: Report a bug + + MuseScore: Load Plugin + + + + MuseScore Plugin (*.qml);;All Files (*) + + + + MuseScore: Save Plugin + + + + MuseScore Plugin File (*.qml) + + + + &Plugins + + + + Find + + MyWebView @@ -6566,31 +6602,106 @@ please choose a different name: - Straight + master volume - Swing + Vol. + short text for volume slider - Shuffle + Tmp. + short text for tempo slider + + + PluginCreator + + File Operations + عمليات الملفات + - master volume + Edit Operations - Vol. - short text for volume slider + MuseScore Plugin Editor - Tmp. - short text for tempo slider + MuseScore + ميوزسكور + + + Plugin "%1" has changes +save before closing? + + + + untitled + + + + Manual + + + + + PluginCreatorBase + + MainWindow + + + + Run + + + + Stop + + + + File + + + + Help + + + + Edit + + + + New + جديد + + + Open + + + + Save + حفظ + + + Manual + + Undo + إلغاء + + + Redo + إعادة + + + Quit + مغادرة + PreferenceDialog @@ -6626,14 +6737,6 @@ please choose a different name: Choose Default Style for Parts - - load - - - - Plugin Path - - Choose Scores Directory @@ -6705,10 +6808,6 @@ please choose a different name: Paths مسارات - - Instrument List: - قائمة الآلات: - Windows نوافذ @@ -7001,10 +7100,6 @@ please choose a different name: dark - - light - - use native file dialogs @@ -7273,6 +7368,34 @@ please choose a different name: Character Set: + + Instrument List2: + + + + Instrument List1: + + + + Name: + الاسم: + + + Path: + + + + Version: + + + + Load + تحميل + + + Define Shortcut + + Properties @@ -7330,14 +7453,6 @@ please choose a different name: MuseScore: load Style failed: ميوزسكور: إخفاق فى تحميل طراز: - - MuseScore - ميوزسكور - - - reading file < - قراءة ملف < - MuseScore: Import Capella ميوزسكور: استيراد Capella @@ -7354,10 +7469,6 @@ please choose a different name: MuseScore: Load languages failed: - - MuseScore: register script plugin: - - MuseScore: Import GuitarPro @@ -7413,17 +7524,13 @@ failed: MuseScore: Save File ميوزسكور: حفظ ملف - - > failed: - - Load failed: - &Quit - + Untitled + دون اسم @@ -7788,10 +7895,6 @@ cannot split tuplet Ticks - - Tick: - مقبض: - Bar @@ -7800,9 +7903,17 @@ cannot split tuplet Beat - - - SelectDialog + + tick: + + + + rTick: + + + + + SelectDialog MuseScore: Select @@ -7954,22 +8065,22 @@ Sequencer will be disabled. SlurPropertyBase - - Volta Properties - خواص إعادة - Slur Properties - solid - مصمت + Solid + - dotted + Dotted + + Dashed + مقطّع + SlurSegment @@ -8646,6 +8757,10 @@ altera styled + + layoutToParentWidth + + TextEditor @@ -8961,6 +9076,14 @@ altera Text + + Foreground Color: + + + + Background Color: + + TextStyleDialog @@ -9193,6 +9316,34 @@ p, li { white-space: pre-wrap; } </style></head><body dir="rtl" style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;"> <p dir="rtl" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">ملحوظة: يمكنك أيضًا إضافة إو إزالة موازير بعد إتمام تخليق المدوّنة.</p></body></html> + + 1 + 1 + + + 2 + 2 + + + 4 + 4 + + + 8 + 8 + + + 16 + 16 + + + 32 + 32 + + + 64 + 64 + TransposeDialogBase @@ -9628,10 +9779,6 @@ p, li { white-space: pre-wrap; } action - - Local &Handbook... - الكتيّب فى جهازك - Save a Copy... حفظ نسخة... @@ -9900,46 +10047,6 @@ p, li { white-space: pre-wrap; } Reset Beam Mode إرجاع طور التربيط للأصل - - up+shift+ctrl - فوق+عالى+تحكّم - - - down+shift+ctrl - تحت+عالى+تحكّم - - - left+ctrl - يسار+تحكّم - - - left+shift - يسار+عالى - - - right+shift - يمين+عالى - - - right+ctrl+shift - يمين+تحكّم+عالى - - - shift+home - عالى+بداية - - - shift+end - عالى+نهاية - - - ctrl+shift+home - تحكّم+عالى+بداية - - - ctrl+shift+end - تحكّم+عالى+نهاية - Delete Selected Measures مسح الموازير المحددة @@ -10040,22 +10147,10 @@ p, li { white-space: pre-wrap; } Quit مغادرة - - Zoom Canvas - اقتراب من الورقة - Lyrics كلمات - - Tempo... - - - - Tempo - سرعة - Metronome مترونوم @@ -10068,10 +10163,6 @@ p, li { white-space: pre-wrap; } Staff Text - - Frame Text - - Title عنوان @@ -10164,10 +10255,6 @@ p, li { white-space: pre-wrap; } Show Frames - - Search - بحث - Zoom In @@ -10200,10 +10287,6 @@ p, li { white-space: pre-wrap; } Repeat selection - - Follow Song - - Local handbook @@ -10340,10 +10423,6 @@ p, li { white-space: pre-wrap; } Trill زغردة - - More stretch - - Less stretch @@ -10356,10 +10435,6 @@ p, li { white-space: pre-wrap; } Flip direction - - Flip Direction - - Pitch up @@ -10444,38 +10519,18 @@ p, li { white-space: pre-wrap; } Previous chord - - Previous Chord - - Previous measure - - Previous Measure - - Next chord - - Next Chord - - Next measure - - Next Measure - - - - Delete selected measures - - Append measures @@ -10516,10 +10571,6 @@ p, li { white-space: pre-wrap; } Save style - - Select all - - Delete مسح @@ -10536,54 +10587,10 @@ p, li { white-space: pre-wrap; } Delete element and duration - - &Open... - - - - &Save - - - - Save &As... - - - - &Close - - File new - - &New... - - - - &Print... - - - - &Undo - - - - &Redo - - - - Cu&t - - - - &Copy - - - - &Paste - - Insert note A @@ -10740,62 +10747,26 @@ p, li { white-space: pre-wrap; } Timewise delete - - Append one measure - - Append One Measure - - Insert one measure - - Insert One Measure - - Insert horizontal frame - - - - Insert text frame - - Insert Text Frame - - Append text frame - - Append Text Frame - - Insert fret diagram frame - - Insert Fret Diagram Frame - - Insert vertical frame - - - - Append horizontal frame - - - - Append vertical frame - - Other tuplets @@ -10972,22 +10943,10 @@ p, li { white-space: pre-wrap; } Feathered beam, slower - - Feathered Beam, Slower - - Feathered beam, faster - - Feathered Beam, Faster - - - - Play panel - - Transport toolbar @@ -10996,10 +10955,6 @@ p, li { white-space: pre-wrap; } Note input toolbar - - Status bar - - Zoom canvas @@ -11012,10 +10967,6 @@ p, li { white-space: pre-wrap; } Add staff text - - Add text - - Add title text @@ -11064,82 +11015,26 @@ p, li { white-space: pre-wrap; } Player seek to end - - Select A&ll - - &Transpose... - - Violin clef - - Violin Clef - - Bass 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 - - Toggle Section Break - - Edit element - - Show inspector @@ -11148,18 +11043,6 @@ p, li { white-space: pre-wrap; } Reset measure stretch - - Show invisible - - - - Show frames - - - - Enable script debugger - - Note entry: whole rest @@ -11196,14 +11079,6 @@ p, li { white-space: pre-wrap; } Backspace - - Zoom in - - - - Zoom out - - Mirror note head @@ -11240,10 +11115,6 @@ p, li { white-space: pre-wrap; } Display documents stacked - - Show score image - - Show OMR image @@ -11264,18 +11135,6 @@ p, li { white-space: pre-wrap; } Toggle foto mode - - Full screen - - - - F&ull Screen - - - - F&ull screen - - Enable horizontal raster @@ -11288,10 +11147,6 @@ p, li { white-space: pre-wrap; } Configure raster - - Re-pitch mode - - Re-Pitch Mode @@ -11320,10 +11175,6 @@ p, li { white-space: pre-wrap; } 128th note - - Show unprintable - - Split Measure @@ -11361,331 +11212,343 @@ p, li { white-space: pre-wrap; } - Show debugger + Piano Keyboard - Piano Keyboard + Save Selection - Show Inspector + Save Selection... - Save Selection + Save current selection as new score - Save Selection... + Export score - Save current selection as new score + Respell pitches - Export score + Grace: 8nd after - &Export... + Pan score while playing on/off - &Instruments... + Pan - &Note Input + Show Unprintable - Respell pitches + Show Page Margins - &Respell Pitches + Manage parts - Add &More Stretch + Inspector - Add &Less Stretch + Show OMR Panel - Reset &Beam Mode + OmrPanel - Grace: 8nd after + toggle metronome - Pan score while playing on/off + Figured Bass - Pan + Next Score - &Load Style... + Previous Score - &Save Style... + Transpose Up - Save style as default + Transpose Down - Save Style As &Default... + Show master palette - &Concert Pitch + Master Palette... - &Reset + Insert Measure - De&bugger + Toggle View Mode - Reset &Stretch + Export Parts - Show Unprintable + Export Parts... - Show Page Margins + Save a copy of the score's parts in various formats - &Search + Add marcato - &General... + Marcato - &Text... + Select Section - &Chords... + Note duration: double whole - Parts + Double whole note - Par&ts... + Whole note - Manage parts + Half note - Additional &Media... + Quarter note - &Page Settings... + 8th note - &Album... + 16th note - Inspector + 32nd note - Show OMR Panel + 64th note - OmrPanel + Edit score info - Show OMR PAnel + Insert Special Characters... - metronome + Layers - toggle metronome + MuseScore Connect - Figured Bass + next syllable - Next Score + previous syllable - Previous Score + toggle visibility - Transpose Up + set visible - Transpose Down + set unvisible - Show master palette + Local Handbook... - Master Palette... + Open... - Insert Measure + Save + حفظ + + + Save As... - Toggle View Mode + Export... - Export Parts + Close + إغلاق + + + New... - Export Parts... + Print... - Save a copy of the score's parts in various formats + Instruments... - Add marcato + Add More Stretch - Marcato + Add Less Stretch - Select Section + Tempo Marking... - select section + Tempo Marking - Note duration: double whole + Text - Double whole note + Add Frame Text - Whole note + Load Style... - Half note + Save Style... - Quarter note + Save Style As Default... - 8th note + Select All - 16th note + Concert Pitch + الطبقة القياسية + + + Info... - 32nd note + Reset - 64th note + Debugger - Edit score info + Reset Stretch - &Info... + Insert Special Characters - Insert special characters + Find - Insert Special Characters... + General... - Enable Script Debugger + Text... - Layers + Chords... - &Layers... + Parts... - MuseScore Connect + Full Screen - next syllable + Additional Media... - previous syllable + Page Settings... - toggle visibility + Album... - set visible + Layers... - set unvisible + Plugin Creator diff --git a/share/locale/mscore_ast.ts b/share/locale/mscore_ast.ts index 9d107e977517..111f74967a06 100644 --- a/share/locale/mscore_ast.ts +++ b/share/locale/mscore_ast.ts @@ -31,17 +31,17 @@ p, li { white-space: pre-wrap; } AboutBoxDialog - + Unstable Prerelease for Version: - + Version: - + Revision: %1 @@ -141,99 +141,94 @@ p, li { white-space: pre-wrap; } - + remove current score - - - Remove Score - - - score list + Remove Score - + move current score down in list - + Down - + move current score up in list - + Up - + Add Score - path to new score you want to add + create new album - - open file manager + + New - ... + load an existing album - - create new album + + Load - - New + + Join Scores - - load an existing album + + Print Album - - Join Scores + + MuseScore Album Files (*.album);; - - Print Album + + + All Files (*) - - MuseScore Album Files (*.album);; + + MuseScore Files (*.mscz *.mscx *.msc);; - - - All Files (*) + + MuseScore: Add Score - - MuseScore Files (*.mscz *.mscx *.msc);; + + MuseScore: Load Album @@ -1466,7 +1461,7 @@ spatium unit - showCourtesyClef + showCourtesy @@ -1497,7 +1492,7 @@ spatium unit - Drumset + Edit Drumset @@ -1608,29 +1603,29 @@ spatium unit - + Open File - + failed: - + MuseScore: Open File - + Write File failed: - + MuseScore: Write Drumset @@ -1643,17 +1638,17 @@ failed: - + Note - + Shortcut - + Name @@ -1663,97 +1658,97 @@ failed: - + Note Head: - + Staff Line: - + Stem Direction: - + Auto - + Up - + Down - + Default Voice: - + Shortcut: - + A - + B - + C - + D - + E - + F - + G - + -- - + Load - + Save - + No. @@ -3181,54 +3176,54 @@ failed: - + Barlines - + Notes - + Arpeggios - + Beams - + Slurs/Ties - + Sizes - + Hairpins - + Chordnames - + Articulations, Ornaments @@ -3273,45 +3268,44 @@ failed: - - - - - - - - + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + sp spatium unit ---------- @@ -3387,11 +3381,11 @@ spatium unit - - - - - + + + + + % @@ -3437,13 +3431,13 @@ spatium unit - + Clefs - + Accidentals @@ -3589,40 +3583,35 @@ spatium unit - + minimum Measure width - + Spacing (1=tight) - + Min. note distance - + Clef left margin - + Key sig. left margin - + Time sig. left margin - - - Clef-key distance - - Clef-barline distance @@ -3630,257 +3619,252 @@ spatium unit - Begin repeat left margin - - - - 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 @@ -3898,7 +3882,7 @@ spatium unit - + Figured Bass @@ -3960,98 +3944,103 @@ p, li { white-space: pre-wrap; } - + 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 - + Use German names - + Chord description file @@ -4068,35 +4057,35 @@ p, li { white-space: pre-wrap; } - + ... - - - + + + sp space unit - + Voice 1 - + Voice 2 - + Voice 3 - + Voice 4 @@ -4259,7 +4248,7 @@ p, li { white-space: pre-wrap; } GreendotButton - + record @@ -4356,7 +4345,7 @@ p, li { white-space: pre-wrap; } Inspector - + Inspector @@ -4379,8 +4368,8 @@ p, li { white-space: pre-wrap; } - - + + sp spatium unit ---------- @@ -4388,57 +4377,57 @@ spatium unit - + Offset Y: - + Direction: - + Auto - + Up - + Down - + Anchor: - + Top Staff - + Bottom Staff - + Chord Automatic - + Top Chord - + Bottom Chord @@ -4461,27 +4450,27 @@ spatium unit - - + + sp - + Position - - - - - + + + + + ... - + User Position @@ -4530,48 +4519,77 @@ spatium unit - - + Offset X: + + + + + + sp + spatium unit +---------- +spatium unit + + + + + + reset value - - - + + + + + ... - + Small - + Stemless - + Stem direction - + Auto - + Up - + Down + + + Offset Y: + + + + + InspectorClef + + + Show Courtesy Clef + + InspectorElement @@ -4586,31 +4604,31 @@ spatium unit - + Offset X: - + Color: - - - - + + + + ... - + Visible - - + + sp spatium unit ---------- @@ -4618,7 +4636,7 @@ spatium unit - + Offset Y: @@ -4641,12 +4659,12 @@ spatium unit - + Set Visible - + Set Invisible @@ -4664,26 +4682,26 @@ spatium unit - + Left Gap: - - + + reset value - - + + ... - - - + + + sp spatium unit ---------- @@ -4691,12 +4709,12 @@ spatium unit - + Right Gap: - + Width: @@ -4714,30 +4732,30 @@ spatium unit - + Size - + Scale: - - + + % - - - + + + ... - + Lock Aspect Ratio @@ -4752,6 +4770,42 @@ spatium unit + + InspectorKeySig + + + Show Courtesy Time Signature + + + + + Show Naturals + + + + + InspectorLasso + + + Form + + + + + Lasso + + + + + Position: + + + + + Size + + + InspectorNote @@ -4775,225 +4829,225 @@ spatium unit - - - + + + Auto - + Top - + Bottom - - - - - - - - - + + + + + + + + + reset value - - - - - - - - - + + + + + + + + + ... - + Ontime Offset - + Left - + Right - + Dot Position - + Note Head Group - + Tuning Offset - + Note Head Type - + Velocity Type - + Whole - + Half - + Quarter - + Breve - + Velocity - + Offset - + User - + normal - + cross - + diamond - + triangle - + slash - + xcircle - + do - + re - + mi - + fa - + sol - + la - + ti - + alt. brevis - + Select - + Dot1 - + Dot2 - + Dot3 - + Hook - + Stem - + Beam @@ -5001,7 +5055,7 @@ spatium unit InspectorRest - + Small @@ -5024,8 +5078,8 @@ spatium unit - - + + sp spatium unit ---------- @@ -5033,19 +5087,19 @@ spatium unit - + Leading space: - - + + reset value - - + + ... @@ -5068,12 +5122,20 @@ spatium unit - + sp spatium unit + + InspectorTimeSig + + + Show Courtesy Time Signature + + + InspectorVBox @@ -5082,14 +5144,14 @@ spatium unit - + Top Gap: - - - + + + sp spatium unit ---------- @@ -5109,20 +5171,20 @@ spatium unit - - - + + + reset value - - - + + + ... @@ -5132,30 +5194,30 @@ spatium unit - - - - + + + + mm - + Top Margin: - + Left Margin: - + Bottom Gap: - + Height: @@ -5353,49 +5415,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 (*) @@ -5758,14 +5820,14 @@ failed: - - - - - - - - + + + + + + + + sp @@ -5805,110 +5867,110 @@ failed: - + diagonally - + Begin - - + + Text - - + + ... - - + + place: - - + + Below - - + + Left - - + + Above - - - + + + Symb. - - - + + + Ped (Pedal) - - - + + + x: - - - + + + y: - - + + Hook - - + + Up - - + + 90° - - + + 45° - + Continue - + End @@ -6383,7 +6445,7 @@ Would you like to locate %2 now? MenuNotes - + &Notes @@ -6435,7 +6497,7 @@ Would you like to locate %2 now? MuseScore - + MuseScore @@ -6446,19 +6508,18 @@ before closing? - - + MuseScore: Load Score - + MuseScore: Load error - + Open failed: unknown file extension or broken file @@ -6504,13 +6565,13 @@ before closing? - - + + All Files (*) - + Untitled @@ -6525,273 +6586,293 @@ before closing? - + 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 @@ -6811,70 +6892,70 @@ before closing? - - + + 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 @@ -6884,227 +6965,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 @@ -7114,7 +7195,7 @@ before closing? - + Articulations && Ornaments @@ -7124,152 +7205,152 @@ before closing? - + Fingering - + Fingering %1 - + String number %1 - + Note Heads - + Tremolo - + 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 - + &Frames - + &Text - + set visible - + set invisible - + change staff type - + change instrument @@ -7279,255 +7360,242 @@ 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 - + + Find + + + + MuseScore: warning - + Cannot create tuplet: note value too short - + &Layout - + Continuous View - + &Style - + &Display - + &Help - + &About - + About &MusicXML - + Report a bug - - MuseScore handbook not found at: - - - - - - - -From the "Help" menu try choosing "Online Handbook" instead. - - - - - MuseScore: Open Help - - - - + System - + no score - + note entry mode - + edit mode - + play - + foto mode - + Go To: - - Search - - - - + Bar %1 Beat %2.%3 - + The previous session quit unexpectedly. Restore session? @@ -7561,72 +7629,51 @@ please choose a different name: - + MuseScore: transpose - + There is nothing selected. Transpose whole score? - - + + MuseScore: save style - + MuseScore: load style - - - Error loading plugin -"%1" line %2: -%3 - - - - - Script -%1 -is incompatible with current interface - - - - - MuseScore is too old to run script -%1 - - - - + Rehearsal Mark - - + + Error opening lame library - + Could not open MP3 encoding library! - + Not a valid or supported MP3 encoding library! - - + + Encoding error @@ -7636,12 +7683,12 @@ is incompatible with current interface - + Unable to open target file for writing - + Error %1 returned from MP3 encoder @@ -7712,7 +7759,7 @@ is incompatible with current interface - + MuseScore: Create New Score @@ -7720,12 +7767,12 @@ is incompatible with current interface NewWizardPage1 - + Create New Score - + This wizard creates a new score @@ -7733,12 +7780,12 @@ is incompatible with current interface NewWizardPage2 - + Create New Score - + Define a set of instruments. Each instrument is represented by one or more staves @@ -7746,12 +7793,12 @@ is incompatible with current interface NewWizardPage3 - + Create New Score - + Create Time Signature @@ -7759,22 +7806,22 @@ is incompatible with current interface NewWizardPage4 - + Create New Score - + Select Template File: - + MuseScore: Select Template - + MuseScore Template Files (*.mscz *.mscx) @@ -7782,27 +7829,27 @@ is incompatible with current interface NewWizardPage5 - + Create New Score - + Select Key Signature and Tempo: - + Key Signature - + Tempo - + BPM: @@ -8037,27 +8084,27 @@ is incompatible with current interface PaletteBox - + Palettes - + Palette Operations - + Single Palette Mode - + Reset to factory defaults - + new Palette @@ -8065,42 +8112,42 @@ is incompatible with current interface PaletteBoxButton - + Palette Properties... - + Insert new Palette... - + Move Palette Up - + Move Palette Down - + Enable Editing - + Save Palette - + Load Palette - + Delete Palette @@ -8394,7 +8441,7 @@ is incompatible with current interface - + relative tempo @@ -8404,117 +8451,205 @@ is incompatible with current interface - - Straight + + Vol. + short text for volume slider - - Swing + + Tmp. + short text for tempo slider - - Shuffle + + master volume + + + PluginCreator - - Vol. - short text for volume slider + + File Operations - - Tmp. - short text for tempo slider + + Edit Operations - - master volume + + MuseScore Plugin Editor + + + + + + + MuseScore + + + + + + + Plugin "%1" has changes +save before closing? + + + + + untitled + + + + + Manual - PreferenceDialog + PluginCreatorBase - - Choose Notepaper + + MainWindow - - Choose Background Wallpaper + + Run + + + + + Stop + + + + + File + + + + + Help + + + + + Edit + + + + + New + + + + + Open + + + + + Save + + + + + Manual + + + + + Undo + + + + + Redo + + + + + Quit + + + PreferenceDialog - - load + + Choose Notepaper - - Plugin Path + + 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 @@ -8522,822 +8657,848 @@ is incompatible with current interface PrefsDialogBase - + MuseScore: Preferences - + MuseScore Preferences - + General - + Scores Directory: - + Styles Directory: - + Templates Directory: - + Plugins Directory: - + SoundFonts Directory: - + Images Directory: - + Program Start - + start empty - + continue last session - + start with new score - + start with score: - + Choose MIDI input interface - + Browse... - + show splash screen - + Language - + Attention: changing the language requires a restart of MuseScore. - + Paths - - Instrument List: - - - - + Windows - + Style - + Auto Save - + Save every - + minutes - + Canvas - + Background - - + + Wallpaper - - + + Color - + Proximity for selecting elements - + disable antialiased drawing - + uncheck this to speed up drawing - + Draw Antialiased - + Text - + Auto-correction - + Replace 1/2 with fraction character ½ - + Replace (C) with copyright symbol © (Only applies to text in the copyright section) - - + + Note Entry - + Play notes when editing - + ms - + Color notes outside of usable pitch range - + MIDI Remote Control - - - - - + + + + + is active - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ... - - - - - + + + + + record - + tie - + Score - + Show Play Panel - + Show Navigator - + Show MuseScore Connect - + OSC remote control - + Port Number: - + dark - - light - - - - + native - + Icon size: - + use native file dialogs - + Paper - + Miscellaneous - + Enable MIDI input - + Default Duration: - + enable MIDI remote control - + rewind - + toggle play - + whole note - + half note - + quarter note - + 8th note - + rest - + augmentation dot - + double augmentation dot - + play - + stop - + note entry - + 16th note - + 32nd note - + 64nd note - + Default Files - + Style: - + Style for Part: - + View - + Scale - + default scale for new score views - + I/O - + Ports - + Remember last connection(s) - + Use internal synthesizer - + JACK Audio Server - + Left-Port: - + Right-Port: - + ALSA Audio - + + Instrument List2: + + + + + Instrument List1: + + + + PulseAudio - - + + Device: - + default - - + + Sample Rate: - + 192000 - + 96000 - + 88200 - - + + 48000 - - + + 44100 - + 32000 - + 22050 - + Fragments: - + Period Size: - + 4096 - + 2048 - + 1024 - + 512 - + 256 - + 128 - + 64 - + Attention: Any changes on this page require a restart of MuseScore. - + Import - + Style Used for Import - + Built in style - + Use style file: - + Character Set used when import non-unicode strings. (For binary file import) - - + + MusicXML - + Import layout - + Import system and page breaks - + Shortest Note: - + 1/4 - + 1/8 - + 1/16 - + 1/32 - + 1/64 - + Export - + Audio - + Export layout - + Export all system and page breaks - + Export manually added system and page breaks only - + Do not export system or page breaks - + Shortcuts - + Action - + + Shortcut - - + + Reset to Default - - + + Clear - + Use JACK MIDI - + PortAudio - + API: - + Default SoundFont - + Character Set: - + PNG/SVG - + Resolution DPI - + Transparent background - - + + MIDI - + Expand repeats - + Define... - + Plugins - + + Name: + + + + + Path: + + + + + Version: + + + + + Load + + + + + Define Shortcut + + + + Update - + Automatic Update Check - + Check for new versions of MuseScore on startup @@ -9413,11 +9574,11 @@ is incompatible with current interface - - - - - + + + + + Quit @@ -9465,6 +9626,11 @@ failed: MuseScore: Write Album + + + Untitled + + MuseScore: file not found: @@ -9476,7 +9642,7 @@ failed: - + MuseScore: Load Style failed: @@ -9493,52 +9659,26 @@ failed: - + MuseScore: load Style failed: - - MuseScore - - - - - reading file < - - - - - > failed: - - - - - &Quit - - - - + MuseScore: Load languages failed: - + MuseScore: invalid command - - + + MuseScore: Load Palette failed: - - - - MuseScore: register script plugin: - - MuseScore: Import GuitarPro @@ -9548,7 +9688,7 @@ failed: RecordButton - + record @@ -9572,33 +9712,33 @@ failed: ScoreView - + Select - + More... - + Staff - + Edit Drumset... - + Drumroll Editor... - + Pianoroll Editor... @@ -9792,116 +9932,116 @@ failed: - + Staff Properties... - - + + Object Debugger - + Split Staff... - + 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 - + Foto-Mode - + Resolution (%1 dpi)... - + transparent background - + Save As (print mode)... - + Save As (screenshot mode)... - + MuseScore: Set Output Resolution - + Set output resolution for png/svg - + MuseScore: Save As - + cannot determine file type @@ -9942,92 +10082,97 @@ please select a measure and try again - + Segment - + Ticks - - Tick: + + Bar - - Bar + + Beat - - Beat + + rTick: - + Segment Type: - + Clef Segment - + + tick: + + + + Key Signature - + Time Signature - + Begin Repeat - + Chord/Rest - + Breath Segment - + End Bar Line - + Time Signature Announce - + SpannerFor: - + SpannerBack: - + Annotations: - + Lyrics: @@ -10220,22 +10365,23 @@ Sequencer will be disabled. SlurPropertyBase - Volta Properties - - - Slur Properties - solid + Solid - dotted + Dotted + + + + + Dashed @@ -10758,7 +10904,7 @@ altera - + MuseScore Startup Dialog @@ -11054,13 +11200,13 @@ altera - + Text: do not translate - + Offset: do not translate @@ -11098,7 +11244,12 @@ altera - + + layoutToParentWidth + + + + TextStyle: do not translate @@ -11339,7 +11490,6 @@ altera - Color: @@ -11349,159 +11499,170 @@ altera - + System Flag - + Offset - + X: coordinate - + horizontal offset to reference point - + 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 - + enable text frame - + Frame - + draw circled frame - + Circle - + draw boxed frame - + Box - + Width: - + frame line width - - + + mm - + Margin: - + frame inner margin - + Round: - + corner round - + + Foreground Color: + + + + + frame color + + + Background Color: + + TextStyleDialog @@ -11757,32 +11918,74 @@ please choose a different name: - + / - + + + 1 + + + + + + 2 + + + + + + 4 + + + + + + 8 + + + + + + 16 + + + + + + 32 + + + + + + 64 + + + + Pickup Measure - + Time Signature - + Enter Number of Measures: - + Measures: - + <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:9pt; font-weight:400; font-style:normal;"> @@ -12323,21 +12526,16 @@ p, li { white-space: pre-wrap; } - + round bracket action - - - Local handbook - - - Local &Handbook... + Local handbook @@ -12346,7 +12544,7 @@ p, li { white-space: pre-wrap; } - + File open @@ -12356,7 +12554,7 @@ p, li { white-space: pre-wrap; } - + File save @@ -12366,7 +12564,7 @@ p, li { white-space: pre-wrap; } - + File save as @@ -12376,12 +12574,12 @@ p, li { white-space: pre-wrap; } - + File save a copy - + Save a Copy... @@ -12396,12 +12594,12 @@ p, li { white-space: pre-wrap; } - + File reload - + Reload @@ -12411,7 +12609,7 @@ p, li { white-space: pre-wrap; } - + File close @@ -12426,7 +12624,7 @@ p, li { white-space: pre-wrap; } - + Print @@ -12437,6 +12635,7 @@ p, li { white-space: pre-wrap; } + Undo @@ -12447,6 +12646,7 @@ p, li { white-space: pre-wrap; } + Redo @@ -12461,45 +12661,43 @@ p, li { white-space: pre-wrap; } - + Copy - + Paste - - + Show instruments dialog - - + Note input mode - + + Note Input - - + Enter unison above - + Export Parts - + Export Parts... @@ -12509,2689 +12707,2102 @@ p, li { white-space: pre-wrap; } - + 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 - - + Enter seventh above - + Seventh Above - - + 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 - - More stretch - - - - + 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 - - Flip Direction - - - - - + Pitch up - + Up - + Pitch up octave - + Up Octave - + Pitch up by an octave - - + Select Section - - 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 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 - - &Load Style... - - - - - &Save Style... - - - - - - Save style as default - - - - - Save Style As &Default... - - - - - Select A&ll - - - - + &Transpose... - - - Violin clef - - - - + Violin Clef - - - Bass clef - - - - + Bass Clef - - + Display in concert pitch - - &Concert Pitch - - - - - Repeat Last Command - - - - + next syllable - + previous syllable - + toggle visibility - + set visible - + set unvisible - - - Toggle system break - - - - - - Toggle page break - - - - - - Toggle section break - - - - - - Edit element - - - - - &Reset + + Show Unprintable - - De&bugger + + Show Page Margins - - Reset &Stretch + + Manage parts - - Show Unprintable + + Show inspector - - - - Show Page Margins + + Reset measure stretch - - &Search + + Reset user settings - - &General... + + Note entry: whole rest - - &Text... + + Whole rest - - &Chords... + + Note entry: half rest - - Parts + + Half rest - - Par&ts... + + Note entry: quarter rest - - Manage parts + + Quarter rest - - Additional &Media... + + Note entry: 8th rest - - &Page Settings... + + 8th rest - - &Album... + + Tempo Marking... - - Show Inspector + + Tempo Marking - - Show inspector + + Text - - - Reset measure stretch + + Add Frame Text - - - Reset user settings + + Load Style... - - - Show debugger + + Save Style... - - - Show invisible + + Save Style As Default... - - - Show unprintable + + Select All - - - Show frames + + Concert Pitch - - - Enable script debugger + + Info... - - Note entry: whole rest + + Reset - - - Whole rest + + Debugger - - Note entry: half rest + + Reset Stretch - - - Half rest + + Insert Special Characters - - Note entry: quarter rest + + Backspace - - - Quarter rest + + Find - - Note entry: 8th rest + + Mirror note head - - - 8th rest + + General... - - - - Backspace + + Edit general style - - - - Mirror note head + + Text... - - - Edit general style + + Chords... - - - + Double duration - - - + Half duration - - + Follow song - - + Display documents side by side - - + Display documents stacked - - Show score image + + Show OMR image - - - Show OMR image + + Enharmonic up - - - - Enharmonic up + + Parts... - - - + Enharmonic down - - - + Create new revision - - - + Toggle foto mode - - Full screen - - - - - F&ull Screen - - - - - F&ull screen - - - - - - + Enable horizontal raster - - - + Enable vertical raster - - - + Configure raster - - Re-pitch mode - - - - + 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 - - - up+shift+ctrl - - - - - + Pitch down - + Down - + Pitch down octave - + Down octave - + Pitch down by an octave - + Down Note in Chord - - + + Go to lower pitched note in chord - - - &Open... - - - - - &Save - - - - - Save &As... - - - - - &Close - - - - - File new - - - &New... - - - - - &Print... - - - - - &Undo - - - - - &Redo - - - - - Cu&t - - - - - &Copy - - - - - &Paste + File new - - + Diatonic pitch down - + Diatonic down - - + Go to bottom note in chord - + Bottom Note in Chord - + + Move down - - - down+shift+ctrl - - - - - - - - + + Previous chord - - Previous Chord - - - - - - - - + + Previous measure - - Previous Measure - - - - - - - - + + Next chord - - Next Chord + + + Next measure - - - - - - Next measure + + + Delete - - Next Measure + + Delete contents of the selected measures - - - left+shift + + Timewise Delete - - - left+ctrl + + Delete element and duration - - - right+shift + + Delete Selected Measures - - - right+ctrl+shift + + Append measures - - - shift+home + + Append Measures... - - - shift+end + + Insert measures - - - ctrl+shift+home + + Insert Measures... - - - ctrl+shift+end + + Local Handbook... - - - Delete + + Open... - - Delete contents of the selected measures + + Save - - Timewise Delete + + Save As... - - Delete element and duration + + Export... - - - Delete selected measures + + Close - - Delete Selected Measures + + New... - - Append measures + + Print... - - Append Measures... + + Instruments... - - Insert measures + + + Add More Stretch - - Insert Measures... + + Add Less Stretch - - - + + Insert Horizontal Frame - - - + + Insert Vertical Frame - + Append Horizontal Frame - + Append Vertical Frame - - + Duplet - - + Triplet - - + Quadruplet - - + Quintuplet - - + Sextuplet - - + Septuplet - - + Octuplet - - + Nonuplet - + Other... - - - Longa - - - - - - Flat - - - - - - Enable sound while editing - - - - - - - Palette - - - - - Play Panel - - - - - - - Navigator - - - - - - - Mixer - - - - - Transport - - - - - Status Bar - - - - - - - Quit - - - - - Zoom Canvas + + + Longa - - - - Lyrics + + + Flat - - Tempo... + + + Enable sound while editing - - - Tempo + + Palette - - Save Selection + + Play Panel - - Save Selection... + + Navigator - - Save current selection as new score + + Mixer - - Export score + + Transport - - &Export... + + Status Bar - - &Instruments... + + Quit - - &Note Input + + Lyrics - - - Respell pitches + + Save Selection - - &Respell Pitches + + Save Selection... - - Add &More Stretch + + Save current selection as new score - - Add &Less Stretch + + Export score - - Reset &Beam Mode + + 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 - - - - + Append One Measure - - Insert one measure - - - - + Insert One Measure - - - Insert horizontal frame - - - - - Insert text frame - - - - - + + Insert Text Frame - - Append text frame - - - - + Append Text Frame - - Insert fret diagram frame - - - - - + + Insert Fret Diagram Frame - - - Insert vertical frame - - - - - Append horizontal frame - - - - - Append vertical 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, Slower - - - - - + Feathered beam, faster - - Feathered Beam, Faster + + Transport toolbar - - - Play panel + + Note input toolbar - - Transport toolbar + + Zoom canvas - - Note input toolbar + + Full Screen - - - Status bar + + Layers... - - - Zoom canvas + + MuseScore Connect - - - - MuseScore Connect + + Plugin Creator - + Inspector - + Show OMR Panel - + OmrPanel - - Show OMR PAnel - - - - - metronome - - - - + 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 - - Frame 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 - - - Select all - - - - - + Transpose - - + Exchange Voice 1-2 - - Exchange voice 1-2 - - - - - - Exchange voice 1-3 - - - - + Exchange Voice 1-3 - - - Exchange voice 1-4 - - - - + Exchange Voice 1-4 - - - Exchange voice 2-3 - - - - + Exchange Voice 2-3 - - - Exchange voice 2-4 - - - - + Exchange Voice 2-4 - - - Exchange voice 3-4 - - - - + Exchange Voice 3-4 - - + Repeat last command - - + Edit score info - - &Info... - - - - + Toggle System Break - + Toggle Page Break - + Toggle Section Break - + Edit Element - + Show Invisible - + Show Frames - - - Insert special characters - - - - + Insert Special Characters... - - Enable Script Debugger - - - - - - Search - - - - - Zoom in - - - - + Zoom In - - Zoom out - - - - + 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 - - Follow Song - - - - + Documents Side by Side - + Documents Stacked - - + Layers - - &Layers... - - - - - - + next score - - - + previous score @@ -15199,12 +14810,12 @@ p, li { white-space: pre-wrap; } articulation - + Bend - + Tremolo Bar @@ -15212,7 +14823,7 @@ p, li { white-space: pre-wrap; } barlines - + Barlines @@ -15220,45 +14831,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 @@ -15267,7 +14878,7 @@ p, li { white-space: pre-wrap; } images_directory - + Images @@ -15275,100 +14886,100 @@ 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 - + Text line - + Line @@ -15457,7 +15068,7 @@ p, li { white-space: pre-wrap; } plugins_directory - + Plugins @@ -15465,37 +15076,37 @@ p, li { white-space: pre-wrap; } preferences - + Every day - + Every 3 days - + Every week - + Every 2 weeks - + Every month - + Every 2 months - + Never @@ -15503,7 +15114,7 @@ p, li { white-space: pre-wrap; } scores_directory - + Scores @@ -15511,7 +15122,7 @@ p, li { white-space: pre-wrap; } soundfonts_directory - + Soundfonts @@ -15519,7 +15130,7 @@ p, li { white-space: pre-wrap; } styles_directory - + Styles @@ -15527,7 +15138,7 @@ p, li { white-space: pre-wrap; } templates_directory - + Templates diff --git a/share/locale/mscore_be.ts b/share/locale/mscore_be.ts index 7a8ef5b07d2b..78b2ab627292 100644 --- a/share/locale/mscore_be.ts +++ b/share/locale/mscore_be.ts @@ -40,17 +40,17 @@ p, li { white-space: pre-wrap; } AboutBoxDialog - + Unstable Prerelease for Version: Нестабільная папярэдняя сборка версіі: - + Version: Версія: - + Revision: %1 Рэдакцыя: %1 @@ -150,101 +150,96 @@ p, li { white-space: pre-wrap; } - + remove current score - - - Remove Score - - - score list + Remove Score - + move current score down in list - + Down Уніз - + move current score up in list - + Up Уверх - + Add Score - path to new score you want to add - - - - - open file manager - - - - - ... - ... - - - create new album - + New Новы - + load an existing album - + + Load + Загрузіць + + + Print Album - + Join Scores - + MuseScore Album Files (*.album);; - - + + All Files (*) - + MuseScore Files (*.mscz *.mscx *.msc);; + + + MuseScore: Add Score + + + + + MuseScore: Load Album + + ArticulationBase @@ -1465,7 +1460,7 @@ spatium unit - showCourtesyClef + showCourtesy @@ -1506,7 +1501,7 @@ spatium unit - Drumset + Edit Drumset @@ -1617,31 +1612,31 @@ spatium unit несапраўдны - + Open File Адкрыць файл - + failed: не атрымалася: - + MuseScore: Open File MuseScore: Адкрыць файл - + Write File failed: - + MuseScore: Write Drumset MuseScore: Запіс набору ўдарных @@ -1654,17 +1649,17 @@ failed: MuseScore: Рэдагаванне набору ўдарных - + Note Нота - + Shortcut Спалучэнне клавіш - + Name Імя @@ -1674,97 +1669,97 @@ failed: Імя: - + Note Head: Галоўка ноты: - + Staff Line: Лінейка стану: - + Stem Direction: Напрамак штылю: - + Auto Аўта - + Up Уверх - + Down Уніз - + Default Voice: Голас па-змаўчанні - + Shortcut: Спалучэнне клавіш: - + A A - + B B - + C C - + D D - + E E - + F F - + G G - + -- -- - + Load Загрузіць - + Save Захаваць - + No. @@ -3192,42 +3187,42 @@ failed: - + Barlines Тактавыя рысы - + Notes Ноты - + Arpeggios Арпеджыо - + Beams Вязкі - + Sizes Памеры - + Hairpins - + Chordnames Назвы аккордаў @@ -3238,13 +3233,13 @@ failed: - + Clefs Ключы - + Slurs/Ties @@ -3255,19 +3250,19 @@ failed: - + Figured Bass - + Articulations, Ornaments Артыкуляцыя, ўпрыгажэнні - + Accidentals Альтэрацыі @@ -3312,45 +3307,44 @@ failed: - - - - - - - - + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + sp spatium unit ---------- @@ -3431,11 +3425,11 @@ spatium unit - - - - - + + + + + % % @@ -3520,112 +3514,102 @@ spatium unit Фіксаваная шырыня такту - + Spacing (1=tight) Інтэрвал (1=прутка) - + Min. note distance Мін. водступ ноты - + Clef left margin Левы водступ ключа - + Key sig. left margin Левы водступ ключ. знакаў - + Time sig. left margin Левы водступ памеру - - - Clef-key distance - - Clef-barline distance - - Begin repeat left margin - - - - + 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 @@ -3785,284 +3769,289 @@ p, li { white-space: pre-wrap; } - + 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 - + 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 Файл апісання акорду @@ -4079,35 +4068,35 @@ p, li { white-space: pre-wrap; } - + ... ... - - - + + + sp space unit інт - + Voice 1 Голас I - + Voice 2 Голас II - + Voice 3 Голас III - + Voice 4 Голас IV @@ -4270,7 +4259,7 @@ p, li { white-space: pre-wrap; } GreendotButton - + record запісь @@ -4367,7 +4356,7 @@ p, li { white-space: pre-wrap; } Inspector - + Inspector @@ -4390,8 +4379,8 @@ p, li { white-space: pre-wrap; } - - + + sp spatium unit ---------- @@ -4399,57 +4388,57 @@ spatium unit інт - + Offset Y: - + Direction: - + Auto Аўта - + Up Уверх - + Down Уніз - + Anchor: - + Top Staff - + Bottom Staff - + Chord Automatic - + Top Chord - + Bottom Chord @@ -4472,27 +4461,27 @@ spatium unit - - + + sp інт - + Position - - - - - + + + + + ... ... - + User Position @@ -4541,48 +4530,77 @@ spatium unit - - + Offset X: + + + + + + sp + spatium unit +---------- +spatium unit + інт + + + + + reset value - - - + + + + + ... ... - + Small Маленькі - + Stemless Штылі - + Stem direction - + Auto Аўта - + Up Уверх - + Down Уніз + + + Offset Y: + + + + + InspectorClef + + + Show Courtesy Clef + + InspectorElement @@ -4597,8 +4615,8 @@ spatium unit - - + + sp spatium unit ---------- @@ -4606,30 +4624,30 @@ spatium unit інт - + Offset Y: - + Offset X: - + Color: Колер: - - - - + + + + ... ... - + Visible Бачны @@ -4652,12 +4670,12 @@ spatium unit - + Set Visible - + Set Invisible @@ -4675,9 +4693,9 @@ spatium unit - - - + + + sp spatium unit ---------- @@ -4685,29 +4703,29 @@ spatium unit інт - + Width: Шырыня: - + Left Gap: - + Right Gap: - - + + reset value - - + + ... ... @@ -4725,30 +4743,30 @@ spatium unit Выява - + Size - + Scale: - - + + % % - - - + + + ... ... - + Lock Aspect Ratio @@ -4763,6 +4781,42 @@ spatium unit + + InspectorKeySig + + + Show Courtesy Time Signature + + + + + Show Naturals + + + + + InspectorLasso + + + Form + Форма + + + + Lasso + + + + + Position: + + + + + Size + + + InspectorNote @@ -4786,225 +4840,225 @@ spatium unit - - - + + + Auto Аўта - + Top - + Bottom - - - - - - - - - + + + + + + + + + reset value - - - - - - - - - + + + + + + + + + ... ... - + Ontime Offset - + Left Злева - + Right - + Dot Position - + Note Head Group Группа галовак нот - + Tuning Offset - + Note Head Type Тып галоўкі ноты - + Velocity Type - + Whole - + Half - + Quarter - + Breve - + Velocity - + Offset - + User - + normal звычайны - + cross x - + diamond ромб - + triangle трохвугольнік - + slash слэш - + xcircle x у коле - + do do - + re re - + mi mi - + fa fa - + sol - + la la - + ti ti - + alt. brevis - + Select - + Dot1 - + Dot2 - + Dot3 - + Hook - + Stem - + Beam @@ -5012,7 +5066,7 @@ spatium unit InspectorRest - + Small Маленькі @@ -5035,8 +5089,8 @@ spatium unit - - + + sp spatium unit ---------- @@ -5044,19 +5098,19 @@ spatium unit інт - + Leading space: - - + + reset value - - + + ... ... @@ -5079,12 +5133,20 @@ spatium unit - + sp spatium unit інт + + InspectorTimeSig + + + Show Courtesy Time Signature + + + InspectorVBox @@ -5105,20 +5167,20 @@ spatium unit - - - + + + reset value - - - + + + ... ... @@ -5128,17 +5190,17 @@ spatium unit - - - - + + + + mm мм - - - + + + sp spatium unit ---------- @@ -5146,27 +5208,27 @@ spatium unit інт - + Top Gap: - + Height: - + Top Margin: - + Left Margin: - + Bottom Gap: @@ -5364,51 +5426,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);;Усі файлы (*) @@ -5771,14 +5833,14 @@ failed: - - - - - - - - + + + + + + + + sp інт @@ -5818,110 +5880,110 @@ failed: Колер: - + diagonally па дыяганалі - + Begin Пачатак - - + + Text Тэкст - - + + ... ... - - + + place: месца: - - + + Below - - + + Left Злева - - + + Above Зверху - - - + + + Symb. - - - + + + Ped (Pedal) Ped (педаль) - - - + + + x: x: - - - + + + y: y: - - + + Hook - - + + Up Уверх - - + + 90° 90° - - + + 45° 45° - + Continue Працягваць - + End Канец @@ -6396,7 +6458,7 @@ Would you like to locate %2 now? MenuNotes - + &Notes @@ -6474,349 +6536,368 @@ before closing? - - + + 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 @@ -6827,7 +6908,7 @@ before closing? - + MuseScore @@ -6872,17 +6953,17 @@ before closing? - + Untitled - + Grace Notes - + Clefs Ключы @@ -6897,267 +6978,267 @@ before closing? - + Section break - + Staff spacer down - + Staff spacer up - + Thumb - + Fall/Doit - + fall - + doit - + 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 @@ -7167,117 +7248,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 @@ -7287,332 +7368,298 @@ 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 - - MuseScore handbook not found at: - - - - - - - -From the "Help" menu try choosing "Online Handbook" instead. + + Find - - MuseScore: Open Help - MuseScore: Адчыніць дапаможнік - - - + Open failed: unknown file extension or broken file - + System Сістэма - + no score - + note entry mode рэжым запісу нот - + edit mode рэжым рэдагавання - + play граць - + foto mode - + Go To: - - Search - - - - + 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 - - - Error loading plugin -"%1" line %2: -%3 - - - - - Script -%1 -is incompatible with current interface - - - - - MuseScore is too old to run script -%1 - - - - + Rehearsal Mark - - + + Error opening lame library - + Could not open MP3 encoding library! - + Not a valid or supported MP3 encoding library! - - + + Encoding error @@ -7622,12 +7669,12 @@ is incompatible with current interface - + Unable to open target file for writing - + Error %1 returned from MP3 encoder @@ -7725,7 +7772,7 @@ please choose a different name: - + MuseScore: Create New Score @@ -7733,12 +7780,12 @@ please choose a different name: NewWizardPage1 - + Create New Score - + This wizard creates a new score @@ -7746,12 +7793,12 @@ please choose a different name: NewWizardPage2 - + Create New Score - + Define a set of instruments. Each instrument is represented by one or more staves @@ -7759,12 +7806,12 @@ please choose a different name: NewWizardPage3 - + Create New Score - + Create Time Signature @@ -7772,22 +7819,22 @@ please choose a different name: NewWizardPage4 - + Create New Score - + Select Template File: - + MuseScore: Select Template - + MuseScore Template Files (*.mscz *.mscx) @@ -7795,27 +7842,27 @@ please choose a different name: NewWizardPage5 - + Create New Score - + Select Key Signature and Tempo: - + Key Signature - + Tempo Тэмп - + BPM: BPM: @@ -8050,27 +8097,27 @@ please choose a different name: PaletteBox - + Palettes - + Palette Operations - + Single Palette Mode - + Reset to factory defaults - + new Palette @@ -8078,42 +8125,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 @@ -8407,7 +8454,7 @@ please choose a different name: - + relative tempo @@ -8417,117 +8464,205 @@ please choose a different name: 100% - - Straight + + master volume - - Swing + + Vol. + short text for volume slider - - Shuffle + + Tmp. + short text for tempo slider + + + PluginCreator - - master volume + + File Operations + Файлавыя аперацыі + + + + Edit Operations - - Vol. - short text for volume slider + + MuseScore Plugin Editor - - Tmp. - short text for tempo slider + + + + MuseScore + + + + + + + Plugin "%1" has changes +save before closing? + + + + + untitled + + + + + Manual - PreferenceDialog + PluginCreatorBase - - Choose Notepaper + + MainWindow - - Choose Background Wallpaper + + Run + + + + + Stop + + + + + File + + + + + Help + + + + + Edit + + + + + New + Новы + + + + Open + + + + + Save + Захаваць + + + + Manual + + + + + Undo + + + + + Redo + + + + + Quit + + + PreferenceDialog - - load + + Choose Notepaper - - Plugin Path + + 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 @@ -8535,822 +8670,848 @@ please choose a different name: PrefsDialogBase - + MuseScore: Preferences - + MuseScore Preferences - + General - + Scores Directory: - + Styles Directory: - + Templates Directory: - + Plugins Directory: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ... ... - + SoundFonts Directory: - + Images Directory: - + Program Start - + start empty - + continue last session - + start with new score - + start with score: - + OSC remote control - + Port Number: - + dark - - light - - - - + native - + Icon size: - + use native file dialogs - + Paper - + Miscellaneous - + Enable MIDI input - + Default Duration: - + enable MIDI remote control - + MIDI Remote Control - + rewind - - - - - + + + + + is active - - - - - + + + + + record запісь - + toggle play - + whole note - + half note - + quarter note - + 8th note - + rest - + augmentation dot - + double augmentation dot - + tie - + play граць - + stop - + note entry - + 16th note - + 32nd note - + 64nd note - + View - + Scale - + default scale for new score views - + Default Files - + + Instrument List2: + + + + + Instrument List1: + + + + Style: - + Style for Part: - + Use JACK MIDI - + PulseAudio - + PortAudio - + API: - + Default SoundFont - + Choose MIDI input interface - + Browse... - + show splash screen - + Language - + Attention: changing the language requires a restart of MuseScore. - + Paths - - Instrument List: - - - - + Windows - + Show Play Panel - + Show Navigator - + Show MuseScore Connect - + Style - + Auto Save - + Save every - + minutes - + Canvas - + Background - - + + Wallpaper - - + + Color - + Proximity for selecting elements - + disable antialiased drawing - + uncheck this to speed up drawing - + Draw Antialiased - + Text Тэкст - + Auto-correction - + Replace 1/2 with fraction character ½ - + Replace (C) with copyright symbol © (Only applies to text in the copyright section) - - + + Note Entry Запіс нот - + Play notes when editing - + ms - + Color notes outside of usable pitch range - + Score Партытура - + I/O - + Ports - + Remember last connection(s) - + Use internal synthesizer - + JACK Audio Server - + Left-Port: - + Right-Port: - + ALSA Audio - - + + Device: - + default - - + + Sample Rate: - + 192000 192000 - + 96000 96000 - + 88200 88200 - - + + 48000 48000 - - + + 44100 44100 - + 32000 32000 - + 22050 22050 - + Fragments: - + Period Size: - + 4096 4096 - + 2048 2048 - + 1024 1024 - + 512 512 - + 256 256 - + 128 128 - + 64 64 - + Attention: Any changes on this page require a restart of MuseScore. - + Import - + Style Used for Import - + Built in style - + Use style file: - + Character Set used when import non-unicode strings. (For binary file import) - - + + MusicXML - + Import layout - + Import system and page breaks - - + + MIDI - + Shortest Note: - + 1/4 1/4 - + 1/8 1/8 - + 1/16 1/16 - + 1/32 1/32 - + 1/64 1/64 - + Export - + Shortcuts - + Action - + + Shortcut Спалучэнне клавіш - - + + Reset to Default - - + + Clear Вычысціць - + Character Set: - + PNG/SVG - + Resolution DPI - + Transparent background - + Expand repeats - + Audio - + Export layout - + Export all system and page breaks - + Export manually added system and page breaks only - + Do not export system or page breaks - + Define... - + Plugins - + + Name: + Імя: + + + + Path: + + + + + Version: + + + + + Load + Загрузіць + + + + Define Shortcut + + + + Update - + Automatic Update Check - + Check for new versions of MuseScore on startup @@ -9426,11 +9587,11 @@ please choose a different name: - - - - - + + + + + Quit @@ -9479,6 +9640,11 @@ failed: MuseScore: Write Album + + + Untitled + + MuseScore: file not found: @@ -9490,7 +9656,7 @@ failed: - + MuseScore: Load Style failed: @@ -9507,52 +9673,26 @@ failed: - + MuseScore: load Style failed: - - MuseScore - - - - - reading file < - - - - - > failed: - - - - - &Quit - - - - + MuseScore: Load languages failed: - + MuseScore: invalid command - - + + MuseScore: Load Palette failed: - - - - MuseScore: register script plugin: - - MuseScore: Import GuitarPro @@ -9562,7 +9702,7 @@ failed: RecordButton - + record запісь @@ -9586,12 +9726,12 @@ failed: ScoreView - + Select - + More... @@ -9729,13 +9869,13 @@ failed: - + Staff Нотаносец - + Measure Properties... Уласцівасці такту... @@ -9795,63 +9935,63 @@ failed: Уласцівасці гармоніі... - - + + Object Debugger - + Edit Drumset... Рэдагаваць набор ударных... - + Drumroll Editor... - + Pianoroll Editor... - + 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 @@ -9859,63 +9999,63 @@ please select a measure and try again - + Staff Properties... - + Split Staff... - + Measure Такт - + Foto-Mode - + Resolution (%1 dpi)... - + transparent background - + Save As (print mode)... - + Save As (screenshot mode)... - + MuseScore: Set Output Resolution - + Set output resolution for png/svg - + MuseScore: Save As - + cannot determine file type @@ -9956,92 +10096,97 @@ please select a measure and try again Форма - + Segment - + Annotations: - + SpannerFor: - + SpannerBack: - + Ticks - - Tick: - - - - + Bar - + Beat - + Clef Segment - + Key Signature - + Time Signature - + Begin Repeat - + Chord/Rest Акорд/Паўза - + Breath Segment - + End Bar Line - + Time Signature Announce - + Lyrics: - + + tick: + + + + + rTick: + + + + Segment Type: @@ -10234,22 +10379,23 @@ Sequencer will be disabled. SlurPropertyBase - Volta Properties - - - Slur Properties - solid - суцэльная + Solid + - dotted + Dotted + + + + + Dashed @@ -10772,7 +10918,7 @@ altera - + MuseScore Startup Dialog @@ -11068,13 +11214,13 @@ altera Тэкст - + Text: do not translate Тэкст: - + Offset: do not translate @@ -11112,7 +11258,12 @@ altera - + + layoutToParentWidth + + + + TextStyle: do not translate @@ -11353,7 +11504,6 @@ altera - Color: Колер: @@ -11363,159 +11513,170 @@ altera - + System Flag - + Offset - + X: coordinate - + horizontal offset to reference point - + 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 - + enable text frame - + Frame - + draw circled frame - + Circle - + draw boxed frame - + Box - + Width: Шырыня: - + frame line width - - + + mm мм - + Margin: - + frame inner margin - + Round: - + corner round - + + Foreground Color: + + + + + frame color + + + Background Color: + + TextStyleDialog @@ -11771,32 +11932,74 @@ please choose a different name: - + / / - + + + 1 + 1 + + + + + 2 + 2 + + + + + 4 + 4 + + + + + 8 + 8 + + + + + 16 + 16 + + + + + 32 + 32 + + + + + 64 + 64 + + + Pickup Measure - + Time Signature - + Enter Number of Measures: - + Measures: - + <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:9pt; font-weight:400; font-style:normal;"> @@ -12337,21 +12540,16 @@ p, li { white-space: pre-wrap; } Альтэрацыі - + round bracket круглыя дужкі action - - - Local handbook - - - Local &Handbook... + Local handbook @@ -12360,7 +12558,7 @@ p, li { white-space: pre-wrap; } - + File open @@ -12370,7 +12568,7 @@ p, li { white-space: pre-wrap; } - + File save @@ -12380,7 +12578,7 @@ p, li { white-space: pre-wrap; } - + File save as @@ -12390,12 +12588,12 @@ p, li { white-space: pre-wrap; } - + File save a copy - + Save a Copy... @@ -12405,12 +12603,12 @@ p, li { white-space: pre-wrap; } - + File reload - + Reload @@ -12420,7 +12618,7 @@ p, li { white-space: pre-wrap; } - + File close @@ -12435,7 +12633,7 @@ p, li { white-space: pre-wrap; } - + Print @@ -12446,6 +12644,7 @@ p, li { white-space: pre-wrap; } + Undo @@ -12456,6 +12655,7 @@ p, li { white-space: pre-wrap; } + Redo @@ -12470,45 +12670,43 @@ p, li { white-space: pre-wrap; } - + Copy - + Paste - - + Show instruments dialog - - + Note input mode - + + Note Input - - + Enter unison above - + Export Parts - + Export Parts... @@ -12518,2694 +12716,2107 @@ p, li { white-space: pre-wrap; } - + 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 - - + Enter seventh above - + Seventh Above - - + 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 - - More stretch - - - - + 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 - - Flip Direction - - - - - + Pitch up - + Up Уверх - + Pitch up octave - + Up Octave - + Pitch up by an octave - + Up Note in Chord - - next syllable + + Text + Тэкст + + + + Add Frame Text - - previous syllable + + Load Style... - - toggle visibility + + Save Style... - - set visible + + Save Style As Default... - - set unvisible + + Select All - - - Go to higher pitched note in chord + + Concert Pitch + Канцэртны строй + + + + Info... - - - Go to top note in chord + + Reset - - Top Note in Chord + + Debugger - - Move up + + Reset Stretch - - - up+shift+ctrl + + Insert Special Characters - - - Pitch down + + Find - - Down - Уніз + + General... + - - Pitch down octave + + Text... - - Down octave + + Chords... - - Pitch down by an octave + + Parts... - - Down Note in Chord + + Full Screen - - - Go to lower pitched note in chord + + Additional Media... - - - Go to bottom note in chord + + Page Settings... - - Bottom Note in Chord + + Album... - - Move down + + Layers... - - - down+shift+ctrl + + Plugin Creator - - - - - - Previous chord + + next syllable - - Previous Chord + + previous syllable - - - - - - Previous measure + + toggle visibility - - Previous Measure + + set visible - - - - - - Next chord + + set unvisible - - Next Chord + + Go to higher pitched note in chord - - - - - - Next measure + + Go to top note in chord - - Next Measure + + Top Note in Chord - - - left+shift + + Move up - - - left+ctrl + + Pitch down - - - right+shift + + Down + Уніз + + + + Pitch down octave - - - right+ctrl+shift + + Down octave - - - shift+home + + Pitch down by an octave - - - shift+end + + Down Note in Chord - - - ctrl+shift+home + + + Go to lower pitched note in chord - - - ctrl+shift+end + + 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 - - - - + 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 - - - - Acciaccatura + + Local Handbook... - - - - Appoggiatura + + Open... - - - - Grace: quarter + + Save + Захаваць + + + + Save As... - - - - Grace: 16th + + Export... - - - - Grace: 32nd + + Close + Закрыць + + + + New... - - - - Grace: 8nd after + + Print... - - - - Voice 1 - Голас I + + 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, Slower - - - - - + Feathered beam, faster - - Feathered Beam, Faster - - - - - - Play panel - - - - + Transport toolbar - + Note input toolbar - - - Status bar - - - - - + Zoom canvas - - + Add system text - - + Add staff text - - - Add 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 - - &Load Style... - - - - - &Save Style... - - - - - - Save style as default - - - - - Save Style As &Default... - - - - - Select A&ll - - - - + &Transpose... - - - Violin clef - - - - + Violin Clef - - - Bass 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 - - &Concert Pitch - - - - - Repeat Last Command - - - - - - Toggle system break - - - - - - Toggle page break - - - - - - Toggle section break - - - - + Toggle Section Break - - - Edit element - - - - - + Reset user settings - - &Reset - - - - - - Show debugger - - - - - De&bugger - - - - - + Reset measure stretch - - Reset &Stretch - - - - - - Show invisible - - - - - - Show unprintable - - - - + Show Unprintable - - - Show frames - - - - - - + Show Page Margins - - - Enable script debugger - - - - + 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 - - &Search - - - - - Zoom in - - - - - Zoom out - - - - - - + Mirror note head - - + Edit general style - - &General... - - - - - + Edit text style - - &Text... - - - - - + Edit chord style - - &Chords... - - - - - - + Double duration - - - + Half duration - - + Follow song - - + Display documents side by side - - + Display documents stacked - - Parts - - - - - Par&ts... - - - - + Manage parts - - - + Enharmonic up - - - + Enharmonic down - - - + Create new revision - - - + Toggle foto mode - - Show score image - - - - - - Show OMR image - - - - - Full screen - - - - - F&ull Screen - - - - - F&ull screen - - - - - - - Enable horizontal raster - - - - - - - Enable vertical raster - - - - - - - Configure raster - - - - - Re-pitch mode - - - - - Re-Pitch Mode - - - - - Replace pitches without changing rhythms - - - - - - - Stack down - - - - - - - Piano Keyboard - - - - - - Show media dialog - - - - - Additional &Media... - - - - - - - Split Measure - - - - - - - Join Measure - - - - - - Page Settings - - - - - &Page Settings... - - - - - - Album - - - - - &Album... - - - - - Show Inspector - - - - - Show inspector - - - - - Show OMR Panel - - - - - OmrPanel - - - - - Show OMR PAnel - - - - - metronome - - - - - toggle metronome - - - - - - - Figured Bass - - - - - - - Next Score + + Show OMR image - - - - Previous Score + + Enable horizontal raster - - - - Transpose Up + + Enable vertical raster - - - - Transpose Down + + Configure raster - - - Show master palette + + Re-Pitch Mode - - Master Palette... + + Replace pitches without changing rhythms - - Insert Measure + + Stack down - - Toggle View Mode + + Piano Keyboard - - Insert measures + + Show media dialog - - &Open... + + Split Measure - - &Save + + Join Measure - - Save &As... + + Page Settings - - Save Selection + + Album - - Save Selection... + + Show inspector - - Save current selection as new score + + Show OMR Panel - - Export score + + OmrPanel - - &Export... + + toggle metronome - - Save a copy of the score in various formats + + Figured Bass - - &Close + + Next Score - - File new + + Previous Score - - &New... + + Transpose Up - - &Print... + + Transpose Down - - &Undo + + Show master palette - - &Redo + + Master Palette... - - Cu&t + + Insert Measure - - &Copy + + Toggle View Mode - - &Paste + + Insert measures - - &Instruments... + + Save Selection - - &Note Input + + Save Selection... - - - Respell pitches + + Save current selection as new score - - &Respell Pitches + + Export score - - Add &More Stretch + + Save a copy of the score in various formats - - Add &Less Stretch + + File new - - Reset &Beam Mode + + 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 - - 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 - + Timewise delete - - Append one measure - - - - + Append One Measure - - Insert one measure - - - - + Insert One Measure - + Insert Measures... - - - Insert horizontal frame - - - - - - + + Insert Horizontal Frame - - Insert text frame - - - - - + + Insert Text Frame - - Append text frame - - - - + Append Text Frame - - Insert fret diagram frame - - - - - + + Insert Fret Diagram Frame - - - Insert vertical frame - - - - - - + + Insert Vertical Frame - - Append horizontal frame - - - - + Append Horizontal Frame - - Append vertical frame - - - - + Append Vertical Frame - - + Duplet - - + Triplet - - + Quadruplet - - + Quintuplet - - + Sextuplet - - + Septuplet - - + Octuplet - - + Nonuplet - + Other... - - + + Longa - - + + Flat - - + + Enable sound while editing - - - + Palette - + Play Panel - - - + Navigator - - - + Mixer - + Transport - + Status Bar - - - + Quit - - Zoom Canvas - Павялічыць вобласць - - - - - + Lyrics Словы - - Tempo... - - - - - - Tempo - Тэмп - - - + Metronome Метраном - + System Text - + Note duration: double whole - - + + Double whole note - - + + Whole note - - + + Half note - - + + Quarter note - - + + 8th note - - + + 16th note - - + + 32nd note - - + + 64th note - - Staff Text + + Tempo Marking... - - Frame Text + + 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 - - - Select all - - - - - + 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 - - &Info... - - - - + Toggle System Break - + Toggle Page Break - + Edit Element - - - Insert special characters - - - - + Insert Special Characters... - - Enable Script Debugger - - - - - + Layers - - &Layers... - - - - - - + MuseScore Connect - + Inspector - + Show Invisible - + Show Frames - - - Search - - - - + 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 - - Follow Song - - - - + Documents Side by Side - + Documents Stacked - - - + next score - - - + previous score @@ -15213,12 +14824,12 @@ p, li { white-space: pre-wrap; } articulation - + Bend - + Tremolo Bar @@ -15226,7 +14837,7 @@ p, li { white-space: pre-wrap; } barlines - + Barlines Тактавыя рысы @@ -15234,45 +14845,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 @@ -15281,7 +14892,7 @@ p, li { white-space: pre-wrap; } images_directory - + Images @@ -15289,100 +14900,100 @@ 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 - + Text line - + Line Лінія @@ -15471,7 +15082,7 @@ p, li { white-space: pre-wrap; } plugins_directory - + Plugins @@ -15479,37 +15090,37 @@ p, li { white-space: pre-wrap; } preferences - + Every day - + Every 3 days - + Every week - + Every 2 weeks - + Every month - + Every 2 months - + Never @@ -15517,7 +15128,7 @@ p, li { white-space: pre-wrap; } scores_directory - + Scores @@ -15525,7 +15136,7 @@ p, li { white-space: pre-wrap; } soundfonts_directory - + Soundfonts @@ -15533,7 +15144,7 @@ p, li { white-space: pre-wrap; } styles_directory - + Styles @@ -15541,7 +15152,7 @@ p, li { white-space: pre-wrap; } templates_directory - + Templates diff --git a/share/locale/mscore_bg.ts b/share/locale/mscore_bg.ts index 0447e5dbd2a7..bfe1aa024316 100644 --- a/share/locale/mscore_bg.ts +++ b/share/locale/mscore_bg.ts @@ -31,17 +31,17 @@ p, li { white-space: pre-wrap; } AboutBoxDialog - + Unstable Prerelease for Version: - + Version: - + Revision: %1 @@ -141,99 +141,94 @@ p, li { white-space: pre-wrap; } - + remove current score - - - Remove Score - - - score list + Remove Score - + move current score down in list - + Down - + move current score up in list - + Up - + Add Score - path to new score you want to add + create new album - - open file manager + + New - ... + load an existing album - - create new album + + Load - - New + + Join Scores - - load an existing album + + Print Album - - Join Scores + + MuseScore Album Files (*.album);; - - Print Album + + + All Files (*) - - MuseScore Album Files (*.album);; + + MuseScore Files (*.mscz *.mscx *.msc);; - - - All Files (*) + + MuseScore: Add Score - - MuseScore Files (*.mscz *.mscx *.msc);; + + MuseScore: Load Album @@ -1456,7 +1451,7 @@ spatium unit - showCourtesyClef + showCourtesy @@ -1497,7 +1492,7 @@ spatium unit - Drumset + Edit Drumset @@ -1608,29 +1603,29 @@ spatium unit - + Open File - + failed: - + MuseScore: Open File - + Write File failed: - + MuseScore: Write Drumset @@ -1643,17 +1638,17 @@ failed: - + Note - + Shortcut - + Name @@ -1663,97 +1658,97 @@ failed: - + Note Head: - + Staff Line: - + Stem Direction: - + Auto - + Up - + Down - + Default Voice: - + Shortcut: - + A - + B - + C - + D - + E - + F - + G - + -- - + Load - + Save - + No. @@ -3181,48 +3176,48 @@ failed: - + Barlines - + Notes - + Arpeggios - + Beams - + Sizes - + Hairpins - + Chordnames - + Articulations, Ornaments @@ -3262,45 +3257,44 @@ failed: - - - - - - - - + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + sp spatium unit ---------- @@ -3341,11 +3335,11 @@ spatium unit - - - - - + + + + + % @@ -3380,7 +3374,7 @@ spatium unit - + shorten stems @@ -3418,8 +3412,8 @@ spatium unit - - + + spaces @@ -3430,19 +3424,19 @@ spatium unit - + Clefs - + Figured Bass - + Accidentals @@ -3614,40 +3608,35 @@ spatium unit - + minimum Measure width - + Spacing (1=tight) - + Min. note distance - + Clef left margin - + Key sig. left margin - + Time sig. left margin - - - Clef-key distance - - Clef-barline distance @@ -3655,227 +3644,222 @@ spatium unit - Begin repeat left margin - - - - 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 - + 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 @@ -3886,7 +3870,7 @@ spatium unit - + Slurs/Ties @@ -3941,62 +3925,67 @@ p, li { white-space: pre-wrap; } - + 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 @@ -4013,90 +4002,90 @@ p, li { white-space: pre-wrap; } - + ... - - - + + + 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 @@ -4259,7 +4248,7 @@ p, li { white-space: pre-wrap; } GreendotButton - + record @@ -4356,7 +4345,7 @@ p, li { white-space: pre-wrap; } Inspector - + Inspector @@ -4379,8 +4368,8 @@ p, li { white-space: pre-wrap; } - - + + sp spatium unit ---------- @@ -4388,57 +4377,57 @@ spatium unit - + Offset Y: - + Direction: - + Auto - + Up - + Down - + Anchor: - + Top Staff - + Bottom Staff - + Chord Automatic - + Top Chord - + Bottom Chord @@ -4461,27 +4450,27 @@ spatium unit - - + + sp - + Position - - - - - + + + + + ... - + User Position @@ -4530,48 +4519,77 @@ spatium unit - - + Offset X: + + + + + + sp + spatium unit +---------- +spatium unit + + + + + + reset value - - - + + + + + ... - + Small - + Stemless - + Stem direction - + Auto - + Up - + Down + + + Offset Y: + + + + + InspectorClef + + + Show Courtesy Clef + + InspectorElement @@ -4586,31 +4604,31 @@ spatium unit - + Offset X: - + Color: - - - - + + + + ... - + Visible - - + + sp spatium unit ---------- @@ -4618,7 +4636,7 @@ spatium unit - + Offset Y: @@ -4641,12 +4659,12 @@ spatium unit - + Set Visible - + Set Invisible @@ -4664,26 +4682,26 @@ spatium unit - + Left Gap: - - + + reset value - - + + ... - - - + + + sp spatium unit ---------- @@ -4691,12 +4709,12 @@ spatium unit - + Right Gap: - + Width: @@ -4714,30 +4732,30 @@ spatium unit - + Size - + Scale: - - + + % - - - + + + ... - + Lock Aspect Ratio @@ -4752,6 +4770,42 @@ spatium unit + + InspectorKeySig + + + Show Courtesy Time Signature + + + + + Show Naturals + + + + + InspectorLasso + + + Form + + + + + Lasso + + + + + Position: + + + + + Size + + + InspectorNote @@ -4775,225 +4829,225 @@ spatium unit - - - + + + Auto - + Top - + Bottom - - - - - - - - - + + + + + + + + + reset value - - - - - - - - - + + + + + + + + + ... - + Ontime Offset - + Left - + Right - + Dot Position - + Note Head Group - + Tuning Offset - + Note Head Type - + Velocity Type - + Whole - + Half - + Quarter - + Breve - + Velocity - + Offset - + User - + normal - + cross - + diamond - + triangle - + slash - + xcircle - + do - + re - + mi - + fa - + sol - + la - + ti - + alt. brevis - + Select - + Dot1 - + Dot2 - + Dot3 - + Hook - + Stem - + Beam @@ -5001,7 +5055,7 @@ spatium unit InspectorRest - + Small @@ -5024,8 +5078,8 @@ spatium unit - - + + sp spatium unit ---------- @@ -5033,19 +5087,19 @@ spatium unit - + Leading space: - - + + reset value - - + + ... @@ -5068,12 +5122,20 @@ spatium unit - + sp spatium unit + + InspectorTimeSig + + + Show Courtesy Time Signature + + + InspectorVBox @@ -5082,14 +5144,14 @@ spatium unit - + Top Gap: - - - + + + sp spatium unit ---------- @@ -5109,20 +5171,20 @@ spatium unit - - - + + + reset value - - - + + + ... @@ -5132,30 +5194,30 @@ spatium unit - - - - + + + + mm - + Top Margin: - + Left Margin: - + Bottom Gap: - + Height: @@ -5353,49 +5415,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 (*) @@ -5758,14 +5820,14 @@ failed: - - - - - - - - + + + + + + + + sp @@ -5805,110 +5867,110 @@ failed: - + diagonally - + Begin - - + + Text - - + + ... - - + + place: - - + + Below - - + + Left - - + + Above - - - + + + Symb. - - - + + + Ped (Pedal) - - - + + + x: - - - + + + y: - - + + Hook - - + + Up - - + + 90° - - + + 45° - + Continue - + End @@ -6383,7 +6445,7 @@ Would you like to locate %2 now? MenuNotes - + &Notes @@ -6434,28 +6496,23 @@ Would you like to locate %2 now? MuseScore - + Fingering - + Rehearsal Mark - + Concert Pitch - - - Search - - - + MuseScore @@ -6466,14 +6523,13 @@ before closing? - - + MuseScore: Load Score - + MuseScore: Load error @@ -6519,13 +6575,13 @@ before closing? - - + + All Files (*) - + Untitled @@ -6540,273 +6596,293 @@ before closing? - + 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 @@ -6826,70 +6902,70 @@ before closing? - - + + 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 @@ -6899,277 +6975,277 @@ 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 - + 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 - + Fret Diagram - + &Measures - + &Frames - + &Text @@ -7179,42 +7255,42 @@ before closing? - + 4/4 common time - + End Bar - + Double Bar - + Start Repeat - + End Repeat - + End-Start Repeat - + Breath - + Brackets @@ -7224,62 +7300,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 @@ -7289,62 +7365,62 @@ before closing? - + Symbols - + &Create - + Text - + File Operations - + Transport Tools - + Page View - + Foto Mode - + Note Entry - + &File - + Open &Recent - + &Edit - + &Layout @@ -7376,257 +7452,228 @@ 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 - - MuseScore: warning - - - - - Cannot create tuplet: note value too short + + Find - - MuseScore handbook not found at: - + + MuseScore: warning - - - -From the "Help" menu try choosing "Online Handbook" instead. + + Cannot create tuplet: note value too short - + &About - + switch layer - - MuseScore: Open Help - - - - + no score - + note entry mode - + edit mode - + play - + Go To: - + System - + Glissando - - - Error loading plugin -"%1" line %2: -%3 - - - - - Script -%1 -is incompatible with current interface - - - - - MuseScore is too old to run script -%1 - - - - - + + Error opening lame library - + Could not open MP3 encoding library! - + Not a valid or supported MP3 encoding library! - - + + Encoding error @@ -7636,12 +7683,12 @@ is incompatible with current interface - + Unable to open target file for writing - + Error %1 returned from MP3 encoder @@ -7672,7 +7719,7 @@ is incompatible with current interface NewWizard - + MuseScore: Create New Score @@ -7720,12 +7767,12 @@ is incompatible with current interface NewWizardPage1 - + Create New Score - + This wizard creates a new score @@ -7733,12 +7780,12 @@ is incompatible with current interface NewWizardPage2 - + Create New Score - + Define a set of instruments. Each instrument is represented by one or more staves @@ -7746,12 +7793,12 @@ is incompatible with current interface NewWizardPage3 - + Create New Score - + Create Time Signature @@ -7759,22 +7806,22 @@ is incompatible with current interface NewWizardPage4 - + Create New Score - + Select Template File: - + MuseScore: Select Template - + MuseScore Template Files (*.mscz *.mscx) @@ -7782,27 +7829,27 @@ is incompatible with current interface NewWizardPage5 - + Create New Score - + Select Key Signature and Tempo: - + Key Signature - + Tempo - + BPM: @@ -8037,27 +8084,27 @@ is incompatible with current interface PaletteBox - + Palettes - + Palette Operations - + Single Palette Mode - + Reset to factory defaults - + new Palette @@ -8065,42 +8112,42 @@ is incompatible with current interface PaletteBoxButton - + Palette Properties... - + Insert new Palette... - + Move Palette Up - + Move Palette Down - + Enable Editing - + Save Palette - + Load Palette - + Delete Palette @@ -8394,7 +8441,7 @@ is incompatible with current interface - + relative tempo @@ -8404,117 +8451,205 @@ is incompatible with current interface - - Straight + + Vol. + short text for volume slider - - Swing + + Tmp. + short text for tempo slider - - Shuffle + + master volume + + + PluginCreator - - Vol. - short text for volume slider + + File Operations - - Tmp. - short text for tempo slider + + Edit Operations - - master volume + + MuseScore Plugin Editor + + + + + + + MuseScore + + + + + + + Plugin "%1" has changes +save before closing? + + + + + untitled + + + + + Manual - PreferenceDialog + PluginCreatorBase + + + MainWindow + + + + + Run + + + + + Stop + + + + + File + + + + + Help + + + + + Edit + + + + + New + + + + + Open + + + + + Save + + + + + Manual + + + + + Undo + + - - load + + Redo - - Plugin Path + + Quit + + + 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 - + Choose Notepaper - + Choose Background Wallpaper - + MuseScore Files (*.mscz *.mscx *.msc);;All (*) @@ -8522,822 +8657,848 @@ is incompatible with current interface PrefsDialogBase - + MuseScore: Preferences - + General - + Scores Directory: - + Styles Directory: - + Templates Directory: - + Plugins Directory: - + SoundFonts Directory: - + Images Directory: - + Program Start - + start empty - + continue last session - + start with new score - + start with score: - + Color notes outside of usable pitch range - + MIDI Remote Control - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ... - + show splash screen - + MuseScore Preferences - + Browse... - + Language - + Attention: changing the language requires a restart of MuseScore. - + Paths - - Instrument List: - - - - + Windows - + Style - + Auto Save - + Save every - + minutes - + Canvas - + Background - - + + Wallpaper - - + + Color - + Proximity for selecting elements - + disable antialiased drawing - + uncheck this to speed up drawing - + Draw Antialiased - + Text - - + + Note Entry - + Play notes when editing - + ms - + + Instrument List2: + + + + + Instrument List1: + + + + Use JACK MIDI - + Remember last connection(s) - + PortAudio - + API: - + Default SoundFont - + Choose MIDI input interface - + Style Used for Import - + Built in style - + Use style file: - + Character Set used when import non-unicode strings. (For binary file import) - - + + MusicXML - + Import layout - + Import system and page breaks - + Shortest Note: - + 1/4 - + 1/8 - + 1/16 - + 1/32 - + 1/64 - + PNG/SVG - + Resolution DPI - + Transparent background - - + + MIDI - + Expand repeats - + Plugins - + + Name: + + + + + Path: + + + + + Version: + + + + + Load + + + + + Define Shortcut + + + + Update - + Automatic Update Check - + Check for new versions of MuseScore on startup - + Auto-correction - + Replace 1/2 with fraction character ½ - + Replace (C) with copyright symbol © (Only applies to text in the copyright section) - - - - - + + + + + is active - - - - - + + + + + record - + Score - + Show Play Panel - + Show Navigator - + Show MuseScore Connect - + OSC remote control - + Port Number: - + dark - - light - - - - + native - + Icon size: - + use native file dialogs - + Paper - + Miscellaneous - + Enable MIDI input - + Default Duration: - + enable MIDI remote control - + rewind - + toggle play - + whole note - + half note - + quarter note - + 8th note - + rest - + augmentation dot - + double augmentation dot - + tie - + play - + stop - + note entry - + 16th note - + 32nd note - + 64nd note - + Default Files - + Style: - + Style for Part: - + View - + Scale - + default scale for new score views - + I/O - + Ports - + Use internal synthesizer - + JACK Audio Server - + Left-Port: - + Right-Port: - + ALSA Audio - + PulseAudio - - + + Device: - + default - - + + Sample Rate: - + 192000 - + 96000 - + 88200 - - + + 48000 - - + + 44100 - + 32000 - + 22050 - + Fragments: - + Period Size: - + 4096 - + 2048 - + 1024 - + 512 - + 256 - + 128 - + 64 - + Attention: Any changes on this page require a restart of MuseScore. - + Import - + Character Set: - + Export - + Audio - + Export layout - + Export all system and page breaks - + Export manually added system and page breaks only - + Do not export system or page breaks - + Shortcuts - + Action - + + Shortcut - - + + Reset to Default - - + + Clear - + Define... @@ -9413,11 +9574,11 @@ is incompatible with current interface - - - - - + + + + + Quit @@ -9465,6 +9626,11 @@ failed: MuseScore: Write Album + + + Untitled + + MuseScore: file not found: @@ -9476,7 +9642,7 @@ failed: - + MuseScore: Load Style failed: @@ -9493,52 +9659,26 @@ failed: - + MuseScore: load Style failed: - - MuseScore - - - - - reading file < - - - - - > failed: - - - - - &Quit - - - - + MuseScore: Load languages failed: - + MuseScore: invalid command - - + + MuseScore: Load Palette failed: - - - - MuseScore: register script plugin: - - MuseScore: Import GuitarPro @@ -9548,7 +9688,7 @@ failed: RecordButton - + record @@ -9572,33 +9712,33 @@ failed: ScoreView - + Select - + More... - + Staff - + Edit Drumset... - + Drumroll Editor... - + Pianoroll Editor... @@ -9792,116 +9932,116 @@ failed: - + Staff Properties... - - + + Object Debugger - + Split Staff... - + 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 - + Foto-Mode - + Resolution (%1 dpi)... - + transparent background - + Save As (print mode)... - + Save As (screenshot mode)... - + MuseScore: Set Output Resolution - + Set output resolution for png/svg - + MuseScore: Save As - + cannot determine file type @@ -9942,92 +10082,97 @@ please select a measure and try again - + Segment - + Ticks - - Tick: - - - - + Bar - + Beat - + Clef Segment - + Key Signature - + Time Signature - + Begin Repeat - + Chord/Rest - + Breath Segment - + End Bar Line - + Time Signature Announce - + SpannerFor: - + SpannerBack: - + Annotations: - + Lyrics: - + + tick: + + + + + rTick: + + + + Segment Type: @@ -10220,22 +10365,23 @@ Sequencer will be disabled. SlurPropertyBase - Volta Properties - - - Slur Properties - solid + Solid - dotted + Dotted + + + + + Dashed @@ -10758,7 +10904,7 @@ altera - + MuseScore Startup Dialog @@ -11059,13 +11205,18 @@ altera - + + layoutToParentWidth + + + + Text: do not translate - + Offset: do not translate @@ -11098,7 +11249,7 @@ altera - + TextStyle: do not translate @@ -11339,7 +11490,6 @@ altera - Color: @@ -11349,159 +11499,170 @@ altera - + System Flag - + Offset - + X: coordinate - + horizontal offset to reference point - + 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 - + enable text frame - + Frame - + draw circled frame - + Circle - + draw boxed frame - + Box - + Width: - + frame line width - - + + mm - + Margin: - + frame inner margin - + Round: - + corner round - + + Foreground Color: + + + + + frame color + + + Background Color: + + TextStyleDialog @@ -11757,32 +11918,74 @@ please choose a different name: - + / - + + + 1 + + + + + + 2 + + + + + + 4 + + + + + + 8 + + + + + + 16 + + + + + + 32 + + + + + + 64 + + + + Pickup Measure - + Time Signature - + Enter Number of Measures: - + Measures: - + <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:9pt; font-weight:400; font-style:normal;"> @@ -12323,7 +12526,7 @@ p, li { white-space: pre-wrap; } - + round bracket @@ -12331,32 +12534,49 @@ p, li { white-space: pre-wrap; } action - - Local &Handbook... + + Save a Copy... - - Save a Copy... + + Export... - + Reload + + + Close + + + + + New... + + Create new score + + + Print... + + + Undo + Redo @@ -12366,354 +12586,330 @@ p, li { white-space: pre-wrap; } - + 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 - + Seventh Above - - + Enter seventh above - + 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 to selected measure - - - - - Add less stretch to selected measure + + + Add More Stretch - - Reset Beam Mode + + Add more stretch to selected measure - - - up+shift+ctrl + + Add Less Stretch - - - down+shift+ctrl + + Add less stretch to selected measure - - - left+ctrl + + + Reset Beam Mode - + Local handbook @@ -12722,14 +12918,9 @@ p, li { white-space: pre-wrap; } Show local handbook - - - File open - - - &Open... + File open @@ -12737,14 +12928,9 @@ p, li { white-space: pre-wrap; } Load score from file - - - File save - - - &Save + File save @@ -12752,14 +12938,9 @@ p, li { white-space: pre-wrap; } Save score to file - - - File save as - - - Save &As... + File save as @@ -12768,7 +12949,7 @@ p, li { white-space: pre-wrap; } - + File save a copy @@ -12783,12 +12964,12 @@ p, li { white-space: pre-wrap; } - + Export Parts - + Export Parts... @@ -12798,7 +12979,7 @@ p, li { white-space: pre-wrap; } - + File reload @@ -12807,14 +12988,9 @@ p, li { white-space: pre-wrap; } Reload score from file - - - File close - - - &Close + File close @@ -12822,24 +12998,14 @@ p, li { white-space: pre-wrap; } Close current score - - - File new - - - &New... - - - - - Print + File new - &Print... + Print @@ -12847,2351 +13013,1796 @@ p, li { white-space: pre-wrap; } Print score - - - &Undo - - Undo last change - - - &Redo - - Redo last undo - - Cu&t - - - - - &Copy - - - - - &Paste - - - - - + 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 - - Add &More Stretch - - - - - Add &Less Stretch - - - - - Reset &Beam Mode - - - - - + Diatonic pitch down - + Diatonic down - + Add previous chord to selection - + Select to beginning of measure - + Add next chord to selection - - + Select Section - - 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 - - - - + Append One Measure - - Insert one measure - - - - + Insert One Measure - - - Insert horizontal frame + + + Insert Text Frame - - Insert text frame + + Append Text Frame - - - Insert Text Frame + + + Insert Fret Diagram Frame - - Append text frame + + Other tuplets - - Append Text Frame + + Note duration: longa - - Insert fret diagram frame + + Parts... - - - Insert Fret Diagram Frame + + Full Screen - - - Insert vertical frame + + Additional Media... - - Append horizontal frame + + Page Settings... - - Append vertical frame + + Album... - - Other tuplets + + Layers... - - Note duration: longa + + 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 - - &Load Style... - - - - - &Save Style... - - - - - - Save style as default - - - - - Save Style As &Default... - - - - - Select A&ll - - - - + &Transpose... - - - Violin clef - - - - + Violin Clef - - - Bass clef - - - - + Bass Clef - - + Display in concert pitch - - &Concert Pitch - - - - - Repeat Last Command - - - - - - Toggle system break - - - - - - Toggle page break - - - - - - Toggle section break - - - - + Toggle Section Break - - - Edit element - - - - - &Reset - - - - - De&bugger - - - - - Reset &Stretch - - - - + Show Unprintable - - - + Show Page Margins - - &Search - - - - - &General... - - - - - &Text... - - - - - &Chords... - - - - - Parts - - - - - Par&ts... - - - - + Manage parts - - Additional &Media... - - - - - &Page Settings... - - - - - &Album... - - - - - Show Inspector - - - - + Inspector - + Show OMR Panel - + OmrPanel - - Show OMR PAnel - - - - - metronome - - - - + 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 - - - Show invisible + + Note entry: whole rest - - - Show unprintable + + Whole rest - - - Show frames + + Note entry: half rest - - - Enable script debugger + + Half rest - - Note entry: whole rest + + Note entry: quarter rest - - - Whole rest + + Quarter rest - - Note entry: half rest + + Note entry: 8th rest - - - Half rest + + 8th rest - - Note entry: quarter rest + + Text - - - Quarter rest + + Add Frame Text - - Note entry: 8th rest + + Debugger - - - 8th rest + + Reset Stretch - - - + + Insert Special Characters + + + + Backspace - - - - Mirror note head + + Find - - - Edit general style + + Mirror note head - - - - Double duration + + General... - - - - Half duration + + Edit general style - - - Follow song + + Text... - - - Display documents side by side + + Chords... - - - Display documents stacked + + Double duration - - Show score image + + Half duration - - - Show OMR image + + Follow song - - - - Enharmonic up + + Display documents side by side - - - - Enharmonic down + + Display documents stacked - - - - Create new revision + + Show OMR image - - - - Toggle foto mode + + Enharmonic up - - Full screen + + Enharmonic down - - F&ull Screen + + Create new revision - - F&ull screen + + Toggle foto mode - - - + Enable horizontal raster - - - + Enable vertical raster - - - + Configure raster - - Re-pitch mode - - - - + 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 - - More stretch - - - - + Less stretch - + Reset beam mode of selected measures - - + Flip direction - - 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 Chord - - - - - - - - + + Previous measure - - Previous Measure - - - - - - - - - Next chord - - - - - Next Chord - - - - - - - - - Next measure - - - - - Next Measure - - - - - - Delete selected measures - - - - - Append measures - - - - - Insert measures - - - - - - left+shift - - - - - Save Selection - - - - - Save Selection... - - - - - Save current selection as new score - - - - - Export score - - - - - &Export... - - - - - &Instruments... - - - - - &Note Input + + + Next chord - - - Respell pitches + + + Next measure - - &Respell Pitches + + Append measures - - - right+shift + + Insert measures - - - right+ctrl+shift + + Save Selection - - - shift+home + + Save Selection... - - - shift+end + + Save current selection as new score - - - ctrl+shift+home + + Export score - - - ctrl+shift+end + + Respell pitches - + 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 - - + + Enable sound while editing - - - + Palette - + Play Panel - - - + Navigator - - - + Mixer - + Transport - + Status Bar - - - + Quit - - Zoom Canvas + + Lyrics - - - - Lyrics + + Note entry: double flat - - Tempo... + + + Double flat - - - Tempo + + Local Handbook... - - Note entry: double flat + + Open... - - - Double flat + + 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, Slower - - - - - + Feathered beam, faster - - Feathered Beam, Faster - - - - - - Play panel - - - - + Transport toolbar - + Note input toolbar - - - Status bar - - - - - + Zoom canvas - - + Layers - - &Layers... - - - - - - + MuseScore Connect - + Metronome - + System Text - + Staff Text - - Frame 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 - - - Reset user settings + + Load Style... + + + + + Save Style... + + + + + Save Style As Default... + + + + + Select All + + + + + Concert Pitch + + + + + Info... - - - Show debugger + + 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 - - - Add system text + + Tempo Marking... - - - Add staff text + + Tempo Marking + + + + + Add system text - - - Add 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 - - - Select all - - - - - + Exchange Voice 1-2 - - Exchange voice 1-2 - - - - - - Exchange voice 1-3 - - - - + Exchange Voice 1-3 - - - Exchange voice 1-4 - - - - + Exchange Voice 1-4 - - - Exchange voice 2-3 - - - - + Exchange Voice 2-3 - - - Exchange voice 2-4 - - - - + Exchange Voice 2-4 - - - Exchange voice 3-4 - - - - + Exchange Voice 3-4 - - + Repeat last command - - + Edit score info - - &Info... - - - - + Toggle System Break - + Toggle Page Break - + Edit Element - + Show Invisible - + Show Frames - - - Insert special characters - - - - + Insert Special Characters... - - Enable Script Debugger - - - - - - Search - - - - - Zoom in - - - - + Zoom In - - Zoom out - - - - + 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 - - Follow Song - - - - + Documents Side by Side - + Documents Stacked @@ -15199,12 +14810,12 @@ p, li { white-space: pre-wrap; } articulation - + Bend - + Tremolo Bar @@ -15212,7 +14823,7 @@ p, li { white-space: pre-wrap; } barlines - + Barlines @@ -15220,45 +14831,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 @@ -15267,7 +14878,7 @@ p, li { white-space: pre-wrap; } images_directory - + Images @@ -15275,100 +14886,100 @@ 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 - + Text line - + Line @@ -15457,7 +15068,7 @@ p, li { white-space: pre-wrap; } plugins_directory - + Plugins @@ -15465,37 +15076,37 @@ p, li { white-space: pre-wrap; } preferences - + Never - + Every day - + Every 3 days - + Every week - + Every 2 weeks - + Every month - + Every 2 months @@ -15503,7 +15114,7 @@ p, li { white-space: pre-wrap; } scores_directory - + Scores @@ -15511,7 +15122,7 @@ p, li { white-space: pre-wrap; } soundfonts_directory - + Soundfonts @@ -15519,7 +15130,7 @@ p, li { white-space: pre-wrap; } styles_directory - + Styles @@ -15527,7 +15138,7 @@ p, li { white-space: pre-wrap; } templates_directory - + Templates diff --git a/share/locale/mscore_ca.ts b/share/locale/mscore_ca.ts index 271a38e5f57f..8bf464bacd89 100644 --- a/share/locale/mscore_ca.ts +++ b/share/locale/mscore_ca.ts @@ -143,10 +143,6 @@ p, li { white-space: pre-wrap; } Remove Score - - score list - - move current score down in list @@ -167,18 +163,6 @@ p, li { white-space: pre-wrap; } Add Score - - path to new score you want to add - - - - open file manager - - - - ... - ... - create new album @@ -211,6 +195,18 @@ p, li { white-space: pre-wrap; } Join Scores + + Load + Carrega + + + MuseScore: Add Score + + + + MuseScore: Load Album + + ArticulationBase @@ -1168,15 +1164,15 @@ spatium unit Petit - showCourtesyClef + Hide courtesy clef - Hide courtesy clef + Show courtesy clef - Show courtesy clef + showCourtesy @@ -1201,14 +1197,14 @@ spatium unit Drum Tools - - Drumset - - Drums Percussió + + Edit Drumset + + DrumrollEditor @@ -2786,18 +2782,10 @@ spatium unit Time sig. left margin Marge esquerra d'indicació de compàs - - Clef-key distance - Distància entre clau i armadura - Clef-barline distance Distància entre clau i barra de compàs - - Begin repeat left margin - Marge esquerra d'inici de repetició - Show repeat bar tips ("winged" repeats) Mostra consells de barra de repetició @@ -3194,6 +3182,10 @@ p, li { white-space: pre-wrap; } Max. System distance + + Clef/Key right margin + + EditTempoBase @@ -3571,6 +3563,28 @@ spatium unit Down Avall + + Offset X: + + + + sp + spatium unit +---------- +spatium unit + Espais + + + Offset Y: + + + + + InspectorClef + + Show Courtesy Clef + + InspectorElement @@ -3710,6 +3724,36 @@ spatium unit % + + InspectorKeySig + + Show Courtesy Time Signature + + + + Show Naturals + + + + + InspectorLasso + + Form + Formulari + + + Lasso + + + + Position: + + + + Size + + + InspectorNote @@ -3954,6 +3998,13 @@ spatium unit Espais + + InspectorTimeSig + + Show Courtesy Time Signature + + + InspectorVBox @@ -5144,10 +5195,6 @@ Would you like to locate %2 now? &About &Referent a - - MuseScore: Open Help - MuseScore: Obre ajuda - note entry mode Mode d'entrada de notes @@ -5222,10 +5269,6 @@ abans de tancar? End-Start Repeat Fi i inici de repetició - - Search - Cerca - Go To: Ves a: @@ -5234,20 +5277,6 @@ abans de tancar? Grace Notes Apoïatures - - MuseScore handbook not found at: - - Manual MuseScore no trobat a: - - - - - -From the "Help" menu try choosing "Online Handbook" instead. - - -Del menú "Ajuda" prova de triar l'opció "Manual en línia". - Key Signatures Armadures @@ -5340,30 +5369,10 @@ Restaurar sessió? Varied coda Coda variada - - Script -%1 -is incompatible with current interface - L'script -%1 -és incompatible amb la interfície actual - - - MuseScore is too old to run script -%1 - El MuseScore és massa vell per executar l'script -%1 - Bar %1 Beat %2.%3 - - Error loading plugin -"%1" line %2: -%3 - - MuseScore: Load error @@ -5973,6 +5982,30 @@ please choose a different name: Report a bug + + MuseScore: Load Plugin + + + + MuseScore Plugin (*.qml);;All Files (*) + + + + MuseScore: Save Plugin + + + + MuseScore Plugin File (*.qml) + + + + &Plugins + + + + Find + + MyWebView @@ -6577,18 +6610,6 @@ please choose a different name: relative tempo Tempo relatiu - - Straight - Recte - - - Swing - Swing - - - Shuffle - Barreja - master volume Volum mestre @@ -6604,6 +6625,93 @@ please choose a different name: + + PluginCreator + + File Operations + Operacions de fitxer + + + Edit Operations + + + + MuseScore Plugin Editor + + + + MuseScore + MuseScore + + + Plugin "%1" has changes +save before closing? + + + + untitled + + + + Manual + + + + + PluginCreatorBase + + MainWindow + + + + Run + + + + Stop + + + + File + + + + Help + + + + Edit + + + + New + Nou + + + Open + + + + Save + Desa + + + Manual + + + + Undo + Desfés + + + Redo + Refés + + + Quit + Surt + + PreferenceDialog @@ -6638,14 +6746,6 @@ please choose a different name: Choose Default Style for Parts - - load - - - - Plugin Path - - Choose Scores Directory @@ -6709,10 +6809,6 @@ please choose a different name: Paths Directoris - - Instrument List: - Llistat d'instruments: - Windows Finestres @@ -7013,10 +7109,6 @@ please choose a different name: dark - - light - - use native file dialogs @@ -7285,6 +7377,34 @@ please choose a different name: Character Set: + + Instrument List2: + + + + Instrument List1: + + + + Name: + Nom: + + + Path: + + + + Version: + + + + Load + Carrega + + + Define Shortcut + + Properties @@ -7334,14 +7454,6 @@ please choose a different name: MuseScore: load midi MuseScore: Càrrega de MIDI - - MuseScore - MuseScore - - - reading file < - Llegint fitxer < - MuseScore: invalid command MuseScore: Comanda invàlida @@ -7366,10 +7478,6 @@ please choose a different name: MuseScore: Load languages failed: MuseScore: Fallada en la càrrega de llengües: - - MuseScore: register script plugin: - MuseScore: Registra script de plugin - MuseScore: Import GuitarPro @@ -7425,17 +7533,13 @@ Fallada: MuseScore: Save File MuseScore: Desa fitxer - - > failed: - - Load failed: - &Quit - + Untitled + Sense títol @@ -7800,10 +7904,6 @@ cannot split tuplet Ticks - - Tick: - Pulsació: - Bar @@ -7812,8 +7912,16 @@ cannot split tuplet Beat - - + + tick: + + + + rTick: + + + + SelectDialog MuseScore: Select @@ -7966,21 +8074,21 @@ Sequencer will be disabled. SlurPropertyBase - - Volta Properties - MuseScore: Propietats de volta - Slur Properties Propietats de lligadura - solid - Sòlida + Solid + - dotted - Puntejada + Dotted + + + + Dashed + Ratllada @@ -8658,6 +8766,10 @@ altera styled + + layoutToParentWidth + + TextEditor @@ -8973,6 +9085,14 @@ altera Text Text + + Foreground Color: + + + + Background Color: + + TextStyleDialog @@ -9205,6 +9325,34 @@ p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'Sans Serif'; font-size:9pt; 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;">Nota: després de crear la partitura sempre podràs afegir o eliminar compassos.</p></body></html> + + 1 + 1 + + + 2 + 2 + + + 4 + 4 + + + 8 + 8 + + + 16 + 16 + + + 32 + 32 + + + 64 + 64 + TransposeDialogBase @@ -9640,10 +9788,6 @@ p, li { white-space: pre-wrap; } action - - Local &Handbook... - &Manual local ... - Save a Copy... Desa una còpia ... @@ -9912,46 +10056,6 @@ p, li { white-space: pre-wrap; } Reset Beam Mode Reestableix mode d'agrupacions - - up+shift+ctrl - Amunt + Majúscules + Ctrl - - - down+shift+ctrl - Avall + Majúscules + Ctrl - - - left+ctrl - Esquerra + Ctrl - - - left+shift - Esquerra + Majúscules - - - right+shift - Dreta + Majúscules - - - right+ctrl+shift - Dreta + Ctrl + Majúscules - - - shift+home - Majúscules + Inici - - - shift+end - Majúscules + Fi - - - ctrl+shift+home - Ctrl + Majúscules + Inici - - - ctrl+shift+end - Ctrl + Majúscules + Fi - Delete Selected Measures Elimina compassos seleccionats @@ -10052,22 +10156,10 @@ p, li { white-space: pre-wrap; } Quit Surt - - Zoom Canvas - Finestra de zoom - Lyrics Lletra - - Tempo... - Tempo ... - - - Tempo - Tempo - Metronome Metrònom @@ -10080,10 +10172,6 @@ p, li { white-space: pre-wrap; } Staff Text Text de pentagrama - - Frame Text - Text de marc - Title Títol @@ -10176,10 +10264,6 @@ p, li { white-space: pre-wrap; } Show Frames Mostra marcs - - Search - Cerca - Zoom In Més zoom @@ -10212,10 +10296,6 @@ p, li { white-space: pre-wrap; } Repeat selection Repeteix selecció - - Follow Song - Segueix la cançó - Local handbook Manual local @@ -10352,10 +10432,6 @@ p, li { white-space: pre-wrap; } Trill Trino - - More stretch - Més estirament - Less stretch Menys estirament @@ -10368,10 +10444,6 @@ p, li { white-space: pre-wrap; } Flip direction Inverteix direcció - - Flip Direction - Inverteix direcció - Pitch up To amunt @@ -10456,38 +10528,18 @@ p, li { white-space: pre-wrap; } Previous chord Acord anterior - - Previous Chord - Acord anterior - Previous measure Compàs anterior - - Previous Measure - Compàs anterior - Next chord Següent acord - - Next Chord - Següent acord - Next measure Següent compàs - - Next Measure - Següent compàs - - - Delete selected measures - Elimina compassos seleccionats - Append measures Afegeix compassos @@ -10528,10 +10580,6 @@ p, li { white-space: pre-wrap; } Save style Desa estil - - Select all - Selecciona tot - Delete Elimina @@ -10548,54 +10596,10 @@ p, li { white-space: pre-wrap; } Delete element and duration Elimina element i durada - - &Open... - - - - &Save - - - - Save &As... - - - - &Close - - File new - - &New... - - - - &Print... - - - - &Undo - - - - &Redo - - - - Cu&t - - - - &Copy - - - - &Paste - - Insert note A @@ -10752,62 +10756,26 @@ p, li { white-space: pre-wrap; } Timewise delete - - Append one measure - - Append One Measure - - Insert one measure - - Insert One Measure - - Insert horizontal frame - - - - Insert text frame - - Insert Text Frame - - Append text frame - - Append Text Frame - - Insert fret diagram frame - - Insert Fret Diagram Frame - - Insert vertical frame - - - - Append horizontal frame - - - - Append vertical frame - - Other tuplets @@ -10984,22 +10952,10 @@ p, li { white-space: pre-wrap; } Feathered beam, slower - - Feathered Beam, Slower - - Feathered beam, faster - - Feathered Beam, Faster - - - - Play panel - - Transport toolbar @@ -11008,10 +10964,6 @@ p, li { white-space: pre-wrap; } Note input toolbar - - Status bar - - Zoom canvas @@ -11024,10 +10976,6 @@ p, li { white-space: pre-wrap; } Add staff text - - Add text - - Add title text @@ -11076,82 +11024,26 @@ p, li { white-space: pre-wrap; } Player seek to end - - Select A&ll - - &Transpose... - - Violin clef - - Violin Clef - - Bass clef - Clau de Fa - 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 - - Toggle Section Break - - Edit element - - Show inspector @@ -11160,18 +11052,6 @@ p, li { white-space: pre-wrap; } Reset measure stretch - - Show invisible - - - - Show frames - - - - Enable script debugger - - Note entry: whole rest @@ -11208,14 +11088,6 @@ p, li { white-space: pre-wrap; } Backspace - - Zoom in - - - - Zoom out - - Mirror note head @@ -11252,10 +11124,6 @@ p, li { white-space: pre-wrap; } Display documents stacked - - Show score image - - Show OMR image @@ -11276,18 +11144,6 @@ p, li { white-space: pre-wrap; } Toggle foto mode - - Full screen - - - - F&ull Screen - - - - F&ull screen - - Enable horizontal raster @@ -11300,10 +11156,6 @@ p, li { white-space: pre-wrap; } Configure raster - - Re-pitch mode - - Re-Pitch Mode @@ -11332,10 +11184,6 @@ p, li { white-space: pre-wrap; } 128th note - - Show unprintable - - Split Measure @@ -11372,18 +11220,10 @@ p, li { white-space: pre-wrap; } Reset user settings - - Show debugger - - Piano Keyboard - - Show Inspector - - Save Selection @@ -11401,303 +11241,323 @@ p, li { white-space: pre-wrap; } - &Export... + Respell pitches - &Instruments... + Grace: 8nd after - &Note Input + Pan score while playing on/off - Respell pitches - + Pan + Pan - &Respell Pitches + Show Unprintable - Add &More Stretch + Show Page Margins - Add &Less Stretch + Manage parts - Reset &Beam Mode + Inspector + Inspector d'objectes + + + Show OMR Panel - Grace: 8nd after + OmrPanel - Pan score while playing on/off + toggle metronome - Pan - Pan + Figured Bass + - &Load Style... + Next Score - &Save Style... + Previous Score - Save style as default + Transpose Up - Save Style As &Default... + Transpose Down - &Concert Pitch + Show master palette - &Reset + Master Palette... - De&bugger + Insert Measure - Reset &Stretch + Toggle View Mode - Show Unprintable + Export Parts - Show Page Margins + Export Parts... - &Search + Save a copy of the score's parts in various formats - &General... + Add marcato - &Text... + Marcato - &Chords... + Select Section - Parts + Note duration: double whole - Par&ts... + Double whole note - Manage parts + Whole note - Additional &Media... + Half note - &Page Settings... + Quarter note - &Album... + 8th note - Inspector - Inspector d'objectes + 16th note + - Show OMR Panel + 32nd note - OmrPanel + 64th note - Show OMR PAnel + Edit score info - metronome + Insert Special Characters... - toggle metronome + Layers - Figured Bass + MuseScore Connect - Next Score + next syllable - Previous Score + previous syllable - Transpose Up + toggle visibility - Transpose Down + set visible - Show master palette + set unvisible - Master Palette... + Local Handbook... - Insert Measure + Open... - Toggle View Mode + Save + Desa + + + Save As... - Export Parts + Export... - Export Parts... + Close + Tanca + + + New... - Save a copy of the score's parts in various formats + Print... - Add marcato + Instruments... - Marcato + Add More Stretch - Select Section + Add Less Stretch - select section + Tempo Marking... - Note duration: double whole + Tempo Marking - Double whole note + Text + Text + + + Add Frame Text - Whole note + Load Style... - Half note + Save Style... - Quarter note + Save Style As Default... - 8th note + Select All - 16th note + Concert Pitch + Tonalitat de concert + + + Info... - 32nd note + Reset - 64th note + Debugger - Edit score info + Reset Stretch - &Info... + Insert Special Characters - Insert special characters + Find - Insert Special Characters... + General... - Enable Script Debugger + Text... - Layers + Chords... - &Layers... + Parts... - MuseScore Connect + Full Screen - next syllable + Additional Media... - previous syllable + Page Settings... - toggle visibility + Album... - set visible + Layers... - set unvisible + Plugin Creator diff --git a/share/locale/mscore_cs.ts b/share/locale/mscore_cs.ts index 5452c000d0ec..b3ae233b295d 100644 --- a/share/locale/mscore_cs.ts +++ b/share/locale/mscore_cs.ts @@ -143,10 +143,6 @@ p, li { white-space: pre-wrap; } Remove Score - - score list - - move current score down in list @@ -167,18 +163,6 @@ p, li { white-space: pre-wrap; } Add Score - - path to new score you want to add - - - - open file manager - - - - ... - ... - create new album @@ -211,6 +195,18 @@ p, li { white-space: pre-wrap; } Join Scores + + Load + Načíst + + + MuseScore: Add Score + + + + MuseScore: Load Album + + ArticulationBase @@ -1168,15 +1164,15 @@ spatium unit malé - showCourtesyClef + Hide courtesy clef - Hide courtesy clef + Show courtesy clef - Show courtesy clef + showCourtesy @@ -1201,14 +1197,14 @@ spatium unit Drum Tools - - Drumset - - Drums Bubny + + Edit Drumset + + DrumrollEditor @@ -2786,18 +2782,10 @@ spatium unit Time sig. left margin Levý okraj taktového označení - - Clef-key distance - Vzdálenost klíče od tóniny - Clef-barline distance Vzdálenost klíče od taktové čáry - - Begin repeat left margin - Levý okraj začátku opakování - Show repeat bar tips ("winged" repeats) Ukazovat konečky taktových čar opakování s křídly @@ -3194,6 +3182,10 @@ p, li { white-space: pre-wrap; } Max. System distance + + Clef/Key right margin + + EditTempoBase @@ -3571,6 +3563,28 @@ spatium unit Down Dolů + + Offset X: + + + + sp + spatium unit +---------- +spatium unit + sp + + + Offset Y: + + + + + InspectorClef + + Show Courtesy Clef + + InspectorElement @@ -3710,6 +3724,36 @@ spatium unit % + + InspectorKeySig + + Show Courtesy Time Signature + + + + Show Naturals + + + + + InspectorLasso + + Form + Formulář + + + Lasso + + + + Position: + + + + Size + + + InspectorNote @@ -3954,6 +3998,13 @@ spatium unit sp + + InspectorTimeSig + + Show Courtesy Time Signature + + + InspectorVBox @@ -5088,10 +5139,6 @@ Would you like to locate %2 now? &About &O programu - - MuseScore: Open Help - MuseScore: Otevřít nápovědu - note entry mode Režim zadávání not @@ -5222,28 +5269,10 @@ do notového zápisu "%1"? End-Start Repeat Začít-Ukončit opakování - - Search - Hledat - Go To: Jít na: - - MuseScore handbook not found at: - - Příručka k MuseScore nebyla nalezena na: - - - - - -From the "Help" menu try choosing "Online Handbook" instead. - - -Z nabídky "Nápověda" zkuste místo toho vybrat "Příručka dostupná na internetu". - Grace Notes Noty ozdob @@ -5338,32 +5367,10 @@ Restore session? Varied coda Změněná Coda - - Script -%1 -is incompatible with current interface - Skript -%1 -není slučitelný se současným rozhraním - - - MuseScore is too old to run script -%1 - MuseScore je příliš staré na spuštění scriptu -%1 - Bar %1 Beat %2.%3 Takt %1 Doba %2.%3 - - Error loading plugin -"%1" line %2: -%3 - Chyba při nahrávání přídavného modulu -"%1" řádek %2: -%3 - MuseScore: Load error @@ -5973,6 +5980,30 @@ please choose a different name: Report a bug + + MuseScore: Load Plugin + + + + MuseScore Plugin (*.qml);;All Files (*) + + + + MuseScore: Save Plugin + + + + MuseScore Plugin File (*.qml) + + + + &Plugins + + + + Find + + MyWebView @@ -6577,18 +6608,6 @@ please choose a different name: 100% 100% - - Straight - Po sobě jdoucí - - - Swing - Houpat - - - Shuffle - Zamíchat - master volume Řídící hlasitost @@ -6604,6 +6623,93 @@ please choose a different name: + + PluginCreator + + File Operations + Operace se soubory + + + Edit Operations + + + + MuseScore Plugin Editor + + + + MuseScore + MuseScore + + + Plugin "%1" has changes +save before closing? + + + + untitled + + + + Manual + + + + + PluginCreatorBase + + MainWindow + + + + Run + + + + Stop + + + + File + + + + Help + + + + Edit + + + + New + Nový + + + Open + + + + Save + Uložit + + + Manual + + + + Undo + Zpět + + + Redo + Znovu + + + Quit + Ukončit + + PreferenceDialog @@ -6638,14 +6744,6 @@ please choose a different name: Choose Default Style for Parts - - load - - - - Plugin Path - - Choose Scores Directory @@ -6717,10 +6815,6 @@ please choose a different name: Paths Cesty - - Instrument List: - Seznam nástrojů: - Windows Okna @@ -7014,10 +7108,6 @@ v pixelech (vyšší hodnota rovná se větší poloměr) dark - - light - - use native file dialogs @@ -7286,6 +7376,34 @@ v pixelech (vyšší hodnota rovná se větší poloměr) Character Set: + + Instrument List2: + + + + Instrument List1: + + + + Name: + Název: + + + Path: + + + + Version: + + + + Load + Načíst + + + Define Shortcut + + Properties @@ -7343,14 +7461,6 @@ v pixelech (vyšší hodnota rovná se větší poloměr) MuseScore: load Style failed: MuseScore: Nahrání stylu se nezdařilo: - - MuseScore - MuseScore - - - reading file < - Čte se soubor < - MuseScore: Import Capella MuseScore: Zavedení Capella @@ -7367,10 +7477,6 @@ v pixelech (vyšší hodnota rovná se větší poloměr) MuseScore: Load languages failed: MuseScore: Nahrání překladůy se nezdařilo: - - MuseScore: register script plugin: - MuseScore: Zapsat přídavný modul se skriptem: - MuseScore: Import GuitarPro @@ -7426,17 +7532,13 @@ nepodařilo se: MuseScore: Save File MuseScore: Uložit soubor - - > failed: - - Load failed: Nahrání se nezdařilo: - &Quit - + Untitled + Bez názvu @@ -7802,15 +7904,19 @@ cannot split tuplet - Tick: + Bar - Bar + Beat - Beat + tick: + + + + rTick: @@ -7969,21 +8075,21 @@ Sekvencer bude vypnut. SlurPropertyBase - - Volta Properties - Vlastnosti volty - Slur Properties Vlastnosti obloučku - solid - plný + Solid + + + + Dotted + - dotted - Tečkovaný + Dashed + Čárkované @@ -8661,6 +8767,10 @@ altera styled + + layoutToParentWidth + + TextEditor @@ -8976,6 +9086,14 @@ altera Text Text + + Foreground Color: + + + + Background Color: + + TextStyleDialog @@ -9208,6 +9326,34 @@ p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'Sans Serif'; font-size:9pt; 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;">Rada: Takty můžete přidat nebo odstranit také po vytvoření notového zápisu.</p></body></html> + + 1 + 1 + + + 2 + 2 + + + 4 + 4 + + + 8 + 8 + + + 16 + 16 + + + 32 + 32 + + + 64 + 64 + TransposeDialogBase @@ -9643,10 +9789,6 @@ p, li { white-space: pre-wrap; } action - - Local &Handbook... - Místní &příručka... - Save a Copy... Uložit kopii... @@ -9915,46 +10057,6 @@ p, li { white-space: pre-wrap; } Reset Beam Mode Nastavit znovu režim trámců - - up+shift+ctrl - Šipka nahoru +shift + ctrl - - - down+shift+ctrl - Šipka dolů +shift + ctrl - - - left+ctrl - Šipka vlevo + ctrl - - - left+shift - Šipka vlevo + shift - - - right+shift - Šipka vpravo + shift - - - right+ctrl+shift - Šipka vpravo + ctrl + shift - - - shift+home - Shift + home - - - shift+end - Shift + end - - - ctrl+shift+home - Ctrl + shift + home - - - ctrl+shift+end - Ctrl + shift + end - Delete Selected Measures Smazat vybrané takty @@ -10055,22 +10157,10 @@ p, li { white-space: pre-wrap; } Quit Ukončit - - Zoom Canvas - Zvětšit plátno - Lyrics Text písně - - Tempo... - Tempo... - - - Tempo - Tempo - Metronome Metronom @@ -10083,10 +10173,6 @@ p, li { white-space: pre-wrap; } Staff Text Text notové osnovy - - Frame Text - Text rámečku - Title Název @@ -10179,10 +10265,6 @@ p, li { white-space: pre-wrap; } Show Frames Ukázat rámečky - - Search - Hledat - Zoom In Přiblížit @@ -10215,10 +10297,6 @@ p, li { white-space: pre-wrap; } Repeat selection Opakovat výběr - - Follow Song - Sledovat píseň - Local handbook Místní příručka @@ -10355,10 +10433,6 @@ p, li { white-space: pre-wrap; } Trill Trylek - - More stretch - Větší protažení - Less stretch Menší protažení @@ -10371,10 +10445,6 @@ p, li { white-space: pre-wrap; } Flip direction Obrátit směr - - Flip Direction - Obrátit směr - Pitch up Zvýšit @@ -10459,38 +10529,18 @@ p, li { white-space: pre-wrap; } Previous chord Předchozí akord - - Previous Chord - Předchozí akord - Previous measure Předchozí takt - - Previous Measure - Předchozí takt - Next chord Další akord - - Next Chord - Další akord - Next measure Další takt - - Next Measure - Další takt - - - Delete selected measures - Smazat vybrané takty - Append measures Připojit takty @@ -10531,10 +10581,6 @@ p, li { white-space: pre-wrap; } Save style Uložit styl - - Select all - Vybrat vše - Delete Smazat @@ -10551,54 +10597,10 @@ p, li { white-space: pre-wrap; } Delete element and duration Smazat prvek a dobu trvání - - &Open... - - - - &Save - - - - Save &As... - - - - &Close - - File new - - &New... - - - - &Print... - - - - &Undo - - - - &Redo - - - - Cu&t - - - - &Copy - - - - &Paste - - Insert note A @@ -10755,62 +10757,26 @@ p, li { white-space: pre-wrap; } Timewise delete - - Append one measure - - Append One Measure - - Insert one measure - - Insert One Measure - - Insert horizontal frame - - - - Insert text frame - - Insert Text Frame - - Append text frame - - Append Text Frame - - Insert fret diagram frame - - Insert Fret Diagram Frame - - Insert vertical frame - - - - Append horizontal frame - - - - Append vertical frame - - Other tuplets @@ -10987,22 +10953,10 @@ p, li { white-space: pre-wrap; } Feathered beam, slower - - Feathered Beam, Slower - - Feathered beam, faster - - Feathered Beam, Faster - - - - Play panel - - Transport toolbar @@ -11011,10 +10965,6 @@ p, li { white-space: pre-wrap; } Note input toolbar - - Status bar - - Zoom canvas @@ -11027,10 +10977,6 @@ p, li { white-space: pre-wrap; } Add staff text - - Add text - - Add title text @@ -11079,82 +11025,26 @@ p, li { white-space: pre-wrap; } Player seek to end - - Select A&ll - - &Transpose... - - Violin clef - - Violin Clef - - Bass clef - Basový klíč - 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 - - Toggle Section Break - - Edit element - - Show inspector @@ -11163,18 +11053,6 @@ p, li { white-space: pre-wrap; } Reset measure stretch - - Show invisible - - - - Show frames - - - - Enable script debugger - - Note entry: whole rest @@ -11211,14 +11089,6 @@ p, li { white-space: pre-wrap; } Backspace - - Zoom in - - - - Zoom out - - Mirror note head @@ -11255,10 +11125,6 @@ p, li { white-space: pre-wrap; } Display documents stacked - - Show score image - - Show OMR image @@ -11279,18 +11145,6 @@ p, li { white-space: pre-wrap; } Toggle foto mode - - Full screen - - - - F&ull Screen - - - - F&ull screen - - Enable horizontal raster @@ -11303,10 +11157,6 @@ p, li { white-space: pre-wrap; } Configure raster - - Re-pitch mode - - Re-Pitch Mode @@ -11335,10 +11185,6 @@ p, li { white-space: pre-wrap; } 128th note - - Show unprintable - - Split Measure @@ -11375,18 +11221,10 @@ p, li { white-space: pre-wrap; } Reset user settings - - Show debugger - - Piano Keyboard - - Show Inspector - - Save Selection @@ -11404,303 +11242,323 @@ p, li { white-space: pre-wrap; } - &Export... + Respell pitches - &Instruments... + Grace: 8nd after - &Note Input + Pan score while playing on/off - Respell pitches - + Pan + Vyr - &Respell Pitches + Show Unprintable - Add &More Stretch + Show Page Margins - Add &Less Stretch + Manage parts - Reset &Beam Mode + Inspector + Dohlížitel + + + Show OMR Panel - Grace: 8nd after + OmrPanel - Pan score while playing on/off + toggle metronome - Pan - Vyr + Figured Bass + - &Load Style... + Next Score - &Save Style... + Previous Score - Save style as default + Transpose Up - Save Style As &Default... + Transpose Down - &Concert Pitch + Show master palette - &Reset + Master Palette... - De&bugger + Insert Measure - Reset &Stretch + Toggle View Mode - Show Unprintable + Export Parts - Show Page Margins + Export Parts... - &Search + Save a copy of the score's parts in various formats - &General... + Add marcato - &Text... + Marcato - &Chords... + Select Section - Parts + Note duration: double whole - Par&ts... + Double whole note - Manage parts + Whole note - Additional &Media... + Half note - &Page Settings... + Quarter note - &Album... + 8th note - Inspector - Dohlížitel + 16th note + - Show OMR Panel + 32nd note - OmrPanel + 64th note - Show OMR PAnel + Edit score info - metronome + Insert Special Characters... - toggle metronome + Layers - Figured Bass + MuseScore Connect - Next Score + next syllable - Previous Score + previous syllable - Transpose Up + toggle visibility - Transpose Down + set visible - Show master palette + set unvisible - Master Palette... + Local Handbook... - Insert Measure + Open... - Toggle View Mode + Save + Uložit + + + Save As... - Export Parts + Export... - Export Parts... + Close + Zavřít + + + New... - Save a copy of the score's parts in various formats + Print... - Add marcato + Instruments... - Marcato + Add More Stretch - Select Section + Add Less Stretch - select section + Tempo Marking... - Note duration: double whole + Tempo Marking - Double whole note + Text + Text + + + Add Frame Text - Whole note + Load Style... - Half note + Save Style... - Quarter note + Save Style As Default... - 8th note + Select All - 16th note + Concert Pitch + Koncertní ladění + + + Info... - 32nd note + Reset - 64th note + Debugger - Edit score info + Reset Stretch - &Info... + Insert Special Characters - Insert special characters + Find - Insert Special Characters... + General... - Enable Script Debugger + Text... - Layers + Chords... - &Layers... + Parts... - MuseScore Connect + Full Screen - next syllable + Additional Media... - previous syllable + Page Settings... - toggle visibility + Album... - set visible + Layers... - set unvisible + Plugin Creator diff --git a/share/locale/mscore_da.ts b/share/locale/mscore_da.ts index f1db51925f20..88eb52137c06 100644 --- a/share/locale/mscore_da.ts +++ b/share/locale/mscore_da.ts @@ -143,10 +143,6 @@ p, li { white-space: pre-wrap; } Remove Score - - score list - - move current score down in list @@ -167,18 +163,6 @@ p, li { white-space: pre-wrap; } Add Score - - path to new score you want to add - - - - open file manager - - - - ... - ... - create new album @@ -211,6 +195,18 @@ p, li { white-space: pre-wrap; } Join Scores + + Load + Indlæs + + + MuseScore: Add Score + + + + MuseScore: Load Album + + ArticulationBase @@ -1168,15 +1164,15 @@ spatium unit lille - showCourtesyClef + Hide courtesy clef - Hide courtesy clef + Show courtesy clef - Show courtesy clef + showCourtesy @@ -1201,14 +1197,14 @@ spatium unit Drum Tools - - Drumset - - Drums Trommer + + Edit Drumset + + DrumrollEditor @@ -2786,18 +2782,10 @@ spatium unit Time sig. left margin Taktart venstre margin - - Clef-key distance - Nøgle-toneart afstand - Clef-barline distance Nøgle-taktstreg afstand - - Begin repeat left margin - Begynd gentagelse venstre margin - Show repeat bar tips ("winged" repeats) Vis gentagelses-takter med toppe (eller "vinger") @@ -3194,6 +3182,10 @@ p, li { white-space: pre-wrap; } Max. System distance + + Clef/Key right margin + + EditTempoBase @@ -3571,6 +3563,28 @@ spatium unit Down Ned + + Offset X: + + + + sp + spatium unit +---------- +spatium unit + + + + Offset Y: + + + + + InspectorClef + + Show Courtesy Clef + + InspectorElement @@ -3710,6 +3724,36 @@ spatium unit % + + InspectorKeySig + + Show Courtesy Time Signature + + + + Show Naturals + + + + + InspectorLasso + + Form + Form + + + Lasso + + + + Position: + + + + Size + + + InspectorNote @@ -3954,6 +3998,13 @@ spatium unit + + InspectorTimeSig + + Show Courtesy Time Signature + + + InspectorVBox @@ -5088,10 +5139,6 @@ Would you like to locate %2 now? &About &Om - - MuseScore: Open Help - MuseScore: Åben hjælp - note entry mode nodeindtastnings modus @@ -5222,28 +5269,10 @@ før lukning? End-Start Repeat Slut-start gentagelse - - Search - Søg - Go To: Gå til: - - MuseScore handbook not found at: - - MuseScore håndbog ikke fundet her: - - - - - -From the "Help" menu try choosing "Online Handbook" instead. - - -Prøv at vælge "Online Håndbog" fra "Hjælp"-menuen i stedet. - Grace Notes Forslagsnoder @@ -5340,32 +5369,10 @@ Genskab denne session? Varied coda Varieret coda - - Script -%1 -is incompatible with current interface - Scrip'et -%1 -er ikke kompatibelt med det nuværende interface - - - MuseScore is too old to run script -%1 - MuseScore er for gammel til at køre script'et -%1 - Bar %1 Beat %2.%3 Takt %1 slag %2.%3 - - Error loading plugin -"%1" line %2: -%3 - Fejl ved indlæsning af plugin -"%1" linie %2: -%3 - MuseScore: Load error @@ -5975,6 +5982,30 @@ please choose a different name: Report a bug + + MuseScore: Load Plugin + + + + MuseScore Plugin (*.qml);;All Files (*) + + + + MuseScore: Save Plugin + + + + MuseScore Plugin File (*.qml) + + + + &Plugins + + + + Find + + MyWebView @@ -6579,18 +6610,6 @@ please choose a different name: 100% 100% - - Straight - Lige - - - Swing - Swing - - - Shuffle - Shuffle - master volume master volume @@ -6606,6 +6625,93 @@ please choose a different name: + + PluginCreator + + File Operations + Fil operationer + + + Edit Operations + + + + MuseScore Plugin Editor + + + + MuseScore + MuseScore + + + Plugin "%1" has changes +save before closing? + + + + untitled + + + + Manual + + + + + PluginCreatorBase + + MainWindow + + + + Run + + + + Stop + + + + File + + + + Help + + + + Edit + + + + New + Ny + + + Open + + + + Save + Gem + + + Manual + + + + Undo + Fortryd + + + Redo + Gentag + + + Quit + + + PreferenceDialog @@ -6640,14 +6746,6 @@ please choose a different name: Choose Default Style for Parts - - load - - - - Plugin Path - - Choose Scores Directory @@ -6719,10 +6817,6 @@ please choose a different name: Paths Filplaceringer - - Instrument List: - Instrument liste: - Windows Windows @@ -7015,10 +7109,6 @@ please choose a different name: dark - - light - - use native file dialogs @@ -7287,6 +7377,34 @@ please choose a different name: Character Set: + + Instrument List2: + + + + Instrument List1: + + + + Name: + Navn: + + + Path: + + + + Version: + + + + Load + Indlæs + + + Define Shortcut + + Properties @@ -7344,14 +7462,6 @@ please choose a different name: MuseScore: load Style failed: MuseScore: indlæsning filtype fejlede: - - MuseScore - MuseScore - - - reading file < - læser fil < - MuseScore: Import Capella MuseScore: Importer Capella @@ -7368,10 +7478,6 @@ please choose a different name: MuseScore: Load languages failed: MuseScore: Indlæsning af sprog fejlede: - - MuseScore: register script plugin: - MuseScore: registrér script udvidelse - MuseScore: Import GuitarPro @@ -7426,17 +7532,13 @@ failed: MuseScore: Save File MuseScore: Gem fil - - > failed: - - Load failed: Indlæsning fejlede: - &Quit - + Untitled + Uden titel @@ -7801,10 +7903,6 @@ cannot split tuplet Ticks - - Tick: - Markering: - Bar @@ -7813,8 +7911,16 @@ cannot split tuplet Beat - - + + tick: + + + + rTick: + + + + SelectDialog MuseScore: Select @@ -7968,21 +8074,21 @@ Sequenzer vil ikke være tilgængelig. SlurPropertyBase - - Volta Properties - Volte egenskaber - Slur Properties Bue egenskaber - solid - solid + Solid + + + + Dotted + - dotted - stiplet + Dashed + Stiplet @@ -8660,6 +8766,10 @@ altera styled + + layoutToParentWidth + + TextEditor @@ -8975,6 +9085,14 @@ altera Text Tekst + + Foreground Color: + + + + Background Color: + + TextStyleDialog @@ -9207,6 +9325,34 @@ p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'Sans Serif'; font-size:9pt; 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;">Trick: Du kan også tilføje eller fjerne takter efter du har oprettet stykket.</p></body></html> + + 1 + 1 + + + 2 + 2 + + + 4 + 4 + + + 8 + 8 + + + 16 + 16 + + + 32 + 32 + + + 64 + 64 + TransposeDialogBase @@ -9642,10 +9788,6 @@ p, li { white-space: pre-wrap; } action - - Local &Handbook... - Lokal &håndbog... - Save a Copy... Gem en kopi... @@ -9914,46 +10056,6 @@ p, li { white-space: pre-wrap; } Reset Beam Mode Nulstil bjælke modus - - up+shift+ctrl - op+shift+ctrl - - - down+shift+ctrl - ned+shift+ctrl - - - left+ctrl - venstre-ctrl - - - left+shift - venstre+shift - - - right+shift - højre+shift - - - right+ctrl+shift - højre+ctrl+shit - - - shift+home - shift+home - - - shift+end - shift+end - - - ctrl+shift+home - ctrl+shift+home - - - ctrl+shift+end - ctrl+shift+end - Delete Selected Measures Slet de valgte takter @@ -10054,22 +10156,10 @@ p, li { white-space: pre-wrap; } Quit Forlad - - Zoom Canvas - Zoom lærred - Lyrics Sangtekst - - Tempo... - Tempot... - - - Tempo - Tempo - Metronome Metronom @@ -10082,10 +10172,6 @@ p, li { white-space: pre-wrap; } Staff Text Nodelinie tekst - - Frame Text - Ramme tekst - Title Titel @@ -10178,10 +10264,6 @@ p, li { white-space: pre-wrap; } Show Frames Vis rammer - - Search - Søg - Zoom In Zoom ind @@ -10214,10 +10296,6 @@ p, li { white-space: pre-wrap; } Repeat selection Gentag det valgte - - Follow Song - Følg sang - Local handbook Lokal handbook @@ -10354,10 +10432,6 @@ p, li { white-space: pre-wrap; } Trill Trille - - More stretch - Mere spredning - Less stretch Mindre spredning @@ -10370,10 +10444,6 @@ p, li { white-space: pre-wrap; } Flip direction Skift retning - - Flip Direction - Skift Retning - Pitch up Tondehøjde op @@ -10458,38 +10528,18 @@ p, li { white-space: pre-wrap; } Previous chord Forrige akkord - - Previous Chord - Forrige akkord - Previous measure Forrige takt - - Previous Measure - Forrige takt - Next chord Næste akkord - - Next Chord - Næste Akkord - Next measure Næste takt - - Next Measure - Næste Takt - - - Delete selected measures - Slet de valgte takter - Append measures Tilføj takter @@ -10530,10 +10580,6 @@ p, li { white-space: pre-wrap; } Save style Gem layout-stil - - Select all - Vælg alt - Delete Slet @@ -10550,54 +10596,10 @@ p, li { white-space: pre-wrap; } Delete element and duration Slet element og længde - - &Open... - - - - &Save - - - - Save &As... - - - - &Close - - File new - - &New... - - - - &Print... - - - - &Undo - - - - &Redo - - - - Cu&t - - - - &Copy - - - - &Paste - - Insert note A @@ -10754,62 +10756,26 @@ p, li { white-space: pre-wrap; } Timewise delete - - Append one measure - - Append One Measure - - Insert one measure - - Insert One Measure - - Insert horizontal frame - - - - Insert text frame - - Insert Text Frame - - Append text frame - - Append Text Frame - - Insert fret diagram frame - - Insert Fret Diagram Frame - - Insert vertical frame - - - - Append horizontal frame - - - - Append vertical frame - - Other tuplets @@ -10986,22 +10952,10 @@ p, li { white-space: pre-wrap; } Feathered beam, slower - - Feathered Beam, Slower - - Feathered beam, faster - - Feathered Beam, Faster - - - - Play panel - - Transport toolbar @@ -11010,10 +10964,6 @@ p, li { white-space: pre-wrap; } Note input toolbar - - Status bar - - Zoom canvas @@ -11026,10 +10976,6 @@ p, li { white-space: pre-wrap; } Add staff text - - Add text - - Add title text @@ -11078,82 +11024,26 @@ p, li { white-space: pre-wrap; } Player seek to end - - Select A&ll - - &Transpose... - - Violin clef - - Violin Clef - - Bass clef - Bas nøgle - 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 - - Toggle Section Break - - Edit element - - Show inspector @@ -11162,18 +11052,6 @@ p, li { white-space: pre-wrap; } Reset measure stretch - - Show invisible - - - - Show frames - - - - Enable script debugger - - Note entry: whole rest @@ -11210,14 +11088,6 @@ p, li { white-space: pre-wrap; } Backspace - - Zoom in - - - - Zoom out - - Mirror note head @@ -11254,10 +11124,6 @@ p, li { white-space: pre-wrap; } Display documents stacked - - Show score image - - Show OMR image @@ -11278,18 +11144,6 @@ p, li { white-space: pre-wrap; } Toggle foto mode - - Full screen - - - - F&ull Screen - - - - F&ull screen - - Enable horizontal raster @@ -11302,10 +11156,6 @@ p, li { white-space: pre-wrap; } Configure raster - - Re-pitch mode - - Re-Pitch Mode @@ -11334,10 +11184,6 @@ p, li { white-space: pre-wrap; } 128th note - - Show unprintable - - Split Measure @@ -11374,18 +11220,10 @@ p, li { white-space: pre-wrap; } Reset user settings - - Show debugger - - Piano Keyboard - - Show Inspector - - Save Selection @@ -11403,303 +11241,323 @@ p, li { white-space: pre-wrap; } - &Export... + Respell pitches - &Instruments... + Grace: 8nd after - &Note Input + Pan score while playing on/off - Respell pitches - + Pan + Panorering - &Respell Pitches + Show Unprintable - Add &More Stretch + Show Page Margins - Add &Less Stretch + Manage parts - Reset &Beam Mode + Inspector + Inspektor + + + Show OMR Panel - Grace: 8nd after + OmrPanel - Pan score while playing on/off + toggle metronome - Pan - Panorering + Figured Bass + - &Load Style... + Next Score - &Save Style... + Previous Score - Save style as default + Transpose Up - Save Style As &Default... + Transpose Down - &Concert Pitch + Show master palette - &Reset + Master Palette... - De&bugger + Insert Measure - Reset &Stretch + Toggle View Mode - Show Unprintable + Export Parts - Show Page Margins + Export Parts... - &Search + Save a copy of the score's parts in various formats - &General... + Add marcato - &Text... + Marcato - &Chords... + Select Section - Parts + Note duration: double whole - Par&ts... + Double whole note - Manage parts + Whole note - Additional &Media... + Half note - &Page Settings... + Quarter note - &Album... + 8th note - Inspector - Inspektor + 16th note + - Show OMR Panel + 32nd note - OmrPanel + 64th note - Show OMR PAnel + Edit score info - metronome + Insert Special Characters... - toggle metronome + Layers - Figured Bass + MuseScore Connect - Next Score + next syllable - Previous Score + previous syllable - Transpose Up + toggle visibility - Transpose Down + set visible - Show master palette + set unvisible - Master Palette... + Local Handbook... - Insert Measure + Open... - Toggle View Mode + Save + Gem + + + Save As... - Export Parts + Export... - Export Parts... + Close + Luk + + + New... - Save a copy of the score's parts in various formats + Print... - Add marcato + Instruments... - Marcato + Add More Stretch - Select Section + Add Less Stretch - select section + Tempo Marking... - Note duration: double whole + Tempo Marking - Double whole note + Text + Tekst + + + Add Frame Text - Whole note + Load Style... - Half note + Save Style... - Quarter note + Save Style As Default... - 8th note + Select All - 16th note + Concert Pitch + C-partitur + + + Info... - 32nd note + Reset - 64th note + Debugger - Edit score info + Reset Stretch - &Info... + Insert Special Characters - Insert special characters + Find - Insert Special Characters... + General... - Enable Script Debugger + Text... - Layers + Chords... - &Layers... + Parts... - MuseScore Connect + Full Screen - next syllable + Additional Media... - previous syllable + Page Settings... - toggle visibility + Album... - set visible + Layers... - set unvisible + Plugin Creator diff --git a/share/locale/mscore_de.ts b/share/locale/mscore_de.ts index f291a0bc47bb..352d76067712 100644 --- a/share/locale/mscore_de.ts +++ b/share/locale/mscore_de.ts @@ -143,10 +143,6 @@ p, li { white-space: pre-wrap; } Remove Score - - score list - - move current score down in list @@ -167,18 +163,6 @@ p, li { white-space: pre-wrap; } Add Score - - path to new score you want to add - - - - open file manager - - - - ... - ... - create new album @@ -211,6 +195,18 @@ p, li { white-space: pre-wrap; } Join Scores + + Load + Laden + + + MuseScore: Add Score + + + + MuseScore: Load Album + + ArticulationBase @@ -1168,15 +1164,15 @@ spatium unit klein - showCourtesyClef + Hide courtesy clef - Hide courtesy clef + Show courtesy clef - Show courtesy clef + showCourtesy @@ -1201,14 +1197,14 @@ spatium unit Drum Tools - - Drumset - - Drums Schlagzeug + + Edit Drumset + + DrumrollEditor @@ -2786,18 +2782,10 @@ spatium unit Time sig. left margin Linker Rand Taktart - - Clef-key distance - Abstand Schlüssel-Tonart - Clef-barline distance Abstand Schlüssel-Taktstrich - - Begin repeat left margin - Linker Rand Start Wiederholung - Show repeat bar tips ("winged" repeats) Wiederholungstaktstriche mit Flügeln @@ -3194,6 +3182,10 @@ p, li { white-space: pre-wrap; } Max. System distance + + Clef/Key right margin + + EditTempoBase @@ -3571,6 +3563,28 @@ spatium unit Down + + Offset X: + + + + sp + spatium unit +---------- +spatium unit + sp + + + Offset Y: + + + + + InspectorClef + + Show Courtesy Clef + + InspectorElement @@ -3710,6 +3724,36 @@ spatium unit % + + InspectorKeySig + + Show Courtesy Time Signature + + + + Show Naturals + + + + + InspectorLasso + + Form + Formular + + + Lasso + + + + Position: + + + + Size + + + InspectorNote @@ -3954,6 +3998,13 @@ spatium unit sp + + InspectorTimeSig + + Show Courtesy Time Signature + + + InspectorVBox @@ -4655,8 +4706,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. @@ -5068,10 +5119,6 @@ Would you like to locate %2 now? &About Über MuseScore - - MuseScore: Open Help - MuseScore: Hilfe - MuseScore: Load Score MuseScore: Partitur laden @@ -5221,28 +5268,10 @@ before closing? End-Start Repeat Anfang/Ende Wiederholung - - Search - Suchen - Go To: Gehe nach: - - - -From the "Help" menu try choosing "Online Handbook" instead. - - -Versuche im "Hilfe"-Menü das "Online-Handbuch" aufzurufen. - - - MuseScore handbook not found at: - - Das MuseScore Handbuch wurde hier nicht gefunden: - - Grace Notes Vorschlagnoten @@ -5337,31 +5366,10 @@ Restore session? Varied coda Coda Variation - - Script -%1 -is incompatible with current interface - Skript -%1 - - - MuseScore is too old to run script -%1 - MiseScore ist zu alt um Skript -%1 laufen zu lassen - Bar %1 Beat %2.%3 Takt: %1 Schlag: %2.%3 - - Error loading plugin -"%1" line %2: -%3 - Fehler beim Laden des Plugins -"%1" Zeile %2: -%3 - MuseScore: Load error @@ -5971,6 +5979,30 @@ please choose a different name: Report a bug + + MuseScore: Load Plugin + + + + MuseScore Plugin (*.qml);;All Files (*) + + + + MuseScore: Save Plugin + + + + MuseScore Plugin File (*.qml) + + + + &Plugins + + + + Find + + MyWebView @@ -6575,18 +6607,6 @@ please choose a different name: relative tempo Relatives Tempo - - Straight - Straight - - - Swing - Swing - - - Shuffle - Shuffle - master volume Master Lautstärke @@ -6602,6 +6622,93 @@ please choose a different name: + + PluginCreator + + File Operations + Dateibefehle + + + Edit Operations + + + + MuseScore Plugin Editor + + + + MuseScore + MuseScore + + + Plugin "%1" has changes +save before closing? + + + + untitled + + + + Manual + + + + + PluginCreatorBase + + MainWindow + + + + Run + + + + Stop + + + + File + + + + Help + + + + Edit + + + + New + Neu + + + Open + + + + Save + Sichern + + + Manual + + + + Undo + Rückgängig + + + Redo + Wiederholen + + + Quit + Beenden + + PreferenceDialog @@ -6636,14 +6743,6 @@ please choose a different name: Choose Default Style for Parts - - load - - - - Plugin Path - - Choose Scores Directory @@ -6855,10 +6954,6 @@ please choose a different name: 22050 22050 - - Instrument List: - Instrumentenliste: - Note Entry Noteneingabe @@ -7012,10 +7107,6 @@ in Pixel (größerer Wert gleich größerer Radius) dark - - light - - use native file dialogs @@ -7284,6 +7375,34 @@ in Pixel (größerer Wert gleich größerer Radius) Character Set: + + Instrument List2: + + + + Instrument List1: + + + + Name: + Name: + + + Path: + + + + Version: + + + + Load + Laden + + + Define Shortcut + + Properties @@ -7341,14 +7460,6 @@ in Pixel (größerer Wert gleich größerer Radius) MuseScore: Load Style failed: MuseScore: Formatvorlage konnte nicht geöffnet werden - - MuseScore - MuseScore - - - reading file < - lese Datei < - MuseScore: Import Capella MuseScore: Import Capella @@ -7365,10 +7476,6 @@ in Pixel (größerer Wert gleich größerer Radius) MuseScore: Load languages failed: MuseScore: Fehler beim Laden der Übersetzungen: - - MuseScore: register script plugin: - Muse Score: Skript-Erweiterung registrieren - MuseScore: Import GuitarPro @@ -7424,17 +7531,13 @@ fehlgeschlagen: MuseScore: Save File MuseScore: Datei sichern - - > failed: - - Load failed: Laden fehlgeschlagen: - &Quit - + Untitled + ohneName @@ -7798,10 +7901,6 @@ cannot split tuplet Ticks - - Tick: - Tick: - Bar @@ -7810,9 +7909,17 @@ cannot split tuplet Beat - - - SelectDialog + + tick: + + + + rTick: + + + + + SelectDialog MuseScore: Select MuseScore: Auswahl @@ -7965,21 +8072,21 @@ Sequenzer wird abgeschaltet. SlurPropertyBase - - Volta Properties - Eigenschaften Volta - Slur Properties Eigenschaften Bindebögen - solid - gefüllt + Solid + + + + Dotted + - dotted - gepunktet + Dashed + gestrichelt @@ -8657,6 +8764,10 @@ altera styled + + layoutToParentWidth + + TextEditor @@ -8972,6 +9083,14 @@ altera Text Text + + Foreground Color: + + + + Background Color: + + TextStyleDialog @@ -9201,6 +9320,34 @@ p, li { white-space: pre-wrap; } Time Signature Taktarten + + 1 + 1 + + + 2 + 2 + + + 4 + 4 + + + 8 + 8 + + + 16 + 16 + + + 32 + 32 + + + 64 + 64 + TransposeDialogBase @@ -9636,10 +9783,6 @@ p, li { white-space: pre-wrap; } action - - Local &Handbook... - Lokales &Handbuch... - Save a Copy... Als Kopie sichern... @@ -9908,46 +10051,6 @@ p, li { white-space: pre-wrap; } Reset Beam Mode Balkenmodus zurücksetzen - - up+shift+ctrl - Strg+Umschalt+Auf - - - down+shift+ctrl - Strg+Umschalt+Ab - - - left+ctrl - Strg+Links - - - left+shift - Umschalt+Links - - - right+shift - Umschalt+Rechts - - - right+ctrl+shift - Strg+Umschalt+Rechts - - - shift+home - Umshalt+Pos1 - - - shift+end - Umschalt+Ende - - - ctrl+shift+home - Strg+Umschalt+Pos1 - - - ctrl+shift+end - Strg+Umschalt+Ende - Delete Selected Measures Ausgewählte Takte löschen @@ -10048,22 +10151,10 @@ p, li { white-space: pre-wrap; } Quit Beenden - - Zoom Canvas - Zoom Notenblatt - Lyrics Liedtext - - Tempo... - Tempo.... - - - Tempo - Tempo - Metronome Metronom @@ -10076,10 +10167,6 @@ p, li { white-space: pre-wrap; } Staff Text Notenzeilentext - - Frame Text - Rahmentext - Title Titel @@ -10172,10 +10259,6 @@ p, li { white-space: pre-wrap; } Show Frames Rahmen anzeigen - - Search - Suche - Zoom In Vergrößern @@ -10208,10 +10291,6 @@ p, li { white-space: pre-wrap; } Repeat selection Auswahl wiederholen - - Follow Song - dem stück folgen - Local handbook Lokales Handbuch @@ -10348,10 +10427,6 @@ p, li { white-space: pre-wrap; } Trill Triller - - More stretch - Stärkere Dehnung - Less stretch Schwächere Dehnung @@ -10364,10 +10439,6 @@ p, li { white-space: pre-wrap; } Flip direction Richtung umdrehen - - Flip Direction - Richtung umdrehen - Pitch up höher stimmen @@ -10452,38 +10523,18 @@ p, li { white-space: pre-wrap; } Previous chord vorheriger Akkord - - Previous Chord - Vorheriger Akkord - Previous measure Voriger Takt - - Previous Measure - Voriger Takt - Next chord nächster Akkord - - Next Chord - nächster Akkord - Next measure Nächster Takt - - Next Measure - Nächster Takt - - - Delete selected measures - Ausgewählte Takte löschen - Append measures Takte anhängen @@ -10524,10 +10575,6 @@ p, li { white-space: pre-wrap; } Save style Stil sichern - - Select all - Alles auswählen - Delete Löschen @@ -10544,54 +10591,10 @@ p, li { white-space: pre-wrap; } Delete element and duration Element und Dauer löschen - - &Open... - - - - &Save - - - - Save &As... - - - - &Close - - File new - - &New... - - - - &Print... - - - - &Undo - - - - &Redo - - - - Cu&t - - - - &Copy - - - - &Paste - - Insert note A @@ -10748,62 +10751,26 @@ p, li { white-space: pre-wrap; } Timewise delete - - Append one measure - - Append One Measure - - Insert one measure - - Insert One Measure - - Insert horizontal frame - - - - Insert text frame - - Insert Text Frame - - Append text frame - - Append Text Frame - - Insert fret diagram frame - - Insert Fret Diagram Frame - - Insert vertical frame - - - - Append horizontal frame - - - - Append vertical frame - - Other tuplets @@ -10980,22 +10947,10 @@ p, li { white-space: pre-wrap; } Feathered beam, slower - - Feathered Beam, Slower - - Feathered beam, faster - - Feathered Beam, Faster - - - - Play panel - - Transport toolbar @@ -11004,10 +10959,6 @@ p, li { white-space: pre-wrap; } Note input toolbar - - Status bar - - Zoom canvas @@ -11020,10 +10971,6 @@ p, li { white-space: pre-wrap; } Add staff text - - Add text - - Add title text @@ -11072,82 +11019,26 @@ p, li { white-space: pre-wrap; } Player seek to end - - Select A&ll - - &Transpose... - - Violin clef - - Violin Clef - - Bass clef - Bassschlüssel - 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 - - Toggle Section Break - - Edit element - - Show inspector @@ -11156,18 +11047,6 @@ p, li { white-space: pre-wrap; } Reset measure stretch - - Show invisible - - - - Show frames - - - - Enable script debugger - - Note entry: whole rest @@ -11204,14 +11083,6 @@ p, li { white-space: pre-wrap; } Backspace - - Zoom in - - - - Zoom out - - Mirror note head @@ -11248,10 +11119,6 @@ p, li { white-space: pre-wrap; } Display documents stacked - - Show score image - - Show OMR image @@ -11272,18 +11139,6 @@ p, li { white-space: pre-wrap; } Toggle foto mode - - Full screen - - - - F&ull Screen - - - - F&ull screen - - Enable horizontal raster @@ -11296,10 +11151,6 @@ p, li { white-space: pre-wrap; } Configure raster - - Re-pitch mode - - Re-Pitch Mode @@ -11328,10 +11179,6 @@ p, li { white-space: pre-wrap; } 128th note - - Show unprintable - - Split Measure @@ -11368,18 +11215,10 @@ p, li { white-space: pre-wrap; } Reset user settings - - Show debugger - - Piano Keyboard - - Show Inspector - - Save Selection @@ -11397,303 +11236,323 @@ p, li { white-space: pre-wrap; } - &Export... + Respell pitches - &Instruments... + Grace: 8nd after - &Note Input + Pan score while playing on/off - Respell pitches - + Pan + Pan - &Respell Pitches + Show Unprintable - Add &More Stretch + Show Page Margins - Add &Less Stretch + Manage parts - Reset &Beam Mode + Inspector + Objekt-Inspektor + + + Show OMR Panel - Grace: 8nd after + OmrPanel - Pan score while playing on/off + toggle metronome - Pan - Pan + Figured Bass + - &Load Style... + Next Score - &Save Style... + Previous Score - Save style as default + Transpose Up - Save Style As &Default... + Transpose Down - &Concert Pitch + Show master palette - &Reset + Master Palette... - De&bugger + Insert Measure - Reset &Stretch + Toggle View Mode - Show Unprintable + Export Parts - Show Page Margins + Export Parts... - &Search + Save a copy of the score's parts in various formats - &General... + Add marcato - &Text... + Marcato - &Chords... + Select Section - Parts + Note duration: double whole - Par&ts... + Double whole note - Manage parts + Whole note - Additional &Media... + Half note - &Page Settings... + Quarter note - &Album... + 8th note - Inspector - Objekt-Inspektor + 16th note + - Show OMR Panel + 32nd note - OmrPanel + 64th note - Show OMR PAnel + Edit score info - metronome + Insert Special Characters... - toggle metronome + Layers - Figured Bass + MuseScore Connect - Next Score + next syllable - Previous Score + previous syllable - Transpose Up + toggle visibility - Transpose Down + set visible - Show master palette + set unvisible - Master Palette... + Local Handbook... - Insert Measure + Open... - Toggle View Mode + Save + Sichern + + + Save As... - Export Parts + Export... - Export Parts... + Close + Schließen + + + New... - Save a copy of the score's parts in various formats + Print... - Add marcato + Instruments... - Marcato + Add More Stretch - Select Section + Add Less Stretch - select section + Tempo Marking... - Note duration: double whole + Tempo Marking - Double whole note + Text + Text + + + Add Frame Text - Whole note + Load Style... - Half note + Save Style... - Quarter note + Save Style As Default... - 8th note + Select All - 16th note + Concert Pitch + klingend + + + Info... - 32nd note + Reset - 64th note + Debugger - Edit score info + Reset Stretch - &Info... + Insert Special Characters - Insert special characters + Find - Insert Special Characters... + General... - Enable Script Debugger + Text... - Layers + Chords... - &Layers... + Parts... - MuseScore Connect + Full Screen - next syllable + Additional Media... - previous syllable + Page Settings... - toggle visibility + Album... - set visible + Layers... - set unvisible + Plugin Creator diff --git a/share/locale/mscore_el.ts b/share/locale/mscore_el.ts index c544c92be101..794a40569eca 100644 --- a/share/locale/mscore_el.ts +++ b/share/locale/mscore_el.ts @@ -144,10 +144,6 @@ p, li { white-space: pre-wrap; } Remove Score - - score list - - move current score down in list @@ -168,18 +164,6 @@ p, li { white-space: pre-wrap; } Add Score - - path to new score you want to add - - - - open file manager - - - - ... - ... - create new album @@ -212,6 +196,18 @@ p, li { white-space: pre-wrap; } Join Scores + + Load + Φόρτωση + + + MuseScore: Add Score + + + + MuseScore: Load Album + + ArticulationBase @@ -1173,15 +1169,15 @@ spatium unit μικρό - showCourtesyClef + Hide courtesy clef - Hide courtesy clef + Show courtesy clef - Show courtesy clef + showCourtesy @@ -1206,14 +1202,14 @@ spatium unit Drum Tools - - Drumset - - Drums Drums + + Edit Drumset + + DrumrollEditor @@ -2801,18 +2797,10 @@ spatium unit Time sig. left margin Αριστερό περιθώριο ετικέτας χρόνου - - Clef-key distance - Απόσταση κλειδιού-οπλισμού - Clef-barline distance Απόσταση κλειδιού-διαστολής - - Begin repeat left margin - Αριστερό περιθώριο αρχής επανάληψης - Show repeat bar tips ("winged" repeats) Πληροφορίες μέτρου επανάλυψης ("φτερωτή" επανάλυψη) @@ -3209,6 +3197,10 @@ p, li { white-space: pre-wrap; } Max. System distance + + Clef/Key right margin + + EditTempoBase @@ -3590,6 +3582,28 @@ spatium unit Down Κάτω + + Offset X: + + + + sp + spatium unit +---------- +spatium unit + sp + + + Offset Y: + + + + + InspectorClef + + Show Courtesy Clef + + InspectorElement @@ -3729,6 +3743,36 @@ spatium unit % + + InspectorKeySig + + Show Courtesy Time Signature + + + + Show Naturals + + + + + InspectorLasso + + Form + Μορφή + + + Lasso + + + + Position: + + + + Size + + + InspectorNote @@ -3973,6 +4017,13 @@ spatium unit sp + + InspectorTimeSig + + Show Courtesy Time Signature + + + InspectorVBox @@ -5055,10 +5106,6 @@ Would you like to locate %2 now? Concert Pitch Πραγματική Τονικότητα - - Search - Αναζήτηση - MuseScore MuseScore @@ -5221,24 +5268,6 @@ before closing? &About &Περί - - MuseScore handbook not found at: - - Δε βρέθηκε Εγχειρίδιο Χρήσης του MuseScore στο: - - - - - -From the "Help" menu try choosing "Online Handbook" instead. - - -Από το μενού "Βοήθεια" δοκιμάστε αντί αυτού να επιλέξετε "Online Εγχειρίδιο Χρήσης". - - - MuseScore: Open Help - MuseScore: Άνοιγμα Βοήθειας - no score χωρίς παρτιτούρα @@ -5359,32 +5388,10 @@ Restore session? Varied coda Varied coda - - Script -%1 -is incompatible with current interface - Script -%1 -is incompatible with current interface - - - MuseScore is too old to run script -%1 - Το MuseScore είναι πολύ παλιό για να τρέξει το σενάριο -%1 - Bar %1 Beat %2.%3 Γραμμή μέτρου %1 Χτύπος %2.%3 - - Error loading plugin -"%1" line %2: -%3 - Σφάλμα Φόρτωσης plugin -"%1" γραμμή %2: -%3 - MuseScore: Load error @@ -5994,6 +6001,30 @@ please choose a different name: Report a bug + + MuseScore: Load Plugin + + + + MuseScore Plugin (*.qml);;All Files (*) + + + + MuseScore: Save Plugin + + + + MuseScore Plugin File (*.qml) + + + + &Plugins + + + + Find + + MyWebView @@ -6600,18 +6631,6 @@ please choose a different name: 100% 100% - - Straight - Χωρίς Απόκλιση - - - Swing - Swing - - - Shuffle - Shuffle - master volume κεντρική ένταση @@ -6627,6 +6646,93 @@ please choose a different name: + + PluginCreator + + File Operations + Λειτουργίες Αρχείου + + + Edit Operations + + + + MuseScore Plugin Editor + + + + MuseScore + MuseScore + + + Plugin "%1" has changes +save before closing? + + + + untitled + + + + Manual + + + + + PluginCreatorBase + + MainWindow + + + + Run + + + + Stop + + + + File + + + + Help + + + + Edit + + + + New + Νέο + + + Open + + + + Save + Αποθήκευση + + + Manual + + + + Undo + Αναίρεση + + + Redo + Επαναφορά + + + Quit + Έξοδος + + PreferenceDialog @@ -6661,14 +6767,6 @@ please choose a different name: Choose Default Style for Parts - - load - - - - Plugin Path - - Choose Scores Directory @@ -6748,10 +6846,6 @@ please choose a different name: Paths Διαδρομή - - Instrument List: - Λίστα Οργάνων: - Windows Παράθυρα @@ -7037,10 +7131,6 @@ please choose a different name: dark - - light - - use native file dialogs @@ -7309,6 +7399,34 @@ please choose a different name: Character Set: + + Instrument List2: + + + + Instrument List1: + + + + Name: + Όνομα: + + + Path: + + + + Version: + + + + Load + Φόρτωση + + + Define Shortcut + + Properties @@ -7370,14 +7488,6 @@ please choose a different name: MuseScore: load Style failed: MuseScore: Φόρτωση Στυλ απέτυχε: - - MuseScore - MuseScore - - - reading file < - ανάγνωση αρχείου < - MuseScore: invalid command MuseScore: μη έγκυρη εντολή @@ -7390,10 +7500,6 @@ please choose a different name: MuseScore: Load languages failed: MuseScore: Φόρτωση γλωσσών απέτυχε: - - MuseScore: register script plugin: - MuseScore: μητρώο σεναρίου plugin: - MuseScore: Import GuitarPro @@ -7448,17 +7554,13 @@ failed: MuseScore: Save File MuseScore: Αποθήκευση Αρχείου - - > failed: - - Load failed: Φόρτωση απέτυχε: - &Quit - + Untitled + Ανώνυμο @@ -7823,10 +7925,6 @@ cannot split tuplet Ticks - - Tick: - Χτύπος: - Bar @@ -7835,9 +7933,17 @@ cannot split tuplet Beat - - - SelectDialog + + tick: + + + + rTick: + + + + + SelectDialog MuseScore: Select MuseScore: Επιλογή @@ -7990,21 +8096,21 @@ Sequencer will be disabled. SlurPropertyBase - - Volta Properties - Ιδιότητες Volta - Slur Properties Ιδιότητες Σύζευξης - solid - στερεό + Solid + + + + Dotted + - dotted - με τελείες + Dashed + Με παύλες @@ -8684,6 +8790,10 @@ altera styled + + layoutToParentWidth + + TextEditor @@ -8999,6 +9109,14 @@ altera Text Κείμενο + + Foreground Color: + + + + Background Color: + + TextStyleDialog @@ -9231,6 +9349,34 @@ p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'Sans Serif'; font-size:9pt; 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;">Συμβουλή: Μπορείτε επίσης να προσθέσετε ή να αφαιρέσετε μέτρα μετά τη δημιουργία παρτιτούρας.</p></body></html> + + 1 + 1 + + + 2 + 2 + + + 4 + 4 + + + 8 + 8 + + + 16 + 16 + + + 32 + 32 + + + 64 + 64 + TransposeDialogBase @@ -9671,10 +9817,6 @@ p, li { white-space: pre-wrap; } Local handbook Τοπικό Εγχειριδίου Χρήσης - - Local &Handbook... - Τοπικό &Εγχειρίδιο Χρήσης... - Show local handbook Εμφάνιση Τοπικού Εγχειριδίου Χρήσης @@ -10063,10 +10205,6 @@ p, li { white-space: pre-wrap; } Trill Τρίλια - - More stretch - Περισσότερη έκταση - Add more stretch to selected measure Προσθήκη περισσότερης έκτασης στο επιλεγμένο μέτρο @@ -10091,10 +10229,6 @@ p, li { white-space: pre-wrap; } Flip direction Αλλαγή κατεύθυνσης - - Flip Direction - Αλλαγή Κατεύθυνσης - Pitch up τονικό ύψος πάνω @@ -10135,10 +10269,6 @@ p, li { white-space: pre-wrap; } Move up Μετακίνηση πάνω - - up+shift+ctrl - up+shift+ctrl - Pitch down Τονικό ύψος κάτω @@ -10179,78 +10309,22 @@ p, li { white-space: pre-wrap; } Move down Κίνηση κάτω - - down+shift+ctrl - down+shift+ctrl - Previous chord Προηγούμενη συγχορδία - - Previous Chord - Προηγούμενη Συγχορδία - Previous measure Προηγούμενο μέτρο - - Previous Measure - Προηγούμενο Μέτρο - Next chord Επόμενη συγχορδία - - Next Chord - Επόμενη Συγχορδία - Next measure Επόμενο μέτρο - - Next Measure - Επόμενο Μέτρο - - - left+shift - left+shift - - - left+ctrl - left+ctrl - - - right+shift - right+shift - - - right+ctrl+shift - right+ctrl+shift - - - shift+home - shift+home - - - shift+end - shift+end - - - ctrl+shift+home - ctrl+shift+home - - - ctrl+shift+end - ctrl+shift+end - - - Delete selected measures - Διαγραφή επιλεγμένων μέτρων - Delete Selected Measures Διαγραφή Επιλεγμένων Μέτρων @@ -10359,22 +10433,10 @@ p, li { white-space: pre-wrap; } Quit Έξοδος - - Zoom Canvas - Εστίαση Καμβά - Lyrics Στίχοι - - Tempo... - Τέμπο... - - - Tempo - Τέμπο - Metronome Μετρονόμος @@ -10387,10 +10449,6 @@ p, li { white-space: pre-wrap; } Staff Text Κείμενο Πενταγράμμου - - Frame Text - Κείμενο Πλαισίου - Title Τίτλος @@ -10483,10 +10541,6 @@ p, li { white-space: pre-wrap; } Show Frames Προβολή Πλαισίων - - Search - Αναζήτηση - Zoom In Μεγέθυνση @@ -10519,10 +10573,6 @@ p, li { white-space: pre-wrap; } Repeat selection Επανάληψη επιλογής - - Follow Song - Ακολούθα το Τραγούδι - Documents Side by Side Έγγραφα σε παράθεση @@ -10555,10 +10605,6 @@ p, li { white-space: pre-wrap; } Save style Αποθήκευση στυλ - - Select all - Επιλογή όλων - Delete Διαγραφή @@ -10575,54 +10621,10 @@ p, li { white-space: pre-wrap; } Delete element and duration Διαγραφή στοιχείου και διάρκειας - - &Open... - - - - &Save - - - - Save &As... - - - - &Close - - File new - - &New... - - - - &Print... - - - - &Undo - - - - &Redo - - - - Cu&t - - - - &Copy - - - - &Paste - - Insert note A @@ -10779,62 +10781,26 @@ p, li { white-space: pre-wrap; } Timewise delete - - Append one measure - - Append One Measure - - Insert one measure - - Insert One Measure - - Insert horizontal frame - - - - Insert text frame - - Insert Text Frame - - Append text frame - - Append Text Frame - - Insert fret diagram frame - - Insert Fret Diagram Frame - - Insert vertical frame - - - - Append horizontal frame - - - - Append vertical frame - - Other tuplets @@ -11011,22 +10977,10 @@ p, li { white-space: pre-wrap; } Feathered beam, slower - - Feathered Beam, Slower - - Feathered beam, faster - - Feathered Beam, Faster - - - - Play panel - - Transport toolbar @@ -11035,10 +10989,6 @@ p, li { white-space: pre-wrap; } Note input toolbar - - Status bar - - Zoom canvas @@ -11051,10 +11001,6 @@ p, li { white-space: pre-wrap; } Add staff text - - Add text - - Add title text @@ -11103,82 +11049,26 @@ p, li { white-space: pre-wrap; } Player seek to end - - Select A&ll - - &Transpose... - - Violin clef - - Violin Clef - - Bass 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 - - Toggle Section Break - - Edit element - - Show inspector @@ -11187,18 +11077,6 @@ p, li { white-space: pre-wrap; } Reset measure stretch - - Show invisible - - - - Show frames - - - - Enable script debugger - - Note entry: whole rest @@ -11235,14 +11113,6 @@ p, li { white-space: pre-wrap; } Backspace - - Zoom in - - - - Zoom out - - Mirror note head @@ -11279,10 +11149,6 @@ p, li { white-space: pre-wrap; } Display documents stacked - - Show score image - - Show OMR image @@ -11303,18 +11169,6 @@ p, li { white-space: pre-wrap; } Toggle foto mode - - Full screen - - - - F&ull Screen - - - - F&ull screen - - Enable horizontal raster @@ -11327,10 +11181,6 @@ p, li { white-space: pre-wrap; } Configure raster - - Re-pitch mode - - Re-Pitch Mode @@ -11359,10 +11209,6 @@ p, li { white-space: pre-wrap; } 128th note - - Show unprintable - - Split Measure @@ -11399,18 +11245,10 @@ p, li { white-space: pre-wrap; } Reset user settings - - Show debugger - - Piano Keyboard - - Show Inspector - - Save Selection @@ -11428,303 +11266,323 @@ p, li { white-space: pre-wrap; } - &Export... + Respell pitches - &Instruments... + Grace: 8nd after - &Note Input + Pan score while playing on/off - Respell pitches - + Pan + Pan - &Respell Pitches + Show Unprintable - Add &More Stretch + Show Page Margins - Add &Less Stretch + Manage parts - Reset &Beam Mode + Inspector + Επιθεωρητής + + + Show OMR Panel - Grace: 8nd after + OmrPanel - Pan score while playing on/off + toggle metronome - Pan - Pan + Figured Bass + - &Load Style... + Next Score - &Save Style... + Previous Score - Save style as default + Transpose Up - Save Style As &Default... + Transpose Down - &Concert Pitch + Show master palette - &Reset + Master Palette... - De&bugger + Insert Measure - Reset &Stretch + Toggle View Mode - Show Unprintable + Export Parts - Show Page Margins + Export Parts... - &Search + Save a copy of the score's parts in various formats - &General... + Add marcato - &Text... + Marcato - &Chords... + Select Section - Parts + Note duration: double whole - Par&ts... + Double whole note - Manage parts + Whole note - Additional &Media... + Half note - &Page Settings... + Quarter note - &Album... + 8th note - Inspector - Επιθεωρητής + 16th note + - Show OMR Panel + 32nd note - OmrPanel + 64th note - Show OMR PAnel + Edit score info - metronome + Insert Special Characters... - toggle metronome + Layers - Figured Bass + MuseScore Connect - Next Score + next syllable - Previous Score + previous syllable - Transpose Up + toggle visibility - Transpose Down + set visible - Show master palette + set unvisible - Master Palette... + Local Handbook... - Insert Measure + Open... - Toggle View Mode + Save + Αποθήκευση + + + Save As... - Export Parts + Export... - Export Parts... + Close + Κλείσιμο + + + New... - Save a copy of the score's parts in various formats + Print... - Add marcato + Instruments... - Marcato + Add More Stretch - Select Section + Add Less Stretch - select section + Tempo Marking... - Note duration: double whole + Tempo Marking - Double whole note + Text + Κείμενο + + + Add Frame Text - Whole note + Load Style... - Half note + Save Style... - Quarter note + Save Style As Default... - 8th note + Select All - 16th note + Concert Pitch + Πραγματική Τονικότητα + + + Info... - 32nd note + Reset - 64th note + Debugger - Edit score info + Reset Stretch - &Info... + Insert Special Characters - Insert special characters + Find - Insert Special Characters... + General... - Enable Script Debugger + Text... - Layers + Chords... - &Layers... + Parts... - MuseScore Connect + Full Screen - next syllable + Additional Media... - previous syllable + Page Settings... - toggle visibility + Album... - set visible + Layers... - set unvisible + Plugin Creator diff --git a/share/locale/mscore_en_GB.ts b/share/locale/mscore_en_GB.ts index 45fa621f6c6d..03c3d5a2cb4a 100644 --- a/share/locale/mscore_en_GB.ts +++ b/share/locale/mscore_en_GB.ts @@ -134,10 +134,6 @@ p, li { white-space: pre-wrap; } Remove Score - - score list - - move current score down in list @@ -158,18 +154,6 @@ p, li { white-space: pre-wrap; } Add Score - - path to new score you want to add - - - - open file manager - - - - ... - - create new album @@ -202,6 +186,18 @@ p, li { white-space: pre-wrap; } Join Scores + + Load + Load + + + MuseScore: Add Score + + + + MuseScore: Load Album + + ArticulationBase @@ -1159,15 +1155,15 @@ spatium unit small - showCourtesyClef + Hide courtesy clef - Hide courtesy clef + Show courtesy clef - Show courtesy clef + showCourtesy @@ -1192,14 +1188,14 @@ spatium unit Drum Tools - - Drumset - - Drums Drums + + Edit Drumset + + DrumrollEditor @@ -2777,18 +2773,10 @@ spatium unit Time sig. left margin Time sig. left margin - - Clef-key distance - Clef-key distance - Clef-barline distance Clef-bar line distance - - Begin repeat left margin - Begin repeat left margin - Show repeat bar tips ("winged" repeats) Show repeat bar tips ("winged" repeats) @@ -3185,6 +3173,10 @@ p, li { white-space: pre-wrap; } Max. System distance + + Clef/Key right margin + + EditTempoBase @@ -3562,6 +3554,28 @@ spatium unit Down Down + + Offset X: + + + + sp + spatium unit +---------- +spatium unit + sp + + + Offset Y: + + + + + InspectorClef + + Show Courtesy Clef + + InspectorElement @@ -3701,6 +3715,36 @@ spatium unit % + + InspectorKeySig + + Show Courtesy Time Signature + + + + Show Naturals + + + + + InspectorLasso + + Form + Form + + + Lasso + + + + Position: + + + + Size + + + InspectorNote @@ -3945,6 +3989,13 @@ spatium unit sp + + InspectorTimeSig + + Show Courtesy Time Signature + + + InspectorVBox @@ -5143,10 +5194,6 @@ Would you like to locate %2 now? &About &About - - MuseScore: Open Help - MuseScore: Open Help - note entry mode note entry mode @@ -5212,28 +5259,10 @@ before closing? End-Start Repeat End-Start Repeat - - Search - Search - Go To: Go To: - - MuseScore handbook not found at: - - MuseScore handbook not found at: - - - - - -From the "Help" menu try choosing "Online Handbook" instead. - - -From the "Help" menu try choosing "Online Handbook" instead. - Grace Notes Grace Notes @@ -5328,27 +5357,10 @@ Restore session? Varied coda Varied coda - - Script -%1 -is incompatible with current interface - - - - MuseScore is too old to run script -%1 - - Bar %1 Beat %2.%3 - - Error loading plugin -"%1" line %2: -%3 - - MuseScore: Load error @@ -5958,6 +5970,30 @@ please choose a different name: Report a bug + + MuseScore: Load Plugin + + + + MuseScore Plugin (*.qml);;All Files (*) + + + + MuseScore: Save Plugin + + + + MuseScore Plugin File (*.qml) + + + + &Plugins + + + + Find + + MyWebView @@ -6562,18 +6598,6 @@ please choose a different name: 100% 100% - - Straight - Straight - - - Swing - Swing - - - Shuffle - Shuffle - master volume master volume @@ -6589,6 +6613,93 @@ please choose a different name: + + PluginCreator + + File Operations + File Operations + + + Edit Operations + + + + MuseScore Plugin Editor + + + + MuseScore + MuseScore + + + Plugin "%1" has changes +save before closing? + + + + untitled + + + + Manual + + + + + PluginCreatorBase + + MainWindow + + + + Run + + + + Stop + + + + File + + + + Help + + + + Edit + + + + New + New + + + Open + + + + Save + Save + + + Manual + + + + Undo + + + + Redo + + + + Quit + Quit + + PreferenceDialog @@ -6623,14 +6734,6 @@ please choose a different name: Choose Default Style for Parts - - load - - - - Plugin Path - - Choose Scores Directory @@ -6694,10 +6797,6 @@ please choose a different name: Paths Paths - - Instrument List: - Instrument List: - Windows Windows @@ -6998,10 +7097,6 @@ please choose a different name: dark - - light - - use native file dialogs @@ -7270,6 +7365,34 @@ please choose a different name: Character Set: + + Instrument List2: + + + + Instrument List1: + + + + Name: + Name: + + + Path: + + + + Version: + + + + Load + Load + + + Define Shortcut + + Properties @@ -7323,14 +7446,6 @@ please choose a different name: MuseScore: invalid command MuseScore: invalid command - - MuseScore - MuseScore - - - reading file < - reading file < - MuseScore: Load Style failed: MuseScore: Load Style failed: @@ -7351,10 +7466,6 @@ please choose a different name: MuseScore: Load languages failed: MuseScore: Load languages failed: - - MuseScore: register script plugin: - - MuseScore: Import GuitarPro @@ -7410,17 +7521,13 @@ failed: MuseScore: Save File MuseScore: Save File - - > failed: - - Load failed: - &Quit - + Untitled + Untitled @@ -7782,10 +7889,6 @@ cannot split tuplet Ticks - - Tick: - Tick: - Bar @@ -7794,6 +7897,14 @@ cannot split tuplet Beat + + tick: + + + + rTick: + + SelectDialog @@ -7948,21 +8059,21 @@ Sequencer will be disabled. SlurPropertyBase - - Volta Properties - Volta Properties - Slur Properties Slur Properties - solid - solid + Solid + + + + Dotted + - dotted - dotted + Dashed + Dashed @@ -8640,6 +8751,10 @@ altera styled + + layoutToParentWidth + + TextEditor @@ -8955,6 +9070,14 @@ altera Text Text + + Foreground Color: + + + + Background Color: + + TextStyleDialog @@ -9187,6 +9310,34 @@ p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'Sans Serif'; font-size:9pt; 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;">Hint: you can also add or remove bars after creation of the score.</p></body></html> + + 1 + 1 + + + 2 + 2 + + + 4 + 4 + + + 8 + 8 + + + 16 + 16 + + + 32 + 32 + + + 64 + 64 + TransposeDialogBase @@ -9622,10 +9773,6 @@ p, li { white-space: pre-wrap; } action - - Local &Handbook... - - Save a Copy... @@ -9894,46 +10041,6 @@ p, li { white-space: pre-wrap; } Reset Beam Mode - - up+shift+ctrl - - - - down+shift+ctrl - - - - left+ctrl - - - - left+shift - - - - right+shift - - - - right+ctrl+shift - - - - shift+home - - - - shift+end - - - - ctrl+shift+home - - - - ctrl+shift+end - - Delete Selected Measures @@ -10034,22 +10141,10 @@ p, li { white-space: pre-wrap; } Quit Quit - - Zoom Canvas - Zoom Canvas - Lyrics Lyrics - - Tempo... - - - - Tempo - Tempo - Metronome Metronome @@ -10062,10 +10157,6 @@ p, li { white-space: pre-wrap; } Staff Text Stave Text - - Frame Text - - Title Title @@ -10158,10 +10249,6 @@ p, li { white-space: pre-wrap; } Show Frames - - Search - Search - Zoom In @@ -10194,10 +10281,6 @@ p, li { white-space: pre-wrap; } Repeat selection - - Follow Song - - Local handbook @@ -10334,10 +10417,6 @@ p, li { white-space: pre-wrap; } Trill - - More stretch - - Less stretch @@ -10350,10 +10429,6 @@ p, li { white-space: pre-wrap; } Flip direction - - Flip Direction - - Pitch up @@ -10438,38 +10513,18 @@ p, li { white-space: pre-wrap; } Previous chord - - Previous Chord - - Previous measure - - Previous Measure - - Next chord - - Next Chord - - Next measure - - Next Measure - - - - Delete selected measures - - Append measures @@ -10510,10 +10565,6 @@ p, li { white-space: pre-wrap; } Save style - - Select all - - Delete Delete @@ -10530,54 +10581,10 @@ p, li { white-space: pre-wrap; } Delete element and duration - - &Open... - - - - &Save - - - - Save &As... - - - - &Close - - File new - - &New... - - - - &Print... - - - - &Undo - - - - &Redo - - - - Cu&t - - - - &Copy - - - - &Paste - - Insert note A @@ -10734,62 +10741,26 @@ p, li { white-space: pre-wrap; } Timewise delete - - Append one measure - - Append One Measure - - Insert one measure - - Insert One Measure - - Insert horizontal frame - - - - Insert text frame - - Insert Text Frame - - Append text frame - - Append Text Frame - - Insert fret diagram frame - - Insert Fret Diagram Frame - - Insert vertical frame - - - - Append horizontal frame - - - - Append vertical frame - - Other tuplets @@ -10966,22 +10937,10 @@ p, li { white-space: pre-wrap; } Feathered beam, slower - - Feathered Beam, Slower - - Feathered beam, faster - - Feathered Beam, Faster - - - - Play panel - - Transport toolbar @@ -10990,10 +10949,6 @@ p, li { white-space: pre-wrap; } Note input toolbar - - Status bar - - Zoom canvas @@ -11006,10 +10961,6 @@ p, li { white-space: pre-wrap; } Add staff text - - Add text - - Add title text @@ -11058,82 +11009,26 @@ p, li { white-space: pre-wrap; } Player seek to end - - Select A&ll - - &Transpose... - - Violin clef - - Violin Clef - - Bass 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 - - Toggle Section Break - - Edit element - - Show inspector @@ -11142,18 +11037,6 @@ p, li { white-space: pre-wrap; } Reset measure stretch - - Show invisible - - - - Show frames - - - - Enable script debugger - - Note entry: whole rest @@ -11190,14 +11073,6 @@ p, li { white-space: pre-wrap; } Backspace - - Zoom in - - - - Zoom out - - Mirror note head @@ -11234,10 +11109,6 @@ p, li { white-space: pre-wrap; } Display documents stacked - - Show score image - - Show OMR image @@ -11258,18 +11129,6 @@ p, li { white-space: pre-wrap; } Toggle foto mode - - Full screen - - - - F&ull Screen - - - - F&ull screen - - Enable horizontal raster @@ -11282,10 +11141,6 @@ p, li { white-space: pre-wrap; } Configure raster - - Re-pitch mode - - Re-Pitch Mode @@ -11314,10 +11169,6 @@ p, li { white-space: pre-wrap; } 128th note - - Show unprintable - - Split Measure @@ -11354,18 +11205,10 @@ p, li { white-space: pre-wrap; } Reset user settings - - Show debugger - - Piano Keyboard - - Show Inspector - - Save Selection @@ -11383,303 +11226,323 @@ p, li { white-space: pre-wrap; } - &Export... + Respell pitches + + + + Grace: 8nd after - &Instruments... + Pan score while playing on/off - &Note Input + Pan - Respell pitches + Show Unprintable - &Respell Pitches + Show Page Margins - Add &More Stretch + Manage parts - Add &Less Stretch + Inspector - Reset &Beam Mode + Show OMR Panel - Grace: 8nd after + OmrPanel - Pan score while playing on/off + toggle metronome - Pan + Figured Bass - &Load Style... + Next Score - &Save Style... + Previous Score - Save style as default + Transpose Up - Save Style As &Default... + Transpose Down - &Concert Pitch + Show master palette - &Reset + Master Palette... - De&bugger + Insert Measure - Reset &Stretch + Toggle View Mode - Show Unprintable + Export Parts - Show Page Margins + Export Parts... - &Search + Save a copy of the score's parts in various formats - &General... + Add marcato - &Text... + Marcato - &Chords... + Select Section - Parts + Note duration: double whole - Par&ts... + Double whole note - Manage parts + Whole note - Additional &Media... + Half note - &Page Settings... + Quarter note - &Album... + 8th note - Inspector + 16th note - Show OMR Panel + 32nd note - OmrPanel + 64th note - Show OMR PAnel + Edit score info - metronome + Insert Special Characters... - toggle metronome + Layers - Figured Bass + MuseScore Connect - Next Score + next syllable - Previous Score + previous syllable - Transpose Up + toggle visibility - Transpose Down + set visible - Show master palette + set unvisible - Master Palette... + Local Handbook... - Insert Measure + Open... - Toggle View Mode + Save + Save + + + Save As... - Export Parts + Export... - Export Parts... + Close + Close + + + New... - Save a copy of the score's parts in various formats + Print... - Add marcato + Instruments... - Marcato + Add More Stretch - Select Section + Add Less Stretch - select section + Tempo Marking... - Note duration: double whole + Tempo Marking - Double whole note + Text + Text + + + Add Frame Text - Whole note + Load Style... - Half note + Save Style... - Quarter note + Save Style As Default... - 8th note + Select All - 16th note + Concert Pitch + Concert Pitch + + + Info... - 32nd note + Reset - 64th note + Debugger - Edit score info + Reset Stretch - &Info... + Insert Special Characters - Insert special characters + Find - Insert Special Characters... + General... - Enable Script Debugger + Text... - Layers + Chords... - &Layers... + Parts... - MuseScore Connect + Full Screen - next syllable + Additional Media... - previous syllable + Page Settings... - toggle visibility + Album... - set visible + Layers... - set unvisible + Plugin Creator diff --git a/share/locale/mscore_en_US.ts b/share/locale/mscore_en_US.ts index 30bb288f8c2e..cad974a88d33 100644 --- a/share/locale/mscore_en_US.ts +++ b/share/locale/mscore_en_US.ts @@ -134,10 +134,6 @@ p, li { white-space: pre-wrap; } Remove Score - - score list - - move current score down in list @@ -159,47 +155,47 @@ p, li { white-space: pre-wrap; } - path to new score you want to add + create new album - open file manager + New - ... + load an existing album - create new album + Print Album - New + MuseScore Album Files (*.album);; - load an existing album + All Files (*) - Print Album + MuseScore Files (*.mscz *.mscx *.msc);; - MuseScore Album Files (*.album);; + Join Scores - All Files (*) + Load - MuseScore Files (*.mscz *.mscx *.msc);; + MuseScore: Add Score - Join Scores + MuseScore: Load Album @@ -1159,15 +1155,15 @@ spatium unit Small - showCourtesyClef + Hide courtesy clef - Hide courtesy clef + Show courtesy clef - Show courtesy clef + showCourtesy @@ -1193,11 +1189,11 @@ spatium unit - Drumset + Drums - Drums + Edit Drumset @@ -2777,18 +2773,10 @@ spatium unit Time sig. left margin - - Clef-key distance - - Clef-barline distance - - Begin repeat left margin - - Show repeat bar tips ("winged" repeats) @@ -3185,6 +3173,10 @@ p, li { white-space: pre-wrap; } Max. System distance + + Clef/Key right margin + + EditTempoBase @@ -3562,6 +3554,28 @@ spatium unit Down + + Offset X: + + + + sp + spatium unit +---------- +spatium unit + + + + Offset Y: + + + + + InspectorClef + + Show Courtesy Clef + + InspectorElement @@ -3701,6 +3715,36 @@ spatium unit + + InspectorKeySig + + Show Courtesy Time Signature + + + + Show Naturals + + + + + InspectorLasso + + Form + + + + Lasso + + + + Position: + + + + Size + + + InspectorNote @@ -3945,6 +3989,13 @@ spatium unit + + InspectorTimeSig + + Show Courtesy Time Signature + + + InspectorVBox @@ -5143,10 +5194,6 @@ Would you like to locate %2 now? &About - - MuseScore: Open Help - - note entry mode Note entry mode @@ -5212,25 +5259,10 @@ before closing? End-Start Repeat End-start repeat - - Search - - Go To: - - MuseScore handbook not found at: - - - - - - -From the "Help" menu try choosing "Online Handbook" instead. - - Grace Notes @@ -5325,27 +5357,10 @@ Restore session? Varied coda - - Script -%1 -is incompatible with current interface - - - - MuseScore is too old to run script -%1 - - Bar %1 Beat %2.%3 - - Error loading plugin -"%1" line %2: -%3 - - MuseScore: Load error @@ -5955,6 +5970,30 @@ please choose a different name: Report a bug + + MuseScore: Load Plugin + + + + MuseScore Plugin (*.qml);;All Files (*) + + + + MuseScore: Save Plugin + + + + MuseScore Plugin File (*.qml) + + + + &Plugins + + + + Find + + MyWebView @@ -6560,29 +6599,104 @@ please choose a different name: - Straight + master volume - Swing + Vol. + short text for volume slider - Shuffle + Tmp. + short text for tempo slider + + + PluginCreator - master volume + File Operations - Vol. - short text for volume slider + Edit Operations - Tmp. - short text for tempo slider + MuseScore Plugin Editor + + + + MuseScore + + + + Plugin "%1" has changes +save before closing? + + + + untitled + + + + Manual + + + + + PluginCreatorBase + + MainWindow + + + + Run + + + + Stop + + + + File + + + + Help + + + + Edit + + + + New + + + + Open + + + + Save + + + + Manual + + + + Undo + + + + Redo + + + + Quit @@ -6620,14 +6734,6 @@ please choose a different name: Choose Default Style for Parts - - load - - - - Plugin Path - - Choose Scores Directory @@ -6691,10 +6797,6 @@ please choose a different name: Paths - - Instrument List: - Instrument list: - Windows @@ -6995,10 +7097,6 @@ please choose a different name: dark - - light - - use native file dialogs @@ -7267,6 +7365,34 @@ please choose a different name: Character Set: + + Instrument List2: + + + + Instrument List1: + + + + Name: + + + + Path: + + + + Version: + + + + Load + + + + Define Shortcut + + Properties @@ -7320,14 +7446,6 @@ please choose a different name: MuseScore: invalid command MuseScore: Invalid Command - - MuseScore - - - - reading file < - Reading file < - MuseScore: Load Style failed: @@ -7348,10 +7466,6 @@ please choose a different name: MuseScore: Load languages failed: - - MuseScore: register script plugin: - - MuseScore: Import GuitarPro @@ -7407,16 +7521,12 @@ Failed: MuseScore: Save File - - > failed: - - Load failed: - &Quit + Untitled @@ -7782,10 +7892,6 @@ cannot split tuplet Ticks - - Tick: - - Bar @@ -7794,9 +7900,17 @@ cannot split tuplet Beat - - - SelectDialog + + tick: + + + + rTick: + + + + + SelectDialog MuseScore: Select @@ -7949,19 +8063,19 @@ Sequencer will be disabled. SlurPropertyBase - Volta Properties + Slur Properties - Slur Properties + Solid - solid - Solid + Dotted + - dotted + Dashed @@ -8640,6 +8754,10 @@ altera styled + + layoutToParentWidth + + TextEditor @@ -8955,6 +9073,14 @@ altera Text + + Foreground Color: + + + + Background Color: + + TextStyleDialog @@ -9184,6 +9310,34 @@ 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;">Hint: you can also add or remove measures after creation of the score.</p></body></html> + + 1 + + + + 2 + + + + 4 + + + + 8 + + + + 16 + + + + 32 + + + + 64 + + TransposeDialogBase @@ -9619,10 +9773,6 @@ p, li { white-space: pre-wrap; } action - - Local &Handbook... - - Save a Copy... @@ -9891,46 +10041,6 @@ p, li { white-space: pre-wrap; } Reset Beam Mode - - up+shift+ctrl - - - - down+shift+ctrl - - - - left+ctrl - - - - left+shift - - - - right+shift - - - - right+ctrl+shift - - - - shift+home - - - - shift+end - - - - ctrl+shift+home - - - - ctrl+shift+end - - Delete Selected Measures @@ -10031,22 +10141,10 @@ p, li { white-space: pre-wrap; } Quit - - Zoom Canvas - - Lyrics - - Tempo... - - - - Tempo - - Metronome @@ -10059,10 +10157,6 @@ p, li { white-space: pre-wrap; } Staff Text - - Frame Text - - Title @@ -10155,10 +10249,6 @@ p, li { white-space: pre-wrap; } Show Frames - - Search - - Zoom In @@ -10191,10 +10281,6 @@ p, li { white-space: pre-wrap; } Repeat selection - - Follow Song - - Local handbook @@ -10331,10 +10417,6 @@ p, li { white-space: pre-wrap; } Trill - - More stretch - - Less stretch @@ -10347,10 +10429,6 @@ p, li { white-space: pre-wrap; } Flip direction - - Flip Direction - - Pitch up @@ -10435,38 +10513,18 @@ p, li { white-space: pre-wrap; } Previous chord - - Previous Chord - - Previous measure - - Previous Measure - - Next chord - - Next Chord - - Next measure - - Next Measure - - - - Delete selected measures - - Append measures @@ -10507,10 +10565,6 @@ p, li { white-space: pre-wrap; } Save style - - Select all - - Delete @@ -10527,54 +10581,10 @@ p, li { white-space: pre-wrap; } Delete element and duration - - &Open... - - - - &Save - - - - Save &As... - - - - &Close - - File new - - &New... - - - - &Print... - - - - &Undo - - - - &Redo - - - - Cu&t - - - - &Copy - - - - &Paste - - Insert note A @@ -10731,62 +10741,26 @@ p, li { white-space: pre-wrap; } Timewise delete - - Append one measure - - Append One Measure - - Insert one measure - - Insert One Measure - - Insert horizontal frame - - - - Insert text frame - - Insert Text Frame - - Append text frame - - Append Text Frame - - Insert fret diagram frame - - Insert Fret Diagram Frame - - Insert vertical frame - - - - Append horizontal frame - - - - Append vertical frame - - Other tuplets @@ -10963,22 +10937,10 @@ p, li { white-space: pre-wrap; } Feathered beam, slower - - Feathered Beam, Slower - - Feathered beam, faster - - Feathered Beam, Faster - - - - Play panel - - Transport toolbar @@ -10987,10 +10949,6 @@ p, li { white-space: pre-wrap; } Note input toolbar - - Status bar - - Zoom canvas @@ -11003,10 +10961,6 @@ p, li { white-space: pre-wrap; } Add staff text - - Add text - - Add title text @@ -11055,82 +11009,26 @@ p, li { white-space: pre-wrap; } Player seek to end - - Select A&ll - - &Transpose... - - Violin clef - - Violin Clef - - Bass 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 - - Toggle Section Break - - Edit element - - Show inspector @@ -11139,18 +11037,6 @@ p, li { white-space: pre-wrap; } Reset measure stretch - - Show invisible - - - - Show frames - - - - Enable script debugger - - Note entry: whole rest @@ -11187,14 +11073,6 @@ p, li { white-space: pre-wrap; } Backspace - - Zoom in - - - - Zoom out - - Mirror note head @@ -11231,10 +11109,6 @@ p, li { white-space: pre-wrap; } Display documents stacked - - Show score image - - Show OMR image @@ -11255,18 +11129,6 @@ p, li { white-space: pre-wrap; } Toggle foto mode - - Full screen - - - - F&ull Screen - - - - F&ull screen - - Enable horizontal raster @@ -11279,10 +11141,6 @@ p, li { white-space: pre-wrap; } Configure raster - - Re-pitch mode - - Re-Pitch Mode @@ -11311,10 +11169,6 @@ p, li { white-space: pre-wrap; } 128th note - - Show unprintable - - Split Measure @@ -11352,331 +11206,343 @@ p, li { white-space: pre-wrap; } - Show debugger + Piano Keyboard - Piano Keyboard + Save Selection - Show Inspector + Save Selection... - Save Selection + Save current selection as new score - Save Selection... + Export score - Save current selection as new score + Respell pitches - Export score + Grace: 8nd after + + + + Pan score while playing on/off - &Export... + Pan - &Instruments... + Show Unprintable - &Note Input + Show Page Margins - Respell pitches + Manage parts - &Respell Pitches + Inspector - Add &More Stretch + Show OMR Panel - Add &Less Stretch + OmrPanel - Reset &Beam Mode + toggle metronome - Grace: 8nd after + Figured Bass - Pan score while playing on/off + Next Score - Pan + Previous Score - &Load Style... + Transpose Up - &Save Style... + Transpose Down - Save style as default + Show master palette - Save Style As &Default... + Master Palette... - &Concert Pitch + Insert Measure - &Reset + Toggle View Mode - De&bugger + Export Parts - Reset &Stretch + Export Parts... - Show Unprintable + Save a copy of the score's parts in various formats - Show Page Margins + Add marcato - &Search + Marcato - &General... + Select Section - &Text... + Note duration: double whole - &Chords... + Double whole note - Parts + Whole note - Par&ts... + Half note - Manage parts + Quarter note - Additional &Media... + 8th note - &Page Settings... + 16th note - &Album... + 32nd note - Inspector + 64th note - Show OMR Panel + Edit score info - OmrPanel + Insert Special Characters... - Show OMR PAnel + Layers - metronome + MuseScore Connect - toggle metronome + next syllable - Figured Bass + previous syllable - Next Score + toggle visibility - Previous Score + set visible - Transpose Up + set unvisible - Transpose Down + Local Handbook... - Show master palette + Open... - Master Palette... + Save - Insert Measure + Save As... - Toggle View Mode + Export... - Export Parts + Close - Export Parts... + New... - Save a copy of the score's parts in various formats + Print... - Add marcato + Instruments... - Marcato + Add More Stretch - Select Section + Add Less Stretch - select section + Tempo Marking... - Note duration: double whole + Tempo Marking - Double whole note + Text - Whole note + Add Frame Text - Half note + Load Style... - Quarter note + Save Style... - 8th note + Save Style As Default... - 16th note + Select All - 32nd note + Concert Pitch - 64th note + Info... - Edit score info + Reset - &Info... + Debugger - Insert special characters + Reset Stretch - Insert Special Characters... + Insert Special Characters - Enable Script Debugger + Find - Layers + General... - &Layers... + Text... - MuseScore Connect + Chords... - next syllable + Parts... - previous syllable + Full Screen - toggle visibility + Additional Media... - set visible + Page Settings... - set unvisible + Album... + + + + Layers... + + + + Plugin Creator diff --git a/share/locale/mscore_eo.ts b/share/locale/mscore_eo.ts index 45fa621f6c6d..03c3d5a2cb4a 100644 --- a/share/locale/mscore_eo.ts +++ b/share/locale/mscore_eo.ts @@ -134,10 +134,6 @@ p, li { white-space: pre-wrap; } Remove Score - - score list - - move current score down in list @@ -158,18 +154,6 @@ p, li { white-space: pre-wrap; } Add Score - - path to new score you want to add - - - - open file manager - - - - ... - - create new album @@ -202,6 +186,18 @@ p, li { white-space: pre-wrap; } Join Scores + + Load + Load + + + MuseScore: Add Score + + + + MuseScore: Load Album + + ArticulationBase @@ -1159,15 +1155,15 @@ spatium unit small - showCourtesyClef + Hide courtesy clef - Hide courtesy clef + Show courtesy clef - Show courtesy clef + showCourtesy @@ -1192,14 +1188,14 @@ spatium unit Drum Tools - - Drumset - - Drums Drums + + Edit Drumset + + DrumrollEditor @@ -2777,18 +2773,10 @@ spatium unit Time sig. left margin Time sig. left margin - - Clef-key distance - Clef-key distance - Clef-barline distance Clef-bar line distance - - Begin repeat left margin - Begin repeat left margin - Show repeat bar tips ("winged" repeats) Show repeat bar tips ("winged" repeats) @@ -3185,6 +3173,10 @@ p, li { white-space: pre-wrap; } Max. System distance + + Clef/Key right margin + + EditTempoBase @@ -3562,6 +3554,28 @@ spatium unit Down Down + + Offset X: + + + + sp + spatium unit +---------- +spatium unit + sp + + + Offset Y: + + + + + InspectorClef + + Show Courtesy Clef + + InspectorElement @@ -3701,6 +3715,36 @@ spatium unit % + + InspectorKeySig + + Show Courtesy Time Signature + + + + Show Naturals + + + + + InspectorLasso + + Form + Form + + + Lasso + + + + Position: + + + + Size + + + InspectorNote @@ -3945,6 +3989,13 @@ spatium unit sp + + InspectorTimeSig + + Show Courtesy Time Signature + + + InspectorVBox @@ -5143,10 +5194,6 @@ Would you like to locate %2 now? &About &About - - MuseScore: Open Help - MuseScore: Open Help - note entry mode note entry mode @@ -5212,28 +5259,10 @@ before closing? End-Start Repeat End-Start Repeat - - Search - Search - Go To: Go To: - - MuseScore handbook not found at: - - MuseScore handbook not found at: - - - - - -From the "Help" menu try choosing "Online Handbook" instead. - - -From the "Help" menu try choosing "Online Handbook" instead. - Grace Notes Grace Notes @@ -5328,27 +5357,10 @@ Restore session? Varied coda Varied coda - - Script -%1 -is incompatible with current interface - - - - MuseScore is too old to run script -%1 - - Bar %1 Beat %2.%3 - - Error loading plugin -"%1" line %2: -%3 - - MuseScore: Load error @@ -5958,6 +5970,30 @@ please choose a different name: Report a bug + + MuseScore: Load Plugin + + + + MuseScore Plugin (*.qml);;All Files (*) + + + + MuseScore: Save Plugin + + + + MuseScore Plugin File (*.qml) + + + + &Plugins + + + + Find + + MyWebView @@ -6562,18 +6598,6 @@ please choose a different name: 100% 100% - - Straight - Straight - - - Swing - Swing - - - Shuffle - Shuffle - master volume master volume @@ -6589,6 +6613,93 @@ please choose a different name: + + PluginCreator + + File Operations + File Operations + + + Edit Operations + + + + MuseScore Plugin Editor + + + + MuseScore + MuseScore + + + Plugin "%1" has changes +save before closing? + + + + untitled + + + + Manual + + + + + PluginCreatorBase + + MainWindow + + + + Run + + + + Stop + + + + File + + + + Help + + + + Edit + + + + New + New + + + Open + + + + Save + Save + + + Manual + + + + Undo + + + + Redo + + + + Quit + Quit + + PreferenceDialog @@ -6623,14 +6734,6 @@ please choose a different name: Choose Default Style for Parts - - load - - - - Plugin Path - - Choose Scores Directory @@ -6694,10 +6797,6 @@ please choose a different name: Paths Paths - - Instrument List: - Instrument List: - Windows Windows @@ -6998,10 +7097,6 @@ please choose a different name: dark - - light - - use native file dialogs @@ -7270,6 +7365,34 @@ please choose a different name: Character Set: + + Instrument List2: + + + + Instrument List1: + + + + Name: + Name: + + + Path: + + + + Version: + + + + Load + Load + + + Define Shortcut + + Properties @@ -7323,14 +7446,6 @@ please choose a different name: MuseScore: invalid command MuseScore: invalid command - - MuseScore - MuseScore - - - reading file < - reading file < - MuseScore: Load Style failed: MuseScore: Load Style failed: @@ -7351,10 +7466,6 @@ please choose a different name: MuseScore: Load languages failed: MuseScore: Load languages failed: - - MuseScore: register script plugin: - - MuseScore: Import GuitarPro @@ -7410,17 +7521,13 @@ failed: MuseScore: Save File MuseScore: Save File - - > failed: - - Load failed: - &Quit - + Untitled + Untitled @@ -7782,10 +7889,6 @@ cannot split tuplet Ticks - - Tick: - Tick: - Bar @@ -7794,6 +7897,14 @@ cannot split tuplet Beat + + tick: + + + + rTick: + + SelectDialog @@ -7948,21 +8059,21 @@ Sequencer will be disabled. SlurPropertyBase - - Volta Properties - Volta Properties - Slur Properties Slur Properties - solid - solid + Solid + + + + Dotted + - dotted - dotted + Dashed + Dashed @@ -8640,6 +8751,10 @@ altera styled + + layoutToParentWidth + + TextEditor @@ -8955,6 +9070,14 @@ altera Text Text + + Foreground Color: + + + + Background Color: + + TextStyleDialog @@ -9187,6 +9310,34 @@ p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'Sans Serif'; font-size:9pt; 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;">Hint: you can also add or remove bars after creation of the score.</p></body></html> + + 1 + 1 + + + 2 + 2 + + + 4 + 4 + + + 8 + 8 + + + 16 + 16 + + + 32 + 32 + + + 64 + 64 + TransposeDialogBase @@ -9622,10 +9773,6 @@ p, li { white-space: pre-wrap; } action - - Local &Handbook... - - Save a Copy... @@ -9894,46 +10041,6 @@ p, li { white-space: pre-wrap; } Reset Beam Mode - - up+shift+ctrl - - - - down+shift+ctrl - - - - left+ctrl - - - - left+shift - - - - right+shift - - - - right+ctrl+shift - - - - shift+home - - - - shift+end - - - - ctrl+shift+home - - - - ctrl+shift+end - - Delete Selected Measures @@ -10034,22 +10141,10 @@ p, li { white-space: pre-wrap; } Quit Quit - - Zoom Canvas - Zoom Canvas - Lyrics Lyrics - - Tempo... - - - - Tempo - Tempo - Metronome Metronome @@ -10062,10 +10157,6 @@ p, li { white-space: pre-wrap; } Staff Text Stave Text - - Frame Text - - Title Title @@ -10158,10 +10249,6 @@ p, li { white-space: pre-wrap; } Show Frames - - Search - Search - Zoom In @@ -10194,10 +10281,6 @@ p, li { white-space: pre-wrap; } Repeat selection - - Follow Song - - Local handbook @@ -10334,10 +10417,6 @@ p, li { white-space: pre-wrap; } Trill - - More stretch - - Less stretch @@ -10350,10 +10429,6 @@ p, li { white-space: pre-wrap; } Flip direction - - Flip Direction - - Pitch up @@ -10438,38 +10513,18 @@ p, li { white-space: pre-wrap; } Previous chord - - Previous Chord - - Previous measure - - Previous Measure - - Next chord - - Next Chord - - Next measure - - Next Measure - - - - Delete selected measures - - Append measures @@ -10510,10 +10565,6 @@ p, li { white-space: pre-wrap; } Save style - - Select all - - Delete Delete @@ -10530,54 +10581,10 @@ p, li { white-space: pre-wrap; } Delete element and duration - - &Open... - - - - &Save - - - - Save &As... - - - - &Close - - File new - - &New... - - - - &Print... - - - - &Undo - - - - &Redo - - - - Cu&t - - - - &Copy - - - - &Paste - - Insert note A @@ -10734,62 +10741,26 @@ p, li { white-space: pre-wrap; } Timewise delete - - Append one measure - - Append One Measure - - Insert one measure - - Insert One Measure - - Insert horizontal frame - - - - Insert text frame - - Insert Text Frame - - Append text frame - - Append Text Frame - - Insert fret diagram frame - - Insert Fret Diagram Frame - - Insert vertical frame - - - - Append horizontal frame - - - - Append vertical frame - - Other tuplets @@ -10966,22 +10937,10 @@ p, li { white-space: pre-wrap; } Feathered beam, slower - - Feathered Beam, Slower - - Feathered beam, faster - - Feathered Beam, Faster - - - - Play panel - - Transport toolbar @@ -10990,10 +10949,6 @@ p, li { white-space: pre-wrap; } Note input toolbar - - Status bar - - Zoom canvas @@ -11006,10 +10961,6 @@ p, li { white-space: pre-wrap; } Add staff text - - Add text - - Add title text @@ -11058,82 +11009,26 @@ p, li { white-space: pre-wrap; } Player seek to end - - Select A&ll - - &Transpose... - - Violin clef - - Violin Clef - - Bass 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 - - Toggle Section Break - - Edit element - - Show inspector @@ -11142,18 +11037,6 @@ p, li { white-space: pre-wrap; } Reset measure stretch - - Show invisible - - - - Show frames - - - - Enable script debugger - - Note entry: whole rest @@ -11190,14 +11073,6 @@ p, li { white-space: pre-wrap; } Backspace - - Zoom in - - - - Zoom out - - Mirror note head @@ -11234,10 +11109,6 @@ p, li { white-space: pre-wrap; } Display documents stacked - - Show score image - - Show OMR image @@ -11258,18 +11129,6 @@ p, li { white-space: pre-wrap; } Toggle foto mode - - Full screen - - - - F&ull Screen - - - - F&ull screen - - Enable horizontal raster @@ -11282,10 +11141,6 @@ p, li { white-space: pre-wrap; } Configure raster - - Re-pitch mode - - Re-Pitch Mode @@ -11314,10 +11169,6 @@ p, li { white-space: pre-wrap; } 128th note - - Show unprintable - - Split Measure @@ -11354,18 +11205,10 @@ p, li { white-space: pre-wrap; } Reset user settings - - Show debugger - - Piano Keyboard - - Show Inspector - - Save Selection @@ -11383,303 +11226,323 @@ p, li { white-space: pre-wrap; } - &Export... + Respell pitches + + + + Grace: 8nd after - &Instruments... + Pan score while playing on/off - &Note Input + Pan - Respell pitches + Show Unprintable - &Respell Pitches + Show Page Margins - Add &More Stretch + Manage parts - Add &Less Stretch + Inspector - Reset &Beam Mode + Show OMR Panel - Grace: 8nd after + OmrPanel - Pan score while playing on/off + toggle metronome - Pan + Figured Bass - &Load Style... + Next Score - &Save Style... + Previous Score - Save style as default + Transpose Up - Save Style As &Default... + Transpose Down - &Concert Pitch + Show master palette - &Reset + Master Palette... - De&bugger + Insert Measure - Reset &Stretch + Toggle View Mode - Show Unprintable + Export Parts - Show Page Margins + Export Parts... - &Search + Save a copy of the score's parts in various formats - &General... + Add marcato - &Text... + Marcato - &Chords... + Select Section - Parts + Note duration: double whole - Par&ts... + Double whole note - Manage parts + Whole note - Additional &Media... + Half note - &Page Settings... + Quarter note - &Album... + 8th note - Inspector + 16th note - Show OMR Panel + 32nd note - OmrPanel + 64th note - Show OMR PAnel + Edit score info - metronome + Insert Special Characters... - toggle metronome + Layers - Figured Bass + MuseScore Connect - Next Score + next syllable - Previous Score + previous syllable - Transpose Up + toggle visibility - Transpose Down + set visible - Show master palette + set unvisible - Master Palette... + Local Handbook... - Insert Measure + Open... - Toggle View Mode + Save + Save + + + Save As... - Export Parts + Export... - Export Parts... + Close + Close + + + New... - Save a copy of the score's parts in various formats + Print... - Add marcato + Instruments... - Marcato + Add More Stretch - Select Section + Add Less Stretch - select section + Tempo Marking... - Note duration: double whole + Tempo Marking - Double whole note + Text + Text + + + Add Frame Text - Whole note + Load Style... - Half note + Save Style... - Quarter note + Save Style As Default... - 8th note + Select All - 16th note + Concert Pitch + Concert Pitch + + + Info... - 32nd note + Reset - 64th note + Debugger - Edit score info + Reset Stretch - &Info... + Insert Special Characters - Insert special characters + Find - Insert Special Characters... + General... - Enable Script Debugger + Text... - Layers + Chords... - &Layers... + Parts... - MuseScore Connect + Full Screen - next syllable + Additional Media... - previous syllable + Page Settings... - toggle visibility + Album... - set visible + Layers... - set unvisible + Plugin Creator diff --git a/share/locale/mscore_es.ts b/share/locale/mscore_es.ts index 52ab7c23406b..ed8b277c9e01 100644 --- a/share/locale/mscore_es.ts +++ b/share/locale/mscore_es.ts @@ -134,10 +134,6 @@ p, li { white-space: pre-wrap; } Remove Score - - score list - - move current score down in list @@ -158,18 +154,6 @@ p, li { white-space: pre-wrap; } Add Score - - path to new score you want to add - - - - open file manager - - - - ... - - create new album @@ -202,6 +186,18 @@ p, li { white-space: pre-wrap; } Join Scores + + Load + Cargar + + + MuseScore: Add Score + + + + MuseScore: Load Album + + ArticulationBase @@ -1159,15 +1155,15 @@ spatium unit pequeño - showCourtesyClef + Hide courtesy clef - Hide courtesy clef + Show courtesy clef - Show courtesy clef + showCourtesy @@ -1192,14 +1188,14 @@ spatium unit Drum Tools - - Drumset - - Drums Percusión + + Edit Drumset + + DrumrollEditor @@ -2777,18 +2773,10 @@ spatium unit Time sig. left margin Margen izquierdo del compás - - Clef-key distance - Distancia entre la clave y la armadura - Clef-barline distance Distancia de la clave a la barra de compás - - Begin repeat left margin - Margen izquierdo del signo de comienzo de repetición - Show repeat bar tips ("winged" repeats) Mostrar puntas de las barras de repetición (barras con alas) @@ -3185,6 +3173,10 @@ p, li { white-space: pre-wrap; } Max. System distance + + Clef/Key right margin + + EditTempoBase @@ -3562,6 +3554,28 @@ spatium unit Down + + Offset X: + + + + sp + spatium unit +---------- +spatium unit + sp + + + Offset Y: + + + + + InspectorClef + + Show Courtesy Clef + + InspectorElement @@ -3701,6 +3715,36 @@ spatium unit % + + InspectorKeySig + + Show Courtesy Time Signature + + + + Show Naturals + + + + + InspectorLasso + + Form + + + + Lasso + + + + Position: + + + + Size + + + InspectorNote @@ -3945,6 +3989,13 @@ spatium unit sp + + InspectorTimeSig + + Show Courtesy Time Signature + + + InspectorVBox @@ -5135,10 +5186,6 @@ Would you like to locate %2 now? &About &Acerca de - - MuseScore: Open Help - MuseScore: Abrir Ayuda - note entry mode modo ingreso de notas @@ -5212,28 +5259,10 @@ before closing? End-Start Repeat Comienzo-Fin de Repetición - - Search - Buscar - Go To: Ir A: - - MuseScore handbook not found at: - - Manual de MuseScore no encontrado en: - - - - - -From the "Help" menu try choosing "Online Handbook" instead. - - -Intenta usar el "Manual en Internet" desde el menu de "Ayuda". - Grace Notes Notas de Adorno @@ -5328,32 +5357,10 @@ Intenta usar el "Manual en Internet" desde el menu de "Ayuda" Restore session? La sesión anterior finalizó de manera inesperada. ¿Restaurar sesión? - - Script -%1 -is incompatible with current interface - El script -%1 -no es compatible con el interfaz actual - - - MuseScore is too old to run script -%1 - MuseScore es demasiado antiguo para ejecutar el script -%1 - Bar %1 Beat %2.%3 Compás %1 Pulso %2. %3 - - Error loading plugin -"%1" line %2: -%3 - Error al cargar el plugin -"%1" línea %2: -%3 - MuseScore: Load error @@ -5963,6 +5970,30 @@ please choose a different name: Report a bug + + MuseScore: Load Plugin + + + + MuseScore Plugin (*.qml);;All Files (*) + + + + MuseScore: Save Plugin + + + + MuseScore Plugin File (*.qml) + + + + &Plugins + + + + Find + + MyWebView @@ -6567,18 +6598,6 @@ please choose a different name: relative tempo tempo relativo - - Straight - Uniforme - - - Swing - Swing - - - Shuffle - Modo aleatorio - master volume volumen principal @@ -6594,6 +6613,93 @@ please choose a different name: + + PluginCreator + + File Operations + Operaciones con Archivo + + + Edit Operations + + + + MuseScore Plugin Editor + + + + MuseScore + MuseScore + + + Plugin "%1" has changes +save before closing? + + + + untitled + + + + Manual + + + + + PluginCreatorBase + + MainWindow + + + + Run + + + + Stop + + + + File + + + + Help + + + + Edit + + + + New + Nuevo + + + Open + + + + Save + Guardar + + + Manual + + + + Undo + Deshacer + + + Redo + Rehacer + + + Quit + Salir + + PreferenceDialog @@ -6628,14 +6734,6 @@ please choose a different name: Choose Default Style for Parts - - load - - - - Plugin Path - - Choose Scores Directory @@ -6699,10 +6797,6 @@ please choose a different name: Paths Rutas - - Instrument List: - Lista de Instrumentos: - Windows Ventanas @@ -7003,10 +7097,6 @@ please choose a different name: dark - - light - - use native file dialogs @@ -7275,6 +7365,34 @@ please choose a different name: Character Set: + + Instrument List2: + + + + Instrument List1: + + + + Name: + Nombre: + + + Path: + + + + Version: + + + + Load + Cargar + + + Define Shortcut + + Properties @@ -7324,14 +7442,6 @@ please choose a different name: MuseScore: load midi MuseScore: cargar midi - - MuseScore - MuseScore - - - reading file < - leyendo el archivo < - MuseScore: invalid command MuseScore: comando invalido @@ -7356,10 +7466,6 @@ please choose a different name: MuseScore: Load languages failed: MuseScore: Carga de Idioma fallida: - - MuseScore: register script plugin: - MuseScore: registrar plugin de script: - MuseScore: Import GuitarPro @@ -7414,17 +7520,13 @@ failed: MuseScore: Save File MuseScore: Guardar Archivo - - > failed: - - Load failed: Fallo al cargar - &Quit - + Untitled + Sin título @@ -7789,15 +7891,19 @@ cannot split tuplet - Tick: + Bar - Bar + Beat - Beat + tick: + + + + rTick: @@ -7955,21 +8061,21 @@ El secuenciador será desactivado SlurPropertyBase - - Volta Properties - Propiedades de Volta - Slur Properties Propiedades de la Ligadura - solid - sólida + Solid + - dotted - punteada + Dotted + + + + Dashed + Discontinua @@ -8647,6 +8753,10 @@ altera styled + + layoutToParentWidth + + TextEditor @@ -8962,6 +9072,14 @@ altera Text Texto + + Foreground Color: + + + + Background Color: + + TextStyleDialog @@ -9194,6 +9312,34 @@ p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'Sans Serif'; font-size:9pt; 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;">Consejo: también puedes añadir o eliminar compases después de crear la partitura.</p></body></html> + + 1 + 1 + + + 2 + 2 + + + 4 + 4 + + + 8 + 8 + + + 16 + 16 + + + 32 + 32 + + + 64 + 64 + TransposeDialogBase @@ -9629,10 +9775,6 @@ p, li { white-space: pre-wrap; } action - - Local &Handbook... - &Manual Local... - Save a Copy... Guardar una Copia @@ -9901,46 +10043,6 @@ p, li { white-space: pre-wrap; } Reset Beam Mode Restablecer Modo de Agrupación - - up+shift+ctrl - arriba+shift+ctrl - - - down+shift+ctrl - abajo+shift+ctrl - - - left+ctrl - izquierda+ctrl - - - left+shift - izquierda+shift - - - right+shift - derecha+shift - - - right+ctrl+shift - derecha+ctrl+shift - - - shift+home - shift+inicio - - - shift+end - shift+fin - - - ctrl+shift+home - ctrl+shift+inicio - - - ctrl+shift+end - ctrl+shift+fin - Delete Selected Measures Borrar los Compases Seleccionados @@ -10041,22 +10143,10 @@ p, li { white-space: pre-wrap; } Quit Salir - - Zoom Canvas - Ventana de Zoom - Lyrics Letras - - Tempo... - Tempo... - - - Tempo - Tempo - Metronome Metrónomo @@ -10069,10 +10159,6 @@ p, li { white-space: pre-wrap; } Staff Text Texto del Pentagrama - - Frame Text - Texto del Marco - Title Título @@ -10165,10 +10251,6 @@ p, li { white-space: pre-wrap; } Show Frames Mostrar Marcos - - Search - Buscar - Zoom In Aumentar Zoom @@ -10201,10 +10283,6 @@ p, li { white-space: pre-wrap; } Repeat selection Repetir selección - - Follow Song - Seguir la Canción - Documents Side by Side Documentos Adyacentes @@ -10345,10 +10423,6 @@ p, li { white-space: pre-wrap; } Trill Trino - - More stretch - Aumentar ancho - Less stretch Reducir ancho @@ -10361,10 +10435,6 @@ p, li { white-space: pre-wrap; } Flip direction Modificar dirección - - Flip Direction - Modificar Dirección - Pitch up @@ -10449,38 +10519,18 @@ p, li { white-space: pre-wrap; } Previous chord Acorde anterior - - Previous Chord - Acorde Anterior - Previous measure Compás anterior - - Previous Measure - Compás Anterior - Next chord Acorde siguiente - - Next Chord - Acorde Siguiente - Next measure Compás siguiente - - Next Measure - Compás Siguiente - - - Delete selected measures - Borrar los compases seleccionados - Append measures Añadir compases @@ -10517,10 +10567,6 @@ p, li { white-space: pre-wrap; } Save style Guardar Estilo - - Select all - Seleccionar todo - Delete Eliminar @@ -10537,54 +10583,10 @@ p, li { white-space: pre-wrap; } Delete element and duration Eliminar elemento y duración - - &Open... - - - - &Save - - - - Save &As... - - - - &Close - - File new - - &New... - - - - &Print... - - - - &Undo - - - - &Redo - - - - Cu&t - - - - &Copy - - - - &Paste - - Insert note A @@ -10741,62 +10743,26 @@ p, li { white-space: pre-wrap; } Timewise delete - - Append one measure - - Append One Measure - - Insert one measure - - Insert One Measure - - Insert horizontal frame - - - - Insert text frame - - Insert Text Frame - - Append text frame - - Append Text Frame - - Insert fret diagram frame - - Insert Fret Diagram Frame - - Insert vertical frame - - - - Append horizontal frame - - - - Append vertical frame - - Other tuplets @@ -10973,22 +10939,10 @@ p, li { white-space: pre-wrap; } Feathered beam, slower - - Feathered Beam, Slower - - Feathered beam, faster - - Feathered Beam, Faster - - - - Play panel - - Transport toolbar @@ -10997,10 +10951,6 @@ p, li { white-space: pre-wrap; } Note input toolbar - - Status bar - - Zoom canvas @@ -11013,10 +10963,6 @@ p, li { white-space: pre-wrap; } Add staff text - - Add text - - Add title text @@ -11065,82 +11011,26 @@ p, li { white-space: pre-wrap; } Player seek to end - - Select A&ll - - &Transpose... - - Violin clef - - Violin Clef - - Bass clef - Clave de Fa - 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 - - Toggle Section Break - - Edit element - - Show inspector @@ -11149,18 +11039,6 @@ p, li { white-space: pre-wrap; } Reset measure stretch - - Show invisible - - - - Show frames - - - - Enable script debugger - - Note entry: whole rest @@ -11197,14 +11075,6 @@ p, li { white-space: pre-wrap; } Backspace - - Zoom in - - - - Zoom out - - Mirror note head @@ -11241,10 +11111,6 @@ p, li { white-space: pre-wrap; } Display documents stacked - - Show score image - - Show OMR image @@ -11265,18 +11131,6 @@ p, li { white-space: pre-wrap; } Toggle foto mode - - Full screen - - - - F&ull Screen - - - - F&ull screen - - Enable horizontal raster @@ -11289,10 +11143,6 @@ p, li { white-space: pre-wrap; } Configure raster - - Re-pitch mode - - Re-Pitch Mode @@ -11321,10 +11171,6 @@ p, li { white-space: pre-wrap; } 128th note - - Show unprintable - - Split Measure @@ -11361,18 +11207,10 @@ p, li { white-space: pre-wrap; } Reset user settings - - Show debugger - - Piano Keyboard - - Show Inspector - - Save Selection @@ -11390,303 +11228,323 @@ p, li { white-space: pre-wrap; } - &Export... + Respell pitches - &Instruments... + Grace: 8nd after - &Note Input + Pan score while playing on/off - Respell pitches - + Pan + Pan - &Respell Pitches + Show Unprintable - Add &More Stretch + Show Page Margins - Add &Less Stretch + Manage parts - Reset &Beam Mode + Inspector + Inspector + + + Show OMR Panel - Grace: 8nd after + OmrPanel - Pan score while playing on/off + toggle metronome - Pan - Pan + Figured Bass + - &Load Style... + Next Score - &Save Style... + Previous Score - Save style as default + Transpose Up - Save Style As &Default... + Transpose Down - &Concert Pitch + Show master palette - &Reset + Master Palette... - De&bugger + Insert Measure - Reset &Stretch + Toggle View Mode - Show Unprintable + Export Parts - Show Page Margins + Export Parts... - &Search + Save a copy of the score's parts in various formats - &General... + Add marcato - &Text... + Marcato - &Chords... + Select Section - Parts + Note duration: double whole - Par&ts... + Double whole note - Manage parts + Whole note - Additional &Media... + Half note - &Page Settings... + Quarter note - &Album... + 8th note - Inspector - Inspector + 16th note + - Show OMR Panel + 32nd note - OmrPanel + 64th note - Show OMR PAnel + Edit score info - metronome + Insert Special Characters... - toggle metronome + Layers - Figured Bass + MuseScore Connect - Next Score + next syllable - Previous Score + previous syllable - Transpose Up + toggle visibility - Transpose Down + set visible - Show master palette + set unvisible - Master Palette... + Local Handbook... - Insert Measure + Open... - Toggle View Mode + Save + Guardar + + + Save As... - Export Parts + Export... - Export Parts... + Close + Cerrar + + + New... - Save a copy of the score's parts in various formats + Print... - Add marcato + Instruments... - Marcato + Add More Stretch - Select Section + Add Less Stretch - select section + Tempo Marking... - Note duration: double whole + Tempo Marking - Double whole note + Text + Texto + + + Add Frame Text - Whole note + Load Style... - Half note + Save Style... - Quarter note + Save Style As Default... - 8th note + Select All - 16th note + Concert Pitch + Afinación de Concierto + + + Info... - 32nd note + Reset - 64th note + Debugger - Edit score info + Reset Stretch - &Info... + Insert Special Characters - Insert special characters + Find - Insert Special Characters... + General... - Enable Script Debugger + Text... - Layers + Chords... - &Layers... + Parts... - MuseScore Connect + Full Screen - next syllable + Additional Media... - previous syllable + Page Settings... - toggle visibility + Album... - set visible + Layers... - set unvisible + Plugin Creator diff --git a/share/locale/mscore_et.ts b/share/locale/mscore_et.ts index 30bb288f8c2e..cad974a88d33 100644 --- a/share/locale/mscore_et.ts +++ b/share/locale/mscore_et.ts @@ -134,10 +134,6 @@ p, li { white-space: pre-wrap; } Remove Score - - score list - - move current score down in list @@ -159,47 +155,47 @@ p, li { white-space: pre-wrap; } - path to new score you want to add + create new album - open file manager + New - ... + load an existing album - create new album + Print Album - New + MuseScore Album Files (*.album);; - load an existing album + All Files (*) - Print Album + MuseScore Files (*.mscz *.mscx *.msc);; - MuseScore Album Files (*.album);; + Join Scores - All Files (*) + Load - MuseScore Files (*.mscz *.mscx *.msc);; + MuseScore: Add Score - Join Scores + MuseScore: Load Album @@ -1159,15 +1155,15 @@ spatium unit Small - showCourtesyClef + Hide courtesy clef - Hide courtesy clef + Show courtesy clef - Show courtesy clef + showCourtesy @@ -1193,11 +1189,11 @@ spatium unit - Drumset + Drums - Drums + Edit Drumset @@ -2777,18 +2773,10 @@ spatium unit Time sig. left margin - - Clef-key distance - - Clef-barline distance - - Begin repeat left margin - - Show repeat bar tips ("winged" repeats) @@ -3185,6 +3173,10 @@ p, li { white-space: pre-wrap; } Max. System distance + + Clef/Key right margin + + EditTempoBase @@ -3562,6 +3554,28 @@ spatium unit Down + + Offset X: + + + + sp + spatium unit +---------- +spatium unit + + + + Offset Y: + + + + + InspectorClef + + Show Courtesy Clef + + InspectorElement @@ -3701,6 +3715,36 @@ spatium unit + + InspectorKeySig + + Show Courtesy Time Signature + + + + Show Naturals + + + + + InspectorLasso + + Form + + + + Lasso + + + + Position: + + + + Size + + + InspectorNote @@ -3945,6 +3989,13 @@ spatium unit + + InspectorTimeSig + + Show Courtesy Time Signature + + + InspectorVBox @@ -5143,10 +5194,6 @@ Would you like to locate %2 now? &About - - MuseScore: Open Help - - note entry mode Note entry mode @@ -5212,25 +5259,10 @@ before closing? End-Start Repeat End-start repeat - - Search - - Go To: - - MuseScore handbook not found at: - - - - - - -From the "Help" menu try choosing "Online Handbook" instead. - - Grace Notes @@ -5325,27 +5357,10 @@ Restore session? Varied coda - - Script -%1 -is incompatible with current interface - - - - MuseScore is too old to run script -%1 - - Bar %1 Beat %2.%3 - - Error loading plugin -"%1" line %2: -%3 - - MuseScore: Load error @@ -5955,6 +5970,30 @@ please choose a different name: Report a bug + + MuseScore: Load Plugin + + + + MuseScore Plugin (*.qml);;All Files (*) + + + + MuseScore: Save Plugin + + + + MuseScore Plugin File (*.qml) + + + + &Plugins + + + + Find + + MyWebView @@ -6560,29 +6599,104 @@ please choose a different name: - Straight + master volume - Swing + Vol. + short text for volume slider - Shuffle + Tmp. + short text for tempo slider + + + PluginCreator - master volume + File Operations - Vol. - short text for volume slider + Edit Operations - Tmp. - short text for tempo slider + MuseScore Plugin Editor + + + + MuseScore + + + + Plugin "%1" has changes +save before closing? + + + + untitled + + + + Manual + + + + + PluginCreatorBase + + MainWindow + + + + Run + + + + Stop + + + + File + + + + Help + + + + Edit + + + + New + + + + Open + + + + Save + + + + Manual + + + + Undo + + + + Redo + + + + Quit @@ -6620,14 +6734,6 @@ please choose a different name: Choose Default Style for Parts - - load - - - - Plugin Path - - Choose Scores Directory @@ -6691,10 +6797,6 @@ please choose a different name: Paths - - Instrument List: - Instrument list: - Windows @@ -6995,10 +7097,6 @@ please choose a different name: dark - - light - - use native file dialogs @@ -7267,6 +7365,34 @@ please choose a different name: Character Set: + + Instrument List2: + + + + Instrument List1: + + + + Name: + + + + Path: + + + + Version: + + + + Load + + + + Define Shortcut + + Properties @@ -7320,14 +7446,6 @@ please choose a different name: MuseScore: invalid command MuseScore: Invalid Command - - MuseScore - - - - reading file < - Reading file < - MuseScore: Load Style failed: @@ -7348,10 +7466,6 @@ please choose a different name: MuseScore: Load languages failed: - - MuseScore: register script plugin: - - MuseScore: Import GuitarPro @@ -7407,16 +7521,12 @@ Failed: MuseScore: Save File - - > failed: - - Load failed: - &Quit + Untitled @@ -7782,10 +7892,6 @@ cannot split tuplet Ticks - - Tick: - - Bar @@ -7794,9 +7900,17 @@ cannot split tuplet Beat - - - SelectDialog + + tick: + + + + rTick: + + + + + SelectDialog MuseScore: Select @@ -7949,19 +8063,19 @@ Sequencer will be disabled. SlurPropertyBase - Volta Properties + Slur Properties - Slur Properties + Solid - solid - Solid + Dotted + - dotted + Dashed @@ -8640,6 +8754,10 @@ altera styled + + layoutToParentWidth + + TextEditor @@ -8955,6 +9073,14 @@ altera Text + + Foreground Color: + + + + Background Color: + + TextStyleDialog @@ -9184,6 +9310,34 @@ 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;">Hint: you can also add or remove measures after creation of the score.</p></body></html> + + 1 + + + + 2 + + + + 4 + + + + 8 + + + + 16 + + + + 32 + + + + 64 + + TransposeDialogBase @@ -9619,10 +9773,6 @@ p, li { white-space: pre-wrap; } action - - Local &Handbook... - - Save a Copy... @@ -9891,46 +10041,6 @@ p, li { white-space: pre-wrap; } Reset Beam Mode - - up+shift+ctrl - - - - down+shift+ctrl - - - - left+ctrl - - - - left+shift - - - - right+shift - - - - right+ctrl+shift - - - - shift+home - - - - shift+end - - - - ctrl+shift+home - - - - ctrl+shift+end - - Delete Selected Measures @@ -10031,22 +10141,10 @@ p, li { white-space: pre-wrap; } Quit - - Zoom Canvas - - Lyrics - - Tempo... - - - - Tempo - - Metronome @@ -10059,10 +10157,6 @@ p, li { white-space: pre-wrap; } Staff Text - - Frame Text - - Title @@ -10155,10 +10249,6 @@ p, li { white-space: pre-wrap; } Show Frames - - Search - - Zoom In @@ -10191,10 +10281,6 @@ p, li { white-space: pre-wrap; } Repeat selection - - Follow Song - - Local handbook @@ -10331,10 +10417,6 @@ p, li { white-space: pre-wrap; } Trill - - More stretch - - Less stretch @@ -10347,10 +10429,6 @@ p, li { white-space: pre-wrap; } Flip direction - - Flip Direction - - Pitch up @@ -10435,38 +10513,18 @@ p, li { white-space: pre-wrap; } Previous chord - - Previous Chord - - Previous measure - - Previous Measure - - Next chord - - Next Chord - - Next measure - - Next Measure - - - - Delete selected measures - - Append measures @@ -10507,10 +10565,6 @@ p, li { white-space: pre-wrap; } Save style - - Select all - - Delete @@ -10527,54 +10581,10 @@ p, li { white-space: pre-wrap; } Delete element and duration - - &Open... - - - - &Save - - - - Save &As... - - - - &Close - - File new - - &New... - - - - &Print... - - - - &Undo - - - - &Redo - - - - Cu&t - - - - &Copy - - - - &Paste - - Insert note A @@ -10731,62 +10741,26 @@ p, li { white-space: pre-wrap; } Timewise delete - - Append one measure - - Append One Measure - - Insert one measure - - Insert One Measure - - Insert horizontal frame - - - - Insert text frame - - Insert Text Frame - - Append text frame - - Append Text Frame - - Insert fret diagram frame - - Insert Fret Diagram Frame - - Insert vertical frame - - - - Append horizontal frame - - - - Append vertical frame - - Other tuplets @@ -10963,22 +10937,10 @@ p, li { white-space: pre-wrap; } Feathered beam, slower - - Feathered Beam, Slower - - Feathered beam, faster - - Feathered Beam, Faster - - - - Play panel - - Transport toolbar @@ -10987,10 +10949,6 @@ p, li { white-space: pre-wrap; } Note input toolbar - - Status bar - - Zoom canvas @@ -11003,10 +10961,6 @@ p, li { white-space: pre-wrap; } Add staff text - - Add text - - Add title text @@ -11055,82 +11009,26 @@ p, li { white-space: pre-wrap; } Player seek to end - - Select A&ll - - &Transpose... - - Violin clef - - Violin Clef - - Bass 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 - - Toggle Section Break - - Edit element - - Show inspector @@ -11139,18 +11037,6 @@ p, li { white-space: pre-wrap; } Reset measure stretch - - Show invisible - - - - Show frames - - - - Enable script debugger - - Note entry: whole rest @@ -11187,14 +11073,6 @@ p, li { white-space: pre-wrap; } Backspace - - Zoom in - - - - Zoom out - - Mirror note head @@ -11231,10 +11109,6 @@ p, li { white-space: pre-wrap; } Display documents stacked - - Show score image - - Show OMR image @@ -11255,18 +11129,6 @@ p, li { white-space: pre-wrap; } Toggle foto mode - - Full screen - - - - F&ull Screen - - - - F&ull screen - - Enable horizontal raster @@ -11279,10 +11141,6 @@ p, li { white-space: pre-wrap; } Configure raster - - Re-pitch mode - - Re-Pitch Mode @@ -11311,10 +11169,6 @@ p, li { white-space: pre-wrap; } 128th note - - Show unprintable - - Split Measure @@ -11352,331 +11206,343 @@ p, li { white-space: pre-wrap; } - Show debugger + Piano Keyboard - Piano Keyboard + Save Selection - Show Inspector + Save Selection... - Save Selection + Save current selection as new score - Save Selection... + Export score - Save current selection as new score + Respell pitches - Export score + Grace: 8nd after + + + + Pan score while playing on/off - &Export... + Pan - &Instruments... + Show Unprintable - &Note Input + Show Page Margins - Respell pitches + Manage parts - &Respell Pitches + Inspector - Add &More Stretch + Show OMR Panel - Add &Less Stretch + OmrPanel - Reset &Beam Mode + toggle metronome - Grace: 8nd after + Figured Bass - Pan score while playing on/off + Next Score - Pan + Previous Score - &Load Style... + Transpose Up - &Save Style... + Transpose Down - Save style as default + Show master palette - Save Style As &Default... + Master Palette... - &Concert Pitch + Insert Measure - &Reset + Toggle View Mode - De&bugger + Export Parts - Reset &Stretch + Export Parts... - Show Unprintable + Save a copy of the score's parts in various formats - Show Page Margins + Add marcato - &Search + Marcato - &General... + Select Section - &Text... + Note duration: double whole - &Chords... + Double whole note - Parts + Whole note - Par&ts... + Half note - Manage parts + Quarter note - Additional &Media... + 8th note - &Page Settings... + 16th note - &Album... + 32nd note - Inspector + 64th note - Show OMR Panel + Edit score info - OmrPanel + Insert Special Characters... - Show OMR PAnel + Layers - metronome + MuseScore Connect - toggle metronome + next syllable - Figured Bass + previous syllable - Next Score + toggle visibility - Previous Score + set visible - Transpose Up + set unvisible - Transpose Down + Local Handbook... - Show master palette + Open... - Master Palette... + Save - Insert Measure + Save As... - Toggle View Mode + Export... - Export Parts + Close - Export Parts... + New... - Save a copy of the score's parts in various formats + Print... - Add marcato + Instruments... - Marcato + Add More Stretch - Select Section + Add Less Stretch - select section + Tempo Marking... - Note duration: double whole + Tempo Marking - Double whole note + Text - Whole note + Add Frame Text - Half note + Load Style... - Quarter note + Save Style... - 8th note + Save Style As Default... - 16th note + Select All - 32nd note + Concert Pitch - 64th note + Info... - Edit score info + Reset - &Info... + Debugger - Insert special characters + Reset Stretch - Insert Special Characters... + Insert Special Characters - Enable Script Debugger + Find - Layers + General... - &Layers... + Text... - MuseScore Connect + Chords... - next syllable + Parts... - previous syllable + Full Screen - toggle visibility + Additional Media... - set visible + Page Settings... - set unvisible + Album... + + + + Layers... + + + + Plugin Creator diff --git a/share/locale/mscore_eu.ts b/share/locale/mscore_eu.ts index 1e9953374e12..cee036463b77 100644 --- a/share/locale/mscore_eu.ts +++ b/share/locale/mscore_eu.ts @@ -31,17 +31,17 @@ p, li { white-space: pre-wrap; } AboutBoxDialog - + Unstable Prerelease for Version: - + Version: Bertsioa: - + Revision: %1 Berrikustea: %1 @@ -141,101 +141,96 @@ p, li { white-space: pre-wrap; } - + remove current score - - - Remove Score - - - score list + Remove Score - + move current score down in list - + Down - + move current score up in list - + Up - + Add Score - path to new score you want to add - - - - - open file manager - - - - - ... - ... - - - create new album - + New Berria - + load an existing album - + + Load + + + + Join Scores - + Print Album - + MuseScore Album Files (*.album);; - - + + All Files (*) - + MuseScore Files (*.mscz *.mscx *.msc);; + + + MuseScore: Add Score + + + + + MuseScore: Load Album + + ArticulationBase @@ -1456,7 +1451,7 @@ spatium unit - showCourtesyClef + showCourtesy @@ -1497,7 +1492,7 @@ spatium unit - Drumset + Edit Drumset @@ -1608,30 +1603,30 @@ spatium unit - + Open File Fitxategia Ireki - + failed: - + MuseScore: Open File MuseScore: Fitxategia Ireki - + Write File failed: - + MuseScore: Write Drumset @@ -1644,17 +1639,17 @@ failed: - + Note Nota - + Shortcut - + Name Izena @@ -1664,97 +1659,97 @@ failed: Izena: - + Note Head: - + Staff Line: - + Stem Direction: - + Auto - + Up - + Down - + Default Voice: - + Shortcut: - + A A - + B B - + C C - + D D - + E E - + F F - + G G - + -- -- - + Load - + Save Gorde - + No. @@ -3182,48 +3177,48 @@ failed: - + Barlines - + Notes Notak - + Arpeggios - + Beams - + Sizes - + Hairpins - + Chordnames Akordeen Izenak - + Articulations, Ornaments @@ -3263,45 +3258,44 @@ failed: - - - - - - - - + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + sp spatium unit ---------- @@ -3377,11 +3371,11 @@ spatium unit - - - - - + + + + + % % @@ -3412,19 +3406,19 @@ spatium unit - + Clefs - + Slurs/Ties - + Accidentals @@ -3590,40 +3584,35 @@ spatium unit - + minimum Measure width - + Spacing (1=tight) - + Min. note distance - + Clef left margin - + Key sig. left margin - + Time sig. left margin - - - Clef-key distance - - Clef-barline distance @@ -3631,257 +3620,252 @@ spatium unit - Begin repeat left margin - - - - 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 @@ -3899,7 +3883,7 @@ spatium unit - + Figured Bass @@ -3961,98 +3945,103 @@ p, li { white-space: pre-wrap; } 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 - + Use German names Erabili izen Germaniarrak - + Chord description file @@ -4069,35 +4058,35 @@ p, li { white-space: pre-wrap; } - + ... ... - - - + + + sp space unit - + Voice 1 1 ahotsa - + Voice 2 2 ahotsa - + Voice 3 3 ahotsa - + Voice 4 4 ahotsa @@ -4260,7 +4249,7 @@ p, li { white-space: pre-wrap; } GreendotButton - + record @@ -4357,7 +4346,7 @@ p, li { white-space: pre-wrap; } Inspector - + Inspector @@ -4380,8 +4369,8 @@ p, li { white-space: pre-wrap; } - - + + sp spatium unit ---------- @@ -4389,57 +4378,57 @@ spatium unit - + Offset Y: - + Direction: - + Auto - + Up - + Down - + Anchor: - + Top Staff - + Bottom Staff - + Chord Automatic - + Top Chord - + Bottom Chord @@ -4462,27 +4451,27 @@ spatium unit - - + + sp - + Position - - - - - + + + + + ... ... - + User Position @@ -4531,48 +4520,77 @@ spatium unit - - + Offset X: + + + + + + sp + spatium unit +---------- +spatium unit + + + + + + reset value - - - + + + + + ... ... - + Small - + Stemless - + Stem direction - + Auto - + Up - + Down + + + Offset Y: + + + + + InspectorClef + + + Show Courtesy Clef + + InspectorElement @@ -4587,31 +4605,31 @@ spatium unit - + Offset X: - + Color: Kolorea: - - - - + + + + ... ... - + Visible - - + + sp spatium unit ---------- @@ -4619,7 +4637,7 @@ spatium unit - + Offset Y: @@ -4642,12 +4660,12 @@ spatium unit - + Set Visible - + Set Invisible @@ -4665,26 +4683,26 @@ spatium unit - + Left Gap: - - + + reset value - - + + ... ... - - - + + + sp spatium unit ---------- @@ -4692,12 +4710,12 @@ spatium unit - + Right Gap: - + Width: Zabalera: @@ -4715,30 +4733,30 @@ spatium unit Irudia - + Size - + Scale: - - + + % % - - - + + + ... ... - + Lock Aspect Ratio @@ -4753,6 +4771,42 @@ spatium unit + + InspectorKeySig + + + Show Courtesy Time Signature + + + + + Show Naturals + + + + + InspectorLasso + + + Form + + + + + Lasso + + + + + Position: + + + + + Size + + + InspectorNote @@ -4776,225 +4830,225 @@ spatium unit - - - + + + Auto - + Top - + Bottom - - - - - - - - - + + + + + + + + + reset value - - - - - - - - - + + + + + + + + + ... ... - + Ontime Offset - + Left Ezkerra - + Right - + Dot Position - + Note Head Group - + Tuning Offset - + Note Head Type - + Velocity Type - + Whole - + Half - + Quarter - + Breve - + Velocity - + Offset - + User - + normal - + cross - + diamond - + triangle hirukia - + slash - + xcircle - + do do - + re re - + mi mi - + fa fa - + sol - + la la - + ti si - + alt. brevis - + Select Hautatu - + Dot1 - + Dot2 - + Dot3 - + Hook - + Stem - + Beam @@ -5002,7 +5056,7 @@ spatium unit InspectorRest - + Small @@ -5025,8 +5079,8 @@ spatium unit - - + + sp spatium unit ---------- @@ -5034,19 +5088,19 @@ spatium unit - + Leading space: - - + + reset value - - + + ... ... @@ -5069,12 +5123,20 @@ spatium unit - + sp spatium unit + + InspectorTimeSig + + + Show Courtesy Time Signature + + + InspectorVBox @@ -5083,14 +5145,14 @@ spatium unit - + Top Gap: - - - + + + sp spatium unit ---------- @@ -5110,20 +5172,20 @@ spatium unit - - - + + + reset value - - - + + + ... ... @@ -5133,30 +5195,30 @@ spatium unit - - - - + + + + mm mm - + Top Margin: - + Left Margin: - + Bottom Gap: - + Height: @@ -5354,50 +5416,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 (*) @@ -5760,14 +5822,14 @@ failed: - - - - - - - - + + + + + + + + sp @@ -5807,110 +5869,110 @@ failed: Kolorea: - + diagonally - + Begin - - + + Text Testua - - + + ... ... - - + + place: - - + + Below - - + + Left Ezkerra - - + + Above - - - + + + Symb. - - - + + + Ped (Pedal) - - - + + + x: x: - - - + + + y: y: - - + + Hook - - + + Up - - + + 90° 90° - - + + 45° 45° - + Continue - + End @@ -6385,7 +6447,7 @@ Would you like to locate %2 now? MenuNotes - + &Notes &Notak @@ -6437,7 +6499,7 @@ Would you like to locate %2 now? MuseScore - + MuseScore MuseScore @@ -6449,14 +6511,13 @@ before closing? itxi aurretik? - - + MuseScore: Load Score - + MuseScore: Load error @@ -6502,13 +6563,13 @@ itxi aurretik? - - + + All Files (*) - + Untitled Izengabea @@ -6523,273 +6584,293 @@ itxi aurretik? - + 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 @@ -6809,70 +6890,70 @@ itxi aurretik? - - + + 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 @@ -6882,247 +6963,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 @@ -7132,7 +7213,7 @@ itxi aurretik? - + Articulations && Ornaments @@ -7142,132 +7223,132 @@ itxi aurretik? Dinamikak - + Fingering - + Fingering %1 - + String number %1 - + Note Heads - + Tremolo Tremolo - + 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 - + &Frames - + &Text @@ -7277,260 +7358,247 @@ 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 - + + Find + + + + MuseScore: warning - + Cannot create tuplet: note value too short - + &Layout - + Continuous View - + &Style - + &Display - + &Help &Laguntza - + &About - + About &MusicXML - + Report a bug - - MuseScore handbook not found at: - - - - - - - -From the "Help" menu try choosing "Online Handbook" instead. - - - - - MuseScore: Open Help - MuseScore: Laguntza Ireki - - - + Open failed: unknown file extension or broken file - + System - + no score - + note entry mode - + edit mode - + play - + foto mode - + Go To: Hona Joan: - - Search - Bilatu - - - + Bar %1 Beat %2.%3 - + The previous session quit unexpectedly. Restore session? @@ -7564,72 +7632,51 @@ 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 - - - Error loading plugin -"%1" line %2: -%3 - - - - - Script -%1 -is incompatible with current interface - - - - - MuseScore is too old to run script -%1 - - - - + Rehearsal Mark - - + + Error opening lame library - + Could not open MP3 encoding library! - + Not a valid or supported MP3 encoding library! - - + + Encoding error @@ -7639,12 +7686,12 @@ is incompatible with current interface - + Unable to open target file for writing - + Error %1 returned from MP3 encoder @@ -7715,7 +7762,7 @@ is incompatible with current interface - + MuseScore: Create New Score Musescore: Partitura Berria Sortu @@ -7723,12 +7770,12 @@ is incompatible with current interface NewWizardPage1 - + Create New Score Partitura Berria Sortu - + This wizard creates a new score @@ -7736,12 +7783,12 @@ is incompatible with current interface NewWizardPage2 - + Create New Score Partitura Berria Sortu - + Define a set of instruments. Each instrument is represented by one or more staves @@ -7749,12 +7796,12 @@ is incompatible with current interface NewWizardPage3 - + Create New Score Partitura Berria Sortu - + Create Time Signature @@ -7762,22 +7809,22 @@ is incompatible with current interface NewWizardPage4 - + Create New Score Partitura Berria Sortu - + Select Template File: Aukeratu Txantiloi Fitxategia: - + MuseScore: Select Template - + MuseScore Template Files (*.mscz *.mscx) @@ -7785,27 +7832,27 @@ is incompatible with current interface NewWizardPage5 - + Create New Score Partitura Berria Sortu - + Select Key Signature and Tempo: - + Key Signature - + Tempo Tempo - + BPM: BPM: @@ -8040,27 +8087,27 @@ is incompatible with current interface PaletteBox - + Palettes - + Palette Operations - + Single Palette Mode - + Reset to factory defaults - + new Palette @@ -8068,42 +8115,42 @@ is incompatible with current interface PaletteBoxButton - + Palette Properties... - + Insert new Palette... - + Move Palette Up - + Move Palette Down - + Enable Editing - + Save Palette - + Load Palette - + Delete Palette @@ -8397,7 +8444,7 @@ is incompatible with current interface - + relative tempo @@ -8407,117 +8454,205 @@ is incompatible with current interface 100% - - Straight + + Vol. + short text for volume slider - - Swing + + Tmp. + short text for tempo slider - - Shuffle + + master volume + + + PluginCreator - - Vol. - short text for volume slider + + File Operations - - Tmp. - short text for tempo slider + + Edit Operations - - master volume + + MuseScore Plugin Editor + + + + + + + MuseScore + MuseScore + + + + + + Plugin "%1" has changes +save before closing? + + + + + untitled + + + + + Manual - PreferenceDialog + PluginCreatorBase - - Choose Notepaper + + MainWindow - - Choose Background Wallpaper + + Run + + + + + Stop + + + + + File + + + + + Help + + + + + Edit + + + + + New + Berria + + + + Open + + + + + Save + Gorde + + + + Manual - - load + + Undo + Desegin + + + + Redo + Berregin + + + + Quit + Irten + + + + PreferenceDialog + + + Choose Notepaper - - Plugin Path + + 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 @@ -8525,822 +8660,848 @@ is incompatible with current interface PrefsDialogBase - + MuseScore: Preferences MuseScore: Hobespenak - + MuseScore Preferences MuseScore Hobespenak - + General Orokorra - + Scores Directory: - + Styles Directory: - + Templates Directory: - + Plugins Directory: - + SoundFonts Directory: - + Images Directory: - + Program Start - + start empty hutsik hasi - + continue last session - + start with new score partitura berriarekin hasi - + start with score: - + Choose MIDI input interface - + Browse... - + show splash screen - + Language Hizkuntza - + Attention: changing the language requires a restart of MuseScore. Adi: hizkuntza aldatu eta gero MuseScore berrabiarazi behar da - + Paths - - Instrument List: - Instrumentuen Zerrenda: - - - + Windows - + Style - + Auto Save - + Save every - + minutes - + Canvas - + Background - - + + Wallpaper - - + + Color Kolorea - + Proximity for selecting elements - + disable antialiased drawing - + uncheck this to speed up drawing - + Draw Antialiased - + Text Testua - + Auto-correction - + Replace 1/2 with fraction character ½ - + Replace (C) with copyright symbol © (Only applies to text in the copyright section) (C) © sinboloarengatik ordezkatu (Copyright atalean bakarrik) - - + + Note Entry - + Play notes when editing - + ms - + Color notes outside of usable pitch range - + MIDI Remote Control - - - - - + + + + + is active - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ... ... - - - - - + + + + + record - + tie - + Score Partitura - + Show Play Panel - + Show Navigator - + Show MuseScore Connect - + OSC remote control - + Port Number: - + dark - - light - - - - + native - + Icon size: - + use native file dialogs - + Paper - + Miscellaneous - + Enable MIDI input - + Default Duration: - + enable MIDI remote control - + rewind - + toggle play - + whole note - + half note - + quarter note - + 8th note - + rest isilunea - + augmentation dot - + double augmentation dot - + play - + stop - + note entry - + 16th note - + 32nd note - + 64nd note - + Default Files - + Style: - + Style for Part: - + View - + Scale - + default scale for new score views - + I/O - + Ports - + Remember last connection(s) - + Use internal synthesizer - + JACK Audio Server - + Left-Port: - + Right-Port: - + ALSA Audio - + + Instrument List2: + + + + + Instrument List1: + + + + PulseAudio - - + + Device: - + default - - + + Sample Rate: - + 192000 192000 - + 96000 96000 - + 88200 88200 - - + + 48000 48000 - - + + 44100 44100 - + 32000 32000 - + 22050 22050 - + Fragments: - + Period Size: - + 4096 4096 - + 2048 2048 - + 1024 1024 - + 512 512 - + 256 256 - + 128 128 - + 64 64 - + Attention: Any changes on this page require a restart of MuseScore. Adi: Orri honetako aldaketak egin eta gero MuseScore berrabiarazi behar da. - + Import Inportatu - + Style Used for Import - + Built in style - + Use style file: - + Character Set used when import non-unicode strings. (For binary file import) - - + + MusicXML - + Import layout - + Import system and page breaks - + Shortest Note: - + 1/4 1/4 - + 1/8 1/8 - + 1/16 1/16 - + 1/32 1/32 - + 1/64 1/64 - + Export Esportatu - + Audio - + Export layout - + Export all system and page breaks - + Export manually added system and page breaks only - + Do not export system or page breaks - + Shortcuts - + Action - + + Shortcut - - + + Reset to Default - - + + Clear Garbitu - + Use JACK MIDI - + PortAudio - + API: - + Default SoundFont - + Character Set: - + PNG/SVG - + Resolution DPI - + Transparent background - - + + MIDI - + Expand repeats - + Define... - + Plugins - + + Name: + Izena: + + + + Path: + + + + + Version: + + + + + Load + + + + + Define Shortcut + + + + Update - + Automatic Update Check - + Check for new versions of MuseScore on startup @@ -9416,11 +9577,11 @@ is incompatible with current interface - - - - - + + + + + Quit @@ -9468,6 +9629,11 @@ failed: MuseScore: Write Album + + + Untitled + Izengabea + MuseScore: file not found: @@ -9479,7 +9645,7 @@ failed: - + MuseScore: Load Style failed: @@ -9496,52 +9662,26 @@ failed: - + MuseScore: load Style failed: - - MuseScore - MuseScore - - - - reading file < - - - - - > failed: - - - - - &Quit - - - - + MuseScore: Load languages failed: - + MuseScore: invalid command - - + + MuseScore: Load Palette failed: - - - - MuseScore: register script plugin: - - MuseScore: Import GuitarPro @@ -9551,7 +9691,7 @@ failed: RecordButton - + record @@ -9575,33 +9715,33 @@ failed: ScoreView - + Select Hautatu - + More... Gehiago... - + Staff Pentagrama - + Edit Drumset... - + Drumroll Editor... - + Pianoroll Editor... @@ -9795,117 +9935,117 @@ failed: - + Staff Properties... - - + + Object Debugger - + Split Staff... - + 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: Aukeratu konpas bat eta berriro saiatu - + Foto-Mode - + Resolution (%1 dpi)... - + transparent background - + Save As (print mode)... - + Save As (screenshot mode)... - + MuseScore: Set Output Resolution - + Set output resolution for png/svg - + MuseScore: Save As MuseScore: Honela Gorde - + cannot determine file type @@ -9946,92 +10086,97 @@ Aukeratu konpas bat eta berriro saiatu - + Segment - + Ticks - - Tick: - - - - + Bar - + Beat - + Clef Segment - + Key Signature - + Time Signature - + Begin Repeat - + Chord/Rest Akordea/Isilunea - + Breath Segment - + End Bar Line - + Time Signature Announce - + SpannerFor: - + SpannerBack: - + Annotations: - + Lyrics: - + + tick: + + + + + rTick: + + + + Segment Type: @@ -10224,22 +10369,23 @@ Sequencer will be disabled. SlurPropertyBase - Volta Properties - Volta Propietateak - - Slur Properties - solid + Solid - dotted + Dotted + + + + + Dashed @@ -10762,7 +10908,7 @@ altera - + MuseScore Startup Dialog @@ -11058,13 +11204,13 @@ altera Testua - + Text: do not translate Testua: - + Offset: do not translate @@ -11102,7 +11248,12 @@ altera - + + layoutToParentWidth + + + + TextStyle: do not translate @@ -11343,7 +11494,6 @@ altera - Color: Kolorea: @@ -11353,159 +11503,170 @@ altera testuaren kolorea - + System Flag - + Offset - + X: coordinate X: - + horizontal offset to reference point - + 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 - + enable text frame - + Frame - + draw circled frame - + Circle - + draw boxed frame - + Box - + Width: Zabalera: - + frame line width - - + + mm mm - + Margin: Marjina: - + frame inner margin - + Round: - + corner round - + + Foreground Color: + + + + + frame color + + + Background Color: + + TextStyleDialog @@ -11761,32 +11922,74 @@ please choose a different name: - + / / - + + + 1 + 1 + + + + + 2 + 2 + + + + + 4 + 4 + + + + + 8 + 8 + + + + + 16 + 16 + + + + + 32 + 32 + + + + + 64 + 64 + + + Pickup Measure - + Time Signature - + Enter Number of Measures: Sartu Konpas Kopurua: - + Measures: Konpasak: - + <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:9pt; font-weight:400; font-style:normal;"> @@ -12327,21 +12530,16 @@ p, li { white-space: pre-wrap; } - + round bracket action - - - Local handbook - - - Local &Handbook... + Local handbook @@ -12350,7 +12548,7 @@ p, li { white-space: pre-wrap; } - + File open Fitxategia ireki @@ -12360,7 +12558,7 @@ p, li { white-space: pre-wrap; } - + File save Fitxategia gorde @@ -12370,7 +12568,7 @@ p, li { white-space: pre-wrap; } Partitura fitxategian gorde - + File save as @@ -12380,12 +12578,12 @@ p, li { white-space: pre-wrap; } - + File save a copy - + Save a Copy... Kopia bat Gorde @@ -12400,12 +12598,12 @@ p, li { white-space: pre-wrap; } - + File reload - + Reload Birkargatu @@ -12415,7 +12613,7 @@ p, li { white-space: pre-wrap; } - + File close Fitxategia itxi @@ -12430,7 +12628,7 @@ p, li { white-space: pre-wrap; } Partitura berria sortu - + Print Inprimatu @@ -12441,6 +12639,7 @@ p, li { white-space: pre-wrap; } + Undo Desegin @@ -12451,6 +12650,7 @@ p, li { white-space: pre-wrap; } + Redo Berregin @@ -12465,45 +12665,43 @@ p, li { white-space: pre-wrap; } Moztu - + Copy Kopiatu - + Paste Itsatsi - - + Show instruments dialog - - + Note input mode - + + Note Input - - + Enter unison above - + Export Parts - + Export Parts... @@ -12513,2689 +12711,2102 @@ p, li { white-space: pre-wrap; } - + 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 - - + Enter seventh above - + Seventh Above - - + 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 - - More stretch - - - - + 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 - - Flip Direction - - - - - + Pitch up - + Up - + Pitch up octave - + Up Octave - + Pitch up by an octave - - + Select Section - - 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 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 - - &Load Style... - - - - - &Save Style... - - - - - - Save style as default - - - - - Save Style As &Default... - - - - - Select A&ll - - - - + &Transpose... - - - Violin clef - - - - + Violin Clef - - - Bass clef - - - - + Bass Clef - - + Display in concert pitch - - &Concert Pitch - - - - - Repeat Last Command - - - - + next syllable - + previous syllable - + toggle visibility - + set visible - + set unvisible - - - Toggle system break - - - - - - Toggle page break - - - - - - Toggle section break - - - - - - Edit element - - - - - &Reset + + Show Unprintable - - De&bugger + + Show Page Margins - - Reset &Stretch + + Manage parts - - Show Unprintable + + Show inspector - - - - Show Page Margins + + Reset measure stretch - - &Search + + Reset user settings - - &General... + + Note entry: whole rest - - &Text... + + Whole rest - - &Chords... + + Note entry: half rest - - Parts + + Half rest - - Par&ts... + + Note entry: quarter rest - - Manage parts + + Quarter rest - - Additional &Media... + + Note entry: 8th rest - - &Page Settings... + + 8th rest - - &Album... + + Tempo Marking... - - Show Inspector + + Tempo Marking - - Show inspector - + + Text + Testua - - - Reset measure stretch + + Add Frame Text - - - Reset user settings + + Load Style... - - - Show debugger + + Save Style... - - - Show invisible + + Save Style As Default... - - - Show unprintable + + Select All - - - Show frames + + Concert Pitch - - - Enable script debugger + + Info... - - Note entry: whole rest + + Reset - - - Whole rest + + Debugger - - Note entry: half rest + + Reset Stretch - - - Half rest + + Insert Special Characters - - Note entry: quarter rest + + Backspace - - - Quarter rest + + Find - - Note entry: 8th rest + + Mirror note head - - - 8th rest + + General... - - - - Backspace + + Edit general style - - - - Mirror note head + + Text... - - - Edit general style + + Chords... - - - + Double duration - - - + Half duration - - + Follow song - - + Display documents side by side - - + Display documents stacked - - Show score image + + Show OMR image - - - Show OMR image + + Enharmonic up - - - - Enharmonic up + + Parts... - - - + Enharmonic down - - - + Create new revision - - - + Toggle foto mode - - Full screen - - - - - F&ull Screen - - - - - F&ull screen - - - - - - + Enable horizontal raster - - - + Enable vertical raster - - - + Configure raster - - Re-pitch mode - - - - + 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 - - - up+shift+ctrl - - - - - + Pitch down - + Down - + Pitch down octave - + Down octave - + Pitch down by an octave - + Down Note in Chord - - + + Go to lower pitched note in chord - - - &Open... - - - - - &Save - - - - - Save &As... - - - - - &Close - - - - - File new - - - &New... - - - - - &Print... - - - - - &Undo - - - - - &Redo - - - - - Cu&t - - - - - &Copy - - - - - &Paste + File new - - + Diatonic pitch down - + Diatonic down - - + Go to bottom note in chord - + Bottom Note in Chord - + + Move down - - - down+shift+ctrl - - - - - - - - + + Previous chord - - Previous Chord - - - - - - - - + + Previous measure Aurreko konpasa - - Previous Measure - Aurreko konpasa - - - - - - - + + Next chord - - Next Chord - - - - - - - - + + Next measure Hurrengo konpasa - - Next Measure - Hurrengo Konpasa - - - - - left+shift - - - - - - left+ctrl - - - - - - right+shift - - - - - - right+ctrl+shift - - - - - - shift+home - - - - - - shift+end - - - - - - ctrl+shift+home - - - - - - ctrl+shift+end - - - - - + + Delete Ezabatu - + Delete contents of the selected measures - + Timewise Delete - + Delete element and duration - - - Delete selected measures - Aukeratutako akordeak ezabatu - - - + Delete Selected Measures - + Append measures Konpasak erantsi - + Append Measures... Konpasak Erantsi... - + Insert measures Konpasak txertatu - + Insert Measures... Konpasak Txertatu... - - - - Insert Horizontal Frame + + Local Handbook... - - - - Insert Vertical Frame + + Open... - - Append Horizontal Frame - + + Save + Gorde - - Append Vertical Frame + + Save As... - - - Duplet + + Export... - - - Triplet - + + Close + Itxi - - - Quadruplet + + New... - - - Quintuplet + + Print... - - - Sextuplet + + Instruments... - - - Septuplet + + + Add More Stretch - - - Octuplet + + Add Less Stretch - - - Nonuplet + + + Insert Horizontal Frame - - Other... + + + Insert Vertical Frame - - - Longa + + Append Horizontal Frame - - - Flat - Bemola + + Append Vertical Frame + - - - Enable sound while editing + + Duplet - - - - Palette + + Triplet - - Play Panel + + Quadruplet - - - - Navigator + + Quintuplet - - - - Mixer + + Sextuplet - - Transport + + Septuplet - - Status Bar + + Octuplet - - - - Quit - Irten + + Nonuplet + - - Zoom Canvas + + Other... - - - - Lyrics + + + Longa - - Tempo... - Tempo... + + + Flat + Bemola + + + + + Enable sound while editing + - - - Tempo - Tempo + + Palette + - - Save Selection + + Play Panel - - Save Selection... + + Navigator - - Save current selection as new score + + Mixer - - Export score + + Transport - - &Export... + + Status Bar - - &Instruments... - + + Quit + Irten - - &Note Input + + Lyrics - - - Respell pitches + + Save Selection - - &Respell Pitches + + Save Selection... - - Add &More Stretch + + Save current selection as new score - - Add &Less Stretch + + Export score - - Reset &Beam Mode + + 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 - - - - + Append One Measure - - Insert one measure - - - - + Insert One Measure - - - Insert horizontal frame - - - - - Insert text frame - - - - - + + Insert Text Frame - - Append text frame - - - - + Append Text Frame - - Insert fret diagram frame - - - - - + + Insert Fret Diagram Frame - - - Insert vertical frame - - - - - Append horizontal frame - - - - - Append vertical 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, Slower - - - - - + Feathered beam, faster - - Feathered Beam, Faster + + Transport toolbar - - - Play panel + + Note input toolbar - - Transport toolbar + + Zoom canvas - - Note input toolbar + + Full Screen - - - Status bar + + Layers... - - - Zoom canvas + + MuseScore Connect - - - - MuseScore Connect + + Plugin Creator - + Inspector - + Show OMR Panel - + OmrPanel - - Show OMR PAnel - - - - - metronome - - - - + 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 - - Frame Text - - - - + 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 - - - Select all - Dena Hautatu - - - - + Transpose Transposizioa egin - - + Exchange Voice 1-2 1-2 Ahotsak Trukatu - - Exchange voice 1-2 - - - - - - Exchange voice 1-3 - - - - + Exchange Voice 1-3 1-3 Ahotsak Trukatu - - - Exchange voice 1-4 - - - - + Exchange Voice 1-4 1-4 Ahotsak Trukatu - - - Exchange voice 2-3 - - - - + Exchange Voice 2-3 2-3 Ahotsak Trukatu - - - Exchange voice 2-4 - - - - + Exchange Voice 2-4 2-4 Ahotsak Trukatu - - - Exchange voice 3-4 - - - - + Exchange Voice 3-4 3-4 Ahotsak Trukatu - - + Repeat last command - - + Edit score info - - &Info... - - - - + Toggle System Break - + Toggle Page Break - + Toggle Section Break - + Edit Element - + Show Invisible - + Show Frames - - - Insert special characters - - - - + Insert Special Characters... - - Enable Script Debugger - - - - - - Search - Bilatu - - - - Zoom in - - - - + Zoom In - - Zoom out - - - - + 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 - - Follow Song - - - - + Documents Side by Side - + Documents Stacked - - + Layers - - &Layers... - - - - - - + next score - - - + previous score @@ -15203,12 +14814,12 @@ p, li { white-space: pre-wrap; } articulation - + Bend - + Tremolo Bar @@ -15216,7 +14827,7 @@ p, li { white-space: pre-wrap; } barlines - + Barlines @@ -15224,45 +14835,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 @@ -15271,7 +14882,7 @@ p, li { white-space: pre-wrap; } images_directory - + Images @@ -15279,100 +14890,100 @@ 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 - + Text line - + Line @@ -15461,7 +15072,7 @@ p, li { white-space: pre-wrap; } plugins_directory - + Plugins @@ -15469,37 +15080,37 @@ p, li { white-space: pre-wrap; } preferences - + Every day Inoiz ez - + Every 3 days 3 egunean behin - + Every week Astero - + Every 2 weeks 2 astean behin - + Every month Hilabetero - + Every 2 months 2 hilabetean behin - + Never Inoiz ez @@ -15507,7 +15118,7 @@ p, li { white-space: pre-wrap; } scores_directory - + Scores @@ -15515,7 +15126,7 @@ p, li { white-space: pre-wrap; } soundfonts_directory - + Soundfonts @@ -15523,7 +15134,7 @@ p, li { white-space: pre-wrap; } styles_directory - + Styles @@ -15531,7 +15142,7 @@ p, li { white-space: pre-wrap; } templates_directory - + Templates diff --git a/share/locale/mscore_fa.ts b/share/locale/mscore_fa.ts index 45fa621f6c6d..03c3d5a2cb4a 100644 --- a/share/locale/mscore_fa.ts +++ b/share/locale/mscore_fa.ts @@ -134,10 +134,6 @@ p, li { white-space: pre-wrap; } Remove Score - - score list - - move current score down in list @@ -158,18 +154,6 @@ p, li { white-space: pre-wrap; } Add Score - - path to new score you want to add - - - - open file manager - - - - ... - - create new album @@ -202,6 +186,18 @@ p, li { white-space: pre-wrap; } Join Scores + + Load + Load + + + MuseScore: Add Score + + + + MuseScore: Load Album + + ArticulationBase @@ -1159,15 +1155,15 @@ spatium unit small - showCourtesyClef + Hide courtesy clef - Hide courtesy clef + Show courtesy clef - Show courtesy clef + showCourtesy @@ -1192,14 +1188,14 @@ spatium unit Drum Tools - - Drumset - - Drums Drums + + Edit Drumset + + DrumrollEditor @@ -2777,18 +2773,10 @@ spatium unit Time sig. left margin Time sig. left margin - - Clef-key distance - Clef-key distance - Clef-barline distance Clef-bar line distance - - Begin repeat left margin - Begin repeat left margin - Show repeat bar tips ("winged" repeats) Show repeat bar tips ("winged" repeats) @@ -3185,6 +3173,10 @@ p, li { white-space: pre-wrap; } Max. System distance + + Clef/Key right margin + + EditTempoBase @@ -3562,6 +3554,28 @@ spatium unit Down Down + + Offset X: + + + + sp + spatium unit +---------- +spatium unit + sp + + + Offset Y: + + + + + InspectorClef + + Show Courtesy Clef + + InspectorElement @@ -3701,6 +3715,36 @@ spatium unit % + + InspectorKeySig + + Show Courtesy Time Signature + + + + Show Naturals + + + + + InspectorLasso + + Form + Form + + + Lasso + + + + Position: + + + + Size + + + InspectorNote @@ -3945,6 +3989,13 @@ spatium unit sp + + InspectorTimeSig + + Show Courtesy Time Signature + + + InspectorVBox @@ -5143,10 +5194,6 @@ Would you like to locate %2 now? &About &About - - MuseScore: Open Help - MuseScore: Open Help - note entry mode note entry mode @@ -5212,28 +5259,10 @@ before closing? End-Start Repeat End-Start Repeat - - Search - Search - Go To: Go To: - - MuseScore handbook not found at: - - MuseScore handbook not found at: - - - - - -From the "Help" menu try choosing "Online Handbook" instead. - - -From the "Help" menu try choosing "Online Handbook" instead. - Grace Notes Grace Notes @@ -5328,27 +5357,10 @@ Restore session? Varied coda Varied coda - - Script -%1 -is incompatible with current interface - - - - MuseScore is too old to run script -%1 - - Bar %1 Beat %2.%3 - - Error loading plugin -"%1" line %2: -%3 - - MuseScore: Load error @@ -5958,6 +5970,30 @@ please choose a different name: Report a bug + + MuseScore: Load Plugin + + + + MuseScore Plugin (*.qml);;All Files (*) + + + + MuseScore: Save Plugin + + + + MuseScore Plugin File (*.qml) + + + + &Plugins + + + + Find + + MyWebView @@ -6562,18 +6598,6 @@ please choose a different name: 100% 100% - - Straight - Straight - - - Swing - Swing - - - Shuffle - Shuffle - master volume master volume @@ -6589,6 +6613,93 @@ please choose a different name: + + PluginCreator + + File Operations + File Operations + + + Edit Operations + + + + MuseScore Plugin Editor + + + + MuseScore + MuseScore + + + Plugin "%1" has changes +save before closing? + + + + untitled + + + + Manual + + + + + PluginCreatorBase + + MainWindow + + + + Run + + + + Stop + + + + File + + + + Help + + + + Edit + + + + New + New + + + Open + + + + Save + Save + + + Manual + + + + Undo + + + + Redo + + + + Quit + Quit + + PreferenceDialog @@ -6623,14 +6734,6 @@ please choose a different name: Choose Default Style for Parts - - load - - - - Plugin Path - - Choose Scores Directory @@ -6694,10 +6797,6 @@ please choose a different name: Paths Paths - - Instrument List: - Instrument List: - Windows Windows @@ -6998,10 +7097,6 @@ please choose a different name: dark - - light - - use native file dialogs @@ -7270,6 +7365,34 @@ please choose a different name: Character Set: + + Instrument List2: + + + + Instrument List1: + + + + Name: + Name: + + + Path: + + + + Version: + + + + Load + Load + + + Define Shortcut + + Properties @@ -7323,14 +7446,6 @@ please choose a different name: MuseScore: invalid command MuseScore: invalid command - - MuseScore - MuseScore - - - reading file < - reading file < - MuseScore: Load Style failed: MuseScore: Load Style failed: @@ -7351,10 +7466,6 @@ please choose a different name: MuseScore: Load languages failed: MuseScore: Load languages failed: - - MuseScore: register script plugin: - - MuseScore: Import GuitarPro @@ -7410,17 +7521,13 @@ failed: MuseScore: Save File MuseScore: Save File - - > failed: - - Load failed: - &Quit - + Untitled + Untitled @@ -7782,10 +7889,6 @@ cannot split tuplet Ticks - - Tick: - Tick: - Bar @@ -7794,6 +7897,14 @@ cannot split tuplet Beat + + tick: + + + + rTick: + + SelectDialog @@ -7948,21 +8059,21 @@ Sequencer will be disabled. SlurPropertyBase - - Volta Properties - Volta Properties - Slur Properties Slur Properties - solid - solid + Solid + + + + Dotted + - dotted - dotted + Dashed + Dashed @@ -8640,6 +8751,10 @@ altera styled + + layoutToParentWidth + + TextEditor @@ -8955,6 +9070,14 @@ altera Text Text + + Foreground Color: + + + + Background Color: + + TextStyleDialog @@ -9187,6 +9310,34 @@ p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'Sans Serif'; font-size:9pt; 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;">Hint: you can also add or remove bars after creation of the score.</p></body></html> + + 1 + 1 + + + 2 + 2 + + + 4 + 4 + + + 8 + 8 + + + 16 + 16 + + + 32 + 32 + + + 64 + 64 + TransposeDialogBase @@ -9622,10 +9773,6 @@ p, li { white-space: pre-wrap; } action - - Local &Handbook... - - Save a Copy... @@ -9894,46 +10041,6 @@ p, li { white-space: pre-wrap; } Reset Beam Mode - - up+shift+ctrl - - - - down+shift+ctrl - - - - left+ctrl - - - - left+shift - - - - right+shift - - - - right+ctrl+shift - - - - shift+home - - - - shift+end - - - - ctrl+shift+home - - - - ctrl+shift+end - - Delete Selected Measures @@ -10034,22 +10141,10 @@ p, li { white-space: pre-wrap; } Quit Quit - - Zoom Canvas - Zoom Canvas - Lyrics Lyrics - - Tempo... - - - - Tempo - Tempo - Metronome Metronome @@ -10062,10 +10157,6 @@ p, li { white-space: pre-wrap; } Staff Text Stave Text - - Frame Text - - Title Title @@ -10158,10 +10249,6 @@ p, li { white-space: pre-wrap; } Show Frames - - Search - Search - Zoom In @@ -10194,10 +10281,6 @@ p, li { white-space: pre-wrap; } Repeat selection - - Follow Song - - Local handbook @@ -10334,10 +10417,6 @@ p, li { white-space: pre-wrap; } Trill - - More stretch - - Less stretch @@ -10350,10 +10429,6 @@ p, li { white-space: pre-wrap; } Flip direction - - Flip Direction - - Pitch up @@ -10438,38 +10513,18 @@ p, li { white-space: pre-wrap; } Previous chord - - Previous Chord - - Previous measure - - Previous Measure - - Next chord - - Next Chord - - Next measure - - Next Measure - - - - Delete selected measures - - Append measures @@ -10510,10 +10565,6 @@ p, li { white-space: pre-wrap; } Save style - - Select all - - Delete Delete @@ -10530,54 +10581,10 @@ p, li { white-space: pre-wrap; } Delete element and duration - - &Open... - - - - &Save - - - - Save &As... - - - - &Close - - File new - - &New... - - - - &Print... - - - - &Undo - - - - &Redo - - - - Cu&t - - - - &Copy - - - - &Paste - - Insert note A @@ -10734,62 +10741,26 @@ p, li { white-space: pre-wrap; } Timewise delete - - Append one measure - - Append One Measure - - Insert one measure - - Insert One Measure - - Insert horizontal frame - - - - Insert text frame - - Insert Text Frame - - Append text frame - - Append Text Frame - - Insert fret diagram frame - - Insert Fret Diagram Frame - - Insert vertical frame - - - - Append horizontal frame - - - - Append vertical frame - - Other tuplets @@ -10966,22 +10937,10 @@ p, li { white-space: pre-wrap; } Feathered beam, slower - - Feathered Beam, Slower - - Feathered beam, faster - - Feathered Beam, Faster - - - - Play panel - - Transport toolbar @@ -10990,10 +10949,6 @@ p, li { white-space: pre-wrap; } Note input toolbar - - Status bar - - Zoom canvas @@ -11006,10 +10961,6 @@ p, li { white-space: pre-wrap; } Add staff text - - Add text - - Add title text @@ -11058,82 +11009,26 @@ p, li { white-space: pre-wrap; } Player seek to end - - Select A&ll - - &Transpose... - - Violin clef - - Violin Clef - - Bass 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 - - Toggle Section Break - - Edit element - - Show inspector @@ -11142,18 +11037,6 @@ p, li { white-space: pre-wrap; } Reset measure stretch - - Show invisible - - - - Show frames - - - - Enable script debugger - - Note entry: whole rest @@ -11190,14 +11073,6 @@ p, li { white-space: pre-wrap; } Backspace - - Zoom in - - - - Zoom out - - Mirror note head @@ -11234,10 +11109,6 @@ p, li { white-space: pre-wrap; } Display documents stacked - - Show score image - - Show OMR image @@ -11258,18 +11129,6 @@ p, li { white-space: pre-wrap; } Toggle foto mode - - Full screen - - - - F&ull Screen - - - - F&ull screen - - Enable horizontal raster @@ -11282,10 +11141,6 @@ p, li { white-space: pre-wrap; } Configure raster - - Re-pitch mode - - Re-Pitch Mode @@ -11314,10 +11169,6 @@ p, li { white-space: pre-wrap; } 128th note - - Show unprintable - - Split Measure @@ -11354,18 +11205,10 @@ p, li { white-space: pre-wrap; } Reset user settings - - Show debugger - - Piano Keyboard - - Show Inspector - - Save Selection @@ -11383,303 +11226,323 @@ p, li { white-space: pre-wrap; } - &Export... + Respell pitches + + + + Grace: 8nd after - &Instruments... + Pan score while playing on/off - &Note Input + Pan - Respell pitches + Show Unprintable - &Respell Pitches + Show Page Margins - Add &More Stretch + Manage parts - Add &Less Stretch + Inspector - Reset &Beam Mode + Show OMR Panel - Grace: 8nd after + OmrPanel - Pan score while playing on/off + toggle metronome - Pan + Figured Bass - &Load Style... + Next Score - &Save Style... + Previous Score - Save style as default + Transpose Up - Save Style As &Default... + Transpose Down - &Concert Pitch + Show master palette - &Reset + Master Palette... - De&bugger + Insert Measure - Reset &Stretch + Toggle View Mode - Show Unprintable + Export Parts - Show Page Margins + Export Parts... - &Search + Save a copy of the score's parts in various formats - &General... + Add marcato - &Text... + Marcato - &Chords... + Select Section - Parts + Note duration: double whole - Par&ts... + Double whole note - Manage parts + Whole note - Additional &Media... + Half note - &Page Settings... + Quarter note - &Album... + 8th note - Inspector + 16th note - Show OMR Panel + 32nd note - OmrPanel + 64th note - Show OMR PAnel + Edit score info - metronome + Insert Special Characters... - toggle metronome + Layers - Figured Bass + MuseScore Connect - Next Score + next syllable - Previous Score + previous syllable - Transpose Up + toggle visibility - Transpose Down + set visible - Show master palette + set unvisible - Master Palette... + Local Handbook... - Insert Measure + Open... - Toggle View Mode + Save + Save + + + Save As... - Export Parts + Export... - Export Parts... + Close + Close + + + New... - Save a copy of the score's parts in various formats + Print... - Add marcato + Instruments... - Marcato + Add More Stretch - Select Section + Add Less Stretch - select section + Tempo Marking... - Note duration: double whole + Tempo Marking - Double whole note + Text + Text + + + Add Frame Text - Whole note + Load Style... - Half note + Save Style... - Quarter note + Save Style As Default... - 8th note + Select All - 16th note + Concert Pitch + Concert Pitch + + + Info... - 32nd note + Reset - 64th note + Debugger - Edit score info + Reset Stretch - &Info... + Insert Special Characters - Insert special characters + Find - Insert Special Characters... + General... - Enable Script Debugger + Text... - Layers + Chords... - &Layers... + Parts... - MuseScore Connect + Full Screen - next syllable + Additional Media... - previous syllable + Page Settings... - toggle visibility + Album... - set visible + Layers... - set unvisible + Plugin Creator diff --git a/share/locale/mscore_fi.ts b/share/locale/mscore_fi.ts index 3df158975f7c..de5455c86d4c 100644 --- a/share/locale/mscore_fi.ts +++ b/share/locale/mscore_fi.ts @@ -143,10 +143,6 @@ p, li { white-space: pre-wrap; } Remove Score - - score list - - move current score down in list @@ -167,18 +163,6 @@ p, li { white-space: pre-wrap; } Add Score - - path to new score you want to add - - - - open file manager - - - - ... - ... - create new album @@ -211,6 +195,18 @@ p, li { white-space: pre-wrap; } Join Scores + + Load + Lataa + + + MuseScore: Add Score + + + + MuseScore: Load Album + + ArticulationBase @@ -1168,15 +1164,15 @@ spatium unit pieni - showCourtesyClef + Hide courtesy clef - Hide courtesy clef + Show courtesy clef - Show courtesy clef + showCourtesy @@ -1201,14 +1197,14 @@ spatium unit Drum Tools - - Drumset - - Drums Rummut + + Edit Drumset + + DrumrollEditor @@ -2786,18 +2782,10 @@ spatium unit Time sig. left margin tahtilajin vasen marginaali - - Clef-key distance - etäisyys nuottiavaimesta - Clef-barline distance etäisyys tahtiviivasta - - Begin repeat left margin - kertausmerkin vasen marginaali - Show repeat bar tips ("winged" repeats) Näytä kertomerkin vinkit ("winged") @@ -3194,6 +3182,10 @@ p, li { white-space: pre-wrap; } Max. System distance + + Clef/Key right margin + + EditTempoBase @@ -3571,6 +3563,28 @@ spatium unit Down Alas + + Offset X: + + + + sp + spatium unit +---------- +spatium unit + sp + + + Offset Y: + + + + + InspectorClef + + Show Courtesy Clef + + InspectorElement @@ -3710,6 +3724,36 @@ spatium unit % + + InspectorKeySig + + Show Courtesy Time Signature + + + + Show Naturals + + + + + InspectorLasso + + Form + Muoto + + + Lasso + + + + Position: + + + + Size + + + InspectorNote @@ -3954,6 +3998,13 @@ spatium unit sp + + InspectorTimeSig + + Show Courtesy Time Signature + + + InspectorVBox @@ -5152,10 +5203,6 @@ Would you like to locate %2 now? &About &Tietoja - - MuseScore: Open Help - MuseScore: Avaa ohje - note entry mode Nuottien syöttötila @@ -5222,28 +5269,10 @@ ennen sulkemista? End-Start Repeat Kertauksen aloitus ja lopetus - - Search - Hae - Go To: Siirry: - - MuseScore handbook not found at: - - MuseScore käsikirjaa ei löydetty: - - - - - -From the "Help" menu try choosing "Online Handbook" instead. - - -Yritä sen sijaan valitsemalla "Ohje"-valikosta "Online-käsikirja". - Grace Notes Korusävelet @@ -5338,30 +5367,10 @@ Restore session? Varied coda Toisenlainen coda - - Script -%1 -is incompatible with current interface - - - - MuseScore is too old to run script -%1 - MuseScore on liian vanha suorittamaan scriptiä -%1 - Bar %1 Beat %2.%3 - - Error loading plugin -"%1" line %2: -%3 - Virhe ladattaessa pluginia -"%1" rivi %2: -%3 - MuseScore: Load error @@ -5971,6 +5980,30 @@ please choose a different name: Report a bug + + MuseScore: Load Plugin + + + + MuseScore Plugin (*.qml);;All Files (*) + + + + MuseScore: Save Plugin + + + + MuseScore Plugin File (*.qml) + + + + &Plugins + + + + Find + + MyWebView @@ -6575,18 +6608,6 @@ please choose a different name: 100% 100% - - Straight - Suora - - - Swing - Swing - - - Shuffle - Sekoitus - master volume päävoimakkuus @@ -6602,6 +6623,93 @@ please choose a different name: + + PluginCreator + + File Operations + Tiedosto-operaaatiot + + + Edit Operations + + + + MuseScore Plugin Editor + + + + MuseScore + MuseScore + + + Plugin "%1" has changes +save before closing? + + + + untitled + + + + Manual + + + + + PluginCreatorBase + + MainWindow + + + + Run + + + + Stop + + + + File + + + + Help + + + + Edit + + + + New + Uusi + + + Open + + + + Save + Tallenna + + + Manual + + + + Undo + + + + Redo + + + + Quit + Lopeta + + PreferenceDialog @@ -6636,14 +6744,6 @@ please choose a different name: Choose Default Style for Parts - - load - - - - Plugin Path - - Choose Scores Directory @@ -6707,10 +6807,6 @@ please choose a different name: Paths Polut - - Instrument List: - Instrumenttiluettelo: - Windows Ikkuna @@ -7011,10 +7107,6 @@ please choose a different name: dark - - light - - use native file dialogs @@ -7283,6 +7375,34 @@ please choose a different name: Character Set: + + Instrument List2: + + + + Instrument List1: + + + + Name: + + + + Path: + + + + Version: + + + + Load + Lataa + + + Define Shortcut + + Properties @@ -7336,14 +7456,6 @@ please choose a different name: MuseScore: invalid command MuseScore: Virheellinen komento - - MuseScore - MuseScore - - - reading file < - luetaan tiedostoa < - MuseScore: Load Style failed: MuseScore: Tyylin lataus epäonnistui: @@ -7364,10 +7476,6 @@ please choose a different name: MuseScore: Load languages failed: MuseScore: Kielten lataus epäonnistui: - - MuseScore: register script plugin: - MuseScore: Rekisteröi script-plugini: - MuseScore: Import GuitarPro @@ -7423,17 +7531,13 @@ epäonnistui: MuseScore: Save File MuseScore: Tallenna tiedosto - - > failed: - - Load failed: Lataaminen epäonnistui: - &Quit - + Untitled + Nimeämätön @@ -7798,10 +7902,6 @@ cannot split tuplet Ticks - - Tick: - Tick: - Bar @@ -7810,6 +7910,14 @@ cannot split tuplet Beat + + tick: + + + + rTick: + + SelectDialog @@ -7964,21 +8072,21 @@ Sequencer will be disabled. SlurPropertyBase - - Volta Properties - Maalin ominaisuudet - Slur Properties Kaaren ominaisuudet - solid - kiinteä + Solid + + + + Dotted + - dotted - pisteellinen + Dashed + Katkoviiva @@ -8656,6 +8764,10 @@ altera styled + + layoutToParentWidth + + TextEditor @@ -8971,6 +9083,14 @@ altera Text Teksti + + Foreground Color: + + + + Background Color: + + TextStyleDialog @@ -9203,6 +9323,34 @@ p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'Sans Serif'; font-size:9pt; 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;">Vihje: Voit myös lisätä tai poistaa tahteja partituurin luomiseen jälkeen .</p></body></html> + + 1 + 1 + + + 2 + 2 + + + 4 + 4 + + + 8 + 8 + + + 16 + 16 + + + 32 + 32 + + + 64 + 64 + TransposeDialogBase @@ -9638,10 +9786,6 @@ p, li { white-space: pre-wrap; } action - - Local &Handbook... - - Save a Copy... @@ -9910,46 +10054,6 @@ p, li { white-space: pre-wrap; } Reset Beam Mode Palauta palkkitila alkuperäisiksi - - up+shift+ctrl - - - - down+shift+ctrl - - - - left+ctrl - - - - left+shift - - - - right+shift - - - - right+ctrl+shift - - - - shift+home - - - - shift+end - - - - ctrl+shift+home - - - - ctrl+shift+end - - Delete Selected Measures @@ -10050,22 +10154,10 @@ p, li { white-space: pre-wrap; } Quit Lopeta - - Zoom Canvas - Zoomaus - Lyrics Lauluteksti - - Tempo... - - - - Tempo - Tempo - Metronome Metronomi @@ -10078,10 +10170,6 @@ p, li { white-space: pre-wrap; } Staff Text - - Frame Text - - Title Otsikko @@ -10174,10 +10262,6 @@ p, li { white-space: pre-wrap; } Show Frames Näytä kehykset - - Search - Hae - Zoom In @@ -10210,10 +10294,6 @@ p, li { white-space: pre-wrap; } Repeat selection - - Follow Song - - Local handbook @@ -10350,10 +10430,6 @@ p, li { white-space: pre-wrap; } Trill Trilli - - More stretch - - Less stretch @@ -10366,10 +10442,6 @@ p, li { white-space: pre-wrap; } Flip direction - - Flip Direction - - Pitch up @@ -10454,38 +10526,18 @@ p, li { white-space: pre-wrap; } Previous chord - - Previous Chord - - Previous measure - - Previous Measure - - Next chord - - Next Chord - - Next measure - - Next Measure - - - - Delete selected measures - - Append measures @@ -10526,10 +10578,6 @@ p, li { white-space: pre-wrap; } Save style - - Select all - Valitse kaikki - Delete Poista @@ -10546,54 +10594,10 @@ p, li { white-space: pre-wrap; } Delete element and duration Poista elementti ja kesto - - &Open... - - - - &Save - - - - Save &As... - - - - &Close - - File new - - &New... - - - - &Print... - - - - &Undo - - - - &Redo - - - - Cu&t - - - - &Copy - - - - &Paste - - Insert note A @@ -10750,62 +10754,26 @@ p, li { white-space: pre-wrap; } Timewise delete - - Append one measure - - Append One Measure - - Insert one measure - - Insert One Measure - - Insert horizontal frame - - - - Insert text frame - - Insert Text Frame - - Append text frame - - Append Text Frame - - Insert fret diagram frame - - Insert Fret Diagram Frame - - Insert vertical frame - - - - Append horizontal frame - - - - Append vertical frame - - Other tuplets @@ -10982,22 +10950,10 @@ p, li { white-space: pre-wrap; } Feathered beam, slower - - Feathered Beam, Slower - - Feathered beam, faster - - Feathered Beam, Faster - - - - Play panel - - Transport toolbar @@ -11006,10 +10962,6 @@ p, li { white-space: pre-wrap; } Note input toolbar - - Status bar - - Zoom canvas @@ -11022,10 +10974,6 @@ p, li { white-space: pre-wrap; } Add staff text - - Add text - - Add title text @@ -11074,82 +11022,26 @@ p, li { white-space: pre-wrap; } Player seek to end - - Select A&ll - - &Transpose... - - Violin clef - - Violin Clef - - Bass clef - Bassoavain - 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 - - Toggle Section Break - - Edit element - - Show inspector @@ -11158,18 +11050,6 @@ p, li { white-space: pre-wrap; } Reset measure stretch - - Show invisible - - - - Show frames - - - - Enable script debugger - - Note entry: whole rest @@ -11206,14 +11086,6 @@ p, li { white-space: pre-wrap; } Backspace - - Zoom in - - - - Zoom out - - Mirror note head @@ -11250,10 +11122,6 @@ p, li { white-space: pre-wrap; } Display documents stacked - - Show score image - - Show OMR image @@ -11274,18 +11142,6 @@ p, li { white-space: pre-wrap; } Toggle foto mode - - Full screen - - - - F&ull Screen - - - - F&ull screen - - Enable horizontal raster @@ -11298,10 +11154,6 @@ p, li { white-space: pre-wrap; } Configure raster - - Re-pitch mode - - Re-Pitch Mode @@ -11330,10 +11182,6 @@ p, li { white-space: pre-wrap; } 128th note - - Show unprintable - - Split Measure @@ -11370,18 +11218,10 @@ p, li { white-space: pre-wrap; } Reset user settings - - Show debugger - - Piano Keyboard - - Show Inspector - - Save Selection @@ -11399,303 +11239,323 @@ p, li { white-space: pre-wrap; } - &Export... + Respell pitches - &Instruments... + Grace: 8nd after - &Note Input + Pan score while playing on/off - Respell pitches + Pan + Pan + + + Show Unprintable - &Respell Pitches + Show Page Margins - Add &More Stretch + Manage parts - Add &Less Stretch + Inspector - Reset &Beam Mode + Show OMR Panel - Grace: 8nd after + OmrPanel - Pan score while playing on/off + toggle metronome - Pan - Pan + Figured Bass + - &Load Style... + Next Score - &Save Style... + Previous Score - Save style as default + Transpose Up - Save Style As &Default... + Transpose Down - &Concert Pitch + Show master palette - &Reset + Master Palette... - De&bugger + Insert Measure - Reset &Stretch + Toggle View Mode - Show Unprintable + Export Parts - Show Page Margins + Export Parts... - &Search + Save a copy of the score's parts in various formats - &General... + Add marcato - &Text... + Marcato - &Chords... + Select Section - Parts + Note duration: double whole - Par&ts... + Double whole note - Manage parts + Whole note - Additional &Media... + Half note - &Page Settings... + Quarter note - &Album... + 8th note - Inspector + 16th note - Show OMR Panel + 32nd note - OmrPanel + 64th note - Show OMR PAnel + Edit score info - metronome + Insert Special Characters... - toggle metronome + Layers - Figured Bass + MuseScore Connect - Next Score + next syllable - Previous Score + previous syllable - Transpose Up + toggle visibility - Transpose Down + set visible - Show master palette + set unvisible - Master Palette... + Local Handbook... - Insert Measure + Open... - Toggle View Mode + Save + Tallenna + + + Save As... - Export Parts + Export... - Export Parts... + Close + Sulje + + + New... - Save a copy of the score's parts in various formats + Print... - Add marcato + Instruments... - Marcato + Add More Stretch - Select Section + Add Less Stretch - select section + Tempo Marking... - Note duration: double whole + Tempo Marking - Double whole note + Text + Teksti + + + Add Frame Text - Whole note + Load Style... - Half note + Save Style... - Quarter note + Save Style As Default... - 8th note + Select All - 16th note + Concert Pitch + Soiva sävelkorkeus + + + Info... - 32nd note + Reset - 64th note + Debugger - Edit score info + Reset Stretch - &Info... + Insert Special Characters - Insert special characters + Find - Insert Special Characters... + General... - Enable Script Debugger + Text... - Layers + Chords... - &Layers... + Parts... - MuseScore Connect + Full Screen - next syllable + Additional Media... - previous syllable + Page Settings... - toggle visibility + Album... - set visible + Layers... - set unvisible + Plugin Creator diff --git a/share/locale/mscore_fo.ts b/share/locale/mscore_fo.ts index 45fa621f6c6d..03c3d5a2cb4a 100644 --- a/share/locale/mscore_fo.ts +++ b/share/locale/mscore_fo.ts @@ -134,10 +134,6 @@ p, li { white-space: pre-wrap; } Remove Score - - score list - - move current score down in list @@ -158,18 +154,6 @@ p, li { white-space: pre-wrap; } Add Score - - path to new score you want to add - - - - open file manager - - - - ... - - create new album @@ -202,6 +186,18 @@ p, li { white-space: pre-wrap; } Join Scores + + Load + Load + + + MuseScore: Add Score + + + + MuseScore: Load Album + + ArticulationBase @@ -1159,15 +1155,15 @@ spatium unit small - showCourtesyClef + Hide courtesy clef - Hide courtesy clef + Show courtesy clef - Show courtesy clef + showCourtesy @@ -1192,14 +1188,14 @@ spatium unit Drum Tools - - Drumset - - Drums Drums + + Edit Drumset + + DrumrollEditor @@ -2777,18 +2773,10 @@ spatium unit Time sig. left margin Time sig. left margin - - Clef-key distance - Clef-key distance - Clef-barline distance Clef-bar line distance - - Begin repeat left margin - Begin repeat left margin - Show repeat bar tips ("winged" repeats) Show repeat bar tips ("winged" repeats) @@ -3185,6 +3173,10 @@ p, li { white-space: pre-wrap; } Max. System distance + + Clef/Key right margin + + EditTempoBase @@ -3562,6 +3554,28 @@ spatium unit Down Down + + Offset X: + + + + sp + spatium unit +---------- +spatium unit + sp + + + Offset Y: + + + + + InspectorClef + + Show Courtesy Clef + + InspectorElement @@ -3701,6 +3715,36 @@ spatium unit % + + InspectorKeySig + + Show Courtesy Time Signature + + + + Show Naturals + + + + + InspectorLasso + + Form + Form + + + Lasso + + + + Position: + + + + Size + + + InspectorNote @@ -3945,6 +3989,13 @@ spatium unit sp + + InspectorTimeSig + + Show Courtesy Time Signature + + + InspectorVBox @@ -5143,10 +5194,6 @@ Would you like to locate %2 now? &About &About - - MuseScore: Open Help - MuseScore: Open Help - note entry mode note entry mode @@ -5212,28 +5259,10 @@ before closing? End-Start Repeat End-Start Repeat - - Search - Search - Go To: Go To: - - MuseScore handbook not found at: - - MuseScore handbook not found at: - - - - - -From the "Help" menu try choosing "Online Handbook" instead. - - -From the "Help" menu try choosing "Online Handbook" instead. - Grace Notes Grace Notes @@ -5328,27 +5357,10 @@ Restore session? Varied coda Varied coda - - Script -%1 -is incompatible with current interface - - - - MuseScore is too old to run script -%1 - - Bar %1 Beat %2.%3 - - Error loading plugin -"%1" line %2: -%3 - - MuseScore: Load error @@ -5958,6 +5970,30 @@ please choose a different name: Report a bug + + MuseScore: Load Plugin + + + + MuseScore Plugin (*.qml);;All Files (*) + + + + MuseScore: Save Plugin + + + + MuseScore Plugin File (*.qml) + + + + &Plugins + + + + Find + + MyWebView @@ -6562,18 +6598,6 @@ please choose a different name: 100% 100% - - Straight - Straight - - - Swing - Swing - - - Shuffle - Shuffle - master volume master volume @@ -6589,6 +6613,93 @@ please choose a different name: + + PluginCreator + + File Operations + File Operations + + + Edit Operations + + + + MuseScore Plugin Editor + + + + MuseScore + MuseScore + + + Plugin "%1" has changes +save before closing? + + + + untitled + + + + Manual + + + + + PluginCreatorBase + + MainWindow + + + + Run + + + + Stop + + + + File + + + + Help + + + + Edit + + + + New + New + + + Open + + + + Save + Save + + + Manual + + + + Undo + + + + Redo + + + + Quit + Quit + + PreferenceDialog @@ -6623,14 +6734,6 @@ please choose a different name: Choose Default Style for Parts - - load - - - - Plugin Path - - Choose Scores Directory @@ -6694,10 +6797,6 @@ please choose a different name: Paths Paths - - Instrument List: - Instrument List: - Windows Windows @@ -6998,10 +7097,6 @@ please choose a different name: dark - - light - - use native file dialogs @@ -7270,6 +7365,34 @@ please choose a different name: Character Set: + + Instrument List2: + + + + Instrument List1: + + + + Name: + Name: + + + Path: + + + + Version: + + + + Load + Load + + + Define Shortcut + + Properties @@ -7323,14 +7446,6 @@ please choose a different name: MuseScore: invalid command MuseScore: invalid command - - MuseScore - MuseScore - - - reading file < - reading file < - MuseScore: Load Style failed: MuseScore: Load Style failed: @@ -7351,10 +7466,6 @@ please choose a different name: MuseScore: Load languages failed: MuseScore: Load languages failed: - - MuseScore: register script plugin: - - MuseScore: Import GuitarPro @@ -7410,17 +7521,13 @@ failed: MuseScore: Save File MuseScore: Save File - - > failed: - - Load failed: - &Quit - + Untitled + Untitled @@ -7782,10 +7889,6 @@ cannot split tuplet Ticks - - Tick: - Tick: - Bar @@ -7794,6 +7897,14 @@ cannot split tuplet Beat + + tick: + + + + rTick: + + SelectDialog @@ -7948,21 +8059,21 @@ Sequencer will be disabled. SlurPropertyBase - - Volta Properties - Volta Properties - Slur Properties Slur Properties - solid - solid + Solid + + + + Dotted + - dotted - dotted + Dashed + Dashed @@ -8640,6 +8751,10 @@ altera styled + + layoutToParentWidth + + TextEditor @@ -8955,6 +9070,14 @@ altera Text Text + + Foreground Color: + + + + Background Color: + + TextStyleDialog @@ -9187,6 +9310,34 @@ p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'Sans Serif'; font-size:9pt; 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;">Hint: you can also add or remove bars after creation of the score.</p></body></html> + + 1 + 1 + + + 2 + 2 + + + 4 + 4 + + + 8 + 8 + + + 16 + 16 + + + 32 + 32 + + + 64 + 64 + TransposeDialogBase @@ -9622,10 +9773,6 @@ p, li { white-space: pre-wrap; } action - - Local &Handbook... - - Save a Copy... @@ -9894,46 +10041,6 @@ p, li { white-space: pre-wrap; } Reset Beam Mode - - up+shift+ctrl - - - - down+shift+ctrl - - - - left+ctrl - - - - left+shift - - - - right+shift - - - - right+ctrl+shift - - - - shift+home - - - - shift+end - - - - ctrl+shift+home - - - - ctrl+shift+end - - Delete Selected Measures @@ -10034,22 +10141,10 @@ p, li { white-space: pre-wrap; } Quit Quit - - Zoom Canvas - Zoom Canvas - Lyrics Lyrics - - Tempo... - - - - Tempo - Tempo - Metronome Metronome @@ -10062,10 +10157,6 @@ p, li { white-space: pre-wrap; } Staff Text Stave Text - - Frame Text - - Title Title @@ -10158,10 +10249,6 @@ p, li { white-space: pre-wrap; } Show Frames - - Search - Search - Zoom In @@ -10194,10 +10281,6 @@ p, li { white-space: pre-wrap; } Repeat selection - - Follow Song - - Local handbook @@ -10334,10 +10417,6 @@ p, li { white-space: pre-wrap; } Trill - - More stretch - - Less stretch @@ -10350,10 +10429,6 @@ p, li { white-space: pre-wrap; } Flip direction - - Flip Direction - - Pitch up @@ -10438,38 +10513,18 @@ p, li { white-space: pre-wrap; } Previous chord - - Previous Chord - - Previous measure - - Previous Measure - - Next chord - - Next Chord - - Next measure - - Next Measure - - - - Delete selected measures - - Append measures @@ -10510,10 +10565,6 @@ p, li { white-space: pre-wrap; } Save style - - Select all - - Delete Delete @@ -10530,54 +10581,10 @@ p, li { white-space: pre-wrap; } Delete element and duration - - &Open... - - - - &Save - - - - Save &As... - - - - &Close - - File new - - &New... - - - - &Print... - - - - &Undo - - - - &Redo - - - - Cu&t - - - - &Copy - - - - &Paste - - Insert note A @@ -10734,62 +10741,26 @@ p, li { white-space: pre-wrap; } Timewise delete - - Append one measure - - Append One Measure - - Insert one measure - - Insert One Measure - - Insert horizontal frame - - - - Insert text frame - - Insert Text Frame - - Append text frame - - Append Text Frame - - Insert fret diagram frame - - Insert Fret Diagram Frame - - Insert vertical frame - - - - Append horizontal frame - - - - Append vertical frame - - Other tuplets @@ -10966,22 +10937,10 @@ p, li { white-space: pre-wrap; } Feathered beam, slower - - Feathered Beam, Slower - - Feathered beam, faster - - Feathered Beam, Faster - - - - Play panel - - Transport toolbar @@ -10990,10 +10949,6 @@ p, li { white-space: pre-wrap; } Note input toolbar - - Status bar - - Zoom canvas @@ -11006,10 +10961,6 @@ p, li { white-space: pre-wrap; } Add staff text - - Add text - - Add title text @@ -11058,82 +11009,26 @@ p, li { white-space: pre-wrap; } Player seek to end - - Select A&ll - - &Transpose... - - Violin clef - - Violin Clef - - Bass 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 - - Toggle Section Break - - Edit element - - Show inspector @@ -11142,18 +11037,6 @@ p, li { white-space: pre-wrap; } Reset measure stretch - - Show invisible - - - - Show frames - - - - Enable script debugger - - Note entry: whole rest @@ -11190,14 +11073,6 @@ p, li { white-space: pre-wrap; } Backspace - - Zoom in - - - - Zoom out - - Mirror note head @@ -11234,10 +11109,6 @@ p, li { white-space: pre-wrap; } Display documents stacked - - Show score image - - Show OMR image @@ -11258,18 +11129,6 @@ p, li { white-space: pre-wrap; } Toggle foto mode - - Full screen - - - - F&ull Screen - - - - F&ull screen - - Enable horizontal raster @@ -11282,10 +11141,6 @@ p, li { white-space: pre-wrap; } Configure raster - - Re-pitch mode - - Re-Pitch Mode @@ -11314,10 +11169,6 @@ p, li { white-space: pre-wrap; } 128th note - - Show unprintable - - Split Measure @@ -11354,18 +11205,10 @@ p, li { white-space: pre-wrap; } Reset user settings - - Show debugger - - Piano Keyboard - - Show Inspector - - Save Selection @@ -11383,303 +11226,323 @@ p, li { white-space: pre-wrap; } - &Export... + Respell pitches + + + + Grace: 8nd after - &Instruments... + Pan score while playing on/off - &Note Input + Pan - Respell pitches + Show Unprintable - &Respell Pitches + Show Page Margins - Add &More Stretch + Manage parts - Add &Less Stretch + Inspector - Reset &Beam Mode + Show OMR Panel - Grace: 8nd after + OmrPanel - Pan score while playing on/off + toggle metronome - Pan + Figured Bass - &Load Style... + Next Score - &Save Style... + Previous Score - Save style as default + Transpose Up - Save Style As &Default... + Transpose Down - &Concert Pitch + Show master palette - &Reset + Master Palette... - De&bugger + Insert Measure - Reset &Stretch + Toggle View Mode - Show Unprintable + Export Parts - Show Page Margins + Export Parts... - &Search + Save a copy of the score's parts in various formats - &General... + Add marcato - &Text... + Marcato - &Chords... + Select Section - Parts + Note duration: double whole - Par&ts... + Double whole note - Manage parts + Whole note - Additional &Media... + Half note - &Page Settings... + Quarter note - &Album... + 8th note - Inspector + 16th note - Show OMR Panel + 32nd note - OmrPanel + 64th note - Show OMR PAnel + Edit score info - metronome + Insert Special Characters... - toggle metronome + Layers - Figured Bass + MuseScore Connect - Next Score + next syllable - Previous Score + previous syllable - Transpose Up + toggle visibility - Transpose Down + set visible - Show master palette + set unvisible - Master Palette... + Local Handbook... - Insert Measure + Open... - Toggle View Mode + Save + Save + + + Save As... - Export Parts + Export... - Export Parts... + Close + Close + + + New... - Save a copy of the score's parts in various formats + Print... - Add marcato + Instruments... - Marcato + Add More Stretch - Select Section + Add Less Stretch - select section + Tempo Marking... - Note duration: double whole + Tempo Marking - Double whole note + Text + Text + + + Add Frame Text - Whole note + Load Style... - Half note + Save Style... - Quarter note + Save Style As Default... - 8th note + Select All - 16th note + Concert Pitch + Concert Pitch + + + Info... - 32nd note + Reset - 64th note + Debugger - Edit score info + Reset Stretch - &Info... + Insert Special Characters - Insert special characters + Find - Insert Special Characters... + General... - Enable Script Debugger + Text... - Layers + Chords... - &Layers... + Parts... - MuseScore Connect + Full Screen - next syllable + Additional Media... - previous syllable + Page Settings... - toggle visibility + Album... - set visible + Layers... - set unvisible + Plugin Creator diff --git a/share/locale/mscore_fr.ts b/share/locale/mscore_fr.ts index d351bad1e652..48bc7e3a36fb 100644 --- a/share/locale/mscore_fr.ts +++ b/share/locale/mscore_fr.ts @@ -143,10 +143,6 @@ p, li { white-space: pre-wrap; } Remove Score - - score list - - move current score down in list @@ -167,18 +163,6 @@ p, li { white-space: pre-wrap; } Add Score - - path to new score you want to add - - - - open file manager - - - - ... - ... - create new album @@ -211,6 +195,18 @@ p, li { white-space: pre-wrap; } Join Scores + + Load + Charger + + + MuseScore: Add Score + + + + MuseScore: Load Album + + ArticulationBase @@ -1168,15 +1164,15 @@ spatium unit - showCourtesyClef + Hide courtesy clef - Hide courtesy clef + Show courtesy clef - Show courtesy clef + showCourtesy @@ -1201,14 +1197,14 @@ spatium unit Drum Tools - - Drumset - - Drums Percussions + + Edit Drumset + + DrumrollEditor @@ -2786,18 +2782,10 @@ spatium unit Time sig. left margin Marge gauche de l'indic. de mesure - - Clef-key distance - Distance clef-armature - Clef-barline distance Distance clé-barre de mesure - - Begin repeat left margin - Marge à gauche pour début de répétition - Show repeat bar tips ("winged" repeats) Afficher les "ailes" des barres de répétition @@ -3194,6 +3182,10 @@ p, li { white-space: pre-wrap; } Max. System distance + + Clef/Key right margin + + EditTempoBase @@ -3571,6 +3563,28 @@ spatium unit Down + + Offset X: + + + + sp + spatium unit +---------- +spatium unit + + + + Offset Y: + + + + + InspectorClef + + Show Courtesy Clef + + InspectorElement @@ -3710,6 +3724,36 @@ spatium unit % + + InspectorKeySig + + Show Courtesy Time Signature + + + + Show Naturals + + + + + InspectorLasso + + Form + + + + Lasso + + + + Position: + + + + Size + + + InspectorNote @@ -3954,6 +3998,13 @@ spatium unit + + InspectorTimeSig + + Show Courtesy Time Signature + + + InspectorVBox @@ -5144,10 +5195,6 @@ Would you like to locate %2 now? &About &A Propos - - MuseScore: Open Help - MuseScore : Ouvrir l'aide - note entry mode Mode saisie des notes @@ -5222,28 +5269,10 @@ avant de fermer ? End-Start Repeat Fin et début de répétition - - Search - Rechercher - Go To: Aller à : - - MuseScore handbook not found at: - - Manuel MuseScore non trouvé à : - - - - - -From the "Help" menu try choosing "Online Handbook" instead. - - -Essayez plutôt dans le menu " Aide " " Manuel en ligne ". - Grace Notes Fioritures @@ -5340,32 +5369,10 @@ Restaurer la session? Varied coda Autre coda - - Script -%1 -is incompatible with current interface - Le plugin -%1 -est incompatible avec l'interface actuelle - - - MuseScore is too old to run script -%1 - Cette version de MuseScore est trop ancienne pour executer ce plugin -%1 - Bar %1 Beat %2.%3 Mesure %1 Temps %2.%3 - - Error loading plugin -"%1" line %2: -%3 - Erreur lors du chargement du plugin -"%1" ligne %2: -%3 - MuseScore: Load error @@ -5975,6 +5982,30 @@ please choose a different name: Report a bug + + MuseScore: Load Plugin + + + + MuseScore Plugin (*.qml);;All Files (*) + + + + MuseScore: Save Plugin + + + + MuseScore Plugin File (*.qml) + + + + &Plugins + + + + Find + + MyWebView @@ -6580,18 +6611,6 @@ please choose a different name: relative tempo tempo relatif - - Straight - Linéaire - - - Swing - Swing - - - Shuffle - Shuffle - master volume volume général @@ -6607,6 +6626,93 @@ please choose a different name: + + PluginCreator + + File Operations + Opérations sur les fichiers + + + Edit Operations + + + + MuseScore Plugin Editor + + + + MuseScore + MuseScore + + + Plugin "%1" has changes +save before closing? + + + + untitled + + + + Manual + + + + + PluginCreatorBase + + MainWindow + + + + Run + + + + Stop + + + + File + + + + Help + + + + Edit + + + + New + Nouveau + + + Open + + + + Save + Sauver + + + Manual + + + + Undo + Annuler + + + Redo + Rétablir + + + Quit + Quitter + + PreferenceDialog @@ -6641,14 +6747,6 @@ please choose a different name: Choose Default Style for Parts - - load - - - - Plugin Path - - Choose Scores Directory @@ -6712,10 +6810,6 @@ please choose a different name: Paths Chemins - - Instrument List: - Liste d'instruments : - Windows Fenêtres @@ -7016,10 +7110,6 @@ please choose a different name: dark - - light - - use native file dialogs @@ -7288,6 +7378,34 @@ please choose a different name: Character Set: + + Instrument List2: + + + + Instrument List1: + + + + Name: + + + + Path: + + + + Version: + + + + Load + Charger + + + Define Shortcut + + Properties @@ -7345,14 +7463,6 @@ please choose a different name: MuseScore: Load Style failed: MuseScore : Echec du chargement de style : - - MuseScore - MuseScore - - - reading file < - Lecture du fichier < - MuseScore: Import Capella MuseScore : Import Capella @@ -7369,10 +7479,6 @@ please choose a different name: MuseScore: Load languages failed: MuseScore: impossible de charger les langues: - - MuseScore: register script plugin: - MuseScore: enregistrer un plugin: - MuseScore: Import GuitarPro @@ -7427,17 +7533,13 @@ failed: MuseScore: Save File MuseScore : Enregistrer un fichier - - > failed: - - Load failed: Echec du chargement : - &Quit - + Untitled + Sans titre @@ -7802,10 +7904,6 @@ cannot split tuplet Ticks - - Tick: - Cran : - Bar @@ -7814,8 +7912,16 @@ cannot split tuplet Beat - - + + tick: + + + + rTick: + + + + SelectDialog MuseScore: Select @@ -7969,21 +8075,21 @@ Le séquenceur sera inactif SlurPropertyBase - - Volta Properties - Propriétés de la reprise - Slur Properties Propriétés du legato - solid - continu + Solid + + + + Dotted + - dotted - pointillé + Dashed + Pointillé @@ -8661,6 +8767,10 @@ altera styled + + layoutToParentWidth + + TextEditor @@ -8976,6 +9086,14 @@ altera Text Texte + + Foreground Color: + + + + Background Color: + + TextStyleDialog @@ -9208,6 +9326,34 @@ p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'Sans Serif'; font-size:9pt; 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;">Astuce : Vous pouvez aussi ajouter ou supprimer des mesures après la création de la partition.</p></body></html> + + 1 + 1 + + + 2 + 2 + + + 4 + 4 + + + 8 + 8 + + + 16 + 16 + + + 32 + 32 + + + 64 + 64 + TransposeDialogBase @@ -9643,10 +9789,6 @@ p, li { white-space: pre-wrap; } action - - Local &Handbook... - &Manuel local... - Save a Copy... Enregistrer une copie... @@ -9915,46 +10057,6 @@ p, li { white-space: pre-wrap; } Reset Beam Mode Restaurer le mode de connexion des barres - - up+shift+ctrl - haut+shift+ctrl - - - down+shift+ctrl - bas+shift+ctrl - - - left+ctrl - gauche+ctrl - - - left+shift - gauche+shift - - - right+shift - droite+shift - - - right+ctrl+shift - droite+ctrl+shift - - - shift+home - shift+home - - - shift+end - shift+end - - - ctrl+shift+home - ctrl+shift+home - - - ctrl+shift+end - ctrl+shift+end - Delete Selected Measures Supprimer les mesures sélectionnées @@ -10055,22 +10157,10 @@ p, li { white-space: pre-wrap; } Quit Quitter - - Zoom Canvas - Zoom - Lyrics Paroles - - Tempo... - Tempo... - - - Tempo - Tempo - Metronome Métronome @@ -10083,10 +10173,6 @@ p, li { white-space: pre-wrap; } Staff Text Texte de la portée - - Frame Text - Texte du cadre - Title Titre @@ -10179,10 +10265,6 @@ p, li { white-space: pre-wrap; } Show Frames Afficher les cadres - - Search - Recherche - Zoom In Zoom avant @@ -10215,10 +10297,6 @@ p, li { white-space: pre-wrap; } Repeat selection Sélection de la reprise - - Follow Song - Suivre la musique - Local handbook Manuel local @@ -10355,10 +10433,6 @@ p, li { white-space: pre-wrap; } Trill Trille - - More stretch - Étirer - Less stretch Retrécir @@ -10371,10 +10445,6 @@ p, li { white-space: pre-wrap; } Flip direction Changer de sens - - Flip Direction - Changer de sens - Pitch up Monter la note @@ -10459,38 +10529,18 @@ p, li { white-space: pre-wrap; } Previous chord Accord précédent - - Previous Chord - Accord précédent - Previous measure Mesure précédente - - Previous Measure - Mesure précédente - Next chord Accord suivant - - Next Chord - Accord suivant - Next measure Mesure suivante - - Next Measure - Mesure suivante - - - Delete selected measures - Supprimer les mesures sélectionnées - Append measures Ajouter des mesures @@ -10531,10 +10581,6 @@ p, li { white-space: pre-wrap; } Save style Enregistrer le style - - Select all - Sélectionner tout - Delete Supprimer @@ -10551,54 +10597,10 @@ p, li { white-space: pre-wrap; } Delete element and duration Supprimer les éléments et le temps - - &Open... - - - - &Save - - - - Save &As... - - - - &Close - - File new - - &New... - - - - &Print... - - - - &Undo - - - - &Redo - - - - Cu&t - - - - &Copy - - - - &Paste - - Insert note A @@ -10755,62 +10757,26 @@ p, li { white-space: pre-wrap; } Timewise delete - - Append one measure - - Append One Measure - - Insert one measure - - Insert One Measure - - Insert horizontal frame - - - - Insert text frame - - Insert Text Frame - - Append text frame - - Append Text Frame - - Insert fret diagram frame - - Insert Fret Diagram Frame - - Insert vertical frame - - - - Append horizontal frame - - - - Append vertical frame - - Other tuplets @@ -10987,22 +10953,10 @@ p, li { white-space: pre-wrap; } Feathered beam, slower - - Feathered Beam, Slower - - Feathered beam, faster - - Feathered Beam, Faster - - - - Play panel - - Transport toolbar @@ -11011,10 +10965,6 @@ p, li { white-space: pre-wrap; } Note input toolbar - - Status bar - - Zoom canvas @@ -11027,10 +10977,6 @@ p, li { white-space: pre-wrap; } Add staff text - - Add text - - Add title text @@ -11079,82 +11025,26 @@ p, li { white-space: pre-wrap; } Player seek to end - - Select A&ll - - &Transpose... - - Violin clef - - Violin Clef - - Bass clef - Clef de Fa - 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 - - Toggle Section Break - - Edit element - - Show inspector @@ -11163,18 +11053,6 @@ p, li { white-space: pre-wrap; } Reset measure stretch - - Show invisible - - - - Show frames - - - - Enable script debugger - - Note entry: whole rest @@ -11211,14 +11089,6 @@ p, li { white-space: pre-wrap; } Backspace - - Zoom in - - - - Zoom out - - Mirror note head @@ -11255,10 +11125,6 @@ p, li { white-space: pre-wrap; } Display documents stacked - - Show score image - - Show OMR image @@ -11279,18 +11145,6 @@ p, li { white-space: pre-wrap; } Toggle foto mode - - Full screen - - - - F&ull Screen - - - - F&ull screen - - Enable horizontal raster @@ -11303,10 +11157,6 @@ p, li { white-space: pre-wrap; } Configure raster - - Re-pitch mode - - Re-Pitch Mode @@ -11335,10 +11185,6 @@ p, li { white-space: pre-wrap; } 128th note - - Show unprintable - - Split Measure @@ -11375,18 +11221,10 @@ p, li { white-space: pre-wrap; } Reset user settings - - Show debugger - - Piano Keyboard - - Show Inspector - - Save Selection @@ -11404,303 +11242,323 @@ p, li { white-space: pre-wrap; } - &Export... + Respell pitches - &Instruments... + Grace: 8nd after - &Note Input + Pan score while playing on/off - Respell pitches - + Pan + Pan. - &Respell Pitches + Show Unprintable - Add &More Stretch + Show Page Margins - Add &Less Stretch + Manage parts - Reset &Beam Mode + Inspector + Inspecteur + + + Show OMR Panel - Grace: 8nd after + OmrPanel - Pan score while playing on/off + toggle metronome - Pan - Pan. + Figured Bass + - &Load Style... + Next Score - &Save Style... + Previous Score - Save style as default + Transpose Up - Save Style As &Default... + Transpose Down - &Concert Pitch + Show master palette - &Reset + Master Palette... - De&bugger + Insert Measure - Reset &Stretch + Toggle View Mode - Show Unprintable + Export Parts - Show Page Margins + Export Parts... - &Search + Save a copy of the score's parts in various formats - &General... + Add marcato - &Text... + Marcato - &Chords... + Select Section - Parts + Note duration: double whole - Par&ts... + Double whole note - Manage parts + Whole note - Additional &Media... + Half note - &Page Settings... + Quarter note - &Album... + 8th note - Inspector - Inspecteur + 16th note + - Show OMR Panel + 32nd note - OmrPanel + 64th note - Show OMR PAnel + Edit score info - metronome + Insert Special Characters... - toggle metronome + Layers - Figured Bass + MuseScore Connect - Next Score + next syllable - Previous Score + previous syllable - Transpose Up + toggle visibility - Transpose Down + set visible - Show master palette + set unvisible - Master Palette... + Local Handbook... - Insert Measure + Open... - Toggle View Mode + Save + Sauver + + + Save As... - Export Parts + Export... - Export Parts... + Close + Fermer + + + New... - Save a copy of the score's parts in various formats + Print... - Add marcato + Instruments... - Marcato + Add More Stretch - Select Section + Add Less Stretch - select section + Tempo Marking... - Note duration: double whole + Tempo Marking - Double whole note + Text + Texte + + + Add Frame Text - Whole note + Load Style... - Half note + Save Style... - Quarter note + Save Style As Default... - 8th note + Select All - 16th note + Concert Pitch + Tonalité de concert + + + Info... - 32nd note + Reset - 64th note + Debugger - Edit score info + Reset Stretch - &Info... + Insert Special Characters - Insert special characters + Find - Insert Special Characters... + General... - Enable Script Debugger + Text... - Layers + Chords... - &Layers... + Parts... - MuseScore Connect + Full Screen - next syllable + Additional Media... - previous syllable + Page Settings... - toggle visibility + Album... - set visible + Layers... - set unvisible + Plugin Creator diff --git a/share/locale/mscore_gl.ts b/share/locale/mscore_gl.ts index b3be9e0e60cd..abf24e5b1fd3 100644 --- a/share/locale/mscore_gl.ts +++ b/share/locale/mscore_gl.ts @@ -143,10 +143,6 @@ p, li { white-space: pre-wrap; } Remove Score - - score list - - move current score down in list @@ -167,18 +163,6 @@ p, li { white-space: pre-wrap; } Add Score - - path to new score you want to add - - - - open file manager - - - - ... - ... - create new album @@ -211,6 +195,18 @@ p, li { white-space: pre-wrap; } Join Scores + + Load + Cargar + + + MuseScore: Add Score + + + + MuseScore: Load Album + + ArticulationBase @@ -1168,15 +1164,15 @@ spatium unit - showCourtesyClef + Hide courtesy clef - Hide courtesy clef + Show courtesy clef - Show courtesy clef + showCourtesy @@ -1201,14 +1197,14 @@ spatium unit Drum Tools - - Drumset - - Drums Percusión + + Edit Drumset + + DrumrollEditor @@ -2786,18 +2782,10 @@ spatium unit Time sig. left margin Marxe esquerda da marca de tempo - - Clef-key distance - Distancia entre a chave e a armadura - Clef-barline distance Distancia entre a clave e a barra divisoria - - Begin repeat left margin - Marxe esquerda dos comezos das repeticións - Show repeat bar tips ("winged" repeats) Mostrar dobras na barra de ritornello @@ -3194,6 +3182,10 @@ p, li { white-space: pre-wrap; } Max. System distance + + Clef/Key right margin + + EditTempoBase @@ -3571,6 +3563,28 @@ spatium unit Down Abaixo + + Offset X: + + + + sp + spatium unit +---------- +spatium unit + sp + + + Offset Y: + + + + + InspectorClef + + Show Courtesy Clef + + InspectorElement @@ -3710,6 +3724,36 @@ spatium unit % + + InspectorKeySig + + Show Courtesy Time Signature + + + + Show Naturals + + + + + InspectorLasso + + Form + Formulario + + + Lasso + + + + Position: + + + + Size + + + InspectorNote @@ -3954,6 +3998,13 @@ spatium unit sp + + InspectorTimeSig + + Show Courtesy Time Signature + + + InspectorVBox @@ -5088,10 +5139,6 @@ Would you like to locate %2 now? &About &Acerca de - - MuseScore: Open Help - MuseScore: Abrir a Axuda - note entry mode modo de introdución de notas @@ -5192,10 +5239,6 @@ Would you like to locate %2 now? Text Texto - - Search - Procurar - Save changes to the score "%1" before closing? @@ -5230,20 +5273,6 @@ antes de fechar? Go To: Ir a: - - MuseScore handbook not found at: - - Non se atopou o manual do MuseScore en: - - - - - -From the "Help" menu try choosing "Online Handbook" instead. - - -No canto disto, escoller "Manual en liña" no menú "Axuda". - Grace Notes Notas de adorno @@ -5340,32 +5369,10 @@ Restaurar a sesión? Varied coda Variación de coda - - Script -%1 -is incompatible with current interface - O guión -%1 -é incompatíbel coa interface actual - - - MuseScore is too old to run script -%1 - Musescore é vello de máis para executar este guión -%1 - Bar %1 Beat %2.%3 Compás %1 Pulso %2.%3 - - Error loading plugin -"%1" line %2: -%3 - Houbo un fallo ao cargar o engadido -"%1" liña %2: -%3 - MuseScore: Load error @@ -5975,6 +5982,30 @@ please choose a different name: Report a bug + + MuseScore: Load Plugin + + + + MuseScore Plugin (*.qml);;All Files (*) + + + + MuseScore: Save Plugin + + + + MuseScore Plugin File (*.qml) + + + + &Plugins + + + + Find + + MyWebView @@ -6580,29 +6611,104 @@ please choose a different name: 100% - Straight + master volume + volume xeral + + + Vol. + short text for volume slider - Swing + Tmp. + short text for tempo slider + + + PluginCreator - Shuffle - Barallar + File Operations + Operacións de ficheiro - master volume - volume xeral + Edit Operations + - Vol. - short text for volume slider + MuseScore Plugin Editor - Tmp. - short text for tempo slider + MuseScore + MuseScore + + + Plugin "%1" has changes +save before closing? + + + + untitled + + + + Manual + + + + + PluginCreatorBase + + MainWindow + + + + Run + + + + Stop + + + + File + + + + Help + + + + Edit + + + + New + Nova + + + Open + + + + Save + Gardar + + + Manual + + + + Undo + Desfacer + + + Redo + Refacer + + + Quit @@ -6640,14 +6746,6 @@ please choose a different name: Choose Default Style for Parts - - load - - - - Plugin Path - - Choose Scores Directory @@ -6719,10 +6817,6 @@ please choose a different name: Paths Camiños - - Instrument List: - Lista de instrumentos: - Windows Xanelas @@ -7015,10 +7109,6 @@ please choose a different name: dark - - light - - use native file dialogs @@ -7287,6 +7377,34 @@ please choose a different name: Character Set: + + Instrument List2: + + + + Instrument List1: + + + + Name: + + + + Path: + + + + Version: + + + + Load + Cargar + + + Define Shortcut + + Properties @@ -7352,14 +7470,6 @@ please choose a different name: MuseScore: file not found: MuseScore: non se atopou o ficheiro: - - MuseScore - MuseScore - - - reading file < - a ler o ficheiro < - MuseScore: Load Palette failed: Musescore: Fallou o cargado da paleta @@ -7368,10 +7478,6 @@ please choose a different name: MuseScore: Load languages failed: Musescore: Fallou o cargado das linguas: - - MuseScore: register script plugin: - Musescore: rexistrar o engadido de script: - MuseScore: Import GuitarPro @@ -7427,17 +7533,13 @@ fallou: MuseScore: Save File MuseScore: Gardar o ficheiro - - > failed: - - Load failed: Houbo un fallo ao cargo¡ar: - &Quit - + Untitled + Sen título @@ -7802,10 +7904,6 @@ cannot split tuplet Ticks - - Tick: - Pulso: - Bar @@ -7814,9 +7912,17 @@ cannot split tuplet Beat - - - SelectDialog + + tick: + + + + rTick: + + + + + SelectDialog MuseScore: Select MuseScore: Seleccionar @@ -7969,21 +8075,21 @@ Desactívase o secuenciador. SlurPropertyBase - - Volta Properties - Propiedades da volta - Slur Properties Propiedades da ligadura de expresión - solid - continua + Solid + + + + Dotted + - dotted - punteada + Dashed + Discontínua @@ -8661,6 +8767,10 @@ altera styled + + layoutToParentWidth + + TextEditor @@ -8976,6 +9086,14 @@ altera Text Texto + + Foreground Color: + + + + Background Color: + + TextStyleDialog @@ -9205,6 +9323,34 @@ 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;">Hint: you can also add or remove measures after creation of the score.</p></body></html> <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:9pt; 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;">Suxestión: tamén se poden engadir ou eliminar compases despois de crear a partitura.</p></body></html> + + 1 + 1 + + + 2 + 2 + + + 4 + 4 + + + 8 + 8 + + + 16 + 16 + + + 32 + 32 + + + 64 + 64 + TransposeDialogBase @@ -9640,10 +9786,6 @@ p, li { white-space: pre-wrap; } action - - Local &Handbook... - &Manual local... - Save a Copy... Gardar unha copia... @@ -9912,46 +10054,6 @@ p, li { white-space: pre-wrap; } Reset Beam Mode Restaurar o modo de exhibición das barras de ligazón - - up+shift+ctrl - arriba+maiúsculas+ctrl - - - down+shift+ctrl - abaixo+maiúsculas+ctrl - - - left+ctrl - esquerda+ctrl - - - left+shift - esquerda+maiúsculas - - - right+shift - dereita+maiúsculas - - - right+ctrl+shift - dereita+ctrl+maiúsculas - - - shift+home - maiúsculas+Inicio - - - shift+end - maiúsculas+Fin - - - ctrl+shift+home - ctrl+maiúsculas+Inicio - - - ctrl+shift+end - ctrl+maiúsculas+Fin - Delete Selected Measures Borrar os compases seleccionados @@ -10052,22 +10154,10 @@ p, li { white-space: pre-wrap; } Quit Saír - - Zoom Canvas - Ampliar o lenzo - Lyrics Letra - - Tempo... - Tempo... - - - Tempo - Tempo - Metronome Metrónomo @@ -10080,10 +10170,6 @@ p, li { white-space: pre-wrap; } Staff Text Texto do pentagrama - - Frame Text - Texto de moldura - Title Título @@ -10176,10 +10262,6 @@ p, li { white-space: pre-wrap; } Show Frames Mostrar as molduras - - Search - Procurar - Zoom In Achegar @@ -10212,10 +10294,6 @@ p, li { white-space: pre-wrap; } Repeat selection Repetir a selección - - Follow Song - Seguir a canción - Local handbook Manual local @@ -10352,10 +10430,6 @@ p, li { white-space: pre-wrap; } Trill Trino - - More stretch - Anchear - Less stretch Reducir @@ -10368,10 +10442,6 @@ p, li { white-space: pre-wrap; } Flip direction Inverter a dirección - - Flip Direction - Inverter a dirección - Pitch up Elevar a altura @@ -10456,38 +10526,18 @@ p, li { white-space: pre-wrap; } Previous chord Acorde anterior - - Previous Chord - Acorde seguinte - Previous measure Compás anterior - - Previous Measure - Compás anterior - Next chord Acorde seguinte - - Next Chord - Acorde seguinte - Next measure Compás seguinte - - Next Measure - Compás seguinte - - - Delete selected measures - Eliminar os compases seleccionados - Append measures Engadir compases @@ -10528,10 +10578,6 @@ p, li { white-space: pre-wrap; } Save style Gravar o estilo - - Select all - Seleccionar todo - Delete Eliminar @@ -10548,54 +10594,10 @@ p, li { white-space: pre-wrap; } Delete element and duration Eliminar o elemento e a súa duración - - &Open... - - - - &Save - - - - Save &As... - - - - &Close - - File new - - &New... - - - - &Print... - - - - &Undo - - - - &Redo - - - - Cu&t - - - - &Copy - - - - &Paste - - Insert note A @@ -10752,62 +10754,26 @@ p, li { white-space: pre-wrap; } Timewise delete - - Append one measure - - Append One Measure - - Insert one measure - - Insert One Measure - - Insert horizontal frame - - - - Insert text frame - - Insert Text Frame - - Append text frame - - Append Text Frame - - Insert fret diagram frame - - Insert Fret Diagram Frame - - Insert vertical frame - - - - Append horizontal frame - - - - Append vertical frame - - Other tuplets @@ -10984,22 +10950,10 @@ p, li { white-space: pre-wrap; } Feathered beam, slower - - Feathered Beam, Slower - - Feathered beam, faster - - Feathered Beam, Faster - - - - Play panel - - Transport toolbar @@ -11008,10 +10962,6 @@ p, li { white-space: pre-wrap; } Note input toolbar - - Status bar - - Zoom canvas @@ -11024,10 +10974,6 @@ p, li { white-space: pre-wrap; } Add staff text - - Add text - - Add title text @@ -11076,82 +11022,26 @@ p, li { white-space: pre-wrap; } Player seek to end - - Select A&ll - - &Transpose... - - Violin clef - - Violin Clef - - Bass clef - Clave de fa - 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 - - Toggle Section Break - - Edit element - - Show inspector @@ -11160,18 +11050,6 @@ p, li { white-space: pre-wrap; } Reset measure stretch - - Show invisible - - - - Show frames - - - - Enable script debugger - - Note entry: whole rest @@ -11208,14 +11086,6 @@ p, li { white-space: pre-wrap; } Backspace - - Zoom in - - - - Zoom out - - Mirror note head @@ -11252,10 +11122,6 @@ p, li { white-space: pre-wrap; } Display documents stacked - - Show score image - - Show OMR image @@ -11276,18 +11142,6 @@ p, li { white-space: pre-wrap; } Toggle foto mode - - Full screen - - - - F&ull Screen - - - - F&ull screen - - Enable horizontal raster @@ -11300,10 +11154,6 @@ p, li { white-space: pre-wrap; } Configure raster - - Re-pitch mode - - Re-Pitch Mode @@ -11332,10 +11182,6 @@ p, li { white-space: pre-wrap; } 128th note - - Show unprintable - - Split Measure @@ -11372,18 +11218,10 @@ p, li { white-space: pre-wrap; } Reset user settings - - Show debugger - - Piano Keyboard - - Show Inspector - - Save Selection @@ -11401,303 +11239,323 @@ p, li { white-space: pre-wrap; } - &Export... + Respell pitches - &Instruments... + Grace: 8nd after - &Note Input + Pan score while playing on/off - Respell pitches - + Pan + Pan - &Respell Pitches + Show Unprintable - Add &More Stretch + Show Page Margins - Add &Less Stretch + Manage parts - Reset &Beam Mode + Inspector + Inspector + + + Show OMR Panel - Grace: 8nd after + OmrPanel - Pan score while playing on/off + toggle metronome - Pan - Pan + Figured Bass + - &Load Style... + Next Score - &Save Style... + Previous Score - Save style as default + Transpose Up - Save Style As &Default... + Transpose Down - &Concert Pitch + Show master palette - &Reset + Master Palette... - De&bugger + Insert Measure - Reset &Stretch + Toggle View Mode - Show Unprintable + Export Parts - Show Page Margins + Export Parts... - &Search + Save a copy of the score's parts in various formats - &General... + Add marcato - &Text... + Marcato - &Chords... + Select Section - Parts + Note duration: double whole - Par&ts... + Double whole note - Manage parts + Whole note - Additional &Media... + Half note - &Page Settings... + Quarter note - &Album... + 8th note - Inspector - Inspector + 16th note + - Show OMR Panel + 32nd note - OmrPanel + 64th note - Show OMR PAnel + Edit score info - metronome + Insert Special Characters... - toggle metronome + Layers - Figured Bass + MuseScore Connect - Next Score + next syllable - Previous Score + previous syllable - Transpose Up + toggle visibility - Transpose Down + set visible - Show master palette + set unvisible - Master Palette... + Local Handbook... - Insert Measure + Open... - Toggle View Mode + Save + Gardar + + + Save As... - Export Parts + Export... - Export Parts... + Close + Fechar + + + New... - Save a copy of the score's parts in various formats + Print... - Add marcato + Instruments... - Marcato + Add More Stretch - Select Section + Add Less Stretch - select section + Tempo Marking... - Note duration: double whole + Tempo Marking - Double whole note + Text + Texto + + + Add Frame Text - Whole note + Load Style... - Half note + Save Style... - Quarter note + Save Style As Default... - 8th note + Select All - 16th note + Concert Pitch + Diapasón de concerto + + + Info... - 32nd note + Reset - 64th note + Debugger - Edit score info + Reset Stretch - &Info... + Insert Special Characters - Insert special characters + Find - Insert Special Characters... + General... - Enable Script Debugger + Text... - Layers + Chords... - &Layers... + Parts... - MuseScore Connect + Full Screen - next syllable + Additional Media... - previous syllable + Page Settings... - toggle visibility + Album... - set visible + Layers... - set unvisible + Plugin Creator diff --git a/share/locale/mscore_he.ts b/share/locale/mscore_he.ts index c7f8d76e4cac..92d569cac520 100644 --- a/share/locale/mscore_he.ts +++ b/share/locale/mscore_he.ts @@ -31,17 +31,17 @@ p, li { white-space: pre-wrap; } AboutBoxDialog - + Unstable Prerelease for Version: - + Version: גרסה - + Revision: %1 @@ -141,99 +141,94 @@ p, li { white-space: pre-wrap; } - + remove current score - - - Remove Score - - - score list + Remove Score - + move current score down in list - + Down - + move current score up in list - + Up - + Add Score - path to new score you want to add + create new album - - open file manager + + New - ... + load an existing album - - create new album + + Load - - New + + Join Scores - - load an existing album + + Print Album - - Join Scores + + MuseScore Album Files (*.album);; - - Print Album + + + All Files (*) - - MuseScore Album Files (*.album);; + + MuseScore Files (*.mscz *.mscx *.msc);; - - - All Files (*) + + MuseScore: Add Score - - MuseScore Files (*.mscz *.mscx *.msc);; + + MuseScore: Load Album @@ -1456,7 +1451,7 @@ spatium unit - showCourtesyClef + showCourtesy @@ -1497,7 +1492,7 @@ spatium unit - Drumset + Edit Drumset @@ -1608,29 +1603,29 @@ spatium unit - + Open File - + failed: - + MuseScore: Open File - + Write File failed: - + MuseScore: Write Drumset @@ -1643,17 +1638,17 @@ failed: - + Note - + Shortcut - + Name @@ -1663,97 +1658,97 @@ failed: - + Note Head: - + Staff Line: - + Stem Direction: - + Auto - + Up - + Down - + Default Voice: - + Shortcut: - + A - + B - + C - + D - + E - + F - + G - + -- - + Load - + Save - + No. @@ -3181,48 +3176,48 @@ failed: - + Barlines - + Notes - + Arpeggios - + Beams - + Sizes - + Hairpins - + Chordnames - + Articulations, Ornaments @@ -3262,45 +3257,44 @@ failed: - - - - - - - - + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + sp spatium unit ---------- @@ -3376,11 +3370,11 @@ spatium unit - - - - - + + + + + % @@ -3411,19 +3405,19 @@ spatium unit - + Clefs - + Slurs/Ties - + Accidentals @@ -3589,40 +3583,35 @@ spatium unit - + minimum Measure width - + Spacing (1=tight) - + Min. note distance - + Clef left margin - + Key sig. left margin - + Time sig. left margin - - - Clef-key distance - - Clef-barline distance @@ -3630,257 +3619,252 @@ spatium unit - Begin repeat left margin - - - - 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 @@ -3898,7 +3882,7 @@ spatium unit - + Figured Bass @@ -3960,98 +3944,103 @@ p, li { white-space: pre-wrap; } - + 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 - + Use German names - + Chord description file @@ -4068,35 +4057,35 @@ p, li { white-space: pre-wrap; } - + ... - - - + + + sp space unit - + Voice 1 - + Voice 2 - + Voice 3 - + Voice 4 @@ -4259,7 +4248,7 @@ p, li { white-space: pre-wrap; } GreendotButton - + record @@ -4356,7 +4345,7 @@ p, li { white-space: pre-wrap; } Inspector - + Inspector @@ -4379,8 +4368,8 @@ p, li { white-space: pre-wrap; } - - + + sp spatium unit ---------- @@ -4388,57 +4377,57 @@ spatium unit - + Offset Y: - + Direction: - + Auto - + Up - + Down - + Anchor: - + Top Staff - + Bottom Staff - + Chord Automatic - + Top Chord - + Bottom Chord @@ -4461,27 +4450,27 @@ spatium unit - - + + sp - + Position - - - - - + + + + + ... - + User Position @@ -4530,48 +4519,77 @@ spatium unit - - + Offset X: + + + + + + sp + spatium unit +---------- +spatium unit + + + + + + reset value - - - + + + + + ... - + Small - + Stemless - + Stem direction - + Auto - + Up - + Down + + + Offset Y: + + + + + InspectorClef + + + Show Courtesy Clef + + InspectorElement @@ -4586,31 +4604,31 @@ spatium unit - + Offset X: - + Color: - - - - + + + + ... - + Visible - - + + sp spatium unit ---------- @@ -4618,7 +4636,7 @@ spatium unit - + Offset Y: @@ -4641,12 +4659,12 @@ spatium unit - + Set Visible - + Set Invisible @@ -4664,26 +4682,26 @@ spatium unit - + Left Gap: - - + + reset value - - + + ... - - - + + + sp spatium unit ---------- @@ -4691,12 +4709,12 @@ spatium unit - + Right Gap: - + Width: @@ -4714,30 +4732,30 @@ spatium unit - + Size - + Scale: - - + + % - - - + + + ... - + Lock Aspect Ratio @@ -4752,6 +4770,42 @@ spatium unit + + InspectorKeySig + + + Show Courtesy Time Signature + + + + + Show Naturals + + + + + InspectorLasso + + + Form + + + + + Lasso + + + + + Position: + + + + + Size + + + InspectorNote @@ -4775,225 +4829,225 @@ spatium unit - - - + + + Auto - + Top - + Bottom - - - - - - - - - + + + + + + + + + reset value - - - - - - - - - + + + + + + + + + ... - + Ontime Offset - + Left - + Right - + Dot Position - + Note Head Group - + Tuning Offset - + Note Head Type - + Velocity Type - + Whole - + Half - + Quarter - + Breve - + Velocity - + Offset - + User - + normal - + cross - + diamond - + triangle - + slash - + xcircle - + do - + re - + mi - + fa - + sol - + la - + ti - + alt. brevis - + Select - + Dot1 - + Dot2 - + Dot3 - + Hook - + Stem - + Beam @@ -5001,7 +5055,7 @@ spatium unit InspectorRest - + Small @@ -5024,8 +5078,8 @@ spatium unit - - + + sp spatium unit ---------- @@ -5033,19 +5087,19 @@ spatium unit - + Leading space: - - + + reset value - - + + ... @@ -5068,12 +5122,20 @@ spatium unit - + sp spatium unit + + InspectorTimeSig + + + Show Courtesy Time Signature + + + InspectorVBox @@ -5082,14 +5144,14 @@ spatium unit - + Top Gap: - - - + + + sp spatium unit ---------- @@ -5109,20 +5171,20 @@ spatium unit - - - + + + reset value - - - + + + ... @@ -5132,30 +5194,30 @@ spatium unit - - - - + + + + mm - + Top Margin: - + Left Margin: - + Bottom Gap: - + Height: @@ -5353,49 +5415,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 (*) @@ -5758,14 +5820,14 @@ failed: - - - - - - - - + + + + + + + + sp @@ -5805,110 +5867,110 @@ failed: - + diagonally - + Begin - - + + Text - - + + ... - - + + place: - - + + Below - - + + Left - - + + Above - - - + + + Symb. - - - + + + Ped (Pedal) - - - + + + x: - - - + + + y: - - + + Hook - - + + Up - - + + 90° - - + + 45° - + Continue - + End @@ -6383,7 +6445,7 @@ Would you like to locate %2 now? MenuNotes - + &Notes @@ -6435,7 +6497,7 @@ Would you like to locate %2 now? MuseScore - + MuseScore @@ -6446,14 +6508,13 @@ before closing? - - + MuseScore: Load Score - + MuseScore: Load error @@ -6499,13 +6560,13 @@ before closing? - - + + All Files (*) - + Untitled @@ -6520,273 +6581,293 @@ before closing? - + 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 @@ -6806,70 +6887,70 @@ before closing? - - + + 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 @@ -6879,257 +6960,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 @@ -7139,7 +7220,7 @@ before closing? - + Articulations && Ornaments @@ -7149,127 +7230,127 @@ before closing? - + Fingering - + Fingering %1 - + String number %1 - + Note Heads - + Tremolo - + 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 - + &Measures - + &Frames - + &Text @@ -7279,255 +7360,242 @@ 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 - + + Find + + + + MuseScore: warning - + Cannot create tuplet: note value too short - + &Layout - + Continuous View - + &Style - + &Display - + &Help - + &About - + About &MusicXML - + Report a bug - - MuseScore handbook not found at: - - - - - - - -From the "Help" menu try choosing "Online Handbook" instead. - - - - - MuseScore: Open Help - - - - + Open failed: unknown file extension or broken file - + System - + no score - + note entry mode - + edit mode - + play - + foto mode - + Go To: - - Search - - - - + Bar %1 Beat %2.%3 - + The previous session quit unexpectedly. Restore session? @@ -7561,72 +7629,51 @@ please choose a different name: - + MuseScore: transpose - + There is nothing selected. Transpose whole score? - - + + MuseScore: save style - + MuseScore: load style - - - Error loading plugin -"%1" line %2: -%3 - - - - - Script -%1 -is incompatible with current interface - - - - - MuseScore is too old to run script -%1 - - - - + Rehearsal Mark - - + + Error opening lame library - + Could not open MP3 encoding library! - + Not a valid or supported MP3 encoding library! - - + + Encoding error @@ -7636,12 +7683,12 @@ is incompatible with current interface - + Unable to open target file for writing - + Error %1 returned from MP3 encoder @@ -7712,7 +7759,7 @@ is incompatible with current interface - + MuseScore: Create New Score @@ -7720,12 +7767,12 @@ is incompatible with current interface NewWizardPage1 - + Create New Score - + This wizard creates a new score @@ -7733,12 +7780,12 @@ is incompatible with current interface NewWizardPage2 - + Create New Score - + Define a set of instruments. Each instrument is represented by one or more staves @@ -7746,12 +7793,12 @@ is incompatible with current interface NewWizardPage3 - + Create New Score - + Create Time Signature @@ -7759,22 +7806,22 @@ is incompatible with current interface NewWizardPage4 - + Create New Score - + Select Template File: - + MuseScore: Select Template - + MuseScore Template Files (*.mscz *.mscx) @@ -7782,27 +7829,27 @@ is incompatible with current interface NewWizardPage5 - + Create New Score - + Select Key Signature and Tempo: - + Key Signature - + Tempo - + BPM: @@ -8037,27 +8084,27 @@ is incompatible with current interface PaletteBox - + Palettes - + Palette Operations - + Single Palette Mode - + Reset to factory defaults - + new Palette @@ -8065,42 +8112,42 @@ is incompatible with current interface PaletteBoxButton - + Palette Properties... - + Insert new Palette... - + Move Palette Up - + Move Palette Down - + Enable Editing - + Save Palette - + Load Palette - + Delete Palette @@ -8394,7 +8441,7 @@ is incompatible with current interface - + relative tempo @@ -8404,117 +8451,205 @@ is incompatible with current interface - - Straight + + Vol. + short text for volume slider - - Swing + + Tmp. + short text for tempo slider - - Shuffle + + master volume + + + PluginCreator - - Vol. - short text for volume slider + + File Operations - - Tmp. - short text for tempo slider + + Edit Operations - - master volume + + MuseScore Plugin Editor + + + + + + + MuseScore + + + + + + + Plugin "%1" has changes +save before closing? + + + + + untitled + + + + + Manual - PreferenceDialog + PluginCreatorBase - - Choose Notepaper + + MainWindow - - Choose Background Wallpaper + + Run + + + + + Stop + + + + + File + + + + + Help + + + + + Edit + + + + + New + + + + + Open + + + + + Save + + + + + Manual + + + + + Undo + + + + + Redo + + + + + Quit + + + PreferenceDialog - - load + + Choose Notepaper - - Plugin Path + + 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 @@ -8522,822 +8657,848 @@ is incompatible with current interface PrefsDialogBase - + MuseScore: Preferences - + MuseScore Preferences - + General - + Scores Directory: - + Styles Directory: - + Templates Directory: - + Plugins Directory: - + SoundFonts Directory: - + Images Directory: - + Program Start - + start empty - + continue last session - + start with new score - + start with score: - + Choose MIDI input interface - + Browse... - + show splash screen - + Language - + Attention: changing the language requires a restart of MuseScore. - + Paths - - Instrument List: - - - - + Windows - + Style - + Auto Save - + Save every - + minutes - + Canvas - + Background - - + + Wallpaper - - + + Color - + Proximity for selecting elements - + disable antialiased drawing - + uncheck this to speed up drawing - + Draw Antialiased - + Text - + Auto-correction - + Replace 1/2 with fraction character ½ - + Replace (C) with copyright symbol © (Only applies to text in the copyright section) - - + + Note Entry - + Play notes when editing - + ms - + Color notes outside of usable pitch range - + enable MIDI remote control - + Score - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ... - + Show Play Panel - + Show Navigator - + Show MuseScore Connect - + OSC remote control - + Port Number: - + dark - - light - - - - + native - + Icon size: - + use native file dialogs - + Paper - + Miscellaneous - + Enable MIDI input - + Default Duration: - + MIDI Remote Control - + rewind - - - - - + + + + + is active - - - - - + + + + + record - + toggle play - + whole note - + half note - + quarter note - + 8th note - + rest - + augmentation dot - + double augmentation dot - + tie - + play - + stop - + note entry - + 16th note - + 32nd note - + 64nd note - + Default Files - + Style: - + Style for Part: - + View - + Scale - + default scale for new score views - + I/O - + Ports - + Remember last connection(s) - + Use internal synthesizer - + JACK Audio Server - + Left-Port: - + Right-Port: - + ALSA Audio - + + Instrument List2: + + + + + Instrument List1: + + + + PulseAudio - - + + Device: - + default - - + + Sample Rate: - + 192000 - + 96000 - + 88200 - - + + 48000 - - + + 44100 - + 32000 - + 22050 - + Fragments: - + Period Size: - + 4096 - + 2048 - + 1024 - + 512 - + 256 - + 128 - + 64 - + Attention: Any changes on this page require a restart of MuseScore. - + Import - + Style Used for Import - + Built in style - + Use style file: - + Character Set used when import non-unicode strings. (For binary file import) - - + + MusicXML - + Import layout - + Import system and page breaks - + Shortest Note: - + 1/4 - + 1/8 - + 1/16 - + 1/32 - + 1/64 - + Export - + Audio - + Export layout - + Export all system and page breaks - + Export manually added system and page breaks only - + Do not export system or page breaks - + Shortcuts - + Action - + + Shortcut - - + + Reset to Default - - + + Clear - + Use JACK MIDI - + PortAudio - + API: - + Default SoundFont - + Character Set: - + PNG/SVG - + Resolution DPI - + Transparent background - - + + MIDI - + Expand repeats - + Define... - + Plugins - + + Name: + + + + + Path: + + + + + Version: + + + + + Load + + + + + Define Shortcut + + + + Update - + Automatic Update Check - + Check for new versions of MuseScore on startup @@ -9413,11 +9574,11 @@ is incompatible with current interface - - - - - + + + + + Quit @@ -9465,6 +9626,11 @@ failed: MuseScore: Write Album + + + Untitled + + MuseScore: file not found: @@ -9476,7 +9642,7 @@ failed: - + MuseScore: Load Style failed: @@ -9493,52 +9659,26 @@ failed: - + MuseScore: load Style failed: - - MuseScore - - - - - reading file < - - - - - > failed: - - - - - &Quit - - - - + MuseScore: Load languages failed: - + MuseScore: invalid command - - + + MuseScore: Load Palette failed: - - - - MuseScore: register script plugin: - - MuseScore: Import GuitarPro @@ -9548,7 +9688,7 @@ failed: RecordButton - + record @@ -9572,33 +9712,33 @@ failed: ScoreView - + Select - + More... - + Staff - + Edit Drumset... - + Drumroll Editor... - + Pianoroll Editor... @@ -9792,116 +9932,116 @@ failed: - + Staff Properties... - - + + Object Debugger - + Split Staff... - + 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 - + Foto-Mode - + Resolution (%1 dpi)... - + transparent background - + Save As (print mode)... - + Save As (screenshot mode)... - + MuseScore: Set Output Resolution - + Set output resolution for png/svg - + MuseScore: Save As - + cannot determine file type @@ -9942,92 +10082,97 @@ please select a measure and try again - + Segment - + Ticks - - Tick: - - - - + Bar - + Beat - + Clef Segment - + Key Signature - + Time Signature - + Begin Repeat - + Chord/Rest - + Breath Segment - + End Bar Line - + Time Signature Announce - + SpannerFor: - + SpannerBack: - + Annotations: - + Lyrics: - + + tick: + + + + + rTick: + + + + Segment Type: @@ -10220,22 +10365,23 @@ Sequencer will be disabled. SlurPropertyBase - Volta Properties - - - Slur Properties - solid + Solid - dotted + Dotted + + + + + Dashed @@ -10758,7 +10904,7 @@ altera - + MuseScore Startup Dialog @@ -11054,13 +11200,13 @@ altera - + Text: do not translate - + Offset: do not translate @@ -11098,7 +11244,12 @@ altera - + + layoutToParentWidth + + + + TextStyle: do not translate @@ -11339,7 +11490,6 @@ altera - Color: @@ -11349,159 +11499,170 @@ altera - + System Flag - + Offset - + X: coordinate - + horizontal offset to reference point - + 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 - + enable text frame - + Frame - + draw circled frame - + Circle - + draw boxed frame - + Box - + Width: - + frame line width - - + + mm - + Margin: - + frame inner margin - + Round: - + corner round - + + Foreground Color: + + + + + frame color + + + Background Color: + + TextStyleDialog @@ -11757,32 +11918,74 @@ please choose a different name: - + / - + + + 1 + + + + + + 2 + + + + + + 4 + + + + + + 8 + + + + + + 16 + + + + + + 32 + + + + + + 64 + + + + Pickup Measure - + Time Signature - + Enter Number of Measures: - + Measures: - + <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:9pt; font-weight:400; font-style:normal;"> @@ -12323,21 +12526,16 @@ p, li { white-space: pre-wrap; } - + round bracket action - - - Local handbook - - - Local &Handbook... + Local handbook @@ -12346,7 +12544,7 @@ p, li { white-space: pre-wrap; } - + File open @@ -12356,7 +12554,7 @@ p, li { white-space: pre-wrap; } - + File save @@ -12366,7 +12564,7 @@ p, li { white-space: pre-wrap; } - + File save as @@ -12376,12 +12574,12 @@ p, li { white-space: pre-wrap; } - + File save a copy - + Save a Copy... @@ -12396,12 +12594,12 @@ p, li { white-space: pre-wrap; } - + File reload - + Reload @@ -12411,7 +12609,7 @@ p, li { white-space: pre-wrap; } - + File close @@ -12426,7 +12624,7 @@ p, li { white-space: pre-wrap; } - + Print @@ -12437,6 +12635,7 @@ p, li { white-space: pre-wrap; } + Undo @@ -12447,6 +12646,7 @@ p, li { white-space: pre-wrap; } + Redo @@ -12461,45 +12661,43 @@ p, li { white-space: pre-wrap; } - + Copy - + Paste - - + Show instruments dialog - - + Note input mode - + + Note Input - - + Enter unison above - + Export Parts - + Export Parts... @@ -12509,2689 +12707,2102 @@ p, li { white-space: pre-wrap; } - + 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 - - + Enter seventh above - + Seventh Above - - + 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 - - More stretch - - - - + 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 - - Flip Direction - - - - - + Pitch up - + Up - + Pitch up octave - + Up Octave - + Pitch up by an octave - - + Select Section - - 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 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 - - &Load Style... - - - - - &Save Style... - - - - - - Save style as default - - - - - Save Style As &Default... - - - - - Select A&ll - - - - + &Transpose... - - - Violin clef - - - - + Violin Clef - - - Bass clef - - - - + Bass Clef - - + Display in concert pitch - - &Concert Pitch - - - - - Repeat Last Command - - - - + next syllable - + previous syllable - + toggle visibility - + set visible - + set unvisible - - - Toggle system break - - - - - - Toggle page break - - - - - - Toggle section break - - - - + Toggle Section Break - - - Edit element - - - - - &Reset + + Show Unprintable - - De&bugger + + Show Page Margins - - Reset &Stretch + + Manage parts - - Show Unprintable + + Show inspector - - - - Show Page Margins + + Reset measure stretch - - &Search + + Reset user settings - - &General... + + Note entry: whole rest - - &Text... + + Whole rest - - &Chords... + + Note entry: half rest - - Parts + + Half rest - - Par&ts... + + Note entry: quarter rest - - Manage parts + + Quarter rest - - Additional &Media... + + Note entry: 8th rest - - &Page Settings... + + 8th rest - - &Album... + + Tempo Marking... - - Show Inspector + + Tempo Marking - - Show inspector + + Text - - - Reset measure stretch + + Add Frame Text - - - Reset user settings + + Load Style... - - - Show debugger + + Save Style... - - - Show invisible + + Save Style As Default... - - - Show unprintable + + Select All - - - Show frames + + Concert Pitch - - - Enable script debugger + + Info... - - Note entry: whole rest + + Reset - - - Whole rest + + Debugger - - Note entry: half rest + + Reset Stretch - - - Half rest + + Insert Special Characters - - Note entry: quarter rest + + Backspace - - - Quarter rest + + Find - - Note entry: 8th rest + + Mirror note head - - - 8th rest + + General... - - - - Backspace + + Edit general style - - - - Mirror note head + + Text... - - - Edit general style + + Chords... - - - + Double duration - - - + Half duration - - + Follow song - - + Display documents side by side - - + Display documents stacked - - Show score image + + Show OMR image - - - Show OMR image + + Enharmonic up - - - - Enharmonic up + + Parts... - - - + Enharmonic down - - - + Create new revision - - - + Toggle foto mode - - Full screen - - - - - F&ull Screen - - - - - F&ull screen - - - - - - + Enable horizontal raster - - - + Enable vertical raster - - - + Configure raster - - Re-pitch mode - - - - + 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 - - - up+shift+ctrl - - - - - + Pitch down - + Down - + Pitch down octave - + Down octave - + Pitch down by an octave - + Down Note in Chord - - + + Go to lower pitched note in chord - - - &Open... - - - - - &Save - - - - - Save &As... - - - - - &Close - - - - - File new - - - &New... - - - - - &Print... - - - - - &Undo - - - - - &Redo - - - - - Cu&t - - - - - &Copy - - - - - &Paste + File new - - + Diatonic pitch down - + Diatonic down - - + Go to bottom note in chord - + Bottom Note in Chord - + + Move down - - - down+shift+ctrl - - - - - - - - + + Previous chord - - Previous Chord - - - - - - - - + + Previous measure - - Previous Measure - - - - - - - - + + Next chord - - Next Chord + + + Next measure - - - - - - Next measure + + + Delete - - Next Measure + + Delete contents of the selected measures - - - left+shift + + Timewise Delete - - - left+ctrl + + Delete element and duration - - - right+shift + + Delete Selected Measures - - - right+ctrl+shift + + Append measures - - - shift+home + + Append Measures... - - - shift+end + + Insert measures - - - ctrl+shift+home + + Insert Measures... - - - ctrl+shift+end + + Local Handbook... - - - Delete + + Open... - - Delete contents of the selected measures + + Save - - Timewise Delete + + Save As... - - Delete element and duration + + Export... - - - Delete selected measures + + Close - - Delete Selected Measures + + New... - - Append measures + + Print... - - Append Measures... + + Instruments... - - Insert measures + + + Add More Stretch - - Insert Measures... + + Add Less Stretch - - - + + Insert Horizontal Frame - - - + + Insert Vertical Frame - + Append Horizontal Frame - + Append Vertical Frame - - + Duplet - - + Triplet - - + Quadruplet - - + Quintuplet - - + Sextuplet - - + Septuplet - - + Octuplet - - + Nonuplet - + Other... - - - Longa - - - - - - Flat - - - - - - Enable sound while editing - - - - - - - Palette - - - - - Play Panel - - - - - - - Navigator - - - - - - - Mixer - - - - - Transport - - - - - Status Bar - - - - - - - Quit - - - - - Zoom Canvas + + + Longa - - - - Lyrics + + + Flat - - Tempo... + + + Enable sound while editing - - - Tempo + + Palette - - Save Selection + + Play Panel - - Save Selection... + + Navigator - - Save current selection as new score + + Mixer - - Export score + + Transport - - &Export... + + Status Bar - - &Instruments... + + Quit - - &Note Input + + Lyrics - - - Respell pitches + + Save Selection - - &Respell Pitches + + Save Selection... - - Add &More Stretch + + Save current selection as new score - - Add &Less Stretch + + Export score - - Reset &Beam Mode + + 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 - - - - + Append One Measure - - Insert one measure - - - - + Insert One Measure - - - Insert horizontal frame - - - - - Insert text frame - - - - - + + Insert Text Frame - - Append text frame - - - - + Append Text Frame - - Insert fret diagram frame - - - - - + + Insert Fret Diagram Frame - - - Insert vertical frame - - - - - Append horizontal frame - - - - - Append vertical 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, Slower - - - - - + Feathered beam, faster - - Feathered Beam, Faster + + Transport toolbar - - - Play panel + + Note input toolbar - - Transport toolbar + + Zoom canvas - - Note input toolbar + + Full Screen - - - Status bar + + Layers... - - - Zoom canvas + + MuseScore Connect - - - - MuseScore Connect + + Plugin Creator - + Inspector - + Show OMR Panel - + OmrPanel - - Show OMR PAnel - - - - - metronome - - - - + 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 - - Frame 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 - - - Select all - - - - - + Transpose - - + Exchange Voice 1-2 - - Exchange voice 1-2 - - - - - - Exchange voice 1-3 - - - - + Exchange Voice 1-3 - - - Exchange voice 1-4 - - - - + Exchange Voice 1-4 - - - Exchange voice 2-3 - - - - + Exchange Voice 2-3 - - - Exchange voice 2-4 - - - - + Exchange Voice 2-4 - - - Exchange voice 3-4 - - - - + Exchange Voice 3-4 - - + Repeat last command - - + Edit score info - - &Info... - - - - + Toggle System Break - + Toggle Page Break - + Edit Element - + Show Invisible - + Show Frames - - - Insert special characters - - - - + Insert Special Characters... - - Enable Script Debugger - - - - - - Search - - - - - Zoom in - - - - + Zoom In - - Zoom out - - - - + 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 - - Follow Song - - - - + Documents Side by Side - + Documents Stacked - - + Layers - - &Layers... - - - - - - + next score - - - + previous score @@ -15199,12 +14810,12 @@ p, li { white-space: pre-wrap; } articulation - + Bend - + Tremolo Bar @@ -15212,7 +14823,7 @@ p, li { white-space: pre-wrap; } barlines - + Barlines @@ -15220,45 +14831,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 @@ -15267,7 +14878,7 @@ p, li { white-space: pre-wrap; } images_directory - + Images @@ -15275,100 +14886,100 @@ 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 - + Text line - + Line @@ -15457,7 +15068,7 @@ p, li { white-space: pre-wrap; } plugins_directory - + Plugins @@ -15465,37 +15076,37 @@ p, li { white-space: pre-wrap; } preferences - + Every day - + Every 3 days - + Every week - + Every 2 weeks - + Every month - + Every 2 months - + Never @@ -15503,7 +15114,7 @@ p, li { white-space: pre-wrap; } scores_directory - + Scores @@ -15511,7 +15122,7 @@ p, li { white-space: pre-wrap; } soundfonts_directory - + Soundfonts @@ -15519,7 +15130,7 @@ p, li { white-space: pre-wrap; } styles_directory - + Styles @@ -15527,7 +15138,7 @@ p, li { white-space: pre-wrap; } templates_directory - + Templates diff --git a/share/locale/mscore_hi_IN.ts b/share/locale/mscore_hi_IN.ts index a61e137df1af..e7465edf1471 100644 --- a/share/locale/mscore_hi_IN.ts +++ b/share/locale/mscore_hi_IN.ts @@ -134,10 +134,6 @@ p, li { white-space: pre-wrap; } Remove Score - - score list - - move current score down in list @@ -158,18 +154,6 @@ p, li { white-space: pre-wrap; } Add Score - - path to new score you want to add - - - - open file manager - - - - ... - - create new album @@ -202,6 +186,18 @@ p, li { white-space: pre-wrap; } Join Scores + + Load + भरो + + + MuseScore: Add Score + + + + MuseScore: Load Album + + ArticulationBase @@ -1159,15 +1155,15 @@ spatium unit छोटा - showCourtesyClef + Hide courtesy clef - Hide courtesy clef + Show courtesy clef - Show courtesy clef + showCourtesy @@ -1193,11 +1189,11 @@ spatium unit - Drumset + Drums - Drums + Edit Drumset @@ -2777,18 +2773,10 @@ spatium unit Time sig. left margin - - Clef-key distance - - Clef-barline distance - - Begin repeat left margin - - Show repeat bar tips ("winged" repeats) @@ -3185,6 +3173,10 @@ p, li { white-space: pre-wrap; } Max. System distance + + Clef/Key right margin + + EditTempoBase @@ -3562,6 +3554,28 @@ spatium unit Down नीचे + + Offset X: + + + + sp + spatium unit +---------- +spatium unit + + + + Offset Y: + + + + + InspectorClef + + Show Courtesy Clef + + InspectorElement @@ -3701,6 +3715,36 @@ spatium unit + + InspectorKeySig + + Show Courtesy Time Signature + + + + Show Naturals + + + + + InspectorLasso + + Form + पृष्ट/फॉर्म + + + Lasso + + + + Position: + + + + Size + + + InspectorNote @@ -3945,6 +3989,13 @@ spatium unit + + InspectorTimeSig + + Show Courtesy Time Signature + + + InspectorVBox @@ -5078,10 +5129,6 @@ Would you like to locate %2 now? &About - - MuseScore: Open Help - - note entry mode @@ -5211,25 +5258,10 @@ before closing? End-Start Repeat - - Search - - Go To: - - MuseScore handbook not found at: - - - - - - -From the "Help" menu try choosing "Online Handbook" instead. - - Grace Notes @@ -5324,27 +5356,10 @@ Restore session? Varied coda - - Script -%1 -is incompatible with current interface - - - - MuseScore is too old to run script -%1 - - Bar %1 Beat %2.%3 - - Error loading plugin -"%1" line %2: -%3 - - MuseScore: Load error @@ -5954,6 +5969,30 @@ please choose a different name: Report a bug + + MuseScore: Load Plugin + + + + MuseScore Plugin (*.qml);;All Files (*) + + + + MuseScore: Save Plugin + + + + MuseScore Plugin File (*.qml) + + + + &Plugins + + + + Find + + MyWebView @@ -6559,29 +6598,104 @@ please choose a different name: ३ {100%?} - Straight + master volume - Swing + Vol. + short text for volume slider - Shuffle + Tmp. + short text for tempo slider + + + PluginCreator - master volume + File Operations - Vol. - short text for volume slider + Edit Operations - Tmp. - short text for tempo slider + MuseScore Plugin Editor + + + + MuseScore + म्यूजस्कोर + + + Plugin "%1" has changes +save before closing? + + + + untitled + + + + Manual + + + + + PluginCreatorBase + + MainWindow + + + + Run + + + + Stop + + + + File + + + + Help + + + + Edit + + + + New + + + + Open + + + + Save + बचाओ + + + Manual + + + + Undo + + + + Redo + + + + Quit @@ -6619,14 +6733,6 @@ please choose a different name: Choose Default Style for Parts - - load - - - - Plugin Path - - Choose Scores Directory @@ -6698,10 +6804,6 @@ please choose a different name: Paths - - Instrument List: - - Windows @@ -6994,10 +7096,6 @@ please choose a different name: dark - - light - - use native file dialogs @@ -7266,6 +7364,34 @@ please choose a different name: Character Set: + + Instrument List2: + + + + Instrument List1: + + + + Name: + नाम: + + + Path: + + + + Version: + + + + Load + भरो + + + Define Shortcut + + Properties @@ -7323,14 +7449,6 @@ please choose a different name: MuseScore: load Style failed: - - MuseScore - म्यूजस्कोर - - - reading file < - - MuseScore: Import Capella @@ -7347,10 +7465,6 @@ please choose a different name: MuseScore: Load languages failed: - - MuseScore: register script plugin: - - MuseScore: Import GuitarPro @@ -7406,16 +7520,12 @@ failed: MuseScore: Save File - - > failed: - - Load failed: - &Quit + Untitled @@ -7779,15 +7889,19 @@ cannot split tuplet - Tick: + Bar - Bar + Beat - Beat + tick: + + + + rTick: @@ -7945,19 +8059,19 @@ Sequencer will be disabled. SlurPropertyBase - Volta Properties - वोल्टा गुणधर्म + Slur Properties + - Slur Properties + Solid - solid + Dotted - dotted + Dashed @@ -8636,6 +8750,10 @@ altera styled + + layoutToParentWidth + + TextEditor @@ -8951,6 +9069,14 @@ altera Text + + Foreground Color: + + + + Background Color: + + TextStyleDialog @@ -9180,6 +9306,34 @@ 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;">Hint: you can also add or remove measures after creation of the score.</p></body></html> + + 1 + + + + 2 + + + + 4 + + + + 8 + १ {8?} + + + 16 + १ {16?} + + + 32 + ३ {32?} + + + 64 + ३ {64?} + TransposeDialogBase @@ -9615,10 +9769,6 @@ p, li { white-space: pre-wrap; } action - - Local &Handbook... - - Save a Copy... @@ -9887,46 +10037,6 @@ p, li { white-space: pre-wrap; } Reset Beam Mode - - up+shift+ctrl - - - - down+shift+ctrl - - - - left+ctrl - - - - left+shift - - - - right+shift - - - - right+ctrl+shift - - - - shift+home - - - - shift+end - - - - ctrl+shift+home - - - - ctrl+shift+end - - Delete Selected Measures @@ -10027,22 +10137,10 @@ p, li { white-space: pre-wrap; } Quit - - Zoom Canvas - - Lyrics लिरिक्स - - Tempo... - - - - Tempo - - Metronome @@ -10055,10 +10153,6 @@ p, li { white-space: pre-wrap; } Staff Text - - Frame Text - - Title शीर्षक @@ -10151,10 +10245,6 @@ p, li { white-space: pre-wrap; } Show Frames - - Search - - Zoom In @@ -10187,10 +10277,6 @@ p, li { white-space: pre-wrap; } Repeat selection - - Follow Song - - Local handbook @@ -10327,10 +10413,6 @@ p, li { white-space: pre-wrap; } Trill - - More stretch - - Less stretch @@ -10343,10 +10425,6 @@ p, li { white-space: pre-wrap; } Flip direction - - Flip Direction - - Pitch up @@ -10431,38 +10509,18 @@ p, li { white-space: pre-wrap; } Previous chord - - Previous Chord - - Previous measure - - Previous Measure - - Next chord - - Next Chord - - Next measure - - Next Measure - - - - Delete selected measures - - Append measures @@ -10503,10 +10561,6 @@ p, li { white-space: pre-wrap; } Save style - - Select all - - Delete मिटाना @@ -10523,54 +10577,10 @@ p, li { white-space: pre-wrap; } Delete element and duration - - &Open... - - - - &Save - - - - Save &As... - - - - &Close - - File new - - &New... - - - - &Print... - - - - &Undo - - - - &Redo - - - - Cu&t - - - - &Copy - - - - &Paste - - Insert note A @@ -10727,62 +10737,26 @@ p, li { white-space: pre-wrap; } Timewise delete - - Append one measure - - Append One Measure - - Insert one measure - - Insert One Measure - - Insert horizontal frame - - - - Insert text frame - - Insert Text Frame - - Append text frame - - Append Text Frame - - Insert fret diagram frame - - Insert Fret Diagram Frame - - Insert vertical frame - - - - Append horizontal frame - - - - Append vertical frame - - Other tuplets @@ -10959,22 +10933,10 @@ p, li { white-space: pre-wrap; } Feathered beam, slower - - Feathered Beam, Slower - - Feathered beam, faster - - Feathered Beam, Faster - - - - Play panel - - Transport toolbar @@ -10983,10 +10945,6 @@ p, li { white-space: pre-wrap; } Note input toolbar - - Status bar - - Zoom canvas @@ -10999,10 +10957,6 @@ p, li { white-space: pre-wrap; } Add staff text - - Add text - - Add title text @@ -11051,82 +11005,26 @@ p, li { white-space: pre-wrap; } Player seek to end - - Select A&ll - - &Transpose... - - Violin clef - - Violin Clef - - Bass 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 - - Toggle Section Break - - Edit element - - Show inspector @@ -11135,18 +11033,6 @@ p, li { white-space: pre-wrap; } Reset measure stretch - - Show invisible - - - - Show frames - - - - Enable script debugger - - Note entry: whole rest @@ -11183,14 +11069,6 @@ p, li { white-space: pre-wrap; } Backspace - - Zoom in - - - - Zoom out - - Mirror note head @@ -11227,10 +11105,6 @@ p, li { white-space: pre-wrap; } Display documents stacked - - Show score image - - Show OMR image @@ -11251,18 +11125,6 @@ p, li { white-space: pre-wrap; } Toggle foto mode - - Full screen - - - - F&ull Screen - - - - F&ull screen - - Enable horizontal raster @@ -11275,10 +11137,6 @@ p, li { white-space: pre-wrap; } Configure raster - - Re-pitch mode - - Re-Pitch Mode @@ -11307,10 +11165,6 @@ p, li { white-space: pre-wrap; } 128th note - - Show unprintable - - Split Measure @@ -11348,331 +11202,343 @@ p, li { white-space: pre-wrap; } - Show debugger + Piano Keyboard - Piano Keyboard + Save Selection - Show Inspector + Save Selection... - Save Selection + Save current selection as new score - Save Selection... + Export score - Save current selection as new score + Respell pitches - Export score + Grace: 8nd after + + + + Pan score while playing on/off - &Export... + Pan - &Instruments... + Show Unprintable - &Note Input + Show Page Margins - Respell pitches + Manage parts - &Respell Pitches + Inspector - Add &More Stretch + Show OMR Panel - Add &Less Stretch + OmrPanel - Reset &Beam Mode + toggle metronome - Grace: 8nd after + Figured Bass - Pan score while playing on/off + Next Score - Pan + Previous Score - &Load Style... + Transpose Up - &Save Style... + Transpose Down - Save style as default + Show master palette - Save Style As &Default... + Master Palette... - &Concert Pitch + Insert Measure - &Reset + Toggle View Mode - De&bugger + Export Parts - Reset &Stretch + Export Parts... - Show Unprintable + Save a copy of the score's parts in various formats - Show Page Margins + Add marcato - &Search + Marcato - &General... + Select Section - &Text... + Note duration: double whole - &Chords... + Double whole note - Parts + Whole note - Par&ts... + Half note - Manage parts + Quarter note - Additional &Media... + 8th note - &Page Settings... + 16th note - &Album... + 32nd note - Inspector + 64th note - Show OMR Panel + Edit score info - OmrPanel + Insert Special Characters... - Show OMR PAnel + Layers - metronome + MuseScore Connect - toggle metronome + next syllable - Figured Bass + previous syllable - Next Score + toggle visibility - Previous Score + set visible - Transpose Up + set unvisible - Transpose Down + Local Handbook... - Show master palette + Open... - Master Palette... + Save + बचाओ + + + Save As... - Insert Measure + Export... - Toggle View Mode + Close - Export Parts + New... - Export Parts... + Print... - Save a copy of the score's parts in various formats + Instruments... - Add marcato + Add More Stretch - Marcato + Add Less Stretch - Select Section + Tempo Marking... - select section + Tempo Marking - Note duration: double whole + Text - Double whole note + Add Frame Text - Whole note + Load Style... - Half note + Save Style... - Quarter note + Save Style As Default... - 8th note + Select All - 16th note + Concert Pitch - 32nd note + Info... - 64th note + Reset - Edit score info + Debugger - &Info... + Reset Stretch - Insert special characters + Insert Special Characters - Insert Special Characters... + Find - Enable Script Debugger + General... - Layers + Text... - &Layers... + Chords... - MuseScore Connect + Parts... - next syllable + Full Screen - previous syllable + Additional Media... - toggle visibility + Page Settings... - set visible + Album... - set unvisible + Layers... + + + + Plugin Creator diff --git a/share/locale/mscore_hr.ts b/share/locale/mscore_hr.ts index 30bb288f8c2e..cad974a88d33 100644 --- a/share/locale/mscore_hr.ts +++ b/share/locale/mscore_hr.ts @@ -134,10 +134,6 @@ p, li { white-space: pre-wrap; } Remove Score - - score list - - move current score down in list @@ -159,47 +155,47 @@ p, li { white-space: pre-wrap; } - path to new score you want to add + create new album - open file manager + New - ... + load an existing album - create new album + Print Album - New + MuseScore Album Files (*.album);; - load an existing album + All Files (*) - Print Album + MuseScore Files (*.mscz *.mscx *.msc);; - MuseScore Album Files (*.album);; + Join Scores - All Files (*) + Load - MuseScore Files (*.mscz *.mscx *.msc);; + MuseScore: Add Score - Join Scores + MuseScore: Load Album @@ -1159,15 +1155,15 @@ spatium unit Small - showCourtesyClef + Hide courtesy clef - Hide courtesy clef + Show courtesy clef - Show courtesy clef + showCourtesy @@ -1193,11 +1189,11 @@ spatium unit - Drumset + Drums - Drums + Edit Drumset @@ -2777,18 +2773,10 @@ spatium unit Time sig. left margin - - Clef-key distance - - Clef-barline distance - - Begin repeat left margin - - Show repeat bar tips ("winged" repeats) @@ -3185,6 +3173,10 @@ p, li { white-space: pre-wrap; } Max. System distance + + Clef/Key right margin + + EditTempoBase @@ -3562,6 +3554,28 @@ spatium unit Down + + Offset X: + + + + sp + spatium unit +---------- +spatium unit + + + + Offset Y: + + + + + InspectorClef + + Show Courtesy Clef + + InspectorElement @@ -3701,6 +3715,36 @@ spatium unit + + InspectorKeySig + + Show Courtesy Time Signature + + + + Show Naturals + + + + + InspectorLasso + + Form + + + + Lasso + + + + Position: + + + + Size + + + InspectorNote @@ -3945,6 +3989,13 @@ spatium unit + + InspectorTimeSig + + Show Courtesy Time Signature + + + InspectorVBox @@ -5143,10 +5194,6 @@ Would you like to locate %2 now? &About - - MuseScore: Open Help - - note entry mode Note entry mode @@ -5212,25 +5259,10 @@ before closing? End-Start Repeat End-start repeat - - Search - - Go To: - - MuseScore handbook not found at: - - - - - - -From the "Help" menu try choosing "Online Handbook" instead. - - Grace Notes @@ -5325,27 +5357,10 @@ Restore session? Varied coda - - Script -%1 -is incompatible with current interface - - - - MuseScore is too old to run script -%1 - - Bar %1 Beat %2.%3 - - Error loading plugin -"%1" line %2: -%3 - - MuseScore: Load error @@ -5955,6 +5970,30 @@ please choose a different name: Report a bug + + MuseScore: Load Plugin + + + + MuseScore Plugin (*.qml);;All Files (*) + + + + MuseScore: Save Plugin + + + + MuseScore Plugin File (*.qml) + + + + &Plugins + + + + Find + + MyWebView @@ -6560,29 +6599,104 @@ please choose a different name: - Straight + master volume - Swing + Vol. + short text for volume slider - Shuffle + Tmp. + short text for tempo slider + + + PluginCreator - master volume + File Operations - Vol. - short text for volume slider + Edit Operations - Tmp. - short text for tempo slider + MuseScore Plugin Editor + + + + MuseScore + + + + Plugin "%1" has changes +save before closing? + + + + untitled + + + + Manual + + + + + PluginCreatorBase + + MainWindow + + + + Run + + + + Stop + + + + File + + + + Help + + + + Edit + + + + New + + + + Open + + + + Save + + + + Manual + + + + Undo + + + + Redo + + + + Quit @@ -6620,14 +6734,6 @@ please choose a different name: Choose Default Style for Parts - - load - - - - Plugin Path - - Choose Scores Directory @@ -6691,10 +6797,6 @@ please choose a different name: Paths - - Instrument List: - Instrument list: - Windows @@ -6995,10 +7097,6 @@ please choose a different name: dark - - light - - use native file dialogs @@ -7267,6 +7365,34 @@ please choose a different name: Character Set: + + Instrument List2: + + + + Instrument List1: + + + + Name: + + + + Path: + + + + Version: + + + + Load + + + + Define Shortcut + + Properties @@ -7320,14 +7446,6 @@ please choose a different name: MuseScore: invalid command MuseScore: Invalid Command - - MuseScore - - - - reading file < - Reading file < - MuseScore: Load Style failed: @@ -7348,10 +7466,6 @@ please choose a different name: MuseScore: Load languages failed: - - MuseScore: register script plugin: - - MuseScore: Import GuitarPro @@ -7407,16 +7521,12 @@ Failed: MuseScore: Save File - - > failed: - - Load failed: - &Quit + Untitled @@ -7782,10 +7892,6 @@ cannot split tuplet Ticks - - Tick: - - Bar @@ -7794,9 +7900,17 @@ cannot split tuplet Beat - - - SelectDialog + + tick: + + + + rTick: + + + + + SelectDialog MuseScore: Select @@ -7949,19 +8063,19 @@ Sequencer will be disabled. SlurPropertyBase - Volta Properties + Slur Properties - Slur Properties + Solid - solid - Solid + Dotted + - dotted + Dashed @@ -8640,6 +8754,10 @@ altera styled + + layoutToParentWidth + + TextEditor @@ -8955,6 +9073,14 @@ altera Text + + Foreground Color: + + + + Background Color: + + TextStyleDialog @@ -9184,6 +9310,34 @@ 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;">Hint: you can also add or remove measures after creation of the score.</p></body></html> + + 1 + + + + 2 + + + + 4 + + + + 8 + + + + 16 + + + + 32 + + + + 64 + + TransposeDialogBase @@ -9619,10 +9773,6 @@ p, li { white-space: pre-wrap; } action - - Local &Handbook... - - Save a Copy... @@ -9891,46 +10041,6 @@ p, li { white-space: pre-wrap; } Reset Beam Mode - - up+shift+ctrl - - - - down+shift+ctrl - - - - left+ctrl - - - - left+shift - - - - right+shift - - - - right+ctrl+shift - - - - shift+home - - - - shift+end - - - - ctrl+shift+home - - - - ctrl+shift+end - - Delete Selected Measures @@ -10031,22 +10141,10 @@ p, li { white-space: pre-wrap; } Quit - - Zoom Canvas - - Lyrics - - Tempo... - - - - Tempo - - Metronome @@ -10059,10 +10157,6 @@ p, li { white-space: pre-wrap; } Staff Text - - Frame Text - - Title @@ -10155,10 +10249,6 @@ p, li { white-space: pre-wrap; } Show Frames - - Search - - Zoom In @@ -10191,10 +10281,6 @@ p, li { white-space: pre-wrap; } Repeat selection - - Follow Song - - Local handbook @@ -10331,10 +10417,6 @@ p, li { white-space: pre-wrap; } Trill - - More stretch - - Less stretch @@ -10347,10 +10429,6 @@ p, li { white-space: pre-wrap; } Flip direction - - Flip Direction - - Pitch up @@ -10435,38 +10513,18 @@ p, li { white-space: pre-wrap; } Previous chord - - Previous Chord - - Previous measure - - Previous Measure - - Next chord - - Next Chord - - Next measure - - Next Measure - - - - Delete selected measures - - Append measures @@ -10507,10 +10565,6 @@ p, li { white-space: pre-wrap; } Save style - - Select all - - Delete @@ -10527,54 +10581,10 @@ p, li { white-space: pre-wrap; } Delete element and duration - - &Open... - - - - &Save - - - - Save &As... - - - - &Close - - File new - - &New... - - - - &Print... - - - - &Undo - - - - &Redo - - - - Cu&t - - - - &Copy - - - - &Paste - - Insert note A @@ -10731,62 +10741,26 @@ p, li { white-space: pre-wrap; } Timewise delete - - Append one measure - - Append One Measure - - Insert one measure - - Insert One Measure - - Insert horizontal frame - - - - Insert text frame - - Insert Text Frame - - Append text frame - - Append Text Frame - - Insert fret diagram frame - - Insert Fret Diagram Frame - - Insert vertical frame - - - - Append horizontal frame - - - - Append vertical frame - - Other tuplets @@ -10963,22 +10937,10 @@ p, li { white-space: pre-wrap; } Feathered beam, slower - - Feathered Beam, Slower - - Feathered beam, faster - - Feathered Beam, Faster - - - - Play panel - - Transport toolbar @@ -10987,10 +10949,6 @@ p, li { white-space: pre-wrap; } Note input toolbar - - Status bar - - Zoom canvas @@ -11003,10 +10961,6 @@ p, li { white-space: pre-wrap; } Add staff text - - Add text - - Add title text @@ -11055,82 +11009,26 @@ p, li { white-space: pre-wrap; } Player seek to end - - Select A&ll - - &Transpose... - - Violin clef - - Violin Clef - - Bass 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 - - Toggle Section Break - - Edit element - - Show inspector @@ -11139,18 +11037,6 @@ p, li { white-space: pre-wrap; } Reset measure stretch - - Show invisible - - - - Show frames - - - - Enable script debugger - - Note entry: whole rest @@ -11187,14 +11073,6 @@ p, li { white-space: pre-wrap; } Backspace - - Zoom in - - - - Zoom out - - Mirror note head @@ -11231,10 +11109,6 @@ p, li { white-space: pre-wrap; } Display documents stacked - - Show score image - - Show OMR image @@ -11255,18 +11129,6 @@ p, li { white-space: pre-wrap; } Toggle foto mode - - Full screen - - - - F&ull Screen - - - - F&ull screen - - Enable horizontal raster @@ -11279,10 +11141,6 @@ p, li { white-space: pre-wrap; } Configure raster - - Re-pitch mode - - Re-Pitch Mode @@ -11311,10 +11169,6 @@ p, li { white-space: pre-wrap; } 128th note - - Show unprintable - - Split Measure @@ -11352,331 +11206,343 @@ p, li { white-space: pre-wrap; } - Show debugger + Piano Keyboard - Piano Keyboard + Save Selection - Show Inspector + Save Selection... - Save Selection + Save current selection as new score - Save Selection... + Export score - Save current selection as new score + Respell pitches - Export score + Grace: 8nd after + + + + Pan score while playing on/off - &Export... + Pan - &Instruments... + Show Unprintable - &Note Input + Show Page Margins - Respell pitches + Manage parts - &Respell Pitches + Inspector - Add &More Stretch + Show OMR Panel - Add &Less Stretch + OmrPanel - Reset &Beam Mode + toggle metronome - Grace: 8nd after + Figured Bass - Pan score while playing on/off + Next Score - Pan + Previous Score - &Load Style... + Transpose Up - &Save Style... + Transpose Down - Save style as default + Show master palette - Save Style As &Default... + Master Palette... - &Concert Pitch + Insert Measure - &Reset + Toggle View Mode - De&bugger + Export Parts - Reset &Stretch + Export Parts... - Show Unprintable + Save a copy of the score's parts in various formats - Show Page Margins + Add marcato - &Search + Marcato - &General... + Select Section - &Text... + Note duration: double whole - &Chords... + Double whole note - Parts + Whole note - Par&ts... + Half note - Manage parts + Quarter note - Additional &Media... + 8th note - &Page Settings... + 16th note - &Album... + 32nd note - Inspector + 64th note - Show OMR Panel + Edit score info - OmrPanel + Insert Special Characters... - Show OMR PAnel + Layers - metronome + MuseScore Connect - toggle metronome + next syllable - Figured Bass + previous syllable - Next Score + toggle visibility - Previous Score + set visible - Transpose Up + set unvisible - Transpose Down + Local Handbook... - Show master palette + Open... - Master Palette... + Save - Insert Measure + Save As... - Toggle View Mode + Export... - Export Parts + Close - Export Parts... + New... - Save a copy of the score's parts in various formats + Print... - Add marcato + Instruments... - Marcato + Add More Stretch - Select Section + Add Less Stretch - select section + Tempo Marking... - Note duration: double whole + Tempo Marking - Double whole note + Text - Whole note + Add Frame Text - Half note + Load Style... - Quarter note + Save Style... - 8th note + Save Style As Default... - 16th note + Select All - 32nd note + Concert Pitch - 64th note + Info... - Edit score info + Reset - &Info... + Debugger - Insert special characters + Reset Stretch - Insert Special Characters... + Insert Special Characters - Enable Script Debugger + Find - Layers + General... - &Layers... + Text... - MuseScore Connect + Chords... - next syllable + Parts... - previous syllable + Full Screen - toggle visibility + Additional Media... - set visible + Page Settings... - set unvisible + Album... + + + + Layers... + + + + Plugin Creator diff --git a/share/locale/mscore_hu.ts b/share/locale/mscore_hu.ts index ced405416241..4509e6c617ba 100644 --- a/share/locale/mscore_hu.ts +++ b/share/locale/mscore_hu.ts @@ -143,10 +143,6 @@ p, li { white-space: pre-wrap; } Remove Score - - score list - - move current score down in list @@ -167,18 +163,6 @@ p, li { white-space: pre-wrap; } Add Score - - path to new score you want to add - - - - open file manager - - - - ... - ... - create new album @@ -211,6 +195,18 @@ p, li { white-space: pre-wrap; } Join Scores + + Load + Betöltés + + + MuseScore: Add Score + + + + MuseScore: Load Album + + ArticulationBase @@ -1168,15 +1164,15 @@ spatium unit kicsi - showCourtesyClef + Hide courtesy clef - Hide courtesy clef + Show courtesy clef - Show courtesy clef + showCourtesy @@ -1201,14 +1197,14 @@ spatium unit Drum Tools - - Drumset - - Drums Dobok + + Edit Drumset + + DrumrollEditor @@ -2786,18 +2782,10 @@ spatium unit Time sig. left margin Ütemelőjegyzés bal margója - - Clef-key distance - Előjegyzés távolság - Clef-barline distance Kulcs-ütemvonal távolság - - Begin repeat left margin - Kezdő ismétlőjel bal margója - Show repeat bar tips ("winged" repeats) Az ismétlőjel két végén (balra vagy jobbra rajzolt) füleg megjelenítése @@ -3194,6 +3182,10 @@ p, li { white-space: pre-wrap; } Max. System distance + + Clef/Key right margin + + EditTempoBase @@ -3571,6 +3563,28 @@ spatium unit Down Le + + Offset X: + + + + sp + spatium unit +---------- +spatium unit + sp + + + Offset Y: + + + + + InspectorClef + + Show Courtesy Clef + + InspectorElement @@ -3710,6 +3724,36 @@ spatium unit % + + InspectorKeySig + + Show Courtesy Time Signature + + + + Show Naturals + + + + + InspectorLasso + + Form + Ablak + + + Lasso + + + + Position: + + + + Size + + + InspectorNote @@ -3954,6 +3998,13 @@ spatium unit sp + + InspectorTimeSig + + Show Courtesy Time Signature + + + InspectorVBox @@ -5032,10 +5083,6 @@ Would you like to locate %2 now? Concert Pitch Koncertmagasság - - Search - Keresés - MuseScore MuseScore @@ -5194,10 +5241,6 @@ módosításait bezárás előtt? &About &Névjegy - - MuseScore: Open Help - MuseScore: Súgó megnyitása - no score nincs kotta @@ -5226,20 +5269,6 @@ módosításait bezárás előtt? Glissando Glissando - - MuseScore handbook not found at: - - A MuseScore kézikönyv nem található itt: - - - - - -From the "Help" menu try choosing "Online Handbook" instead. - - -A "Súgó" menüben válaszd inkább az "Online kézikönyv" pontot. - Grace Notes Díszítőhangok @@ -5336,33 +5365,10 @@ Helyreállítsa a munkamenetet? Varied coda Coda változat - - Script -%1 -is incompatible with current interface - A -%1 -szkript nem kompatibilis a jelenlegi interfésszel. - - - MuseScore is too old to run script -%1 - A MuseScore túl régi a -%1 -szkript futtatásához - Bar %1 Beat %2.%3 %1. ütem %2.%3. ütés - - Error loading plugin -"%1" line %2: -%3 - Hiba a(z) -"%1" beépülő modul betöltése közben a(z) %2. sorban: -%3 - MuseScore: Load error @@ -5972,6 +5978,30 @@ please choose a different name: Report a bug + + MuseScore: Load Plugin + + + + MuseScore Plugin (*.qml);;All Files (*) + + + + MuseScore: Save Plugin + + + + MuseScore Plugin File (*.qml) + + + + &Plugins + + + + Find + + MyWebView @@ -6576,18 +6606,6 @@ please choose a different name: 100% 100% - - Straight - Normál - - - Swing - Swing - - - Shuffle - Inga - master volume rendszer hangerő @@ -6603,6 +6621,93 @@ please choose a different name: + + PluginCreator + + File Operations + Fájlműveletek + + + Edit Operations + + + + MuseScore Plugin Editor + + + + MuseScore + MuseScore + + + Plugin "%1" has changes +save before closing? + + + + untitled + + + + Manual + + + + + PluginCreatorBase + + MainWindow + + + + Run + + + + Stop + + + + File + + + + Help + + + + Edit + + + + New + Új + + + Open + + + + Save + Mentés + + + Manual + + + + Undo + Visszavonás + + + Redo + Mégis + + + Quit + Kilépés + + PreferenceDialog @@ -6637,14 +6742,6 @@ please choose a different name: Choose Default Style for Parts - - load - - - - Plugin Path - - Choose Scores Directory @@ -6720,10 +6817,6 @@ please choose a different name: Paths Elérési utak - - Instrument List: - Hangszerlista: - Windows Ablakok @@ -7012,10 +7105,6 @@ please choose a different name: dark - - light - - use native file dialogs @@ -7284,6 +7373,34 @@ please choose a different name: Character Set: + + Instrument List2: + + + + Instrument List1: + + + + Name: + Név: + + + Path: + + + + Version: + + + + Load + Betöltés + + + Define Shortcut + + Properties @@ -7345,14 +7462,6 @@ please choose a different name: MuseScore: load Style failed: MuseScore: a stílus betöltése sikertelen: - - MuseScore - MuseScore - - - reading file < - fájl beolvasása < - MuseScore: invalid command MuseScore: érvénytelen parancs @@ -7365,10 +7474,6 @@ please choose a different name: MuseScore: Load languages failed: MuseScore: Nyelvek betöltése sikertelen: - - MuseScore: register script plugin: - MuseScore: szkript plugin regisztrálása - MuseScore: Import GuitarPro @@ -7424,17 +7529,13 @@ sikertelen: MuseScore: Save File MuseScore: Fájl mentése - - > failed: - - Load failed: Nem sikerült a betöltés: - &Quit - + Untitled + Névtelen @@ -7799,10 +7900,6 @@ cannot split tuplet Ticks - - Tick: - Ütés: - Bar @@ -7811,7 +7908,15 @@ cannot split tuplet Beat - + + tick: + + + + rTick: + + + SelectDialog @@ -7965,21 +8070,21 @@ Sequencer will be disabled. SlurPropertyBase - - Volta Properties - Volta tulajdonságai - Slur Properties Hajlítás tulajdonságai - solid - folytonos + Solid + - dotted - pontozott + Dotted + + + + Dashed + Áthúzott @@ -8657,6 +8762,10 @@ altera styled + + layoutToParentWidth + + TextEditor @@ -8972,6 +9081,14 @@ altera Text Szöveg + + Foreground Color: + + + + Background Color: + + TextStyleDialog @@ -9204,6 +9321,34 @@ p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'Sans Serif'; font-size:9pt; 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;">Tipp: a kotta létrehozása után is hozhatsz létre vagy törölhetsz ütemeket.</p></body></html> + + 1 + 1 + + + 2 + 2 + + + 4 + 4 + + + 8 + 8 + + + 16 + 16 + + + 32 + 32 + + + 64 + 64 + TransposeDialogBase @@ -9639,10 +9784,6 @@ p, li { white-space: pre-wrap; } action - - Local &Handbook... - Helyi &Kézikönyv... - Save a Copy... Másolat mentése... @@ -9911,46 +10052,6 @@ p, li { white-space: pre-wrap; } Reset Beam Mode Kottaszármód visszaállítása - - up+shift+ctrl - fel+Shift+Ctrl - - - down+shift+ctrl - le+Shift+Ctrl - - - left+ctrl - bal+Ctrl - - - left+shift - balra+Shift - - - right+shift - jobbra+Shift - - - right+ctrl+shift - jobbra+Ctrl+Shift - - - shift+home - Shift+Home - - - shift+end - Shift+End - - - ctrl+shift+home - Ctrl+Shift+Home - - - ctrl+shift+end - Ctrl+Shift+End - Delete Selected Measures Kijelölt ütemek törlése @@ -10051,22 +10152,10 @@ p, li { white-space: pre-wrap; } Quit Kilépés - - Zoom Canvas - Képre közelítés - Lyrics Dalszöveg - - Tempo... - Tempó... - - - Tempo - Tempó - Metronome Metronóm @@ -10079,10 +10168,6 @@ p, li { white-space: pre-wrap; } Staff Text Vonalrendszer szöveg - - Frame Text - Keret szöveg hozzáadása - Title Cím @@ -10175,10 +10260,6 @@ p, li { white-space: pre-wrap; } Show Frames Mutasd a kereteket - - Search - Keresés - Zoom In Nagyítás @@ -10211,10 +10292,6 @@ p, li { white-space: pre-wrap; } Repeat selection Kijelölés ismétlése - - Follow Song - Kövesd a dalt - Local handbook Helyi kézikönyv @@ -10351,10 +10428,6 @@ p, li { white-space: pre-wrap; } Trill Trilla - - More stretch - Tovább szélesítsd - Less stretch Kevesebb szélesítés @@ -10367,10 +10440,6 @@ p, li { white-space: pre-wrap; } Flip direction Kottaszár megfordítása - - Flip Direction - Kottaszár megfordítása - Pitch up Magasabbra @@ -10455,38 +10524,18 @@ p, li { white-space: pre-wrap; } Previous chord Előző akkord - - Previous Chord - Előző akkord - Previous measure Előző ütem - - Previous Measure - Előző ütem - Next chord Következő akkord - - Next Chord - Következő akkord - Next measure Következő ütem - - Next Measure - Következő ütem - - - Delete selected measures - Kijelölt ütemek törlése - Append measures Ütemek hozzáadása @@ -10527,10 +10576,6 @@ p, li { white-space: pre-wrap; } Save style Stílus mentése - - Select all - MIndent kijelöl - Delete Törlés @@ -10547,54 +10592,10 @@ p, li { white-space: pre-wrap; } Delete element and duration Elem és hosszának törlése - - &Open... - - - - &Save - - - - Save &As... - - - - &Close - - File new - - &New... - - - - &Print... - - - - &Undo - - - - &Redo - - - - Cu&t - - - - &Copy - - - - &Paste - - Insert note A @@ -10751,62 +10752,26 @@ p, li { white-space: pre-wrap; } Timewise delete - - Append one measure - - Append One Measure - - Insert one measure - - Insert One Measure - - Insert horizontal frame - - - - Insert text frame - - Insert Text Frame - - Append text frame - - Append Text Frame - - Insert fret diagram frame - - Insert Fret Diagram Frame - - Insert vertical frame - - - - Append horizontal frame - - - - Append vertical frame - - Other tuplets @@ -10983,22 +10948,10 @@ p, li { white-space: pre-wrap; } Feathered beam, slower - - Feathered Beam, Slower - - Feathered beam, faster - - Feathered Beam, Faster - - - - Play panel - - Transport toolbar @@ -11007,10 +10960,6 @@ p, li { white-space: pre-wrap; } Note input toolbar - - Status bar - - Zoom canvas @@ -11023,10 +10972,6 @@ p, li { white-space: pre-wrap; } Add staff text - - Add text - - Add title text @@ -11075,82 +11020,26 @@ p, li { white-space: pre-wrap; } Player seek to end - - Select A&ll - - &Transpose... - - Violin clef - - Violin Clef - - Bass clef - Basszuskulcs - 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 - - Toggle Section Break - - Edit element - - Show inspector @@ -11159,18 +11048,6 @@ p, li { white-space: pre-wrap; } Reset measure stretch - - Show invisible - - - - Show frames - - - - Enable script debugger - - Note entry: whole rest @@ -11207,14 +11084,6 @@ p, li { white-space: pre-wrap; } Backspace - - Zoom in - - - - Zoom out - - Mirror note head @@ -11251,10 +11120,6 @@ p, li { white-space: pre-wrap; } Display documents stacked - - Show score image - - Show OMR image @@ -11275,18 +11140,6 @@ p, li { white-space: pre-wrap; } Toggle foto mode - - Full screen - - - - F&ull Screen - - - - F&ull screen - - Enable horizontal raster @@ -11299,10 +11152,6 @@ p, li { white-space: pre-wrap; } Configure raster - - Re-pitch mode - - Re-Pitch Mode @@ -11331,10 +11180,6 @@ p, li { white-space: pre-wrap; } 128th note - - Show unprintable - - Split Measure @@ -11371,18 +11216,10 @@ p, li { white-space: pre-wrap; } Reset user settings - - Show debugger - - Piano Keyboard - - Show Inspector - - Save Selection @@ -11400,303 +11237,323 @@ p, li { white-space: pre-wrap; } - &Export... + Respell pitches - &Instruments... + Grace: 8nd after - &Note Input + Pan score while playing on/off - Respell pitches - + Pan + Pan - &Respell Pitches + Show Unprintable - Add &More Stretch + Show Page Margins - Add &Less Stretch + Manage parts - Reset &Beam Mode + Inspector + Objektumvizsgáló + + + Show OMR Panel - Grace: 8nd after + OmrPanel - Pan score while playing on/off + toggle metronome - Pan - Pan + Figured Bass + - &Load Style... + Next Score - &Save Style... + Previous Score - Save style as default + Transpose Up - Save Style As &Default... + Transpose Down - &Concert Pitch + Show master palette - &Reset + Master Palette... - De&bugger + Insert Measure - Reset &Stretch + Toggle View Mode - Show Unprintable + Export Parts - Show Page Margins + Export Parts... - &Search + Save a copy of the score's parts in various formats - &General... + Add marcato - &Text... + Marcato - &Chords... + Select Section - Parts + Note duration: double whole - Par&ts... + Double whole note - Manage parts + Whole note - Additional &Media... + Half note - &Page Settings... + Quarter note - &Album... + 8th note - Inspector - Objektumvizsgáló + 16th note + - Show OMR Panel + 32nd note - OmrPanel + 64th note - Show OMR PAnel + Edit score info - metronome + Insert Special Characters... - toggle metronome + Layers - Figured Bass + MuseScore Connect - Next Score + next syllable - Previous Score + previous syllable - Transpose Up + toggle visibility - Transpose Down + set visible - Show master palette + set unvisible - Master Palette... + Local Handbook... - Insert Measure + Open... - Toggle View Mode + Save + Mentés + + + Save As... - Export Parts + Export... - Export Parts... + Close + Bezárás + + + New... - Save a copy of the score's parts in various formats + Print... - Add marcato + Instruments... - Marcato + Add More Stretch - Select Section + Add Less Stretch - select section + Tempo Marking... - Note duration: double whole + Tempo Marking - Double whole note + Text + Szöveg + + + Add Frame Text - Whole note + Load Style... - Half note + Save Style... - Quarter note + Save Style As Default... - 8th note + Select All - 16th note + Concert Pitch + Koncertmagasság + + + Info... - 32nd note + Reset - 64th note + Debugger - Edit score info + Reset Stretch - &Info... + Insert Special Characters - Insert special characters + Find - Insert Special Characters... + General... - Enable Script Debugger + Text... - Layers + Chords... - &Layers... + Parts... - MuseScore Connect + Full Screen - next syllable + Additional Media... - previous syllable + Page Settings... - toggle visibility + Album... - set visible + Layers... - set unvisible + Plugin Creator diff --git a/share/locale/mscore_id.ts b/share/locale/mscore_id.ts index 6e8459270ffa..587b2cc2131d 100644 --- a/share/locale/mscore_id.ts +++ b/share/locale/mscore_id.ts @@ -134,10 +134,6 @@ p, li { white-space: pre-wrap; } Remove Score - - score list - - move current score down in list @@ -159,47 +155,47 @@ p, li { white-space: pre-wrap; } - path to new score you want to add + create new album - open file manager + New - ... + load an existing album - create new album + Print Album - New + MuseScore Album Files (*.album);; - load an existing album + All Files (*) - Print Album + MuseScore Files (*.mscz *.mscx *.msc);; - MuseScore Album Files (*.album);; + Join Scores - All Files (*) + Load - MuseScore Files (*.mscz *.mscx *.msc);; + MuseScore: Add Score - Join Scores + MuseScore: Load Album @@ -1159,15 +1155,15 @@ spatium unit - showCourtesyClef + Hide courtesy clef - Hide courtesy clef + Show courtesy clef - Show courtesy clef + showCourtesy @@ -1193,11 +1189,11 @@ spatium unit - Drumset + Drums - Drums + Edit Drumset @@ -2775,18 +2771,10 @@ spatium unit Time sig. left margin - - Clef-key distance - - Clef-barline distance - - Begin repeat left margin - - Show repeat bar tips ("winged" repeats) @@ -3183,6 +3171,10 @@ p, li { white-space: pre-wrap; } Max. System distance + + Clef/Key right margin + + EditTempoBase @@ -3560,6 +3552,28 @@ spatium unit Down + + Offset X: + + + + sp + spatium unit +---------- +spatium unit + + + + Offset Y: + + + + + InspectorClef + + Show Courtesy Clef + + InspectorElement @@ -3699,6 +3713,36 @@ spatium unit + + InspectorKeySig + + Show Courtesy Time Signature + + + + Show Naturals + + + + + InspectorLasso + + Form + + + + Lasso + + + + Position: + + + + Size + + + InspectorNote @@ -3943,6 +3987,13 @@ spatium unit + + InspectorTimeSig + + Show Courtesy Time Signature + + + InspectorVBox @@ -5019,10 +5070,6 @@ Would you like to locate %2 now? Concert Pitch - - Search - - MuseScore MuseScore @@ -5184,21 +5231,6 @@ before closing? &About - - MuseScore handbook not found at: - - - - - - -From the "Help" menu try choosing "Online Handbook" instead. - - - - MuseScore: Open Help - - no score @@ -5317,27 +5349,10 @@ Restore session? Varied coda - - Script -%1 -is incompatible with current interface - - - - MuseScore is too old to run script -%1 - - Bar %1 Beat %2.%3 - - Error loading plugin -"%1" line %2: -%3 - - MuseScore: Load error @@ -5947,6 +5962,30 @@ please choose a different name: Report a bug + + MuseScore: Load Plugin + + + + MuseScore Plugin (*.qml);;All Files (*) + + + + MuseScore: Save Plugin + + + + MuseScore Plugin File (*.qml) + + + + &Plugins + + + + Find + + MyWebView @@ -6552,29 +6591,104 @@ please choose a different name: 100% - Straight + master volume - Swing + Vol. + short text for volume slider - Shuffle + Tmp. + short text for tempo slider + + + PluginCreator - master volume + File Operations - Vol. - short text for volume slider + Edit Operations - Tmp. - short text for tempo slider + MuseScore Plugin Editor + + + + MuseScore + MuseScore + + + Plugin "%1" has changes +save before closing? + + + + untitled + + + + Manual + + + + + PluginCreatorBase + + MainWindow + + + + Run + + + + Stop + + + + File + + + + Help + + + + Edit + + + + New + + + + Open + + + + Save + Simpan + + + Manual + + + + Undo + Batalkan + + + Redo + + + + Quit @@ -6612,14 +6726,6 @@ please choose a different name: Choose Default Style for Parts - - load - - - - Plugin Path - - Choose Scores Directory @@ -6699,10 +6805,6 @@ please choose a different name: Paths - - Instrument List: - - Windows @@ -6987,10 +7089,6 @@ please choose a different name: dark - - light - - use native file dialogs @@ -7259,6 +7357,34 @@ please choose a different name: Character Set: + + Instrument List2: + + + + Instrument List1: + + + + Name: + + + + Path: + + + + Version: + + + + Load + + + + Define Shortcut + + Properties @@ -7320,14 +7446,6 @@ please choose a different name: MuseScore: load Style failed: - - MuseScore - MuseScore - - - reading file < - - MuseScore: invalid command @@ -7340,10 +7458,6 @@ please choose a different name: MuseScore: Load languages failed: - - MuseScore: register script plugin: - - MuseScore: Import GuitarPro @@ -7398,16 +7512,12 @@ failed: MuseScore: Save File - - > failed: - - Load failed: - &Quit + Untitled @@ -7771,18 +7881,22 @@ cannot split tuplet - Tick: + Bar - Bar + Beat - Beat + tick: - + + rTick: + + + SelectDialog @@ -7937,19 +8051,19 @@ Sequencer will be disabled. SlurPropertyBase - Volta Properties + Slur Properties - Slur Properties + Solid - solid + Dotted - dotted + Dashed @@ -8628,6 +8742,10 @@ altera styled + + layoutToParentWidth + + TextEditor @@ -8943,6 +9061,14 @@ altera Text + + Foreground Color: + + + + Background Color: + + TextStyleDialog @@ -9172,6 +9298,34 @@ 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;">Hint: you can also add or remove measures after creation of the score.</p></body></html> + + 1 + 1 + + + 2 + 2 + + + 4 + 4 + + + 8 + 8 + + + 16 + 16 + + + 32 + 32 + + + 64 + 64 + TransposeDialogBase @@ -9607,10 +9761,6 @@ p, li { white-space: pre-wrap; } action - - Local &Handbook... - - Save a Copy... Simpan Sebagai Salinan @@ -9879,46 +10029,6 @@ p, li { white-space: pre-wrap; } Reset Beam Mode - - up+shift+ctrl - - - - down+shift+ctrl - - - - left+ctrl - - - - left+shift - - - - right+shift - - - - right+ctrl+shift - - - - shift+home - - - - shift+end - - - - ctrl+shift+home - - - - ctrl+shift+end - - Delete Selected Measures @@ -10019,22 +10129,10 @@ p, li { white-space: pre-wrap; } Quit - - Zoom Canvas - - Lyrics - - Tempo... - - - - Tempo - - Metronome @@ -10047,10 +10145,6 @@ p, li { white-space: pre-wrap; } Staff Text - - Frame Text - - Title @@ -10143,10 +10237,6 @@ p, li { white-space: pre-wrap; } Show Frames - - Search - - Zoom In @@ -10179,10 +10269,6 @@ p, li { white-space: pre-wrap; } Repeat selection - - Follow Song - - Local handbook @@ -10319,10 +10405,6 @@ p, li { white-space: pre-wrap; } Trill - - More stretch - - Less stretch @@ -10335,10 +10417,6 @@ p, li { white-space: pre-wrap; } Flip direction - - Flip Direction - - Pitch up @@ -10423,38 +10501,18 @@ p, li { white-space: pre-wrap; } Previous chord - - Previous Chord - - Previous measure - - Previous Measure - - Next chord - - Next Chord - - Next measure - - Next Measure - - - - Delete selected measures - - Append measures @@ -10495,10 +10553,6 @@ p, li { white-space: pre-wrap; } Save style - - Select all - - Delete @@ -10515,54 +10569,10 @@ p, li { white-space: pre-wrap; } Delete element and duration - - &Open... - - - - &Save - - - - Save &As... - - - - &Close - - File new - - &New... - - - - &Print... - - - - &Undo - - - - &Redo - - - - Cu&t - - - - &Copy - - - - &Paste - - Insert note A @@ -10719,62 +10729,26 @@ p, li { white-space: pre-wrap; } Timewise delete - - Append one measure - - Append One Measure - - Insert one measure - - Insert One Measure - - Insert horizontal frame - - - - Insert text frame - - Insert Text Frame - - Append text frame - - Append Text Frame - - Insert fret diagram frame - - Insert Fret Diagram Frame - - Insert vertical frame - - - - Append horizontal frame - - - - Append vertical frame - - Other tuplets @@ -10951,22 +10925,10 @@ p, li { white-space: pre-wrap; } Feathered beam, slower - - Feathered Beam, Slower - - Feathered beam, faster - - Feathered Beam, Faster - - - - Play panel - - Transport toolbar @@ -10975,10 +10937,6 @@ p, li { white-space: pre-wrap; } Note input toolbar - - Status bar - - Zoom canvas @@ -10991,10 +10949,6 @@ p, li { white-space: pre-wrap; } Add staff text - - Add text - - Add title text @@ -11043,82 +10997,26 @@ p, li { white-space: pre-wrap; } Player seek to end - - Select A&ll - - &Transpose... - - Violin clef - - Violin Clef - - Bass 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 - - Toggle Section Break - - Edit element - - Show inspector @@ -11127,18 +11025,6 @@ p, li { white-space: pre-wrap; } Reset measure stretch - - Show invisible - - - - Show frames - - - - Enable script debugger - - Note entry: whole rest @@ -11175,14 +11061,6 @@ p, li { white-space: pre-wrap; } Backspace - - Zoom in - - - - Zoom out - - Mirror note head @@ -11219,10 +11097,6 @@ p, li { white-space: pre-wrap; } Display documents stacked - - Show score image - - Show OMR image @@ -11243,18 +11117,6 @@ p, li { white-space: pre-wrap; } Toggle foto mode - - Full screen - - - - F&ull Screen - - - - F&ull screen - - Enable horizontal raster @@ -11267,10 +11129,6 @@ p, li { white-space: pre-wrap; } Configure raster - - Re-pitch mode - - Re-Pitch Mode @@ -11299,10 +11157,6 @@ p, li { white-space: pre-wrap; } 128th note - - Show unprintable - - Split Measure @@ -11340,331 +11194,343 @@ p, li { white-space: pre-wrap; } - Show debugger + Piano Keyboard - Piano Keyboard + Save Selection - Show Inspector + Save Selection... - Save Selection + Save current selection as new score - Save Selection... + Export score - Save current selection as new score + Respell pitches - Export score + Grace: 8nd after - &Export... + Pan score while playing on/off - &Instruments... + Pan - &Note Input + Show Unprintable - Respell pitches + Show Page Margins - &Respell Pitches + Manage parts - Add &More Stretch + Inspector - Add &Less Stretch + Show OMR Panel - Reset &Beam Mode + OmrPanel - Grace: 8nd after + toggle metronome - Pan score while playing on/off + Figured Bass - Pan + Next Score - &Load Style... + Previous Score - &Save Style... + Transpose Up - Save style as default + Transpose Down - Save Style As &Default... + Show master palette - &Concert Pitch + Master Palette... - &Reset + Insert Measure - De&bugger + Toggle View Mode - Reset &Stretch + Export Parts - Show Unprintable + Export Parts... - Show Page Margins + Save a copy of the score's parts in various formats - &Search + Add marcato - &General... + Marcato - &Text... + Select Section - &Chords... + Note duration: double whole - Parts + Double whole note - Par&ts... + Whole note - Manage parts + Half note - Additional &Media... + Quarter note - &Page Settings... + 8th note - &Album... + 16th note - Inspector + 32nd note - Show OMR Panel + 64th note - OmrPanel + Edit score info - Show OMR PAnel + Insert Special Characters... - metronome + Layers - toggle metronome + MuseScore Connect - Figured Bass + next syllable - Next Score + previous syllable - Previous Score + toggle visibility - Transpose Up + set visible - Transpose Down + set unvisible - Show master palette + Local Handbook... - Master Palette... + Open... - Insert Measure + Save + Simpan + + + Save As... - Toggle View Mode + Export... - Export Parts + Close + Tutup + + + New... - Export Parts... + Print... - Save a copy of the score's parts in various formats + Instruments... - Add marcato + Add More Stretch - Marcato + Add Less Stretch - Select Section + Tempo Marking... - select section + Tempo Marking - Note duration: double whole + Text - Double whole note + Add Frame Text - Whole note + Load Style... - Half note + Save Style... - Quarter note + Save Style As Default... - 8th note + Select All - 16th note + Concert Pitch - 32nd note + Info... - 64th note + Reset - Edit score info + Debugger - &Info... + Reset Stretch - Insert special characters + Insert Special Characters - Insert Special Characters... + Find - Enable Script Debugger + General... - Layers + Text... - &Layers... + Chords... - MuseScore Connect + Parts... - next syllable + Full Screen - previous syllable + Additional Media... - toggle visibility + Page Settings... - set visible + Album... - set unvisible + Layers... + + + + Plugin Creator diff --git a/share/locale/mscore_it.ts b/share/locale/mscore_it.ts index 063f6e3297e7..93dc16876845 100644 --- a/share/locale/mscore_it.ts +++ b/share/locale/mscore_it.ts @@ -143,10 +143,6 @@ p, li { white-space: pre-wrap; } Remove Score - - score list - - move current score down in list @@ -167,18 +163,6 @@ p, li { white-space: pre-wrap; } Add Score - - path to new score you want to add - - - - open file manager - - - - ... - ... - create new album @@ -211,6 +195,18 @@ p, li { white-space: pre-wrap; } Join Scores + + Load + Carica + + + MuseScore: Add Score + + + + MuseScore: Load Album + + ArticulationBase @@ -1168,15 +1164,15 @@ spatium unit piccola - showCourtesyClef + Hide courtesy clef - Hide courtesy clef + Show courtesy clef - Show courtesy clef + showCourtesy @@ -1201,14 +1197,14 @@ spatium unit Drum Tools - - Drumset - - Drums Percussioni + + Edit Drumset + + DrumrollEditor @@ -2786,18 +2782,10 @@ spatium unit Time sig. left margin Margine sin. unità di tempo - - Clef-key distance - Distanza chiave-armatura - Clef-barline distance Distanza chiave-stanghetta - - Begin repeat left margin - Margine sin. inizio ritornello - Show repeat bar tips ("winged" repeats) Mostra le stanghette dei ritornelli con le "ali" @@ -3194,6 +3182,10 @@ p, li { white-space: pre-wrap; } Max. System distance + + Clef/Key right margin + + EditTempoBase @@ -3571,6 +3563,28 @@ spatium unit Down + + Offset X: + + + + sp + spatium unit +---------- +spatium unit + sp + + + Offset Y: + + + + + InspectorClef + + Show Courtesy Clef + + InspectorElement @@ -3710,6 +3724,36 @@ spatium unit % + + InspectorKeySig + + Show Courtesy Time Signature + + + + Show Naturals + + + + + InspectorLasso + + Form + + + + Lasso + + + + Position: + + + + Size + + + InspectorNote @@ -3954,6 +3998,13 @@ spatium unit sp + + InspectorTimeSig + + Show Courtesy Time Signature + + + InspectorVBox @@ -5072,10 +5123,6 @@ Would you like to locate %2 now? &About &A Proposito di MuseScore - - MuseScore: Open Help - MuseScore: Apertura Guida - note entry mode modalità inserimento note @@ -5222,28 +5269,10 @@ prima di chiudere? End-Start Repeat Inizio-fine ritornello - - Search - Cerca - Go To: Vai a: - - MuseScore handbook not found at: - - Manuale di MuseScore non trovato a: - - - - - -From the "Help" menu try choosing "Online Handbook" instead. - - -Dal menù "Aiuto" prova in alternativa a scegliere "Manuale online". - Grace Notes Note di abbellimento @@ -5340,27 +5369,10 @@ Ripristinare la sessione? Varied coda - - Script -%1 -is incompatible with current interface - - - - MuseScore is too old to run script -%1 - - Bar %1 Beat %2.%3 - - Error loading plugin -"%1" line %2: -%3 - - MuseScore: Load error @@ -5970,6 +5982,30 @@ please choose a different name: Report a bug + + MuseScore: Load Plugin + + + + MuseScore Plugin (*.qml);;All Files (*) + + + + MuseScore: Save Plugin + + + + MuseScore Plugin File (*.qml) + + + + &Plugins + + + + Find + + MyWebView @@ -6574,18 +6610,6 @@ please choose a different name: relative tempo Tempo Relativo - - Straight - Preciso - - - Swing - Swing - - - Shuffle - Shuffle - master volume volume generale @@ -6601,6 +6625,93 @@ please choose a different name: + + PluginCreator + + File Operations + Barra File + + + Edit Operations + + + + MuseScore Plugin Editor + + + + MuseScore + MuseScore + + + Plugin "%1" has changes +save before closing? + + + + untitled + + + + Manual + + + + + PluginCreatorBase + + MainWindow + + + + Run + + + + Stop + + + + File + + + + Help + + + + Edit + + + + New + Nuova + + + Open + + + + Save + Salva + + + Manual + + + + Undo + Annulla + + + Redo + Ripristina + + + Quit + Esci + + PreferenceDialog @@ -6635,14 +6746,6 @@ please choose a different name: Choose Default Style for Parts - - load - - - - Plugin Path - - Choose Scores Directory @@ -6854,10 +6957,6 @@ please choose a different name: 22050 22050 - - Instrument List: - Elenco strumenti: - Note Entry Inserimento note @@ -7010,10 +7109,6 @@ please choose a different name: dark - - light - - use native file dialogs @@ -7282,6 +7377,34 @@ please choose a different name: Character Set: + + Instrument List2: + + + + Instrument List1: + + + + Name: + Nome: + + + Path: + + + + Version: + + + + Load + Carica + + + Define Shortcut + + Properties @@ -7339,14 +7462,6 @@ please choose a different name: MuseScore: Load Style failed: MuseScore: Caricamento stile fallito: - - MuseScore - MuseScore - - - reading file < - file in lettura < - MuseScore: Import Capella MuseScore: importazione file Capella @@ -7363,10 +7478,6 @@ please choose a different name: MuseScore: Load languages failed: MuseScore: Caricamento lingue fallito - - MuseScore: register script plugin: - MuseScore: registro script plugin - MuseScore: Import GuitarPro @@ -7422,17 +7533,13 @@ fallito: MuseScore: Save File MuseScore: Salva file - - > failed: - - Load failed: Caricamento fallito: - &Quit - + Untitled + Senza Titolo @@ -7797,10 +7904,6 @@ cannot split tuplet Ticks - - Tick: - Tick: - Bar @@ -7809,6 +7912,14 @@ cannot split tuplet Beat + + tick: + + + + rTick: + + SelectDialog @@ -7964,21 +8075,21 @@ Il sequencer sarà disabilitato. SlurPropertyBase - - Volta Properties - Proprietà Volta - Slur Properties Proprietà legatura di portamento - solid - continua + Solid + - dotted - punteggiata + Dotted + + + + Dashed + Tratteggiata @@ -8656,6 +8767,10 @@ altera styled + + layoutToParentWidth + + TextEditor @@ -8971,6 +9086,14 @@ altera Text Testo + + Foreground Color: + + + + Background Color: + + TextStyleDialog @@ -9203,6 +9326,34 @@ p, li { white-space: pre-wrap; } Time Signature Unità di tempo + + 1 + 1 + + + 2 + 2 + + + 4 + 4 + + + 8 + 8 + + + 16 + 16 + + + 32 + 32 + + + 64 + 64 + TransposeDialogBase @@ -9638,10 +9789,6 @@ p, li { white-space: pre-wrap; } action - - Local &Handbook... - &Manuale locale - Save a Copy... Salva una copia... @@ -9910,46 +10057,6 @@ p, li { white-space: pre-wrap; } Reset Beam Mode Azzera modalità gruppo note - - up+shift+ctrl - su+maiusc+ctrl - - - down+shift+ctrl - giù+maiusc+ctrl - - - left+ctrl - sinistra+ctrl - - - left+shift - sinistra+maiusc - - - right+shift - destra+maiusc - - - right+ctrl+shift - destra+ctrl+maiusc - - - shift+home - maiusc+home - - - shift+end - maiusc+fine - - - ctrl+shift+home - ctrl+maiusc+home - - - ctrl+shift+end - ctrl+maiusc+fine - Delete Selected Measures Cancella le battute selezionate @@ -10050,22 +10157,10 @@ p, li { white-space: pre-wrap; } Quit Esci - - Zoom Canvas - Zoom - Lyrics Parole - - Tempo... - Tempo... - - - Tempo - Tempo - Metronome Metronomo @@ -10078,10 +10173,6 @@ p, li { white-space: pre-wrap; } Staff Text Testo di pentagramma - - Frame Text - Testo della casella - Title Titolo @@ -10174,10 +10265,6 @@ p, li { white-space: pre-wrap; } Show Frames Mostra le cornici delle caselle - - Search - Cerca - Zoom In Zoom avanti @@ -10210,10 +10297,6 @@ p, li { white-space: pre-wrap; } Repeat selection - - Follow Song - - Local handbook Manuale locale @@ -10350,10 +10433,6 @@ p, li { white-space: pre-wrap; } Trill Trillo - - More stretch - Larghezza battuta: aumenta - Less stretch Larghezza battuta: diminuisci @@ -10366,10 +10445,6 @@ p, li { white-space: pre-wrap; } Flip direction Inverti direzione gambi note - - Flip Direction - Inverti direzione gambi note - Pitch up Aumenta altezza nota @@ -10454,38 +10529,18 @@ p, li { white-space: pre-wrap; } Previous chord Accordo precedente - - Previous Chord - Accordo successivo - Previous measure Battuta precedente - - Previous Measure - Battuta precedente - Next chord Accordo successivo - - Next Chord - Accordo successivo - Next measure Battuta successiva - - Next Measure - Battuta successiva - - - Delete selected measures - Cancella le battute selezionate - Append measures Aggiungi battute @@ -10526,10 +10581,6 @@ p, li { white-space: pre-wrap; } Save style Salva stile - - Select all - Seleziona tutto - Delete Cancella @@ -10546,54 +10597,10 @@ p, li { white-space: pre-wrap; } Delete element and duration Cancella elemento e durata - - &Open... - - - - &Save - - - - Save &As... - - - - &Close - - File new - - &New... - - - - &Print... - - - - &Undo - - - - &Redo - - - - Cu&t - - - - &Copy - - - - &Paste - - Insert note A @@ -10750,62 +10757,26 @@ p, li { white-space: pre-wrap; } Timewise delete - - Append one measure - - Append One Measure - - Insert one measure - - Insert One Measure - - Insert horizontal frame - - - - Insert text frame - - Insert Text Frame - - Append text frame - - Append Text Frame - - Insert fret diagram frame - - Insert Fret Diagram Frame - - Insert vertical frame - - - - Append horizontal frame - - - - Append vertical frame - - Other tuplets @@ -10982,22 +10953,10 @@ p, li { white-space: pre-wrap; } Feathered beam, slower - - Feathered Beam, Slower - - Feathered beam, faster - - Feathered Beam, Faster - - - - Play panel - - Transport toolbar @@ -11006,10 +10965,6 @@ p, li { white-space: pre-wrap; } Note input toolbar - - Status bar - - Zoom canvas @@ -11022,10 +10977,6 @@ p, li { white-space: pre-wrap; } Add staff text - - Add text - - Add title text @@ -11074,82 +11025,26 @@ p, li { white-space: pre-wrap; } Player seek to end - - Select A&ll - - &Transpose... - - Violin clef - - Violin Clef - - Bass clef - Chiave di basso - 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 - - Toggle Section Break - - Edit element - - Show inspector @@ -11158,18 +11053,6 @@ p, li { white-space: pre-wrap; } Reset measure stretch - - Show invisible - - - - Show frames - - - - Enable script debugger - - Note entry: whole rest @@ -11206,14 +11089,6 @@ p, li { white-space: pre-wrap; } Backspace - - Zoom in - - - - Zoom out - - Mirror note head @@ -11250,10 +11125,6 @@ p, li { white-space: pre-wrap; } Display documents stacked - - Show score image - - Show OMR image @@ -11274,18 +11145,6 @@ p, li { white-space: pre-wrap; } Toggle foto mode - - Full screen - - - - F&ull Screen - - - - F&ull screen - - Enable horizontal raster @@ -11298,10 +11157,6 @@ p, li { white-space: pre-wrap; } Configure raster - - Re-pitch mode - - Re-Pitch Mode @@ -11330,10 +11185,6 @@ p, li { white-space: pre-wrap; } 128th note - - Show unprintable - - Split Measure @@ -11370,18 +11221,10 @@ p, li { white-space: pre-wrap; } Reset user settings - - Show debugger - - Piano Keyboard - - Show Inspector - - Save Selection @@ -11399,303 +11242,323 @@ p, li { white-space: pre-wrap; } - &Export... + Respell pitches - &Instruments... + Grace: 8nd after - &Note Input + Pan score while playing on/off - Respell pitches - + Pan + Bil - &Respell Pitches + Show Unprintable - Add &More Stretch + Show Page Margins - Add &Less Stretch + Manage parts - Reset &Beam Mode + Inspector + Ispettore + + + Show OMR Panel - Grace: 8nd after + OmrPanel - Pan score while playing on/off + toggle metronome - Pan - Bil + Figured Bass + - &Load Style... + Next Score - &Save Style... + Previous Score - Save style as default + Transpose Up - Save Style As &Default... + Transpose Down - &Concert Pitch + Show master palette - &Reset + Master Palette... - De&bugger + Insert Measure - Reset &Stretch + Toggle View Mode - Show Unprintable + Export Parts - Show Page Margins + Export Parts... - &Search + Save a copy of the score's parts in various formats - &General... + Add marcato - &Text... + Marcato - &Chords... + Select Section - Parts + Note duration: double whole - Par&ts... + Double whole note - Manage parts + Whole note - Additional &Media... + Half note - &Page Settings... + Quarter note - &Album... + 8th note - Inspector - Ispettore + 16th note + - Show OMR Panel + 32nd note - OmrPanel + 64th note - Show OMR PAnel + Edit score info - metronome + Insert Special Characters... - toggle metronome + Layers - Figured Bass + MuseScore Connect - Next Score + next syllable - Previous Score + previous syllable - Transpose Up + toggle visibility - Transpose Down + set visible - Show master palette + set unvisible - Master Palette... + Local Handbook... - Insert Measure + Open... - Toggle View Mode + Save + Salva + + + Save As... - Export Parts + Export... - Export Parts... + Close + Chiudi + + + New... - Save a copy of the score's parts in various formats + Print... - Add marcato + Instruments... - Marcato + Add More Stretch - Select Section + Add Less Stretch - select section + Tempo Marking... - Note duration: double whole + Tempo Marking - Double whole note + Text + Testo + + + Add Frame Text - Whole note + Load Style... - Half note + Save Style... - Quarter note + Save Style As Default... - 8th note + Select All - 16th note + Concert Pitch + Partitura in Do + + + Info... - 32nd note + Reset - 64th note + Debugger - Edit score info + Reset Stretch - &Info... + Insert Special Characters - Insert special characters + Find - Insert Special Characters... + General... - Enable Script Debugger + Text... - Layers + Chords... - &Layers... + Parts... - MuseScore Connect + Full Screen - next syllable + Additional Media... - previous syllable + Page Settings... - toggle visibility + Album... - set visible + Layers... - set unvisible + Plugin Creator diff --git a/share/locale/mscore_ja.ts b/share/locale/mscore_ja.ts index eddc302efc42..12882c7c8992 100644 --- a/share/locale/mscore_ja.ts +++ b/share/locale/mscore_ja.ts @@ -134,10 +134,6 @@ p, li { white-space: pre-wrap; } Remove Score - - score list - - move current score down in list @@ -158,18 +154,6 @@ p, li { white-space: pre-wrap; } Add Score - - path to new score you want to add - - - - open file manager - - - - ... - ... - create new album @@ -202,6 +186,18 @@ p, li { white-space: pre-wrap; } Join Scores + + Load + 読み込み + + + MuseScore: Add Score + + + + MuseScore: Load Album + + ArticulationBase @@ -1159,15 +1155,15 @@ spatium unit - showCourtesyClef + Hide courtesy clef - Hide courtesy clef + Show courtesy clef - Show courtesy clef + showCourtesy @@ -1192,14 +1188,14 @@ spatium unit Drum Tools - - Drumset - - Drums ドラム + + Edit Drumset + + DrumrollEditor @@ -2778,18 +2774,10 @@ spatium unit Time sig. left margin 拍子記号の左余白 - - Clef-key distance - 音部記号と調号の距離 - Clef-barline distance 音部記号と縦線の距離 - - Begin repeat left margin - 反復開始記号の左余白 - Show repeat bar tips ("winged" repeats) 反復線に先端を付ける @@ -3186,6 +3174,10 @@ p, li { white-space: pre-wrap; } Max. System distance + + Clef/Key right margin + + EditTempoBase @@ -3563,6 +3555,28 @@ spatium unit Down + + Offset X: + + + + sp + spatium unit +---------- +spatium unit + sp + + + Offset Y: + + + + + InspectorClef + + Show Courtesy Clef + + InspectorElement @@ -3702,6 +3716,36 @@ spatium unit % + + InspectorKeySig + + Show Courtesy Time Signature + + + + Show Naturals + + + + + InspectorLasso + + Form + フォーム + + + Lasso + + + + Position: + + + + Size + + + InspectorNote @@ -3946,6 +3990,13 @@ spatium unit sp + + InspectorTimeSig + + Show Courtesy Time Signature + + + InspectorVBox @@ -5024,10 +5075,6 @@ Would you like to locate %2 now? Concert Pitch 合奏調 - - Search - 検索 - MuseScore MuseScore @@ -5186,24 +5233,6 @@ before closing? &About バージョン情報(&A) - - MuseScore handbook not found at: - - MuseScoreのハンドブックが見つかりません: - - - - - -From the "Help" menu try choosing "Online Handbook" instead. - - -ヘルプメニューからオンラインハンドブックを試してみてください - - - MuseScore: Open Help - MuseScore: ヘルプを開く - no score スコア無し @@ -5328,28 +5357,10 @@ Restore session? Varied coda 変格コーダ - - Script -%1 -is incompatible with current interface - スクリプト %1 は指定されたインターフェースと不適合です - - - MuseScore is too old to run script -%1 - このスクリプトを実行するには新しいバージョンのMuseScoreが必要です。 -%1 - Bar %1 Beat %2.%3 小節 %1 拍%2.%3 - - Error loading plugin -"%1" line %2: -%3 - - MuseScore: Load error @@ -5959,6 +5970,30 @@ please choose a different name: Report a bug + + MuseScore: Load Plugin + + + + MuseScore Plugin (*.qml);;All Files (*) + + + + MuseScore: Save Plugin + + + + MuseScore Plugin File (*.qml) + + + + &Plugins + + + + Find + + MyWebView @@ -6564,29 +6599,104 @@ please choose a different name: 100% - Straight + master volume + 主音量 + + + Vol. + short text for volume slider + + + + Tmp. + short text for tempo slider + + + PluginCreator + + File Operations + ファイル操作 + - Swing + Edit Operations - Shuffle + MuseScore Plugin Editor - master volume - 主音量 + MuseScore + MuseScore - Vol. - short text for volume slider + Plugin "%1" has changes +save before closing? - Tmp. - short text for tempo slider + untitled + + + + Manual + + + + + PluginCreatorBase + + MainWindow + + + + Run + + + + Stop + + + + File + + + + Help + + + + Edit + + + + New + 新規 + + + Open + + + + Save + 保存 + + + Manual + + + + Undo + 元に戻す(&U) + + + Redo + 再実行(&R) + + + Quit @@ -6624,14 +6734,6 @@ please choose a different name: Choose Default Style for Parts - - load - - - - Plugin Path - - Choose Scores Directory @@ -6707,10 +6809,6 @@ please choose a different name: Paths パス - - Instrument List: - 楽器リスト: - Windows ウィンドウ @@ -6999,10 +7097,6 @@ please choose a different name: dark - - light - - use native file dialogs @@ -7271,6 +7365,34 @@ please choose a different name: Character Set: + + Instrument List2: + + + + Instrument List1: + + + + Name: + + + + Path: + + + + Version: + + + + Load + 読み込み + + + Define Shortcut + + Properties @@ -7332,14 +7454,6 @@ please choose a different name: MuseScore: load Style failed: MuseScore: スタイルの読み込み失敗 - - MuseScore - MuseScore - - - reading file < - - MuseScore: invalid command MuseScore: 無効なコマンド @@ -7352,10 +7466,6 @@ please choose a different name: MuseScore: Load languages failed: MuseScore: 言語設定の読み込み失敗 - - MuseScore: register script plugin: - MuseScore: スクリプトプラグインの登録 - MuseScore: Import GuitarPro @@ -7411,16 +7521,12 @@ failed: MuseScore: Save File MuseScore:保存 - - > failed: - - Load failed: 読み込み失敗 - &Quit + Untitled @@ -7785,10 +7891,6 @@ cannot split tuplet Ticks - - Tick: - - Bar @@ -7797,9 +7899,17 @@ cannot split tuplet Beat - - - SelectDialog + + tick: + + + + rTick: + + + + + SelectDialog MuseScore: Select MuseScore: 選択 @@ -7952,21 +8062,21 @@ Sequencer will be disabled. SlurPropertyBase - - Volta Properties - 反復記号プロパティ - Slur Properties スラーのプロパティ - solid - 実線 + Solid + - dotted - 点線 + Dotted + + + + Dashed + 破線 @@ -8644,6 +8754,10 @@ altera styled + + layoutToParentWidth + + TextEditor @@ -8959,6 +9073,14 @@ altera Text テキスト + + Foreground Color: + + + + Background Color: + + TextStyleDialog @@ -9191,6 +9313,34 @@ p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'Sans Serif'; font-size:9pt; 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;">ヒント: 小節数は楽譜作成した後からでも追加や削除ができます。</p></body></html> + + 1 + + + + 2 + 2 + + + 4 + 4 + + + 8 + 8 + + + 16 + 16 + + + 32 + 32 + + + 64 + 64 + TransposeDialogBase @@ -9626,10 +9776,6 @@ p, li { white-space: pre-wrap; } action - - Local &Handbook... - MuseScoreのヘルプ(&H) - Save a Copy... コピーを保存... @@ -9898,46 +10044,6 @@ p, li { white-space: pre-wrap; } Reset Beam Mode 連桁の様式をリセット - - up+shift+ctrl - up+shift+ctrl - - - down+shift+ctrl - down+shift+ctrl - - - left+ctrl - left+ctrl - - - left+shift - left+shift - - - right+shift - right+shift - - - right+ctrl+shift - right+ctrl+shift - - - shift+home - shift+home - - - shift+end - shift+end - - - ctrl+shift+home - ctrl+shift+home - - - ctrl+shift+end - ctrl+shift+end - Delete Selected Measures 選択された小節を消去 @@ -10038,22 +10144,10 @@ p, li { white-space: pre-wrap; } Quit 終了 - - Zoom Canvas - ズームキャンバス - Lyrics 歌詞 - - Tempo... - テンポ... - - - Tempo - テンポ - Metronome メトロノーム @@ -10066,10 +10160,6 @@ p, li { white-space: pre-wrap; } Staff Text 譜表テキスト - - Frame Text - 現在の枠に属したテキスト - Title タイトル @@ -10162,10 +10252,6 @@ p, li { white-space: pre-wrap; } Show Frames 枠を表示 - - Search - 検索 - Zoom In ズームイン @@ -10198,10 +10284,6 @@ p, li { white-space: pre-wrap; } Repeat selection - - Follow Song - 自動追従モード - Local handbook @@ -10338,10 +10420,6 @@ p, li { white-space: pre-wrap; } Trill トリル - - More stretch - 広く - Less stretch 狭く @@ -10354,10 +10432,6 @@ p, li { white-space: pre-wrap; } Flip direction 方向転換 - - Flip Direction - 方向転換 - Pitch up 音程を上へ移動 @@ -10442,38 +10516,18 @@ p, li { white-space: pre-wrap; } Previous chord - - Previous Chord - - Previous measure - - Previous Measure - - Next chord - - Next Chord - - Next measure 次の小節 - - Next Measure - 次の小節 - - - Delete selected measures - 選択された小節を削除 - Append measures 複数の小節を追加 @@ -10514,10 +10568,6 @@ p, li { white-space: pre-wrap; } Save style スタイルの保存 - - Select all - すべて選択 - Delete 削除 @@ -10534,54 +10584,10 @@ p, li { white-space: pre-wrap; } Delete element and duration 要素と持続時間の消去 - - &Open... - - - - &Save - - - - Save &As... - - - - &Close - - File new - - &New... - - - - &Print... - - - - &Undo - - - - &Redo - - - - Cu&t - - - - &Copy - - - - &Paste - - Insert note A @@ -10738,62 +10744,26 @@ p, li { white-space: pre-wrap; } Timewise delete - - Append one measure - - Append One Measure - - Insert one measure - - Insert One Measure - - Insert horizontal frame - - - - Insert text frame - - Insert Text Frame - - Append text frame - - Append Text Frame - - Insert fret diagram frame - - Insert Fret Diagram Frame - - Insert vertical frame - - - - Append horizontal frame - - - - Append vertical frame - - Other tuplets @@ -10970,22 +10940,10 @@ p, li { white-space: pre-wrap; } Feathered beam, slower - - Feathered Beam, Slower - - Feathered beam, faster - - Feathered Beam, Faster - - - - Play panel - - Transport toolbar @@ -10994,10 +10952,6 @@ p, li { white-space: pre-wrap; } Note input toolbar - - Status bar - - Zoom canvas @@ -11010,10 +10964,6 @@ p, li { white-space: pre-wrap; } Add staff text - - Add text - - Add title text @@ -11062,82 +11012,26 @@ p, li { white-space: pre-wrap; } Player seek to end - - Select A&ll - - &Transpose... - - Violin clef - - Violin Clef - - Bass 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 - - Toggle Section Break - - Edit element - - Show inspector @@ -11146,18 +11040,6 @@ p, li { white-space: pre-wrap; } Reset measure stretch - - Show invisible - - - - Show frames - - - - Enable script debugger - - Note entry: whole rest @@ -11194,14 +11076,6 @@ p, li { white-space: pre-wrap; } Backspace - - Zoom in - - - - Zoom out - - Mirror note head @@ -11238,10 +11112,6 @@ p, li { white-space: pre-wrap; } Display documents stacked - - Show score image - - Show OMR image @@ -11262,18 +11132,6 @@ p, li { white-space: pre-wrap; } Toggle foto mode - - Full screen - - - - F&ull Screen - - - - F&ull screen - - Enable horizontal raster @@ -11286,10 +11144,6 @@ p, li { white-space: pre-wrap; } Configure raster - - Re-pitch mode - - Re-Pitch Mode @@ -11318,10 +11172,6 @@ p, li { white-space: pre-wrap; } 128th note - - Show unprintable - - Split Measure @@ -11358,18 +11208,10 @@ p, li { white-space: pre-wrap; } Reset user settings - - Show debugger - - Piano Keyboard - - Show Inspector - - Save Selection @@ -11387,303 +11229,323 @@ p, li { white-space: pre-wrap; } - &Export... + Respell pitches - &Instruments... + Grace: 8nd after - &Note Input + Pan score while playing on/off - Respell pitches + Pan - &Respell Pitches + Show Unprintable - Add &More Stretch + Show Page Margins - Add &Less Stretch + Manage parts - Reset &Beam Mode + Inspector + インスペクタ + + + Show OMR Panel - Grace: 8nd after + OmrPanel - Pan score while playing on/off + toggle metronome - Pan + Figured Bass - &Load Style... + Next Score - &Save Style... + Previous Score - Save style as default + Transpose Up - Save Style As &Default... + Transpose Down - &Concert Pitch + Show master palette - &Reset + Master Palette... - De&bugger + Insert Measure - Reset &Stretch + Toggle View Mode - Show Unprintable + Export Parts - Show Page Margins + Export Parts... - &Search + Save a copy of the score's parts in various formats - &General... + Add marcato - &Text... + Marcato - &Chords... + Select Section - Parts + Note duration: double whole - Par&ts... + Double whole note - Manage parts + Whole note - Additional &Media... + Half note - &Page Settings... + Quarter note - &Album... + 8th note - Inspector - インスペクタ + 16th note + - Show OMR Panel + 32nd note - OmrPanel + 64th note - Show OMR PAnel + Edit score info - metronome + Insert Special Characters... - toggle metronome + Layers - Figured Bass + MuseScore Connect - Next Score + next syllable - Previous Score + previous syllable - Transpose Up + toggle visibility - Transpose Down + set visible - Show master palette + set unvisible - Master Palette... + Local Handbook... - Insert Measure + Open... - Toggle View Mode + Save + 保存 + + + Save As... - Export Parts + Export... - Export Parts... + Close + 閉じる + + + New... - Save a copy of the score's parts in various formats + Print... - Add marcato + Instruments... - Marcato + Add More Stretch - Select Section + Add Less Stretch - select section + Tempo Marking... - Note duration: double whole + Tempo Marking - Double whole note + Text + テキスト + + + Add Frame Text - Whole note + Load Style... - Half note + Save Style... - Quarter note + Save Style As Default... - 8th note + Select All - 16th note + Concert Pitch + 合奏調 + + + Info... - 32nd note + Reset - 64th note + Debugger - Edit score info + Reset Stretch - &Info... + Insert Special Characters - Insert special characters + Find - Insert Special Characters... + General... - Enable Script Debugger + Text... - Layers + Chords... - &Layers... + Parts... - MuseScore Connect + Full Screen - next syllable + Additional Media... - previous syllable + Page Settings... - toggle visibility + Album... - set visible + Layers... - set unvisible + Plugin Creator diff --git a/share/locale/mscore_ko.ts b/share/locale/mscore_ko.ts index b529d908ea37..a6db295eeb9f 100644 --- a/share/locale/mscore_ko.ts +++ b/share/locale/mscore_ko.ts @@ -31,17 +31,17 @@ p, li { white-space: pre-wrap; } AboutBoxDialog - + Unstable Prerelease for Version: - + Version: - + Revision: %1 @@ -141,99 +141,94 @@ p, li { white-space: pre-wrap; } - + remove current score - - - Remove Score - - - score list + Remove Score - + move current score down in list - + Down - + move current score up in list - + Up - + Add Score - path to new score you want to add + create new album - - open file manager + + New - ... + load an existing album - - create new album + + Load - - New + + Join Scores - - load an existing album + + Print Album - - Join Scores + + MuseScore Album Files (*.album);; - - Print Album + + + All Files (*) - - MuseScore Album Files (*.album);; + + MuseScore Files (*.mscz *.mscx *.msc);; - - - All Files (*) + + MuseScore: Add Score - - MuseScore Files (*.mscz *.mscx *.msc);; + + MuseScore: Load Album @@ -1456,7 +1451,7 @@ spatium unit - showCourtesyClef + showCourtesy @@ -1497,7 +1492,7 @@ spatium unit - Drumset + Edit Drumset @@ -1608,29 +1603,29 @@ spatium unit - + Open File - + failed: - + MuseScore: Open File - + Write File failed: - + MuseScore: Write Drumset @@ -1648,112 +1643,112 @@ failed: - + Staff Line: - + Stem Direction: - + Auto - + Up - + Down - + Default Voice: - + Shortcut: - + A - + B - + C - + D - + E - + F - + G - + -- - + Note Head: - + Load - + Save - + No. - + Note - + Shortcut - + Name @@ -3186,58 +3181,58 @@ failed: - + Barlines - + Notes - + Arpeggios - + Beams - + Slurs/Ties - + Sizes - + Barline-note margin - + Note-barline margin - + Hairpins - + Chordnames @@ -3248,13 +3243,13 @@ failed: - + Figured Bass - + Articulations, Ornaments @@ -3299,45 +3294,44 @@ failed: - - - - - - - - + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + sp spatium unit ---------- @@ -3433,11 +3427,11 @@ spatium unit - - - - - + + + + + % @@ -3453,13 +3447,13 @@ spatium unit - + Clefs - + Accidentals @@ -3559,7 +3553,7 @@ spatium unit - + ... @@ -3660,40 +3654,35 @@ spatium unit - + minimum Measure width - + Spacing (1=tight) - + Min. note distance - + Clef left margin - + Key sig. left margin - + Time sig. left margin - - - Clef-key distance - - Clef-barline distance @@ -3701,231 +3690,226 @@ spatium unit - Begin repeat left margin - - - - 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: @@ -3961,142 +3945,147 @@ p, li { white-space: pre-wrap; } - - + + Clef/Key right margin + + + + + Hook height: - + Ottava - + 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 @@ -4259,7 +4248,7 @@ p, li { white-space: pre-wrap; } GreendotButton - + record @@ -4356,7 +4345,7 @@ p, li { white-space: pre-wrap; } Inspector - + Inspector @@ -4379,8 +4368,8 @@ p, li { white-space: pre-wrap; } - - + + sp spatium unit ---------- @@ -4388,57 +4377,57 @@ spatium unit - + Offset Y: - + Direction: - + Auto - + Up - + Down - + Anchor: - + Top Staff - + Bottom Staff - + Chord Automatic - + Top Chord - + Bottom Chord @@ -4461,27 +4450,27 @@ spatium unit - - + + sp - + Position - - - - - + + + + + ... - + User Position @@ -4530,48 +4519,77 @@ spatium unit - - + Offset X: + + + + + + sp + spatium unit +---------- +spatium unit + + + + + + reset value - - - + + + + + ... - + Small - + Stemless - + Stem direction - + Auto - + Up - + Down + + + Offset Y: + + + + + InspectorClef + + + Show Courtesy Clef + + InspectorElement @@ -4586,31 +4604,31 @@ spatium unit - + Offset X: - + Color: - - - - + + + + ... - + Visible - - + + sp spatium unit ---------- @@ -4618,7 +4636,7 @@ spatium unit - + Offset Y: @@ -4641,12 +4659,12 @@ spatium unit - + Set Visible - + Set Invisible @@ -4664,26 +4682,26 @@ spatium unit - + Left Gap: - - + + reset value - - + + ... - - - + + + sp spatium unit ---------- @@ -4691,12 +4709,12 @@ spatium unit - + Right Gap: - + Width: @@ -4714,30 +4732,30 @@ spatium unit - + Size - + Scale: - - + + % - - - + + + ... - + Lock Aspect Ratio @@ -4752,6 +4770,42 @@ spatium unit + + InspectorKeySig + + + Show Courtesy Time Signature + + + + + Show Naturals + + + + + InspectorLasso + + + Form + + + + + Lasso + + + + + Position: + + + + + Size + + + InspectorNote @@ -4775,225 +4829,225 @@ spatium unit - - - + + + Auto - + Top - + Bottom - - - - - - - - - + + + + + + + + + reset value - - - - - - - - - + + + + + + + + + ... - + Ontime Offset - + Left - + Right - + Dot Position - + Note Head Group - + Tuning Offset - + Note Head Type - + Velocity Type - + Whole - + Half - + Quarter - + Breve - + Velocity - + Offset - + User - + normal - + cross - + diamond - + triangle - + slash - + xcircle - + do - + re - + mi - + fa - + sol - + la - + ti - + alt. brevis - + Select - + Dot1 - + Dot2 - + Dot3 - + Hook - + Stem - + Beam @@ -5001,7 +5055,7 @@ spatium unit InspectorRest - + Small @@ -5024,8 +5078,8 @@ spatium unit - - + + sp spatium unit ---------- @@ -5033,19 +5087,19 @@ spatium unit - + Leading space: - - + + reset value - - + + ... @@ -5068,12 +5122,20 @@ spatium unit - + sp spatium unit + + InspectorTimeSig + + + Show Courtesy Time Signature + + + InspectorVBox @@ -5082,14 +5144,14 @@ spatium unit - + Top Gap: - - - + + + sp spatium unit ---------- @@ -5109,20 +5171,20 @@ spatium unit - - - + + + reset value - - - + + + ... @@ -5132,30 +5194,30 @@ spatium unit - - - - + + + + mm - + Top Margin: - + Left Margin: - + Bottom Gap: - + Height: @@ -5353,49 +5415,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 (*) @@ -5758,14 +5820,14 @@ failed: - - - - - - - - + + + + + + + + sp @@ -5805,110 +5867,110 @@ failed: - + diagonally - + Begin - - + + Text - - + + ... - - + + place: - - + + Below - - + + Left - - + + Above - - - + + + Symb. - - - + + + Ped (Pedal) - - - + + + x: - - - + + + y: - - + + Hook - - + + Up - - + + 90° - - + + 45° - + Continue - + End @@ -6383,7 +6445,7 @@ Would you like to locate %2 now? MenuNotes - + &Notes @@ -6435,13 +6497,13 @@ Would you like to locate %2 now? MuseScore - + MuseScore: Load error - + MuseScore @@ -6452,8 +6514,7 @@ before closing? - - + MuseScore: Load Score @@ -6499,13 +6560,13 @@ before closing? - - + + All Files (*) - + Untitled @@ -6520,268 +6581,288 @@ before closing? - + 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 @@ -6801,65 +6882,65 @@ before closing? - - + + 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 (*) @@ -6869,112 +6950,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 @@ -6984,292 +7065,292 @@ 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 - + 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 - + 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 @@ -7279,17 +7360,17 @@ before closing? - + Symbols - + Fret Diagram - + &Create @@ -7299,240 +7380,227 @@ 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 - + + Find + + + + MuseScore: warning - + Cannot create tuplet: note value too short - + &Layout - + Continuous View - + &Style - + &Display - + &Help - + &About - + About &MusicXML - + Report a bug - - MuseScore handbook not found at: - - - - - - - -From the "Help" menu try choosing "Online Handbook" instead. - - - - - MuseScore: Open Help - - - - + Open failed: unknown file extension or broken file - + System - + no score - + note entry mode - + edit mode - + play - + foto mode - + Go To: - - Search - - - - + Bar %1 Beat %2.%3 - + The previous session quit unexpectedly. Restore session? @@ -7566,67 +7634,46 @@ please choose a different name: - + MuseScore: transpose - + There is nothing selected. Transpose whole score? - - + + MuseScore: save style - + MuseScore: load style - - - Error loading plugin -"%1" line %2: -%3 - - - - - Script -%1 -is incompatible with current interface - - - - - MuseScore is too old to run script -%1 - - - - - + + Error opening lame library - + Could not open MP3 encoding library! - + Not a valid or supported MP3 encoding library! - - + + Encoding error @@ -7636,12 +7683,12 @@ is incompatible with current interface - + Unable to open target file for writing - + Error %1 returned from MP3 encoder @@ -7712,7 +7759,7 @@ is incompatible with current interface - + MuseScore: Create New Score @@ -7720,12 +7767,12 @@ is incompatible with current interface NewWizardPage1 - + Create New Score - + This wizard creates a new score @@ -7733,12 +7780,12 @@ is incompatible with current interface NewWizardPage2 - + Create New Score - + Define a set of instruments. Each instrument is represented by one or more staves @@ -7746,12 +7793,12 @@ is incompatible with current interface NewWizardPage3 - + Create New Score - + Create Time Signature @@ -7759,22 +7806,22 @@ is incompatible with current interface NewWizardPage4 - + Create New Score - + Select Template File: - + MuseScore: Select Template - + MuseScore Template Files (*.mscz *.mscx) @@ -7782,27 +7829,27 @@ is incompatible with current interface NewWizardPage5 - + Create New Score - + Select Key Signature and Tempo: - + Key Signature - + Tempo - + BPM: @@ -8037,27 +8084,27 @@ is incompatible with current interface PaletteBox - + Palettes - + Palette Operations - + Single Palette Mode - + Reset to factory defaults - + new Palette @@ -8065,42 +8112,42 @@ is incompatible with current interface PaletteBoxButton - + Palette Properties... - + Insert new Palette... - + Move Palette Up - + Move Palette Down - + Enable Editing - + Save Palette - + Load Palette - + Delete Palette @@ -8394,7 +8441,7 @@ is incompatible with current interface - + relative tempo @@ -8404,117 +8451,205 @@ is incompatible with current interface - - Straight + + Vol. + short text for volume slider - - Swing + + Tmp. + short text for tempo slider - - Shuffle + + master volume + + + PluginCreator - - Vol. - short text for volume slider + + File Operations - - Tmp. - short text for tempo slider + + Edit Operations - - master volume + + MuseScore Plugin Editor + + + + + + + MuseScore + + + + + + + Plugin "%1" has changes +save before closing? + + + + + untitled + + + + + Manual - PreferenceDialog + PluginCreatorBase - - Choose Notepaper + + MainWindow - - Choose Background Wallpaper + + Run + + + + + Stop + + + + + File + + + + + Help + + + + + Edit + + + + + New + + + + + Open + + + + + Save + + + + + Manual + + + + + Undo + + + + + Redo + + + + + Quit + + + PreferenceDialog - - load + + Choose Notepaper - - Plugin Path + + 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 @@ -8522,822 +8657,848 @@ is incompatible with current interface PrefsDialogBase - + MuseScore: Preferences - + MuseScore Preferences - + General - + Program Start - + start empty - + continue last session - + start with new score - + start with score: - + Choose MIDI input interface - + Browse... - + show splash screen - + Language - + Attention: changing the language requires a restart of MuseScore. - + Paths - - Instrument List: - - - - + Auto Save - + Save every - + minutes - + Windows - + OSC remote control - + Port Number: - + Style - + dark - - light - - - - + native - + Canvas - + Background - - + + Wallpaper - - + + Color - + Paper - + Miscellaneous - + Proximity for selecting elements - + disable antialiased drawing - + uncheck this to speed up drawing - + Draw Antialiased - + Text - + Auto-correction - + Replace 1/2 with fraction character ½ - + Replace (C) with copyright symbol © (Only applies to text in the copyright section) - - + + Note Entry - + Enable MIDI input - + Play notes when editing - + Default Duration: - + ms - + Color notes outside of usable pitch range - + MIDI Remote Control - + rewind - - - - - + + + + + is active - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ... - + Scores Directory: - + Styles Directory: - + Templates Directory: - + Plugins Directory: - + SoundFonts Directory: - + Images Directory: - + enable MIDI remote control - - - - - + + + + + record - + toggle play - + whole note - + half note - + quarter note - + 8th note - + rest - + augmentation dot - + double augmentation dot - + tie - + play - + stop - + note entry - + 16th note - + 32nd note - + 64nd note - - + + Clear - + Score - + Show Play Panel - + Show Navigator - + Show MuseScore Connect - + Icon size: - + use native file dialogs - + Default Files - + Style: - + Style for Part: - + View - + Scale - + default scale for new score views - + I/O - + Ports - + Remember last connection(s) - + Use internal synthesizer - + JACK Audio Server - + Left-Port: - + Right-Port: - + ALSA Audio - + PulseAudio - - + + Device: - + default - - + + Sample Rate: - + 192000 - + 96000 - + 88200 - - + + 48000 - - + + 44100 - + 32000 - + 22050 - + Fragments: - + Period Size: - + 4096 - + 2048 - + 1024 - + 512 - + 256 - + 128 - + 64 - + PortAudio - + + Instrument List2: + + + + + Instrument List1: + + + + API: - + Default SoundFont - + Attention: Any changes on this page require a restart of MuseScore. - + Import - + Style Used for Import - + Built in style - + Use style file: - + Character Set used when import non-unicode strings. (For binary file import) - - + + MusicXML - + Import layout - + Import system and page breaks - + Shortest Note: - + 1/4 - + 1/8 - + 1/16 - + 1/32 - + 1/64 - + Export - + PNG/SVG - + Resolution DPI - + Transparent background - - + + MIDI - + Character Set: - + Expand repeats - + Audio - + Export layout - + Export all system and page breaks - + Export manually added system and page breaks only - + Do not export system or page breaks - + Shortcuts - + Action - + + Shortcut - - + + Reset to Default - + Use JACK MIDI - + Define... - + Plugins - + + Name: + + + + + Path: + + + + + Version: + + + + + Load + + + + + Define Shortcut + + + + Update - + Automatic Update Check - + Check for new versions of MuseScore on startup @@ -9413,11 +9574,11 @@ is incompatible with current interface - - - - - + + + + + Quit @@ -9465,6 +9626,11 @@ failed: MuseScore: Write Album + + + Untitled + + MuseScore: file not found: @@ -9476,7 +9642,7 @@ failed: - + MuseScore: Load Style failed: @@ -9498,57 +9664,31 @@ failed: - + MuseScore: load Style failed: - - MuseScore - - - - - reading file < - - - - - > failed: - - - - - &Quit - - - - + MuseScore: Load languages failed: - + MuseScore: invalid command - - + + MuseScore: Load Palette failed: - - - - MuseScore: register script plugin: - - RecordButton - + record @@ -9572,130 +9712,130 @@ 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 - + Foto-Mode - + Resolution (%1 dpi)... - + transparent background - + Save As (print mode)... - + Save As (screenshot mode)... - + MuseScore: Set Output Resolution - + Set output resolution for png/svg - + MuseScore: Save As - + cannot determine file type - + Select - + More... - - + + Object Debugger - + Please select the complete tuplet and retry the copy operation - + Please select the complete tuplet and retry the cut operation - + Staff - + Edit Drumset... - + Drumroll Editor... - + Pianoroll Editor... - + 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 @@ -9890,18 +10030,18 @@ please select range of measures to join and try again - + Staff Properties... - + Split Staff... - + Measure @@ -9942,92 +10082,97 @@ please select range of measures to join and try again - + Segment - + Ticks - - Tick: + + Bar - - Bar + + Beat - - Beat + + rTick: - + Segment Type: - + Clef Segment - + + tick: + + + + Key Signature - + Time Signature - + Begin Repeat - + Chord/Rest - + Breath Segment - + End Bar Line - + Time Signature Announce - + SpannerFor: - + SpannerBack: - + Annotations: - + Lyrics: @@ -10220,22 +10365,23 @@ Sequencer will be disabled. SlurPropertyBase - Volta Properties - - - Slur Properties - solid + Solid - dotted + Dotted + + + + + Dashed @@ -10758,7 +10904,7 @@ altera - + MuseScore Startup Dialog @@ -11086,19 +11232,24 @@ altera - + + layoutToParentWidth + + + + Text: do not translate - + Offset: do not translate - + TextStyle: do not translate @@ -11334,7 +11485,6 @@ altera - Color: @@ -11344,159 +11494,170 @@ altera - + System Flag - + Offset - + X: coordinate - + horizontal offset to reference point - + 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 - + enable text frame - + Frame - + draw circled frame - + Circle - + draw boxed frame - + Box - + Width: - + frame line width - - + + mm - + Margin: - + frame inner margin - + Round: - + corner round - + + Foreground Color: + + + + + frame color + + + Background Color: + + MuseScore: Text Properties @@ -11757,32 +11918,74 @@ please choose a different name: - + / - + + + 1 + + + + + + 2 + + + + + + 4 + + + + + + 8 + + + + + + 16 + + + + + + 32 + + + + + + 64 + + + + Pickup Measure - + Time Signature - + Enter Number of Measures: - + Measures: - + <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:9pt; font-weight:400; font-style:normal;"> @@ -12323,21 +12526,16 @@ p, li { white-space: pre-wrap; } - + round bracket action - - - Local handbook - - - Local &Handbook... + Local handbook @@ -12346,7 +12544,7 @@ p, li { white-space: pre-wrap; } - + File open @@ -12356,7 +12554,7 @@ p, li { white-space: pre-wrap; } - + File save @@ -12366,7 +12564,7 @@ p, li { white-space: pre-wrap; } - + File save as @@ -12376,12 +12574,12 @@ p, li { white-space: pre-wrap; } - + File save a copy - + Save a Copy... @@ -12396,12 +12594,12 @@ p, li { white-space: pre-wrap; } - + File reload - + Reload @@ -12411,7 +12609,7 @@ p, li { white-space: pre-wrap; } - + File close @@ -12426,7 +12624,7 @@ p, li { white-space: pre-wrap; } - + Print @@ -12437,6 +12635,7 @@ p, li { white-space: pre-wrap; } + Undo @@ -12447,6 +12646,7 @@ p, li { white-space: pre-wrap; } + Redo @@ -12461,45 +12661,43 @@ p, li { white-space: pre-wrap; } - + Copy - + Paste - - + Show instruments dialog - - + Note input mode - + + Note Input - - + Enter unison above - + Export Parts - + Export Parts... @@ -12509,2689 +12707,2102 @@ p, li { white-space: pre-wrap; } - + 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 - - + Enter seventh above - + Seventh Above - - + 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 - - More stretch - - - - + 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 - - Flip Direction - - - - - + Pitch up - + Up - + Pitch up octave - + Up Octave - + Pitch up by an octave - - + Select Section - - 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 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 - - &Load Style... - - - - - &Save Style... - - - - - - Save style as default - - - - - Save Style As &Default... - - - - - Select A&ll - - - - + &Transpose... - - - Violin clef - - - - + Violin Clef - - - Bass clef - - - - + Bass Clef - - + Display in concert pitch - - &Concert Pitch - - - - - Repeat Last Command - - - - + next syllable - + previous syllable - + toggle visibility - + set visible - + set unvisible - - - Toggle system break - - - - - - Toggle page break - - - - - - Toggle section break - - - - - - Edit element - - - - - &Reset + + Show Unprintable - - De&bugger + + Show Page Margins - - Reset &Stretch + + Manage parts - - Show Unprintable + + Show inspector - - - - Show Page Margins + + Reset measure stretch - - &Search + + Reset user settings - - &General... + + Mirror note head - - &Text... + + Edit general style - - &Chords... + + Double duration - - Parts + + Half duration - - Par&ts... + + Follow song - - Manage parts + + Display documents side by side - - Additional &Media... + + Display documents stacked - - &Page Settings... + + Show OMR image - - &Album... + + Enharmonic up - - Show Inspector + + Tempo Marking... - - Show inspector + + Tempo Marking - - - Reset measure stretch + + Text - - - Reset user settings + + Add Frame Text - - - Show debugger + + Load Style... - - - Show invisible + + Save Style... - - - Show unprintable + + Save Style As Default... - - - Show frames + + Select All - - - Enable script debugger + + Concert Pitch - - - - Mirror note head + + Info... - - - Edit general style + + Reset - - - - Double duration + + Debugger - - - - Half duration + + Reset Stretch - - - Follow song + + Insert Special Characters - - - Display documents side by side + + Find - - - Display documents stacked + + General... - - Show score image + + Text... - - - Show OMR image + + Chords... - - - - Enharmonic up + + Parts... - - - + Enharmonic down - - - + Create new revision - - - + Toggle foto mode - - Full screen - - - - - F&ull Screen - - - - - F&ull screen - - - - - - + Enable horizontal raster - - - + Enable vertical raster - - - + Configure raster - - Re-pitch mode - - - - + 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 - - - up+shift+ctrl - - - - - + Pitch down - + Down - + Pitch down octave - + Down octave - + Pitch down by an octave - + Down Note in Chord - - + + Go to lower pitched note in chord - - - &Open... - - - - - &Save - - - - - Save &As... - - - - - &Close - - - - - File new - - - &New... - - - - - &Print... - - - - - &Undo - - - - - &Redo - - - - - Cu&t - - - - - &Copy - - - - - &Paste + File new - - + Diatonic pitch down - + Diatonic down - - + Go to bottom note in chord - + Bottom Note in Chord - + + Move down - - - down+shift+ctrl - - - - - - - - + + Previous chord - - Previous Chord - - - - - - - - + + Previous measure - - Previous Measure - - - - - - - - + + Next chord - - Next Chord - - - - - - - - + + Next measure - - Next Measure - - - - - - left+shift - - - - - - left+ctrl - - - - - - right+shift - - - - - - right+ctrl+shift - - - - - - shift+home - - - - - - shift+end - - - - - - ctrl+shift+home - - - - - - ctrl+shift+end - - - - - + + Delete - + Delete contents of the selected measures - + Timewise Delete - + Delete element and duration - - - Delete selected measures - - - - + Delete Selected Measures - + Append measures - + Append Measures... - + Insert measures - + 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... - + 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 - - Zoom Canvas + + Lyrics - - - - Lyrics + + Plugin Creator - + Inspector - + Show OMR Panel - + OmrPanel - - Show OMR PAnel - - - - - metronome - - - - + toggle metronome - - - + Figured Bass - - - + Next Score - - - + Previous Score - - - + Transpose Up - - - + Transpose Down - - + Show master palette - + Master Palette... - + Insert Measure - + Toggle View Mode - - Tempo... + + Save Selection - - - Tempo + + Save Selection... - - Save Selection + + Save current selection as new score - - Save Selection... + + Export score - - Save current selection as new score + + Respell pitches - - Export score + + Diatonic pitch up - - &Export... + + Diatonic up - - &Instruments... + + Local Handbook... - - &Note Input + + Open... - - - Respell pitches + + Save - - &Respell Pitches + + Save As... - - Add &More Stretch + + Export... - - Add &Less Stretch + + Close - - Reset &Beam Mode + + New... - - - Diatonic pitch up + + Print... - - Diatonic up + + 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 - + Decrescendo - + Escape - + Timewise delete - - Append one measure - - - - + Append One Measure - - Insert one measure - - - - + Insert One Measure - - - Insert horizontal frame - - - - - Insert text frame - - - - - Append text frame - - - - - Insert fret diagram frame - - - - - - Insert vertical frame - - - - - Append horizontal frame - - - - - Append vertical frame - - - - + Other tuplets - - - + + + Acciaccatura - - - + + + Appoggiatura - - - + + + Grace: quarter - - - + + + Grace: 16th - - - + + + Grace: 32nd - - - + + + 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, Slower - - - - - + Feathered beam, faster - - Feathered Beam, Faster - - - - - - Play panel - - - - + Transport toolbar - + Note input toolbar - - - Status bar - - - - - + Zoom canvas - - + Edit score info - - &Info... - - - - - - Insert special characters - - - - + Insert Special Characters... - - Enable Script Debugger - - - - - + Layers - - &Layers... - - - - - - + MuseScore Connect - + Metronome - + System Text - + Staff Text - - Frame 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 - - - Select all - - - - - + Transpose - - + Exchange Voice 1-2 - - Exchange voice 1-2 - - - - - - Exchange voice 1-3 - - - - + Exchange Voice 1-3 - - - Exchange voice 1-4 - - - - + Exchange Voice 1-4 - - - Exchange voice 2-3 - - - - + Exchange Voice 2-3 - - - Exchange voice 2-4 - - - - + Exchange Voice 2-4 - - - Exchange voice 3-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 - - - Search - - - - - Zoom in - - - - + Zoom In - - Zoom out - - - - + 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 - - Follow Song + + Documents Side by Side + + + + + Documents Stacked - - Documents Side by Side + + Full Screen - - Documents Stacked + + Layers... - - - + next score - - - + previous score @@ -15199,12 +14810,12 @@ p, li { white-space: pre-wrap; } articulation - + Bend - + Tremolo Bar @@ -15212,7 +14823,7 @@ p, li { white-space: pre-wrap; } barlines - + Barlines @@ -15220,45 +14831,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 @@ -15267,7 +14878,7 @@ p, li { white-space: pre-wrap; } images_directory - + Images @@ -15275,100 +14886,100 @@ 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 - + Text line - + Line @@ -15457,7 +15068,7 @@ p, li { white-space: pre-wrap; } plugins_directory - + Plugins @@ -15465,37 +15076,37 @@ p, li { white-space: pre-wrap; } preferences - + Every day - + Every 3 days - + Every week - + Every 2 weeks - + Every month - + Every 2 months - + Never @@ -15503,7 +15114,7 @@ p, li { white-space: pre-wrap; } scores_directory - + Scores @@ -15511,7 +15122,7 @@ p, li { white-space: pre-wrap; } soundfonts_directory - + Soundfonts @@ -15519,7 +15130,7 @@ p, li { white-space: pre-wrap; } styles_directory - + Styles @@ -15527,7 +15138,7 @@ p, li { white-space: pre-wrap; } templates_directory - + Templates diff --git a/share/locale/mscore_lt.ts b/share/locale/mscore_lt.ts index a47634c05be5..7c599bb6d48c 100644 --- a/share/locale/mscore_lt.ts +++ b/share/locale/mscore_lt.ts @@ -40,17 +40,17 @@ p, li { white-space: pre-wrap; } AboutBoxDialog - + Unstable Prerelease for Version: - + Version: - + Revision: %1 @@ -150,99 +150,94 @@ p, li { white-space: pre-wrap; } - + remove current score - - - Remove Score - - - score list + Remove Score - + move current score down in list - + Down - + move current score up in list - + Up - + Add Score - path to new score you want to add + create new album - - open file manager + + New - ... + load an existing album - - create new album + + Load - - New + + Join Scores - - load an existing album + + Print Album - - Join Scores + + MuseScore Album Files (*.album);; - - Print Album + + + All Files (*) - - MuseScore Album Files (*.album);; + + MuseScore Files (*.mscz *.mscx *.msc);; - - - All Files (*) + + MuseScore: Add Score - - MuseScore Files (*.mscz *.mscx *.msc);; + + MuseScore: Load Album @@ -1465,7 +1460,7 @@ spatium unit - showCourtesyClef + showCourtesy @@ -1506,7 +1501,7 @@ spatium unit - Drumset + Edit Drumset @@ -1617,29 +1612,29 @@ spatium unit - + Open File - + failed: - + MuseScore: Open File - + Write File failed: - + MuseScore: Write Drumset @@ -1652,17 +1647,17 @@ failed: - + Note - + Shortcut - + Name @@ -1672,97 +1667,97 @@ failed: - + Note Head: - + Staff Line: - + Stem Direction: - + Auto - + Up - + Down - + Default Voice: - + Shortcut: - + A - + B - + C - + D - + E - + F - + G - + -- - + Load - + Save - + No. @@ -3190,48 +3185,48 @@ failed: - + Barlines - + Notes - + Arpeggios - + Beams - + Sizes - + Hairpins - + Chordnames - + Articulations, Ornaments @@ -3271,45 +3266,44 @@ failed: - - - - - - - - + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + sp spatium unit ---------- @@ -3350,11 +3344,11 @@ spatium unit - - - - - + + + + + % @@ -3389,7 +3383,7 @@ spatium unit - + shorten stems @@ -3427,8 +3421,8 @@ spatium unit - - + + spaces @@ -3439,19 +3433,19 @@ spatium unit - + Clefs - + Figured Bass - + Accidentals @@ -3623,40 +3617,35 @@ spatium unit - + minimum Measure width - + Spacing (1=tight) - + Min. note distance - + Clef left margin - + Key sig. left margin - + Time sig. left margin - - - Clef-key distance - - Clef-barline distance @@ -3664,227 +3653,222 @@ spatium unit - Begin repeat left margin - - - - 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 - + 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 @@ -3895,7 +3879,7 @@ spatium unit - + Slurs/Ties @@ -3950,62 +3934,67 @@ p, li { white-space: pre-wrap; } - + 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 @@ -4022,90 +4011,90 @@ p, li { white-space: pre-wrap; } - + ... - - - + + + 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 @@ -4268,7 +4257,7 @@ p, li { white-space: pre-wrap; } GreendotButton - + record @@ -4365,7 +4354,7 @@ p, li { white-space: pre-wrap; } Inspector - + Inspector @@ -4388,8 +4377,8 @@ p, li { white-space: pre-wrap; } - - + + sp spatium unit ---------- @@ -4397,57 +4386,57 @@ spatium unit - + Offset Y: - + Direction: - + Auto - + Up - + Down - + Anchor: - + Top Staff - + Bottom Staff - + Chord Automatic - + Top Chord - + Bottom Chord @@ -4470,27 +4459,27 @@ spatium unit - - + + sp - + Position - - - - - + + + + + ... - + User Position @@ -4539,48 +4528,77 @@ spatium unit - - + Offset X: + + + + + + sp + spatium unit +---------- +spatium unit + + + + + + reset value - - - + + + + + ... - + Small - + Stemless - + Stem direction - + Auto - + Up - + Down + + + Offset Y: + + + + + InspectorClef + + + Show Courtesy Clef + + InspectorElement @@ -4595,31 +4613,31 @@ spatium unit - + Offset X: - + Color: - - - - + + + + ... - + Visible - - + + sp spatium unit ---------- @@ -4627,7 +4645,7 @@ spatium unit - + Offset Y: @@ -4650,12 +4668,12 @@ spatium unit - + Set Visible - + Set Invisible @@ -4673,26 +4691,26 @@ spatium unit - + Left Gap: - - + + reset value - - + + ... - - - + + + sp spatium unit ---------- @@ -4700,12 +4718,12 @@ spatium unit - + Right Gap: - + Width: @@ -4723,30 +4741,30 @@ spatium unit - + Size - + Scale: - - + + % - - - + + + ... - + Lock Aspect Ratio @@ -4761,6 +4779,42 @@ spatium unit + + InspectorKeySig + + + Show Courtesy Time Signature + + + + + Show Naturals + + + + + InspectorLasso + + + Form + + + + + Lasso + + + + + Position: + + + + + Size + + + InspectorNote @@ -4784,225 +4838,225 @@ spatium unit - - - + + + Auto - + Top - + Bottom - - - - - - - - - + + + + + + + + + reset value - - - - - - - - - + + + + + + + + + ... - + Ontime Offset - + Left - + Right - + Dot Position - + Note Head Group - + Tuning Offset - + Note Head Type - + Velocity Type - + Whole - + Half - + Quarter - + Breve - + Velocity - + Offset - + User - + normal - + cross - + diamond - + triangle - + slash - + xcircle - + do - + re - + mi - + fa - + sol - + la - + ti - + alt. brevis - + Select - + Dot1 - + Dot2 - + Dot3 - + Hook - + Stem - + Beam @@ -5010,7 +5064,7 @@ spatium unit InspectorRest - + Small @@ -5033,8 +5087,8 @@ spatium unit - - + + sp spatium unit ---------- @@ -5042,19 +5096,19 @@ spatium unit - + Leading space: - - + + reset value - - + + ... @@ -5077,12 +5131,20 @@ spatium unit - + sp spatium unit + + InspectorTimeSig + + + Show Courtesy Time Signature + + + InspectorVBox @@ -5091,14 +5153,14 @@ spatium unit - + Top Gap: - - - + + + sp spatium unit ---------- @@ -5118,20 +5180,20 @@ spatium unit - - - + + + reset value - - - + + + ... @@ -5141,30 +5203,30 @@ spatium unit - - - - + + + + mm - + Top Margin: - + Left Margin: - + Bottom Gap: - + Height: @@ -5362,49 +5424,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 (*) @@ -5767,14 +5829,14 @@ failed: - - - - - - - - + + + + + + + + sp @@ -5814,110 +5876,110 @@ failed: - + diagonally - + Begin - - + + Text - - + + ... - - + + place: - - + + Below - - + + Left - - + + Above - - - + + + Symb. - - - + + + Ped (Pedal) - - - + + + x: - - - + + + y: - - + + Hook - - + + Up - - + + 90° - - + + 45° - + Continue - + End @@ -6392,7 +6454,7 @@ Would you like to locate %2 now? MenuNotes - + &Notes @@ -6443,28 +6505,23 @@ Would you like to locate %2 now? MuseScore - + Fingering - + Rehearsal Mark - + Concert Pitch - - - Search - - - + MuseScore @@ -6480,8 +6537,7 @@ before closing? - - + MuseScore: Load Score @@ -6512,7 +6568,7 @@ before closing? - + MuseScore: Load error @@ -6553,352 +6609,372 @@ before closing? - - + + 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 @@ -6908,277 +6984,277 @@ 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 - + 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 - + Fret Diagram - + &Measures - + &Frames - + &Text @@ -7188,42 +7264,42 @@ before closing? - + 4/4 common time - + End Bar - + Double Bar - + Start Repeat - + End Repeat - + End-Start Repeat - + Breath - + Brackets @@ -7233,62 +7309,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 @@ -7298,62 +7374,62 @@ before closing? - + Symbols - + &Create - + Text - + File Operations - + Transport Tools - + Page View - + Foto Mode - + Note Entry - + &File - + Open &Recent - + &Edit - + &Layout @@ -7385,257 +7461,228 @@ 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 - - MuseScore: warning - - - - - Cannot create tuplet: note value too short + + Find - - MuseScore handbook not found at: - + + MuseScore: warning - - - -From the "Help" menu try choosing "Online Handbook" instead. + + Cannot create tuplet: note value too short - + &About - + switch layer - - MuseScore: Open Help - - - - + no score - + note entry mode - + edit mode - + play - + Go To: - + System - + Glissando - - - Error loading plugin -"%1" line %2: -%3 - - - - - Script -%1 -is incompatible with current interface - - - - - MuseScore is too old to run script -%1 - - - - - + + Error opening lame library - + Could not open MP3 encoding library! - + Not a valid or supported MP3 encoding library! - - + + Encoding error @@ -7645,12 +7692,12 @@ is incompatible with current interface - + Unable to open target file for writing - + Error %1 returned from MP3 encoder @@ -7681,7 +7728,7 @@ is incompatible with current interface NewWizard - + MuseScore: Create New Score @@ -7729,12 +7776,12 @@ is incompatible with current interface NewWizardPage1 - + Create New Score - + This wizard creates a new score @@ -7742,12 +7789,12 @@ is incompatible with current interface NewWizardPage2 - + Create New Score - + Define a set of instruments. Each instrument is represented by one or more staves @@ -7755,12 +7802,12 @@ is incompatible with current interface NewWizardPage3 - + Create New Score - + Create Time Signature @@ -7768,22 +7815,22 @@ is incompatible with current interface NewWizardPage4 - + Create New Score - + Select Template File: - + MuseScore: Select Template - + MuseScore Template Files (*.mscz *.mscx) @@ -7791,27 +7838,27 @@ is incompatible with current interface NewWizardPage5 - + Create New Score - + Select Key Signature and Tempo: - + Key Signature - + Tempo - + BPM: @@ -8046,27 +8093,27 @@ is incompatible with current interface PaletteBox - + Palettes - + Palette Operations - + Single Palette Mode - + Reset to factory defaults - + new Palette @@ -8074,42 +8121,42 @@ is incompatible with current interface PaletteBoxButton - + Palette Properties... - + Insert new Palette... - + Move Palette Up - + Move Palette Down - + Enable Editing - + Save Palette - + Load Palette - + Delete Palette @@ -8403,7 +8450,7 @@ is incompatible with current interface - + relative tempo @@ -8413,117 +8460,205 @@ is incompatible with current interface - - Straight + + Vol. + short text for volume slider - - Swing + + Tmp. + short text for tempo slider - - Shuffle + + master volume + + + PluginCreator - - Vol. - short text for volume slider + + File Operations - - Tmp. - short text for tempo slider + + Edit Operations - - master volume + + MuseScore Plugin Editor + + + + + + + MuseScore + + + + + + + Plugin "%1" has changes +save before closing? + + + + + untitled + + + + + Manual - PreferenceDialog + PluginCreatorBase + + + MainWindow + + + + + Run + + + + + Stop + + + + + File + + + + + Help + + + + + Edit + + + + + New + + + + + Open + + + + + Save + + + + + Manual + + + + + Undo + + - - load + + Redo - - Plugin Path + + Quit + + + 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 - + Choose Notepaper - + Choose Background Wallpaper - + MuseScore Files (*.mscz *.mscx *.msc);;All (*) @@ -8531,822 +8666,848 @@ is incompatible with current interface PrefsDialogBase - + MuseScore: Preferences - + General - + Scores Directory: - + Styles Directory: - + Templates Directory: - + Plugins Directory: - + SoundFonts Directory: - + Images Directory: - + Program Start - + start empty - + continue last session - + start with new score - + start with score: - + Color notes outside of usable pitch range - + show splash screen - + MuseScore Preferences - + Browse... - + Language - + Attention: changing the language requires a restart of MuseScore. - + Paths - - Instrument List: - - - - + Windows - + Style - + Auto Save - + Save every - + minutes - + Canvas - + Background - - + + Wallpaper - - + + Color - + Proximity for selecting elements - + disable antialiased drawing - + uncheck this to speed up drawing - + Draw Antialiased - + Text - - + + Note Entry - + Play notes when editing - + ms - + enable MIDI remote control - + + Instrument List2: + + + + + Instrument List1: + + + + Use JACK MIDI - + Remember last connection(s) - + PortAudio - + API: - + Default SoundFont - + Choose MIDI input interface - + Style Used for Import - + Built in style - + Use style file: - + Character Set used when import non-unicode strings. (For binary file import) - - + + MusicXML - + Import layout - + Import system and page breaks - + Shortest Note: - + 1/4 - + 1/8 - + 1/16 - + 1/32 - + 1/64 - + PNG/SVG - + Resolution DPI - + Transparent background - - + + MIDI - + Expand repeats - + Plugins - + + Name: + + + + + Path: + + + + + Version: + + + + + Load + + + + + Define Shortcut + + + + Update - + Automatic Update Check - + Check for new versions of MuseScore on startup - + Auto-correction - + Replace 1/2 with fraction character ½ - + Replace (C) with copyright symbol © (Only applies to text in the copyright section) - + Score - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ... - + Show Play Panel - + Show Navigator - + Show MuseScore Connect - + OSC remote control - + Port Number: - + dark - - light - - - - + native - + Icon size: - + use native file dialogs - + Paper - + Miscellaneous - + Enable MIDI input - + Default Duration: - + MIDI Remote Control - + rewind - - - - - + + + + + is active - - - - - + + + + + record - + toggle play - + whole note - + half note - + quarter note - + 8th note - + rest - + augmentation dot - + double augmentation dot - + tie - + play - + stop - + note entry - + 16th note - + 32nd note - + 64nd note - + Default Files - + Style: - + Style for Part: - + View - + Scale - + default scale for new score views - + I/O - + Ports - + Use internal synthesizer - + JACK Audio Server - + Left-Port: - + Right-Port: - + ALSA Audio - + PulseAudio - - + + Device: - + default - - + + Sample Rate: - + 192000 - + 96000 - + 88200 - - + + 48000 - - + + 44100 - + 32000 - + 22050 - + Fragments: - + Period Size: - + 4096 - + 2048 - + 1024 - + 512 - + 256 - + 128 - + 64 - + Attention: Any changes on this page require a restart of MuseScore. - + Import - + Character Set: - + Export - + Audio - + Export layout - + Export all system and page breaks - + Export manually added system and page breaks only - + Do not export system or page breaks - + Shortcuts - + Action - + + Shortcut - - + + Reset to Default - - + + Clear - + Define... @@ -9422,11 +9583,11 @@ is incompatible with current interface - - - - - + + + + + Quit @@ -9474,6 +9635,11 @@ failed: MuseScore: Write Album + + + Untitled + + MuseScore: file not found: @@ -9485,7 +9651,7 @@ failed: - + MuseScore: Load Style failed: @@ -9502,52 +9668,26 @@ failed: - + MuseScore: load Style failed: - - MuseScore - - - - - reading file < - - - - - > failed: - - - - - &Quit - - - - + MuseScore: Load languages failed: - + MuseScore: invalid command - - + + MuseScore: Load Palette failed: - - - - MuseScore: register script plugin: - - MuseScore: Import GuitarPro @@ -9557,7 +9697,7 @@ failed: RecordButton - + record @@ -9581,33 +9721,33 @@ failed: ScoreView - + Select - + More... - + Staff - + Edit Drumset... - + Drumroll Editor... - + Pianoroll Editor... @@ -9801,116 +9941,116 @@ failed: - + Staff Properties... - - + + Object Debugger - + Split Staff... - + 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 - + Foto-Mode - + Resolution (%1 dpi)... - + transparent background - + Save As (print mode)... - + Save As (screenshot mode)... - + MuseScore: Set Output Resolution - + Set output resolution for png/svg - + MuseScore: Save As - + cannot determine file type @@ -9951,92 +10091,97 @@ please select a measure and try again - + Segment - + Ticks - - Tick: - - - - + Bar - + Beat - + Clef Segment - + Key Signature - + Time Signature - + Begin Repeat - + Chord/Rest - + Breath Segment - + End Bar Line - + Time Signature Announce - + SpannerFor: - + SpannerBack: - + Annotations: - + Lyrics: - + + tick: + + + + + rTick: + + + + Segment Type: @@ -10229,22 +10374,23 @@ Sequencer will be disabled. SlurPropertyBase - Volta Properties - - - Slur Properties - solid + Solid - dotted + Dotted + + + + + Dashed @@ -10767,7 +10913,7 @@ altera - + MuseScore Startup Dialog @@ -11068,13 +11214,18 @@ altera - + + layoutToParentWidth + + + + Text: do not translate - + Offset: do not translate @@ -11107,7 +11258,7 @@ altera - + TextStyle: do not translate @@ -11348,7 +11499,6 @@ altera - Color: @@ -11358,159 +11508,170 @@ altera - + System Flag - + Offset - + X: coordinate - + horizontal offset to reference point - + 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 - + enable text frame - + Frame - + draw circled frame - + Circle - + draw boxed frame - + Box - + Width: - + frame line width - - + + mm - + Margin: - + frame inner margin - + Round: - + corner round - + + Foreground Color: + + + + + frame color + + + Background Color: + + TextStyleDialog @@ -11766,32 +11927,74 @@ please choose a different name: - + / - + + + 1 + + + + + + 2 + + + + + + 4 + + + + + + 8 + + + + + + 16 + + + + + + 32 + + + + + + 64 + + + + Pickup Measure - + Time Signature - + Enter Number of Measures: - + Measures: - + <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:9pt; font-weight:400; font-style:normal;"> @@ -12332,7 +12535,7 @@ p, li { white-space: pre-wrap; } - + round bracket @@ -12340,32 +12543,49 @@ p, li { white-space: pre-wrap; } action - - Local &Handbook... + + Save a Copy... - - Save a Copy... + + Export... - + Reload + + + Close + + + + + New... + + Create new score + + + Print... + + + Undo + Redo @@ -12375,354 +12595,330 @@ p, li { white-space: pre-wrap; } - + 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 - + Seventh Above - - + Enter seventh above - + 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 to selected measure - - - - - Add less stretch to selected measure + + + Add More Stretch - - Reset Beam Mode + + Add more stretch to selected measure - - - up+shift+ctrl + + Add Less Stretch - - - down+shift+ctrl + + Add less stretch to selected measure - - - left+ctrl + + + Reset Beam Mode - + Local handbook @@ -12731,14 +12927,9 @@ p, li { white-space: pre-wrap; } Show local handbook - - - File open - - - &Open... + File open @@ -12746,14 +12937,9 @@ p, li { white-space: pre-wrap; } Load score from file - - - File save - - - &Save + File save @@ -12761,14 +12947,9 @@ p, li { white-space: pre-wrap; } Save score to file - - - File save as - - - Save &As... + File save as @@ -12777,7 +12958,7 @@ p, li { white-space: pre-wrap; } - + File save a copy @@ -12792,12 +12973,12 @@ p, li { white-space: pre-wrap; } - + Export Parts - + Export Parts... @@ -12807,7 +12988,7 @@ p, li { white-space: pre-wrap; } - + File reload @@ -12816,14 +12997,9 @@ p, li { white-space: pre-wrap; } Reload score from file - - - File close - - - &Close + File close @@ -12831,24 +13007,14 @@ p, li { white-space: pre-wrap; } Close current score - - - File new - - - &New... - - - - - Print + File new - &Print... + Print @@ -12856,2351 +13022,1796 @@ p, li { white-space: pre-wrap; } Print score - - - &Undo - - Undo last change - - - &Redo - - Redo last undo - - Cu&t - - - - - &Copy - - - - - &Paste - - - - - + 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 - - Add &More Stretch - - - - - Add &Less Stretch - - - - - Reset &Beam Mode - - - - - + Diatonic pitch down - + Diatonic down - + Add previous chord to selection - + Select to beginning of measure - + Add next chord to selection - - + Select Section - - 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 - - - - + Append One Measure - - Insert one measure - - - - + Insert One Measure - - - Insert horizontal frame + + + Insert Text Frame - - Insert text frame + + Append Text Frame - - - Insert Text Frame + + + Insert Fret Diagram Frame - - Append text frame + + Other tuplets - - Append Text Frame + + Note duration: longa - - Insert fret diagram frame + + Parts... - - - Insert Fret Diagram Frame + + Full Screen - - - Insert vertical frame + + Additional Media... - - Append horizontal frame + + Page Settings... - - Append vertical frame + + Album... - - Other tuplets + + Layers... - - Note duration: longa + + 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 - - &Load Style... - - - - - &Save Style... - - - - - - Save style as default - - - - - Save Style As &Default... - - - - - Select A&ll - - - - + &Transpose... - - - Violin clef - - - - + Violin Clef - - - Bass clef - - - - + Bass Clef - - + Display in concert pitch - - &Concert Pitch - - - - - Repeat Last Command - - - - - - Toggle system break - - - - - - Toggle page break - - - - - - Toggle section break - - - - + Toggle Section Break - - - Edit element - - - - - &Reset - - - - - De&bugger - - - - - Reset &Stretch - - - - + Show Unprintable - - - + Show Page Margins - - &Search - - - - - &General... - - - - - &Text... - - - - - &Chords... - - - - - Parts - - - - - Par&ts... - - - - + Manage parts - - Additional &Media... - - - - - &Page Settings... - - - - - &Album... - - - - - Show Inspector - - - - + Inspector - + Show OMR Panel - + OmrPanel - - Show OMR PAnel - - - - - metronome - - - - + 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 - - - Show invisible + + Note entry: whole rest - - - Show unprintable + + Whole rest - - - Show frames + + Note entry: half rest - - - Enable script debugger + + Half rest - - Note entry: whole rest + + Note entry: quarter rest - - - Whole rest + + Quarter rest - - Note entry: half rest + + Note entry: 8th rest - - - Half rest + + 8th rest - - Note entry: quarter rest + + Text - - - Quarter rest + + Add Frame Text - - Note entry: 8th rest + + Debugger - - - 8th rest + + Reset Stretch - - - + + Insert Special Characters + + + + Backspace - - - - Mirror note head + + Find - - - Edit general style + + Mirror note head - - - - Double duration + + General... - - - - Half duration + + Edit general style - - - Follow song + + Text... - - - Display documents side by side + + Chords... - - - Display documents stacked + + Double duration - - Show score image + + Half duration - - - Show OMR image + + Follow song - - - - Enharmonic up + + Display documents side by side - - - - Enharmonic down + + Display documents stacked - - - - Create new revision + + Show OMR image - - - - Toggle foto mode + + Enharmonic up - - Full screen + + Enharmonic down - - F&ull Screen + + Create new revision - - F&ull screen + + Toggle foto mode - - - + Enable horizontal raster - - - + Enable vertical raster - - - + Configure raster - - Re-pitch mode - - - - + 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 - - More stretch - - - - + Less stretch - + Reset beam mode of selected measures - - + Flip direction - - 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 Chord - - - - - - - - + + Previous measure - - Previous Measure - - - - - - - - - Next chord - - - - - Next Chord - - - - - - - - - Next measure - - - - - Next Measure - - - - - - Delete selected measures - - - - - Append measures - - - - - Insert measures - - - - - - left+shift - - - - - Save Selection - - - - - Save Selection... - - - - - Save current selection as new score - - - - - Export score - - - - - &Export... - - - - - &Instruments... - - - - - &Note Input + + + Next chord - - - Respell pitches + + + Next measure - - &Respell Pitches + + Append measures - - - right+shift + + Insert measures - - - right+ctrl+shift + + Save Selection - - - shift+home + + Save Selection... - - - shift+end + + Save current selection as new score - - - ctrl+shift+home + + Export score - - - ctrl+shift+end + + Respell pitches - + 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 - - + + Enable sound while editing - - - + Palette - + Play Panel - - - + Navigator - - - + Mixer - + Transport - + Status Bar - - - + Quit - - Zoom Canvas + + Lyrics - - - - Lyrics + + Note entry: double flat - - Tempo... + + + Double flat - - - Tempo + + Local Handbook... - - Note entry: double flat + + Open... - - - Double flat + + 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, Slower - - - - - + Feathered beam, faster - - Feathered Beam, Faster - - - - - - Play panel - - - - + Transport toolbar - + Note input toolbar - - - Status bar - - - - - + Zoom canvas - - + Layers - - &Layers... - - - - - - + MuseScore Connect - + Metronome - + System Text - + Staff Text - - Frame 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 - - - Reset user settings + + Load Style... + + + + + Save Style... + + + + + Save Style As Default... + + + + + Select All + + + + + Concert Pitch + + + + + Info... - - - Show debugger + + 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 - - - Add system text + + Tempo Marking... - - - Add staff text + + Tempo Marking + + + + + Add system text - - - Add 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 - - - Select all - - - - - + Exchange Voice 1-2 - - Exchange voice 1-2 - - - - - - Exchange voice 1-3 - - - - + Exchange Voice 1-3 - - - Exchange voice 1-4 - - - - + Exchange Voice 1-4 - - - Exchange voice 2-3 - - - - + Exchange Voice 2-3 - - - Exchange voice 2-4 - - - - + Exchange Voice 2-4 - - - Exchange voice 3-4 - - - - + Exchange Voice 3-4 - - + Repeat last command - - + Edit score info - - &Info... - - - - + Toggle System Break - + Toggle Page Break - + Edit Element - + Show Invisible - + Show Frames - - - Insert special characters - - - - + Insert Special Characters... - - Enable Script Debugger - - - - - - Search - - - - - Zoom in - - - - + Zoom In - - Zoom out - - - - + 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 - - Follow Song - - - - + Documents Side by Side - + Documents Stacked @@ -15208,12 +14819,12 @@ p, li { white-space: pre-wrap; } articulation - + Bend - + Tremolo Bar @@ -15221,7 +14832,7 @@ p, li { white-space: pre-wrap; } barlines - + Barlines @@ -15229,45 +14840,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 @@ -15276,7 +14887,7 @@ p, li { white-space: pre-wrap; } images_directory - + Images @@ -15284,100 +14895,100 @@ 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 - + Text line - + Line @@ -15466,7 +15077,7 @@ p, li { white-space: pre-wrap; } plugins_directory - + Plugins @@ -15474,37 +15085,37 @@ p, li { white-space: pre-wrap; } preferences - + Never - + Every day - + Every 3 days - + Every week - + Every 2 weeks - + Every month - + Every 2 months @@ -15512,7 +15123,7 @@ p, li { white-space: pre-wrap; } scores_directory - + Scores @@ -15520,7 +15131,7 @@ p, li { white-space: pre-wrap; } soundfonts_directory - + Soundfonts @@ -15528,7 +15139,7 @@ p, li { white-space: pre-wrap; } styles_directory - + Styles @@ -15536,7 +15147,7 @@ p, li { white-space: pre-wrap; } templates_directory - + Templates diff --git a/share/locale/mscore_nb.ts b/share/locale/mscore_nb.ts index 225d5ff96494..fdd253f79bae 100644 --- a/share/locale/mscore_nb.ts +++ b/share/locale/mscore_nb.ts @@ -143,10 +143,6 @@ p, li { white-space: pre-wrap; } Remove Score - - score list - - move current score down in list @@ -167,18 +163,6 @@ p, li { white-space: pre-wrap; } Add Score - - path to new score you want to add - - - - open file manager - - - - ... - ... - create new album @@ -211,6 +195,18 @@ p, li { white-space: pre-wrap; } Join Scores + + Load + Last inn + + + MuseScore: Add Score + + + + MuseScore: Load Album + + ArticulationBase @@ -1168,15 +1164,15 @@ spatium unit Liten - showCourtesyClef + Hide courtesy clef - Hide courtesy clef + Show courtesy clef - Show courtesy clef + showCourtesy @@ -1201,14 +1197,14 @@ spatium unit Drum Tools - - Drumset - - Drums Trommer + + Edit Drumset + + DrumrollEditor @@ -2786,18 +2782,10 @@ spatium unit Time sig. left margin Venstre marg for taktart - - Clef-key distance - Avstand mellom nøkkel og toneart - Clef-barline distance Avstand mellom nøkkel og taktstrek - - Begin repeat left margin - Venstre marg for åpent repetisjonstegn - Show repeat bar tips ("winged" repeats) Vis tupp på repetisjonsstrek @@ -3194,6 +3182,10 @@ p, li { white-space: pre-wrap; } Max. System distance + + Clef/Key right margin + + EditTempoBase @@ -3571,6 +3563,28 @@ spatium unit Down Ned + + Offset X: + + + + sp + spatium unit +---------- +spatium unit + pkt + + + Offset Y: + + + + + InspectorClef + + Show Courtesy Clef + + InspectorElement @@ -3710,6 +3724,36 @@ spatium unit % + + InspectorKeySig + + Show Courtesy Time Signature + + + + Show Naturals + + + + + InspectorLasso + + Form + Skjema + + + Lasso + + + + Position: + + + + Size + + + InspectorNote @@ -3954,6 +3998,13 @@ spatium unit pkt + + InspectorTimeSig + + Show Courtesy Time Signature + + + InspectorVBox @@ -5190,10 +5241,6 @@ før lukking? &About &Om - - MuseScore: Open Help - MuseScore: Åpne hjelp - no score Intet noteark @@ -5218,28 +5265,10 @@ før lukking? Glissando Glissando - - Search - Søk - Go To: Gå til: - - MuseScore handbook not found at: - - MuseScore-håndboken ble ikke funnet på: - - - - - -From the "Help" menu try choosing "Online Handbook" instead. - - -Prøv istedet å velge "Online håndbok" fra "Hjelp"-menyen. - Grace Notes Forslagsnoter @@ -5336,32 +5365,10 @@ Gjenopprett økt? Varied coda VarCoda - - Script -%1 -is incompatible with current interface - Dette scriptet -%1 -er ikke kompatibelt med nåværende grensesnitt - - - MuseScore is too old to run script -%1 - Denne versjonen av MuseScore er for gammel for å kjøre dette scriptet -%1 - Bar %1 Beat %2.%3 Taktstrek %1 Slag %2.%3 - - Error loading plugin -"%1" line %2: -%3 - Feil ved lasting av utvidelse -"%1" på linje %2: -%3 - MuseScore: Load error @@ -5971,6 +5978,30 @@ please choose a different name: Report a bug + + MuseScore: Load Plugin + + + + MuseScore Plugin (*.qml);;All Files (*) + + + + MuseScore: Save Plugin + + + + MuseScore Plugin File (*.qml) + + + + &Plugins + + + + Find + + MyWebView @@ -6575,18 +6606,6 @@ please choose a different name: 100% 100% - - Straight - Rett fram - - - Swing - Svingende - - - Shuffle - Blanding - master volume Hovedvolum @@ -6602,6 +6621,93 @@ please choose a different name: + + PluginCreator + + File Operations + Filoperasjoner + + + Edit Operations + + + + MuseScore Plugin Editor + + + + MuseScore + MuseScore + + + Plugin "%1" has changes +save before closing? + + + + untitled + + + + Manual + + + + + PluginCreatorBase + + MainWindow + + + + Run + + + + Stop + + + + File + + + + Help + + + + Edit + + + + New + Ny + + + Open + + + + Save + Lagre + + + Manual + + + + Undo + Angre + + + Redo + Gjør om + + + Quit + Avslutt + + PreferenceDialog @@ -6636,14 +6742,6 @@ please choose a different name: Choose Default Style for Parts - - load - - - - Plugin Path - - Choose Scores Directory @@ -6719,10 +6817,6 @@ please choose a different name: Paths Stier - - Instrument List: - Liste over instrumenter: - Windows Vinduer @@ -7011,10 +7105,6 @@ please choose a different name: dark - - light - - use native file dialogs @@ -7283,6 +7373,34 @@ please choose a different name: Character Set: + + Instrument List2: + + + + Instrument List1: + + + + Name: + Navn: + + + Path: + + + + Version: + + + + Load + Last inn + + + Define Shortcut + + Properties @@ -7340,14 +7458,6 @@ please choose a different name: MuseScore: load Style failed: MuseScore: Innlasting av stil feilet: - - MuseScore - MuseScore - - - reading file < - leser fil < - MuseScore: invalid command MuseScore: Ugyldig kommando @@ -7364,10 +7474,6 @@ please choose a different name: MuseScore: Load languages failed: MuseScore: Lasting av språk mislykket: - - MuseScore: register script plugin: - MuseScore: Registrer scriptutvidelse: - MuseScore: Import GuitarPro @@ -7422,17 +7528,13 @@ failed: MuseScore: Save File MuseScore: Lagre fil - - > failed: - - Load failed: Lasting feilet: - &Quit - + Untitled + Uten tittel @@ -7797,10 +7899,6 @@ cannot split tuplet Ticks - - Tick: - Merke: - Bar @@ -7809,9 +7907,17 @@ cannot split tuplet Beat - - - SelectDialog + + tick: + + + + rTick: + + + + + SelectDialog MuseScore: Select MuseScore: Velg @@ -7964,21 +8070,21 @@ Sequencer ble deaktivert. SlurPropertyBase - - Volta Properties - Egenskaper for hus - Slur Properties Egenskaper for bue - solid - Heltrukket + Solid + - dotted - Prikket + Dotted + + + + Dashed + Stiplet @@ -8656,6 +8762,10 @@ altera styled + + layoutToParentWidth + + TextEditor @@ -8971,6 +9081,14 @@ altera Text Tekst + + Foreground Color: + + + + Background Color: + + TextStyleDialog @@ -9203,6 +9321,34 @@ p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'Sans Serif'; font-size:9pt; 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;">Hint: Du kan også legge til eller fjerne takter etter at notearket er opprettet.</p></body></html> + + 1 + 1 + + + 2 + 2 + + + 4 + 4 + + + 8 + 8 + + + 16 + 16 + + + 32 + 32 + + + 64 + 64 + TransposeDialogBase @@ -9638,10 +9784,6 @@ p, li { white-space: pre-wrap; } action - - Local &Handbook... - &Håndbok... - Save a Copy... Lagre en kopi... @@ -9910,46 +10052,6 @@ p, li { white-space: pre-wrap; } Reset Beam Mode Nullstill bjelkemodus - - up+shift+ctrl - Ctrl+Shift+Opp - - - down+shift+ctrl - Ctrl+Shift+Ned - - - left+ctrl - Ctrl+Venstre - - - left+shift - Shift+Venstre - - - right+shift - Shift+Høyre - - - right+ctrl+shift - Ctrl+Shift+Høyre - - - shift+home - Shift+Home - - - shift+end - Shift+End - - - ctrl+shift+home - Ctrl+Shift+Home - - - ctrl+shift+end - Ctrl+Shift+End - Delete Selected Measures Slett valgte takter @@ -10050,22 +10152,10 @@ p, li { white-space: pre-wrap; } Quit Avslutt - - Zoom Canvas - Zoom noteark - Lyrics Sangtekst - - Tempo... - Tempo... - - - Tempo - Tempo - Metronome Metronom @@ -10078,10 +10168,6 @@ p, li { white-space: pre-wrap; } Staff Text Notesystemtekst - - Frame Text - Rammetekst - Title Tittel @@ -10174,10 +10260,6 @@ p, li { white-space: pre-wrap; } Show Frames Vis rammer - - Search - Søk - Zoom In Zoom inn @@ -10210,10 +10292,6 @@ p, li { white-space: pre-wrap; } Repeat selection Repeter utvalg - - Follow Song - Følg sang - Local handbook Håndbok @@ -10350,10 +10428,6 @@ p, li { white-space: pre-wrap; } Trill Trille - - More stretch - Mer strekk - Less stretch Mindre strekk @@ -10366,10 +10440,6 @@ p, li { white-space: pre-wrap; } Flip direction Snu retning på notehals - - Flip Direction - Snu retning på notehals - Pitch up Tonehøyde opp @@ -10454,38 +10524,18 @@ p, li { white-space: pre-wrap; } Previous chord Forrige akkord - - Previous Chord - Forrige akkord - Previous measure Forrige takt - - Previous Measure - Forrige takt - Next chord Neste akkord - - Next Chord - Neste akkord - Next measure Neste takt - - Next Measure - Neste takt - - - Delete selected measures - Slett valgte takter - Append measures Legg til takter @@ -10526,10 +10576,6 @@ p, li { white-space: pre-wrap; } Save style Lagre stil - - Select all - Velg alt - Delete Delete @@ -10546,54 +10592,10 @@ p, li { white-space: pre-wrap; } Delete element and duration Slett element og varighet - - &Open... - - - - &Save - - - - Save &As... - - - - &Close - - File new - - &New... - - - - &Print... - - - - &Undo - - - - &Redo - - - - Cu&t - - - - &Copy - - - - &Paste - - Insert note A @@ -10750,62 +10752,26 @@ p, li { white-space: pre-wrap; } Timewise delete - - Append one measure - - Append One Measure - - Insert one measure - - Insert One Measure - - Insert horizontal frame - - - - Insert text frame - - Insert Text Frame - - Append text frame - - Append Text Frame - - Insert fret diagram frame - - Insert Fret Diagram Frame - - Insert vertical frame - - - - Append horizontal frame - - - - Append vertical frame - - Other tuplets @@ -10982,22 +10948,10 @@ p, li { white-space: pre-wrap; } Feathered beam, slower - - Feathered Beam, Slower - - Feathered beam, faster - - Feathered Beam, Faster - - - - Play panel - - Transport toolbar @@ -11006,10 +10960,6 @@ p, li { white-space: pre-wrap; } Note input toolbar - - Status bar - - Zoom canvas @@ -11022,10 +10972,6 @@ p, li { white-space: pre-wrap; } Add staff text - - Add text - - Add title text @@ -11074,82 +11020,26 @@ p, li { white-space: pre-wrap; } Player seek to end - - Select A&ll - - &Transpose... - - Violin clef - - Violin Clef - - Bass clef - F-nøkkel - 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 - - Toggle Section Break - - Edit element - - Show inspector @@ -11158,18 +11048,6 @@ p, li { white-space: pre-wrap; } Reset measure stretch - - Show invisible - - - - Show frames - - - - Enable script debugger - - Note entry: whole rest @@ -11206,14 +11084,6 @@ p, li { white-space: pre-wrap; } Backspace - - Zoom in - - - - Zoom out - - Mirror note head @@ -11250,10 +11120,6 @@ p, li { white-space: pre-wrap; } Display documents stacked - - Show score image - - Show OMR image @@ -11274,18 +11140,6 @@ p, li { white-space: pre-wrap; } Toggle foto mode - - Full screen - - - - F&ull Screen - - - - F&ull screen - - Enable horizontal raster @@ -11298,10 +11152,6 @@ p, li { white-space: pre-wrap; } Configure raster - - Re-pitch mode - - Re-Pitch Mode @@ -11330,10 +11180,6 @@ p, li { white-space: pre-wrap; } 128th note - - Show unprintable - - Split Measure @@ -11370,18 +11216,10 @@ p, li { white-space: pre-wrap; } Reset user settings - - Show debugger - - Piano Keyboard - - Show Inspector - - Save Selection @@ -11399,303 +11237,323 @@ p, li { white-space: pre-wrap; } - &Export... + Respell pitches - &Instruments... + Grace: 8nd after - &Note Input + Pan score while playing on/off - Respell pitches - + Pan + Bal - &Respell Pitches + Show Unprintable - Add &More Stretch + Show Page Margins - Add &Less Stretch + Manage parts - Reset &Beam Mode + Inspector + Objektovervåker + + + Show OMR Panel - Grace: 8nd after + OmrPanel - Pan score while playing on/off + toggle metronome - Pan - Bal + Figured Bass + - &Load Style... + Next Score - &Save Style... + Previous Score - Save style as default + Transpose Up - Save Style As &Default... + Transpose Down - &Concert Pitch + Show master palette - &Reset + Master Palette... - De&bugger + Insert Measure - Reset &Stretch + Toggle View Mode - Show Unprintable + Export Parts - Show Page Margins + Export Parts... - &Search + Save a copy of the score's parts in various formats - &General... + Add marcato - &Text... + Marcato - &Chords... + Select Section - Parts + Note duration: double whole - Par&ts... + Double whole note - Manage parts + Whole note - Additional &Media... + Half note - &Page Settings... + Quarter note - &Album... + 8th note - Inspector - Objektovervåker + 16th note + - Show OMR Panel + 32nd note - OmrPanel + 64th note - Show OMR PAnel + Edit score info - metronome + Insert Special Characters... - toggle metronome + Layers - Figured Bass + MuseScore Connect - Next Score + next syllable - Previous Score + previous syllable - Transpose Up + toggle visibility - Transpose Down + set visible - Show master palette + set unvisible - Master Palette... + Local Handbook... - Insert Measure + Open... - Toggle View Mode + Save + Lagre + + + Save As... - Export Parts + Export... - Export Parts... + Close + Lukk + + + New... - Save a copy of the score's parts in various formats + Print... - Add marcato + Instruments... - Marcato + Add More Stretch - Select Section + Add Less Stretch - select section + Tempo Marking... - Note duration: double whole + Tempo Marking - Double whole note + Text + Tekst + + + Add Frame Text - Whole note + Load Style... - Half note + Save Style... - Quarter note + Save Style As Default... - 8th note + Select All - 16th note + Concert Pitch + Kammertone + + + Info... - 32nd note + Reset - 64th note + Debugger - Edit score info + Reset Stretch - &Info... + Insert Special Characters - Insert special characters + Find - Insert Special Characters... + General... - Enable Script Debugger + Text... - Layers + Chords... - &Layers... + Parts... - MuseScore Connect + Full Screen - next syllable + Additional Media... - previous syllable + Page Settings... - toggle visibility + Album... - set visible + Layers... - set unvisible + Plugin Creator diff --git a/share/locale/mscore_nl.ts b/share/locale/mscore_nl.ts index 87acc7b8adff..40544feb10a9 100644 --- a/share/locale/mscore_nl.ts +++ b/share/locale/mscore_nl.ts @@ -143,10 +143,6 @@ p, li { white-space: pre-wrap; } Remove Score - - score list - - move current score down in list @@ -167,18 +163,6 @@ p, li { white-space: pre-wrap; } Add Score - - path to new score you want to add - - - - open file manager - - - - ... - ... - create new album @@ -211,6 +195,18 @@ p, li { white-space: pre-wrap; } Join Scores + + Load + Laden + + + MuseScore: Add Score + + + + MuseScore: Load Album + + ArticulationBase @@ -1168,15 +1164,15 @@ spatium unit klein - showCourtesyClef + Hide courtesy clef - Hide courtesy clef + Show courtesy clef - Show courtesy clef + showCourtesy @@ -1201,14 +1197,14 @@ spatium unit Drum Tools - - Drumset - - Drums Drums + + Edit Drumset + + DrumrollEditor @@ -2641,10 +2637,6 @@ spatium unit Measure Maat - - Begin repeat left margin - Begin herhalen linkermarge - Fix Measure Width Bevestig Maat Breedte @@ -2657,10 +2649,6 @@ spatium unit Use German names Gebruik Duitse namen - - Clef-key distance - Afstand sleutel-maatsoort - beam width units waardestreep-breedtes @@ -3194,6 +3182,10 @@ p, li { white-space: pre-wrap; } Max. System distance + + Clef/Key right margin + + EditTempoBase @@ -3571,6 +3563,28 @@ spatium unit Down Omlaag + + Offset X: + + + + sp + spatium unit +---------- +spatium unit + sp + + + Offset Y: + + + + + InspectorClef + + Show Courtesy Clef + + InspectorElement @@ -3710,6 +3724,36 @@ spatium unit % + + InspectorKeySig + + Show Courtesy Time Signature + + + + Show Naturals + + + + + InspectorLasso + + Form + + + + Lasso + + + + Position: + + + + Size + + + InspectorNote @@ -3954,6 +3998,13 @@ spatium unit sp + + InspectorTimeSig + + Show Courtesy Time Signature + + + InspectorVBox @@ -5044,10 +5095,6 @@ Would you like to locate %2 now? play afspelen - - MuseScore: Open Help - MuseScore Open Help - Start Repeat Start Herhaling @@ -5154,10 +5201,6 @@ voordat u afsluit? End Repeat Einde Herhaling - - Search - Zoeken - System Systeem @@ -5249,12 +5292,6 @@ Restore session? De vorige sessie is onverwacht afgesloten. Sessie herstellen? - - - MuseScore handbook not found at: - - MuseScore handboek niet gevonden in: - Da Capo @@ -5296,14 +5333,6 @@ Sessie herstellen? Tremolo Tremolo - - - -From the "Help" menu try choosing "Online Handbook" instead. - - -Probeer "Online handboek" in het menu "Help". - Rehearsal Mark Cijfer-, Letterteken @@ -5340,32 +5369,10 @@ Probeer "Online handboek" in het menu "Help". Open &Recent Open &Recent - - Script -%1 -is incompatible with current interface - Script -%1 -is niet compactibel met de huidige interface - - - MuseScore is too old to run script -%1 - MuseScore te oud voor script -%1 - Bar %1 Beat %2.%3 Maat %1 Tel %2.%3 - - Error loading plugin -"%1" line %2: -%3 - Fout bij het laden van de plugin -"%1" lijn %2: -%3 - MuseScore: Load error @@ -5975,6 +5982,30 @@ please choose a different name: Report a bug + + MuseScore: Load Plugin + + + + MuseScore Plugin (*.qml);;All Files (*) + + + + MuseScore: Save Plugin + + + + MuseScore Plugin File (*.qml) + + + + &Plugins + + + + Find + + MyWebView @@ -6547,10 +6578,6 @@ please choose a different name: 100% 100% - - Swing - Swing - 001.01 001.01 @@ -6571,10 +6598,6 @@ please choose a different name: actual tempo werkelijk tempo - - Shuffle - Shuffle - MuseScore: Play Panel MuseScore Afspeelpaneel @@ -6583,10 +6606,6 @@ please choose a different name: relative tempo relatief tempo - - Straight - Recht - measure.beat maat.tel @@ -6606,6 +6625,93 @@ please choose a different name: + + PluginCreator + + File Operations + Bestand Verrichtingen + + + Edit Operations + + + + MuseScore Plugin Editor + + + + MuseScore + MuseScore + + + Plugin "%1" has changes +save before closing? + + + + untitled + + + + Manual + + + + + PluginCreatorBase + + MainWindow + + + + Run + + + + Stop + + + + File + + + + Help + + + + Edit + + + + New + Nieuw + + + Open + + + + Save + Opslaan + + + Manual + + + + Undo + Maak Ongedaan + + + Redo + herstel het laatst ongedaan gemaakte + + + Quit + Afsluiten + + PreferenceDialog @@ -6640,14 +6746,6 @@ please choose a different name: Choose Default Style for Parts - - load - - - - Plugin Path - - Choose Scores Directory @@ -6963,10 +7061,6 @@ please choose a different name: General Algemeen - - Instrument List: - Instrumentenlijst: - Windows Vensters @@ -7015,10 +7109,6 @@ please choose a different name: dark - - light - - use native file dialogs @@ -7287,6 +7377,34 @@ please choose a different name: Character Set: + + Instrument List2: + + + + Instrument List1: + + + + Name: + + + + Path: + + + + Version: + + + + Load + Laden + + + Define Shortcut + + Properties @@ -7340,10 +7458,6 @@ please choose a different name: MuseScore: load Style failed: MuseScore: Stijl laden mislukt: - - MuseScore - MuseScore - MuseScore: Load Style failed: MuseScore: Laad Stijl mislukt: @@ -7352,10 +7466,6 @@ please choose a different name: MuseScore: load failed: MuseScore: laden mislukt: - - reading file < - inlezen bestand < - MuseScore: Import Capella MuseScore: Importeer Capella @@ -7368,10 +7478,6 @@ please choose a different name: MuseScore: Load languages failed: MuseScore: Laden talen mislukt: - - MuseScore: register script plugin: - MuseScore: registeer script plugin - MuseScore: Import GuitarPro @@ -7427,17 +7533,13 @@ mislukt: MuseScore: Save File Musescore: Bestand opslaan - - > failed: - - Load failed: Laden mislukt: - &Quit - + Untitled + Zonder titel @@ -7803,10 +7905,6 @@ cannot split tuplet Ticks - - Tick: - Tik: - Bar @@ -7815,9 +7913,17 @@ cannot split tuplet Beat - - - SelectDialog + + tick: + + + + rTick: + + + + + SelectDialog subtract from selection onttrek aan selectie @@ -7971,20 +8077,20 @@ De sequencer wordt uitgeschakeld.. SlurPropertyBase - solid - vast + Slur Properties + Boog-eigenschappen - dotted - stippel + Solid + - Slur Properties - Boog-eigenschappen + Dotted + - Volta Properties - Volta-eigenschappen + Dashed + Gestreept @@ -8662,6 +8768,10 @@ altera styled + + layoutToParentWidth + + TextEditor @@ -8977,6 +9087,14 @@ altera Text Tekst + + Foreground Color: + + + + Background Color: + + TextStyleDialog @@ -9209,6 +9327,34 @@ p, li { white-space: pre-wrap; } Time Signature Maatsoort + + 1 + 1 + + + 2 + 2 + + + 4 + 4 + + + 8 + 8 + + + 16 + 16 + + + 32 + 32 + + + 64 + 64 + TransposeDialogBase @@ -9760,10 +9906,6 @@ p, li { white-space: pre-wrap; } Print Print - - Tempo - Tempo - Title Titel @@ -9784,10 +9926,6 @@ p, li { white-space: pre-wrap; } Pitch up Toonhoogte omhoog - - Local &Handbook... - Lokaal &Handboek... - File save a copy Bestand opslaan als kopie @@ -9796,10 +9934,6 @@ p, li { white-space: pre-wrap; } Start or stop playback Start of stop afspelen - - up+shift+ctrl - pijl omhoog + shift + ctrl - Zoom In Inzoomen @@ -9840,10 +9974,6 @@ p, li { white-space: pre-wrap; } Enter third below Terts eronder toevoegen - - right+ctrl+shift - pijl rechts + ctrl + shift - File open Bestand openen @@ -9864,22 +9994,10 @@ p, li { white-space: pre-wrap; } Select all similar elements Selecteer alle soortgelijke elementen - - Delete selected measures - Verwijder geselecteerde maten - Add less stretch to selected measure Verklein Afstanden geselecteerde maten - - Frame Text - Kadertekst - - - down+shift+ctrl - pijl omlaag + shift + ctrl - Seventh Below Septiem Eronder @@ -9944,10 +10062,6 @@ p, li { white-space: pre-wrap; } Append Vertical Frame Verticaal kader toevoegen - - ctrl+shift+end - ctrl+shift+end - Show Invisible Onzichtbare Objecten Tonen @@ -9968,10 +10082,6 @@ p, li { white-space: pre-wrap; } Go to bottom note in chord Ga naar laagste noot in akkoord - - Zoom Canvas - Inzoomen/Uitzoomen - Enter octave below Octaaf eronder toevoegen @@ -10028,14 +10138,6 @@ p, li { white-space: pre-wrap; } Rewind Terugspoelen - - Search - Zoeken - - - ctrl+shift+home - ctrl+shift+home - Quintuplet Kwintool @@ -10076,10 +10178,6 @@ p, li { white-space: pre-wrap; } Composer Componist - - Next Chord - Volgende Akkoord - Nonuplet Nonool @@ -10104,14 +10202,6 @@ p, li { white-space: pre-wrap; } Close current score Afsluiten huidige partituur - - Follow Song - Volg Lied - - - Next Measure - Volgende Maat - Next measure Volgende maat @@ -10124,18 +10214,10 @@ p, li { white-space: pre-wrap; } Down octave Octaaf omlaag - - left+shift - pijl links + shift - Note Input Noteninvoer - - right+shift - pijl rechts + shift - File close Bestand afsluiten @@ -10284,10 +10366,6 @@ p, li { white-space: pre-wrap; } Flip direction Stokrichting - - Flip Direction - Stokrichting - Status Bar Statusbalk @@ -10308,10 +10386,6 @@ p, li { white-space: pre-wrap; } Enter rest Rust toevoegen - - Tempo... - Tempo... - Go to higher pitched note in chord Ga naar hogere noot in akkoord @@ -10376,18 +10450,6 @@ p, li { white-space: pre-wrap; } Pitch down octave Octaaf omlaag - - left+ctrl - pijl links + ctrl - - - shift+home - shift + home - - - Previous Chord - Vorige Akkoord - Previous chord Vorige akkoord @@ -10448,10 +10510,6 @@ p, li { white-space: pre-wrap; } Documents Stacked Documenten boven alkaar - - Previous Measure - Vorige Maat - Previous measure Vorige maat @@ -10488,10 +10546,6 @@ p, li { white-space: pre-wrap; } Sextuplet Sextool - - shift+end - shift + end - Insert Measures... Maten Invoegen... @@ -10504,10 +10558,6 @@ p, li { white-space: pre-wrap; } Enter seventh below Septiem eronder toevoegen - - More stretch - Afstanden vergroten - Player play Speler afspelen @@ -10532,10 +10582,6 @@ p, li { white-space: pre-wrap; } Save style Stijl Opslaan - - Select all - Selecteer alles - Delete Verwijder @@ -10552,54 +10598,10 @@ p, li { white-space: pre-wrap; } Delete element and duration Verwijder element en duur - - &Open... - - - - &Save - - - - Save &As... - - - - &Close - - File new - - &New... - - - - &Print... - - - - &Undo - - - - &Redo - - - - Cu&t - - - - &Copy - - - - &Paste - - Insert note A @@ -10756,62 +10758,26 @@ p, li { white-space: pre-wrap; } Timewise delete - - Append one measure - - Append One Measure - - Insert one measure - - Insert One Measure - - Insert horizontal frame - - - - Insert text frame - - Insert Text Frame - - Append text frame - - Append Text Frame - - Insert fret diagram frame - - Insert Fret Diagram Frame - - Insert vertical frame - - - - Append horizontal frame - - - - Append vertical frame - - Other tuplets @@ -10988,22 +10954,10 @@ p, li { white-space: pre-wrap; } Feathered beam, slower - - Feathered Beam, Slower - - Feathered beam, faster - - Feathered Beam, Faster - - - - Play panel - - Transport toolbar @@ -11012,10 +10966,6 @@ p, li { white-space: pre-wrap; } Note input toolbar - - Status bar - - Zoom canvas @@ -11028,10 +10978,6 @@ p, li { white-space: pre-wrap; } Add staff text - - Add text - - Add title text @@ -11080,82 +11026,26 @@ p, li { white-space: pre-wrap; } Player seek to end - - Select A&ll - - &Transpose... - - Violin clef - - Violin Clef - - Bass clef - Bas-sleutel - 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 - - Toggle Section Break - - Edit element - - Show inspector @@ -11164,18 +11054,6 @@ p, li { white-space: pre-wrap; } Reset measure stretch - - Show invisible - - - - Show frames - - - - Enable script debugger - - Note entry: whole rest @@ -11212,14 +11090,6 @@ p, li { white-space: pre-wrap; } Backspace - - Zoom in - - - - Zoom out - - Mirror note head @@ -11256,10 +11126,6 @@ p, li { white-space: pre-wrap; } Display documents stacked - - Show score image - - Show OMR image @@ -11280,18 +11146,6 @@ p, li { white-space: pre-wrap; } Toggle foto mode - - Full screen - - - - F&ull Screen - - - - F&ull screen - - Enable horizontal raster @@ -11304,10 +11158,6 @@ p, li { white-space: pre-wrap; } Configure raster - - Re-pitch mode - - Re-Pitch Mode @@ -11336,10 +11186,6 @@ p, li { white-space: pre-wrap; } 128th note - - Show unprintable - - Split Measure @@ -11376,18 +11222,10 @@ p, li { white-space: pre-wrap; } Reset user settings - - Show debugger - - Piano Keyboard - - Show Inspector - - Save Selection @@ -11405,303 +11243,323 @@ p, li { white-space: pre-wrap; } - &Export... + Respell pitches - &Instruments... + Grace: 8nd after - &Note Input + Pan score while playing on/off - Respell pitches - + Pan + Pan - &Respell Pitches + Show Unprintable - Add &More Stretch + Show Page Margins - Add &Less Stretch + Manage parts - Reset &Beam Mode + Inspector + Inspecteren + + + Show OMR Panel - Grace: 8nd after + OmrPanel - Pan score while playing on/off + toggle metronome - Pan - Pan + Figured Bass + - &Load Style... + Next Score - &Save Style... + Previous Score - Save style as default + Transpose Up - Save Style As &Default... + Transpose Down - &Concert Pitch + Show master palette - &Reset + Master Palette... - De&bugger + Insert Measure - Reset &Stretch + Toggle View Mode - Show Unprintable + Export Parts - Show Page Margins + Export Parts... - &Search + Save a copy of the score's parts in various formats - &General... + Add marcato - &Text... + Marcato - &Chords... + Select Section - Parts + Note duration: double whole - Par&ts... + Double whole note - Manage parts + Whole note - Additional &Media... + Half note - &Page Settings... + Quarter note - &Album... + 8th note - Inspector - Inspecteren + 16th note + - Show OMR Panel + 32nd note - OmrPanel + 64th note - Show OMR PAnel + Edit score info - metronome + Insert Special Characters... - toggle metronome + Layers - Figured Bass + MuseScore Connect - Next Score + next syllable - Previous Score + previous syllable - Transpose Up + toggle visibility - Transpose Down + set visible - Show master palette + set unvisible - Master Palette... + Local Handbook... - Insert Measure + Open... - Toggle View Mode + Save + Opslaan + + + Save As... - Export Parts + Export... - Export Parts... + Close + Afsluiten + + + New... - Save a copy of the score's parts in various formats + Print... - Add marcato + Instruments... - Marcato + Add More Stretch - Select Section + Add Less Stretch - select section + Tempo Marking... - Note duration: double whole + Tempo Marking - Double whole note + Text + Tekst + + + Add Frame Text - Whole note + Load Style... - Half note + Save Style... - Quarter note + Save Style As Default... - 8th note + Select All - 16th note + Concert Pitch + Werkelijke Toonhoogte + + + Info... - 32nd note + Reset - 64th note + Debugger - Edit score info + Reset Stretch - &Info... + Insert Special Characters - Insert special characters + Find - Insert Special Characters... + General... - Enable Script Debugger + Text... - Layers + Chords... - &Layers... + Parts... - MuseScore Connect + Full Screen - next syllable + Additional Media... - previous syllable + Page Settings... - toggle visibility + Album... - set visible + Layers... - set unvisible + Plugin Creator diff --git a/share/locale/mscore_pl.ts b/share/locale/mscore_pl.ts index 1b712dc437e0..cb9813d8fd2f 100644 --- a/share/locale/mscore_pl.ts +++ b/share/locale/mscore_pl.ts @@ -143,10 +143,6 @@ p, li { white-space: pre-wrap; } Remove Score - - score list - - move current score down in list @@ -167,18 +163,6 @@ p, li { white-space: pre-wrap; } Add Score - - path to new score you want to add - - - - open file manager - - - - ... - ... - create new album @@ -211,6 +195,18 @@ p, li { white-space: pre-wrap; } Join Scores + + Load + Wczytaj + + + MuseScore: Add Score + + + + MuseScore: Load Album + + ArticulationBase @@ -1168,15 +1164,15 @@ spatium unit - showCourtesyClef + Hide courtesy clef - Hide courtesy clef + Show courtesy clef - Show courtesy clef + showCourtesy @@ -1201,14 +1197,14 @@ spatium unit Drum Tools - - Drumset - - Drums Perkusja + + Edit Drumset + + DrumrollEditor @@ -2787,18 +2783,10 @@ spatium unit Time sig. left margin Lewy margines oznaczenia metrum - - Clef-key distance - Dystans klucz-tonacja - Clef-barline distance Dystans klucz-kreska taktowa - - Begin repeat left margin - Lewy margines początku repetycji - Show repeat bar tips ("winged" repeats) Pokazuj "ładne" repetycje @@ -3195,6 +3183,10 @@ p, li { white-space: pre-wrap; } Max. System distance + + Clef/Key right margin + + EditTempoBase @@ -3572,6 +3564,28 @@ spatium unit Down + + Offset X: + + + + sp + spatium unit +---------- +spatium unit + sp + + + Offset Y: + + + + + InspectorClef + + Show Courtesy Clef + + InspectorElement @@ -3711,6 +3725,36 @@ spatium unit % + + InspectorKeySig + + Show Courtesy Time Signature + + + + Show Naturals + + + + + InspectorLasso + + Form + + + + Lasso + + + + Position: + + + + Size + + + InspectorNote @@ -3955,6 +3999,13 @@ spatium unit sp + + InspectorTimeSig + + Show Courtesy Time Signature + + + InspectorVBox @@ -5033,10 +5084,6 @@ Would you like to locate %2 now? Concert Pitch Bez transpozycji (In C) - - Search - Szukaj - MuseScore MuseScore @@ -5194,10 +5241,6 @@ before closing? &About &O programie - - MuseScore: Open Help - MuseScore: Otwórz pomoc - no score brak partytury @@ -5226,20 +5269,6 @@ before closing? Glissando Glissando - - MuseScore handbook not found at: - - Nie znaleziono podręcznika MuseScore na: - - - - - -From the "Help" menu try choosing "Online Handbook" instead. - - -Z menu "Pomoc" wybierz "Podręcznik online". - Grace Notes Przednutki @@ -5334,32 +5363,10 @@ Restore session? Varied coda Varied coda - - Script -%1 -is incompatible with current interface - Skrypt -%1 -jest niekompatybilny z obecnym interfejsem. - - - MuseScore is too old to run script -%1 - MuseScore jest zbyt stary, aby uruchomić skrypt -%1 - Bar %1 Beat %2.%3 Takt 1% Miara %2.%3 - - Error loading plugin -"%1" line %2: -%3 - Błąd wczytywania pluginu -"%1" linia %2: -%3 - MuseScore: Load error @@ -5970,6 +5977,30 @@ Czy przetransponować całą partyturę? Report a bug + + MuseScore: Load Plugin + + + + MuseScore Plugin (*.qml);;All Files (*) + + + + MuseScore: Save Plugin + + + + MuseScore Plugin File (*.qml) + + + + &Plugins + + + + Find + + MyWebView @@ -6574,18 +6605,6 @@ Czy przetransponować całą partyturę? 100% 100% - - Straight - Straight - - - Swing - Swing - - - Shuffle - Shuffle - master volume master volume @@ -6601,6 +6620,93 @@ Czy przetransponować całą partyturę? + + PluginCreator + + File Operations + Działania na plikach + + + Edit Operations + + + + MuseScore Plugin Editor + + + + MuseScore + MuseScore + + + Plugin "%1" has changes +save before closing? + + + + untitled + + + + Manual + + + + + PluginCreatorBase + + MainWindow + + + + Run + + + + Stop + + + + File + + + + Help + + + + Edit + + + + New + Nowy + + + Open + + + + Save + Zapisz + + + Manual + + + + Undo + Cofnij + + + Redo + Ponów + + + Quit + Porzuć + + PreferenceDialog @@ -6635,14 +6741,6 @@ Czy przetransponować całą partyturę? Choose Default Style for Parts - - load - - - - Plugin Path - - Choose Scores Directory @@ -6718,10 +6816,6 @@ Czy przetransponować całą partyturę? Paths Ścieżki - - Instrument List: - Lista instrumentów: - Windows Okna @@ -7010,10 +7104,6 @@ Czy przetransponować całą partyturę? dark - - light - - use native file dialogs @@ -7282,6 +7372,34 @@ Czy przetransponować całą partyturę? Character Set: + + Instrument List2: + + + + Instrument List1: + + + + Name: + Nazwa: + + + Path: + + + + Version: + + + + Load + Wczytaj + + + Define Shortcut + + Properties @@ -7343,14 +7461,6 @@ Czy przetransponować całą partyturę? MuseScore: load Style failed: MuseScore: nie udało się wczytać stylu: - - MuseScore - MuseScore - - - reading file < - odczytywanie pliku < - MuseScore: invalid command MuseScore: nieprawidłowe polecenie @@ -7363,10 +7473,6 @@ Czy przetransponować całą partyturę? MuseScore: Load languages failed: MuseScore: nie udało się wczytać języków: - - MuseScore: register script plugin: - - MuseScore: Import GuitarPro @@ -7421,17 +7527,13 @@ failed: MuseScore: Save File MuseScore: Zapisz plik - - > failed: - - Load failed: Wczytywanie nieudane: - &Quit - + Untitled + Bez tytułu @@ -7796,10 +7898,6 @@ cannot split tuplet Ticks - - Tick: - Ptaszek: - Bar @@ -7808,7 +7906,15 @@ cannot split tuplet Beat - + + tick: + + + + rTick: + + + SelectDialog @@ -7963,21 +8069,21 @@ Sekwencer będzie nieczynny. SlurPropertyBase - - Volta Properties - Właściwości volty - Slur Properties Właściwości łuku - solid - stała + Solid + + + + Dotted + - dotted - przerywany + Dashed + Przerywana @@ -8655,6 +8761,10 @@ altera styled + + layoutToParentWidth + + TextEditor @@ -8970,6 +9080,14 @@ altera Text Tekst + + Foreground Color: + + + + Background Color: + + TextStyleDialog @@ -9202,6 +9320,34 @@ p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'Sans Serif'; font-size:9pt; 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;">Rada: możesz także dodać i usunąc po stworzeniu partytury.</p></body></html> + + 1 + 1 + + + 2 + 2 + + + 4 + 4 + + + 8 + 8 + + + 16 + 16 + + + 32 + 32 + + + 64 + 64 + TransposeDialogBase @@ -9637,10 +9783,6 @@ p, li { white-space: pre-wrap; } action - - Local &Handbook... - Podręcznik &Lokalny... - Save a Copy... Zapisz kopię... @@ -9909,46 +10051,6 @@ p, li { white-space: pre-wrap; } Reset Beam Mode Resetuj tryb belkowania - - up+shift+ctrl - do góry+shift+ctrl - - - down+shift+ctrl - na dół+shift+ctrl - - - left+ctrl - lewo+ctrl - - - left+shift - lewy+shift - - - right+shift - prawy+shift - - - right+ctrl+shift - prawy+ctrl+shift - - - shift+home - shift+home - - - shift+end - shift+end - - - ctrl+shift+home - ctrl+shift+home - - - ctrl+shift+end - ctrl+shift+end - Delete Selected Measures Usuń zaznaczone takty @@ -10049,22 +10151,10 @@ p, li { white-space: pre-wrap; } Quit Porzuć - - Zoom Canvas - Powiększenie płótna - Lyrics Słowa - - Tempo... - Tempo... - - - Tempo - Tempo - Metronome Metronom @@ -10077,10 +10167,6 @@ p, li { white-space: pre-wrap; } Staff Text Tekst pięciolinii - - Frame Text - Tekst ramki - Title Tytuł @@ -10173,10 +10259,6 @@ p, li { white-space: pre-wrap; } Show Frames Pokaż ramki - - Search - Szukaj - Zoom In Powiększ @@ -10209,10 +10291,6 @@ p, li { white-space: pre-wrap; } Repeat selection Powtórz zaznaczenie - - Follow Song - Śledź piosenkę - Local handbook Podręcznik lokalny @@ -10349,10 +10427,6 @@ p, li { white-space: pre-wrap; } Trill Tryl - - More stretch - Większe rozciągnięcie - Less stretch Mniejsze rozciągnięcie @@ -10365,10 +10439,6 @@ p, li { white-space: pre-wrap; } Flip direction Zmień kierunek - - Flip Direction - Zmień kierunek - Pitch up Przenieś w górę @@ -10453,38 +10523,18 @@ p, li { white-space: pre-wrap; } Previous chord Poprzedni akord - - Previous Chord - Poprzedni akord - Previous measure Poprzedni takt - - Previous Measure - Poprzedni takt - Next chord Następny akord - - Next Chord - Następny akord - Next measure Następny takt - - Next Measure - Następny takt - - - Delete selected measures - Usuń zaznaczone takty - Append measures Dodaj takty @@ -10525,10 +10575,6 @@ p, li { white-space: pre-wrap; } Save style Zapisz styl - - Select all - Zaznacz wszystko - Delete Usuń @@ -10545,54 +10591,10 @@ p, li { white-space: pre-wrap; } Delete element and duration Usuń element i wartość - - &Open... - - - - &Save - - - - Save &As... - - - - &Close - - File new - - &New... - - - - &Print... - - - - &Undo - - - - &Redo - - - - Cu&t - - - - &Copy - - - - &Paste - - Insert note A @@ -10749,62 +10751,26 @@ p, li { white-space: pre-wrap; } Timewise delete - - Append one measure - - Append One Measure - - Insert one measure - - Insert One Measure - - Insert horizontal frame - - - - Insert text frame - - Insert Text Frame - - Append text frame - - Append Text Frame - - Insert fret diagram frame - - Insert Fret Diagram Frame - - Insert vertical frame - - - - Append horizontal frame - - - - Append vertical frame - - Other tuplets @@ -10981,22 +10947,10 @@ p, li { white-space: pre-wrap; } Feathered beam, slower - - Feathered Beam, Slower - - Feathered beam, faster - - Feathered Beam, Faster - - - - Play panel - - Transport toolbar @@ -11005,10 +10959,6 @@ p, li { white-space: pre-wrap; } Note input toolbar - - Status bar - - Zoom canvas @@ -11021,10 +10971,6 @@ p, li { white-space: pre-wrap; } Add staff text - - Add text - - Add title text @@ -11073,82 +11019,26 @@ p, li { white-space: pre-wrap; } Player seek to end - - Select A&ll - - &Transpose... - - Violin clef - - Violin Clef - - Bass clef - Klucz basowy - 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 - - Toggle Section Break - - Edit element - - Show inspector @@ -11157,18 +11047,6 @@ p, li { white-space: pre-wrap; } Reset measure stretch - - Show invisible - - - - Show frames - - - - Enable script debugger - - Note entry: whole rest @@ -11205,14 +11083,6 @@ p, li { white-space: pre-wrap; } Backspace - - Zoom in - - - - Zoom out - - Mirror note head @@ -11249,10 +11119,6 @@ p, li { white-space: pre-wrap; } Display documents stacked - - Show score image - - Show OMR image @@ -11273,18 +11139,6 @@ p, li { white-space: pre-wrap; } Toggle foto mode - - Full screen - - - - F&ull Screen - - - - F&ull screen - - Enable horizontal raster @@ -11297,10 +11151,6 @@ p, li { white-space: pre-wrap; } Configure raster - - Re-pitch mode - - Re-Pitch Mode @@ -11329,10 +11179,6 @@ p, li { white-space: pre-wrap; } 128th note - - Show unprintable - - Split Measure @@ -11369,18 +11215,10 @@ p, li { white-space: pre-wrap; } Reset user settings - - Show debugger - - Piano Keyboard - - Show Inspector - - Save Selection @@ -11398,303 +11236,323 @@ p, li { white-space: pre-wrap; } - &Export... + Respell pitches - &Instruments... + Grace: 8nd after - &Note Input + Pan score while playing on/off - Respell pitches - + Pan + Pan - &Respell Pitches + Show Unprintable - Add &More Stretch + Show Page Margins - Add &Less Stretch + Manage parts - Reset &Beam Mode + Inspector + Kontroler + + + Show OMR Panel - Grace: 8nd after + OmrPanel - Pan score while playing on/off + toggle metronome - Pan - Pan + Figured Bass + - &Load Style... + Next Score - &Save Style... + Previous Score - Save style as default + Transpose Up - Save Style As &Default... + Transpose Down - &Concert Pitch + Show master palette - &Reset + Master Palette... - De&bugger + Insert Measure - Reset &Stretch + Toggle View Mode - Show Unprintable + Export Parts - Show Page Margins + Export Parts... - &Search + Save a copy of the score's parts in various formats - &General... + Add marcato - &Text... + Marcato - &Chords... + Select Section - Parts + Note duration: double whole - Par&ts... + Double whole note - Manage parts + Whole note - Additional &Media... + Half note - &Page Settings... + Quarter note - &Album... + 8th note - Inspector - Kontroler + 16th note + - Show OMR Panel + 32nd note - OmrPanel + 64th note - Show OMR PAnel + Edit score info - metronome + Insert Special Characters... - toggle metronome + Layers - Figured Bass + MuseScore Connect - Next Score + next syllable - Previous Score + previous syllable - Transpose Up + toggle visibility - Transpose Down + set visible - Show master palette + set unvisible - Master Palette... + Local Handbook... - Insert Measure + Open... - Toggle View Mode + Save + Zapisz + + + Save As... - Export Parts + Export... - Export Parts... + Close + Zamknij + + + New... - Save a copy of the score's parts in various formats + Print... - Add marcato + Instruments... - Marcato + Add More Stretch - Select Section + Add Less Stretch - select section + Tempo Marking... - Note duration: double whole + Tempo Marking - Double whole note + Text + Tekst + + + Add Frame Text - Whole note + Load Style... - Half note + Save Style... - Quarter note + Save Style As Default... - 8th note + Select All - 16th note + Concert Pitch + Bez transpozycji (In C) + + + Info... - 32nd note + Reset - 64th note + Debugger - Edit score info + Reset Stretch - &Info... + Insert Special Characters - Insert special characters + Find - Insert Special Characters... + General... - Enable Script Debugger + Text... - Layers + Chords... - &Layers... + Parts... - MuseScore Connect + Full Screen - next syllable + Additional Media... - previous syllable + Page Settings... - toggle visibility + Album... - set visible + Layers... - set unvisible + Plugin Creator diff --git a/share/locale/mscore_pt.ts b/share/locale/mscore_pt.ts index 7748bbe4e8c0..97f78371085e 100644 --- a/share/locale/mscore_pt.ts +++ b/share/locale/mscore_pt.ts @@ -134,10 +134,6 @@ p, li { white-space: pre-wrap; } Remove Score - - score list - - move current score down in list @@ -158,18 +154,6 @@ p, li { white-space: pre-wrap; } Add Score - - path to new score you want to add - - - - open file manager - - - - ... - ... - create new album @@ -202,6 +186,18 @@ p, li { white-space: pre-wrap; } Join Scores + + Load + Carregar + + + MuseScore: Add Score + + + + MuseScore: Load Album + + ArticulationBase @@ -1159,15 +1155,15 @@ spatium unit - showCourtesyClef + Hide courtesy clef - Hide courtesy clef + Show courtesy clef - Show courtesy clef + showCourtesy @@ -1192,14 +1188,14 @@ spatium unit Drum Tools - - Drumset - - Drums Tambores + + Edit Drumset + + DrumrollEditor @@ -2777,18 +2773,10 @@ spatium unit Time sig. left margin - - Clef-key distance - - Clef-barline distance - - Begin repeat left margin - - Show repeat bar tips ("winged" repeats) @@ -3185,6 +3173,10 @@ p, li { white-space: pre-wrap; } Max. System distance + + Clef/Key right margin + + EditTempoBase @@ -3562,6 +3554,28 @@ spatium unit Down + + Offset X: + + + + sp + spatium unit +---------- +spatium unit + sp + + + Offset Y: + + + + + InspectorClef + + Show Courtesy Clef + + InspectorElement @@ -3701,6 +3715,36 @@ spatium unit % + + InspectorKeySig + + Show Courtesy Time Signature + + + + Show Naturals + + + + + InspectorLasso + + Form + + + + Lasso + + + + Position: + + + + Size + + + InspectorNote @@ -3945,6 +3989,13 @@ spatium unit sp + + InspectorTimeSig + + Show Courtesy Time Signature + + + InspectorVBox @@ -5122,10 +5173,6 @@ Would you like to locate %2 now? &About &Sobre - - MuseScore: Open Help - MuseScore: Abrir ajuda - note entry mode modo de entrada de notas @@ -5192,10 +5239,6 @@ antes de fechar? - - Search - Procurar - End Bar Barra final @@ -5220,20 +5263,6 @@ antes de fechar? Go To: Ir Para: - - MuseScore handbook not found at: - - O manual do MuseScore não foi encontrado em: - - - - - -From the "Help" menu try choosing "Online Handbook" instead. - - -A partir do menu "Ajuda" tente "manual online" - Grace Notes @@ -5330,30 +5359,10 @@ Deseja restaurar a sessão Varied coda - - Script -%1 -is incompatible with current interface - - - - MuseScore is too old to run script -%1 - MuseScore é muito antigo para correr este script -%1 - Bar %1 Beat %2.%3 - - Error loading plugin -"%1" line %2: -%3 - Erro a carregar plugin -"%1" line %2: -%3 - MuseScore: Load error @@ -5963,6 +5972,30 @@ please choose a different name: Report a bug + + MuseScore: Load Plugin + + + + MuseScore Plugin (*.qml);;All Files (*) + + + + MuseScore: Save Plugin + + + + MuseScore Plugin File (*.qml) + + + + &Plugins + + + + Find + + MyWebView @@ -6568,31 +6601,106 @@ please choose a different name: tempo relativo - Straight + master volume + volume principal + + + Vol. + short text for volume slider + + + + Tmp. + short text for tempo slider + + + PluginCreator + + File Operations + Operações de ficheiro + - Swing + Edit Operations - Shuffle + MuseScore Plugin Editor - master volume - volume principal + MuseScore + MuseScore - Vol. - short text for volume slider + Plugin "%1" has changes +save before closing? - Tmp. - short text for tempo slider + untitled + + + + Manual + + + + + PluginCreatorBase + + MainWindow + + + + Run + + + + Stop + + + + File + + + + Help + + + + Edit + + + + New + Novo + + + Open + + + + Save + Salvar + + + Manual + + Undo + Desfazer + + + Redo + Refazer + + + Quit + Sair + PreferenceDialog @@ -6628,14 +6736,6 @@ please choose a different name: Choose Default Style for Parts - - load - - - - Plugin Path - - Choose Scores Directory @@ -6847,10 +6947,6 @@ please choose a different name: Define... Definir... - - Instrument List: - Lista de Instrumentos: - Note Entry Inserir notas @@ -7003,10 +7099,6 @@ please choose a different name: dark - - light - - use native file dialogs @@ -7275,6 +7367,34 @@ please choose a different name: Character Set: + + Instrument List2: + + + + Instrument List1: + + + + Name: + Nome: + + + Path: + + + + Version: + + + + Load + Carregar + + + Define Shortcut + + Properties @@ -7332,14 +7452,6 @@ please choose a different name: MuseScore: Load Style failed: MuseScore: Abertura de estilo falhou: - - MuseScore - MuseScore - - - reading file < - lendo ficheiro < - MuseScore: Import Capella MuseScore: Importar Capella @@ -7356,10 +7468,6 @@ please choose a different name: MuseScore: Load languages failed: - - MuseScore: register script plugin: - - MuseScore: Import GuitarPro @@ -7415,17 +7523,13 @@ Falhou: MuseScore: Save File MuseScore: Guardar Ficheiro - - > failed: - - Load failed: Falha ao Carregar - &Quit - + Untitled + sem Título @@ -7789,10 +7893,6 @@ cannot split tuplet Ticks - - Tick: - Guia: - Bar @@ -7801,8 +7901,16 @@ cannot split tuplet Beat - - + + tick: + + + + rTick: + + + + SelectDialog MuseScore: Select @@ -7956,19 +8064,19 @@ Sequencer will be disabled. SlurPropertyBase - Volta Properties - Propriedades da Repetição + Slur Properties + - Slur Properties + Solid - solid - sólido + Dotted + - dotted + Dashed @@ -8647,6 +8755,10 @@ altera styled + + layoutToParentWidth + + TextEditor @@ -8962,6 +9074,14 @@ altera Text Texto + + Foreground Color: + + + + Background Color: + + TextStyleDialog @@ -9194,6 +9314,34 @@ p, li { white-space: pre-wrap; } Time Signature Tempo do Compasso + + 1 + 1 + + + 2 + 2 + + + 4 + 4 + + + 8 + 8 + + + 16 + 16 + + + 32 + 32 + + + 64 + 64 + TransposeDialogBase @@ -9629,10 +9777,6 @@ p, li { white-space: pre-wrap; } action - - Local &Handbook... - - Save a Copy... guardar uma cópia @@ -9901,46 +10045,6 @@ p, li { white-space: pre-wrap; } Reset Beam Mode - - up+shift+ctrl - tecla cima+shift+ctrl - - - down+shift+ctrl - tecla baixo+shift+ctrl - - - left+ctrl - seta esquerda+ctrl - - - left+shift - tecla esquerda+shift - - - right+shift - tecla direita+shift - - - right+ctrl+shift - tecla direita+ctrl+shift - - - shift+home - shift+home - - - shift+end - shift+end - - - ctrl+shift+home - ctrl+shift+home - - - ctrl+shift+end - ctrl+shift+end - Delete Selected Measures Apagar Compassos Seleccionados @@ -10041,22 +10145,10 @@ p, li { white-space: pre-wrap; } Quit Sair - - Zoom Canvas - Zoom da Página - Lyrics Letra - - Tempo... - Tempo... - - - Tempo - Tempo - Metronome Metrónomo @@ -10069,10 +10161,6 @@ p, li { white-space: pre-wrap; } Staff Text - - Frame Text - - Title Título @@ -10165,10 +10253,6 @@ p, li { white-space: pre-wrap; } Show Frames - - Search - Procurar - Zoom In Aumentar zoom @@ -10201,10 +10285,6 @@ p, li { white-space: pre-wrap; } Repeat selection Repetir seleccionado - - Follow Song - - Local handbook Manual local @@ -10341,10 +10421,6 @@ p, li { white-space: pre-wrap; } Trill - - More stretch - Esticar - Less stretch Encolher @@ -10357,10 +10433,6 @@ p, li { white-space: pre-wrap; } Flip direction - - Flip Direction - - Pitch up @@ -10445,38 +10517,18 @@ p, li { white-space: pre-wrap; } Previous chord Acorde anterior - - Previous Chord - Acorde Anterior - Previous measure Compasso anterior - - Previous Measure - Compasso Anterior - Next chord Acorde seguinte - - Next Chord - Acorde Seguinte - Next measure Compasso seguinte - - Next Measure - Compasso Seguinte - - - Delete selected measures - Apagar compassos seleccionados - Append measures Anexar compassos @@ -10517,10 +10569,6 @@ p, li { white-space: pre-wrap; } Save style Guardar estilo - - Select all - Seleccionar tudo - Delete Apagar @@ -10537,54 +10585,10 @@ p, li { white-space: pre-wrap; } Delete element and duration - - &Open... - - - - &Save - - - - Save &As... - - - - &Close - - File new - - &New... - - - - &Print... - - - - &Undo - - - - &Redo - - - - Cu&t - - - - &Copy - - - - &Paste - - Insert note A @@ -10741,62 +10745,26 @@ p, li { white-space: pre-wrap; } Timewise delete - - Append one measure - - Append One Measure - - Insert one measure - - Insert One Measure - - Insert horizontal frame - - - - Insert text frame - - Insert Text Frame - - Append text frame - - Append Text Frame - - Insert fret diagram frame - - Insert Fret Diagram Frame - - Insert vertical frame - - - - Append horizontal frame - - - - Append vertical frame - - Other tuplets @@ -10973,22 +10941,10 @@ p, li { white-space: pre-wrap; } Feathered beam, slower - - Feathered Beam, Slower - - Feathered beam, faster - - Feathered Beam, Faster - - - - Play panel - - Transport toolbar @@ -10997,10 +10953,6 @@ p, li { white-space: pre-wrap; } Note input toolbar - - Status bar - - Zoom canvas @@ -11013,10 +10965,6 @@ p, li { white-space: pre-wrap; } Add staff text - - Add text - - Add title text @@ -11065,82 +11013,26 @@ p, li { white-space: pre-wrap; } Player seek to end - - Select A&ll - - &Transpose... - - Violin clef - - Violin Clef - - Bass clef - Clave de Fá - 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 - - Toggle Section Break - - Edit element - - Show inspector @@ -11149,18 +11041,6 @@ p, li { white-space: pre-wrap; } Reset measure stretch - - Show invisible - - - - Show frames - - - - Enable script debugger - - Note entry: whole rest @@ -11197,14 +11077,6 @@ p, li { white-space: pre-wrap; } Backspace - - Zoom in - - - - Zoom out - - Mirror note head @@ -11241,10 +11113,6 @@ p, li { white-space: pre-wrap; } Display documents stacked - - Show score image - - Show OMR image @@ -11265,18 +11133,6 @@ p, li { white-space: pre-wrap; } Toggle foto mode - - Full screen - - - - F&ull Screen - - - - F&ull screen - - Enable horizontal raster @@ -11289,10 +11145,6 @@ p, li { white-space: pre-wrap; } Configure raster - - Re-pitch mode - - Re-Pitch Mode @@ -11321,10 +11173,6 @@ p, li { white-space: pre-wrap; } 128th note - - Show unprintable - - Split Measure @@ -11361,18 +11209,10 @@ p, li { white-space: pre-wrap; } Reset user settings - - Show debugger - - Piano Keyboard - - Show Inspector - - Save Selection @@ -11390,303 +11230,323 @@ p, li { white-space: pre-wrap; } - &Export... + Respell pitches - &Instruments... + Grace: 8nd after - &Note Input + Pan score while playing on/off - Respell pitches - + Pan + Pan - &Respell Pitches + Show Unprintable - Add &More Stretch + Show Page Margins - Add &Less Stretch + Manage parts - Reset &Beam Mode + Inspector + Inspector + + + Show OMR Panel - Grace: 8nd after + OmrPanel - Pan score while playing on/off + toggle metronome - Pan - Pan + Figured Bass + - &Load Style... + Next Score - &Save Style... + Previous Score - Save style as default + Transpose Up - Save Style As &Default... + Transpose Down - &Concert Pitch + Show master palette - &Reset + Master Palette... - De&bugger + Insert Measure - Reset &Stretch + Toggle View Mode - Show Unprintable + Export Parts - Show Page Margins + Export Parts... - &Search + Save a copy of the score's parts in various formats - &General... + Add marcato - &Text... + Marcato - &Chords... + Select Section - Parts + Note duration: double whole - Par&ts... + Double whole note - Manage parts + Whole note - Additional &Media... + Half note - &Page Settings... + Quarter note - &Album... + 8th note - Inspector - Inspector + 16th note + - Show OMR Panel + 32nd note - OmrPanel + 64th note - Show OMR PAnel + Edit score info - metronome + Insert Special Characters... - toggle metronome + Layers - Figured Bass + MuseScore Connect - Next Score + next syllable - Previous Score + previous syllable - Transpose Up + toggle visibility - Transpose Down + set visible - Show master palette + set unvisible - Master Palette... + Local Handbook... - Insert Measure + Open... - Toggle View Mode + Save + Salvar + + + Save As... - Export Parts + Export... - Export Parts... + Close + Fechar + + + New... - Save a copy of the score's parts in various formats + Print... - Add marcato + Instruments... - Marcato + Add More Stretch - Select Section + Add Less Stretch - select section + Tempo Marking... - Note duration: double whole + Tempo Marking - Double whole note + Text + Texto + + + Add Frame Text - Whole note + Load Style... - Half note + Save Style... - Quarter note + Save Style As Default... - 8th note + Select All - 16th note + Concert Pitch + Tessitura de Concerto + + + Info... - 32nd note + Reset - 64th note + Debugger - Edit score info + Reset Stretch - &Info... + Insert Special Characters - Insert special characters + Find - Insert Special Characters... + General... - Enable Script Debugger + Text... - Layers + Chords... - &Layers... + Parts... - MuseScore Connect + Full Screen - next syllable + Additional Media... - previous syllable + Page Settings... - toggle visibility + Album... - set visible + Layers... - set unvisible + Plugin Creator diff --git a/share/locale/mscore_pt_BR.ts b/share/locale/mscore_pt_BR.ts index 54e1c48144c9..c872129a6e8e 100644 --- a/share/locale/mscore_pt_BR.ts +++ b/share/locale/mscore_pt_BR.ts @@ -143,10 +143,6 @@ p, li { white-space: pre-wrap; } Remove Score - - score list - - move current score down in list @@ -167,18 +163,6 @@ p, li { white-space: pre-wrap; } Add Score - - path to new score you want to add - - - - open file manager - - - - ... - ... - create new album @@ -211,6 +195,18 @@ p, li { white-space: pre-wrap; } Join Scores + + Load + Carregar + + + MuseScore: Add Score + + + + MuseScore: Load Album + + ArticulationBase @@ -1168,15 +1164,15 @@ spatium unit - showCourtesyClef + Hide courtesy clef - Hide courtesy clef + Show courtesy clef - Show courtesy clef + showCourtesy @@ -1201,14 +1197,14 @@ spatium unit Drum Tools - - Drumset - - Drums Percussão + + Edit Drumset + + DrumrollEditor @@ -2786,18 +2782,10 @@ spatium unit Time sig. left margin Margem esquerda da fórmula - - Clef-key distance - Distância clave-armadura - Clef-barline distance Distância clave-barra - - Begin repeat left margin - Margem esq. do ritornello inicial - Show repeat bar tips ("winged" repeats) Mostrar abas na barra de ritornello @@ -3194,6 +3182,10 @@ p, li { white-space: pre-wrap; } Max. System distance + + Clef/Key right margin + + EditTempoBase @@ -3571,6 +3563,28 @@ spatium unit Down + + Offset X: + + + + sp + spatium unit +---------- +spatium unit + sp + + + Offset Y: + + + + + InspectorClef + + Show Courtesy Clef + + InspectorElement @@ -3710,6 +3724,36 @@ spatium unit % + + InspectorKeySig + + Show Courtesy Time Signature + + + + Show Naturals + + + + + InspectorLasso + + Form + Formulário + + + Lasso + + + + Position: + + + + Size + + + InspectorNote @@ -3954,6 +3998,13 @@ spatium unit sp + + InspectorTimeSig + + Show Courtesy Time Signature + + + InspectorVBox @@ -5132,10 +5183,6 @@ Would you like to locate %2 now? &About &Sobre - - MuseScore: Open Help - MuseScore: Abrir ajuda - note entry mode modo de inserção de notas @@ -5222,28 +5269,10 @@ antes de fechar? End-Start Repeat Ritornello final e inicial - - Search - Buscar - Go To: Ir para: - - MuseScore handbook not found at: - - Manual do MuseScore não encontrado em: - - - - - -From the "Help" menu try choosing "Online Handbook" instead. - - -Ao invés disso, experimente selecionar "Manual Online" no menu "Ajuda". - Grace Notes Ornamentos @@ -5340,32 +5369,10 @@ Restaurar sessão? Varied coda Variação de coda - - Script -%1 -is incompatible with current interface - Script -1% -Incompatível com a atual interface - - - MuseScore is too old to run script -%1 - O MuseScore é muito antigo para rodar script -%1 - Bar %1 Beat %2.%3 Compasso %1 Tempo %2.%3 - - Error loading plugin -"%1" line %2: -%3 - Erro ao carregar o plugin -"%1" linha %2: -%3 - MuseScore: Load error @@ -5975,6 +5982,30 @@ please choose a different name: Report a bug + + MuseScore: Load Plugin + + + + MuseScore Plugin (*.qml);;All Files (*) + + + + MuseScore: Save Plugin + + + + MuseScore Plugin File (*.qml) + + + + &Plugins + + + + Find + + MyWebView @@ -6579,18 +6610,6 @@ please choose a different name: relative tempo andamento relativo - - Straight - Normal - - - Swing - Swing - - - Shuffle - Shuffle - master volume volume geral @@ -6606,6 +6625,93 @@ please choose a different name: + + PluginCreator + + File Operations + Operações de arquivo + + + Edit Operations + + + + MuseScore Plugin Editor + + + + MuseScore + MuseScore + + + Plugin "%1" has changes +save before closing? + + + + untitled + + + + Manual + + + + + PluginCreatorBase + + MainWindow + + + + Run + + + + Stop + + + + File + + + + Help + + + + Edit + + + + New + Novo + + + Open + + + + Save + Salvar + + + Manual + + + + Undo + Desfazer + + + Redo + Refazer + + + Quit + Sair + + PreferenceDialog @@ -6640,14 +6746,6 @@ please choose a different name: Choose Default Style for Parts - - load - - - - Plugin Path - - Choose Scores Directory @@ -6859,10 +6957,6 @@ please choose a different name: Define... Definir... - - Instrument List: - Lista de Instrumentos: - Note Entry Inserção de Notas @@ -7015,10 +7109,6 @@ please choose a different name: dark - - light - - use native file dialogs @@ -7287,6 +7377,34 @@ please choose a different name: Character Set: + + Instrument List2: + + + + Instrument List1: + + + + Name: + Nome: + + + Path: + + + + Version: + + + + Load + Carregar + + + Define Shortcut + + Properties @@ -7344,14 +7462,6 @@ please choose a different name: MuseScore: Load Style failed: MuseScore: Falha ao Carregar Estilo: - - MuseScore - MuseScore - - - reading file < - lendo arquivo < - MuseScore: Import Capella MuseScore: Importar Capella @@ -7368,10 +7478,6 @@ please choose a different name: MuseScore: Load Palette failed: MuseScore: Falha ao Carregar Paleta: - - MuseScore: register script plugin: - MuseScore: registrar script plugin: - MuseScore: Import GuitarPro @@ -7426,17 +7532,13 @@ failed: MuseScore: Save File MuseScore: Salvar Arquivo - - > failed: - - Load failed: Falha ao carregar - &Quit - + Untitled + Sem título @@ -7801,10 +7903,6 @@ cannot split tuplet Ticks - - Tick: - Tick: - Bar @@ -7813,8 +7911,16 @@ cannot split tuplet Beat - - + + tick: + + + + rTick: + + + + SelectDialog MuseScore: Select @@ -7968,21 +8074,21 @@ O sequenciador será desabilitado. SlurPropertyBase - - Volta Properties - Propriedades da Chave - Slur Properties Propriedades do Legato - solid - sólido + Solid + + + + Dotted + - dotted - pontilhado + Dashed + Tracejada @@ -8660,6 +8766,10 @@ altera styled + + layoutToParentWidth + + TextEditor @@ -8975,6 +9085,14 @@ altera Text Texto + + Foreground Color: + + + + Background Color: + + TextStyleDialog @@ -9207,6 +9325,34 @@ p, li { white-space: pre-wrap; } Time Signature Fórmula de Compasso + + 1 + 1 + + + 2 + 2 + + + 4 + 4 + + + 8 + 8 + + + 16 + 16 + + + 32 + 32 + + + 64 + 64 + TransposeDialogBase @@ -9642,10 +9788,6 @@ p, li { white-space: pre-wrap; } action - - Local &Handbook... - &Manual Local... - Save a Copy... Salvar Cópia... @@ -9914,46 +10056,6 @@ p, li { white-space: pre-wrap; } Reset Beam Mode Restaurar Modo de Exibição das Barras de Ligação - - up+shift+ctrl - para cima+shift+ctrl - - - down+shift+ctrl - para baixo+shift+ctrl - - - left+ctrl - esquerda+ctrl - - - left+shift - esquerda+shift - - - right+shift - direita+shift - - - right+ctrl+shift - direita+ctrl+shift - - - shift+home - shift+home - - - shift+end - shift+end - - - ctrl+shift+home - ctrl+shift+home - - - ctrl+shift+end - ctrl+shift+end - Delete Selected Measures Apagar Compassos Selecionados @@ -10054,22 +10156,10 @@ p, li { white-space: pre-wrap; } Quit Sair - - Zoom Canvas - Aumentar/diminuir o zoom da página - Lyrics Letra - - Tempo... - Andamento... - - - Tempo - Andamento - Metronome Metrônomo @@ -10082,10 +10172,6 @@ p, li { white-space: pre-wrap; } Staff Text Texto de Pauta - - Frame Text - Texto de Moldura - Title Título @@ -10178,10 +10264,6 @@ p, li { white-space: pre-wrap; } Show Frames Exibir Molduras - - Search - Buscar - Zoom In Aumentar Zoom @@ -10214,10 +10296,6 @@ p, li { white-space: pre-wrap; } Repeat selection Repetir seleção - - Follow Song - Seguir execução - Local handbook Manual local @@ -10354,10 +10432,6 @@ p, li { white-space: pre-wrap; } Trill Trilo - - More stretch - Mais espaçamento - Less stretch Menos espaçamento @@ -10370,10 +10444,6 @@ p, li { white-space: pre-wrap; } Flip direction Inverter direção - - Flip Direction - Inverter Direção - Pitch up Elevar altura @@ -10458,38 +10528,18 @@ p, li { white-space: pre-wrap; } Previous chord Acorde anterior - - Previous Chord - Acorde Anterior - Previous measure Compasso anterior - - Previous Measure - Compasso Anterior - Next chord Acorde posterior - - Next Chord - Acorde Posterior - Next measure Compasso posterior - - Next Measure - Compasso Posterior - - - Delete selected measures - Apagar compassos selecionados - Append measures Adicionar compassos @@ -10538,10 +10588,6 @@ p, li { white-space: pre-wrap; } Save style Salvar estilo - - Select all - Selecionar tudo - Timewise Delete Apagar no Tempo @@ -10550,54 +10596,10 @@ p, li { white-space: pre-wrap; } Delete element and duration Apagar elemento e duração - - &Open... - - - - &Save - - - - Save &As... - - - - &Close - - File new - - &New... - - - - &Print... - - - - &Undo - - - - &Redo - - - - Cu&t - - - - &Copy - - - - &Paste - - Insert note A @@ -10754,62 +10756,26 @@ p, li { white-space: pre-wrap; } Timewise delete - - Append one measure - - Append One Measure - - Insert one measure - - Insert One Measure - - Insert horizontal frame - - - - Insert text frame - - Insert Text Frame - - Append text frame - - Append Text Frame - - Insert fret diagram frame - - Insert Fret Diagram Frame - - Insert vertical frame - - - - Append horizontal frame - - - - Append vertical frame - - Other tuplets @@ -10986,22 +10952,10 @@ p, li { white-space: pre-wrap; } Feathered beam, slower - - Feathered Beam, Slower - - Feathered beam, faster - - Feathered Beam, Faster - - - - Play panel - - Transport toolbar @@ -11010,10 +10964,6 @@ p, li { white-space: pre-wrap; } Note input toolbar - - Status bar - - Zoom canvas @@ -11026,10 +10976,6 @@ p, li { white-space: pre-wrap; } Add staff text - - Add text - - Add title text @@ -11078,82 +11024,26 @@ p, li { white-space: pre-wrap; } Player seek to end - - Select A&ll - - &Transpose... - - Violin clef - - Violin Clef - - Bass clef - Clave de Fá - 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 - - Toggle Section Break - - Edit element - - Show inspector @@ -11162,18 +11052,6 @@ p, li { white-space: pre-wrap; } Reset measure stretch - - Show invisible - - - - Show frames - - - - Enable script debugger - - Note entry: whole rest @@ -11210,14 +11088,6 @@ p, li { white-space: pre-wrap; } Backspace - - Zoom in - - - - Zoom out - - Mirror note head @@ -11254,10 +11124,6 @@ p, li { white-space: pre-wrap; } Display documents stacked - - Show score image - - Show OMR image @@ -11278,18 +11144,6 @@ p, li { white-space: pre-wrap; } Toggle foto mode - - Full screen - - - - F&ull Screen - - - - F&ull screen - - Enable horizontal raster @@ -11302,10 +11156,6 @@ p, li { white-space: pre-wrap; } Configure raster - - Re-pitch mode - - Re-Pitch Mode @@ -11334,10 +11184,6 @@ p, li { white-space: pre-wrap; } 128th note - - Show unprintable - - Split Measure @@ -11374,18 +11220,10 @@ p, li { white-space: pre-wrap; } Reset user settings - - Show debugger - - Piano Keyboard - - Show Inspector - - Save Selection @@ -11403,303 +11241,323 @@ p, li { white-space: pre-wrap; } - &Export... + Respell pitches - &Instruments... + Grace: 8nd after - &Note Input + Pan score while playing on/off - Respell pitches - + Pan + Pan - &Respell Pitches + Show Unprintable - Add &More Stretch + Show Page Margins - Add &Less Stretch + Manage parts - Reset &Beam Mode + Inspector + Inspetor + + + Show OMR Panel - Grace: 8nd after + OmrPanel - Pan score while playing on/off + toggle metronome - Pan - Pan + Figured Bass + - &Load Style... + Next Score - &Save Style... + Previous Score - Save style as default + Transpose Up - Save Style As &Default... + Transpose Down - &Concert Pitch + Show master palette - &Reset + Master Palette... - De&bugger + Insert Measure - Reset &Stretch + Toggle View Mode - Show Unprintable + Export Parts - Show Page Margins + Export Parts... - &Search + Save a copy of the score's parts in various formats - &General... + Add marcato - &Text... + Marcato - &Chords... + Select Section - Parts + Note duration: double whole - Par&ts... + Double whole note - Manage parts + Whole note - Additional &Media... + Half note - &Page Settings... + Quarter note - &Album... + 8th note - Inspector - Inspetor + 16th note + - Show OMR Panel + 32nd note - OmrPanel + 64th note - Show OMR PAnel + Edit score info - metronome + Insert Special Characters... - toggle metronome + Layers - Figured Bass + MuseScore Connect - Next Score + next syllable - Previous Score + previous syllable - Transpose Up + toggle visibility - Transpose Down + set visible - Show master palette + set unvisible - Master Palette... + Local Handbook... - Insert Measure + Open... - Toggle View Mode + Save + Salvar + + + Save As... - Export Parts + Export... - Export Parts... + Close + Fechar + + + New... - Save a copy of the score's parts in various formats + Print... - Add marcato + Instruments... - Marcato + Add More Stretch - Select Section + Add Less Stretch - select section + Tempo Marking... - Note duration: double whole + Tempo Marking - Double whole note + Text + Texto + + + Add Frame Text - Whole note + Load Style... - Half note + Save Style... - Quarter note + Save Style As Default... - 8th note + Select All - 16th note + Concert Pitch + Notas de efeito + + + Info... - 32nd note + Reset - 64th note + Debugger - Edit score info + Reset Stretch - &Info... + Insert Special Characters - Insert special characters + Find - Insert Special Characters... + General... - Enable Script Debugger + Text... - Layers + Chords... - &Layers... + Parts... - MuseScore Connect + Full Screen - next syllable + Additional Media... - previous syllable + Page Settings... - toggle visibility + Album... - set visible + Layers... - set unvisible + Plugin Creator diff --git a/share/locale/mscore_ro.ts b/share/locale/mscore_ro.ts index f79733f60940..fd9649858501 100644 --- a/share/locale/mscore_ro.ts +++ b/share/locale/mscore_ro.ts @@ -154,10 +154,6 @@ p, li { white-space: pre-wrap; } Remove Score - - score list - - move current score down in list @@ -178,18 +174,6 @@ p, li { white-space: pre-wrap; } Add Score - - path to new score you want to add - - - - open file manager - - - - ... - ... - create new album @@ -222,6 +206,18 @@ p, li { white-space: pre-wrap; } Join Scores + + Load + Încarcă + + + MuseScore: Add Score + + + + MuseScore: Load Album + + ArticulationBase @@ -1182,15 +1178,15 @@ spatium unit dimensiune mică - showCourtesyClef + Hide courtesy clef - Hide courtesy clef + Show courtesy clef - Show courtesy clef + showCourtesy @@ -1215,14 +1211,14 @@ spatium unit Drum Tools - - Drumset - - Drums Percuţie + + Edit Drumset + + DrumrollEditor @@ -2801,18 +2797,10 @@ spatium unit Time sig. left margin Margine în stânga metrului - - Clef-key distance - Distanţă între cheie şi armură - Clef-barline distance Distanţă între cheie si bara de măsură - - Begin repeat left margin - Margine în stânga barei de repetiţie - Show repeat bar tips ("winged" repeats) Adaugă acolade în jurul semnelor de repetiţie @@ -3209,6 +3197,10 @@ p, li { white-space: pre-wrap; } Max. System distance + + Clef/Key right margin + + EditTempoBase @@ -3587,6 +3579,28 @@ spatium unit Down + + Offset X: + + + + sp + spatium unit +---------- +spatium unit + sp + + + Offset Y: + + + + + InspectorClef + + Show Courtesy Clef + + InspectorElement @@ -3726,6 +3740,36 @@ spatium unit % + + InspectorKeySig + + Show Courtesy Time Signature + + + + Show Naturals + + + + + InspectorLasso + + Form + + + + Lasso + + + + Position: + + + + Size + + + InspectorNote @@ -3970,6 +4014,13 @@ spatium unit sp + + InspectorTimeSig + + Show Courtesy Time Signature + + + InspectorVBox @@ -5048,10 +5099,6 @@ Would you like to locate %2 now? Concert Pitch Partitura în "Do" - - Search - Caută - MuseScore MuseScore @@ -5210,10 +5257,6 @@ before closing? &About &Despre MuseScore - - MuseScore: Open Help - MuseScore: Deschidere "Ghid de Utilizare" - no score lipsă partitură @@ -5242,20 +5285,6 @@ before closing? Glissando Glissando - - MuseScore handbook not found at: - - Nu am găsit Ghidul de Utilizare al programului MuseScore la adresa: - - - - - -From the "Help" menu try choosing "Online Handbook" instead. - - -Ca alternativă, încercaţi să alegeţi "Ghid de Utilizare pe Internet" din meniul "Ajutor". - Grace Notes Apogiaturi @@ -5352,32 +5381,10 @@ Restaurez sesiunea? Varied coda Coda variată - - Script -%1 -is incompatible with current interface - Scriptul -%1 -nu este compatibil cu interfaţa curentă - - - MuseScore is too old to run script -%1 - Această versiune a programului MuseScore este prea veche pentru a rula scriptul -%1 - Bar %1 Beat %2.%3 Măsura %1, timpul %2.%3 - - Error loading plugin -"%1" line %2: -%3 - Nu s-a putut încărca modulul -"%1" linia %2: -%3 - MuseScore: Load error @@ -5987,6 +5994,30 @@ please choose a different name: Report a bug + + MuseScore: Load Plugin + + + + MuseScore Plugin (*.qml);;All Files (*) + + + + MuseScore: Save Plugin + + + + MuseScore Plugin File (*.qml) + + + + &Plugins + + + + Find + + MyWebView @@ -6591,18 +6622,6 @@ please choose a different name: 100% 100% - - Straight - Uniform - - - Swing - Swing - - - Shuffle - A Piacere - master volume volum general @@ -6618,6 +6637,93 @@ please choose a different name: + + PluginCreator + + File Operations + Operaţii Fişiere + + + Edit Operations + + + + MuseScore Plugin Editor + + + + MuseScore + MuseScore + + + Plugin "%1" has changes +save before closing? + + + + untitled + + + + Manual + + + + + PluginCreatorBase + + MainWindow + + + + Run + + + + Stop + + + + File + + + + Help + + + + Edit + + + + New + « Adaugă + + + Open + + + + Save + Salvează + + + Manual + + + + Undo + Înapoi o versiune + + + Redo + Înainte o versiune + + + Quit + + + PreferenceDialog @@ -6652,14 +6758,6 @@ please choose a different name: Choose Default Style for Parts - - load - - - - Plugin Path - - Choose Scores Directory @@ -6735,10 +6833,6 @@ please choose a different name: Paths Căi pe Disc - - Instrument List: - Lista de Instrumente: - Windows Ferestre @@ -7027,10 +7121,6 @@ please choose a different name: dark - - light - - use native file dialogs @@ -7299,6 +7389,34 @@ please choose a different name: Character Set: + + Instrument List2: + + + + Instrument List1: + + + + Name: + Nume: + + + Path: + + + + Version: + + + + Load + Încarcă + + + Define Shortcut + + Properties @@ -7360,14 +7478,6 @@ please choose a different name: MuseScore: load Style failed: MuseScore: nu se poate încărca stilul: - - MuseScore - MuseScore - - - reading file < - se citeşte fişierul < - MuseScore: invalid command MuseScore: comanda a fost recunoscută @@ -7380,10 +7490,6 @@ please choose a different name: MuseScore: Load languages failed: MuseScore: Încărcarea traducerilor a eşuat: - - MuseScore: register script plugin: - MuseScore: înregistrează scriptul: - MuseScore: Import GuitarPro @@ -7439,17 +7545,13 @@ eroare: MuseScore: Save File MuseScore: Salvare fişier - - > failed: - - Load failed: Nu s-a putut încărca: - &Quit - + Untitled + Fără Titlu @@ -7814,10 +7916,6 @@ cannot split tuplet Ticks - - Tick: - Tick: - Bar @@ -7826,8 +7924,16 @@ cannot split tuplet Beat - - + + tick: + + + + rTick: + + + + SelectDialog MuseScore: Select @@ -7981,21 +8087,21 @@ Interpretarea partiturii nu va fi disponibilă. SlurPropertyBase - - Volta Properties - Proprietăţi Volta - Slur Properties Proprietăţi Legato - solid - solid + Solid + + + + Dotted + - dotted - punctat + Dashed + Punctată @@ -8673,6 +8779,10 @@ altera styled + + layoutToParentWidth + + TextEditor @@ -8988,6 +9098,14 @@ altera Text Text + + Foreground Color: + + + + Background Color: + + TextStyleDialog @@ -9220,6 +9338,34 @@ p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'Sans Serif'; font-size:9pt; 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;">Pont: puteţi să introduceţi măsuri şi după crearea partiturii..</p></body></html> + + 1 + 1 + + + 2 + 2 + + + 4 + 4 + + + 8 + 8 + + + 16 + 16 + + + 32 + 32 + + + 64 + 64 + TransposeDialogBase @@ -9655,10 +9801,6 @@ p, li { white-space: pre-wrap; } action - - Local &Handbook... - G&hid de Utilizare Local... - Save a Copy... Salvează o copie... @@ -9927,46 +10069,6 @@ p, li { white-space: pre-wrap; } Reset Beam Mode Restabileşte Ligaturile Implicite - - up+shift+ctrl - up+shift+ctrl - - - down+shift+ctrl - down+shift+ctrl - - - left+ctrl - left+ctrl - - - left+shift - left+shift - - - right+shift - right+shift - - - right+ctrl+shift - right+ctrl+shift - - - shift+home - shift+home - - - shift+end - shift+end - - - ctrl+shift+home - ctrl+shift+home - - - ctrl+shift+end - ctrl+shift+end - Delete Selected Measures Şterge Măsurile Selectate @@ -10067,22 +10169,10 @@ p, li { white-space: pre-wrap; } Quit Ieşire - - Zoom Canvas - Schimbă raportul de afişare - Lyrics Versuri - - Tempo... - Tempo... - - - Tempo - Tempo - Metronome Metronom @@ -10095,10 +10185,6 @@ p, li { white-space: pre-wrap; } Staff Text Text pentru Portativ - - Frame Text - Text pentru cadru - Title Titlu @@ -10191,10 +10277,6 @@ p, li { white-space: pre-wrap; } Show Frames Cadrele - - Search - Caută - Zoom In Mai mare @@ -10227,10 +10309,6 @@ p, li { white-space: pre-wrap; } Repeat selection Repetare Selecţie - - Follow Song - Urmărire Partitură - Local handbook Ghid de Utilizare local @@ -10367,10 +10445,6 @@ p, li { white-space: pre-wrap; } Trill Tril - - More stretch - Mai mult spaţiu - Less stretch Mai puţin spaţiu @@ -10383,10 +10457,6 @@ p, li { white-space: pre-wrap; } Flip direction Inversează cozi, legato, etc. - - Flip Direction - Inversează cozi, legato, etc. - Pitch up Pitch up @@ -10471,38 +10541,18 @@ p, li { white-space: pre-wrap; } Previous chord Acordul precedent - - Previous Chord - Acordul precedent - Previous measure Măsura precedentă - - Previous Measure - Măsura precedentă - Next chord Acordul următor - - Next Chord - Acordul următor - Next measure Măsura următoare - - Next Measure - Măsura următoare - - - Delete selected measures - Şterge măsurile selectate - Append measures Adaugă măsuri la final @@ -10543,10 +10593,6 @@ p, li { white-space: pre-wrap; } Save style Salvează stil - - Select all - Selectează tot - Delete Şterge @@ -10563,54 +10609,10 @@ p, li { white-space: pre-wrap; } Delete element and duration Şterge elementul şi durata - - &Open... - - - - &Save - - - - Save &As... - - - - &Close - - File new - - &New... - - - - &Print... - - - - &Undo - - - - &Redo - - - - Cu&t - - - - &Copy - - - - &Paste - - Insert note A @@ -10767,62 +10769,26 @@ p, li { white-space: pre-wrap; } Timewise delete - - Append one measure - - Append One Measure - - Insert one measure - - Insert One Measure - - Insert horizontal frame - - - - Insert text frame - - Insert Text Frame - - Append text frame - - Append Text Frame - - Insert fret diagram frame - - Insert Fret Diagram Frame - - Insert vertical frame - - - - Append horizontal frame - - - - Append vertical frame - - Other tuplets @@ -10999,22 +10965,10 @@ p, li { white-space: pre-wrap; } Feathered beam, slower - - Feathered Beam, Slower - - Feathered beam, faster - - Feathered Beam, Faster - - - - Play panel - - Transport toolbar @@ -11023,10 +10977,6 @@ p, li { white-space: pre-wrap; } Note input toolbar - - Status bar - - Zoom canvas @@ -11039,10 +10989,6 @@ p, li { white-space: pre-wrap; } Add staff text - - Add text - - Add title text @@ -11091,82 +11037,26 @@ p, li { white-space: pre-wrap; } Player seek to end - - Select A&ll - - &Transpose... - - Violin clef - - Violin Clef - - Bass clef - Cheia Fa - 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 - - Toggle Section Break - - Edit element - - Show inspector @@ -11175,18 +11065,6 @@ p, li { white-space: pre-wrap; } Reset measure stretch - - Show invisible - - - - Show frames - - - - Enable script debugger - - Note entry: whole rest @@ -11223,14 +11101,6 @@ p, li { white-space: pre-wrap; } Backspace - - Zoom in - - - - Zoom out - - Mirror note head @@ -11267,10 +11137,6 @@ p, li { white-space: pre-wrap; } Display documents stacked - - Show score image - - Show OMR image @@ -11291,18 +11157,6 @@ p, li { white-space: pre-wrap; } Toggle foto mode - - Full screen - - - - F&ull Screen - - - - F&ull screen - - Enable horizontal raster @@ -11315,10 +11169,6 @@ p, li { white-space: pre-wrap; } Configure raster - - Re-pitch mode - - Re-Pitch Mode @@ -11347,10 +11197,6 @@ p, li { white-space: pre-wrap; } 128th note - - Show unprintable - - Split Measure @@ -11387,18 +11233,10 @@ p, li { white-space: pre-wrap; } Reset user settings - - Show debugger - - Piano Keyboard - - Show Inspector - - Save Selection @@ -11416,303 +11254,323 @@ p, li { white-space: pre-wrap; } - &Export... + Respell pitches - &Instruments... + Grace: 8nd after - &Note Input + Pan score while playing on/off - Respell pitches - + Pan + Balans - &Respell Pitches + Show Unprintable - Add &More Stretch + Show Page Margins - Add &Less Stretch + Manage parts - Reset &Beam Mode + Inspector + Inspector + + + Show OMR Panel - Grace: 8nd after + OmrPanel - Pan score while playing on/off + toggle metronome - Pan - Balans + Figured Bass + - &Load Style... + Next Score - &Save Style... + Previous Score - Save style as default + Transpose Up - Save Style As &Default... + Transpose Down - &Concert Pitch + Show master palette - &Reset + Master Palette... - De&bugger + Insert Measure - Reset &Stretch + Toggle View Mode - Show Unprintable + Export Parts - Show Page Margins + Export Parts... - &Search + Save a copy of the score's parts in various formats - &General... + Add marcato - &Text... + Marcato - &Chords... + Select Section - Parts + Note duration: double whole - Par&ts... + Double whole note - Manage parts + Whole note - Additional &Media... + Half note - &Page Settings... + Quarter note - &Album... + 8th note - Inspector - Inspector + 16th note + - Show OMR Panel + 32nd note - OmrPanel + 64th note - Show OMR PAnel + Edit score info - metronome + Insert Special Characters... - toggle metronome + Layers - Figured Bass + MuseScore Connect - Next Score + next syllable - Previous Score + previous syllable - Transpose Up + toggle visibility - Transpose Down + set visible - Show master palette + set unvisible - Master Palette... + Local Handbook... - Insert Measure + Open... - Toggle View Mode + Save + Salvează + + + Save As... - Export Parts + Export... - Export Parts... + Close + Închide + + + New... - Save a copy of the score's parts in various formats + Print... - Add marcato + Instruments... - Marcato + Add More Stretch - Select Section + Add Less Stretch - select section + Tempo Marking... - Note duration: double whole + Tempo Marking - Double whole note + Text + Text + + + Add Frame Text - Whole note + Load Style... - Half note + Save Style... - Quarter note + Save Style As Default... - 8th note + Select All - 16th note + Concert Pitch + Partitura în "Do" + + + Info... - 32nd note + Reset - 64th note + Debugger - Edit score info + Reset Stretch - &Info... + Insert Special Characters - Insert special characters + Find - Insert Special Characters... + General... - Enable Script Debugger + Text... - Layers + Chords... - &Layers... + Parts... - MuseScore Connect + Full Screen - next syllable + Additional Media... - previous syllable + Page Settings... - toggle visibility + Album... - set visible + Layers... - set unvisible + Plugin Creator diff --git a/share/locale/mscore_ru.ts b/share/locale/mscore_ru.ts index a63290e65c93..b1b6458bba1c 100644 --- a/share/locale/mscore_ru.ts +++ b/share/locale/mscore_ru.ts @@ -134,10 +134,6 @@ p, li { white-space: pre-wrap; } Remove Score - - score list - - move current score down in list @@ -158,18 +154,6 @@ p, li { white-space: pre-wrap; } Add Score - - path to new score you want to add - - - - open file manager - - - - ... - ... - create new album @@ -202,6 +186,18 @@ p, li { white-space: pre-wrap; } Join Scores + + Load + Загрузить + + + MuseScore: Add Score + + + + MuseScore: Load Album + + ArticulationBase @@ -1159,15 +1155,15 @@ spatium unit Маленькая головка ноты - showCourtesyClef + Hide courtesy clef - Hide courtesy clef + Show courtesy clef - Show courtesy clef + showCourtesy @@ -1192,14 +1188,14 @@ spatium unit Drum Tools - - Drumset - - Drums Ударные + + Edit Drumset + + DrumrollEditor @@ -2777,18 +2773,10 @@ spatium unit Time sig. left margin - - Clef-key distance - - Clef-barline distance - - Begin repeat left margin - - Show repeat bar tips ("winged" repeats) @@ -3185,6 +3173,10 @@ p, li { white-space: pre-wrap; } Max. System distance + + Clef/Key right margin + + EditTempoBase @@ -3562,6 +3554,28 @@ spatium unit Down Вниз + + Offset X: + + + + sp + spatium unit +---------- +spatium unit + + + + Offset Y: + + + + + InspectorClef + + Show Courtesy Clef + + InspectorElement @@ -3701,6 +3715,36 @@ spatium unit % + + InspectorKeySig + + Show Courtesy Time Signature + + + + Show Naturals + + + + + InspectorLasso + + Form + Form + + + Lasso + + + + Position: + + + + Size + + + InspectorNote @@ -3945,6 +3989,13 @@ spatium unit + + InspectorTimeSig + + Show Courtesy Time Signature + + + InspectorVBox @@ -5059,10 +5110,6 @@ Would you like to locate %2 now? &About О &программе - - MuseScore: Open Help - MuseScore: Открыть файл справки - MuseScore: Load Score MuseScore: Загрузить партитуру @@ -5213,28 +5260,10 @@ before closing? End-Start Repeat Конец-начало повтора - - Search - Поиск - Go To: Перейти к: - - MuseScore handbook not found at: - - Руководство по MuseScore не найдено в: - - - - - -From the "Help" menu try choosing "Online Handbook" instead. - - -Вместо этого в меню «Справка» выберите пункт «Руководство в Сети». - Grace Notes Форшлаги @@ -5329,27 +5358,10 @@ From the "Help" menu try choosing "Online Handbook" instead. Restore session? - - Script -%1 -is incompatible with current interface - - - - MuseScore is too old to run script -%1 - - Bar %1 Beat %2.%3 Такт %1 Доля %2.%3 - - Error loading plugin -"%1" line %2: -%3 - - MuseScore: Load error @@ -5959,6 +5971,30 @@ please choose a different name: Report a bug + + MuseScore: Load Plugin + + + + MuseScore Plugin (*.qml);;All Files (*) + + + + MuseScore: Save Plugin + + + + MuseScore Plugin File (*.qml) + + + + &Plugins + + + + Find + + MyWebView @@ -6564,31 +6600,106 @@ please choose a different name: Относительный темп - Straight + master volume + Общая громкость + + + Vol. + short text for volume slider + + + + Tmp. + short text for tempo slider + + + PluginCreator - Swing - Свинг + File Operations + Операции с файлами - Shuffle + Edit Operations - master volume - Общая громкость + MuseScore Plugin Editor + - Vol. - short text for volume slider + MuseScore + MuseScore + + + Plugin "%1" has changes +save before closing? - Tmp. - short text for tempo slider + untitled + + + + Manual + + + + + PluginCreatorBase + + MainWindow + + + + Run + + + + Stop + + + + File + + + + Help + + + + Edit + + + + New + Создать + + + Open + + + + Save + Сохранить + + + Manual + + Undo + Отменить + + + Redo + Вернуть + + + Quit + Выход + PreferenceDialog @@ -6624,14 +6735,6 @@ please choose a different name: Choose Default Style for Parts - - load - - - - Plugin Path - - Choose Scores Directory @@ -6843,10 +6946,6 @@ please choose a different name: 22050 22050 - - Instrument List: - Список инструментов: - Note Entry Ввод нот @@ -6999,10 +7098,6 @@ please choose a different name: dark - - light - - use native file dialogs @@ -7271,6 +7366,34 @@ please choose a different name: Character Set: + + Instrument List2: + + + + Instrument List1: + + + + Name: + Название: + + + Path: + + + + Version: + + + + Load + Загрузить + + + Define Shortcut + + Properties @@ -7332,14 +7455,6 @@ please choose a different name: MuseScore: Import Capella MuseScore: Импорт файла Capella - - MuseScore - MuseScore - - - reading file < - - MuseScore: file not found: MuseScore: файл не найден: @@ -7352,10 +7467,6 @@ please choose a different name: MuseScore: Load Palette failed: - - MuseScore: register script plugin: - - MuseScore: Import GuitarPro @@ -7411,17 +7522,13 @@ failed: MuseScore: Save File MuseScore: Сохранить файл - - > failed: - - Load failed: Не удалось загрузить: - &Quit - + Untitled + Без названия @@ -7786,10 +7893,6 @@ cannot split tuplet Ticks - - Tick: - Тик: - Bar @@ -7798,6 +7901,14 @@ cannot split tuplet Beat + + tick: + + + + rTick: + + SelectDialog @@ -7952,22 +8063,22 @@ Sequencer will be disabled. SlurPropertyBase - - Volta Properties - Свойства вольты - Slur Properties - solid - целая + Solid + - dotted + Dotted + + Dashed + Пунктирная + SlurSegment @@ -8644,6 +8755,10 @@ altera styled + + layoutToParentWidth + + TextEditor @@ -8959,6 +9074,14 @@ altera Text Текст + + Foreground Color: + + + + Background Color: + + TextStyleDialog @@ -9191,6 +9314,34 @@ p, li { white-space: pre-wrap; } Pickup Measure Размер затакта + + 1 + 1 + + + 2 + 2 + + + 4 + 4 + + + 8 + 8 + + + 16 + 16 + + + 32 + 32 + + + 64 + 64 + TransposeDialogBase @@ -9626,10 +9777,6 @@ p, li { white-space: pre-wrap; } action - - Local &Handbook... - &Локальное руководство... - Save a Copy... Сохранить копию... @@ -9898,46 +10045,6 @@ p, li { white-space: pre-wrap; } Reset Beam Mode - - up+shift+ctrl - - - - down+shift+ctrl - - - - left+ctrl - - - - left+shift - - - - right+shift - - - - right+ctrl+shift - - - - shift+home - - - - shift+end - - - - ctrl+shift+home - - - - ctrl+shift+end - - Delete Selected Measures Удалить выделенные такты @@ -10038,22 +10145,10 @@ p, li { white-space: pre-wrap; } Quit Выход - - Zoom Canvas - Приближать холст - Lyrics Либретто - - Tempo... - Темп... - - - Tempo - Темп - Metronome Метроном @@ -10066,10 +10161,6 @@ p, li { white-space: pre-wrap; } Staff Text Текст нотоносца - - Frame Text - - Title Название @@ -10162,10 +10253,6 @@ p, li { white-space: pre-wrap; } Show Frames - - Search - Поиск - Zoom In @@ -10198,10 +10285,6 @@ p, li { white-space: pre-wrap; } Repeat selection - - Follow Song - - Local handbook Локальное руководство @@ -10334,10 +10417,6 @@ p, li { white-space: pre-wrap; } Trill Трель - - More stretch - - Less stretch @@ -10350,10 +10429,6 @@ p, li { white-space: pre-wrap; } Flip direction Развернуть направление - - Flip Direction - Развернуть направление - Pitch up @@ -10438,34 +10513,18 @@ p, li { white-space: pre-wrap; } Previous chord - - Previous Chord - - Previous measure - - Previous Measure - - Next chord - - Next Chord - - Next measure - - Next Measure - - Delete Удалить @@ -10474,10 +10533,6 @@ p, li { white-space: pre-wrap; } Delete contents of the selected measures - - Delete selected measures - - Append measures @@ -10514,10 +10569,6 @@ p, li { white-space: pre-wrap; } Save style Сохранить стиль - - Select all - Выделить всё - Documents Side by Side Документы бок о бок @@ -10534,54 +10585,10 @@ p, li { white-space: pre-wrap; } Delete element and duration - - &Open... - - - - &Save - - - - Save &As... - - - - &Close - - File new - - &New... - - - - &Print... - - - - &Undo - - - - &Redo - - - - Cu&t - - - - &Copy - - - - &Paste - - Insert note A @@ -10738,62 +10745,26 @@ p, li { white-space: pre-wrap; } Timewise delete - - Append one measure - - Append One Measure - - Insert one measure - - Insert One Measure - - Insert horizontal frame - - - - Insert text frame - - Insert Text Frame - - Append text frame - - Append Text Frame - - Insert fret diagram frame - - Insert Fret Diagram Frame - - Insert vertical frame - - - - Append horizontal frame - - - - Append vertical frame - - Other tuplets @@ -10970,22 +10941,10 @@ p, li { white-space: pre-wrap; } Feathered beam, slower - - Feathered Beam, Slower - - Feathered beam, faster - - Feathered Beam, Faster - - - - Play panel - - Transport toolbar @@ -10994,10 +10953,6 @@ p, li { white-space: pre-wrap; } Note input toolbar - - Status bar - - Zoom canvas @@ -11010,10 +10965,6 @@ p, li { white-space: pre-wrap; } Add staff text - - Add text - - Add title text @@ -11062,82 +11013,26 @@ p, li { white-space: pre-wrap; } Player seek to end - - Select A&ll - - &Transpose... - - Violin clef - - Violin Clef - - Bass 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 - - Toggle Section Break - - Edit element - - Show inspector @@ -11146,18 +11041,6 @@ p, li { white-space: pre-wrap; } Reset measure stretch - - Show invisible - - - - Show frames - - - - Enable script debugger - - Note entry: whole rest @@ -11194,14 +11077,6 @@ p, li { white-space: pre-wrap; } Backspace - - Zoom in - - - - Zoom out - - Mirror note head @@ -11238,10 +11113,6 @@ p, li { white-space: pre-wrap; } Display documents stacked - - Show score image - - Show OMR image @@ -11262,18 +11133,6 @@ p, li { white-space: pre-wrap; } Toggle foto mode - - Full screen - - - - F&ull Screen - - - - F&ull screen - - Enable horizontal raster @@ -11286,10 +11145,6 @@ p, li { white-space: pre-wrap; } Configure raster - - Re-pitch mode - - Re-Pitch Mode @@ -11318,10 +11173,6 @@ p, li { white-space: pre-wrap; } 128th note - - Show unprintable - - Split Measure @@ -11358,18 +11209,10 @@ p, li { white-space: pre-wrap; } Reset user settings - - Show debugger - - Piano Keyboard - - Show Inspector - - Save Selection @@ -11387,303 +11230,323 @@ p, li { white-space: pre-wrap; } - &Export... + Respell pitches - &Instruments... + Grace: 8nd after - &Note Input + Pan score while playing on/off - Respell pitches - + Pan + Пан - &Respell Pitches + Show Unprintable - Add &More Stretch + Show Page Margins - Add &Less Stretch + Manage parts - Reset &Beam Mode + Inspector + Инспектор + + + Show OMR Panel - Grace: 8nd after + OmrPanel - Pan score while playing on/off + toggle metronome - Pan - Пан + Figured Bass + - &Load Style... + Next Score - &Save Style... + Previous Score - Save style as default + Transpose Up - Save Style As &Default... + Transpose Down - &Concert Pitch + Show master palette - &Reset + Master Palette... - De&bugger + Insert Measure - Reset &Stretch + Toggle View Mode - Show Unprintable + Export Parts - Show Page Margins + Export Parts... - &Search + Save a copy of the score's parts in various formats - &General... + Add marcato - &Text... + Marcato - &Chords... + Select Section - Parts + Note duration: double whole - Par&ts... + Double whole note - Manage parts + Whole note - Additional &Media... + Half note - &Page Settings... + Quarter note - &Album... + 8th note - Inspector - Инспектор + 16th note + - Show OMR Panel + 32nd note - OmrPanel + 64th note - Show OMR PAnel + Edit score info - metronome + Insert Special Characters... - toggle metronome + Layers - Figured Bass + MuseScore Connect - Next Score + next syllable - Previous Score + previous syllable - Transpose Up + toggle visibility - Transpose Down + set visible - Show master palette + set unvisible - Master Palette... + Local Handbook... - Insert Measure + Open... - Toggle View Mode + Save + Сохранить + + + Save As... - Export Parts + Export... - Export Parts... + Close + Закрыть + + + New... - Save a copy of the score's parts in various formats + Print... - Add marcato + Instruments... - Marcato + Add More Stretch - Select Section + Add Less Stretch - select section + Tempo Marking... - Note duration: double whole + Tempo Marking - Double whole note + Text + Текст + + + Add Frame Text - Whole note + Load Style... - Half note + Save Style... - Quarter note + Save Style As Default... - 8th note + Select All - 16th note + Concert Pitch + Концертный строй + + + Info... - 32nd note + Reset - 64th note + Debugger - Edit score info + Reset Stretch - &Info... + Insert Special Characters - Insert special characters + Find - Insert Special Characters... + General... - Enable Script Debugger + Text... - Layers + Chords... - &Layers... + Parts... - MuseScore Connect + Full Screen - next syllable + Additional Media... - previous syllable + Page Settings... - toggle visibility + Album... - set visible + Layers... - set unvisible + Plugin Creator diff --git a/share/locale/mscore_sk.ts b/share/locale/mscore_sk.ts index ce8658c8a150..25f07a8d3e69 100644 --- a/share/locale/mscore_sk.ts +++ b/share/locale/mscore_sk.ts @@ -31,17 +31,17 @@ p, li { white-space: pre-wrap; } AboutBoxDialog - + Unstable Prerelease for Version: - + Version: - + Revision: %1 @@ -141,99 +141,94 @@ p, li { white-space: pre-wrap; } - + remove current score - - - Remove Score - - - score list + Remove Score - + move current score down in list - + Down - + move current score up in list - + Up - + Add Score - path to new score you want to add + create new album - - open file manager + + New - ... + load an existing album - - create new album + + Load - - New + + Join Scores - - load an existing album + + Print Album - - Join Scores + + MuseScore Album Files (*.album);; - - Print Album + + + All Files (*) - - MuseScore Album Files (*.album);; + + MuseScore Files (*.mscz *.mscx *.msc);; - - - All Files (*) + + MuseScore: Add Score - - MuseScore Files (*.mscz *.mscx *.msc);; + + MuseScore: Load Album @@ -1456,7 +1451,7 @@ spatium unit - showCourtesyClef + showCourtesy @@ -1497,7 +1492,7 @@ spatium unit - Drumset + Edit Drumset @@ -1608,29 +1603,29 @@ spatium unit - + Open File - + failed: - + MuseScore: Open File - + Write File failed: - + MuseScore: Write Drumset @@ -1648,112 +1643,112 @@ failed: - + Staff Line: - + Stem Direction: - + Auto - + Up - + Down - + Default Voice: - + Shortcut: - + A - + B - + C - + D - + E - + F - + G - + -- - + Note Head: - + Load - + Save - + No. - + Note - + Shortcut - + Name @@ -3186,76 +3181,76 @@ failed: - + Barlines - + Notes - + Arpeggios - + Beams - + Slurs/Ties - + Sizes - + Barline-note margin - + Note-barline margin - + Hairpins - + Chordnames - + Clefs - + Articulations, Ornaments - + Accidentals @@ -3300,45 +3295,44 @@ failed: - - - - - - - - + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + sp spatium unit ---------- @@ -3439,11 +3433,11 @@ spatium unit - - - - - + + + + + % @@ -3548,7 +3542,7 @@ spatium unit - + ... @@ -3624,62 +3618,67 @@ spatium unit - + 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 @@ -3690,7 +3689,7 @@ spatium unit - + Figured Bass @@ -3751,30 +3750,25 @@ p, li { white-space: pre-wrap; } - + minimum Measure width - + Clef left margin - + Key sig. left margin - + Time sig. left margin - - - Clef-key distance - - Clef-barline distance @@ -3782,321 +3776,316 @@ p, li { white-space: pre-wrap; } - Begin repeat left margin - - - - 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 - + 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 @@ -4259,7 +4248,7 @@ p, li { white-space: pre-wrap; } GreendotButton - + record @@ -4356,7 +4345,7 @@ p, li { white-space: pre-wrap; } Inspector - + Inspector @@ -4379,8 +4368,8 @@ p, li { white-space: pre-wrap; } - - + + sp spatium unit ---------- @@ -4388,57 +4377,57 @@ spatium unit - + Offset Y: - + Direction: - + Auto - + Up - + Down - + Anchor: - + Top Staff - + Bottom Staff - + Chord Automatic - + Top Chord - + Bottom Chord @@ -4461,27 +4450,27 @@ spatium unit - - + + sp - + Position - - - - - + + + + + ... - + User Position @@ -4530,48 +4519,77 @@ spatium unit - - + Offset X: + + + + + + sp + spatium unit +---------- +spatium unit + + + + + + reset value - - - + + + + + ... - + Small - + Stemless - + Stem direction - + Auto - + Up - + Down + + + Offset Y: + + + + + InspectorClef + + + Show Courtesy Clef + + InspectorElement @@ -4586,31 +4604,31 @@ spatium unit - + Offset X: - + Color: - - - - + + + + ... - + Visible - - + + sp spatium unit ---------- @@ -4618,7 +4636,7 @@ spatium unit - + Offset Y: @@ -4641,12 +4659,12 @@ spatium unit - + Set Visible - + Set Invisible @@ -4664,26 +4682,26 @@ spatium unit - + Left Gap: - - + + reset value - - + + ... - - - + + + sp spatium unit ---------- @@ -4691,12 +4709,12 @@ spatium unit - + Right Gap: - + Width: @@ -4714,30 +4732,30 @@ spatium unit - + Size - + Scale: - - + + % - - - + + + ... - + Lock Aspect Ratio @@ -4752,6 +4770,42 @@ spatium unit + + InspectorKeySig + + + Show Courtesy Time Signature + + + + + Show Naturals + + + + + InspectorLasso + + + Form + + + + + Lasso + + + + + Position: + + + + + Size + + + InspectorNote @@ -4775,225 +4829,225 @@ spatium unit - - - + + + Auto - + Top - + Bottom - - - - - - - - - + + + + + + + + + reset value - - - - - - - - - + + + + + + + + + ... - + Ontime Offset - + Left - + Right - + Dot Position - + Note Head Group - + Tuning Offset - + Note Head Type - + Velocity Type - + Whole - + Half - + Quarter - + Breve - + Velocity - + Offset - + User - + normal - + cross - + diamond - + triangle - + slash - + xcircle - + do - + re - + mi - + fa - + sol - + la - + ti - + alt. brevis - + Select - + Dot1 - + Dot2 - + Dot3 - + Hook - + Stem - + Beam @@ -5001,7 +5055,7 @@ spatium unit InspectorRest - + Small @@ -5024,8 +5078,8 @@ spatium unit - - + + sp spatium unit ---------- @@ -5033,19 +5087,19 @@ spatium unit - + Leading space: - - + + reset value - - + + ... @@ -5068,12 +5122,20 @@ spatium unit - + sp spatium unit + + InspectorTimeSig + + + Show Courtesy Time Signature + + + InspectorVBox @@ -5082,14 +5144,14 @@ spatium unit - + Top Gap: - - - + + + sp spatium unit ---------- @@ -5109,20 +5171,20 @@ spatium unit - - - + + + reset value - - - + + + ... @@ -5132,30 +5194,30 @@ spatium unit - - - - + + + + mm - + Top Margin: - + Left Margin: - + Bottom Gap: - + Height: @@ -5353,49 +5415,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 (*) @@ -5758,14 +5820,14 @@ failed: - - - - - - - - + + + + + + + + sp @@ -5805,110 +5867,110 @@ failed: - + diagonally - + Begin - - + + Text - - + + ... - - + + place: - - + + Below - - + + Left - - + + Above - - - + + + Symb. - - - + + + Ped (Pedal) - - - + + + x: - - - + + + y: - - + + Hook - - + + Up - - + + 90° - - + + 45° - + Continue - + End @@ -6383,7 +6445,7 @@ Would you like to locate %2 now? MenuNotes - + &Notes @@ -6435,13 +6497,13 @@ Would you like to locate %2 now? MuseScore - + MuseScore: Load error - + MuseScore @@ -6493,19 +6555,18 @@ before closing? - - + + All Files (*) - + Untitled - - + MuseScore: Load Score @@ -6520,273 +6581,293 @@ before closing? - + 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 @@ -6806,60 +6887,60 @@ before closing? - - + + 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 (*) @@ -6869,112 +6950,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 @@ -6984,292 +7065,292 @@ 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 - + 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 - + 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 @@ -7279,17 +7360,17 @@ before closing? - + Symbols - + Fret Diagram - + &Create @@ -7299,240 +7380,227 @@ 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 - + + Find + + + + MuseScore: warning - + Cannot create tuplet: note value too short - + &Layout - + Continuous View - + &Style - + &Display - + &Help - + &About - + About &MusicXML - + Report a bug - - MuseScore handbook not found at: - - - - - - - -From the "Help" menu try choosing "Online Handbook" instead. - - - - - MuseScore: Open Help - - - - + Open failed: unknown file extension or broken file - + System - + no score - + note entry mode - + edit mode - + play - + foto mode - + Go To: - - Search - - - - + Bar %1 Beat %2.%3 - + The previous session quit unexpectedly. Restore session? @@ -7566,67 +7634,46 @@ please choose a different name: - + MuseScore: transpose - + There is nothing selected. Transpose whole score? - - + + MuseScore: save style - + MuseScore: load style - - - Error loading plugin -"%1" line %2: -%3 - - - - - Script -%1 -is incompatible with current interface - - - - - MuseScore is too old to run script -%1 - - - - - + + Error opening lame library - + Could not open MP3 encoding library! - + Not a valid or supported MP3 encoding library! - - + + Encoding error @@ -7636,12 +7683,12 @@ is incompatible with current interface - + Unable to open target file for writing - + Error %1 returned from MP3 encoder @@ -7712,7 +7759,7 @@ is incompatible with current interface - + MuseScore: Create New Score @@ -7720,12 +7767,12 @@ is incompatible with current interface NewWizardPage1 - + Create New Score - + This wizard creates a new score @@ -7733,12 +7780,12 @@ is incompatible with current interface NewWizardPage2 - + Create New Score - + Define a set of instruments. Each instrument is represented by one or more staves @@ -7746,12 +7793,12 @@ is incompatible with current interface NewWizardPage3 - + Create New Score - + Create Time Signature @@ -7759,22 +7806,22 @@ is incompatible with current interface NewWizardPage4 - + Create New Score - + Select Template File: - + MuseScore: Select Template - + MuseScore Template Files (*.mscz *.mscx) @@ -7782,27 +7829,27 @@ is incompatible with current interface NewWizardPage5 - + Create New Score - + Select Key Signature and Tempo: - + Key Signature - + Tempo - + BPM: @@ -8037,27 +8084,27 @@ is incompatible with current interface PaletteBox - + Palettes - + Palette Operations - + Single Palette Mode - + Reset to factory defaults - + new Palette @@ -8065,42 +8112,42 @@ is incompatible with current interface PaletteBoxButton - + Palette Properties... - + Insert new Palette... - + Move Palette Up - + Move Palette Down - + Enable Editing - + Save Palette - + Load Palette - + Delete Palette @@ -8394,7 +8441,7 @@ is incompatible with current interface - + relative tempo @@ -8404,117 +8451,205 @@ is incompatible with current interface - - Straight + + Vol. + short text for volume slider - - Swing + + Tmp. + short text for tempo slider - - Shuffle + + master volume + + + PluginCreator - - Vol. - short text for volume slider + + File Operations - - Tmp. - short text for tempo slider + + Edit Operations - - master volume + + MuseScore Plugin Editor + + + + + + + MuseScore + + + + + + + Plugin "%1" has changes +save before closing? + + + + + untitled + + + + + Manual - PreferenceDialog + PluginCreatorBase - - Choose Notepaper + + MainWindow - - Choose Background Wallpaper + + Run + + + + + Stop + + + + + File + + + + + Help + + + + + Edit + + + + + New + + + + + Open + + + + + Save + + + + + Manual + + + + + Undo + + + + + Redo + + + + + Quit + + + PreferenceDialog - - load + + Choose Notepaper - - Plugin Path + + 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 @@ -8522,822 +8657,848 @@ is incompatible with current interface PrefsDialogBase - + MuseScore: Preferences - + MuseScore Preferences - - + + Reset to Default - + General - + Paths - + Show Play Panel - + Show Navigator - + Show MuseScore Connect - + Browse... - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ... - + Language - + Attention: changing the language requires a restart of MuseScore. - + Program Start - + start empty - + continue last session - + start with new score - + start with score: - + show splash screen - + Auto Save - + Save every - + minutes - + Windows - + OSC remote control - + Port Number: - + Style - + dark - - light - - - - + native - + Icon size: - + use native file dialogs - + Canvas - + Background - - + + Wallpaper - - + + Color - + Paper - + Miscellaneous - + Proximity for selecting elements - + disable antialiased drawing - + uncheck this to speed up drawing - + Draw Antialiased - + Text - + Auto-correction - + Replace 1/2 with fraction character ½ - + Replace (C) with copyright symbol © (Only applies to text in the copyright section) - - + + Note Entry - + Enable MIDI input - + Play notes when editing - + Default Duration: - + ms - + Color notes outside of usable pitch range - + MIDI Remote Control - + rewind - - - - - + + + + + is active - - - - - + + + + + record - + toggle play - + whole note - + half note - + quarter note - + 8th note - + rest - + augmentation dot - + double augmentation dot - + tie - + play - + stop - + note entry - + 16th note - + 32nd note - + 64nd note - - + + Clear - + Score - + Default Files - - Instrument List: - - - - + Style: - + Style for Part: - + View - + Scale - + default scale for new score views - + I/O - + Use JACK MIDI - + Ports - + Remember last connection(s) - + Use internal synthesizer - + JACK Audio Server - + Left-Port: - + Right-Port: - + ALSA Audio - - + + Device: - + default - - + + Sample Rate: - + 192000 - + 96000 - + 88200 - - + + 48000 - - + + 44100 - + 32000 - + 22050 - + Fragments: - + Period Size: - + 4096 - + 2048 - + 1024 - + 512 - + 256 - + 128 - + 64 - + PortAudio - + API: - + Default SoundFont - + Attention: Any changes on this page require a restart of MuseScore. - + Import - + Style Used for Import - + Built in style - + Use style file: - + Character Set used when import non-unicode strings. (For binary file import) - + Export - + PNG/SVG - + Resolution DPI - + Transparent background - - + + MIDI - + Scores Directory: - + Styles Directory: - + Templates Directory: - + Plugins Directory: - + SoundFonts Directory: - + Images Directory: - + enable MIDI remote control - + + Instrument List2: + + + + + Instrument List1: + + + + PulseAudio - + Choose MIDI input interface - + Character Set: - - + + MusicXML - + Import layout - + Import system and page breaks - + Shortest Note: - + 1/4 - + 1/8 - + 1/16 - + 1/32 - + 1/64 - + Expand repeats - + Audio - + Export layout - + Export all system and page breaks - + Export manually added system and page breaks only - + Do not export system or page breaks - + Shortcuts - + Action - + + Shortcut - + Define... - + Plugins - + + Name: + + + + + Path: + + + + + Version: + + + + + Load + + + + + Define Shortcut + + + + Update - + Automatic Update Check - + Check for new versions of MuseScore on startup @@ -9413,11 +9574,11 @@ is incompatible with current interface - - - - - + + + + + Quit @@ -9465,6 +9626,11 @@ failed: MuseScore: Write Album + + + Untitled + + MuseScore: file not found: @@ -9476,7 +9642,7 @@ failed: - + MuseScore: Load Style failed: @@ -9498,57 +9664,31 @@ failed: - + MuseScore: load Style failed: - - MuseScore - - - - - reading file < - - - - - > failed: - - - - - &Quit - - - - + MuseScore: Load languages failed: - + MuseScore: invalid command - - + + MuseScore: Load Palette failed: - - - - MuseScore: register script plugin: - - RecordButton - + record @@ -9572,130 +9712,130 @@ 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 - + Foto-Mode - + Resolution (%1 dpi)... - + transparent background - + Save As (print mode)... - + Save As (screenshot mode)... - + MuseScore: Set Output Resolution - + Set output resolution for png/svg - + MuseScore: Save As - + cannot determine file type - + Select - + More... - - + + Object Debugger - + Please select the complete tuplet and retry the copy operation - + Please select the complete tuplet and retry the cut operation - + Staff - + Edit Drumset... - + Drumroll Editor... - + Pianoroll Editor... - + 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 @@ -9890,18 +10030,18 @@ please select range of measures to join and try again - + Staff Properties... - + Split Staff... - + Measure @@ -9942,92 +10082,97 @@ please select range of measures to join and try again - + Segment - + Ticks - - Tick: + + Bar - - Bar + + Beat - - Beat + + rTick: - + Segment Type: - + Clef Segment - + + tick: + + + + Key Signature - + Time Signature - + Begin Repeat - + Chord/Rest - + Breath Segment - + End Bar Line - + Time Signature Announce - + SpannerFor: - + SpannerBack: - + Annotations: - + Lyrics: @@ -10220,22 +10365,23 @@ Sequencer will be disabled. SlurPropertyBase - Volta Properties - - - Slur Properties - solid + Solid - dotted + Dotted + + + + + Dashed @@ -10758,7 +10904,7 @@ altera - + MuseScore Startup Dialog @@ -11086,19 +11232,24 @@ altera - + + layoutToParentWidth + + + + Text: do not translate - + Offset: do not translate - + TextStyle: do not translate @@ -11334,7 +11485,6 @@ altera - Color: @@ -11344,159 +11494,170 @@ altera - + System Flag - + Offset - + X: coordinate - + horizontal offset to reference point - + 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 - + enable text frame - + Frame - + draw circled frame - + Circle - + draw boxed frame - + Box - + Width: - + frame line width - - + + mm - + Margin: - + frame inner margin - + Round: - + corner round - + + Foreground Color: + + + + + frame color + + + Background Color: + + MuseScore: Text Properties @@ -11757,32 +11918,74 @@ please choose a different name: - + / - + + + 1 + + + + + + 2 + + + + + + 4 + + + + + + 8 + + + + + + 16 + + + + + + 32 + + + + + + 64 + + + + Pickup Measure - + Time Signature - + Enter Number of Measures: - + Measures: - + <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:9pt; font-weight:400; font-style:normal;"> @@ -12323,21 +12526,16 @@ p, li { white-space: pre-wrap; } - + round bracket action - - - Local handbook - - - Local &Handbook... + Local handbook @@ -12345,14 +12543,9 @@ p, li { white-space: pre-wrap; } Show local handbook - - - File open - - - &Open... + File open @@ -12360,14 +12553,9 @@ p, li { white-space: pre-wrap; } Load score from file - - - File save - - - &Save + File save @@ -12375,14 +12563,9 @@ p, li { white-space: pre-wrap; } Save score to file - - - File save as - - - Save &As... + File save as @@ -12391,12 +12574,12 @@ p, li { white-space: pre-wrap; } - + File save a copy - + Save a Copy... @@ -12411,12 +12594,12 @@ p, li { white-space: pre-wrap; } - + File reload - + Reload @@ -12425,14 +12608,9 @@ p, li { white-space: pre-wrap; } Reload score from file - - - File close - - - &Close + File close @@ -12440,14 +12618,9 @@ p, li { white-space: pre-wrap; } Close current score - - - File new - - - &New... + File new @@ -12455,14 +12628,9 @@ p, li { white-space: pre-wrap; } Create new score - - - Print - - - &Print... + Print @@ -12472,12 +12640,8 @@ p, li { white-space: pre-wrap; } - Undo - - - - &Undo + Undo @@ -12487,12 +12651,8 @@ p, li { white-space: pre-wrap; } - Redo - - - - &Redo + Redo @@ -12506,60 +12666,43 @@ p, li { white-space: pre-wrap; } - - Cu&t - - - - + Copy - - &Copy - - - - + Paste - - &Paste - - - - - + Show instruments dialog - - + Note input mode - + + Note Input - - + Enter unison above - + Export Parts - + Export Parts... @@ -12569,1670 +12712,1499 @@ p, li { white-space: pre-wrap; } - + 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 - - + Enter seventh above - + Seventh Above - - + 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 - - More stretch - - - - + Add more stretch to selected measure - + Less stretch - + Add less stretch to selected measure - + + Reset Beam Mode - - Reset &Beam Mode - - - - + Reset beam mode of selected measures - - + Flip direction - - 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 - - - up+shift+ctrl - - - - - + 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 - - - down+shift+ctrl - - - - - - - - + + Previous chord - - Previous Chord - - - - - - - - + + Previous measure - - Previous Measure - - - - - - - - + + Next chord - - Next Chord - - - - - - - - + + Next measure - - Next Measure - - - - + Add previous chord to selection - - - left+shift - - - - + Select to beginning of measure - - - left+ctrl - - - - + Add next chord to selection - - - right+shift - - - - - + Select Section - - select section - - - - - - + Move chord/rest right - - - + Move chord/rest left - + Select to end of measure - - - right+ctrl+shift - - - - + Select to beginning of line - - - shift+home - - - - + Select to end of line - - - shift+end - - - - + Select to beginning of score - - - ctrl+shift+home - - - - + Select to end of score - - - ctrl+shift+end - - - - - - + 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 - - - - + Delete Selected Measures - - Append one measure - - - - + Append One Measure - + Append measures - + Append Measures... - - Insert one measure - - - - + Insert One Measure - + Insert measures - + Insert Measures... - - - Insert horizontal frame + + + Insert Horizontal Frame - - - - Insert Horizontal Frame + + + Insert Text Frame - - Insert text frame + + Append Text Frame - - - Insert Text Frame + + + Insert Fret Diagram Frame - - Append text frame + + + Insert Vertical Frame - - Append Text Frame + + Append Horizontal Frame - - Insert fret diagram frame + + Append Vertical Frame - - - Insert Fret Diagram Frame + + Duplet - - - Insert vertical frame + + Triplet - - - - Insert Vertical Frame + + Quadruplet - - Append horizontal frame + + Quintuplet - - Append Horizontal Frame + + Sextuplet - - Append vertical frame + + Septuplet - - Append Vertical Frame + + Octuplet - - - Duplet + + Nonuplet - - - Triplet + + Other tuplets - - - Quadruplet + + Other... - - - Quintuplet + + Note duration: longa - - - Sextuplet + + + Longa - - - Septuplet + + Text - - - Octuplet + + Add Frame Text - - - Nonuplet + + Load Style... - - Other tuplets + + Save Style... - - Other... + + Save Style As Default... - - Note duration: longa + + Select All - - - Longa + + 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 - - - + + Local Handbook... + + + + + 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, Slower - - - - - + Feathered beam, faster - - Feathered Beam, Faster - - - - - - + Palette - - - Play panel - - - - + Play Panel - - - + Navigator - - - + Mixer - + Transport toolbar - + Transport - + Note input toolbar - - - Status bar - - - - + Status Bar - - - + Quit - - + Zoom canvas - - Zoom Canvas - - - - - - + Lyrics - - + Edit score info - - &Info... - - - - - - Insert special characters - - - - + Insert Special Characters... - - Enable Script Debugger - - - - - + Layers - - &Layers... - - - - - - + MuseScore Connect - - metronome - - - - + toggle metronome - - - + Figured Bass - - - + Next Score - - - + Previous Score - - - + Transpose Up - - - + Transpose Down - - + Show master palette - + Master Palette... - + Insert Measure - + Toggle View Mode - - - Tempo - - - - - Tempo... - - - - + Inspector - + Show OMR Panel - + OmrPanel - - Show OMR PAnel - - - - + Metronome - - + Add system text - + Save Selection - + Save Selection... @@ -14242,956 +14214,595 @@ p, li { white-space: pre-wrap; } - - Export score - - - - - &Export... - - - - - &Instruments... - - - - - &Note Input - - - - - - Respell pitches - - - - - &Respell Pitches - - - - - Add &More Stretch + + Export score - - Add &Less Stretch + + Respell pitches - + Note duration: double whole - - + + Double whole note - - + + Whole note - - + + Half note - - + + Quarter note - - + + 8th note - - + + 16th note - - + + 32nd note - - + + 64th note - - System Text + + Tempo Marking... - - - Add staff text + + Tempo Marking - - Staff Text + + System Text - - - Add text + + Add staff text - - Frame 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 - - - Select all - - - - - Select A&ll - - - - - + Transpose - + &Transpose... - - - Violin clef - - - - + Violin Clef - - - Bass clef - - - - + Bass Clef - - + Exchange Voice 1-2 - - Exchange voice 1-2 - - - - - - Exchange voice 1-3 - - - - + Exchange Voice 1-3 - - - Exchange voice 1-4 - - - - + Exchange Voice 1-4 - - - Exchange voice 2-3 - - - - + Exchange Voice 2-3 - - - Exchange voice 2-4 - - - - + Exchange Voice 2-4 - - - Exchange voice 3-4 - - - - + Exchange Voice 3-4 - - + Display in concert pitch - - + Repeat last command - - Repeat Last Command - - - - - - Toggle system break - - - - + Toggle System Break - - - Toggle page break - - - - + Toggle Page Break - - - Toggle section break - - - - + Toggle Section Break - - - Edit element - - - - + Edit Element - - Show Inspector - - - - + Show inspector - - + Reset measure stretch - - - Show invisible - - - - + Show Invisible - - - Show unprintable - - - - - - Show frames - - - - + Show Frames - - - Enable script debugger - - - - + 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 - - - Search - - - - - &Search - - - - - Zoom in - - - - + Zoom In - - Zoom out - - - - + 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 - - Follow Song - - - - - + Display documents side by side - + Documents Side by Side - - + Display documents stacked - + Documents Stacked - - Show score image - - - - - + Show OMR image - - - + Enharmonic up - - &Load Style... - - - - - &Save Style... - - - - - - Save style as default - - - - - Save Style As &Default... - - - - - &Concert Pitch - - - - - &Reset - - - - - De&bugger - - - - - Reset &Stretch - - - - + Show Unprintable - - - + Show Page Margins - - &General... - - - - - &Text... - - - - - &Chords... - - - - - Parts - - - - - Par&ts... - - - - + Manage parts - - - + Enharmonic down - - - + Create new revision - - - + Toggle foto mode - - Full screen - - - - - F&ull Screen - - - - - F&ull screen - - - - - - + Enable horizontal raster - - - + Enable vertical raster - - - + Configure raster - - Re-pitch mode - - - - + Re-Pitch Mode - + Replace pitches without changing rhythms - - - + Stack down - - Additional &Media... - - - - - &Page Settings... - - - - - &Album... - - - - - - + next score - - - + previous score - - + Show media dialog - - + Reset user settings - - - Show debugger - - - - - - + Piano Keyboard - - - + Split Measure - - - + Join Measure - - + Page Settings - - + Album @@ -15199,12 +14810,12 @@ p, li { white-space: pre-wrap; } articulation - + Bend - + Tremolo Bar @@ -15212,7 +14823,7 @@ p, li { white-space: pre-wrap; } barlines - + Barlines @@ -15220,45 +14831,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 @@ -15267,7 +14878,7 @@ p, li { white-space: pre-wrap; } images_directory - + Images @@ -15275,100 +14886,100 @@ 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 - + Text line - + Line @@ -15457,7 +15068,7 @@ p, li { white-space: pre-wrap; } plugins_directory - + Plugins @@ -15465,37 +15076,37 @@ p, li { white-space: pre-wrap; } preferences - + Every day - + Every 3 days - + Every week - + Every 2 weeks - + Every month - + Every 2 months - + Never @@ -15503,7 +15114,7 @@ p, li { white-space: pre-wrap; } scores_directory - + Scores @@ -15511,7 +15122,7 @@ p, li { white-space: pre-wrap; } soundfonts_directory - + Soundfonts @@ -15519,7 +15130,7 @@ p, li { white-space: pre-wrap; } styles_directory - + Styles @@ -15527,7 +15138,7 @@ p, li { white-space: pre-wrap; } templates_directory - + Templates diff --git a/share/locale/mscore_sl.ts b/share/locale/mscore_sl.ts index c630b97628e5..c6c908854b97 100644 --- a/share/locale/mscore_sl.ts +++ b/share/locale/mscore_sl.ts @@ -40,17 +40,17 @@ p, li { white-space: pre-wrap; } AboutBoxDialog - + Unstable Prerelease for Version: Nestabilna izdaja za različico: - + Version: Različica: - + Revision: %1 Revizija: %1 @@ -150,101 +150,96 @@ p, li { white-space: pre-wrap; } - + remove current score - - - Remove Score - - - score list + Remove Score - + move current score down in list - + Down Dol - + move current score up in list - + Up Gor - + Add Score - path to new score you want to add - - - - - open file manager - - - - - ... - ... - - - create new album - + New Novo - + load an existing album - + + Load + Naloži + + + Join Scores - + Print Album - + MuseScore Album Files (*.album);; - - + + All Files (*) - + MuseScore Files (*.mscz *.mscx *.msc);; + + + MuseScore: Add Score + + + + + MuseScore: Load Album + + ArticulationBase @@ -1465,7 +1460,7 @@ spatium unit - showCourtesyClef + showCourtesy @@ -1506,7 +1501,7 @@ spatium unit - Drumset + Edit Drumset @@ -1617,31 +1612,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 @@ -1654,17 +1649,17 @@ spodletelo: MuseScore: Tolkala - + Note Nota - + Shortcut Bližnjica - + Name Ime @@ -1674,97 +1669,97 @@ spodletelo: Ime: - + Note Head: Notna glavica: - + Staff Line: Črta: - + Stem Direction: Smer vratu: - + Auto Samodejno - + Up Gor - + Down Dol - + Default Voice: Privzet glas: - + Shortcut: Bližnjica: - + A A - + B H - + C C - + D D - + E E - + F F - + G G - + -- -- - + Load Naloži - + Save Shrani - + No. @@ -3192,48 +3187,48 @@ spodletelo: - + Barlines Taktnice - + Notes Note - + Arpeggios Arpeggi - + Beams - + Sizes Velikosti - + Hairpins Črte - + Chordnames Imena akordov - + Articulations, Ornaments Artikulacije, Ornamenti @@ -3273,45 +3268,44 @@ spodletelo: - - - - - - - - + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + sp spatium unit ---------- @@ -3387,11 +3381,11 @@ spatium unit - - - - - + + + + + % % @@ -3422,19 +3416,19 @@ spatium unit - + Clefs Ključi - + Slurs/Ties - + Accidentals Predznaki @@ -3600,40 +3594,35 @@ spatium unit - + 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-key distance - Ključ-st. predznaki razdalja - Clef-barline distance @@ -3641,257 +3630,252 @@ spatium unit - Begin repeat left margin - Začni ponavljati z levim robom - - - 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 @@ -3909,7 +3893,7 @@ spatium unit - + Figured Bass @@ -3971,98 +3955,103 @@ p, li { white-space: pre-wrap; } 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 - + Use German names Uporabi nemška imena - + Chord description file Datoteka z opisi akordov @@ -4079,35 +4068,35 @@ p, li { white-space: pre-wrap; } - + ... ... - - - + + + sp space unit pe - + Voice 1 Glas 1 - + Voice 2 Glas 2 - + Voice 3 Glas 3 - + Voice 4 Glas 4 @@ -4270,7 +4259,7 @@ p, li { white-space: pre-wrap; } GreendotButton - + record snemanje @@ -4367,7 +4356,7 @@ p, li { white-space: pre-wrap; } Inspector - + Inspector Struktura dokumenta @@ -4390,8 +4379,8 @@ p, li { white-space: pre-wrap; } - - + + sp spatium unit ---------- @@ -4399,57 +4388,57 @@ spatium unit pe - + Offset Y: - + Direction: - + Auto Samodejno - + Up Gor - + Down Dol - + Anchor: - + Top Staff - + Bottom Staff - + Chord Automatic - + Top Chord - + Bottom Chord @@ -4472,27 +4461,27 @@ spatium unit - - + + sp pe - + Position - - - - - + + + + + ... ... - + User Position @@ -4541,48 +4530,77 @@ spatium unit - - + Offset X: + + + + + + sp + spatium unit +---------- +spatium unit + pe + + + + + reset value - - - + + + + + ... ... - + Small Majhno - + Stemless Brez vratov - + Stem direction - + Auto Samodejno - + Up Gor - + Down Dol + + + Offset Y: + + + + + InspectorClef + + + Show Courtesy Clef + + InspectorElement @@ -4597,31 +4615,31 @@ spatium unit - + Offset X: - + Color: Barva: - - - - + + + + ... ... - + Visible Vidno - - + + sp spatium unit ---------- @@ -4629,7 +4647,7 @@ spatium unit pe - + Offset Y: @@ -4652,12 +4670,12 @@ spatium unit - + Set Visible Nastavi vidno - + Set Invisible Nastavi skrito @@ -4675,26 +4693,26 @@ spatium unit - + Left Gap: - - + + reset value - - + + ... ... - - - + + + sp spatium unit ---------- @@ -4702,12 +4720,12 @@ spatium unit pe - + Right Gap: - + Width: Debelina: @@ -4725,30 +4743,30 @@ spatium unit Slika - + Size - + Scale: Povečava: - - + + % % - - - + + + ... ... - + Lock Aspect Ratio @@ -4763,6 +4781,42 @@ spatium unit + + InspectorKeySig + + + Show Courtesy Time Signature + + + + + Show Naturals + + + + + InspectorLasso + + + Form + Obrazec + + + + Lasso + + + + + Position: + + + + + Size + + + InspectorNote @@ -4786,225 +4840,225 @@ spatium unit - - - + + + Auto Samodejno - + Top - + Bottom - - - - - - - - - + + + + + + + + + reset value - - - - - - - - - + + + + + + + + + ... ... - + Ontime Offset - + Left Levo - + Right - + Dot Position - + Note Head Group Skupina notne glavice - + Tuning Offset - + Note Head Type Tip notne glavice - + Velocity Type - + Whole - + Half - + Quarter - + Breve - + Velocity - + Offset Odmik - + User - + normal normalno - + cross križ - + diamond diamant - + triangle trikotnik - + slash poševnica - + xcircle X v krogcu - + do do - + re re - + mi mi - + fa fa - + sol - + la la - + ti ti - + alt. brevis - + Select Izbor - + Dot1 - + Dot2 - + Dot3 - + Hook - + Stem - + Beam @@ -5012,7 +5066,7 @@ spatium unit InspectorRest - + Small Majhno @@ -5035,8 +5089,8 @@ spatium unit - - + + sp spatium unit ---------- @@ -5044,19 +5098,19 @@ spatium unit pe - + Leading space: - - + + reset value - - + + ... ... @@ -5079,12 +5133,20 @@ spatium unit - + sp spatium unit pe + + InspectorTimeSig + + + Show Courtesy Time Signature + + + InspectorVBox @@ -5093,14 +5155,14 @@ spatium unit Obrazec - + Top Gap: - - - + + + sp spatium unit ---------- @@ -5120,20 +5182,20 @@ spatium unit - - - + + + reset value - - - + + + ... ... @@ -5143,30 +5205,30 @@ spatium unit - - - - + + + + mm mm - + Top Margin: - + Left Margin: - + Bottom Gap: - + Height: @@ -5364,51 +5426,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 (*) @@ -5771,14 +5833,14 @@ spodletelo: - - - - - - - - + + + + + + + + sp pe @@ -5818,110 +5880,110 @@ spodletelo: Barva: - + diagonally diagonalno - + Begin Začetek - - + + Text Besedilo - - + + ... ... - - + + place: mesto: - - + + Below - - + + Left Levo - - + + Above Zgoraj - - - + + + Symb. Simbol - - - + + + Ped (Pedal) Ped (Pedal) - - - + + + x: x: - - - + + + y: y: - - + + Hook - - + + Up Gor - - + + 90° 90° - - + + 45° 45° - + Continue Nadaljevanje - + End Zaključek @@ -6396,7 +6458,7 @@ Would you like to locate %2 now? MenuNotes - + &Notes &Note @@ -6448,7 +6510,7 @@ Would you like to locate %2 now? MuseScore - + MuseScore @@ -6460,14 +6522,13 @@ before closing? skladbo "%1"? - - + MuseScore: Load Score MuseScore: Naloži skladbo - + MuseScore: Load error @@ -6513,13 +6574,13 @@ skladbo "%1"? - - + + All Files (*) - + Untitled Neimenovano @@ -6534,273 +6595,293 @@ skladbo "%1"? - + 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 @@ -6820,70 +6901,70 @@ skladbo "%1"? - - + + 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 @@ -6893,257 +6974,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 @@ -7153,7 +7234,7 @@ skladbo "%1"? - + Articulations && Ornaments Artikulacije in okraski @@ -7163,127 +7244,127 @@ skladbo "%1"? Dinamika - + Fingering Prstni red - + Fingering %1 Prstni red %1 - + String number %1 Struna št. %1 - + Note Heads Notne glavice - + Tremolo Tremolo - + 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 - + &Measures - + &Frames - + &Text @@ -7293,258 +7374,242 @@ 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 - + + 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 - - MuseScore handbook not found at: - - MuseScore priročnik ne obstaja v: - - - - - - -From the "Help" menu try choosing "Online Handbook" instead. - - -Poskusite izbrati iz menija "Pomoč" "Internetni priročnik". - - - - MuseScore: Open Help - MuseScore: Odpri pomoč - - - + 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: - - Search - Iskanje - - - + Bar %1 Beat %2.%3 Takt %1 Doba %2.%3 - + The previous session quit unexpectedly. Restore session? @@ -7580,74 +7645,51 @@ 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 - - - Error loading plugin -"%1" line %2: -%3 - Napaka pri nalaganju vtičnika -"%1" vrstica %2: -%3 - - - - Script -%1 -is incompatible with current interface - Skripta %1 je nekompatibilna s trenutnim vmesnikom - - - - MuseScore is too old to run script -%1 - MuseScore je prestar za poganjanje skripte %1 - - - + Rehearsal Mark Oznake za vajo - - + + Error opening lame library - + Could not open MP3 encoding library! - + Not a valid or supported MP3 encoding library! - - + + Encoding error @@ -7657,12 +7699,12 @@ is incompatible with current interface - + Unable to open target file for writing - + Error %1 returned from MP3 encoder @@ -7733,7 +7775,7 @@ is incompatible with current interface Ustvari prazno novo skladbo - + MuseScore: Create New Score MuseScore: Ustvari novo skladbo @@ -7741,12 +7783,12 @@ is incompatible with current interface NewWizardPage1 - + Create New Score Ustvari novo skladbo - + This wizard creates a new score Ta čarovnik ustvari novo skladbo @@ -7754,12 +7796,12 @@ is incompatible with current interface 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 @@ -7767,12 +7809,12 @@ is incompatible with current interface NewWizardPage3 - + Create New Score Ustvari novo skladbo - + Create Time Signature Ustvari taktovski način @@ -7780,22 +7822,22 @@ is incompatible with current interface NewWizardPage4 - + Create New Score Ustvari novo skladbo - + Select Template File: Izberite datoteko s predlogo: - + MuseScore: Select Template - + MuseScore Template Files (*.mscz *.mscx) @@ -7803,27 +7845,27 @@ is incompatible with current interface NewWizardPage5 - + Create New Score Ustvari novo skladbo - + Select Key Signature and Tempo: - + Key Signature Predznaki - + Tempo Tempo - + BPM: Udarcev / minuto: @@ -8058,27 +8100,27 @@ is incompatible with current interface PaletteBox - + Palettes Palete - + Palette Operations - + Single Palette Mode - + Reset to factory defaults - + new Palette @@ -8086,42 +8128,42 @@ is incompatible with current interface 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 @@ -8415,7 +8457,7 @@ is incompatible with current interface - + relative tempo relativni tempo @@ -8425,117 +8467,205 @@ is incompatible with current interface 100 % - - Straight - Običajno - - - - Swing - Swing - - - - Shuffle - Naključno - - - + Vol. short text for volume slider - + Tmp. short text for tempo slider - + master volume splošna jakost - PreferenceDialog + PluginCreator - - Choose Notepaper - Izberite notni papir + + File Operations + - - Choose Background Wallpaper - Izberite ozadje + + Edit Operations + + + + + MuseScore Plugin Editor + + + + + + + MuseScore + + + + + + + Plugin "%1" has changes +save before closing? + + + + + untitled + + + + + Manual + + + + + PluginCreatorBase + + + MainWindow + + + + + Run + + + + + Stop + + + + + File + + + + + Help + + + + + Edit + + + + + New + Novo - - load + + Open - - Plugin Path + + Save + Shrani + + + + Manual - + + Undo + Razveljavi + + + + Redo + Uveljavi + + + + Quit + Izhod + + + + 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 @@ -8543,822 +8673,848 @@ is incompatible with current interface PrefsDialogBase - + MuseScore: Preferences MuseScore: Nastavitve - + MuseScore Preferences MuseScore nastavitve - + General Splošno - + Scores Directory: - + Styles Directory: - + Templates Directory: - + Plugins Directory: - + SoundFonts Directory: - + Images Directory: - + Program Start Zagon programa - + start empty Začni s prazno skladbo - + continue last session Nadaljuj prejšnjo sejo - + start with new score Začni z novo skladbo - + start with score: Začni s skladbo: - + Choose MIDI input interface - + Browse... ... - + show splash screen prikaži uvodni zaslon - + Language Jezik - + Attention: changing the language requires a restart of MuseScore. Pozor: spreminjanje jezika zahteva ponovni zagon MuseScore. - + Paths Poti - - Instrument List: - Seznam inštrumentov: - - - + Windows Okna - + Style Slog - + Auto Save Samodejno shranjevanje - + Save every Shrani vsakih - + minutes minut - + Canvas Platno - + Background Ozadje - - + + Wallpaper Tapeta - - + + Color Barva - + Proximity for selecting elements Prag natančnosti za izbiro elementa - + disable antialiased drawing Onemogoči mehčanje robov - + uncheck this to speed up drawing Izklopite to možnost za hitrejši izris - + Draw Antialiased Mehčanje robov - + Text Besedilo - + Auto-correction Samodejni popravki - + Replace 1/2 with fraction character ½ Zamenjaj 1/2 z znakom za ulomek ½ - + Replace (C) with copyright symbol © (Only applies to text in the copyright section) Zamenjaj (C) s simbolom za Copyright © (velja le za besedilo v Copyright predelu) - - + + Note Entry Vnos not - + Play notes when editing Zaigraj vstavljeno noto - + ms ms - + Color notes outside of usable pitch range Pobarvaj note izven uporabnega obsega inštrumenta - + enable MIDI remote control - + Score Skladba - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ... ... - + Show Play Panel - + Show Navigator - + Show MuseScore Connect - + OSC remote control - + Port Number: - + dark - - light - - - - + native - + Icon size: - + use native file dialogs - + Paper - + Miscellaneous - + Enable MIDI input - + Default Duration: - + MIDI Remote Control - + rewind - - - - - + + + + + is active - - - - - + + + + + record snemanje - + toggle play - + whole note - + half note - + quarter note - + 8th note - + rest Pavza - + augmentation dot - + double augmentation dot - + tie Vezaj - + play predvajaj - + stop - + note entry - + 16th note - + 32nd note - + 64nd note - + Default Files - + Style: Slog: - + Style for Part: - + View - + Scale - + default scale for new score views - + I/O V/I - + Ports Vrata - + Remember last connection(s) Zapomni si zadnje povezave - + Use internal synthesizer Uporabi notranji sintetizator - + JACK Audio Server JACK strežnik - + Left-Port: Leva vrata: - + Right-Port: Desna vrata: - + ALSA Audio ALSA - + + Instrument List2: + + + + + Instrument List1: + + + + PulseAudio - - + + Device: Naprava: - + default privzeto - - + + Sample Rate: Frekvenca vzorčenja: - + 192000 192000 - + 96000 96000 - + 88200 88200 - - + + 48000 48000 - - + + 44100 44100 - + 32000 32000 - + 22050 22050 - + Fragments: Št. fragmentov: - + Period Size: Dolžina okna: - + 4096 4096 - + 2048 2048 - + 1024 1024 - + 512 512 - + 256 256 - + 128 128 - + 64 64 - + Attention: Any changes on this page require a restart of MuseScore. Pozor: Vsakršna sprememba na tej strani zahteva ponovni zagon MuseScore. - + Import Uvoz - + Style Used for Import Slog uporabljen za uvoz - + Built in style Vgrajen slog - + Use style file: Uporabi datoteko s slogom: - + Character Set used when import non-unicode strings. (For binary file import) - - + + MusicXML - + Import layout - + Import system and page breaks - + Shortest Note: - + 1/4 četrtinka - + 1/8 osminka - + 1/16 šestnajstinka - + 1/32 32-inka - + 1/64 64-inka - + Export Izvoz - + Audio - + Export layout - + Export all system and page breaks - + Export manually added system and page breaks only - + Do not export system or page breaks - + Shortcuts Bližnjice - + Action Akcija - + + Shortcut Bližnjica - - + + Reset to Default Privzeto - - + + Clear Pobriši - + Use JACK MIDI - + PortAudio - + API: - + Default SoundFont - + Character Set: - + PNG/SVG - + Resolution DPI - + Transparent background - - + + MIDI - + Expand repeats - + Define... Izberi ... - + 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 @@ -9434,11 +9590,11 @@ is incompatible with current interface - - - - - + + + + + Quit @@ -9487,6 +9643,11 @@ spodletelo: MuseScore: Write Album + + + Untitled + Neimenovano + MuseScore: file not found: @@ -9498,7 +9659,7 @@ spodletelo: MuseScore: nalaganje spodletelo: - + MuseScore: Load Style failed: @@ -9515,52 +9676,26 @@ spodletelo: Nalaganje spodletelo: - + MuseScore: load Style failed: MuseScore: nalaganje slogov spodletelo: - - MuseScore - - - - - reading file < - berem datoteko < - - - - > failed: - - - - - &Quit - - - - + MuseScore: Load languages failed: MuseScore: Nalaganje jezikov spodletelo: - + MuseScore: invalid command MuseScore: neveljaven ukaz - - + + MuseScore: Load Palette failed: MuseScore: Nalaganje palete spodletelo: - - - - MuseScore: register script plugin: - MuseScore: registracija skriptnega vtičnika: - MuseScore: Import GuitarPro @@ -9570,7 +9705,7 @@ spodletelo: RecordButton - + record snemanje @@ -9594,33 +9729,33 @@ spodletelo: ScoreView - + Select Izbor - + More... Več ... - + Staff Črtovje - + Edit Drumset... Tolkala ... - + Drumroll Editor... - + Pianoroll Editor... @@ -9814,63 +9949,63 @@ spodletelo: - + Staff Properties... Lastnosti črtovja ... - - + + Object Debugger - + Split Staff... 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 @@ -9879,54 +10014,54 @@ uporabite okno z inštrumenti in najprej dodajte nekaj črtovij - + No Measure selected: please select a measure and try again Ni izbranega takta: izberite takt in poskusite znova - + Foto-Mode - + Resolution (%1 dpi)... - + transparent background - + Save As (print mode)... - + Save As (screenshot mode)... - + MuseScore: Set Output Resolution - + Set output resolution for png/svg - + MuseScore: Save As MuseScore: Shrani kot - + cannot determine file type ni mogoče zaznati tipa datoteke @@ -9967,92 +10102,97 @@ izberite takt in poskusite znova Obrazec - + Segment - + Ticks - - Tick: - Udarec: - - - + Bar - + Beat - + Clef Segment - + Key Signature Predznaki - + Time Signature Taktovski način - + Begin Repeat Začni ponavljati - + Chord/Rest Akord/Pavza - + Breath Segment - + End Bar Line Končaj - + Time Signature Announce Najava taktovskega načina - + SpannerFor: - + SpannerBack: - + Annotations: - + Lyrics: Besedilo: - + + tick: + + + + + rTick: + + + + Segment Type: Tip odseka: @@ -10246,23 +10386,24 @@ Sekvenčnik bo onemogočen. SlurPropertyBase - Volta Properties - Volta lastnosti - - Slur Properties Lastnosti loka - solid - zvezno + Solid + - dotted - pikčasto + Dotted + + + + + Dashed + Črtkana @@ -10784,7 +10925,7 @@ altera - + MuseScore Startup Dialog @@ -11080,13 +11221,13 @@ altera Besedilo - + Text: do not translate Besedilo: - + Offset: do not translate Odmik: @@ -11124,7 +11265,12 @@ altera - + + layoutToParentWidth + + + + TextStyle: do not translate Slog besedila: @@ -11365,7 +11511,6 @@ altera - Color: Barva: @@ -11375,159 +11520,170 @@ altera barva besdila - + System Flag - + Offset Odmik - + X: coordinate x: - + horizontal offset to reference point 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 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 - + Margin: Rob: - + frame inner margin notranji rob okvira - + Round: Zaobljenost: - + corner round zaobljenost vogalov - + + Foreground Color: + + + + + frame color barva okvira + + + Background Color: + + TextStyleDialog @@ -11783,32 +11939,74 @@ please choose a different name: - + / / - + + + 1 + 1 + + + + + 2 + 2 + + + + + 4 + 4 + + + + + 8 + 8 + + + + + 16 + 16 + + + + + 32 + 32 + + + + + 64 + 64 + + + Pickup Measure Predtakt - + Time Signature Taktovski način - + Enter Number of Measures: Določi število taktov: - + Measures: Takti: - + <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:9pt; font-weight:400; font-style:normal;"> @@ -12352,7 +12550,7 @@ p, li { white-space: pre-wrap; } Predznaki - + round bracket oklepaj @@ -12360,22 +12558,17 @@ p, li { white-space: pre-wrap; } action - + Local handbook Lokalni priročnik - - - Local &Handbook... - Lokalni P&riročnik ... - Show local handbook Prikaži lokalni priročnik - + File open Odpri datoteko @@ -12385,7 +12578,7 @@ p, li { white-space: pre-wrap; } Naloži skladbo iz datoteke - + File save Shrani v datoteko @@ -12395,7 +12588,7 @@ p, li { white-space: pre-wrap; } Shrani skladbo v datoteko - + File save as Shrani datoteko kot @@ -12405,12 +12598,12 @@ p, li { white-space: pre-wrap; } Shrani skladbo v novo datoteko - + File save a copy Shrani kopijo - + Save a Copy... Shrani kopijo ... @@ -12425,12 +12618,12 @@ p, li { white-space: pre-wrap; } - + File reload Ponovno naloži datoteko - + Reload Ponovno naloži @@ -12440,7 +12633,7 @@ p, li { white-space: pre-wrap; } Ponovno naloži skladbo iz datoteke - + File close Zapri datoteko @@ -12455,7 +12648,7 @@ p, li { white-space: pre-wrap; } Ustvari novo skladbo - + Print Natisni @@ -12466,6 +12659,7 @@ p, li { white-space: pre-wrap; } + Undo Razveljavi @@ -12476,6 +12670,7 @@ p, li { white-space: pre-wrap; } + Redo Uveljavi @@ -12490,45 +12685,43 @@ p, li { white-space: pre-wrap; } 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... @@ -12538,1673 +12731,1332 @@ p, li { white-space: pre-wrap; } - + 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 - - + Enter seventh above Vnesi septimo gor - + Seventh Above 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 - - More stretch - Razširi - - - + 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 - - 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 - - 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 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 - - &Load Style... - - - - - &Save Style... - - - - - - Save style as default - - - - - Save Style As &Default... - - - - - Select A&ll - - - - + &Transpose... - - - Violin clef - - - - + Violin Clef - - - Bass clef - Basovski ključ - - - + Bass Clef - - + Display in concert pitch - - &Concert Pitch - - - - - Repeat Last Command - - - - + next syllable - + previous syllable - + toggle visibility - + set visible - + set unvisible - - - Toggle system break - - - - - - Toggle page break - - - - - - Toggle section break - - - - + Toggle Section Break - - - Edit element - - - - - &Reset + + Show Unprintable - - De&bugger + + Show Page Margins - - Reset &Stretch + + Manage parts - - Show Unprintable + + Show inspector - - - - Show Page Margins + + Reset measure stretch - - &Search + + Reset user settings - - &General... + + Note entry: whole rest - - &Text... + + Whole rest - - &Chords... + + Note entry: half rest - - Parts + + Half rest - - Par&ts... + + Note entry: quarter rest - - Manage parts + + Quarter rest - - Additional &Media... + + Note entry: 8th rest - - &Page Settings... + + 8th rest - - &Album... + + Tempo Marking... - - Show Inspector + + Tempo Marking - - Show inspector - + + Text + Besedilo - - - Reset measure stretch + + Add Frame Text - - - Reset user settings + + Load Style... - - - Show debugger + + Save Style... - - - Show invisible + + Save Style As Default... - - - Show unprintable + + Select All - - - Show frames - + + Concert Pitch + Koncertna intonacija - - - Enable script debugger + + Info... - - Note entry: whole rest + + Reset - - - Whole rest + + Debugger - - Note entry: half rest + + Reset Stretch - - - Half rest + + Insert Special Characters - - Note entry: quarter rest + + Backspace - - - Quarter rest + + Find - - Note entry: 8th rest + + Mirror note head - - - 8th rest + + General... - - - - Backspace + + Edit general style - - - - Mirror note head + + Text... - - - Edit general style + + Chords... - - - + Double duration - - - + Half duration - - + Follow song - - + Display documents side by side - - + Display documents stacked - - Show score image + + Show OMR image - - - Show OMR image + + Enharmonic up - - - - Enharmonic up + + Parts... - - - + Enharmonic down - - - + Create new revision - - - + Toggle foto mode - - Full screen - - - - - F&ull Screen - - - - - F&ull screen - - - - - - + Enable horizontal raster - - - + Enable vertical raster - - - + Configure raster - - Re-pitch mode - - - - + 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 - - - up+shift+ctrl - up+shift+ctrl - - - - + 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 - - - &Open... - - - - - &Save - - - - - Save &As... - - - - - &Close - - - - - File new - - - &New... - - - - - &Print... - - - - - &Undo - - - - - &Redo - - - - - Cu&t - - - - - &Copy - - - - - &Paste + 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 - - - down+shift+ctrl - down+shift+ctrl - - - - - - - + + Previous chord Prejšnji akord - - Previous Chord - Prejšnji akord - - - - - - - + + Previous measure Prejšnji takt - - Previous Measure - Prejšnji takt - - - - - - - + + Next chord Naslednji akord - - Next Chord - Naslednji akord - - - - - - - + + Next measure Naslednji takt - - Next Measure - Naslednji takt + + + Delete + Odstrani - - - left+shift - left+shift + + Delete contents of the selected measures + Zbriši vsebino izbranih taktov - - - left+ctrl - left+ctrl + + Timewise Delete + Časovno brisanje - - - right+shift - right+shift + + Delete element and duration + Zbriši element in trajanje - - - right+ctrl+shift - right+ctrl+shift + + Delete Selected Measures + Zbriši izbrane takte - - - shift+home - shift+home + + Append measures + Dodaj takte - - - shift+end - shift+end + + Append Measures... + Dodaj takte ... - - - ctrl+shift+home - ctrl+shift+home + + Insert measures + Vstavi takte - - - ctrl+shift+end - ctrl+shift+end + + Insert Measures... + Vstavi takte ... - - - Delete - Odstrani + + Local Handbook... + - - Delete contents of the selected measures - Zbriši vsebino izbranih taktov + + Open... + - - Timewise Delete - Časovno brisanje + + Save + Shrani - - Delete element and duration - Zbriši element in trajanje + + Save As... + - - - Delete selected measures - Zbriši izbrane takte + + Export... + - - Delete Selected Measures - Zbriši izbrane takte + + Close + Zapri - - Append measures - Dodaj takte + + New... + - - Append Measures... - Dodaj takte ... + + Print... + - - Insert measures - Vstavi takte + + Instruments... + - - Insert Measures... - Vstavi takte ... + + + Add More Stretch + - - - + + Add Less Stretch + + + + + 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 - - + + 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 - - Zoom Canvas - Povečaj - - - - - + Lyrics Besedilo - - Tempo... - Tempo ... - - - - - Tempo - Tempo - - - + Save Selection - + Save Selection... @@ -14213,1014 +14065,768 @@ p, li { white-space: pre-wrap; } Save current selection as new score - - - Export score - - - &Export... - - - - - &Instruments... + Export score - &Note Input - - - - - Respell pitches - - &Respell Pitches - - - - - Add &More Stretch - - - - - Add &Less Stretch - - - - - Reset &Beam Mode - - - - - + 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 - - - - + Append One Measure - - Insert one measure - - - - + Insert One Measure - - - Insert horizontal frame - - - - - Insert text frame - - - - - + + Insert Text Frame - - Append text frame - - - - + Append Text Frame - - Insert fret diagram frame - - - - - + + Insert Fret Diagram Frame - - - Insert vertical frame - - - - - Append horizontal frame - - - - - Append vertical 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, Slower - - - - - + Feathered beam, faster - - Feathered Beam, Faster + + Transport toolbar - - - Play panel + + Note input toolbar - - Transport toolbar + + Zoom canvas - - Note input toolbar + + Full Screen - - - Status bar + + Layers... - - - Zoom canvas + + MuseScore Connect - - - - MuseScore Connect + + Plugin Creator - + Inspector Struktura dokumenta - + Show OMR Panel - + OmrPanel - - Show OMR PAnel - - - - - metronome - - - - + 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 - - Frame Text - Plošča z besedilom - - - + 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 - - - Select all - Izberi vse - - - - + Transpose Transpozicija - - + Exchange Voice 1-2 Zamenjaj glasova 1-2 - - Exchange voice 1-2 - - - - - - Exchange voice 1-3 - - - - + Exchange Voice 1-3 Zamenjaj glasova 1-3 - - - Exchange voice 1-4 - - - - + Exchange Voice 1-4 Zamenjaj glasova 1-4 - - - Exchange voice 2-3 - - - - + Exchange Voice 2-3 Zamenjaj glasova 2-3 - - - Exchange voice 2-4 - - - - + Exchange Voice 2-4 Zamenjaj glasova 2-4 - - - Exchange voice 3-4 - - - - + Exchange Voice 3-4 Zamenjaj glasova 3-4 - - + Repeat last command Ponovi zadnji ukaz - - + Edit score info - - &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 - - - - + Insert Special Characters... - - Enable Script Debugger - - - - - - Search - Iskanje - - - - Zoom in - - - - + Zoom In Povečaj - - Zoom out - - - - + 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 - - Follow Song - Sledi skladbi - - - + Documents Side by Side Skladbe druga ob drugi - + Documents Stacked Skladbe v sklad - - + Layers - - &Layers... - - - - - - + next score - - - + previous score @@ -15228,12 +14834,12 @@ p, li { white-space: pre-wrap; } articulation - + Bend - + Tremolo Bar @@ -15241,7 +14847,7 @@ p, li { white-space: pre-wrap; } barlines - + Barlines Taktnice @@ -15249,45 +14855,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 @@ -15296,7 +14902,7 @@ p, li { white-space: pre-wrap; } images_directory - + Images @@ -15304,100 +14910,100 @@ 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 - + Text line Napis - + Line Črta @@ -15486,7 +15092,7 @@ p, li { white-space: pre-wrap; } plugins_directory - + Plugins @@ -15494,37 +15100,37 @@ p, li { white-space: pre-wrap; } preferences - + Every day Vsak dan - + Every 3 days Vsake 3 dni - + Every week Vsak teden - + Every 2 weeks Vsake 2 tedna - + Every month Vsak mesec - + Every 2 months Vsake 2 meseca - + Never Nikoli @@ -15532,7 +15138,7 @@ p, li { white-space: pre-wrap; } scores_directory - + Scores @@ -15540,7 +15146,7 @@ p, li { white-space: pre-wrap; } soundfonts_directory - + Soundfonts @@ -15548,7 +15154,7 @@ p, li { white-space: pre-wrap; } styles_directory - + Styles @@ -15556,7 +15162,7 @@ p, li { white-space: pre-wrap; } templates_directory - + Templates diff --git a/share/locale/mscore_sv.ts b/share/locale/mscore_sv.ts index 0dbed106e59c..8bd190d0da9b 100644 --- a/share/locale/mscore_sv.ts +++ b/share/locale/mscore_sv.ts @@ -143,10 +143,6 @@ p, li { white-space: pre-wrap; } Remove Score - - score list - - move current score down in list @@ -167,18 +163,6 @@ p, li { white-space: pre-wrap; } Add Score - - path to new score you want to add - - - - open file manager - - - - ... - ... - create new album @@ -211,6 +195,18 @@ p, li { white-space: pre-wrap; } Join Scores + + Load + Öppna + + + MuseScore: Add Score + + + + MuseScore: Load Album + + ArticulationBase @@ -1168,15 +1164,15 @@ spatium unit liten - showCourtesyClef + Hide courtesy clef - Hide courtesy clef + Show courtesy clef - Show courtesy clef + showCourtesy @@ -1201,14 +1197,14 @@ spatium unit Drum Tools - - Drumset - - Drums Trummor + + Edit Drumset + + DrumrollEditor @@ -2786,18 +2782,10 @@ spatium unit Time sig. left margin Taktartssignaturs vänstermarginal - - Clef-key distance - Avstånd klav-tonartssign - Clef-barline distance Avstånd klav-taktstreck - - Begin repeat left margin - Framåtvänt repristeckens vänstermarginal - Show repeat bar tips ("winged" repeats) Visa förtydligade repristecken (med klammerspetsar) @@ -3194,6 +3182,10 @@ p, li { white-space: pre-wrap; } Max. System distance + + Clef/Key right margin + + EditTempoBase @@ -3571,6 +3563,28 @@ spatium unit Down Ner + + Offset X: + + + + sp + spatium unit +---------- +spatium unit + + + + Offset Y: + + + + + InspectorClef + + Show Courtesy Clef + + InspectorElement @@ -3710,6 +3724,36 @@ spatium unit % + + InspectorKeySig + + Show Courtesy Time Signature + + + + Show Naturals + + + + + InspectorLasso + + Form + Form + + + Lasso + + + + Position: + + + + Size + + + InspectorNote @@ -3954,6 +3998,13 @@ spatium unit + + InspectorTimeSig + + Show Courtesy Time Signature + + + InspectorVBox @@ -5190,10 +5241,6 @@ före stängning? &About &Om - - MuseScore: Open Help - MuseScore: Öppna hjälp - no score inget dokument @@ -5218,28 +5265,10 @@ före stängning? Glissando Glissando - - Search - Sök - Go To: Gå till: - - MuseScore handbook not found at: - - MuseScores handbok ej hittad vid: - - - - - -From the "Help" menu try choosing "Online Handbook" instead. - - -Försök istället välja Internethandbok från menyn Hjälp. - Grace Notes Förslag @@ -5336,27 +5365,10 @@ Restore session? Varied coda Alternativ coda - - Script -%1 -is incompatible with current interface - Script %1 är inte kompatibelt med aktuellt gränssnitt - - - MuseScore is too old to run script -%1 - MuseScore är för gammalt för att köra script %1 - Bar %1 Beat %2.%3 Takt %1 Taktslag %2.%3 - - Error loading plugin -"%1" line %2: -%3 - Fel vid inläsning av plugin "%1" line %2: %3 - MuseScore: Load error @@ -5966,6 +5978,30 @@ please choose a different name: Report a bug + + MuseScore: Load Plugin + + + + MuseScore Plugin (*.qml);;All Files (*) + + + + MuseScore: Save Plugin + + + + MuseScore Plugin File (*.qml) + + + + &Plugins + + + + Find + + MyWebView @@ -6570,18 +6606,6 @@ please choose a different name: 100% 100% - - Straight - Rakt - - - Swing - Sving - - - Shuffle - Shuffle - master volume totalvolym @@ -6597,6 +6621,93 @@ please choose a different name: + + PluginCreator + + File Operations + Filoperationer + + + Edit Operations + + + + MuseScore Plugin Editor + + + + MuseScore + MuseScore + + + Plugin "%1" has changes +save before closing? + + + + untitled + + + + Manual + + + + + PluginCreatorBase + + MainWindow + + + + Run + + + + Stop + + + + File + + + + Help + + + + Edit + + + + New + Ny + + + Open + + + + Save + Spara + + + Manual + + + + Undo + Ångra + + + Redo + Gör om + + + Quit + Avsluta + + PreferenceDialog @@ -6631,14 +6742,6 @@ please choose a different name: Choose Default Style for Parts - - load - - - - Plugin Path - - Choose Scores Directory @@ -6714,10 +6817,6 @@ please choose a different name: Paths Sökvägar - - Instrument List: - Instrumentlista: - Windows Fönster vid programstart @@ -7006,10 +7105,6 @@ please choose a different name: dark - - light - - use native file dialogs @@ -7278,6 +7373,34 @@ please choose a different name: Character Set: + + Instrument List2: + + + + Instrument List1: + + + + Name: + Namn: + + + Path: + + + + Version: + + + + Load + Öppna + + + Define Shortcut + + Properties @@ -7335,14 +7458,6 @@ please choose a different name: MuseScore: load Style failed: MuseScore: stilladdning misslyckades: - - MuseScore - MuseScore - - - reading file < - läser fil < - MuseScore: invalid command MuseScore: ogiltigt kommando @@ -7359,10 +7474,6 @@ please choose a different name: MuseScore: Load languages failed: MuseScore: inläsning av språk misslyckades - - MuseScore: register script plugin: - MuseScore: registrera script plugin: - MuseScore: Import GuitarPro @@ -7418,17 +7529,13 @@ misslyckades: MuseScore: Save File MuseScore: Spara fil - - > failed: - - Load failed: Inläsning misslyckades: - &Quit - + Untitled + Utan titel @@ -7793,10 +7900,6 @@ cannot split tuplet Ticks - - Tick: - Tick: - Bar @@ -7805,9 +7908,17 @@ cannot split tuplet Beat - - - SelectDialog + + tick: + + + + rTick: + + + + + SelectDialog MuseScore: Select MuseScore: Välj @@ -7959,21 +8070,21 @@ Sequencer will be disabled. SlurPropertyBase - - Volta Properties - Egenskaper för reprishake - Slur Properties Egenskaper för legatobåge - solid - heldragen + Solid + - dotted - prickad + Dotted + + + + Dashed + Prickad @@ -8651,6 +8762,10 @@ altera styled + + layoutToParentWidth + + TextEditor @@ -8966,6 +9081,14 @@ altera Text Text + + Foreground Color: + + + + Background Color: + + TextStyleDialog @@ -9198,6 +9321,34 @@ p, li { white-space: pre-wrap; } </style></head><body style=" typsnittfamilj:'Sans Serif'; storlek:9pt; typsnittsvikt:400; stil:normal;"> <p style=" sidhuvud:0px; sidfot:0px; vänstermarginal:0px; högermarginal:0px; -qt-block-indrag:0; textindrag:0px;">Vink: Du kan även lägga till eller radera takter sedan du skapat dokumentet.</p></body></html> + + 1 + 1 + + + 2 + 2 + + + 4 + 4 + + + 8 + 8 + + + 16 + 16 + + + 32 + 32 + + + 64 + 64 + TransposeDialogBase @@ -9633,10 +9784,6 @@ p, li { white-space: pre-wrap; } action - - Local &Handbook... - &Handbok... - Save a Copy... Spara en kopia... @@ -9905,46 +10052,6 @@ p, li { white-space: pre-wrap; } Reset Beam Mode Återställ balkar - - up+shift+ctrl - pil upp+shift+ctrl - - - down+shift+ctrl - pil ner+shift+ctrl - - - left+ctrl - pil vänster+ctrl - - - left+shift - pil vänster+shift - - - right+shift - pil höger+shift - - - right+ctrl+shift - pil höger+ctrl+shift - - - shift+home - shift+home - - - shift+end - shift+end - - - ctrl+shift+home - ctrl+shift+home - - - ctrl+shift+end - ctrl+shift+end - Delete Selected Measures Ta bort markerade takter @@ -10045,22 +10152,10 @@ p, li { white-space: pre-wrap; } Quit Avsluta - - Zoom Canvas - Zooma Arbetsyta - Lyrics Sångtext - - Tempo... - Tempo... - - - Tempo - Tempo - Metronome Metronom @@ -10073,10 +10168,6 @@ p, li { white-space: pre-wrap; } Staff Text Text för notplan - - Frame Text - Text i ram - Title Rubrik @@ -10169,10 +10260,6 @@ p, li { white-space: pre-wrap; } Show Frames Visa ramar - - Search - Sök - Zoom In Zooma in @@ -10205,10 +10292,6 @@ p, li { white-space: pre-wrap; } Repeat selection Repetera markering... - - Follow Song - Följ sång - Local handbook Lokal handbok @@ -10345,10 +10428,6 @@ p, li { white-space: pre-wrap; } Trill Drill - - More stretch - Mer bredd - Less stretch Mindre bredd @@ -10361,10 +10440,6 @@ p, li { white-space: pre-wrap; } Flip direction Skifta riktning - - Flip Direction - Skifta riktning - Pitch up Ton upp @@ -10449,38 +10524,18 @@ p, li { white-space: pre-wrap; } Previous chord Föregående ackord - - Previous Chord - Föregående ackord - Previous measure Föregående takt - - Previous Measure - Föregående takt - Next chord Nästa ackord - - Next Chord - Nästa ackord - Next measure Nästa takt - - Next Measure - Nästa takt - - - Delete selected measures - Ta bort markerade takter - Append measures Lägg till takter @@ -10521,10 +10576,6 @@ p, li { white-space: pre-wrap; } Save style Spara stil - - Select all - Markera allt - Delete Ta bort @@ -10541,54 +10592,10 @@ p, li { white-space: pre-wrap; } Delete element and duration Radera element och tidsvärde - - &Open... - - - - &Save - - - - Save &As... - - - - &Close - - File new - - &New... - - - - &Print... - - - - &Undo - - - - &Redo - - - - Cu&t - - - - &Copy - - - - &Paste - - Insert note A @@ -10745,62 +10752,26 @@ p, li { white-space: pre-wrap; } Timewise delete - - Append one measure - - Append One Measure - - Insert one measure - - Insert One Measure - - Insert horizontal frame - - - - Insert text frame - - Insert Text Frame - - Append text frame - - Append Text Frame - - Insert fret diagram frame - - Insert Fret Diagram Frame - - Insert vertical frame - - - - Append horizontal frame - - - - Append vertical frame - - Other tuplets @@ -10977,22 +10948,10 @@ p, li { white-space: pre-wrap; } Feathered beam, slower - - Feathered Beam, Slower - - Feathered beam, faster - - Feathered Beam, Faster - - - - Play panel - - Transport toolbar @@ -11001,10 +10960,6 @@ p, li { white-space: pre-wrap; } Note input toolbar - - Status bar - - Zoom canvas @@ -11017,10 +10972,6 @@ p, li { white-space: pre-wrap; } Add staff text - - Add text - - Add title text @@ -11069,82 +11020,26 @@ p, li { white-space: pre-wrap; } Player seek to end - - Select A&ll - - &Transpose... - - Violin clef - - Violin Clef - - Bass clef - Basklav - 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 - - Toggle Section Break - - Edit element - - Show inspector @@ -11153,18 +11048,6 @@ p, li { white-space: pre-wrap; } Reset measure stretch - - Show invisible - - - - Show frames - - - - Enable script debugger - - Note entry: whole rest @@ -11201,14 +11084,6 @@ p, li { white-space: pre-wrap; } Backspace - - Zoom in - - - - Zoom out - - Mirror note head @@ -11245,10 +11120,6 @@ p, li { white-space: pre-wrap; } Display documents stacked - - Show score image - - Show OMR image @@ -11269,18 +11140,6 @@ p, li { white-space: pre-wrap; } Toggle foto mode - - Full screen - - - - F&ull Screen - - - - F&ull screen - - Enable horizontal raster @@ -11293,10 +11152,6 @@ p, li { white-space: pre-wrap; } Configure raster - - Re-pitch mode - - Re-Pitch Mode @@ -11325,10 +11180,6 @@ p, li { white-space: pre-wrap; } 128th note - - Show unprintable - - Split Measure @@ -11365,18 +11216,10 @@ p, li { white-space: pre-wrap; } Reset user settings - - Show debugger - - Piano Keyboard - - Show Inspector - - Save Selection @@ -11394,303 +11237,323 @@ p, li { white-space: pre-wrap; } - &Export... + Respell pitches - &Instruments... + Grace: 8nd after - &Note Input + Pan score while playing on/off - Respell pitches - + Pan + Pan - &Respell Pitches + Show Unprintable - Add &More Stretch + Show Page Margins - Add &Less Stretch + Manage parts - Reset &Beam Mode + Inspector + Inspektör + + + Show OMR Panel - Grace: 8nd after + OmrPanel - Pan score while playing on/off + toggle metronome - Pan - Pan + Figured Bass + - &Load Style... + Next Score - &Save Style... + Previous Score - Save style as default + Transpose Up - Save Style As &Default... + Transpose Down - &Concert Pitch + Show master palette - &Reset + Master Palette... - De&bugger + Insert Measure - Reset &Stretch + Toggle View Mode - Show Unprintable + Export Parts - Show Page Margins + Export Parts... - &Search + Save a copy of the score's parts in various formats - &General... + Add marcato - &Text... + Marcato - &Chords... + Select Section - Parts + Note duration: double whole - Par&ts... + Double whole note - Manage parts + Whole note - Additional &Media... + Half note - &Page Settings... + Quarter note - &Album... + 8th note - Inspector - Inspektör + 16th note + - Show OMR Panel + 32nd note - OmrPanel + 64th note - Show OMR PAnel + Edit score info - metronome + Insert Special Characters... - toggle metronome + Layers - Figured Bass + MuseScore Connect - Next Score + next syllable - Previous Score + previous syllable - Transpose Up + toggle visibility - Transpose Down + set visible - Show master palette + set unvisible - Master Palette... + Local Handbook... - Insert Measure + Open... - Toggle View Mode + Save + Spara + + + Save As... - Export Parts + Export... - Export Parts... + Close + Stäng + + + New... - Save a copy of the score's parts in various formats + Print... - Add marcato + Instruments... - Marcato + Add More Stretch - Select Section + Add Less Stretch - select section + Tempo Marking... - Note duration: double whole + Tempo Marking - Double whole note + Text + Text + + + Add Frame Text - Whole note + Load Style... - Half note + Save Style... - Quarter note + Save Style As Default... - 8th note + Select All - 16th note + Concert Pitch + Klingande notation + + + Info... - 32nd note + Reset - 64th note + Debugger - Edit score info + Reset Stretch - &Info... + Insert Special Characters - Insert special characters + Find - Insert Special Characters... + General... - Enable Script Debugger + Text... - Layers + Chords... - &Layers... + Parts... - MuseScore Connect + Full Screen - next syllable + Additional Media... - previous syllable + Page Settings... - toggle visibility + Album... - set visible + Layers... - set unvisible + Plugin Creator diff --git a/share/locale/mscore_th.ts b/share/locale/mscore_th.ts index 0d2ab20b34a8..c0057c4e5738 100644 --- a/share/locale/mscore_th.ts +++ b/share/locale/mscore_th.ts @@ -143,10 +143,6 @@ p, li { white-space: pre-wrap; } Remove Score - - score list - - move current score down in list @@ -167,18 +163,6 @@ p, li { white-space: pre-wrap; } Add Score - - path to new score you want to add - - - - open file manager - - - - ... - ... - create new album @@ -211,6 +195,18 @@ p, li { white-space: pre-wrap; } Join Scores + + Load + โหลด + + + MuseScore: Add Score + + + + MuseScore: Load Album + + ArticulationBase @@ -1168,15 +1164,15 @@ spatium unit เล็ก - showCourtesyClef + Hide courtesy clef - Hide courtesy clef + Show courtesy clef - Show courtesy clef + showCourtesy @@ -1201,14 +1197,14 @@ spatium unit Drum Tools - - Drumset - - Drums กลอง + + Edit Drumset + + DrumrollEditor @@ -2786,18 +2782,10 @@ spatium unit Time sig. left margin ขอบเครื่องหายจังหวะซ้าย - - Clef-key distance - ระยะห่างกุญแจและจังหวะ - Clef-barline distance ระยะห่างกุญแจและเส้นกั้น - - Begin repeat left margin - ขอบเริ่มซ้ำซ้าย - Show repeat bar tips ("winged" repeats) แสดงเคล็ดลับเส้นเล่นซ้ำ (การซ้ำ "ติดปีก") @@ -3194,6 +3182,10 @@ p, li { white-space: pre-wrap; } Max. System distance + + Clef/Key right margin + + EditTempoBase @@ -3571,6 +3563,28 @@ spatium unit Down ลง + + Offset X: + + + + sp + spatium unit +---------- +spatium unit + sp + + + Offset Y: + + + + + InspectorClef + + Show Courtesy Clef + + InspectorElement @@ -3710,6 +3724,36 @@ spatium unit % + + InspectorKeySig + + Show Courtesy Time Signature + + + + Show Naturals + + + + + InspectorLasso + + Form + ฟอร์ม + + + Lasso + + + + Position: + + + + Size + + + InspectorNote @@ -3954,6 +3998,13 @@ spatium unit sp + + InspectorTimeSig + + Show Courtesy Time Signature + + + InspectorVBox @@ -5032,10 +5083,6 @@ Would you like to locate %2 now? Concert Pitch ระดับเสียงสังคีต - - Search - ค้นหา - MuseScore MuseScore @@ -5198,24 +5245,6 @@ before closing? &About เ&กี่ยวกับ - - MuseScore handbook not found at: - - สามารถหาคู่มือ MuseScore ได้ที่: - - - - - -From the "Help" menu try choosing "Online Handbook" instead. - - -จากเมนู "วิธีใช้" ลองเลือก "คู่มือออนไลน์" แทน - - - MuseScore: Open Help - MuseScore: เปิดวิธีใช้ - no score ไม่มีบทเพลง @@ -5336,27 +5365,10 @@ Restore session? Varied coda โคดาแปรผัน - - Script -%1 -is incompatible with current interface - - - - MuseScore is too old to run script -%1 - - Bar %1 Beat %2.%3 - - Error loading plugin -"%1" line %2: -%3 - - MuseScore: Load error @@ -5966,6 +5978,30 @@ please choose a different name: Report a bug + + MuseScore: Load Plugin + + + + MuseScore Plugin (*.qml);;All Files (*) + + + + MuseScore: Save Plugin + + + + MuseScore Plugin File (*.qml) + + + + &Plugins + + + + Find + + MyWebView @@ -6571,31 +6607,106 @@ please choose a different name: 100% - Straight - ตรง + master volume + - Swing - เหวี่ยง + Vol. + short text for volume slider + - Shuffle - เล่นสลับ + Tmp. + short text for tempo slider + + + + PluginCreator - master volume + File Operations + ปฏิบัติการแฟ้ม + + + Edit Operations - Vol. - short text for volume slider + MuseScore Plugin Editor - Tmp. - short text for tempo slider + MuseScore + MuseScore + + + Plugin "%1" has changes +save before closing? + + + + untitled + + + + Manual + + + + + PluginCreatorBase + + MainWindow + + + + Run + + + + Stop + + + + File + + + + Help + + + + Edit + + + + New + สร้างใหม่ + + + Open + + + + Save + บันทึก + + + Manual + + + + Undo + + + + Redo + + Quit + ออก + PreferenceDialog @@ -6631,14 +6742,6 @@ please choose a different name: Choose Default Style for Parts - - load - - - - Plugin Path - - Choose Scores Directory @@ -6718,10 +6821,6 @@ please choose a different name: Paths เส้นทาง - - Instrument List: - รายการเครื่องดนตรี: - Windows หน้าต่าง @@ -7006,10 +7105,6 @@ please choose a different name: dark - - light - - use native file dialogs @@ -7278,6 +7373,34 @@ please choose a different name: Character Set: + + Instrument List2: + + + + Instrument List1: + + + + Name: + ชื่อ: + + + Path: + + + + Version: + + + + Load + โหลด + + + Define Shortcut + + Properties @@ -7339,14 +7462,6 @@ please choose a different name: MuseScore: load Style failed: MuseScore: การโหลดรูปแบบล้มเหลว: - - MuseScore - MuseScore - - - reading file < - กำลังอ่านแฟ้ม < - MuseScore: invalid command MuseScore: คำสั่งที่ไม่มีอยู่จริง @@ -7359,10 +7474,6 @@ please choose a different name: MuseScore: Load languages failed: - - MuseScore: register script plugin: - - MuseScore: Import GuitarPro @@ -7418,17 +7529,13 @@ failed: MuseScore: Save File - - > failed: - - Load failed: - &Quit - + Untitled + ไม่มีชื่อ @@ -7791,15 +7898,19 @@ cannot split tuplet - Tick: + Bar - Bar + Beat - Beat + tick: + + + + rTick: @@ -7957,20 +8068,20 @@ Sequencer will be disabled. SlurPropertyBase - Volta Properties + Slur Properties - Slur Properties + Solid - solid - ทึบ + Dotted + - dotted - + Dashed + ประ @@ -8648,6 +8759,10 @@ altera styled + + layoutToParentWidth + + TextEditor @@ -8963,6 +9078,14 @@ altera Text ข้อความ + + Foreground Color: + + + + Background Color: + + TextStyleDialog @@ -9192,6 +9315,34 @@ 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;">Hint: you can also add or remove measures after creation of the score.</p></body></html> + + 1 + 1 + + + 2 + 2 + + + 4 + 4 + + + 8 + 8 + + + 16 + 16 + + + 32 + 32 + + + 64 + 64 + TransposeDialogBase @@ -9627,10 +9778,6 @@ p, li { white-space: pre-wrap; } action - - Local &Handbook... - - Save a Copy... @@ -9899,46 +10046,6 @@ p, li { white-space: pre-wrap; } Reset Beam Mode - - up+shift+ctrl - - - - down+shift+ctrl - - - - left+ctrl - - - - left+shift - - - - right+shift - - - - right+ctrl+shift - - - - shift+home - - - - shift+end - - - - ctrl+shift+home - - - - ctrl+shift+end - - Delete Selected Measures @@ -10039,22 +10146,10 @@ p, li { white-space: pre-wrap; } Quit ออก - - Zoom Canvas - ขยายพื้นที่ - Lyrics เนื้อเพลง - - Tempo... - - - - Tempo - จังหวะ - Metronome เครื่องจับจังหวะ @@ -10067,10 +10162,6 @@ p, li { white-space: pre-wrap; } Staff Text - - Frame Text - - Title หัวข้อ @@ -10163,10 +10254,6 @@ p, li { white-space: pre-wrap; } Show Frames - - Search - ค้นหา - Zoom In @@ -10199,10 +10286,6 @@ p, li { white-space: pre-wrap; } Repeat selection - - Follow Song - - Local handbook @@ -10339,10 +10422,6 @@ p, li { white-space: pre-wrap; } Trill - - More stretch - - Less stretch @@ -10355,10 +10434,6 @@ p, li { white-space: pre-wrap; } Flip direction - - Flip Direction - - Pitch up @@ -10443,38 +10518,18 @@ p, li { white-space: pre-wrap; } Previous chord - - Previous Chord - - Previous measure - - Previous Measure - - Next chord - - Next Chord - - Next measure - - Next Measure - - - - Delete selected measures - - Append measures @@ -10515,10 +10570,6 @@ p, li { white-space: pre-wrap; } Save style - - Select all - - Delete ลบ @@ -10535,54 +10586,10 @@ p, li { white-space: pre-wrap; } Delete element and duration - - &Open... - - - - &Save - - - - Save &As... - - - - &Close - - File new - - &New... - - - - &Print... - - - - &Undo - - - - &Redo - - - - Cu&t - - - - &Copy - - - - &Paste - - Insert note A @@ -10739,62 +10746,26 @@ p, li { white-space: pre-wrap; } Timewise delete - - Append one measure - - Append One Measure - - Insert one measure - - Insert One Measure - - Insert horizontal frame - - - - Insert text frame - - Insert Text Frame - - Append text frame - - Append Text Frame - - Insert fret diagram frame - - Insert Fret Diagram Frame - - Insert vertical frame - - - - Append horizontal frame - - - - Append vertical frame - - Other tuplets @@ -10971,22 +10942,10 @@ p, li { white-space: pre-wrap; } Feathered beam, slower - - Feathered Beam, Slower - - Feathered beam, faster - - Feathered Beam, Faster - - - - Play panel - - Transport toolbar @@ -10995,10 +10954,6 @@ p, li { white-space: pre-wrap; } Note input toolbar - - Status bar - - Zoom canvas @@ -11011,10 +10966,6 @@ p, li { white-space: pre-wrap; } Add staff text - - Add text - - Add title text @@ -11063,82 +11014,26 @@ p, li { white-space: pre-wrap; } Player seek to end - - Select A&ll - - &Transpose... - - Violin clef - - Violin Clef - - Bass 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 - - Toggle Section Break - - Edit element - - Show inspector @@ -11147,18 +11042,6 @@ p, li { white-space: pre-wrap; } Reset measure stretch - - Show invisible - - - - Show frames - - - - Enable script debugger - - Note entry: whole rest @@ -11195,14 +11078,6 @@ p, li { white-space: pre-wrap; } Backspace - - Zoom in - - - - Zoom out - - Mirror note head @@ -11239,10 +11114,6 @@ p, li { white-space: pre-wrap; } Display documents stacked - - Show score image - - Show OMR image @@ -11263,18 +11134,6 @@ p, li { white-space: pre-wrap; } Toggle foto mode - - Full screen - - - - F&ull Screen - - - - F&ull screen - - Enable horizontal raster @@ -11287,10 +11146,6 @@ p, li { white-space: pre-wrap; } Configure raster - - Re-pitch mode - - Re-Pitch Mode @@ -11319,10 +11174,6 @@ p, li { white-space: pre-wrap; } 128th note - - Show unprintable - - Split Measure @@ -11359,18 +11210,10 @@ p, li { white-space: pre-wrap; } Reset user settings - - Show debugger - - Piano Keyboard - - Show Inspector - - Save Selection @@ -11388,303 +11231,323 @@ p, li { white-space: pre-wrap; } - &Export... + Respell pitches - &Instruments... + Grace: 8nd after - &Note Input + Pan score while playing on/off - Respell pitches + Pan + ภาพกว้าง + + + Show Unprintable - &Respell Pitches + Show Page Margins - Add &More Stretch + Manage parts - Add &Less Stretch + Inspector - Reset &Beam Mode + Show OMR Panel - Grace: 8nd after + OmrPanel - Pan score while playing on/off + toggle metronome - Pan - ภาพกว้าง + Figured Bass + - &Load Style... + Next Score - &Save Style... + Previous Score - Save style as default + Transpose Up - Save Style As &Default... + Transpose Down - &Concert Pitch + Show master palette - &Reset + Master Palette... - De&bugger + Insert Measure - Reset &Stretch + Toggle View Mode - Show Unprintable + Export Parts - Show Page Margins + Export Parts... - &Search + Save a copy of the score's parts in various formats - &General... + Add marcato - &Text... + Marcato - &Chords... + Select Section - Parts + Note duration: double whole - Par&ts... + Double whole note - Manage parts + Whole note - Additional &Media... + Half note - &Page Settings... + Quarter note - &Album... + 8th note - Inspector + 16th note - Show OMR Panel + 32nd note - OmrPanel + 64th note - Show OMR PAnel + Edit score info - metronome + Insert Special Characters... - toggle metronome + Layers - Figured Bass + MuseScore Connect - Next Score + next syllable - Previous Score + previous syllable - Transpose Up + toggle visibility - Transpose Down + set visible - Show master palette + set unvisible - Master Palette... + Local Handbook... - Insert Measure + Open... - Toggle View Mode + Save + บันทึก + + + Save As... - Export Parts + Export... - Export Parts... + Close + ปิด + + + New... - Save a copy of the score's parts in various formats + Print... - Add marcato + Instruments... - Marcato + Add More Stretch - Select Section + Add Less Stretch - select section + Tempo Marking... - Note duration: double whole + Tempo Marking - Double whole note + Text + ข้อความ + + + Add Frame Text - Whole note + Load Style... - Half note + Save Style... - Quarter note + Save Style As Default... - 8th note + Select All - 16th note + Concert Pitch + ระดับเสียงสังคีต + + + Info... - 32nd note + Reset - 64th note + Debugger - Edit score info + Reset Stretch - &Info... + Insert Special Characters - Insert special characters + Find - Insert Special Characters... + General... - Enable Script Debugger + Text... - Layers + Chords... - &Layers... + Parts... - MuseScore Connect + Full Screen - next syllable + Additional Media... - previous syllable + Page Settings... - toggle visibility + Album... - set visible + Layers... - set unvisible + Plugin Creator diff --git a/share/locale/mscore_tr.ts b/share/locale/mscore_tr.ts index d306b03dc2c6..f783c8cdee81 100644 --- a/share/locale/mscore_tr.ts +++ b/share/locale/mscore_tr.ts @@ -134,10 +134,6 @@ p, li { white-space: pre-wrap; } Remove Score - - score list - - move current score down in list @@ -158,18 +154,6 @@ p, li { white-space: pre-wrap; } Add Score - - path to new score you want to add - - - - open file manager - - - - ... - ... - create new album @@ -202,6 +186,18 @@ p, li { white-space: pre-wrap; } Join Scores + + Load + Yükle + + + MuseScore: Add Score + + + + MuseScore: Load Album + + ArticulationBase @@ -1159,15 +1155,15 @@ spatium unit ufak - showCourtesyClef + Hide courtesy clef - Hide courtesy clef + Show courtesy clef - Show courtesy clef + showCourtesy @@ -1192,14 +1188,14 @@ spatium unit Drum Tools - - Drumset - - Drums Davullar + + Edit Drumset + + DrumrollEditor @@ -2777,18 +2773,10 @@ spatium unit Time sig. left margin - - Clef-key distance - - Clef-barline distance - - Begin repeat left margin - - Show repeat bar tips ("winged" repeats) @@ -3185,6 +3173,10 @@ p, li { white-space: pre-wrap; } Max. System distance + + Clef/Key right margin + + EditTempoBase @@ -3562,6 +3554,28 @@ spatium unit Down Aşağı + + Offset X: + + + + sp + spatium unit +---------- +spatium unit + + + + Offset Y: + + + + + InspectorClef + + Show Courtesy Clef + + InspectorElement @@ -3701,6 +3715,36 @@ spatium unit % + + InspectorKeySig + + Show Courtesy Time Signature + + + + Show Naturals + + + + + InspectorLasso + + Form + Form + + + Lasso + + + + Position: + + + + Size + + + InspectorNote @@ -3945,6 +3989,13 @@ spatium unit + + InspectorTimeSig + + Show Courtesy Time Signature + + + InspectorVBox @@ -5161,10 +5212,6 @@ kaydetmek ister misiniz? &About &Hakkında - - MuseScore: Open Help - MuseScore: Yardımı Aç - no score nota yok @@ -5213,25 +5260,10 @@ kaydetmek ister misiniz? End-Start Repeat - - Search - - Go To: - - MuseScore handbook not found at: - - - - - - -From the "Help" menu try choosing "Online Handbook" instead. - - Grace Notes @@ -5326,27 +5358,10 @@ Restore session? Varied coda - - Script -%1 -is incompatible with current interface - - - - MuseScore is too old to run script -%1 - - Bar %1 Beat %2.%3 - - Error loading plugin -"%1" line %2: -%3 - - MuseScore: Load error @@ -5956,6 +5971,30 @@ please choose a different name: Report a bug + + MuseScore: Load Plugin + + + + MuseScore Plugin (*.qml);;All Files (*) + + + + MuseScore: Save Plugin + + + + MuseScore Plugin File (*.qml) + + + + &Plugins + + + + Find + + MyWebView @@ -6561,31 +6600,106 @@ please choose a different name: 100% - Straight + master volume - Swing + Vol. + short text for volume slider - Shuffle + Tmp. + short text for tempo slider + + + PluginCreator - master volume + File Operations + Dosya İşlemleri + + + Edit Operations - Vol. - short text for volume slider + MuseScore Plugin Editor - Tmp. - short text for tempo slider + MuseScore + MuseScore + + + Plugin "%1" has changes +save before closing? + + + + untitled + + + + Manual + + + + + PluginCreatorBase + + MainWindow + + + + Run + + + + Stop + + + + File + + + + Help + + + + Edit + + + + New + Yeni + + + Open + + + + Save + Kaydet + + + Manual + + + + Undo + + + + Redo + + Quit + Çıkış + PreferenceDialog @@ -6621,14 +6735,6 @@ please choose a different name: Choose Default Style for Parts - - load - - - - Plugin Path - - Choose Scores Directory @@ -6704,10 +6810,6 @@ please choose a different name: Paths Yollar - - Instrument List: - Enstrüman Listesi: - Windows Pencereler @@ -6996,10 +7098,6 @@ please choose a different name: dark - - light - - use native file dialogs @@ -7268,6 +7366,34 @@ please choose a different name: Character Set: + + Instrument List2: + + + + Instrument List1: + + + + Name: + İsim: + + + Path: + + + + Version: + + + + Load + Yükle + + + Define Shortcut + + Properties @@ -7325,14 +7451,6 @@ please choose a different name: MuseScore: invalid command MuseScore: geçersiz komut - - MuseScore - MuseScore - - - reading file < - - MuseScore: Import Capella @@ -7349,10 +7467,6 @@ please choose a different name: MuseScore: Load languages failed: - - MuseScore: register script plugin: - - MuseScore: Import GuitarPro @@ -7408,17 +7522,13 @@ yapılamadı: MuseScore: Save File - - > failed: - - Load failed: - &Quit - + Untitled + Başlıksız @@ -7783,10 +7893,6 @@ cannot split tuplet Ticks - - Tick: - Gürlük: - Bar @@ -7795,6 +7901,14 @@ cannot split tuplet Beat + + tick: + + + + rTick: + + SelectDialog @@ -7950,19 +8064,19 @@ Sequencer will be disabled. SlurPropertyBase - Volta Properties - Dolap Özellikleri + Slur Properties + - Slur Properties + Solid - solid - tek parça + Dotted + - dotted + Dashed @@ -8641,6 +8755,10 @@ altera styled + + layoutToParentWidth + + TextEditor @@ -8956,6 +9074,14 @@ altera Text Metin + + Foreground Color: + + + + Background Color: + + TextStyleDialog @@ -9185,6 +9311,34 @@ 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;">Hint: you can also add or remove measures after creation of the score.</p></body></html> <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:9pt; 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;">İpucu: dilediğiniz taktirde bu aşamadan sonra da ölçü ekleyip silebilirsiniz.</p></body></html> + + 1 + 1 + + + 2 + 2 + + + 4 + 4 + + + 8 + 8 + + + 16 + 16 + + + 32 + 32 + + + 64 + 64 + TransposeDialogBase @@ -9620,10 +9774,6 @@ p, li { white-space: pre-wrap; } action - - Local &Handbook... - - Save a Copy... @@ -9892,46 +10042,6 @@ p, li { white-space: pre-wrap; } Reset Beam Mode - - up+shift+ctrl - - - - down+shift+ctrl - - - - left+ctrl - - - - left+shift - - - - right+shift - - - - right+ctrl+shift - - - - shift+home - - - - shift+end - - - - ctrl+shift+home - - - - ctrl+shift+end - - Delete Selected Measures @@ -10032,22 +10142,10 @@ p, li { white-space: pre-wrap; } Quit Çıkış - - Zoom Canvas - Tuvali Mesafele - Lyrics Sözler - - Tempo... - - - - Tempo - Tempo - Metronome Metronom @@ -10060,10 +10158,6 @@ p, li { white-space: pre-wrap; } Staff Text - - Frame Text - - Title Başlık @@ -10156,10 +10250,6 @@ p, li { white-space: pre-wrap; } Show Frames - - Search - - Zoom In @@ -10192,10 +10282,6 @@ p, li { white-space: pre-wrap; } Repeat selection - - Follow Song - - Local handbook @@ -10332,10 +10418,6 @@ p, li { white-space: pre-wrap; } Trill - - More stretch - - Less stretch @@ -10348,10 +10430,6 @@ p, li { white-space: pre-wrap; } Flip direction - - Flip Direction - - Pitch up @@ -10436,38 +10514,18 @@ p, li { white-space: pre-wrap; } Previous chord - - Previous Chord - - Previous measure - - Previous Measure - - Next chord - - Next Chord - - Next measure - - Next Measure - - - - Delete selected measures - - Append measures @@ -10508,10 +10566,6 @@ p, li { white-space: pre-wrap; } Save style - - Select all - - Delete Sil @@ -10528,54 +10582,10 @@ p, li { white-space: pre-wrap; } Delete element and duration - - &Open... - - - - &Save - - - - Save &As... - - - - &Close - - File new - - &New... - - - - &Print... - - - - &Undo - - - - &Redo - - - - Cu&t - - - - &Copy - - - - &Paste - - Insert note A @@ -10732,62 +10742,26 @@ p, li { white-space: pre-wrap; } Timewise delete - - Append one measure - - Append One Measure - - Insert one measure - - Insert One Measure - - Insert horizontal frame - - - - Insert text frame - - Insert Text Frame - - Append text frame - - Append Text Frame - - Insert fret diagram frame - - Insert Fret Diagram Frame - - Insert vertical frame - - - - Append horizontal frame - - - - Append vertical frame - - Other tuplets @@ -10964,22 +10938,10 @@ p, li { white-space: pre-wrap; } Feathered beam, slower - - Feathered Beam, Slower - - Feathered beam, faster - - Feathered Beam, Faster - - - - Play panel - - Transport toolbar @@ -10988,10 +10950,6 @@ p, li { white-space: pre-wrap; } Note input toolbar - - Status bar - - Zoom canvas @@ -11004,10 +10962,6 @@ p, li { white-space: pre-wrap; } Add staff text - - Add text - - Add title text @@ -11056,82 +11010,26 @@ p, li { white-space: pre-wrap; } Player seek to end - - Select A&ll - - &Transpose... - - Violin clef - - Violin Clef - - Bass 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 - - Toggle Section Break - - Edit element - - Show inspector @@ -11140,18 +11038,6 @@ p, li { white-space: pre-wrap; } Reset measure stretch - - Show invisible - - - - Show frames - - - - Enable script debugger - - Note entry: whole rest @@ -11188,14 +11074,6 @@ p, li { white-space: pre-wrap; } Backspace - - Zoom in - - - - Zoom out - - Mirror note head @@ -11232,10 +11110,6 @@ p, li { white-space: pre-wrap; } Display documents stacked - - Show score image - - Show OMR image @@ -11256,18 +11130,6 @@ p, li { white-space: pre-wrap; } Toggle foto mode - - Full screen - - - - F&ull Screen - - - - F&ull screen - - Enable horizontal raster @@ -11280,10 +11142,6 @@ p, li { white-space: pre-wrap; } Configure raster - - Re-pitch mode - - Re-Pitch Mode @@ -11312,10 +11170,6 @@ p, li { white-space: pre-wrap; } 128th note - - Show unprintable - - Split Measure @@ -11352,18 +11206,10 @@ p, li { white-space: pre-wrap; } Reset user settings - - Show debugger - - Piano Keyboard - - Show Inspector - - Save Selection @@ -11381,303 +11227,323 @@ p, li { white-space: pre-wrap; } - &Export... + Respell pitches - &Instruments... + Grace: 8nd after - &Note Input + Pan score while playing on/off - Respell pitches + Pan + Gen.Açı + + + Show Unprintable + + + + Show Page Margins - &Respell Pitches + Manage parts - Add &More Stretch + Inspector - Add &Less Stretch + Show OMR Panel - Reset &Beam Mode + OmrPanel - Grace: 8nd after + toggle metronome - Pan score while playing on/off + Figured Bass - Pan - Gen.Açı + Next Score + - &Load Style... + Previous Score - &Save Style... + Transpose Up - Save style as default + Transpose Down - Save Style As &Default... + Show master palette - &Concert Pitch + Master Palette... - &Reset + Insert Measure - De&bugger + Toggle View Mode - Reset &Stretch + Export Parts - Show Unprintable + Export Parts... - Show Page Margins + Save a copy of the score's parts in various formats - &Search + Add marcato - &General... + Marcato - &Text... + Select Section - &Chords... + Note duration: double whole - Parts + Double whole note - Par&ts... + Whole note - Manage parts + Half note - Additional &Media... + Quarter note - &Page Settings... + 8th note - &Album... + 16th note - Inspector + 32nd note - Show OMR Panel + 64th note - OmrPanel + Edit score info - Show OMR PAnel + Insert Special Characters... - metronome + Layers - toggle metronome + MuseScore Connect - Figured Bass + next syllable - Next Score + previous syllable - Previous Score + toggle visibility - Transpose Up + set visible - Transpose Down + set unvisible - Show master palette + Local Handbook... - Master Palette... + Open... - Insert Measure + Save + Kaydet + + + Save As... - Toggle View Mode + Export... - Export Parts + Close - Export Parts... + New... - Save a copy of the score's parts in various formats + Print... - Add marcato + Instruments... - Marcato + Add More Stretch - Select Section + Add Less Stretch - select section + Tempo Marking... - Note duration: double whole + Tempo Marking - Double whole note + Text + Metin + + + Add Frame Text - Whole note + Load Style... - Half note + Save Style... - Quarter note + Save Style As Default... - 8th note + Select All - 16th note + Concert Pitch + Konser Perdesi + + + Info... - 32nd note + Reset - 64th note + Debugger - Edit score info + Reset Stretch - &Info... + Insert Special Characters - Insert special characters + Find - Insert Special Characters... + General... - Enable Script Debugger + Text... - Layers + Chords... - &Layers... + Parts... - MuseScore Connect + Full Screen - next syllable + Additional Media... - previous syllable + Page Settings... - toggle visibility + Album... - set visible + Layers... - set unvisible + Plugin Creator diff --git a/share/locale/mscore_uk.ts b/share/locale/mscore_uk.ts index 111ac4229abd..125f994ffc83 100644 --- a/share/locale/mscore_uk.ts +++ b/share/locale/mscore_uk.ts @@ -143,10 +143,6 @@ p, li { white-space: pre-wrap; } Remove Score - - score list - - move current score down in list @@ -167,18 +163,6 @@ p, li { white-space: pre-wrap; } Add Score - - path to new score you want to add - - - - open file manager - - - - ... - - create new album @@ -211,6 +195,18 @@ p, li { white-space: pre-wrap; } Join Scores + + Load + Завантажити + + + MuseScore: Add Score + + + + MuseScore: Load Album + + ArticulationBase @@ -1168,15 +1164,15 @@ spatium unit маленька головка ноти - showCourtesyClef + Hide courtesy clef - Hide courtesy clef + Show courtesy clef - Show courtesy clef + showCourtesy @@ -1201,14 +1197,14 @@ spatium unit Drum Tools - - Drumset - - Drums Ударні + + Edit Drumset + + DrumrollEditor @@ -2787,18 +2783,10 @@ spatium unit Time sig. left margin Поле зліва від тактового розміру - - Clef-key distance - Проміжок після приключевого знаку - Clef-barline distance Відстань від ключа до тактової риски - - Begin repeat left margin - Поле зліва від початку повторення - Show repeat bar tips ("winged" repeats) Показати репризи з підказками („крилаті“ повтори) @@ -3195,6 +3183,10 @@ p, li { white-space: pre-wrap; } Max. System distance + + Clef/Key right margin + + EditTempoBase @@ -3572,6 +3564,28 @@ spatium unit Down Вниз + + Offset X: + + + + sp + spatium unit +---------- +spatium unit + пр + + + Offset Y: + + + + + InspectorClef + + Show Courtesy Clef + + InspectorElement @@ -3711,6 +3725,36 @@ spatium unit % + + InspectorKeySig + + Show Courtesy Time Signature + + + + Show Naturals + + + + + InspectorLasso + + Form + Форма + + + Lasso + + + + Position: + + + + Size + + + InspectorNote @@ -3955,6 +3999,13 @@ spatium unit пр + + InspectorTimeSig + + Show Courtesy Time Signature + + + InspectorVBox @@ -5070,10 +5121,6 @@ Would you like to locate %2 now? &About Про &програму - - MuseScore: Open Help - MuseScore: відкрити файл довідки - MuseScore: Load Score MuseScore: вибір партитури @@ -5166,10 +5213,6 @@ Would you like to locate %2 now? Concert Pitch Концертний стрій - - Search - Пошук - Save changes to the score "%1" before closing? @@ -5232,20 +5275,6 @@ before closing? Grace Notes Форшлаґи - - MuseScore handbook not found at: - - Підручник з MuseScore не знайдено за адресою: - - - - - -From the "Help" menu try choosing "Online Handbook" instead. - - -З меню „Довідка“ спробуйте натомість вибрати „Підручник в Інтернеті“. - Key Signatures Тональності @@ -5338,29 +5367,10 @@ Restore session? Varied coda Змінна кода - - Script -%1 -is incompatible with current interface - - - - MuseScore is too old to run script -%1 - - Bar %1 Beat %2.%3 - - Error loading plugin -"%1" line %2: -%3 - Помилка при завантаженні плаґіна -"%1" рядок %2: -%3 - MuseScore: Load error @@ -5970,6 +5980,30 @@ please choose a different name: Report a bug + + MuseScore: Load Plugin + + + + MuseScore Plugin (*.qml);;All Files (*) + + + + MuseScore: Save Plugin + + + + MuseScore Plugin File (*.qml) + + + + &Plugins + + + + Find + + MyWebView @@ -6574,18 +6608,6 @@ please choose a different name: relative tempo відносний темп - - Straight - Прямо - - - Swing - Свінґ - - - Shuffle - Випадково - master volume загальна гучність @@ -6601,6 +6623,93 @@ please choose a different name: + + PluginCreator + + File Operations + Операції з файлами + + + Edit Operations + + + + MuseScore Plugin Editor + + + + MuseScore + MuseScore + + + Plugin "%1" has changes +save before closing? + + + + untitled + + + + Manual + + + + + PluginCreatorBase + + MainWindow + + + + Run + + + + Stop + + + + File + + + + Help + + + + Edit + + + + New + Нова + + + Open + + + + Save + Зберегти + + + Manual + + + + Undo + Скасувати останню дію + + + Redo + Повторити відмінене + + + Quit + Вийти + + PreferenceDialog @@ -6635,14 +6744,6 @@ please choose a different name: Choose Default Style for Parts - - load - - - - Plugin Path - - Choose Scores Directory @@ -6854,10 +6955,6 @@ please choose a different name: 22050 22050 - - Instrument List: - Перелік інструментів: - Note Entry Введення нот @@ -7010,10 +7107,6 @@ please choose a different name: dark - - light - - use native file dialogs @@ -7282,6 +7375,34 @@ please choose a different name: Character Set: + + Instrument List2: + + + + Instrument List1: + + + + Name: + І’мя: + + + Path: + + + + Version: + + + + Load + Завантажити + + + Define Shortcut + + Properties @@ -7343,14 +7464,6 @@ please choose a different name: MuseScore: Load Style failed: MuseScore: не вдалося завантажити стиль: - - MuseScore - MuseScore - - - reading file < - читання файлу < - MuseScore: invalid command MuseScore: некоректна команда @@ -7363,10 +7476,6 @@ please choose a different name: MuseScore: Load languages failed: MuseScore: завантажити мови не вдалося: - - MuseScore: register script plugin: - - MuseScore: Import GuitarPro @@ -7422,17 +7531,13 @@ failed: MuseScore: Save File MuseScore: збереження файлу - - > failed: - - Load failed: Завантажити не вдалося: - &Quit - + Untitled + Без назви @@ -7797,10 +7902,6 @@ cannot split tuplet Ticks - - Tick: - Тік: - Bar @@ -7809,6 +7910,14 @@ cannot split tuplet Beat + + tick: + + + + rTick: + + SelectDialog @@ -7963,22 +8072,22 @@ Sequencer will be disabled. SlurPropertyBase - - Volta Properties - Властивості вольти - Slur Properties Властивості ліги - solid - ціла + Solid + - dotted + Dotted + + Dashed + Пунктирна тактова риска + SlurSegment @@ -8658,6 +8767,10 @@ altera styled + + layoutToParentWidth + + TextEditor @@ -8973,6 +9086,14 @@ altera Text Текст + + Foreground Color: + + + + Background Color: + + TextStyleDialog @@ -9205,6 +9326,34 @@ p, li { white-space: pre-wrap; } Time Signature Тактовий розмір + + 1 + 1 + + + 2 + 2 + + + 4 + 4 + + + 8 + 8 + + + 16 + 16 + + + 32 + 32 + + + 64 + 64 + TransposeDialogBase @@ -9640,10 +9789,6 @@ p, li { white-space: pre-wrap; } action - - Local &Handbook... - &Підручник локально… - Save a Copy... Зберегти копію... @@ -9912,46 +10057,6 @@ p, li { white-space: pre-wrap; } Reset Beam Mode Скидання режиму групування - - up+shift+ctrl - Вверх+Shift+Ctrl - - - down+shift+ctrl - Вниз+Shift+Ctrl - - - left+ctrl - Наліво+Ctrl - - - left+shift - Наліво+Shift - - - right+shift - Направо+Shift - - - right+ctrl+shift - Направо+Ctrl+Shift - - - shift+home - Shift+Home - - - shift+end - Shift+End - - - ctrl+shift+home - Ctrl+Shift+Home - - - ctrl+shift+end - Ctrl+Shift+End - Delete Selected Measures Вилучити позначені такти @@ -10052,22 +10157,10 @@ p, li { white-space: pre-wrap; } Quit Вийти - - Zoom Canvas - Наближати полотно - Lyrics Текст пісні - - Tempo... - Темп... - - - Tempo - Темп - Metronome Метроном @@ -10080,10 +10173,6 @@ p, li { white-space: pre-wrap; } Staff Text Текст нотного стану - - Frame Text - Текст рамки - Title Заголовок @@ -10176,10 +10265,6 @@ p, li { white-space: pre-wrap; } Show Frames Показувати рамки - - Search - Пошук - Zoom In Збільшити @@ -10212,10 +10297,6 @@ p, li { white-space: pre-wrap; } Repeat selection Повторити вибране - - Follow Song - Слідувати за піснею/треком - Local handbook Підручник локально @@ -10352,10 +10433,6 @@ p, li { white-space: pre-wrap; } Trill Трель - - More stretch - Збільшити розтягнення - Less stretch Зменшити розтягнення @@ -10368,10 +10445,6 @@ p, li { white-space: pre-wrap; } Flip direction Змінити напрям - - Flip Direction - Змінити напрям - Pitch up Підвищити висоту ноти @@ -10456,38 +10529,18 @@ p, li { white-space: pre-wrap; } Previous chord Попередній акорд - - Previous Chord - Попередній акорд - Previous measure Попередній такт - - Previous Measure - Попередній такт - Next chord Наступний акорд - - Next Chord - Наступний акорд - Next measure Наступний такт - - Next Measure - Наступний такт - - - Delete selected measures - Вилучити позначені такти - Append measures Додати такти наприкінці @@ -10528,10 +10581,6 @@ p, li { white-space: pre-wrap; } Save style Зберегти стиль - - Select all - Позначити усе - Delete Вилучити @@ -10548,54 +10597,10 @@ p, li { white-space: pre-wrap; } Delete element and duration Вилучити елемент та тривалість - - &Open... - - - - &Save - - - - Save &As... - - - - &Close - - File new - - &New... - - - - &Print... - - - - &Undo - - - - &Redo - - - - Cu&t - - - - &Copy - - - - &Paste - - Insert note A @@ -10752,62 +10757,26 @@ p, li { white-space: pre-wrap; } Timewise delete - - Append one measure - - Append One Measure - - Insert one measure - - Insert One Measure - - Insert horizontal frame - - - - Insert text frame - - Insert Text Frame - - Append text frame - - Append Text Frame - - Insert fret diagram frame - - Insert Fret Diagram Frame - - Insert vertical frame - - - - Append horizontal frame - - - - Append vertical frame - - Other tuplets @@ -10984,22 +10953,10 @@ p, li { white-space: pre-wrap; } Feathered beam, slower - - Feathered Beam, Slower - - Feathered beam, faster - - Feathered Beam, Faster - - - - Play panel - - Transport toolbar @@ -11008,10 +10965,6 @@ p, li { white-space: pre-wrap; } Note input toolbar - - Status bar - - Zoom canvas @@ -11024,10 +10977,6 @@ p, li { white-space: pre-wrap; } Add staff text - - Add text - - Add title text @@ -11076,82 +11025,26 @@ p, li { white-space: pre-wrap; } Player seek to end - - Select A&ll - - &Transpose... - - Violin clef - - Violin Clef - - Bass 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 - - Toggle Section Break - - Edit element - - Show inspector @@ -11160,18 +11053,6 @@ p, li { white-space: pre-wrap; } Reset measure stretch - - Show invisible - - - - Show frames - - - - Enable script debugger - - Note entry: whole rest @@ -11208,14 +11089,6 @@ p, li { white-space: pre-wrap; } Backspace - - Zoom in - - - - Zoom out - - Mirror note head @@ -11252,10 +11125,6 @@ p, li { white-space: pre-wrap; } Display documents stacked - - Show score image - - Show OMR image @@ -11276,18 +11145,6 @@ p, li { white-space: pre-wrap; } Toggle foto mode - - Full screen - - - - F&ull Screen - - - - F&ull screen - - Enable horizontal raster @@ -11300,10 +11157,6 @@ p, li { white-space: pre-wrap; } Configure raster - - Re-pitch mode - - Re-Pitch Mode @@ -11332,10 +11185,6 @@ p, li { white-space: pre-wrap; } 128th note - - Show unprintable - - Split Measure @@ -11372,18 +11221,10 @@ p, li { white-space: pre-wrap; } Reset user settings - - Show debugger - - Piano Keyboard - - Show Inspector - - Save Selection @@ -11401,303 +11242,323 @@ p, li { white-space: pre-wrap; } - &Export... + Respell pitches - &Instruments... + Grace: 8nd after - &Note Input + Pan score while playing on/off - Respell pitches - + Pan + Пан - &Respell Pitches + Show Unprintable - Add &More Stretch + Show Page Margins - Add &Less Stretch + Manage parts - Reset &Beam Mode + Inspector + Інспектор + + + Show OMR Panel - Grace: 8nd after + OmrPanel - Pan score while playing on/off + toggle metronome - Pan - Пан + Figured Bass + - &Load Style... + Next Score - &Save Style... + Previous Score - Save style as default + Transpose Up - Save Style As &Default... + Transpose Down - &Concert Pitch + Show master palette - &Reset + Master Palette... - De&bugger + Insert Measure - Reset &Stretch + Toggle View Mode - Show Unprintable + Export Parts - Show Page Margins + Export Parts... - &Search + Save a copy of the score's parts in various formats - &General... + Add marcato - &Text... + Marcato - &Chords... + Select Section - Parts + Note duration: double whole - Par&ts... + Double whole note - Manage parts + Whole note - Additional &Media... + Half note - &Page Settings... + Quarter note - &Album... + 8th note - Inspector - Інспектор + 16th note + - Show OMR Panel + 32nd note - OmrPanel + 64th note - Show OMR PAnel + Edit score info - metronome + Insert Special Characters... - toggle metronome + Layers - Figured Bass + MuseScore Connect - Next Score + next syllable - Previous Score + previous syllable - Transpose Up + toggle visibility - Transpose Down + set visible - Show master palette + set unvisible - Master Palette... + Local Handbook... - Insert Measure + Open... - Toggle View Mode + Save + Зберегти + + + Save As... - Export Parts + Export... - Export Parts... + Close + Зачинити + + + New... - Save a copy of the score's parts in various formats + Print... - Add marcato + Instruments... - Marcato + Add More Stretch - Select Section + Add Less Stretch - select section + Tempo Marking... - Note duration: double whole + Tempo Marking - Double whole note + Text + Текст + + + Add Frame Text - Whole note + Load Style... - Half note + Save Style... - Quarter note + Save Style As Default... - 8th note + Select All - 16th note + Concert Pitch + Концертний стрій + + + Info... - 32nd note + Reset - 64th note + Debugger - Edit score info + Reset Stretch - &Info... + Insert Special Characters - Insert special characters + Find - Insert Special Characters... + General... - Enable Script Debugger + Text... - Layers + Chords... - &Layers... + Parts... - MuseScore Connect + Full Screen - next syllable + Additional Media... - previous syllable + Page Settings... - toggle visibility + Album... - set visible + Layers... - set unvisible + Plugin Creator diff --git a/share/locale/mscore_vi.ts b/share/locale/mscore_vi.ts index 45fa621f6c6d..03c3d5a2cb4a 100644 --- a/share/locale/mscore_vi.ts +++ b/share/locale/mscore_vi.ts @@ -134,10 +134,6 @@ p, li { white-space: pre-wrap; } Remove Score - - score list - - move current score down in list @@ -158,18 +154,6 @@ p, li { white-space: pre-wrap; } Add Score - - path to new score you want to add - - - - open file manager - - - - ... - - create new album @@ -202,6 +186,18 @@ p, li { white-space: pre-wrap; } Join Scores + + Load + Load + + + MuseScore: Add Score + + + + MuseScore: Load Album + + ArticulationBase @@ -1159,15 +1155,15 @@ spatium unit small - showCourtesyClef + Hide courtesy clef - Hide courtesy clef + Show courtesy clef - Show courtesy clef + showCourtesy @@ -1192,14 +1188,14 @@ spatium unit Drum Tools - - Drumset - - Drums Drums + + Edit Drumset + + DrumrollEditor @@ -2777,18 +2773,10 @@ spatium unit Time sig. left margin Time sig. left margin - - Clef-key distance - Clef-key distance - Clef-barline distance Clef-bar line distance - - Begin repeat left margin - Begin repeat left margin - Show repeat bar tips ("winged" repeats) Show repeat bar tips ("winged" repeats) @@ -3185,6 +3173,10 @@ p, li { white-space: pre-wrap; } Max. System distance + + Clef/Key right margin + + EditTempoBase @@ -3562,6 +3554,28 @@ spatium unit Down Down + + Offset X: + + + + sp + spatium unit +---------- +spatium unit + sp + + + Offset Y: + + + + + InspectorClef + + Show Courtesy Clef + + InspectorElement @@ -3701,6 +3715,36 @@ spatium unit % + + InspectorKeySig + + Show Courtesy Time Signature + + + + Show Naturals + + + + + InspectorLasso + + Form + Form + + + Lasso + + + + Position: + + + + Size + + + InspectorNote @@ -3945,6 +3989,13 @@ spatium unit sp + + InspectorTimeSig + + Show Courtesy Time Signature + + + InspectorVBox @@ -5143,10 +5194,6 @@ Would you like to locate %2 now? &About &About - - MuseScore: Open Help - MuseScore: Open Help - note entry mode note entry mode @@ -5212,28 +5259,10 @@ before closing? End-Start Repeat End-Start Repeat - - Search - Search - Go To: Go To: - - MuseScore handbook not found at: - - MuseScore handbook not found at: - - - - - -From the "Help" menu try choosing "Online Handbook" instead. - - -From the "Help" menu try choosing "Online Handbook" instead. - Grace Notes Grace Notes @@ -5328,27 +5357,10 @@ Restore session? Varied coda Varied coda - - Script -%1 -is incompatible with current interface - - - - MuseScore is too old to run script -%1 - - Bar %1 Beat %2.%3 - - Error loading plugin -"%1" line %2: -%3 - - MuseScore: Load error @@ -5958,6 +5970,30 @@ please choose a different name: Report a bug + + MuseScore: Load Plugin + + + + MuseScore Plugin (*.qml);;All Files (*) + + + + MuseScore: Save Plugin + + + + MuseScore Plugin File (*.qml) + + + + &Plugins + + + + Find + + MyWebView @@ -6562,18 +6598,6 @@ please choose a different name: 100% 100% - - Straight - Straight - - - Swing - Swing - - - Shuffle - Shuffle - master volume master volume @@ -6589,6 +6613,93 @@ please choose a different name: + + PluginCreator + + File Operations + File Operations + + + Edit Operations + + + + MuseScore Plugin Editor + + + + MuseScore + MuseScore + + + Plugin "%1" has changes +save before closing? + + + + untitled + + + + Manual + + + + + PluginCreatorBase + + MainWindow + + + + Run + + + + Stop + + + + File + + + + Help + + + + Edit + + + + New + New + + + Open + + + + Save + Save + + + Manual + + + + Undo + + + + Redo + + + + Quit + Quit + + PreferenceDialog @@ -6623,14 +6734,6 @@ please choose a different name: Choose Default Style for Parts - - load - - - - Plugin Path - - Choose Scores Directory @@ -6694,10 +6797,6 @@ please choose a different name: Paths Paths - - Instrument List: - Instrument List: - Windows Windows @@ -6998,10 +7097,6 @@ please choose a different name: dark - - light - - use native file dialogs @@ -7270,6 +7365,34 @@ please choose a different name: Character Set: + + Instrument List2: + + + + Instrument List1: + + + + Name: + Name: + + + Path: + + + + Version: + + + + Load + Load + + + Define Shortcut + + Properties @@ -7323,14 +7446,6 @@ please choose a different name: MuseScore: invalid command MuseScore: invalid command - - MuseScore - MuseScore - - - reading file < - reading file < - MuseScore: Load Style failed: MuseScore: Load Style failed: @@ -7351,10 +7466,6 @@ please choose a different name: MuseScore: Load languages failed: MuseScore: Load languages failed: - - MuseScore: register script plugin: - - MuseScore: Import GuitarPro @@ -7410,17 +7521,13 @@ failed: MuseScore: Save File MuseScore: Save File - - > failed: - - Load failed: - &Quit - + Untitled + Untitled @@ -7782,10 +7889,6 @@ cannot split tuplet Ticks - - Tick: - Tick: - Bar @@ -7794,6 +7897,14 @@ cannot split tuplet Beat + + tick: + + + + rTick: + + SelectDialog @@ -7948,21 +8059,21 @@ Sequencer will be disabled. SlurPropertyBase - - Volta Properties - Volta Properties - Slur Properties Slur Properties - solid - solid + Solid + + + + Dotted + - dotted - dotted + Dashed + Dashed @@ -8640,6 +8751,10 @@ altera styled + + layoutToParentWidth + + TextEditor @@ -8955,6 +9070,14 @@ altera Text Text + + Foreground Color: + + + + Background Color: + + TextStyleDialog @@ -9187,6 +9310,34 @@ p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'Sans Serif'; font-size:9pt; 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;">Hint: you can also add or remove bars after creation of the score.</p></body></html> + + 1 + 1 + + + 2 + 2 + + + 4 + 4 + + + 8 + 8 + + + 16 + 16 + + + 32 + 32 + + + 64 + 64 + TransposeDialogBase @@ -9622,10 +9773,6 @@ p, li { white-space: pre-wrap; } action - - Local &Handbook... - - Save a Copy... @@ -9894,46 +10041,6 @@ p, li { white-space: pre-wrap; } Reset Beam Mode - - up+shift+ctrl - - - - down+shift+ctrl - - - - left+ctrl - - - - left+shift - - - - right+shift - - - - right+ctrl+shift - - - - shift+home - - - - shift+end - - - - ctrl+shift+home - - - - ctrl+shift+end - - Delete Selected Measures @@ -10034,22 +10141,10 @@ p, li { white-space: pre-wrap; } Quit Quit - - Zoom Canvas - Zoom Canvas - Lyrics Lyrics - - Tempo... - - - - Tempo - Tempo - Metronome Metronome @@ -10062,10 +10157,6 @@ p, li { white-space: pre-wrap; } Staff Text Stave Text - - Frame Text - - Title Title @@ -10158,10 +10249,6 @@ p, li { white-space: pre-wrap; } Show Frames - - Search - Search - Zoom In @@ -10194,10 +10281,6 @@ p, li { white-space: pre-wrap; } Repeat selection - - Follow Song - - Local handbook @@ -10334,10 +10417,6 @@ p, li { white-space: pre-wrap; } Trill - - More stretch - - Less stretch @@ -10350,10 +10429,6 @@ p, li { white-space: pre-wrap; } Flip direction - - Flip Direction - - Pitch up @@ -10438,38 +10513,18 @@ p, li { white-space: pre-wrap; } Previous chord - - Previous Chord - - Previous measure - - Previous Measure - - Next chord - - Next Chord - - Next measure - - Next Measure - - - - Delete selected measures - - Append measures @@ -10510,10 +10565,6 @@ p, li { white-space: pre-wrap; } Save style - - Select all - - Delete Delete @@ -10530,54 +10581,10 @@ p, li { white-space: pre-wrap; } Delete element and duration - - &Open... - - - - &Save - - - - Save &As... - - - - &Close - - File new - - &New... - - - - &Print... - - - - &Undo - - - - &Redo - - - - Cu&t - - - - &Copy - - - - &Paste - - Insert note A @@ -10734,62 +10741,26 @@ p, li { white-space: pre-wrap; } Timewise delete - - Append one measure - - Append One Measure - - Insert one measure - - Insert One Measure - - Insert horizontal frame - - - - Insert text frame - - Insert Text Frame - - Append text frame - - Append Text Frame - - Insert fret diagram frame - - Insert Fret Diagram Frame - - Insert vertical frame - - - - Append horizontal frame - - - - Append vertical frame - - Other tuplets @@ -10966,22 +10937,10 @@ p, li { white-space: pre-wrap; } Feathered beam, slower - - Feathered Beam, Slower - - Feathered beam, faster - - Feathered Beam, Faster - - - - Play panel - - Transport toolbar @@ -10990,10 +10949,6 @@ p, li { white-space: pre-wrap; } Note input toolbar - - Status bar - - Zoom canvas @@ -11006,10 +10961,6 @@ p, li { white-space: pre-wrap; } Add staff text - - Add text - - Add title text @@ -11058,82 +11009,26 @@ p, li { white-space: pre-wrap; } Player seek to end - - Select A&ll - - &Transpose... - - Violin clef - - Violin Clef - - Bass 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 - - Toggle Section Break - - Edit element - - Show inspector @@ -11142,18 +11037,6 @@ p, li { white-space: pre-wrap; } Reset measure stretch - - Show invisible - - - - Show frames - - - - Enable script debugger - - Note entry: whole rest @@ -11190,14 +11073,6 @@ p, li { white-space: pre-wrap; } Backspace - - Zoom in - - - - Zoom out - - Mirror note head @@ -11234,10 +11109,6 @@ p, li { white-space: pre-wrap; } Display documents stacked - - Show score image - - Show OMR image @@ -11258,18 +11129,6 @@ p, li { white-space: pre-wrap; } Toggle foto mode - - Full screen - - - - F&ull Screen - - - - F&ull screen - - Enable horizontal raster @@ -11282,10 +11141,6 @@ p, li { white-space: pre-wrap; } Configure raster - - Re-pitch mode - - Re-Pitch Mode @@ -11314,10 +11169,6 @@ p, li { white-space: pre-wrap; } 128th note - - Show unprintable - - Split Measure @@ -11354,18 +11205,10 @@ p, li { white-space: pre-wrap; } Reset user settings - - Show debugger - - Piano Keyboard - - Show Inspector - - Save Selection @@ -11383,303 +11226,323 @@ p, li { white-space: pre-wrap; } - &Export... + Respell pitches + + + + Grace: 8nd after - &Instruments... + Pan score while playing on/off - &Note Input + Pan - Respell pitches + Show Unprintable - &Respell Pitches + Show Page Margins - Add &More Stretch + Manage parts - Add &Less Stretch + Inspector - Reset &Beam Mode + Show OMR Panel - Grace: 8nd after + OmrPanel - Pan score while playing on/off + toggle metronome - Pan + Figured Bass - &Load Style... + Next Score - &Save Style... + Previous Score - Save style as default + Transpose Up - Save Style As &Default... + Transpose Down - &Concert Pitch + Show master palette - &Reset + Master Palette... - De&bugger + Insert Measure - Reset &Stretch + Toggle View Mode - Show Unprintable + Export Parts - Show Page Margins + Export Parts... - &Search + Save a copy of the score's parts in various formats - &General... + Add marcato - &Text... + Marcato - &Chords... + Select Section - Parts + Note duration: double whole - Par&ts... + Double whole note - Manage parts + Whole note - Additional &Media... + Half note - &Page Settings... + Quarter note - &Album... + 8th note - Inspector + 16th note - Show OMR Panel + 32nd note - OmrPanel + 64th note - Show OMR PAnel + Edit score info - metronome + Insert Special Characters... - toggle metronome + Layers - Figured Bass + MuseScore Connect - Next Score + next syllable - Previous Score + previous syllable - Transpose Up + toggle visibility - Transpose Down + set visible - Show master palette + set unvisible - Master Palette... + Local Handbook... - Insert Measure + Open... - Toggle View Mode + Save + Save + + + Save As... - Export Parts + Export... - Export Parts... + Close + Close + + + New... - Save a copy of the score's parts in various formats + Print... - Add marcato + Instruments... - Marcato + Add More Stretch - Select Section + Add Less Stretch - select section + Tempo Marking... - Note duration: double whole + Tempo Marking - Double whole note + Text + Text + + + Add Frame Text - Whole note + Load Style... - Half note + Save Style... - Quarter note + Save Style As Default... - 8th note + Select All - 16th note + Concert Pitch + Concert Pitch + + + Info... - 32nd note + Reset - 64th note + Debugger - Edit score info + Reset Stretch - &Info... + Insert Special Characters - Insert special characters + Find - Insert Special Characters... + General... - Enable Script Debugger + Text... - Layers + Chords... - &Layers... + Parts... - MuseScore Connect + Full Screen - next syllable + Additional Media... - previous syllable + Page Settings... - toggle visibility + Album... - set visible + Layers... - set unvisible + Plugin Creator diff --git a/share/locale/mscore_zh_CN.ts b/share/locale/mscore_zh_CN.ts index d4cfe79c379d..a586c7471c66 100644 --- a/share/locale/mscore_zh_CN.ts +++ b/share/locale/mscore_zh_CN.ts @@ -143,10 +143,6 @@ p, li { white-space: pre-wrap; } Remove Score - - score list - - move current score down in list @@ -167,18 +163,6 @@ p, li { white-space: pre-wrap; } Add Score - - path to new score you want to add - - - - open file manager - - - - ... - ... - create new album @@ -211,6 +195,18 @@ p, li { white-space: pre-wrap; } Join Scores + + Load + 加载 + + + MuseScore: Add Score + + + + MuseScore: Load Album + + ArticulationBase @@ -1168,15 +1164,15 @@ spatium unit 缩小的 - showCourtesyClef + Hide courtesy clef - Hide courtesy clef + Show courtesy clef - Show courtesy clef + showCourtesy @@ -1201,14 +1197,14 @@ spatium unit Drum Tools - - Drumset - - Drums 鼓谱 + + Edit Drumset + + DrumrollEditor @@ -2786,18 +2782,10 @@ spatium unit Time sig. left margin 拍号左间距 - - Clef-key distance - 谱号-调号间距 - Clef-barline distance 谱号-左小节线 间距 - - Begin repeat left margin - 前反复记号的左间距 - Show repeat bar tips ("winged" repeats) 显示反复小节的提示 ("winged" 反复) @@ -3194,6 +3182,10 @@ p, li { white-space: pre-wrap; } Max. System distance + + Clef/Key right margin + + EditTempoBase @@ -3571,6 +3563,28 @@ spatium unit Down 向下 + + Offset X: + + + + sp + spatium unit +---------- +spatium unit + sp + + + Offset Y: + + + + + InspectorClef + + Show Courtesy Clef + + InspectorElement @@ -3710,6 +3724,36 @@ spatium unit % + + InspectorKeySig + + Show Courtesy Time Signature + + + + Show Naturals + + + + + InspectorLasso + + Form + + + + Lasso + + + + Position: + + + + Size + + + InspectorNote @@ -3954,6 +3998,13 @@ spatium unit sp + + InspectorTimeSig + + Show Courtesy Time Signature + + + InspectorVBox @@ -5148,10 +5199,6 @@ Would you like to locate %2 now? &About 关于(&A) - - MuseScore: Open Help - MuseScore:打开帮助 - note entry mode 音符输入模式 @@ -5202,10 +5249,6 @@ before closing? - - Search - 查找 - End Bar 终止线 @@ -5230,20 +5273,6 @@ before closing? Go To: 到: - - MuseScore handbook not found at: - - MuseScore 用户手册未找到: - - - - - -From the "Help" menu try choosing "Online Handbook" instead. - - -请在[帮助]菜单里选择[在线用户手册]。 - Grace Notes 倚音 @@ -5340,32 +5369,10 @@ Restore session? Varied coda 变化的尾声 - - Script -%1 -is incompatible with current interface - 脚本 -%1 -与当前软件接口不兼容。 - - - MuseScore is too old to run script -%1 - MuseScore 版本过低,不能运行脚本: -%1 - Bar %1 Beat %2.%3 小节r %1 拍 %2.%3 - - Error loading plugin -"%1" line %2: -%3 - 加载插件"%1"失败 - 见行 %2: -%3 - MuseScore: Load error @@ -5975,6 +5982,30 @@ please choose a different name: Report a bug + + MuseScore: Load Plugin + + + + MuseScore Plugin (*.qml);;All Files (*) + + + + MuseScore: Save Plugin + + + + MuseScore Plugin File (*.qml) + + + + &Plugins + + + + Find + + MyWebView @@ -6579,18 +6610,6 @@ please choose a different name: 100% 100% - - Straight - 正常 - - - Swing - 摇摆 - - - Shuffle - 随机 - master volume 主音量 @@ -6606,6 +6625,93 @@ please choose a different name: + + PluginCreator + + File Operations + 文件操作 + + + Edit Operations + + + + MuseScore Plugin Editor + + + + MuseScore + MuseScore + + + Plugin "%1" has changes +save before closing? + + + + untitled + + + + Manual + + + + + PluginCreatorBase + + MainWindow + + + + Run + + + + Stop + + + + File + + + + Help + + + + Edit + + + + New + 新建 + + + Open + + + + Save + 保存 + + + Manual + + + + Undo + 撤销 + + + Redo + 重做 + + + Quit + 退出 + + PreferenceDialog @@ -6640,14 +6746,6 @@ please choose a different name: Choose Default Style for Parts - - load - - - - Plugin Path - - Choose Scores Directory @@ -6711,10 +6809,6 @@ please choose a different name: Paths 路径 - - Instrument List: - 乐器列表: - Windows 窗口 @@ -7015,10 +7109,6 @@ please choose a different name: dark - - light - - use native file dialogs @@ -7287,6 +7377,34 @@ please choose a different name: Character Set: + + Instrument List2: + + + + Instrument List1: + + + + Name: + + + + Path: + + + + Version: + + + + Load + 加载 + + + Define Shortcut + + Properties @@ -7340,14 +7458,6 @@ please choose a different name: MuseScore: invalid command MuseScore:无效的命令 - - MuseScore - MuseScore - - - reading file < - 读取文件 < - MuseScore: Load Style failed: MuseScore:加载样式失败: @@ -7368,10 +7478,6 @@ please choose a different name: MuseScore: Load languages failed: MuseScore: 加载语言失败: - - MuseScore: register script plugin: - MuseScore: 注册脚本插件: - MuseScore: Import GuitarPro @@ -7426,17 +7532,13 @@ failed: MuseScore: Save File MuseScore:保存文件 - - > failed: - - Load failed: 加载失败: - &Quit - + Untitled + 未命名 @@ -7800,10 +7902,6 @@ cannot split tuplet Ticks - - Tick: - Tick: - Bar @@ -7812,9 +7910,17 @@ cannot split tuplet Beat - - - SelectDialog + + tick: + + + + rTick: + + + + + SelectDialog MuseScore: Select MuseScore: 选择 @@ -7967,21 +8073,21 @@ Sequencer will be disabled. SlurPropertyBase - - Volta Properties - 数字结尾/跳房子 属性 - Slur Properties 连句线属性 - solid - ────── (实线) + Solid + + + + Dotted + - dotted - ────── (虚线) + Dashed + ┈┈(点线) @@ -8659,6 +8765,10 @@ altera styled + + layoutToParentWidth + + TextEditor @@ -8974,6 +9084,14 @@ altera Text 文字 + + Foreground Color: + + + + Background Color: + + TextStyleDialog @@ -9206,6 +9324,34 @@ p, li { white-space: pre-wrap; } </style></head><body style="font-size:9pt; 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;">提示:您也可以在创建完新乐谱后再添加或删除小节。</p></body></html> + + 1 + 1 + + + 2 + 2 + + + 4 + 4 + + + 8 + 8 + + + 16 + 16 + + + 32 + 32 + + + 64 + 64 + TransposeDialogBase @@ -9641,10 +9787,6 @@ p, li { white-space: pre-wrap; } action - - Local &Handbook... - 本地用户手册... - Save a Copy... 保存副本... @@ -9913,46 +10055,6 @@ p, li { white-space: pre-wrap; } Reset Beam Mode 恢复默认符杠 - - up+shift+ctrl - up+shift+ctrl - - - down+shift+ctrl - down+shift+ctrl - - - left+ctrl - left+ctrl - - - left+shift - left+shift - - - right+shift - right+shift - - - right+ctrl+shift - right+ctrl+shift - - - shift+home - shift+home - - - shift+end - shift+end - - - ctrl+shift+home - ctrl+shift+home - - - ctrl+shift+end - ctrl+shift+end - Delete Selected Measures 删除选中小节 @@ -10053,22 +10155,10 @@ p, li { white-space: pre-wrap; } Quit 退出 - - Zoom Canvas - 缩放谱面 - Lyrics 歌词 - - Tempo... - 速度... - - - Tempo - 速度 - Metronome 节拍器 @@ -10081,10 +10171,6 @@ p, li { white-space: pre-wrap; } Staff Text 谱表文字 - - Frame Text - 框文字 - Title 标题 @@ -10177,10 +10263,6 @@ p, li { white-space: pre-wrap; } Show Frames 显示占位框 - - Search - 搜索 - Zoom In 放大 @@ -10213,10 +10295,6 @@ p, li { white-space: pre-wrap; } Repeat selection 反复选中区域 - - Follow Song - - Local handbook 本地用户手册 @@ -10353,10 +10431,6 @@ p, li { white-space: pre-wrap; } Trill 颤音 - - More stretch - 增加拉伸 - Less stretch 减少拉伸 @@ -10369,10 +10443,6 @@ p, li { white-space: pre-wrap; } Flip direction 方向反转 - - Flip Direction - 方向反转 - Pitch up 音高上移 @@ -10457,38 +10527,18 @@ p, li { white-space: pre-wrap; } Previous chord 前一音符组 - - Previous Chord - 前一音符组 - Previous measure 前一个小节 - - Previous Measure - 前一个小节 - Next chord 下一组音符 - - Next Chord - 下一组音符 - Next measure 下一个小节 - - Next Measure - 下一个小节 - - - Delete selected measures - 删除选中小节 - Append measures 追加多个小节 @@ -10529,10 +10579,6 @@ p, li { white-space: pre-wrap; } Save style 保存样式 - - Select all - 全选 - Delete 删除 @@ -10549,54 +10595,10 @@ p, li { white-space: pre-wrap; } Delete element and duration 删除元素和时值 - - &Open... - - - - &Save - - - - Save &As... - - - - &Close - - File new - - &New... - - - - &Print... - - - - &Undo - - - - &Redo - - - - Cu&t - - - - &Copy - - - - &Paste - - Insert note A @@ -10753,62 +10755,26 @@ p, li { white-space: pre-wrap; } Timewise delete - - Append one measure - - Append One Measure - - Insert one measure - - Insert One Measure - - Insert horizontal frame - - - - Insert text frame - - Insert Text Frame - - Append text frame - - Append Text Frame - - Insert fret diagram frame - - Insert Fret Diagram Frame - - Insert vertical frame - - - - Append horizontal frame - - - - Append vertical frame - - Other tuplets @@ -10985,22 +10951,10 @@ p, li { white-space: pre-wrap; } Feathered beam, slower - - Feathered Beam, Slower - - Feathered beam, faster - - Feathered Beam, Faster - - - - Play panel - - Transport toolbar @@ -11009,10 +10963,6 @@ p, li { white-space: pre-wrap; } Note input toolbar - - Status bar - - Zoom canvas @@ -11025,10 +10975,6 @@ p, li { white-space: pre-wrap; } Add staff text - - Add text - - Add title text @@ -11077,82 +11023,26 @@ p, li { white-space: pre-wrap; } Player seek to end - - Select A&ll - - &Transpose... - - Violin clef - - Violin Clef - - Bass 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 - - Toggle Section Break - - Edit element - - Show inspector @@ -11161,18 +11051,6 @@ p, li { white-space: pre-wrap; } Reset measure stretch - - Show invisible - - - - Show frames - - - - Enable script debugger - - Note entry: whole rest @@ -11209,14 +11087,6 @@ p, li { white-space: pre-wrap; } Backspace - - Zoom in - - - - Zoom out - - Mirror note head @@ -11253,10 +11123,6 @@ p, li { white-space: pre-wrap; } Display documents stacked - - Show score image - - Show OMR image @@ -11277,18 +11143,6 @@ p, li { white-space: pre-wrap; } Toggle foto mode - - Full screen - - - - F&ull Screen - - - - F&ull screen - - Enable horizontal raster @@ -11301,10 +11155,6 @@ p, li { white-space: pre-wrap; } Configure raster - - Re-pitch mode - - Re-Pitch Mode @@ -11333,10 +11183,6 @@ p, li { white-space: pre-wrap; } 128th note - - Show unprintable - - Split Measure @@ -11373,18 +11219,10 @@ p, li { white-space: pre-wrap; } Reset user settings - - Show debugger - - Piano Keyboard - - Show Inspector - - Save Selection @@ -11402,303 +11240,323 @@ p, li { white-space: pre-wrap; } - &Export... + Respell pitches - &Instruments... + Grace: 8nd after - &Note Input + Pan score while playing on/off - Respell pitches - + Pan + 声像 - &Respell Pitches + Show Unprintable - Add &More Stretch + Show Page Margins - Add &Less Stretch + Manage parts - Reset &Beam Mode + Inspector + 元素查看器 + + + Show OMR Panel - Grace: 8nd after + OmrPanel - Pan score while playing on/off + toggle metronome - Pan - 声像 + Figured Bass + - &Load Style... + Next Score - &Save Style... + Previous Score - Save style as default + Transpose Up - Save Style As &Default... + Transpose Down - &Concert Pitch + Show master palette - &Reset + Master Palette... - De&bugger + Insert Measure - Reset &Stretch + Toggle View Mode - Show Unprintable + Export Parts - Show Page Margins + Export Parts... - &Search + Save a copy of the score's parts in various formats - &General... + Add marcato - &Text... + Marcato - &Chords... + Select Section - Parts + Note duration: double whole - Par&ts... + Double whole note - Manage parts + Whole note - Additional &Media... + Half note - &Page Settings... + Quarter note - &Album... + 8th note - Inspector - 元素查看器 + 16th note + - Show OMR Panel + 32nd note - OmrPanel + 64th note - Show OMR PAnel + Edit score info - metronome + Insert Special Characters... - toggle metronome + Layers - Figured Bass + MuseScore Connect - Next Score + next syllable - Previous Score + previous syllable - Transpose Up + toggle visibility - Transpose Down + set visible - Show master palette + set unvisible - Master Palette... + Local Handbook... - Insert Measure + Open... - Toggle View Mode + Save + 保存 + + + Save As... - Export Parts + Export... - Export Parts... + Close + 关闭 + + + New... - Save a copy of the score's parts in various formats + Print... - Add marcato + Instruments... - Marcato + Add More Stretch - Select Section + Add Less Stretch - select section + Tempo Marking... - Note duration: double whole + Tempo Marking - Double whole note + Text + 文字 + + + Add Frame Text - Whole note + Load Style... - Half note + Save Style... - Quarter note + Save Style As Default... - 8th note + Select All - 16th note + Concert Pitch + 音乐会音高 + + + Info... - 32nd note + Reset - 64th note + Debugger - Edit score info + Reset Stretch - &Info... + Insert Special Characters - Insert special characters + Find - Insert Special Characters... + General... - Enable Script Debugger + Text... - Layers + Chords... - &Layers... + Parts... - MuseScore Connect + Full Screen - next syllable + Additional Media... - previous syllable + Page Settings... - toggle visibility + Album... - set visible + Layers... - set unvisible + Plugin Creator diff --git a/share/locale/mscore_zh_Hant.ts b/share/locale/mscore_zh_Hant.ts index 84056a92157c..9a8b612c27fe 100644 --- a/share/locale/mscore_zh_Hant.ts +++ b/share/locale/mscore_zh_Hant.ts @@ -134,10 +134,6 @@ p, li { white-space: pre-wrap; } Remove Score - - score list - - move current score down in list @@ -159,47 +155,47 @@ p, li { white-space: pre-wrap; } - path to new score you want to add + create new album - open file manager + New - ... + load an existing album - create new album + Print Album - New + MuseScore Album Files (*.album);; - load an existing album + All Files (*) - Print Album + MuseScore Files (*.mscz *.mscx *.msc);; - MuseScore Album Files (*.album);; + Join Scores - All Files (*) + Load - MuseScore Files (*.mscz *.mscx *.msc);; + MuseScore: Add Score - Join Scores + MuseScore: Load Album @@ -1159,15 +1155,15 @@ spatium unit - showCourtesyClef + Hide courtesy clef - Hide courtesy clef + Show courtesy clef - Show courtesy clef + showCourtesy @@ -1193,11 +1189,11 @@ spatium unit - Drumset + Drums - Drums + Edit Drumset @@ -2775,18 +2771,10 @@ spatium unit Time sig. left margin - - Clef-key distance - - Clef-barline distance - - Begin repeat left margin - - Show repeat bar tips ("winged" repeats) @@ -3183,6 +3171,10 @@ p, li { white-space: pre-wrap; } Max. System distance + + Clef/Key right margin + + EditTempoBase @@ -3560,6 +3552,28 @@ spatium unit Down + + Offset X: + + + + sp + spatium unit +---------- +spatium unit + + + + Offset Y: + + + + + InspectorClef + + Show Courtesy Clef + + InspectorElement @@ -3699,6 +3713,36 @@ spatium unit + + InspectorKeySig + + Show Courtesy Time Signature + + + + Show Naturals + + + + + InspectorLasso + + Form + + + + Lasso + + + + Position: + + + + Size + + + InspectorNote @@ -3943,6 +3987,13 @@ spatium unit + + InspectorTimeSig + + Show Courtesy Time Signature + + + InspectorVBox @@ -5075,10 +5126,6 @@ Would you like to locate %2 now? &About - - MuseScore: Open Help - - note entry mode @@ -5208,25 +5255,10 @@ before closing? End-Start Repeat - - Search - - Go To: - - MuseScore handbook not found at: - - - - - - -From the "Help" menu try choosing "Online Handbook" instead. - - Grace Notes @@ -5321,27 +5353,10 @@ Restore session? Varied coda - - Script -%1 -is incompatible with current interface - - - - MuseScore is too old to run script -%1 - - Bar %1 Beat %2.%3 - - Error loading plugin -"%1" line %2: -%3 - - MuseScore: Load error @@ -5951,6 +5966,30 @@ please choose a different name: Report a bug + + MuseScore: Load Plugin + + + + MuseScore Plugin (*.qml);;All Files (*) + + + + MuseScore: Save Plugin + + + + MuseScore Plugin File (*.qml) + + + + &Plugins + + + + Find + + MyWebView @@ -6556,29 +6595,104 @@ please choose a different name: - Straight + master volume - Swing + Vol. + short text for volume slider - Shuffle + Tmp. + short text for tempo slider + + + PluginCreator - master volume + File Operations - Vol. - short text for volume slider + Edit Operations - Tmp. - short text for tempo slider + MuseScore Plugin Editor + + + + MuseScore + + + + Plugin "%1" has changes +save before closing? + + + + untitled + + + + Manual + + + + + PluginCreatorBase + + MainWindow + + + + Run + + + + Stop + + + + File + + + + Help + + + + Edit + + + + New + + + + Open + + + + Save + + + + Manual + + + + Undo + + + + Redo + + + + Quit @@ -6616,14 +6730,6 @@ please choose a different name: Choose Default Style for Parts - - load - - - - Plugin Path - - Choose Scores Directory @@ -6695,10 +6801,6 @@ please choose a different name: Paths - - Instrument List: - - Windows @@ -6991,10 +7093,6 @@ please choose a different name: dark - - light - - use native file dialogs @@ -7263,6 +7361,34 @@ please choose a different name: Character Set: + + Instrument List2: + + + + Instrument List1: + + + + Name: + + + + Path: + + + + Version: + + + + Load + + + + Define Shortcut + + Properties @@ -7320,14 +7446,6 @@ please choose a different name: MuseScore: load Style failed: - - MuseScore - - - - reading file < - - MuseScore: Import Capella @@ -7344,10 +7462,6 @@ please choose a different name: MuseScore: Load languages failed: - - MuseScore: register script plugin: - - MuseScore: Import GuitarPro @@ -7402,16 +7516,12 @@ failed: MuseScore: Save File - - > failed: - - Load failed: - &Quit + Untitled @@ -7775,15 +7885,19 @@ cannot split tuplet - Tick: + Bar - Bar + Beat - Beat + tick: + + + + rTick: @@ -7941,19 +8055,19 @@ Sequencer will be disabled. SlurPropertyBase - Volta Properties + Slur Properties - Slur Properties + Solid - solid + Dotted - dotted + Dashed @@ -8632,6 +8746,10 @@ altera styled + + layoutToParentWidth + + TextEditor @@ -8947,6 +9065,14 @@ altera Text + + Foreground Color: + + + + Background Color: + + TextStyleDialog @@ -9176,6 +9302,34 @@ 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;">Hint: you can also add or remove measures after creation of the score.</p></body></html> + + 1 + + + + 2 + + + + 4 + + + + 8 + + + + 16 + + + + 32 + + + + 64 + + TransposeDialogBase @@ -9611,10 +9765,6 @@ p, li { white-space: pre-wrap; } action - - Local &Handbook... - - Save a Copy... @@ -9883,46 +10033,6 @@ p, li { white-space: pre-wrap; } Reset Beam Mode - - up+shift+ctrl - - - - down+shift+ctrl - - - - left+ctrl - - - - left+shift - - - - right+shift - - - - right+ctrl+shift - - - - shift+home - - - - shift+end - - - - ctrl+shift+home - - - - ctrl+shift+end - - Delete Selected Measures @@ -10023,22 +10133,10 @@ p, li { white-space: pre-wrap; } Quit - - Zoom Canvas - - Lyrics - - Tempo... - - - - Tempo - - Metronome @@ -10051,10 +10149,6 @@ p, li { white-space: pre-wrap; } Staff Text - - Frame Text - - Title @@ -10147,10 +10241,6 @@ p, li { white-space: pre-wrap; } Show Frames - - Search - - Zoom In @@ -10183,10 +10273,6 @@ p, li { white-space: pre-wrap; } Repeat selection - - Follow Song - - Local handbook @@ -10323,10 +10409,6 @@ p, li { white-space: pre-wrap; } Trill - - More stretch - - Less stretch @@ -10339,10 +10421,6 @@ p, li { white-space: pre-wrap; } Flip direction - - Flip Direction - - Pitch up @@ -10427,38 +10505,18 @@ p, li { white-space: pre-wrap; } Previous chord - - Previous Chord - - Previous measure - - Previous Measure - - Next chord - - Next Chord - - Next measure - - Next Measure - - - - Delete selected measures - - Append measures @@ -10499,10 +10557,6 @@ p, li { white-space: pre-wrap; } Save style - - Select all - - Delete @@ -10519,54 +10573,10 @@ p, li { white-space: pre-wrap; } Delete element and duration - - &Open... - - - - &Save - - - - Save &As... - - - - &Close - - File new - - &New... - - - - &Print... - - - - &Undo - - - - &Redo - - - - Cu&t - - - - &Copy - - - - &Paste - - Insert note A @@ -10723,62 +10733,26 @@ p, li { white-space: pre-wrap; } Timewise delete - - Append one measure - - Append One Measure - - Insert one measure - - Insert One Measure - - Insert horizontal frame - - - - Insert text frame - - Insert Text Frame - - Append text frame - - Append Text Frame - - Insert fret diagram frame - - Insert Fret Diagram Frame - - Insert vertical frame - - - - Append horizontal frame - - - - Append vertical frame - - Other tuplets @@ -10955,22 +10929,10 @@ p, li { white-space: pre-wrap; } Feathered beam, slower - - Feathered Beam, Slower - - Feathered beam, faster - - Feathered Beam, Faster - - - - Play panel - - Transport toolbar @@ -10979,10 +10941,6 @@ p, li { white-space: pre-wrap; } Note input toolbar - - Status bar - - Zoom canvas @@ -10995,10 +10953,6 @@ p, li { white-space: pre-wrap; } Add staff text - - Add text - - Add title text @@ -11047,82 +11001,26 @@ p, li { white-space: pre-wrap; } Player seek to end - - Select A&ll - - &Transpose... - - Violin clef - - Violin Clef - - Bass 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 - - Toggle Section Break - - Edit element - - Show inspector @@ -11131,18 +11029,6 @@ p, li { white-space: pre-wrap; } Reset measure stretch - - Show invisible - - - - Show frames - - - - Enable script debugger - - Note entry: whole rest @@ -11179,14 +11065,6 @@ p, li { white-space: pre-wrap; } Backspace - - Zoom in - - - - Zoom out - - Mirror note head @@ -11223,10 +11101,6 @@ p, li { white-space: pre-wrap; } Display documents stacked - - Show score image - - Show OMR image @@ -11247,18 +11121,6 @@ p, li { white-space: pre-wrap; } Toggle foto mode - - Full screen - - - - F&ull Screen - - - - F&ull screen - - Enable horizontal raster @@ -11271,10 +11133,6 @@ p, li { white-space: pre-wrap; } Configure raster - - Re-pitch mode - - Re-Pitch Mode @@ -11303,10 +11161,6 @@ p, li { white-space: pre-wrap; } 128th note - - Show unprintable - - Split Measure @@ -11344,331 +11198,343 @@ p, li { white-space: pre-wrap; } - Show debugger + Piano Keyboard - Piano Keyboard + Save Selection - Show Inspector + Save Selection... - Save Selection + Save current selection as new score - Save Selection... + Export score - Save current selection as new score + Respell pitches - Export score + Grace: 8nd after - &Export... + Pan score while playing on/off - &Instruments... + Pan - &Note Input + Show Unprintable - Respell pitches + Show Page Margins - &Respell Pitches + Manage parts - Add &More Stretch + Inspector - Add &Less Stretch + Show OMR Panel - Reset &Beam Mode + OmrPanel - Grace: 8nd after + toggle metronome - Pan score while playing on/off + Figured Bass - Pan + Next Score - &Load Style... + Previous Score - &Save Style... + Transpose Up - Save style as default + Transpose Down - Save Style As &Default... + Show master palette - &Concert Pitch + Master Palette... - &Reset + Insert Measure - De&bugger + Toggle View Mode - Reset &Stretch + Export Parts - Show Unprintable + Export Parts... - Show Page Margins + Save a copy of the score's parts in various formats - &Search + Add marcato - &General... + Marcato - &Text... + Select Section - &Chords... + Note duration: double whole - Parts + Double whole note - Par&ts... + Whole note - Manage parts + Half note - Additional &Media... + Quarter note - &Page Settings... + 8th note - &Album... + 16th note - Inspector + 32nd note - Show OMR Panel + 64th note - OmrPanel + Edit score info - Show OMR PAnel + Insert Special Characters... - metronome + Layers - toggle metronome + MuseScore Connect - Figured Bass + next syllable - Next Score + previous syllable - Previous Score + toggle visibility - Transpose Up + set visible - Transpose Down + set unvisible - Show master palette + Local Handbook... - Master Palette... + Open... - Insert Measure + Save - Toggle View Mode + Save As... - Export Parts + Export... - Export Parts... + Close - Save a copy of the score's parts in various formats + New... - Add marcato + Print... - Marcato + Instruments... - Select Section + Add More Stretch - select section + Add Less Stretch - Note duration: double whole + Tempo Marking... - Double whole note + Tempo Marking - Whole note + Text - Half note + Add Frame Text - Quarter note + Load Style... - 8th note + Save Style... - 16th note + Save Style As Default... - 32nd note + Select All - 64th note + Concert Pitch - Edit score info + Info... - &Info... + Reset - Insert special characters + Debugger - Insert Special Characters... + Reset Stretch - Enable Script Debugger + Insert Special Characters - Layers + Find - &Layers... + General... - MuseScore Connect + Text... - next syllable + Chords... - previous syllable + Parts... - toggle visibility + Full Screen - set visible + Additional Media... - set unvisible + Page Settings... + + + + Album... + + + + Layers... + + + + Plugin Creator diff --git a/share/locale/mscore_zh_TW.ts b/share/locale/mscore_zh_TW.ts index c29e4ab45cda..e532d9d23ab6 100644 --- a/share/locale/mscore_zh_TW.ts +++ b/share/locale/mscore_zh_TW.ts @@ -134,10 +134,6 @@ p, li { white-space: pre-wrap; } Remove Score - - score list - - move current score down in list @@ -158,18 +154,6 @@ p, li { white-space: pre-wrap; } Add Score - - path to new score you want to add - - - - open file manager - - - - ... - ... - create new album @@ -202,6 +186,18 @@ p, li { white-space: pre-wrap; } Join Scores + + Load + 載入 + + + MuseScore: Add Score + + + + MuseScore: Load Album + + ArticulationBase @@ -1159,15 +1155,15 @@ spatium unit 縮小的 - showCourtesyClef + Hide courtesy clef - Hide courtesy clef + Show courtesy clef - Show courtesy clef + showCourtesy @@ -1192,14 +1188,14 @@ spatium unit Drum Tools - - Drumset - - Drums 鼓譜記號 + + Edit Drumset + + DrumrollEditor @@ -2777,18 +2773,10 @@ spatium unit Time sig. left margin - - Clef-key distance - - Clef-barline distance - - Begin repeat left margin - - Show repeat bar tips ("winged" repeats) @@ -3185,6 +3173,10 @@ p, li { white-space: pre-wrap; } Max. System distance + + Clef/Key right margin + + EditTempoBase @@ -3562,6 +3554,28 @@ spatium unit Down 向下 + + Offset X: + + + + sp + spatium unit +---------- +spatium unit + + + + Offset Y: + + + + + InspectorClef + + Show Courtesy Clef + + InspectorElement @@ -3701,6 +3715,36 @@ spatium unit % + + InspectorKeySig + + Show Courtesy Time Signature + + + + Show Naturals + + + + + InspectorLasso + + Form + 表單 + + + Lasso + + + + Position: + + + + Size + + + InspectorNote @@ -3945,6 +3989,13 @@ spatium unit + + InspectorTimeSig + + Show Courtesy Time Signature + + + InspectorVBox @@ -5140,10 +5191,6 @@ Would you like to locate %2 now? &About 關於(&A) - - MuseScore: Open Help - MuseScore:開啟說明檔 - note entry mode 音符輸入模式 @@ -5194,10 +5241,6 @@ before closing? - - Search - 尋找 - End Bar 終止線 @@ -5222,17 +5265,6 @@ before closing? Go To: 到: - - MuseScore handbook not found at: - - - - - - -From the "Help" menu try choosing "Online Handbook" instead. - - Grace Notes @@ -5327,27 +5359,10 @@ Restore session? Varied coda - - Script -%1 -is incompatible with current interface - - - - MuseScore is too old to run script -%1 - - Bar %1 Beat %2.%3 - - Error loading plugin -"%1" line %2: -%3 - - MuseScore: Load error @@ -5957,6 +5972,30 @@ please choose a different name: Report a bug + + MuseScore: Load Plugin + + + + MuseScore Plugin (*.qml);;All Files (*) + + + + MuseScore: Save Plugin + + + + MuseScore Plugin File (*.qml) + + + + &Plugins + + + + Find + + MyWebView @@ -6562,31 +6601,106 @@ please choose a different name: 100% - Straight + master volume - Swing + Vol. + short text for volume slider - Shuffle + Tmp. + short text for tempo slider + + + PluginCreator - master volume + File Operations + 檔案操作工具列 + + + Edit Operations - Vol. - short text for volume slider + MuseScore Plugin Editor - Tmp. - short text for tempo slider + MuseScore + MuseScore + + + Plugin "%1" has changes +save before closing? + + + + untitled + + + + Manual + + + + + PluginCreatorBase + + MainWindow + + + + Run + + + + Stop + + + + File + + + + Help + + + + Edit + + + + New + 新增 + + + Open + + + + Save + 儲存 + + + Manual + + + + Undo + + + + Redo + + Quit + 離開 + PreferenceDialog @@ -6622,14 +6736,6 @@ please choose a different name: Choose Default Style for Parts - - load - - - - Plugin Path - - Choose Scores Directory @@ -6693,10 +6799,6 @@ please choose a different name: Paths 路徑 - - Instrument List: - 樂器列表: - Windows 視窗 @@ -6997,10 +7099,6 @@ please choose a different name: dark - - light - - use native file dialogs @@ -7269,6 +7367,34 @@ please choose a different name: Character Set: + + Instrument List2: + + + + Instrument List1: + + + + Name: + 名稱: + + + Path: + + + + Version: + + + + Load + 載入 + + + Define Shortcut + + Properties @@ -7322,14 +7448,6 @@ please choose a different name: MuseScore: invalid command MuseScore:無效的指令 - - MuseScore - MuseScore - - - reading file < - 讀取檔案 < - MuseScore: Load Style failed: MuseScore:載入樣式失敗: @@ -7350,10 +7468,6 @@ please choose a different name: MuseScore: Load languages failed: - - MuseScore: register script plugin: - - MuseScore: Import GuitarPro @@ -7409,17 +7523,13 @@ failed: MuseScore: Save File MuseScore:儲存檔案 - - > failed: - - Load failed: - &Quit - + Untitled + 未命名 @@ -7783,10 +7893,6 @@ cannot split tuplet Ticks - - Tick: - 勾線: - Bar @@ -7795,6 +7901,14 @@ cannot split tuplet Beat + + tick: + + + + rTick: + + SelectDialog @@ -7950,19 +8064,19 @@ Sequencer will be disabled. SlurPropertyBase - Volta Properties - 反復記號屬性 + Slur Properties + - Slur Properties + Solid - solid - ────── (實線) + Dotted + - dotted + Dashed @@ -8641,6 +8755,10 @@ altera styled + + layoutToParentWidth + + TextEditor @@ -8956,6 +9074,14 @@ altera Text 文字 + + Foreground Color: + + + + Background Color: + + TextStyleDialog @@ -9188,6 +9314,34 @@ p, li { white-space: pre-wrap; } </style></head><body style="font-size:9pt; 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;">提示:您也可以建立完新樂譜後再增加或刪減小節。</p></body></html> + + 1 + 1 + + + 2 + 2 + + + 4 + 4 + + + 8 + 8 + + + 16 + 16 + + + 32 + 32 + + + 64 + 64 + TransposeDialogBase @@ -9623,10 +9777,6 @@ p, li { white-space: pre-wrap; } action - - Local &Handbook... - - Save a Copy... @@ -9895,46 +10045,6 @@ p, li { white-space: pre-wrap; } Reset Beam Mode - - up+shift+ctrl - - - - down+shift+ctrl - - - - left+ctrl - - - - left+shift - - - - right+shift - - - - right+ctrl+shift - - - - shift+home - - - - shift+end - - - - ctrl+shift+home - - - - ctrl+shift+end - - Delete Selected Measures @@ -10035,22 +10145,10 @@ p, li { white-space: pre-wrap; } Quit 離開 - - Zoom Canvas - 縮放畫面 - Lyrics 歌詞 - - Tempo... - - - - Tempo - 速度 - Metronome 節拍器 @@ -10063,10 +10161,6 @@ p, li { white-space: pre-wrap; } Staff Text - - Frame Text - - Title 標題 @@ -10159,10 +10253,6 @@ p, li { white-space: pre-wrap; } Show Frames - - Search - 尋找 - Zoom In @@ -10195,10 +10285,6 @@ p, li { white-space: pre-wrap; } Repeat selection - - Follow Song - - Local handbook @@ -10335,10 +10421,6 @@ p, li { white-space: pre-wrap; } Trill 震音記號 - - More stretch - - Less stretch @@ -10351,10 +10433,6 @@ p, li { white-space: pre-wrap; } Flip direction - - Flip Direction - - Pitch up @@ -10439,38 +10517,18 @@ p, li { white-space: pre-wrap; } Previous chord - - Previous Chord - - Previous measure - - Previous Measure - - Next chord - - Next Chord - - Next measure - - Next Measure - - - - Delete selected measures - - Append measures @@ -10511,10 +10569,6 @@ p, li { white-space: pre-wrap; } Save style - - Select all - - Delete 刪除 @@ -10531,54 +10585,10 @@ p, li { white-space: pre-wrap; } Delete element and duration - - &Open... - - - - &Save - - - - Save &As... - - - - &Close - - File new - - &New... - - - - &Print... - - - - &Undo - - - - &Redo - - - - Cu&t - - - - &Copy - - - - &Paste - - Insert note A @@ -10735,62 +10745,26 @@ p, li { white-space: pre-wrap; } Timewise delete - - Append one measure - - Append One Measure - - Insert one measure - - Insert One Measure - - Insert horizontal frame - - - - Insert text frame - - Insert Text Frame - - Append text frame - - Append Text Frame - - Insert fret diagram frame - - Insert Fret Diagram Frame - - Insert vertical frame - - - - Append horizontal frame - - - - Append vertical frame - - Other tuplets @@ -10967,22 +10941,10 @@ p, li { white-space: pre-wrap; } Feathered beam, slower - - Feathered Beam, Slower - - Feathered beam, faster - - Feathered Beam, Faster - - - - Play panel - - Transport toolbar @@ -10991,10 +10953,6 @@ p, li { white-space: pre-wrap; } Note input toolbar - - Status bar - - Zoom canvas @@ -11007,10 +10965,6 @@ p, li { white-space: pre-wrap; } Add staff text - - Add text - - Add title text @@ -11059,82 +11013,26 @@ p, li { white-space: pre-wrap; } Player seek to end - - Select A&ll - - &Transpose... - - Violin clef - - Violin Clef - - Bass 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 - - Toggle Section Break - - Edit element - - Show inspector @@ -11143,18 +11041,6 @@ p, li { white-space: pre-wrap; } Reset measure stretch - - Show invisible - - - - Show frames - - - - Enable script debugger - - Note entry: whole rest @@ -11191,14 +11077,6 @@ p, li { white-space: pre-wrap; } Backspace - - Zoom in - - - - Zoom out - - Mirror note head @@ -11235,10 +11113,6 @@ p, li { white-space: pre-wrap; } Display documents stacked - - Show score image - - Show OMR image @@ -11259,18 +11133,6 @@ p, li { white-space: pre-wrap; } Toggle foto mode - - Full screen - - - - F&ull Screen - - - - F&ull screen - - Enable horizontal raster @@ -11283,10 +11145,6 @@ p, li { white-space: pre-wrap; } Configure raster - - Re-pitch mode - - Re-Pitch Mode @@ -11315,10 +11173,6 @@ p, li { white-space: pre-wrap; } 128th note - - Show unprintable - - Split Measure @@ -11355,18 +11209,10 @@ p, li { white-space: pre-wrap; } Reset user settings - - Show debugger - - Piano Keyboard - - Show Inspector - - Save Selection @@ -11384,303 +11230,323 @@ p, li { white-space: pre-wrap; } - &Export... + Respell pitches - &Instruments... + Grace: 8nd after - &Note Input + Pan score while playing on/off - Respell pitches + Pan + 聲相 + + + Show Unprintable + + + + Show Page Margins - &Respell Pitches + Manage parts - Add &More Stretch + Inspector - Add &Less Stretch + Show OMR Panel - Reset &Beam Mode + OmrPanel - Grace: 8nd after + toggle metronome - Pan score while playing on/off + Figured Bass - Pan - 聲相 + Next Score + - &Load Style... + Previous Score - &Save Style... + Transpose Up - Save style as default + Transpose Down - Save Style As &Default... + Show master palette - &Concert Pitch + Master Palette... - &Reset + Insert Measure - De&bugger + Toggle View Mode - Reset &Stretch + Export Parts - Show Unprintable + Export Parts... - Show Page Margins + Save a copy of the score's parts in various formats - &Search + Add marcato - &General... + Marcato - &Text... + Select Section - &Chords... + Note duration: double whole - Parts + Double whole note - Par&ts... + Whole note - Manage parts + Half note - Additional &Media... + Quarter note - &Page Settings... + 8th note - &Album... + 16th note - Inspector + 32nd note - Show OMR Panel + 64th note - OmrPanel + Edit score info - Show OMR PAnel + Insert Special Characters... - metronome + Layers - toggle metronome + MuseScore Connect - Figured Bass + next syllable - Next Score + previous syllable - Previous Score + toggle visibility - Transpose Up + set visible - Transpose Down + set unvisible - Show master palette + Local Handbook... - Master Palette... + Open... - Insert Measure + Save + 儲存 + + + Save As... - Toggle View Mode + Export... - Export Parts + Close - Export Parts... + New... - Save a copy of the score's parts in various formats + Print... - Add marcato + Instruments... - Marcato + Add More Stretch - Select Section + Add Less Stretch - select section + Tempo Marking... - Note duration: double whole + Tempo Marking - Double whole note + Text + 文字 + + + Add Frame Text - Whole note + Load Style... - Half note + Save Style... - Quarter note + Save Style As Default... - 8th note + Select All - 16th note + Concert Pitch + 音樂會音高 + + + Info... - 32nd note + Reset - 64th note + Debugger - Edit score info + Reset Stretch - &Info... + Insert Special Characters - Insert special characters + Find - Insert Special Characters... + General... - Enable Script Debugger + Text... - Layers + Chords... - &Layers... + Parts... - MuseScore Connect + Full Screen - next syllable + Additional Media... - previous syllable + Page Settings... - toggle visibility + Album... - set visible + Layers... - set unvisible + Plugin Creator diff --git a/share/manual/plugins/manual.css b/share/manual/plugins/manual.css new file mode 100644 index 000000000000..d07af6662e9c --- /dev/null +++ b/share/manual/plugins/manual.css @@ -0,0 +1,67 @@ +body { + background:#fff; + margin-left: 5pt; + padding: 0; + font-family: Verdana, DejaVuSans, Geneva, sans-serif; + line-height: 1.4; + color: rgb(54, 53, 52); + font-size: 10px; + } + +a { + color: rgb(0,115,47); + text-decoration:none; + } + +h3 { + padding: 0; + font: bold 18px Arial; + margin-top: 5pt; + margin-bottom: 5pt; + } +h4 { + font: bold 11px Arial; + padding: 0; + margin-top: 0pt; + margin-bottom: 0pt; + } + +table.tab1 { + border-radius: 7px; + background-color: rgb(246, 246, 246); + border: 1px solid rgb(230, 230, 230); + } + +div.tab1 { + margin-left: 50pt; + margin-top: 5pt; + margin-bottom: 5pt; + } + +div.methods,div.properties { + border-radius: 7px; + background-color: rgb(246, 246, 246); + border: 1px solid rgb(230, 230, 230); + margin-top: 5pt; + margin-bottom: 10pt; + } + +div.properties table td { + padding-left: 5pt; + padding-right: 5pt; + } + +div.method { + margin-top: 0pt; + margin-bottom: 0pt; + margin-left: 10pt; + } + +div.method-description { + margin-left: 20pt; + margin-bottom: 8pt; + } +div.class-description { + margin-left: 10pt; + margin-bottom: 8pt; + }