123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574 |
- msgid ""
- msgstr ""
- "Project-Id-Version: Prusa-Firmware\n"
- "POT-Creation-Date: Wed 16 Mar 2022 09:25:03 AM CET\n"
- "PO-Revision-Date: Wed 16 Mar 2022 09:25:03 AM CET\n"
- "Last-Translator: \n"
- "Language-Team: \n"
- "Language: ro\n"
- "MIME-Version: 1.0\n"
- "Content-Type: text/plain; charset=UTF-8\n"
- "Content-Transfer-Encoding: 8bit\n"
- "X-Generator: Poedit 2.0.7\n"
- "X-Poedit-SourceCharset: UTF-8\n"
- "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
- msgid " 0.3 or older"
- msgstr " 0.3 / mai vechi"
- msgid " 0.4 or newer"
- msgstr " 0.4 / mai nou"
- msgid "%s level expected"
- msgstr "nivel %s asteptat"
- msgid ">Cancel"
- msgstr ">Anuleaza"
- msgid "Adjusting Z:"
- msgstr "Ajustare Z:"
- msgid "All correct"
- msgstr "Totul OK"
- msgid "All is done. Happy printing!"
- msgstr "Totul este OK. Distractie placuta!"
- msgid "Alphabet"
- msgstr "Alfabet"
- msgid "Always"
- msgstr "Mereu"
- msgid "Ambient"
- msgstr "Ambiental"
- msgid "Are left and right Z~carriages all up?"
- msgstr "Este axa Z aliniata sus?"
- msgid "Assist"
- msgstr "Asist."
- msgid "Auto"
- msgstr "Auto"
- msgid "Auto home"
- msgstr "Auto home"
- msgid "Auto power"
- msgstr "Put. auto"
- msgid "AutoLoad filament"
- msgstr "Inc.auto Filament"
- msgid ""
- "Autoloading filament is active, just press the knob and insert filament..."
- msgstr ""
- "Incarcarea automata de filament pornita; apasati butonul si incarcati "
- "filamentul"
- msgid "Avoiding grind"
- msgstr "Avoiding grind"
- msgid "Axis"
- msgstr "Axa"
- msgid "Axis length"
- msgstr "Lungime axa"
- msgid "Back"
- msgstr "Inapoi"
- msgid "Bed"
- msgstr "Pat"
- msgid "Bed Heating"
- msgstr "Patul se incalzeste"
- msgid "Bed done"
- msgstr "Pat incalzit"
- msgid "Bed level correct"
- msgstr "Nivelare pat"
- msgid ""
- "Bed leveling failed. Sensor didn't trigger. Debris on nozzle? Waiting for "
- "reset."
- msgstr ""
- "Nivelarea patului a esuat. Senzorul nu a detectat. Mizerie pe varf? Apasati "
- "reset."
- msgid "Bed/Heater"
- msgstr "Incalzitor/Pat"
- msgid "Belt status"
- msgstr "Status curele"
- msgid "Belt test"
- msgstr "Test curele"
- msgid "Blackout occurred. Recover print?"
- msgstr "Pana de curent. Continuati printul?"
- msgid "Bright"
- msgstr "Maxim"
- msgid "Brightness"
- msgstr "Luminozitate ecran"
- msgid "COMMUNICATION ERROR"
- msgstr "EROARE DE COMUNICARE"
- msgid "Calibrate XYZ"
- msgstr "Calibrare XYZ"
- msgid "Calibrate Z"
- msgstr "Calibrare Z"
- msgid ""
- "Calibrating XYZ. Rotate the knob to move the Z carriage up to the end "
- "stoppers. Click when done."
- msgstr ""
- "Calibrare XYZ. Rotiti butonul pentru a ridica axa Z pana la capat. Apasati "
- "butonul cand este gata."
- msgid "Calibrating Z"
- msgstr "Calibrare Z"
- msgid ""
- "Calibrating Z. Rotate the knob to move the Z carriage up to the end "
- "stoppers. Click when done."
- msgstr ""
- "Calibrare Z. Rotiti butonul pentru a ridica axa Z pana la capat. Apasati "
- "butonul cand este gata."
- msgid "Calibrating home"
- msgstr "Calibrare home"
- msgid "Calibration"
- msgstr "Calibrare"
- msgid "Calibration done"
- msgstr "Calibrare gata"
- msgid "Can't move Selector or Idler."
- msgstr "Select./Idler blocat"
- msgid "Cannot perform the action, filament is already loaded. Unload it first."
- msgstr "Nu se poate efectua actiunea, filamentul este incarcat.Descarcati-l mai intai."
- msgid "Card removed"
- msgstr "Card scos"
- msgid "Change SD card"
- msgstr "Schimba card SD"
- msgid "Change filament"
- msgstr "Schimba filamentul"
- msgid "Change success!"
- msgstr "Schimbare cu succes!"
- msgid "Changed correctly?"
- msgstr "Schimbat corect?"
- msgid "Checking X axis"
- msgstr "Verificare axa X"
- msgid "Checking Y axis"
- msgstr "Verificare axa Y"
- msgid "Checking Z axis"
- msgstr "Verificare axa Z"
- msgid "Checking bed"
- msgstr "Verificare pat"
- msgid "Checking endstops"
- msgstr "Verif. endstop-uri"
- msgid "Checking file"
- msgstr "Verif. fisier"
- msgid "Checking hotend"
- msgstr "Verificare hotend"
- msgid "Checking sensors"
- msgstr "Verificare senzori"
- msgid "Checks"
- msgstr "Verificari"
- msgid "Color not correct"
- msgstr "Culoare gresita"
- msgid "Community made"
- msgstr "Comunitate"
- msgid "Cont."
- msgstr "Cont."
- msgid "Cooldown"
- msgstr "Racire"
- msgid "Copy selected language?"
- msgstr "Copiaza limba selectata?"
- msgid "Crash"
- msgstr "Coliz."
- msgid "Crash det."
- msgstr "Det.coliziune"
- msgid "Crash detected."
- msgstr "Coliziune detectata."
- msgid ""
- "Crash detection can\n"
- "be turned on only in\n"
- "Normal mode"
- msgstr ""
- "Detect. coliziunilor\n"
- "poate fi pornita\n"
- "doar in modul normal"
- msgid "Cut filament"
- msgstr "Taie filamentul"
- msgid "Cutter"
- msgstr "Cutter"
- msgid "Date:"
- msgstr "Data:"
- msgid "Dim"
- msgstr "Minim"
- msgid "Disable"
- msgstr "Dezactiv."
- msgid "Disable steppers"
- msgstr "Oprire steppere"
- msgid "Disengaging idler"
- msgstr "Decuplare idler"
- msgid ""
- "Distance between tip of the nozzle and the bed surface has not been set yet. "
- "Please follow the manual, chapter First steps, section First layer "
- "calibration."
- msgstr ""
- "Distanta dintre varf si pat nu a fost setata. Urmariti instructiunile din "
- "manual, capitolul First steps, sectiunea First layer calibration."
- msgid ""
- "Do you want to repeat last step to readjust distance between nozzle and "
- "heatbed?"
- msgstr ""
- "Vreti sa repetati ultimul pas pentru a reajusta distanta dintre varf si "
- "suprafata de print?"
- msgid "Done"
- msgstr "Gata"
- msgid "E-correct:"
- msgstr "E-correct:"
- msgid "ERR Help filament"
- msgstr "ERR Ajutor filament"
- msgid "ERR Internal"
- msgstr "ERR intern"
- msgid "ERR TMC failed"
- msgstr "ERR TMC esuat"
- msgid "ERR Wait for User"
- msgstr "ERR Astept utilizat."
- msgid "ERROR:"
- msgstr "EROARE:"
- msgid "Eject filament"
- msgstr "Scoate filament"
- msgid "Ejecting filament"
- msgstr "Se scoate filamentul"
- msgid "Endstop"
- msgstr "Endstop"
- msgid "Endstop not hit"
- msgstr "Endstop neatins"
- msgid "Endstops"
- msgstr "Endstop-uri"
- msgid "Engaging idler"
- msgstr "Cuplare idler"
- msgid "Extruder"
- msgstr "Extruder"
- msgid "Extruder fan:"
- msgstr "Vent. extruder:"
- msgid "Extruder info"
- msgstr "Info. extruder"
- msgid "F. autoload"
- msgstr "Autoload fil."
- msgid "F. jam detect"
- msgstr "F. blocaj det"
- msgid "F. runout"
- msgstr "Fil. epuizat"
- msgid "FILAMENT ALREADY LOA"
- msgstr "FILAM. DEJA INCARCAT"
- msgid "FINDA DIDNT TRIGGER"
- msgstr "FINDA NU SA DECLANST"
- msgid ""
- "FINDA didn't switch off while unloading filament. Try unloading manually. "
- "Ensure filament can move and FINDA works."
- msgstr ""
- "FINDA nu sa oprit la descarcare Fil.Incercati descar. manuala. "
- "Asig. ca FINDA functioneaza."
- msgid ""
- "FINDA didn't trigger while loading the filament. Ensure the filament can "
- "move and FINDA works."
- msgstr "FINDA nu sa declansat in timpul incarcarii"
- "Asigurativa ca filam. se misca si FINDA functioneaza"
- "
- #. MSG_TITLE_FINDA_DIDNT_GO_OFF c=20
- #: ../../Firmware/mmu2/errors_list.h:119 ../../Firmware/mmu2/errors_list.h:157
- msgid "FINDA: FILAM. STUCK"
- msgstr "FINDA: FILAM. BLOCAT"
- msgid "FS Action"
- msgstr "Actiune FS"
- msgid "FSENSOR DIDNT TRIGG."
- msgstr "FSENZ NU SA DECLASAT"
- msgid "FSENSOR TOO EARLY"
- msgstr "FSENSOR PREA DEVREME"
- msgid "FSENSOR: FIL. STUCK"
- msgstr "FSENSOR: FIL. BLOCAT"
- msgid "FW RUNTIME ERROR"
- msgstr "Eroare FW RUNTIME"
- msgid "Fail stats"
- msgstr "Statistici erori"
- msgid "Fail stats MMU"
- msgstr "Stat. erori MMU"
- msgid "False triggering"
- msgstr "nu detect. schimbare"
- msgid "Fan speed"
- msgstr "Viteza vent."
- msgid "Fan test"
- msgstr "Test ventilator"
- msgid "Fans check"
- msgstr "Verif. vent."
- msgid "Feeding to FINDA"
- msgstr "Incarcare la FINDA"
- msgid "Feeding to FSensor"
- msgstr "Incarcare la FSensor"
- msgid "Feeding to extruder"
- msgstr "Incarc. la extruder"
- msgid "Feeding to nozzle"
- msgstr "Incarcare la varf"
- msgid "Fil. runouts"
- msgstr "Epuizari fil."
- msgid "Fil. sensor"
- msgstr "Senzor fil."
- msgid "Filament"
- msgstr "Filament"
- msgid "Filament extruding & with correct color?"
- msgstr "Fil. curge si are culoarea corecta?"
- msgid "Filament not loaded"
- msgstr "Fil. nu e incarcat"
- msgid "Filament sensor"
- msgstr "Senz. de filament"
- msgid ""
- "Filament sensor didn't switch off while unloading filament. Ensure filament "
- "can move and the sensor works."
- msgstr ""
- "Senzorul de filament nu sa oprint la descare Fil. Asigurativa ca Fil."
- "se misca si senzorul functioneaza"
- msgid ""
- "Filament sensor didn't trigger while loading the filament. Ensure the "
- "filament reached the fsensor and the sensor works."
- msgstr ""
- "Filament senzor nu sa declansast in timpul incarcarii Fil. Asigurativa"
- "ca filamentul a ajuns la fsenzor si senzorul functioneaza."
- msgid ""
- "Filament sensor triggered too early while loading to extruder. Check there "
- "isn't anything stuck in PTFE tube. Check that sensor reads properly."
- msgstr ""
- "FSenzor sa declansat prea devreme in timpul incarc. in extrud. Verifica daca"
- "nu este nimic blocat in PTFE. Verifica daca senz. funct. corect."
- msgid "Filament used"
- msgstr "Filament folosit"
- msgid "File incomplete. Continue anyway?"
- msgstr "Fisier incomplet. Continua oricum?"
- msgid "Finishing movements"
- msgstr "Finalizare miscari"
- msgid "First layer cal."
- msgstr "Cal. first layer"
- msgid "First, I will run the selftest to check most common assembly problems."
- msgstr ""
- "Mai intai, voi rula testele automate pentru a verifica cele mai intalnite "
- "probleme de asamblare."
- msgid "Flow"
- msgstr "Flow"
- msgid "Front print fan?"
- msgstr "Vent. print?"
- msgid "Front side[μm]"
- msgstr "Fata [μm]"
- msgid "Front/left fans"
- msgstr "Ventilatoarele sunt"
- msgid "G-code sliced for a different level. Continue?"
- msgstr "Versiune de G-code incorecta. Continuati?"
- msgid ""
- "G-code sliced for a different level. Please re-slice the model again. Print "
- "cancelled."
- msgstr ""
- "Versiune de G-code incorecta. Va rugam pregatiti modelul din nou. Print "
- "anulat."
- msgid "G-code sliced for a different printer type. Continue?"
- msgstr "G-code pregatit pentru un alt tip de printer. Continuati?"
- msgid ""
- "G-code sliced for a different printer type. Please re-slice the model again. "
- "Print cancelled."
- msgstr ""
- "G-code pregatit pentru un alt tip de printer. Va rugam pregatiti modelul din "
- "nou. Print anulat."
- msgid "G-code sliced for a newer firmware. Continue?"
- msgstr "G-code pregatit pentru firmware mai nou. Continuati?"
- msgid ""
- "G-code sliced for a newer firmware. Please update the firmware. Print "
- "cancelled."
- msgstr ""
- "G-code pregatit pentru firmware mai nou. Va rugam actualizati firmware-ul. "
- "Print anulat."
- msgid "Gcode"
- msgstr ""
- msgid "HW Setup"
- msgstr "Setup HW"
- msgid "Heater/Thermistor"
- msgstr "Incalzitor/Termistor"
- msgid "Heating"
- msgstr "Incalzire"
- msgid "Heating disabled by safety timer."
- msgstr "Incalzirea dezactivata de timer-ul de siguranta"
- msgid "Heating done."
- msgstr "Incalzirea gata."
- msgid ""
- "Hi, I am your Original Prusa i3 printer. I will guide you through a short "
- "setup process, in which the Z-axis will be calibrated. Then, you will be "
- "ready to print."
- msgstr ""
- "Salut, sunt imprimanta ta Original Prusa i3. Te voi ghida printr-un scurt "
- "proces de setup in care axa Z va fi calibrata. Apoi, vei fi gata sa printezi."
- msgid ""
- "Hi, I am your Original Prusa i3 printer. Would you like me to guide you "
- "through the setup process?"
- msgstr ""
- "Salut, sunt imprimanta ta Original Prusa i3. Vrei sa initiez testele "
- "automate si calibrarile?"
- msgid "High power"
- msgstr "Put. max"
- msgid "Homing"
- msgstr "Homing"
- msgid "I will run xyz calibration now. It will take approx. 12 mins."
- msgstr "Voi rula calibrarea XYZ acum. Va dura aprox. 12 minute."
- msgid "I will run z calibration now."
- msgstr "Voi rula calibrarea Z acum."
- msgid "IDLER CANNOT HOME"
- msgstr "IDLER NU REVINE"
- msgid "IDLER CANNOT MOVE"
- msgstr "IDLER NU SE MISCA"
- msgid "INVALID TOOL"
- msgstr "INSTRUMENT INVALID"
- msgid ""
- "If you have additional steel sheets, calibrate their presets in Settings - "
- "HW Setup - Steel sheets."
- msgstr ""
- "Daca ai suprafete de print suplimentare, calibreaza-le in Setari - Setup HW "
- "- Suprafete print."
- msgid "Improving bed calibration point"
- msgstr "Imbunatatirea punctului de calibrare al patului"
- msgid "Info screen"
- msgstr "Ecran informatii"
- msgid "Init. SD card"
- msgstr "Init. card SD"
- msgid "Insert filament"
- msgstr "Incarca filament"
- msgid ""
- "Insert the filament (do not load it) into the extruder and then press the "
- "knob."
- msgstr "Infige filamentul (nu-l incarca) in extruder si apasa butonul."
- msgid ""
- "Internal runtime error. Try resetting the MMU unit or updating the firmware. "
- "If the issue persists, contact support."
- msgstr ""
- "ERR de rulare interna. Incercati sa resetati unitatea MMU sau actualizati firmwarul."
- "Daca problema persista, contactati dep. support"
- msgid "Is filament loaded?"
- msgstr "Este filamentul incarcat?"
- msgid "Is steel sheet on heatbed?"
- msgstr "Este suprafata de print pe pat?"
- msgid "Iteration"
- msgstr "Iteratie"
- msgid "Last print"
- msgstr "Ultimul print"
- msgid "Last print failures"
- msgstr "Err. ultimului print"
- msgid "Left"
- msgstr "Stanga"
- msgid "Left hotend fan?"
- msgstr "Vent. hotend?"
- msgid "Left side [μm]"
- msgstr "Stanga [μm]"
- msgid "Level Bright"
- msgstr "Lum. maxim"
- msgid "Level Dimmed"
- msgstr "Lum. minim"
- msgid "Lin. correction"
- msgstr "Corectie lin."
- msgid "Live adjust Z"
- msgstr "Reglare Z live"
- msgid "Load All"
- msgstr "Incarca toate"
- msgid "Load filament"
- msgstr "Incarca filament"
- msgid "Load to extruder"
- msgstr "Incarc la extruder"
- msgid "Load to nozzle"
- msgstr "Incarca la varf"
- msgid "Loading color"
- msgstr "Incarcare culoare"
- msgid "Loading filament"
- msgstr "Incarcare filament"
- msgid "Loose pulley"
- msgstr "Fulie slabita"
- msgid "Loud"
- msgstr "Tare"
- msgid "MMU FW UPDATE NEEDED"
- msgstr "MMU UPDATE NECESAR"
- msgid "MMU Firmware internal error, please reset the MMU."
- msgstr "Intermal MMU ERR, Va rog resetati MMU."
- msgid "MMU Mode"
- msgstr "Mod MMU"
- msgid "MMU NOT RESPONDING"
- msgstr "MMU NU RASPUNDE"
- msgid "MMU Retry: Restoring temperature..."
- msgstr "MMU: Restabilirea temperaturii..."
- msgid "MMU fails"
- msgstr "Erori MMU"
- msgid "MMU load fails"
- msgstr "Err. incarc MMU"
- msgid ""
- "MMU unit not responding correctly. Check the wiring and connectors. If the "
- "issue persists, contact support."
- msgstr ""
- "Unitatea MMU nu raspunde corect. Verificati cablajul si conectorii. Daca"
- "problema persista, contactati dep. support"
- msgid ""
- "MMU unit not responding. Check the wiring and connectors. If the issue "
- "persists, contact support."
- msgstr ""
- "Unitatea MMU nu raspunde corect. Verificati cablajul si conectorii. Daca"
- "problema persista, contactati dep. support"
- msgid "MMU2 connected"
- msgstr "MMU2 conectat"
- msgid "Magnets comp."
- msgstr "Comp. magneti"
- msgid "Main"
- msgstr "Meniu principal"
- msgid "Measured skew"
- msgstr "Distorsiune"
- msgid "Measuring reference height of calibration point"
- msgstr "Masurare distanta de referinta pentru punctul de calib."
- msgid "Mesh"
- msgstr "Mesh"
- msgid "Mesh Bed Leveling"
- msgstr "Calibrare mesh"
- msgid "Mode"
- msgstr "Mod"
- msgid "Mode change in progress..."
- msgstr "Schimbare mod in progres..."
- msgid "Model"
- msgstr "Model"
- msgid "More details online."
- msgstr "Mai multe detalii online"
- msgid "More⏬"
- msgstr "More⏬"
- msgid "Motor"
- msgstr "Motor"
- msgid "Move X"
- msgstr "Miscare X"
- msgid "Move Y"
- msgstr "Miscare Y"
- msgid "Move Z"
- msgstr "Miscare Z"
- msgid "Move axis"
- msgstr "Miscare axe"
- msgid "Moving selector"
- msgstr "Miscare selector"
- msgid "N/A"
- msgstr "N/A"
- msgid "New firmware version available:"
- msgstr "Vers. de firmware noua disponibila:"
- msgid "No"
- msgstr "Nu"
- msgid "No SD card"
- msgstr "Fara card SD"
- msgid "No move."
- msgstr "Fara miscare."
- msgid "None"
- msgstr "N/A"
- msgid "Normal"
- msgstr "Normal"
- msgid "Not connected"
- msgstr "Nu este conectat"
- msgid "Not spinning"
- msgstr "Nu se roteste"
- msgid ""
- "Now I will calibrate distance between tip of the nozzle and heatbed surface."
- msgstr "Acum voi calibra distanta dintre varf si suprafata patului."
- msgid "Now I will preheat nozzle for PLA."
- msgstr "Acum voi preincalzi extruder-ul pentru PLA."
- msgid "Now remove the test print from steel sheet."
- msgstr "Acum inlaturati printul de test de pe suprafata de print."
- msgid "Nozzle"
- msgstr "Varf"
- msgid "Nozzle d."
- msgstr "Diam. varf"
- msgid "OK"
- msgstr "OK"
- msgid "Off"
- msgstr "Off"
- msgid "Old settings found. Default PID, Esteps etc. will be set."
- msgstr "Setari vechi detectate. PID, Esteps etc. de baza vor fi setate."
- msgid "On"
- msgstr "On"
- msgid "Once"
- msgstr "O data"
- msgid "PAUSED THERMAL ERROR"
- msgstr "OPRIT THERMAL ERROR"
- msgid "PID cal."
- msgstr "Calibrare PID"
- msgid "PID cal. finished"
- msgstr "Calibrare PID gata"
- msgid "PID calibration"
- msgstr "Calibrare PID"
- msgid "PINDA Heating"
- msgstr "Incalzire PINDA"
- msgid "PINDA cal."
- msgstr "Cal. PINDA"
- msgid "PINDA calibration failed"
- msgstr "Calibrarea temperaturii a esuat"
- msgid ""
- "PINDA calibration is finished and active. It can be disabled in menu "
- "Settings->PINDA cal."
- msgstr ""
- "Calibrarea PINDA s-a terminat si este activa. Poate fi dezactivata din "
- "meniul Setari->Cal. PINDA"
- msgid "PULLEY CANNOT MOVE"
- msgstr "PULLEY NU SE MISCA"
- msgid "Parking selector"
- msgstr "Parcare selector"
- msgid "Pause"
- msgstr "Pauza"
- msgid "Pause print"
- msgstr "Pauza print"
- msgid "Performing cut"
- msgstr "Taiere"
- msgid ""
- "Place a sheet of paper under the nozzle during the calibration of first 4 "
- "points. If the nozzle catches the paper, power off the printer immediately."
- msgstr ""
- "Asezati o foaie de hartie sub varf in timpul calibrarii primelor 4 puncte. "
- "Daca varful prinde hartia, opriti imediat imprimanta."
- msgid ""
- "Please check our handbook and fix the problem. Then resume the Wizard by "
- "rebooting the printer."
- msgstr ""
- "Va rugam verificati handbook-ul si rezolvati problema. Apoi reluati Wizard-"
- "ul repornind imprimanta."
- msgid "Please check the IR sensor connection, unload filament if present."
- msgstr "Verificati senzorul IR, scoateti filamentul daca exista."
- msgid "Please check:"
- msgstr "Verificati:"
- msgid "Please clean heatbed and then press the knob."
- msgstr "Curatati patul si apoi apasati butonul pentru a continua."
- msgid "Please clean the nozzle for calibration. Click when done."
- msgstr "Curatati varful pentru calibrare. Apasati butonul cand terminati."
- msgid ""
- "Please insert filament into the extruder, then press the knob to load it."
- msgstr ""
- "Va rugam introduceti filamentul in extruder apoi apasati butonul pentru a-l "
- "incarca."
- msgid ""
- "Please insert filament into the first tube of the MMU, then press the knob "
- "to load it."
- msgstr ""
- "Va rugam introduceti filamentul in primul tub al MMU apoi apsati butonul "
- "pentru a-l incarca."
- msgid "Please load filament first."
- msgstr "Va rugam incarcati filamentul mai intai."
- msgid "Please open idler and remove filament manually."
- msgstr "Deschideti idler-ul si scoateti filamentul manual."
- msgid "Please place steel sheet on heatbed."
- msgstr "Asezati suprafata de print pe pat."
- msgid "Please press the knob to unload filament"
- msgstr "Apasati butonul pentru a scoate filamentul."
- msgid "Please pull out filament immediately"
- msgstr "Va rugam scoateti filamentul imediat"
- msgid "Please remove shipping helpers first."
- msgstr "Va rugam scoateti protectiile de transport mai intai."
- msgid "Please remove steel sheet from heatbed."
- msgstr "Va rugam indepartati suprafata de print de pe pat."
- msgid "Please run XYZ calibration first."
- msgstr "Va rugam rulati calibrarea XYZ mai intai."
- msgid "Please unload the filament first, then repeat this action."
- msgstr "Va rugam mai intai sa scoateti filamentul, apoi incercati din nou."
- msgid "Please upgrade."
- msgstr "Va rugam actualizati"
- msgid "Please wait"
- msgstr "Va rog asteptati"
- msgid "Power failures"
- msgstr "Err. alimentare"
- msgid "Preheat"
- msgstr "Preincalzire"
- msgid "Preheat the nozzle!"
- msgstr "Preincalziti varful!"
- msgid "Preheating nozzle. Please wait."
- msgstr "Preincalzire extruder. Asteptati, va rugam."
- msgid "Preheating to cut"
- msgstr "Preincalzire..."
- msgid "Preheating to eject"
- msgstr "Preincalzire..."
- msgid "Preheating to load"
- msgstr "Preincalzire load"
- msgid "Preheating to unload"
- msgstr "Preincalzire unload"
- msgid "Preparing blade"
- msgstr "Pregatire lama"
- msgid "Press the knob"
- msgstr "Apasati butonul"
- msgid "Press the knob to preheat nozzle and continue."
- msgstr "Apasati butonul pentru a preincalzi extruder-ul si continuati."
- msgid "Print aborted"
- msgstr "Print anulat"
- msgid "Print fan:"
- msgstr "Vent. print:"
- msgid "Print from SD"
- msgstr "Printare de pe SD"
- msgid "Print paused"
- msgstr "Print oprit"
- msgid "Print time"
- msgstr "Durata print"
- msgid "Printer IP Addr:"
- msgstr "IP imprimanta:"
- msgid ""
- "Printer has not been calibrated yet. Please follow the manual, chapter First "
- "steps, section Calibration flow."
- msgstr ""
- "Imprimanta nu a fost calibrata inca. Va rugam sa folositi manualul, "
- "capitolul First steps, sectiunea Calibration flow."
- msgid "Printer nozzle diameter differs from the G-code. Continue?"
- msgstr "Diametrul varfului este diferit de cel din G-code. Continuati?"
- msgid ""
- "Printer nozzle diameter differs from the G-code. Please check the value in "
- "settings. Print cancelled."
- msgstr ""
- "Diametrul varfului este diferit de cel din G-code. Va rugam verificati "
- "valoarea in setari. Print anulat."
- msgid "Pulley motor stalled. Ensure the pulley can move and check the wiring."
- msgstr "Motorul Pully sa blocat. Asigurativa ca scripetele se poate misca si verificati cablajul."
- msgid "Pushing filament"
- msgstr "Introducere filament"
- msgid "QUEUE FULL"
- msgstr "QUEUE PLIN"
- msgid "RPi port"
- msgstr "Port RPi"
- msgid "Rear side [μm]"
- msgstr "Spate [μm]"
- msgid "Recovering print"
- msgstr "Recuperare print"
- msgid "Remove old filament and press the knob to start loading new filament."
- msgstr ""
- "Scoateti filamentul vechi si apasati butonul pentru a incarca filamentul nou."
- msgid "Rename"
- msgstr "Redenumeste"
- msgid ""
- "Requested filament tool is not available on this hardware. Check the G-code "
- "for tool index out of range (T0-T4)."
- msgstr ""
- "Instrumentul de Fil. solicitat nu este disponibil pe acest hardware. Verifica"
- "G-codul ptr indexul instrum. in afara intervalului (T0-T4)."
- msgid "Reset"
- msgstr "Reset."
- msgid "Reset MMU"
- msgstr "Reset MMU"
- msgid "Reset XYZ calibr."
- msgstr "Reset. calibr. XYZ"
- msgid "Resume print"
- msgstr "Continua print"
- msgid "Resuming print"
- msgstr "Reluare print..."
- msgid "Retract from FINDA"
- msgstr "Retract de la FINDA"
- msgid "Retry"
- msgstr "Retry"
- msgid "Returning selector"
- msgstr "Returnare selector"
- msgid "Right"
- msgstr "Dreapta"
- msgid "Right side[μm]"
- msgstr "Dreapta [μm]"
- msgid ""
- "Running Wizard will delete current calibration results and start from the "
- "beginning. Continue?"
- msgstr ""
- "Rularea Wizard-ului va sterge rezultatele curente ale calibrarii si va porni "
- "de la inceput. Continuati?"
- msgid "SD card"
- msgstr "Card SD"
- msgid "SELECTOR CANNOT HOME"
- msgstr "SELECTOR NU REVINE"
- msgid "SELECTOR CANNOT MOVE"
- msgstr "SELECTOR NU SE MISCA"
- msgid "STOPPED."
- msgstr "OPRIT."
- msgid "Searching bed calibration point"
- msgstr "Se cauta punctele de calibrare"
- msgid "Select"
- msgstr "Selecteaza"
- msgid ""
- "Select a filament for the First Layer Calibration and select it in the on-"
- "screen menu."
- msgstr ""
- "Alegeti un filament pentru First Layer Calibration si selectati-l de pe "
- "ecran."
- msgid "Select extruder:"
- msgstr "Alege extruderul:"
- msgid "Select filament:"
- msgstr "Select. filamentul:"
- msgid "Select language"
- msgstr "Selectati limba"
- msgid "Select nozzle preheat temperature which matches your material."
- msgstr ""
- "Selectati temperatura de preheat a extruder-ului pentru materialul ales."
- msgid "Select temperature which matches your material."
- msgstr "Selectati temp. potrivita pentru materialul curent."
- msgid "Selecting fil. slot"
- msgstr "Selectare slot fil."
- msgid "Self test OK"
- msgstr "Testare automata OK"
- msgid "Self test start"
- msgstr "Start Autotestare"
- msgid "Selftest"
- msgstr "Testare automata"
- msgid "Selftest error!"
- msgstr "Err. test. automata!"
- msgid "Selftest failed"
- msgstr "Autotestare esuata"
- msgid "Selftest will be run to calibrate accurate sensorless rehoming."
- msgstr ""
- "Testarea automata va fi rulata pentru a calibra sensorless rehoming-ul."
- msgid "Sensor info"
- msgstr "Info. senzori"
- msgid "Sensor verified, remove the filament now."
- msgstr "Senzorul a fost verificat, scoate filamentul."
- msgid "Set temperature:"
- msgstr "Setati temperatura:"
- msgid "Settings"
- msgstr "Setari"
- msgid "Severe skew"
- msgstr "Dist. severa"
- msgid "Sheet"
- msgstr "Suprafata"
- msgid ""
- "Sheet %.7s\n"
- "Z offset: %+1.3fmm\n"
- "%cContinue\n"
- "%cReset"
- msgstr ""
- "Suprafata %.7s\n"
- "Z offset: %+1.3fmm\n"
- "%cContinua\n"
- "%cReset."
- msgid "Show end stops"
- msgstr "Stare endstop-uri"
- msgid "Silent"
- msgstr "Silent."
- msgid "Slight skew"
- msgstr "Dist. usoara"
- msgid ""
- "Some files will not be sorted. Max. No. of files in 1 folder for sorting is "
- "100."
- msgstr ""
- "Unele fisiere nu au putut fi sortate. Nr. maxim de fisiere intr-un folder "
- "care pot fi sortate este 100."
- msgid "Some problem encountered, Z-leveling enforced ..."
- msgstr "A fost intalnita o problema, calibrarea Z a fost initiata..."
- msgid "Sort"
- msgstr "Sortare"
- msgid "Sorting files"
- msgstr "Sortare fisiere..."
- msgid "Sound"
- msgstr "Sunet"
- msgid "Speed"
- msgstr "Viteza"
- msgid "Spinning"
- msgstr "Se roteste"
- msgid "Stable ambient temperature 21-26C is needed a rigid stand is required."
- msgstr ""
- "Temp. ambient. stabila (21-26C) si o suprafata de lucru rigida necesare."
- msgid "Statistics"
- msgstr "Statistici"
- msgid "Stealth"
- msgstr "Silent."
- msgid "Steel sheets"
- msgstr "Suprafete print"
- msgid "Stop"
- msgstr "Stop"
- msgid "Stop print"
- msgstr "Oprire print"
- msgid "Strict"
- msgstr "Strict"
- msgid "Support"
- msgstr "Informatii"
- msgid "Swapped"
- msgstr "inversate"
- msgid "THERMAL ANOMALY"
- msgstr "ANOMALIE TERMICA"
- msgid "TM autotune failed"
- msgstr "Autotune TM esuat"
- msgid "TMC DRIVER ERROR"
- msgstr "Eroare driver TMC"
- msgid "TMC DRIVER RESET"
- msgstr "Reset driver TMC"
- msgid "TMC DRIVER SHORTED"
- msgstr "DRIVER TMC IN SCURT"
- msgid "TMC OVERHEAT ERROR"
- msgstr "ERR TMC supraincalz."
- msgid "TMC UNDERVOLTAGE ERR"
- msgstr "ERR subtensiune TMC"
- msgid "Temp. model autotune"
- msgstr "Temp. model autotune"
- msgid "Temperature"
- msgstr "Temperatura"
- msgid "Temperatures"
- msgstr "Temperaturi"
- msgid "Testing filament"
- msgstr "Testare filament"
- msgid ""
- "The Idler cannot home properly. Check for anything blocking its movement."
- msgstr "Idler-ul nu poate reveni corect. Verificati daca exista ceva care blocheza miscarea."
- msgid ""
- "The MMU unit reports its FW version incompatible with the printer's "
- "firmware. Make sure the MMU firmware is up to date."
- msgstr ""
- "Versiune FW MMU este incompatibil cu cea a imprimantei."
- "Asigurati-va ca FW MMU este actualizat."
- msgid ""
- "The Selector cannot home properly. Check for anything blocking its movement."
- msgstr "Selector-ul nu poate reveni corect. Verificati daca exista ceva care blocheza"
- "miscarea."
- msgid ""
- "The printer will start printing a zig-zag line. Rotate the knob until you "
- "reach the optimal height. Check the pictures in the handbook (Calibration "
- "chapter)."
- msgstr ""
- "Imprimanta va printa o linie zig-zag. Rotiti butonul pana cand ajungeti la "
- "inaltimea optima. Folositi pozele din handbook (capitolul Calibration)."
- msgid ""
- "There is still a need to make Z calibration. Please follow the manual, "
- "chapter First steps, section Calibration flow."
- msgstr ""
- "Inca este nevoie de calibrarea Z. Va rugam urmariti manualul, capitolul "
- "First steps, sectiunea Calibration flow."
- msgid "Time"
- msgstr "Data"
- msgid "Timeout"
- msgstr "Timeout"
- msgid "Total"
- msgstr "Total"
- msgid "Total failures"
- msgstr "Total erori"
- msgid "Total filament"
- msgstr "Filament total"
- msgid "Total print time"
- msgstr "Durata totala print"
- msgid "Tune"
- msgstr "Optiuni"
- msgid "UNLOAD MANUALLY"
- msgstr "DESCARCARE MANUALA"
- msgid ""
- "Unexpected FINDA reading. Ensure no filament is under FINDA and the selector "
- "is free. Check FINDA connection."
- msgstr ""
- "Citire FINDA neasteptata.Asig. ca nu este Fil. sub FINDA si SELECTOR"
- "Verifica conexiune FINDA"
- msgid "Unload"
- msgstr "Unload"
- msgid "Unload filament"
- msgstr "Descarca filam."
- msgid "Unloading filament"
- msgstr "Scoatere filament"
- msgid "Unloading to FINDA"
- msgstr "Scoatere la FINDA"
- msgid "Unloading to pulley"
- msgstr "Scoatere la pully"
- msgid "Verification failed, remove the filament and try again."
- msgstr "Verificarea a esuat, scoateti filamentul si incercati din nou."
- msgid "Voltages"
- msgstr "Voltaje"
- msgid "WARNING TMC TOO HOT"
- msgstr "TMC SUPRAINCALZIT"
- msgid ""
- "WARNING:\n"
- "Crash detection\n"
- "disabled in\n"
- "Stealth mode"
- msgstr ""
- "ATENTIE:\n"
- "Detect. coliziunilor\n"
- "este oprita in\n"
- "modul silentios"
- msgid "Wait for user..."
- msgstr "Se asteapta..."
- msgid "Waiting for PINDA probe cooling"
- msgstr "Se asteapta racirea probei PINDA"
- msgid "Waiting for nozzle and bed cooling"
- msgstr "Se ateapta racirea extruder-ului si a patului"
- msgid "Warn"
- msgstr "Avert."
- msgid "Warning: both printer type and motherboard type changed."
- msgstr "Atentie: tipul imprimantei si al placii de baza s-a schimbat."
- msgid "Warning: motherboard type changed."
- msgstr "Atentie: tipul placii de baza s-a schimbat."
- msgid "Warning: printer type changed."
- msgstr "Atentie: tipul imprimantei s-a schimbat."
- msgid "Was filament unload successful?"
- msgstr "Filamentul a fost scos cu succes?"
- msgid "Wiring error"
- msgstr "Eroare de cablare"
- msgid "Wizard"
- msgstr "Wizard"
- msgid "X-correct:"
- msgstr "Corect. X:"
- msgid "XFLASH init"
- msgstr "Init XFLASH"
- msgid "XYZ cal. details"
- msgstr "Detalii cal. XYZ"
- msgid "XYZ calibration all right. Skew will be corrected automatically."
- msgstr "Calibrarea XYZ in regula. Distorsiunea va fi corectata automat."
- msgid "XYZ calibration all right. X/Y axes are slightly skewed. Good job!"
- msgstr ""
- "Calibrarea XYZ in regula. Axele X/Y sunt distorsionate putin. Felicitari!"
- msgid "XYZ calibration compromised. Front calibration points not reachable."
- msgstr ""
- "Calibrarea XYZ compromisa. Punctele de calibrare din fata nu pot fi atinse."
- msgid ""
- "XYZ calibration compromised. Left front calibration point not reachable."
- msgstr "Calibrarea XYZ compromisa. Punctele de calibrare din fata stanga nu pot fi"
- "atinse."
- msgid ""
- "XYZ calibration compromised. Right front calibration point not reachable."
- msgstr ""
- "Calibrarea XYZ compromisa. Punctele de calibrare din fata dreapta nu pot fi "
- "atinse."
- msgid "XYZ calibration failed. Bed calibration point was not found."
- msgstr ""
- "Calibrarea XYZ a esuat. Un punct de calibrare a patului nu a fost gasit."
- msgid "XYZ calibration failed. Front calibration points not reachable."
- msgstr ""
- "Calibrarea XYZ a esuat. Punctele de calibrare din fata nu pot fi atinse."
- msgid "XYZ calibration failed. Left front calibration point not reachable."
- msgstr ""
- msgid "XYZ calibration failed. Please consult the manual."
- msgstr "Calibrarea XYZ a esuat. Va rugam consultati manualul."
- msgid "XYZ calibration failed. Right front calibration point not reachable."
- msgstr ""
- "Calibrarea XYZ a esuat. Punctele de calibrare din fata dreapta nu pot fi "
- "atinse."
- msgid "XYZ calibration ok. X/Y axes are perpendicular. Congratulations!"
- msgstr "Calibrarea XYZ ok. Axele X/Y sunt perpendiculare. Felicitari!"
- msgid "Y distance from min"
- msgstr "Distanta Y de la min"
- msgid "Y-correct:"
- msgstr "Corect. Y:"
- msgid "Yes"
- msgstr "Da"
- msgid ""
- "You are using firmware alpha version. This is development version. Using "
- "this version is not recommended and may cause printer damage."
- msgstr ""
- "Utilizati vers.alfa de FW. Acesta este vers. de dezvoltare. Folosind"
- "aceasta versiune nu este recomandata si poate cauza deteriorarea imprimantei"
- msgid ""
- "You are using firmware beta version. This is development version. Using this "
- "version is not recommended and may cause printer damage."
- msgstr ""
- "Utilizati vers. beta de FW. Acesta este vers. de dezvoltare. Folosind"
- "aceasta versiune nu este recomandata si poate cauza deteriorarea imprimantei"
- msgid "You can always resume the Wizard from Calibration -> Wizard."
- msgstr "Puteti oricand sa reluati Wizard-ul din Calibrare -> Wizard."
- msgid "Z-correct:"
- msgstr "Corect. Z:"
- msgid "Z-probe nr."
- msgstr "Nr. Z-probe"
- msgid "[0;0] point offset"
- msgstr "compensare origine"
- msgid "and press the knob"
- msgstr "si apasa butonul"
- msgid "to load filament"
- msgstr "a incarca filament"
- msgid "to unload filament"
- msgstr "a scoate filament"
- msgid "unknown"
- msgstr "necunoscut"
- msgid "unknown state"
- msgstr "vers. necunoscuta"
- msgid "🔃Refresh"
- msgstr "🔃Reimprospata"
|