cura.po 168 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606
  1. msgid ""
  2. msgstr ""
  3. "Project-Id-Version: PACKAGE VERSION\n"
  4. "Report-Msgid-Bugs-To: \n"
  5. "POT-Creation-Date: 2024-03-13 09:02+0100\n"
  6. "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
  7. "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
  8. "Language-Team: LANGUAGE <LL@li.org>\n"
  9. "Language: nl_NL\n"
  10. "MIME-Version: 1.0\n"
  11. "Content-Type: text/plain; charset=UTF-8\n"
  12. "Content-Transfer-Encoding: 8bit\n"
  13. "Plural-Forms: nplurals=2; plural=n != 1;\n"
  14. msgctxt "@info 'width', 'depth' and 'height' are variable names that must NOT be translated; just translate the format of ##x##x## mm."
  15. msgid "%(width).1f x %(depth).1f x %(height).1f mm"
  16. msgstr "%(width).1f x %(depth).1f x %(height).1f mm"
  17. msgctxt "@action:label"
  18. msgid "%1 & material"
  19. msgstr "%1 &materiaal"
  20. msgctxt "@action:label"
  21. msgid "%1 out of %2"
  22. msgstr "%1 van %2"
  23. msgctxt "@action:label"
  24. msgid "%1 override"
  25. msgid_plural "%1 overrides"
  26. msgstr[0] "%1 overschrijving"
  27. msgstr[1] "%1 overschrijvingen"
  28. msgctxt "@action:label"
  29. msgid "%1, %2 override"
  30. msgid_plural "%1, %2 overrides"
  31. msgstr[0] "%1, %2 overschrijving"
  32. msgstr[1] "%1, %2 overschrijvingen"
  33. msgctxt "@label g for grams"
  34. msgid "%1g"
  35. msgstr "%1g"
  36. msgctxt "@label m for meter"
  37. msgid "%1m"
  38. msgstr "%1m"
  39. msgctxt "@action:inmenu menubar:printer"
  40. msgid "&Add Printer..."
  41. msgstr "&Printer Toevoegen..."
  42. msgctxt "@action:inmenu menubar:view"
  43. msgid "&Camera position"
  44. msgstr "&Camerapositie"
  45. msgctxt "@action:inmenu menubar:profile"
  46. msgid "&Create profile from current settings/overrides..."
  47. msgstr "Profiel maken op basis van huidige instellingen/overs&chrijvingen..."
  48. msgctxt "@action:inmenu menubar:profile"
  49. msgid "&Discard current changes"
  50. msgstr "Hui&dige wijzigingen verwijderen"
  51. msgctxt "@title:menu menubar:toplevel"
  52. msgid "&Edit"
  53. msgstr "B&ewerken"
  54. msgctxt "@title:menu menubar:file"
  55. msgid "&Export..."
  56. msgstr "&Exporteren..."
  57. msgctxt "@title:menu menubar:toplevel"
  58. msgid "&File"
  59. msgstr "&Bestand"
  60. msgctxt "@action:inmenu menubar:edit"
  61. msgid "&Group Models"
  62. msgstr "Modellen &Groeperen"
  63. msgctxt "@title:menu menubar:toplevel"
  64. msgid "&Help"
  65. msgstr "&Help"
  66. msgctxt "@title:menu"
  67. msgid "&Material"
  68. msgstr "&Materiaal"
  69. msgctxt "@action:inmenu menubar:edit"
  70. msgid "&Merge Models"
  71. msgstr "Modellen Samen&voegen"
  72. msgctxt "@action:inmenu"
  73. msgid "&Multiply Model..."
  74. msgstr "&Model verveelvoudigen..."
  75. msgctxt "@action:inmenu menubar:file"
  76. msgid "&New Project..."
  77. msgstr "&Nieuw project..."
  78. msgctxt "@action:inmenu menubar:file"
  79. msgid "&Open File(s)..."
  80. msgstr "Bestand(en) &openen..."
  81. msgctxt "@title:menu menubar:settings"
  82. msgid "&Printer"
  83. msgstr "&Printer"
  84. msgctxt "@action:inmenu menubar:file"
  85. msgid "&Quit"
  86. msgstr "&Afsluiten"
  87. msgctxt "@action:inmenu menubar:edit"
  88. msgid "&Redo"
  89. msgstr "&Opnieuw"
  90. msgctxt "@title:menu menubar:file"
  91. msgid "&Save Project..."
  92. msgstr "&Project opslaan..."
  93. msgctxt "@title:menu menubar:file Don't translate 'Universal Cura Project'"
  94. msgid "&Save Universal Cura Project..."
  95. msgstr "& Universal Cura Project opslaan..."
  96. msgctxt "@title:menu menubar:toplevel"
  97. msgid "&Settings"
  98. msgstr "In&stellingen"
  99. msgctxt "@action:inmenu menubar:edit"
  100. msgid "&Undo"
  101. msgstr "Ongedaan &Maken"
  102. msgctxt "@action:inmenu menubar:profile"
  103. msgid "&Update profile with current settings/overrides"
  104. msgstr "Profiel bijwerken met h&uidige instellingen/overschrijvingen"
  105. msgctxt "@title:menu menubar:toplevel"
  106. msgid "&View"
  107. msgstr "Beel&d"
  108. msgctxt "@label"
  109. msgid "*You will need to restart the application for these changes to have effect."
  110. msgstr "*U moet de toepassing opnieuw starten voordat deze wijzigingen van kracht worden."
  111. msgctxt "@text"
  112. msgid "- Add material profiles and plug-ins from the Marketplace\n- Back-up and sync your material profiles and plug-ins\n- Share ideas and get help from 48,000+ users in the UltiMaker community"
  113. msgstr "- Voeg materiaalprofielen en plug-ins toe uit de Marktplaats"
  114. "- Maak back-ups van uw materiaalprofielen en plug-ins en synchroniseer deze"
  115. "- Deel ideeën met 48.000+ gebruikers in de Ultimaker-community of vraag hen om ondersteuning"
  116. msgctxt "@heading"
  117. msgid "-- incomplete --"
  118. msgstr "-- onvolledig --"
  119. msgctxt "@action:label"
  120. msgid "1mm Transmittance (%)"
  121. msgstr "Transmissie 1 mm (%)"
  122. msgctxt "@info:title"
  123. msgid "3D Model Assistant"
  124. msgstr "3D-modelassistent"
  125. msgctxt "@action:inmenu menubar:view"
  126. msgid "3D View"
  127. msgstr "3D-weergave"
  128. msgctxt "@info:tooltip"
  129. msgid "3D View"
  130. msgstr "3D-weergave"
  131. msgctxt "@item:inlistbox"
  132. msgid "3MF File"
  133. msgstr "3MF-bestand"
  134. msgctxt "@error:zip"
  135. msgid "3MF Writer plug-in is corrupt."
  136. msgstr "3MF-schrijverplug-in is beschadigd."
  137. msgctxt "@item:inlistbox"
  138. msgid "3MF file"
  139. msgstr "3MF-bestand"
  140. msgctxt "@info, %1 is the name of the custom profile"
  141. msgid "<b>%1</b> custom profile is active and you overwrote some settings."
  142. msgstr "<b>%1</b> aangepast profiel is actief en u hebt bepaalde instellingen overschreven."
  143. msgctxt "@info, %1 is the name of the custom profile"
  144. msgid "<b>%1</b> custom profile is overriding some settings."
  145. msgstr "<b>%1</b> aangepast profiel overschrijft sommige instellingen."
  146. msgctxt "@label %i will be replaced with a profile name"
  147. msgid "<b>Only user changed settings will be saved in the custom profile.</b><br/>For materials that support it, the new custom profile will inherit properties from <b>%1</b>."
  148. msgstr "<b>Alleen door de gebruiker gewijzigde instellingen worden opgeslagen in het aangepast profiel. </b><br/>Voor materialen die dit ondersteunen, neemt het nieuwe aangepaste profiel eigenschappen over van <b>%1</b> ."
  149. msgctxt "@label OpenGL renderer"
  150. msgid "<li>OpenGL Renderer: {renderer}</li>"
  151. msgstr "<li>OpenGL-renderer: {renderer}</li>"
  152. msgctxt "@label OpenGL vendor"
  153. msgid "<li>OpenGL Vendor: {vendor}</li>"
  154. msgstr "<li>OpenGL-leverancier: {vendor}</li>"
  155. msgctxt "@label OpenGL version"
  156. msgid "<li>OpenGL Version: {version}</li>"
  157. msgstr "<li>OpenGL-versie: {version}</li>"
  158. msgctxt "@label crash message"
  159. msgid "<p><b>A fatal error has occurred in Cura. Please send us this Crash Report to fix the problem</p></b>\n <p>Please use the \"Send report\" button to post a bug report automatically to our servers</p>\n "
  160. msgstr "<p><b>Er is een fatale fout opgetreden in Cura. Stuur ons het crashrapport om het probleem op te lossen</p></b>"
  161. " <p>Druk op de knop &quot;Rapport verzenden&quot; om het foutenrapport automatisch naar onze servers te verzenden</p>"
  162. " "
  163. msgctxt "@label crash message"
  164. msgid "<p><b>Oops, UltiMaker Cura has encountered something that doesn't seem right.</p></b>\n <p>We encountered an unrecoverable error during start up. It was possibly caused by some incorrect configuration files. We suggest to backup and reset your configuration.</p>\n <p>Backups can be found in the configuration folder.</p>\n <p>Please send us this Crash Report to fix the problem.</p>\n "
  165. msgstr "<p><b>Oeps, UltiMaker Cura heeft een probleem gedetecteerd.</p></b>"
  166. " <p>Tijdens het opstarten is een onherstelbare fout opgetreden. Deze fout is mogelijk veroorzaakt door enkele onjuiste configuratiebestanden. Het wordt aanbevolen een back-up te maken en de standaardinstelling van uw configuratie te herstellen.</p>"
  167. " <p>Back-ups bevinden zich in de configuratiemap.</p>"
  168. " <p>Stuur ons dit crashrapport om het probleem op te lossen.</p>"
  169. " "
  170. msgctxt "@info:status"
  171. msgid "<p>One or more 3D models may not print optimally due to the model size and material configuration:</p>\n<p>{model_names}</p>\n<p>Find out how to ensure the best possible print quality and reliability.</p>\n<p><a href=\"https://ultimaker.com/3D-model-assistant\">View print quality guide</a></p>"
  172. msgstr "<p>Een of meer 3D-modellen worden mogelijk niet optimaal geprint vanwege het modelformaat en de materiaalconfiguratie:</p>"
  173. "<p>{model_names}</p>"
  174. "<p>Ontdek hoe u de best mogelijke printkwaliteit en betrouwbaarheid verkrijgt.</p>"
  175. "<p><a href=”https://ultimaker.com/3D-model-assistant”>Handleiding printkwaliteit bekijken</a></p>"
  176. msgctxt "@label"
  177. msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?"
  178. msgstr "Er wordt momenteel via USB geprint. Wanneer u Cura afsluit, wordt het printen gestopt. Weet u zeker dat u wilt afsluiten?"
  179. msgctxt "info:status"
  180. msgid "A cloud connection is not available for a printer"
  181. msgid_plural "A cloud connection is not available for some printers"
  182. msgstr[0] "Een cloudverbinding is niet beschikbaar voor een printer"
  183. msgstr[1] "Een cloudverbinding is niet beschikbaar voor meerdere printers"
  184. msgctxt "@text"
  185. msgid "A highly dense and strong part but at a slower print time. Great for functional parts."
  186. msgstr "Een zeer dicht en sterk onderdeel, maar met een langere printtijd. Zeer geschikt voor functionele onderdelen."
  187. msgctxt "@message"
  188. msgid "A print is still in progress. Cura cannot start another print via USB until the previous print has completed."
  189. msgstr "Er wordt nog een print afgedrukt. Cura kan pas een nieuwe print via USB starten zodra de vorige print is voltooid."
  190. msgctxt "@item:inlistbox"
  191. msgid "AMF File"
  192. msgstr "AMF-bestand"
  193. msgctxt "@label"
  194. msgid "Abort"
  195. msgstr "Afbreken"
  196. msgctxt "@label"
  197. msgid "Abort Print"
  198. msgstr "Printen Afbreken"
  199. msgctxt "@window:title"
  200. msgid "Abort print"
  201. msgstr "Printen afbreken"
  202. msgctxt "@label:status"
  203. msgid "Aborted"
  204. msgstr "Afgebroken"
  205. msgctxt "@label"
  206. msgid "Aborting..."
  207. msgstr "Afbreken..."
  208. msgctxt "@label:status"
  209. msgid "Aborting..."
  210. msgstr "Afbreken..."
  211. msgctxt "@title:window The argument is the application name."
  212. msgid "About %1"
  213. msgstr "Ongeveer %1"
  214. msgctxt "@action:inmenu menubar:help"
  215. msgid "About..."
  216. msgstr "Over..."
  217. msgctxt "@button"
  218. msgid "Accept"
  219. msgstr "Ja, ik ga akkoord"
  220. msgctxt "@label"
  221. msgid "Account synced"
  222. msgstr "Account gesynchroniseerd"
  223. msgctxt "@label:status"
  224. msgid "Action required"
  225. msgstr "Handeling nodig"
  226. msgctxt "@action:button"
  227. msgid "Activate"
  228. msgstr "Activeren"
  229. msgctxt "@label"
  230. msgid "Active print"
  231. msgstr "Actieve print"
  232. msgctxt "@action:button"
  233. msgid "Add"
  234. msgstr "Toevoegen"
  235. msgctxt "@button"
  236. msgid "Add"
  237. msgstr "Toevoegen"
  238. msgctxt "@action:button"
  239. msgid "Add New"
  240. msgstr "Nieuwe toevoegen"
  241. msgctxt "@title:window"
  242. msgid "Add Printer"
  243. msgstr "Printer Toevoegen"
  244. msgctxt "@button"
  245. msgid "Add UltiMaker printer via Digital Factory"
  246. msgstr "UltiMaker printer toevoegen via Digital Factory"
  247. msgctxt "@label"
  248. msgid "Add a Cloud printer"
  249. msgstr "Een cloudprinter toevoegen"
  250. msgctxt "@label"
  251. msgid "Add a networked printer"
  252. msgstr "Een netwerkprinter toevoegen"
  253. msgctxt "@label"
  254. msgid "Add a non-networked printer"
  255. msgstr "Een niet-netwerkprinter toevoegen"
  256. msgctxt "@action"
  257. msgid "Add a script"
  258. msgstr "Een script toevoegen"
  259. msgctxt "@option:check"
  260. msgid "Add icon to system tray *"
  261. msgstr "Pictogram toevoegen aan systeemvak *"
  262. msgctxt "@button"
  263. msgid "Add local printer"
  264. msgstr "Een printer toevoegen"
  265. msgctxt "@option:check"
  266. msgid "Add machine prefix to job name"
  267. msgstr "Machinevoorvoegsel toevoegen aan taaknaam"
  268. msgctxt "@text"
  269. msgid "Add material settings and plugins from the Marketplace"
  270. msgstr "Voeg materiaalinstellingen en plugins uit de Marktplaats toe"
  271. msgctxt "@action:inmenu Marketplace is a brand name of UltiMaker's, so don't translate."
  272. msgid "Add more materials from Marketplace"
  273. msgstr "Meer materialen toevoegen van Marketplace"
  274. msgctxt "@button"
  275. msgid "Add printer"
  276. msgstr "Printer toevoegen"
  277. msgctxt "@label"
  278. msgid "Add printer"
  279. msgstr "Printer toevoegen"
  280. msgctxt "@label"
  281. msgid "Add printer by IP"
  282. msgstr "Printer toevoegen op IP"
  283. msgctxt "@label"
  284. msgid "Add printer by IP address"
  285. msgstr "Een printer toevoegen op IP-adres"
  286. msgctxt "@button"
  287. msgid "Add printer manually"
  288. msgstr "Printer handmatig toevoegen"
  289. msgctxt "info:status Filled in with printer name and printer model."
  290. msgid "Adding printer {name} ({model}) from your account"
  291. msgstr "Printer {name} ({model}) toevoegen vanaf uw account"
  292. msgctxt "@label"
  293. msgid "Address"
  294. msgstr "Adres"
  295. msgctxt "@label"
  296. msgid "Adhesion"
  297. msgstr "Hechting"
  298. msgctxt "@label"
  299. msgid "Adhesion Information"
  300. msgstr "Gegevens Hechting"
  301. msgctxt "@label"
  302. msgid "Adjusts the density of infill of the print."
  303. msgstr "Past de vuldichtheid van de print aan."
  304. msgctxt "support_type description"
  305. msgid "Adjusts the placement of the support structures. The placement can be set to touching build plate or everywhere. When set to everywhere the support structures will also be printed on the model."
  306. msgstr "Past de plaatsing van de supportstructuur aan. De plaatsing kan worden ingesteld op Platform aanraken of Overal. Wanneer deze optie ingesteld is op Overal, worden de supportstructuren ook op het model geprint."
  307. msgctxt "@label Header for list of settings."
  308. msgid "Affected By"
  309. msgstr "Beïnvloed door"
  310. msgctxt "@label Header for list of settings."
  311. msgid "Affects"
  312. msgstr "Beïnvloedt"
  313. msgctxt "@button"
  314. msgid "Agree"
  315. msgstr "Akkoord"
  316. msgctxt "@item:inlistbox"
  317. msgid "All Files (*)"
  318. msgstr "Alle Bestanden (*)"
  319. msgctxt "@item:inlistbox"
  320. msgid "All Supported Types ({0})"
  321. msgstr "Alle Ondersteunde Typen ({0})"
  322. msgctxt "@text:window"
  323. msgid "Allow sending anonymous data"
  324. msgstr "Verzenden van anonieme gegevens toestaan"
  325. msgctxt "@option:discardOrKeep"
  326. msgid "Always ask me this"
  327. msgstr "Altijd vragen"
  328. msgctxt "@option:openProject"
  329. msgid "Always ask me this"
  330. msgstr "Altijd vragen"
  331. msgctxt "@option:discardOrKeep"
  332. msgid "Always discard changed settings"
  333. msgstr "Gewijzigde instellingen altijd verwijderen"
  334. msgctxt "@option:openProject"
  335. msgid "Always import models"
  336. msgstr "Altijd modellen importeren"
  337. msgctxt "@option:openProject"
  338. msgid "Always open as a project"
  339. msgstr "Altijd als project openen"
  340. msgctxt "@option:discardOrKeep"
  341. msgid "Always transfer changed settings to new profile"
  342. msgstr "Gewijzigde instellingen altijd naar nieuw profiel overbrengen"
  343. msgctxt "@info:tooltip"
  344. msgid "An model may appear extremely small if its unit is for example in meters rather than millimeters. Should these models be scaled up?"
  345. msgstr "Een model wordt mogelijk extreem klein weergegeven als de eenheden bijvoorbeeld in meters zijn in plaats van in millimeters. Moeten dergelijke modellen worden opgeschaald?"
  346. msgctxt "@label"
  347. msgid "Annealing"
  348. msgstr "Gloeien"
  349. msgctxt "@label"
  350. msgid "Anonymous"
  351. msgstr "Anoniem"
  352. msgctxt "@option:radio"
  353. msgid "Anonymous crash reports"
  354. msgstr "Anonieme crashrapporten"
  355. msgctxt "@label Description for application component"
  356. msgid "Application framework"
  357. msgstr "Toepassingskader"
  358. msgctxt "@title:column"
  359. msgid "Applies on"
  360. msgstr "Van toepassing op"
  361. msgctxt "@label"
  362. msgid "Apply Extruder offsets to GCode"
  363. msgstr "Pas extruderoffsets toe op GCode"
  364. msgctxt "@info:title"
  365. msgid "Are you ready for cloud printing?"
  366. msgstr "Bent u klaar voor printen via de cloud?"
  367. msgctxt "@label %1 is the name of a print job."
  368. msgid "Are you sure you want to abort %1?"
  369. msgstr "Weet u zeker dat u %1 wilt afbreken?"
  370. msgctxt "@label"
  371. msgid "Are you sure you want to abort the print?"
  372. msgstr "Weet u zeker dat u het printen wilt afbreken?"
  373. msgctxt "@label %1 is the name of a print job."
  374. msgid "Are you sure you want to delete %1?"
  375. msgstr "Weet u zeker dat u %1 wilt verwijderen?"
  376. msgctxt "@dialog:info"
  377. msgid "Are you sure you want to delete this backup? This cannot be undone."
  378. msgstr "Weet u zeker dat u deze back-up wilt verwijderen? Dit kan niet ongedaan worden gemaakt."
  379. msgctxt "@label %1 is the application name"
  380. msgid "Are you sure you want to exit %1?"
  381. msgstr "Weet u zeker dat u %1 wilt afsluiten?"
  382. msgctxt "@label %1 is the name of a print job."
  383. msgid "Are you sure you want to move %1 to the top of the queue?"
  384. msgstr "Weet u zeker dat u %1 bovenaan de wachtrij wilt plaatsen?"
  385. msgctxt "@message {printer_name} is replaced with the name of the printer"
  386. msgid "Are you sure you want to remove {printer_name} temporarily?"
  387. msgstr "Weet u zeker dat u {printer_name} tijdelijk wilt verwijderen?"
  388. msgctxt "@info:question"
  389. msgid "Are you sure you want to start a new project? This will clear the build plate and any unsaved settings."
  390. msgstr "Weet u zeker dat u een nieuw project wilt starten? Hiermee wordt het platform leeggemaakt en worden eventuele niet-opgeslagen instellingen verwijderd."
  391. msgctxt "@label (%1 is object name)"
  392. msgid "Are you sure you wish to remove %1? This cannot be undone!"
  393. msgstr "Weet u zeker dat u %1 wilt verwijderen? Deze bewerking kan niet ongedaan worden gemaakt!"
  394. msgctxt "@label {0} is the name of a printer that's about to be deleted."
  395. msgid "Are you sure you wish to remove {0}? This cannot be undone!"
  396. msgstr "Weet u zeker dat u {0} wilt verwijderen? Deze bewerking kan niet ongedaan worden gemaakt!"
  397. msgctxt "@action:inmenu menubar:edit"
  398. msgid "Arrange All Models"
  399. msgstr "Alle modellen schikken"
  400. msgctxt "@action:inmenu menubar:edit"
  401. msgid "Arrange All Models in a grid"
  402. msgstr "Rangschik alle modellen in een raster"
  403. msgctxt "@action:inmenu menubar:edit"
  404. msgid "Arrange Selection"
  405. msgstr "Selectie rangschikken"
  406. msgctxt "@label:button"
  407. msgid "Ask a question"
  408. msgstr "Stel een vraag"
  409. msgctxt "@checkbox:description"
  410. msgid "Auto Backup"
  411. msgstr "Auto back-up"
  412. msgctxt "@checkbox:description"
  413. msgid "Automatically create a backup each day that Cura is started."
  414. msgstr "Maak elke dag dat Cura wordt gestart, automatisch een back-up."
  415. msgctxt "@option:check"
  416. msgid "Automatically drop models to the build plate"
  417. msgstr "Modellen automatisch op het platform laten vallen"
  418. msgctxt "@action:button"
  419. msgid "Automatically upgrade Firmware"
  420. msgstr "Firmware-upgrade Automatisch Uitvoeren"
  421. msgctxt "@label"
  422. msgid "Available networked printers"
  423. msgstr "Beschikbare netwerkprinters"
  424. msgctxt "@item:inlistbox"
  425. msgid "BMP Image"
  426. msgstr "BMP-afbeelding"
  427. msgctxt "@button"
  428. msgid "Back"
  429. msgstr "Terug"
  430. msgctxt "@button:tooltip"
  431. msgid "Back"
  432. msgstr "Terug"
  433. msgctxt "@info:title"
  434. msgid "Backup"
  435. msgstr "Back-up"
  436. msgctxt "@button"
  437. msgid "Backup Now"
  438. msgstr "Nu back-up maken"
  439. msgctxt "@action:button"
  440. msgid "Backup and Reset Configuration"
  441. msgstr "Back-up maken en herstellen van configuratie"
  442. msgctxt "@text"
  443. msgid "Backup and sync your material settings and plugins"
  444. msgstr "Maak een back-up van uw materiaalinstellingen en plug-ins en synchroniseer deze"
  445. msgctxt "@description"
  446. msgid "Backup and synchronize your Cura settings."
  447. msgstr "Maak een back-up van uw Cura-instellingen en synchroniseer deze."
  448. msgctxt "@info:title"
  449. msgid "Backups"
  450. msgstr "Back-ups"
  451. msgctxt "@label"
  452. msgid "Balanced"
  453. msgstr "Gebalanceerd"
  454. msgctxt "@action:label"
  455. msgid "Base (mm)"
  456. msgstr "Basis (mm)"
  457. msgctxt "@action:inmenu menubar:view"
  458. msgid "Bottom View"
  459. msgstr "Aanzicht onderzijde"
  460. msgctxt "@label"
  461. msgid "Brand"
  462. msgstr "Merk"
  463. msgctxt "@title"
  464. msgid "Build Plate Leveling"
  465. msgstr "Platform Kalibreren"
  466. msgctxt "@info:title"
  467. msgid "Build Volume"
  468. msgstr "Werkvolume"
  469. msgctxt "@label"
  470. msgid "Build plate"
  471. msgstr "Platform"
  472. msgctxt "@label"
  473. msgid "Build plate shape"
  474. msgstr "Vorm van het platform"
  475. msgctxt "@label"
  476. msgid "Bundled Materials"
  477. msgstr "Gebundelde materialen"
  478. msgctxt "@label"
  479. msgid "Bundled Plugins"
  480. msgstr "Gebundelde plug-ins"
  481. msgctxt "@button"
  482. msgid "Buy spool"
  483. msgstr "Koop spoel"
  484. msgctxt "@label Is followed by the name of an author"
  485. msgid "By"
  486. msgstr "Door"
  487. msgctxt "@label Description for application dependency"
  488. msgid "C/C++ Binding library"
  489. msgstr "Bindingenbibliotheek C/C++"
  490. msgctxt "@item:inlistbox"
  491. msgid "COLLADA Digital Asset Exchange"
  492. msgstr "COLLADA Digital Asset Exchange"
  493. msgctxt "@info:status"
  494. msgid "Calculated"
  495. msgstr "Berekend"
  496. msgctxt "@window:text"
  497. msgid "Camera navigation:"
  498. msgstr "Cameranavigatie"
  499. msgctxt "@window:text"
  500. msgid "Camera rendering:"
  501. msgstr "Cameraweergave:"
  502. msgctxt "@action:inmenu menubar:view"
  503. msgid "Camera view"
  504. msgstr "Camerabeeld"
  505. msgctxt "@info:title"
  506. msgid "Can't Find Location"
  507. msgstr "Kan locatie niet vinden"
  508. msgctxt "@info:title"
  509. msgid "Can't Open Project File"
  510. msgstr "Kan projectbestand niet openen"
  511. msgctxt "@label"
  512. msgid "Can't connect to your UltiMaker printer?"
  513. msgstr "Kunt u geen verbinding maken met uw UltiMaker-printer?"
  514. msgctxt "@info:status Don't translate the XML tags <filename>!"
  515. msgid "Can't import profile from <filename>{0}</filename> before a printer is added."
  516. msgstr "Kan het profiel niet importeren uit <filename>{0}</filename> voordat een printer toegevoegd is."
  517. msgctxt "@info:status"
  518. msgid "Can't open any other file if G-code is loading. Skipped importing {0}"
  519. msgstr "Kan geen ander bestand openen als G-code wordt geladen. Het importeren van {0} is overgeslagen"
  520. msgctxt "@info:error"
  521. msgid "Can't write to UFP file:"
  522. msgstr "Kan niet naar UFP-bestand schrijven:"
  523. msgctxt "@action:button"
  524. msgid "Cancel"
  525. msgstr "Annuleren"
  526. msgctxt "@button"
  527. msgid "Cancel"
  528. msgstr "Annuleren"
  529. msgctxt "@button Cancel pre-heating"
  530. msgid "Cancel"
  531. msgstr "Annuleren"
  532. msgctxt "@option:check"
  533. msgid "Caution message in g-code reader"
  534. msgstr "Waarschuwingsbericht in de G-code-lezer"
  535. msgctxt "@action:inmenu"
  536. msgid "Ce&nter Model on Platform"
  537. msgstr "Model op Platform Ce&ntreren"
  538. msgctxt "@action:inmenu menubar:edit"
  539. msgid "Center Selected"
  540. msgstr "Centreer geselecteerde items"
  541. msgctxt "@action:button"
  542. msgid "Center camera when item is selected"
  543. msgstr "Camera centreren wanneer een item wordt geselecteerd"
  544. msgctxt "@info:tooltip"
  545. msgid "Change active post-processing scripts."
  546. msgstr "Actieve scripts voor nabewerking wijzigen."
  547. msgctxt "@label"
  548. msgid "Change material %1 from %2 to %3."
  549. msgstr "Wijzig het materiaal %1 van %2 in %3."
  550. msgctxt "@label"
  551. msgid "Change print core %1 from %2 to %3."
  552. msgstr "Wijzig de print core %1 van %2 in %3."
  553. msgctxt "@info:title"
  554. msgid "Changes detected from your UltiMaker account"
  555. msgstr "Wijzigingen gedetecteerd van uw UltiMaker-account"
  556. msgctxt "@title"
  557. msgid "Changes from your account"
  558. msgstr "Wijzigingen van uw account"
  559. msgctxt "@label:textbox"
  560. msgid "Check all"
  561. msgstr "Alles aanvinken"
  562. msgctxt "@button"
  563. msgid "Check for account updates"
  564. msgstr "Controleren op accountupdates"
  565. msgctxt "@option:check"
  566. msgid "Check for updates on start"
  567. msgstr "Bij starten op updates controleren"
  568. msgctxt "@label"
  569. msgid "Checking..."
  570. msgstr "Aan het controleren..."
  571. msgctxt "@label"
  572. msgid "Chooses between the techniques available to generate support. \n\n\"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \n\n\"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible."
  573. msgstr "Kiest tussen de beschikbare technieken om support te genereren. \"Normale\" support creert een supportstructuur direct onder de overhangende delen en laat die gebieden recht naar beneden vallen. \"Boom\"-support creert takken naar de overhangende gebieden die het model op de toppen van die takken ondersteunen, en laat de takken rond het model kruipen om het zoveel mogelijk vanaf het platform te ondersteunen."
  574. msgctxt "@action:inmenu menubar:edit"
  575. msgid "Clear Build Plate"
  576. msgstr "Platform Leegmaken"
  577. msgctxt "@option:check"
  578. msgid "Clear buildplate before loading model into the single instance"
  579. msgstr "Maak platform leeg voordat u een model laadt in dezelfde instantie"
  580. msgctxt "@text"
  581. msgid "Click the export material archive button."
  582. msgstr "Klik op de knop Materiaalarchief exporteren."
  583. msgctxt "@action:button"
  584. msgid "Close"
  585. msgstr "Sluiten"
  586. msgctxt "@title:window %1 is the application name"
  587. msgid "Closing %1"
  588. msgstr "%1 wordt gesloten"
  589. msgctxt "@action:inmenu"
  590. msgid "Collapse All Categories"
  591. msgstr "Alle categorieën samenvouwen"
  592. msgctxt "@label"
  593. msgid "Color"
  594. msgstr "Kleur"
  595. msgctxt "@action:label"
  596. msgid "Color Model"
  597. msgstr "Kleur model"
  598. msgctxt "@label"
  599. msgid "Color scheme"
  600. msgstr "Kleurenschema"
  601. msgctxt "@info"
  602. msgid "Compare and save."
  603. msgstr "Vergelijken en opslaan."
  604. msgctxt "@label"
  605. msgid "Compatibility Mode"
  606. msgstr "Compatibiliteitsmodus"
  607. msgctxt "@label Description for application dependency"
  608. msgid "Compatibility between Python 2 and 3"
  609. msgstr "Compatibiliteit tussen Python 2 en 3"
  610. msgctxt "@title:label"
  611. msgid "Compatible Printers"
  612. msgstr "Compatibele printers"
  613. msgctxt "@label"
  614. msgid "Compatible material diameter"
  615. msgstr "Compatibele materiaaldiameter"
  616. msgctxt "@header"
  617. msgid "Compatible printers"
  618. msgstr "Compatibele printers"
  619. msgctxt "@header"
  620. msgid "Compatible support materials"
  621. msgstr "Compatibele ondersteuningsmaterialen"
  622. msgctxt "@header"
  623. msgid "Compatible with Material Station"
  624. msgstr "Compatibel met Material Station"
  625. msgctxt "@item:inlistbox"
  626. msgid "Compressed COLLADA Digital Asset Exchange"
  627. msgstr "Gecomprimeerde COLLADA Digital Asset Exchange"
  628. msgctxt "@item:inlistbox"
  629. msgid "Compressed G-code File"
  630. msgstr "Gecomprimeerd G-code-bestand"
  631. msgctxt "@title:window"
  632. msgid "Configuration Changes"
  633. msgstr "Configuratiewijzigingen"
  634. msgctxt "@error"
  635. msgid "Configuration not supported"
  636. msgstr "Configuratie niet ondersteund"
  637. msgctxt "@header"
  638. msgid "Configurations"
  639. msgstr "Configuraties"
  640. msgctxt "@label"
  641. msgid "Configurations"
  642. msgstr "Configuraties"
  643. msgctxt "@action:inmenu"
  644. msgid "Configure Cura..."
  645. msgstr "Cura Configureren..."
  646. msgctxt "@info:tooltip"
  647. msgid "Configure Per Model Settings"
  648. msgstr "Instellingen per Model configureren"
  649. msgctxt "@action"
  650. msgid "Configure group"
  651. msgstr "Groep configureren"
  652. msgctxt "@action:menu"
  653. msgid "Configure setting visibility..."
  654. msgstr "Zichtbaarheid Instelling Configureren..."
  655. msgctxt "@title:window"
  656. msgid "Confirm Diameter Change"
  657. msgstr "Diameterwijziging bevestigen"
  658. msgctxt "@title:window"
  659. msgid "Confirm Remove"
  660. msgstr "Verwijderen Bevestigen"
  661. msgctxt "@action:button"
  662. msgid "Connect"
  663. msgstr "Verbinden"
  664. msgctxt "@button"
  665. msgid "Connect"
  666. msgstr "Verbinding maken"
  667. msgctxt "@title:window"
  668. msgid "Connect to Networked Printer"
  669. msgstr "Verbinding Maken met Printer in het Netwerk"
  670. msgctxt "@action"
  671. msgid "Connect via Network"
  672. msgstr "Verbinding Maken via Netwerk"
  673. msgctxt "@info:status"
  674. msgid "Connected over the network"
  675. msgstr "Via het netwerk verbonden"
  676. msgctxt "@label"
  677. msgid "Connected printers"
  678. msgstr "Verbonden printers"
  679. msgctxt "@info:status"
  680. msgid "Connected via USB"
  681. msgstr "Aangesloten via USB"
  682. msgctxt "@info:status"
  683. msgid "Connected via cloud"
  684. msgstr "Verbonden via Cloud"
  685. msgctxt "@tooltip:button"
  686. msgid "Consult the UltiMaker Community."
  687. msgstr "Consulteer de UltiMaker Community."
  688. msgctxt "@title:window"
  689. msgid "Convert Image"
  690. msgstr "Afbeelding converteren..."
  691. msgctxt "@label"
  692. msgid "Cooling Fan Number"
  693. msgstr "Nummer van koelventilator"
  694. msgctxt "@action:menu"
  695. msgid "Copy all changed values to all extruders"
  696. msgstr "Alle gewijzigde waarden naar alle extruders kopiëren"
  697. msgctxt "@action:inmenu menubar:edit"
  698. msgid "Copy to clipboard"
  699. msgstr "Naar klembord kopiëren"
  700. msgctxt "@action:menu"
  701. msgid "Copy value to all extruders"
  702. msgstr "Waarde naar alle extruders kopiëren"
  703. msgctxt "@label"
  704. msgid "Cost per Meter"
  705. msgstr "Kostprijs per meter"
  706. msgctxt "@info"
  707. msgid "Could not access update information."
  708. msgstr "Geen toegang tot update-informatie."
  709. msgctxt "@label"
  710. msgid "Could not connect to device."
  711. msgstr "Kan geen verbinding maken met het apparaat."
  712. msgctxt "@info:backup_failed"
  713. msgid "Could not create archive from user data directory: {}"
  714. msgstr "Kan geen archief maken van gegevensmap van gebruiker: {}"
  715. msgctxt "@info:status Don't translate the tag {device}!"
  716. msgid "Could not find a file name when trying to write to {device}."
  717. msgstr "Kan geen bestandsnaam vinden tijdens het schrijven naar {device}."
  718. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  719. msgid "Could not import material <filename>%1</filename>: <message>%2</message>"
  720. msgstr "Kon materiaal <filename>%1</filename> niet importeren: <message>%2</message>"
  721. msgctxt "@info:error"
  722. msgid "Could not interpret the server's response."
  723. msgstr "Antwoord van de server is niet duidelijk."
  724. msgctxt "@error:load"
  725. msgid "Could not load GCodeWriter plugin. Try to re-enable the plugin."
  726. msgstr "Kon GCodeWriter-plugin niet laden. Probeer de plugin opnieuw in te schakelen."
  727. msgctxt "@info:error"
  728. msgid "Could not reach Marketplace."
  729. msgstr "Kan Marketplace niet bereiken."
  730. msgctxt "@message"
  731. msgid "Could not read response."
  732. msgstr "Kan het antwoord niet lezen."
  733. msgctxt "@message:text"
  734. msgid "Could not save material archive to {}:"
  735. msgstr "Kan materiaalarchief niet opslaan op {}:"
  736. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  737. msgid "Could not save to <filename>{0}</filename>: <message>{1}</message>"
  738. msgstr "Kan niet opslaan als <filename>{0}</filename>: <message>{1}</message>"
  739. msgctxt "@info:status"
  740. msgid "Could not save to removable drive {0}: {1}"
  741. msgstr "Kan niet opslaan op verwisselbaar station {0}: {1}"
  742. msgctxt "@info:text"
  743. msgid "Could not upload the data to the printer."
  744. msgstr "Kan de gegevens niet uploaden naar de printer."
  745. msgctxt "@info:plugin_failed"
  746. msgid "Couldn't start EnginePlugin: {self._plugin_id}\nNo permission to execute process."
  747. msgstr "EnginePlugin kon niet gestart worden: {self._plugin_id}}Geen toestemming om proces uit te voeren."
  748. msgctxt "@info:plugin_failed"
  749. msgid "Couldn't start EnginePlugin: {self._plugin_id}\nOperating system is blocking it (antivirus?)"
  750. msgstr "EnginePlugin kon niet gestart worden: {self._plugin_id}}Het wordt door het besturingssysteem geblokkeerd (antivirus?)"
  751. msgctxt "@info:plugin_failed"
  752. msgid "Couldn't start EnginePlugin: {self._plugin_id}\nResource is temporarily unavailable"
  753. msgstr "EnginePlugin kon niet gestart worden: {self._plugin_id}"
  754. "Resource is tijdelijk niet beschikbaar"
  755. msgctxt "@title:window"
  756. msgid "Crash Report"
  757. msgstr "Crashrapport"
  758. msgctxt "@title:window"
  759. msgid "Create Profile"
  760. msgstr "Profiel Maken"
  761. msgctxt "@text"
  762. msgid "Create a free UltiMaker Account"
  763. msgstr "Maak een gratis UltiMaker-account aan"
  764. msgctxt "@button"
  765. msgid "Create a free UltiMaker account"
  766. msgstr "Maak een gratis UltiMaker-account aan"
  767. msgctxt "@info:tooltip"
  768. msgid "Create a volume in which supports are not printed."
  769. msgstr "Maak een volume waarin supportstructuren niet worden geprint."
  770. msgctxt "@action:ComboBox Save settings in a new profile"
  771. msgid "Create new"
  772. msgstr "Nieuw maken"
  773. msgctxt "@action:button"
  774. msgid "Create new"
  775. msgstr "Nieuw maken"
  776. msgctxt "@button"
  777. msgid "Create new"
  778. msgstr "Nieuw maken"
  779. msgctxt "@action:tooltip"
  780. msgid "Create new profile from current settings/overrides"
  781. msgstr "Maak nieuw profiel op basis van huidige instellingen/overschrijvingen"
  782. msgctxt "@tooltip:button"
  783. msgid "Create print projects in Digital Library."
  784. msgstr "Maak printprojecten aan in Digital Library."
  785. msgctxt "@info:backup_status"
  786. msgid "Creating your backup..."
  787. msgstr "Uw back-up maken..."
  788. msgctxt "@item:inlistbox"
  789. msgid "Cura 15.04 profiles"
  790. msgstr "Cura 15.04-profielen"
  791. msgctxt "@title:window"
  792. msgid "Cura Backups"
  793. msgstr "Cura-back-ups"
  794. msgctxt "@item:inlistbox"
  795. msgid "Cura Profile"
  796. msgstr "Cura-profiel"
  797. msgctxt "@item:inlistbox"
  798. msgid "Cura Project 3MF file"
  799. msgstr "Cura-project 3MF-bestand"
  800. msgctxt "@backuplist:label"
  801. msgid "Cura Version"
  802. msgstr "Cura-versie"
  803. msgctxt "@title:window"
  804. msgid "Cura can't start"
  805. msgstr "Cura kan niet worden gestart"
  806. msgctxt "@info:status"
  807. msgid "Cura has detected material profiles that were not yet installed on the host printer of group {0}."
  808. msgstr "Cura heeft materiaalprofielen gedetecteerd die nog niet op de hostprinter van groep {0} zijn geïnstalleerd."
  809. msgctxt "@info:credit"
  810. msgid "Cura is developed by UltiMaker in cooperation with the community.\nCura proudly uses the following open source projects:"
  811. msgstr "Cura is ontwikkeld door UltiMaker in samenwerking met de community."
  812. "Cura maakt met trots gebruik van de volgende opensourceprojecten:"
  813. msgctxt "@label"
  814. msgid "Cura language"
  815. msgstr "Taal van Cura"
  816. msgctxt "@label Cura version number"
  817. msgid "Cura version"
  818. msgstr "Cura-versie"
  819. msgctxt "@label"
  820. msgid "Currency:"
  821. msgstr "Valuta:"
  822. msgctxt "@title:column"
  823. msgid "Current"
  824. msgstr "Huidig"
  825. msgctxt "@title:column"
  826. msgid "Current changes"
  827. msgstr "Huidige wijzigingen"
  828. msgctxt "@header"
  829. msgid "Custom"
  830. msgstr "Aangepast"
  831. msgctxt "@label"
  832. msgid "Custom"
  833. msgstr "Aangepast"
  834. msgctxt "@title:tab"
  835. msgid "Custom"
  836. msgstr "Aangepast"
  837. msgctxt "@label"
  838. msgid "Custom Material"
  839. msgstr "Aangepast materiaal"
  840. msgctxt "@label"
  841. msgid "Custom profile"
  842. msgstr "Aangepast profiel"
  843. msgctxt "@info"
  844. msgid "Custom profile name:"
  845. msgstr "Naam van nieuw profiel:"
  846. msgctxt "@label"
  847. msgid "Custom profiles"
  848. msgstr "Aangepaste profielen"
  849. msgctxt "@label:header"
  850. msgid "Custom profiles"
  851. msgstr "Aangepaste profielen"
  852. msgctxt "@action:inmenu menubar:edit"
  853. msgid "Cut"
  854. msgstr "Snijden"
  855. msgctxt "@item:inlistbox"
  856. msgid "Cutting mesh"
  857. msgstr "Snijdend raster"
  858. msgctxt "@item:inlistbox"
  859. msgid "Darker is higher"
  860. msgstr "Donkerder is hoger"
  861. msgctxt "@info:title"
  862. msgid "Data Sent"
  863. msgstr "Gegevens verzonden"
  864. msgctxt "@label Description for application dependency"
  865. msgid "Data interchange format"
  866. msgstr "Indeling voor gegevensuitwisseling"
  867. msgctxt "@button"
  868. msgid "Decline"
  869. msgstr "Nee, ik ga niet akkoord"
  870. msgctxt "@button"
  871. msgid "Decline and close"
  872. msgstr "Afwijzen en sluiten"
  873. msgctxt "@button"
  874. msgid "Decline and remove from account"
  875. msgstr "Weigeren en verwijderen uit account"
  876. msgctxt "@info:No intent profile selected"
  877. msgid "Default"
  878. msgstr "Default"
  879. msgctxt "@window:text"
  880. msgid "Default behavior for changed setting values when switching to a different profile: "
  881. msgstr "Standaardgedrag voor gewijzigde instellingen wanneer er naar een ander profiel wordt overgeschakeld: "
  882. msgctxt "@info:tooltip"
  883. msgid "Default behavior when opening a project file"
  884. msgstr "Standaardgedrag tijdens het openen van een projectbestand"
  885. msgctxt "@window:text"
  886. msgid "Default behavior when opening a project file: "
  887. msgstr "Standaardgedrag tijdens het openen van een projectbestand: "
  888. msgctxt "@action:button"
  889. msgid "Defaults"
  890. msgstr "Standaardwaarden"
  891. msgctxt "@label"
  892. msgid "Defines the thickness of your part side walls, roof and floor."
  893. msgstr "Definieert de dikte van de zijwanden, dak en vloer van uw onderdeel."
  894. msgctxt "@label"
  895. msgid "Delete"
  896. msgstr "Verwijderen"
  897. msgctxt "@dialog:title"
  898. msgid "Delete Backup"
  899. msgstr "Back-up verwijderen"
  900. msgctxt "@action:inmenu"
  901. msgid "Delete Model"
  902. msgstr "Model Verwijderen"
  903. msgctxt "@action:inmenu menubar:edit"
  904. msgid "Delete Selected"
  905. msgstr "Verwijder geselecteerde items"
  906. msgctxt "@window:title"
  907. msgid "Delete print job"
  908. msgstr "Printtaak verwijderen"
  909. msgctxt "@label"
  910. msgid "Density"
  911. msgstr "Dichtheid"
  912. msgctxt "@label Description for development tool"
  913. msgid "Dependency and package manager"
  914. msgstr "Afhankelijkheden- en pakketbeheer"
  915. msgctxt "@action:label"
  916. msgid "Depth (mm)"
  917. msgstr "Diepte (mm)"
  918. msgctxt "@action:label"
  919. msgid "Derivative from"
  920. msgstr "Afgeleide van"
  921. msgctxt "@header"
  922. msgid "Description"
  923. msgstr "Beschrijving"
  924. msgctxt "@label"
  925. msgid "Description"
  926. msgstr "Beschrijving"
  927. msgctxt "@action:button"
  928. msgid "Details"
  929. msgstr "Details"
  930. msgctxt "@label"
  931. msgid "Diameter"
  932. msgstr "Diameter"
  933. msgctxt "@button"
  934. msgid "Disable"
  935. msgstr "Uitschakelen"
  936. msgctxt "@action:inmenu"
  937. msgid "Disable Extruder"
  938. msgstr "Extruder uitschakelen"
  939. msgctxt "@option:discardOrKeep"
  940. msgid "Discard and never ask again"
  941. msgstr "Verwijderen en nooit meer vragen"
  942. msgctxt "@action:button"
  943. msgid "Discard changes"
  944. msgstr "Wijzigingen verwijderen"
  945. msgctxt "@action:button"
  946. msgid "Discard current changes"
  947. msgstr "Huidige wijzigingen verwijderen"
  948. msgctxt "@title:window"
  949. msgid "Discard or Keep changes"
  950. msgstr "Wijzigingen verwijderen of behouden"
  951. msgctxt "@button"
  952. msgid "Dismiss"
  953. msgstr "Verwijderen"
  954. msgctxt "@label"
  955. msgid "Display Name"
  956. msgstr "Naam"
  957. msgctxt "@option:check"
  958. msgid "Display model errors"
  959. msgstr "Modelfouten weergeven"
  960. msgctxt "@option:check"
  961. msgid "Display overhang"
  962. msgstr "Overhang weergeven"
  963. msgctxt "@info:option_text"
  964. msgid "Do not show this message again"
  965. msgstr "Dit bericht niet meer weergeven"
  966. msgctxt "@info:generic"
  967. msgid "Do you want to sync material and software packages with your account?"
  968. msgstr "Wilt u materiaal- en softwarepackages synchroniseren met uw account?"
  969. msgctxt "@action:label"
  970. msgid "Don't show project summary on save again"
  971. msgstr "Bij opnieuw opslaan projectsamenvatting niet weergeven"
  972. msgctxt "@action:menu"
  973. msgid "Don't show this setting"
  974. msgstr "Deze instelling verbergen"
  975. msgctxt "@label"
  976. msgid "Don't support overlaps"
  977. msgstr "Supportstructuur niet laten overlappen"
  978. msgctxt "@button"
  979. msgid "Done"
  980. msgstr "Klaar"
  981. msgctxt "@button"
  982. msgid "Downgrade"
  983. msgstr "Downgraden"
  984. msgctxt "@button"
  985. msgid "Downgrading..."
  986. msgstr "Downgraden..."
  987. msgctxt "@label"
  988. msgid "Draft"
  989. msgstr "Ontwerp"
  990. msgctxt "@action:inmenu menubar:edit"
  991. msgid "Drop All Models to buildplate"
  992. msgstr "Alle modellen laten vallen op bouwplaat"
  993. msgctxt "@action:button"
  994. msgid "Duplicate"
  995. msgstr "Dupliceren"
  996. msgctxt "@title:window"
  997. msgid "Duplicate Profile"
  998. msgstr "Profiel Dupliceren"
  999. msgctxt "@backup_limit_info"
  1000. msgid "During the preview phase, you'll be limited to 5 visible backups. Remove a backup to see older ones."
  1001. msgstr "Tijdens de voorbeeldfase zijn er maximaal 5 back-ups zichtbaar. Verwijder een back-up als u oudere back-ups wilt bekijken."
  1002. msgctxt "@title:menu menubar:toplevel"
  1003. msgid "E&xtensions"
  1004. msgstr "E&xtensies"
  1005. msgctxt "@action:button"
  1006. msgid "Edit"
  1007. msgstr "Bewerken"
  1008. msgctxt "@action:button"
  1009. msgid "Eject"
  1010. msgstr "Uitwerpen"
  1011. msgctxt "@action"
  1012. msgid "Eject removable device {0}"
  1013. msgstr "Verwisselbaar station {0} uitwerpen"
  1014. msgctxt "@info:status"
  1015. msgid "Ejected {0}. You can now safely remove the drive."
  1016. msgstr "{0} is uitgeworpen. U kunt het station nu veilig verwijderen."
  1017. msgctxt "@label"
  1018. msgid "Empty"
  1019. msgstr "Leeg"
  1020. msgctxt "@button"
  1021. msgid "Enable"
  1022. msgstr "Inschakelen"
  1023. msgctxt "@action:inmenu"
  1024. msgid "Enable Extruder"
  1025. msgstr "Extruder inschakelen"
  1026. msgctxt "@label"
  1027. msgid "Enable printing a brim or raft. This will add a flat area around or under your object which is easy to cut off afterwards. Disabling it results in a skirt around object by default."
  1028. msgstr "Schakel het afdrukken van een rand of vlot in. Dit voegt een plat gebied rond of onder uw object toe dat naderhand gemakkelijk kan worden afgesneden. Uitschakelen resulteert standaard in een rok rond het object."
  1029. msgctxt "@label"
  1030. msgid "Enabled"
  1031. msgstr "Ingeschakeld"
  1032. msgctxt "@title:label"
  1033. msgid "End G-code"
  1034. msgstr "Eind G-code"
  1035. msgctxt "@label"
  1036. msgid "End-to-end solution for fused filament 3D printing."
  1037. msgstr "End-to-end-oplossing voor fused filament 3D-printen."
  1038. msgctxt "@info:title"
  1039. msgid "EnginePlugin"
  1040. msgstr "EnginePlugin"
  1041. msgctxt "@label"
  1042. msgid "Engineering"
  1043. msgstr "Engineering"
  1044. msgctxt "@option:check"
  1045. msgid "Ensure models are kept apart"
  1046. msgstr "Modellen gescheiden houden"
  1047. msgctxt "@label"
  1048. msgid "Enter the IP address of your printer on the network."
  1049. msgstr "Voer het IP-adres van uw printer in het netwerk in."
  1050. msgctxt "@text"
  1051. msgid "Enter your printer's IP address."
  1052. msgstr "Voer het IP-adres van uw printer in."
  1053. msgctxt "@info:title"
  1054. msgid "Error"
  1055. msgstr "Fout"
  1056. msgctxt "@title:groupbox"
  1057. msgid "Error traceback"
  1058. msgstr "Traceback van fout"
  1059. msgctxt "@label"
  1060. msgid "Estimated time left"
  1061. msgstr "Geschatte resterende tijd"
  1062. msgctxt "@action:inmenu"
  1063. msgid "Exit Full Screen"
  1064. msgstr "Volledig scherm sluiten"
  1065. msgctxt "@label"
  1066. msgid "Experimental"
  1067. msgstr "Experimenteel"
  1068. msgctxt "@action:button"
  1069. msgid "Export"
  1070. msgstr "Exporteren"
  1071. msgctxt "@title:window"
  1072. msgid "Export All Materials"
  1073. msgstr "Alle materialen exporteren"
  1074. msgctxt "@title:window"
  1075. msgid "Export Material"
  1076. msgstr "Materiaal Exporteren"
  1077. msgctxt "@title:window"
  1078. msgid "Export Profile"
  1079. msgstr "Profiel Exporteren"
  1080. msgctxt "@action:inmenu menubar:file"
  1081. msgid "Export Selection..."
  1082. msgstr "Selectie Exporteren..."
  1083. msgctxt "@title:window Don't translate 'Universal Cura Project'"
  1084. msgid "Export Universal Cura Project"
  1085. msgstr "Universal Cura Project exporteren"
  1086. msgctxt "@button"
  1087. msgid "Export material archive"
  1088. msgstr "Materiaalarchief exporteren"
  1089. msgctxt "@info:title"
  1090. msgid "Export succeeded"
  1091. msgstr "De export is voltooid"
  1092. msgctxt "@info:status Don't translate the XML tag <filename>!"
  1093. msgid "Exported profile to <filename>{0}</filename>"
  1094. msgstr "Het profiel is geëxporteerd als <filename>{0}</filename>"
  1095. msgctxt "@tooltip:button"
  1096. msgid "Extend UltiMaker Cura with plugins and material profiles."
  1097. msgstr "Breid UltiMaker Cura uit met plug-ins en materiaalprofielen."
  1098. msgctxt "@label"
  1099. msgid "Extruder"
  1100. msgstr "Extruder"
  1101. msgctxt "@action:label"
  1102. msgid "Extruder %1"
  1103. msgstr "Extruder %1"
  1104. msgctxt "@title:label"
  1105. msgid "Extruder End G-code"
  1106. msgstr "Eind-G-code van extruder"
  1107. msgctxt "@label"
  1108. msgid "Extruder End G-code duration"
  1109. msgstr "Duur einde G-code extruder"
  1110. msgctxt "@title:label"
  1111. msgid "Extruder Start G-code"
  1112. msgstr "Start-G-code van extruder"
  1113. msgctxt "@label"
  1114. msgid "Extruder Start G-code duration"
  1115. msgstr "Duur start G-code extruder"
  1116. msgctxt "@label"
  1117. msgid "Extruder {0}"
  1118. msgstr "Extruder {0}"
  1119. msgctxt "@info:title"
  1120. msgid "Extruder(s) Disabled"
  1121. msgstr "Extruder(s) uitgeschakeld"
  1122. msgctxt "@label:status"
  1123. msgid "Failed"
  1124. msgstr "Mislukt"
  1125. msgctxt "@text:error"
  1126. msgid "Failed to connect to Digital Factory to sync materials with some of the printers."
  1127. msgstr "Kan geen verbinding maken met Digital Factory voor de synchronisatie van materialen met enkele printers."
  1128. msgctxt "@text:error"
  1129. msgid "Failed to connect to Digital Factory."
  1130. msgstr "Kan geen verbinding maken met Digital Factory."
  1131. msgctxt "@text:error"
  1132. msgid "Failed to create archive of materials to sync with printers."
  1133. msgstr "Kan geen materiaalarchief maken voor synchronisatie met printers."
  1134. msgctxt "@info:status"
  1135. msgid "Failed to eject {0}. Another program may be using the drive."
  1136. msgstr "Uitwerpen van {0} is niet gelukt. Mogelijk wordt het station door een ander programma gebruikt."
  1137. msgctxt "@info:status Don't translate the XML tags <filename> and <message>!"
  1138. msgid "Failed to export material to <filename>%1</filename>: <message>%2</message>"
  1139. msgstr "Exporteren van materiaal naar <filename>%1</filename> is mislukt: <message>%2</message>"
  1140. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  1141. msgid "Failed to export profile to <filename>{0}</filename>: <message>{1}</message>"
  1142. msgstr "Kan het profiel niet exporteren als <filename>{0}</filename>: <message>{1}</message>"
  1143. msgctxt "@info:status Don't translate the XML tag <filename>!"
  1144. msgid "Failed to export profile to <filename>{0}</filename>: Writer plugin reported failure."
  1145. msgstr "Kan het profiel niet exporteren als <filename>{0}</filename>: Plug-in voor de schrijver heeft een fout gerapporteerd."
  1146. msgctxt "@info:status Don't translate the XML tag <filename>!"
  1147. msgid "Failed to import profile from <filename>{0}</filename>:"
  1148. msgstr "Kan het profiel niet importeren uit <filename>{0}</filename>:"
  1149. msgctxt "@info:status Don't translate the XML tags <filename>!"
  1150. msgid "Failed to import profile from <filename>{0}</filename>:"
  1151. msgstr "Kan het profiel niet importeren uit <filename>{0}</filename>:"
  1152. msgctxt "@info:status Don't translate the XML tags <filename>!"
  1153. msgid "Failed to import profile from <filename>{0}</filename>: {1}"
  1154. msgstr "Kan het profiel niet importeren uit <filename>{0}</filename>: {1}"
  1155. msgctxt "@button"
  1156. msgid "Failed to load packages:"
  1157. msgstr "Kan pakketten niet laden:"
  1158. msgctxt "@text:error"
  1159. msgid "Failed to load the archive of materials to sync it with printers."
  1160. msgstr "Kan het materiaalarchief niet laden voor synchronisatie met printers."
  1161. msgctxt "@message:title"
  1162. msgid "Failed to save material archive"
  1163. msgstr "Opslaan materiaalarchief mislukt"
  1164. msgctxt "@info:status"
  1165. msgid "Failed writing to specific cloud printer: {0} not in remote clusters."
  1166. msgstr "Schrijven naar specifieke cloudprinter mislukt: {0} niet in clusters op afstand."
  1167. msgctxt "@label:category menu label"
  1168. msgid "Favorites"
  1169. msgstr "Favorieten"
  1170. msgctxt "@label"
  1171. msgid "Filament Cost"
  1172. msgstr "Kostprijs Filament"
  1173. msgctxt "@label"
  1174. msgid "Filament length"
  1175. msgstr "Lengte filament"
  1176. msgctxt "@label"
  1177. msgid "Filament weight"
  1178. msgstr "Gewicht filament"
  1179. msgctxt "@title:window"
  1180. msgid "File Already Exists"
  1181. msgstr "Het Bestand Bestaat Al"
  1182. msgctxt "@info:title"
  1183. msgid "File Saved"
  1184. msgstr "Bestand opgeslagen"
  1185. msgctxt "@info:status"
  1186. msgid "File {0} does not contain any valid profile."
  1187. msgstr "Het bestand {0} bevat geen geldig profiel."
  1188. msgctxt "@label:textbox"
  1189. msgid "Filter..."
  1190. msgstr "Filteren..."
  1191. msgctxt "@info:title"
  1192. msgid "Finding Location"
  1193. msgstr "Locatie vinden"
  1194. msgctxt "@info:status"
  1195. msgid "Finding new location for objects"
  1196. msgstr "Nieuwe locatie vinden voor objecten"
  1197. msgctxt "@action:button"
  1198. msgid "Finish"
  1199. msgstr "Voltooien"
  1200. msgctxt "@label:status"
  1201. msgid "Finished"
  1202. msgstr "Gereed"
  1203. msgctxt "@label:status"
  1204. msgid "Finishes %1 at %2"
  1205. msgstr "Voltooit %1 om %2"
  1206. msgctxt "@title:window"
  1207. msgid "Firmware Update"
  1208. msgstr "Firmware-update"
  1209. msgctxt "@label"
  1210. msgid "Firmware can not be updated because the connection with the printer does not support upgrading firmware."
  1211. msgstr "Kan de firmware niet bijwerken omdat de verbinding met de printer geen ondersteuning biedt voor het uitvoeren van een firmware-upgrade."
  1212. msgctxt "@label"
  1213. msgid "Firmware can not be updated because there is no connection with the printer."
  1214. msgstr "Kan de firmware niet bijwerken omdat er geen verbinding met de printer is."
  1215. msgctxt "@label"
  1216. msgid "Firmware is the piece of software running directly on your 3D printer. This firmware controls the step motors, regulates the temperature and ultimately makes your printer work."
  1217. msgstr "Firmware is de software die direct op de 3D-printer wordt uitgevoerd. Deze firmware bedient de stappenmotoren, regelt de temperatuur en zorgt er in feite voor dat de printer doet wat deze moet doen."
  1218. msgctxt "@label"
  1219. msgid "Firmware update completed."
  1220. msgstr "De firmware-update is voltooid."
  1221. msgctxt "@label"
  1222. msgid "Firmware update failed due to an communication error."
  1223. msgstr "Firmware-update mislukt door een communicatiefout."
  1224. msgctxt "@label"
  1225. msgid "Firmware update failed due to an input/output error."
  1226. msgstr "Firmware-update mislukt door een invoer-/uitvoerfout."
  1227. msgctxt "@label"
  1228. msgid "Firmware update failed due to an unknown error."
  1229. msgstr "Firmware-update mislukt door een onbekende fout."
  1230. msgctxt "@label"
  1231. msgid "Firmware update failed due to missing firmware."
  1232. msgstr "Firmware-update mislukt door ontbrekende firmware."
  1233. msgctxt "@label"
  1234. msgid "Firmware version"
  1235. msgstr "Firmwareversie"
  1236. msgctxt "@label"
  1237. msgid "First available"
  1238. msgstr "Eerst beschikbaar"
  1239. msgctxt "@label:listbox"
  1240. msgid "Flow"
  1241. msgstr "Doorvoer"
  1242. msgctxt "@text In the UI this is followed by a list of steps the user needs to take."
  1243. msgid "Follow the following steps to load the new material profiles to your printer."
  1244. msgstr "Volg onderstaande stappen om nieuwe materiaalprofielen op uw printer te laden."
  1245. msgctxt "@info"
  1246. msgid "Follow the procedure to add a new printer"
  1247. msgstr "Volg de procedure om een nieuwe printer toe te voegen"
  1248. msgctxt "@text"
  1249. msgid "Following a few simple steps, you will be able to synchronize all your material profiles with your printers."
  1250. msgstr "Met een paar simpele stappen kunt u al uw materiaalprofielen synchroniseren met uw printers."
  1251. msgctxt "@label"
  1252. msgid "Font"
  1253. msgstr "Lettertype"
  1254. msgctxt "@label"
  1255. msgid "For every position; insert a piece of paper under the nozzle and adjust the print build plate height. The print build plate height is right when the paper is slightly gripped by the tip of the nozzle."
  1256. msgstr "Voor elke positie legt u een stukje papier onder de nozzle en past u de hoogte van het printplatform aan. De hoogte van het printplatform is goed wanneer het papier net door de punt van de nozzle wordt meegenomen."
  1257. msgctxt "@info:tooltip"
  1258. msgid "For lithophanes a simple logarithmic model for translucency is available. For height maps the pixel values correspond to heights linearly."
  1259. msgstr "Voor lithofanen is een eenvoudig logaritmisch model voor doorschijnendheid beschikbaar. Voor hoogtekaarten corresponderen de pixelwaarden lineair met hoogten."
  1260. msgctxt "@info:tooltip"
  1261. msgid "For lithophanes dark pixels should correspond to thicker locations in order to block more light coming through. For height maps lighter pixels signify higher terrain, so lighter pixels should correspond to thicker locations in the generated 3D model."
  1262. msgstr "Bij lithofanen dienen donkere pixels overeen te komen met de dikkere plekken om meer licht tegen te houden. Bij hoogtekaarten geven lichtere pixels hoger terrein aan. Lichtere pixels dienen daarom overeen te komen met dikkere plekken in het gegenereerde 3D-model."
  1263. msgctxt "@option:check"
  1264. msgid "Force layer view compatibility mode (restart required)"
  1265. msgstr "Compatibiliteitsmodus voor laagweergave forceren (opnieuw opstarten vereist)"
  1266. msgid "FreeCAD trackpad"
  1267. msgstr "FreeCAD-trackpad"
  1268. msgctxt "@action:inmenu menubar:view"
  1269. msgid "Front View"
  1270. msgstr "Weergave voorzijde"
  1271. msgctxt "@info:tooltip"
  1272. msgid "Front View"
  1273. msgstr "Weergave voorzijde"
  1274. msgctxt "@item:inlistbox"
  1275. msgid "G File"
  1276. msgstr "G-bestand"
  1277. msgctxt "@info:title"
  1278. msgid "G-code Details"
  1279. msgstr "Details van de G-code"
  1280. msgctxt "@item:inlistbox"
  1281. msgid "G-code File"
  1282. msgstr "G-code-bestand"
  1283. msgctxt "@label"
  1284. msgid "G-code flavor"
  1285. msgstr "Versie G-code"
  1286. msgctxt "@label Description for application component"
  1287. msgid "G-code generator"
  1288. msgstr "G-code-generator"
  1289. msgctxt "@error:not supported"
  1290. msgid "GCodeGzWriter does not support text mode."
  1291. msgstr "GCodeGzWriter ondersteunt geen tekstmodus."
  1292. msgctxt "@error:not supported"
  1293. msgid "GCodeWriter does not support non-text mode."
  1294. msgstr "GCodeWriter ondersteunt geen non-tekstmodus."
  1295. msgctxt "@item:inlistbox"
  1296. msgid "GIF Image"
  1297. msgstr "GIF-afbeelding"
  1298. msgctxt "@label Description for application dependency"
  1299. msgid "GUI framework"
  1300. msgstr "GUI-kader"
  1301. msgctxt "@label Description for application dependency"
  1302. msgid "GUI framework bindings"
  1303. msgstr "Bindingen met GUI-kader"
  1304. msgctxt "@label"
  1305. msgid "Gantry Height"
  1306. msgstr "Rijbrughoogte"
  1307. msgctxt "@title:tab"
  1308. msgid "General"
  1309. msgstr "Algemeen"
  1310. msgctxt "@label"
  1311. msgid "Generate structures to support parts of the model which have overhangs. Without these structures, these parts would collapse during printing."
  1312. msgstr "Genereer structuren om delen van het model met overhang te ondersteunen. Zonder deze structuren zakken dergelijke delen in tijdens het printen."
  1313. msgctxt "@label Description for development tool"
  1314. msgid "Generating Windows installers"
  1315. msgstr "Windows-installatieprogramma's genereren"
  1316. msgctxt "@label:category menu label"
  1317. msgid "Generic"
  1318. msgstr "Standaard"
  1319. msgctxt "@option:check"
  1320. msgid "Get notifications for plugin updates"
  1321. msgstr "Meldingen ontvangen als er updates zijn voor pug-ins"
  1322. msgctxt "@action"
  1323. msgid "Get started"
  1324. msgstr "Aan de slag"
  1325. msgctxt "@label"
  1326. msgid "Global"
  1327. msgstr "Globaal"
  1328. msgctxt "@title:tab"
  1329. msgid "Global Settings"
  1330. msgstr "Algemene Instellingen"
  1331. msgctxt "@label Description for application component"
  1332. msgid "Graphical user interface"
  1333. msgstr "Grafische gebruikersinterface (GUI)"
  1334. msgctxt "@label"
  1335. msgid "Grid Placement"
  1336. msgstr "Rasterplaatsing"
  1337. msgctxt "@label"
  1338. msgid "Group #{group_nr}"
  1339. msgstr "Groepsnummer #{group_nr}"
  1340. msgctxt "@tooltip of pre-heat"
  1341. msgid "Heat the bed in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the bed to heat up when you're ready to print."
  1342. msgstr "Verwarm het bed voordat u gaat printen. U kunt doorgaan met het aanpassen van uw print terwijl het bed wordt verwarmd. Zo hoeft u niet te wachten totdat het bed opgewarmd is wanneer u gereed bent om te printen."
  1343. msgctxt "@tooltip of pre-heat"
  1344. msgid "Heat the hotend in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the hotend to heat up when you're ready to print."
  1345. msgstr "Verwarm het hotend voordat u gaat printen. U kunt doorgaan met het aanpassen van uw print terwijl het hotend wordt verwarmd. Zo hoeft u niet te wachten totdat het hotend is opgewarmd wanneer u gereed bent om te printen."
  1346. msgctxt "@label"
  1347. msgid "Heated Build Plate (official kit or self-built)"
  1348. msgstr "Verwarmd Platform (officiële kit of zelf gebouwd)"
  1349. msgctxt "@label"
  1350. msgid "Heated bed"
  1351. msgstr "Verwarmd bed"
  1352. msgctxt "@label"
  1353. msgid "Heated build volume"
  1354. msgstr "Verwarmde werkvolume"
  1355. msgctxt "@action:label"
  1356. msgid "Height (mm)"
  1357. msgstr "Hoogte (mm)"
  1358. msgctxt "@label"
  1359. msgid "Helpers"
  1360. msgstr "Helpers"
  1361. msgctxt "@label"
  1362. msgid "Hide all connected printers"
  1363. msgstr "Alle aangesloten printers verbergen"
  1364. msgctxt "@action:button"
  1365. msgid "Hide settings"
  1366. msgstr "Instellingen verbergen"
  1367. msgctxt "@action:menu"
  1368. msgid "Hide this setting"
  1369. msgstr "Deze instelling verbergen"
  1370. msgctxt "@info:tooltip"
  1371. msgid "Highlight missing or extraneous surfaces of the model using warning signs. The toolpaths will often be missing parts of the intended geometry."
  1372. msgstr "Markeer ontbrekende of ongebruikelijke oppervlakken van het model met behulp van waarschuwingstekens. De toolpaths zullen vaak delen van de beoogde geometrie missen."
  1373. msgctxt "@info:tooltip"
  1374. msgid "Highlight unsupported areas of the model in red. Without support these areas will not print properly."
  1375. msgstr "Geef niet-ondersteunde gedeelten van het model een rode markering. Zonder ondersteuning zullen deze gedeelten niet goed worden geprint."
  1376. msgctxt "@button"
  1377. msgid "How to load new material profiles to my printer"
  1378. msgstr "Hoe u nieuwe materiaalprofielen laadt op Mijn printer"
  1379. msgctxt "@action:button"
  1380. msgid "How to update"
  1381. msgstr "Instructies voor bijwerken"
  1382. msgctxt "@text:window"
  1383. msgid "I don't want to send anonymous data"
  1384. msgstr "Ik wil geen anonieme gegevens verzenden"
  1385. msgctxt "@label:status"
  1386. msgid "Idle"
  1387. msgstr "Inactief"
  1388. msgctxt "@label"
  1389. msgid "If you are trying to add a new UltiMaker printer to Cura"
  1390. msgstr "Als u een nieuwe UltiMaker-printer probeert toe te voegen aan Cura"
  1391. msgctxt "@label"
  1392. msgid "If your printer is not listed, read the <a href='%1'>network printing troubleshooting guide</a>"
  1393. msgstr "Raadpleeg de <a href='%1'>handleiding voor probleemoplossing bij printen via het netwerk</a> als uw printer niet in de lijst wordt vermeld"
  1394. msgctxt "@action:button"
  1395. msgid "Import"
  1396. msgstr "Importeren"
  1397. msgctxt "@title:window"
  1398. msgid "Import Material"
  1399. msgstr "Materiaal Importeren"
  1400. msgctxt "@title:window"
  1401. msgid "Import Profile"
  1402. msgstr "Profiel Importeren"
  1403. msgctxt "@action:button"
  1404. msgid "Import all as models"
  1405. msgstr "Allemaal als model importeren"
  1406. msgctxt "@action:button"
  1407. msgid "Import models"
  1408. msgstr "Modellen importeren"
  1409. msgctxt "@label:MonitorStatus"
  1410. msgid "In maintenance. Please check the printer"
  1411. msgstr "In onderhoud. Controleer de printer"
  1412. msgctxt "@info"
  1413. msgid "In order to monitor your print from Cura, please connect the printer."
  1414. msgstr "Sluit de printer aan om uw printopdracht vanuit Cura te volgen."
  1415. msgctxt "@label"
  1416. msgid "In order to start using Cura you will need to configure a printer."
  1417. msgstr "Om Cura te gebruiken moet u een printer configureren."
  1418. msgctxt "@button"
  1419. msgid "In order to use the package you will need to restart Cura"
  1420. msgstr "Om het pakket te gebruiken moet u Cura opnieuw opstarten"
  1421. msgctxt "@option:radio"
  1422. msgid "Include UltiMaker account name"
  1423. msgstr "UltiMaker-accountnaam toevoegen"
  1424. msgctxt "@label"
  1425. msgid "Infill"
  1426. msgstr "Vulling"
  1427. msgctxt "@tooltip"
  1428. msgid "Infill"
  1429. msgstr "Vulling"
  1430. msgctxt "infill_sparse_density description"
  1431. msgid "Infill Density"
  1432. msgstr "Vuldichtheid"
  1433. msgctxt "@action:label"
  1434. msgid "Infill Pattern"
  1435. msgstr "Vulpatroon"
  1436. msgctxt "@item:inlistbox"
  1437. msgid "Infill mesh only"
  1438. msgstr "Alleen vulraster"
  1439. msgctxt "@label"
  1440. msgid "Infill overlapping with this model is modified."
  1441. msgstr "De vulling die met dit model overlapt, is aangepast."
  1442. msgctxt "@info:title"
  1443. msgid "Information"
  1444. msgstr "Informatie"
  1445. msgctxt "@title"
  1446. msgid "Information"
  1447. msgstr "Informatie"
  1448. msgctxt "@info:progress"
  1449. msgid "Initializing Active Machine..."
  1450. msgstr "Actieve machine initialiseren ..."
  1451. msgctxt "@info:progress"
  1452. msgid "Initializing build volume..."
  1453. msgstr "Werkvolume initialiseren ..."
  1454. msgctxt "@info:progress"
  1455. msgid "Initializing engine..."
  1456. msgstr "Engine initialiseren ..."
  1457. msgctxt "@info:progress"
  1458. msgid "Initializing machine manager..."
  1459. msgstr "Machinebeheer initialiseren ..."
  1460. msgctxt "@label"
  1461. msgid "Inner Wall"
  1462. msgstr "Binnenwand"
  1463. msgctxt "@tooltip"
  1464. msgid "Inner Walls"
  1465. msgstr "Binnenwanden"
  1466. msgctxt "@text"
  1467. msgid "Insert the USB stick into your printer and launch the procedure to load new material profiles."
  1468. msgstr "Steek de USB-stick in de printer en start de procedure om nieuwe materiaalprofielen te laden."
  1469. msgctxt "@button"
  1470. msgid "Install"
  1471. msgstr "Installeren"
  1472. msgctxt "@header"
  1473. msgid "Install Materials"
  1474. msgstr "Materialen installeren"
  1475. msgctxt "@window:title"
  1476. msgid "Install Package"
  1477. msgstr "Package installeren"
  1478. msgctxt "@action:button"
  1479. msgid "Install Packages"
  1480. msgstr "Installeer pakketten"
  1481. msgctxt "@header"
  1482. msgid "Install Packages"
  1483. msgstr "Installeer pakketten"
  1484. msgctxt "@header"
  1485. msgid "Install Plugins"
  1486. msgstr "Plugins installeren"
  1487. msgctxt "@action:button"
  1488. msgid "Install missing packages"
  1489. msgstr "Installeer ontbrekende pakketten"
  1490. msgctxt "@title"
  1491. msgid "Install missing packages"
  1492. msgstr "Installeer ontbrekende pakketten"
  1493. msgctxt "@label"
  1494. msgid "Install missing packages from project file."
  1495. msgstr "Installeer ontbrekende pakketten uit het projectbestand."
  1496. msgctxt "@button"
  1497. msgid "Install pending updates"
  1498. msgstr "Updates in afwachting installeren"
  1499. msgctxt "@label"
  1500. msgid "Installed Materials"
  1501. msgstr "Geïnstalleerde materialen"
  1502. msgctxt "@label"
  1503. msgid "Installed Plugins"
  1504. msgstr "Geïnstalleerde plug-ins"
  1505. msgctxt "@button"
  1506. msgid "Installing..."
  1507. msgstr "Installeren..."
  1508. msgctxt "@action:label"
  1509. msgid "Intent"
  1510. msgstr "Intent"
  1511. msgctxt "@label"
  1512. msgid "Interface"
  1513. msgstr "Interface"
  1514. msgctxt "@label Description for application component"
  1515. msgid "Interprocess communication library"
  1516. msgstr "InterProcess Communication-bibliotheek"
  1517. msgctxt "@title:window"
  1518. msgid "Invalid IP address"
  1519. msgstr "Ongeldig IP-adres"
  1520. msgctxt "@info:status"
  1521. msgid "Invalid file URL:"
  1522. msgstr "Ongeldige bestands-URL:"
  1523. msgctxt "@action:button"
  1524. msgid "Invert the direction of camera zoom."
  1525. msgstr "Keer de richting van de camerazoom om."
  1526. msgctxt "@label"
  1527. msgid "Is printed as support."
  1528. msgstr "Is geprint als support."
  1529. msgctxt "@text"
  1530. msgid "It seems like you don't have any compatible printers connected to Digital Factory. Make sure your printer is connected and it's running the latest firmware."
  1531. msgstr "Mogelijk zijn er geen compatibele printers op Digital Factory aangesloten. Controleer of de printer is aangesloten en de nieuwste firmware op de printer is geïnstalleerd."
  1532. msgctxt "@item:inlistbox"
  1533. msgid "JPEG Image"
  1534. msgstr "JPEG-afbeelding"
  1535. msgctxt "@item:inlistbox"
  1536. msgid "JPG Image"
  1537. msgstr "JPG-afbeelding"
  1538. msgctxt "@label Description for application dependency"
  1539. msgid "JSON parser"
  1540. msgstr "JSON-parser"
  1541. msgctxt "@label"
  1542. msgid "Job Name"
  1543. msgstr "Taaknaam"
  1544. msgctxt "@label"
  1545. msgid "Jog Distance"
  1546. msgstr "Jog-afstand"
  1547. msgctxt "@label"
  1548. msgid "Jog Position"
  1549. msgstr "Jog-positie"
  1550. msgctxt "@option:discardOrKeep"
  1551. msgid "Keep and never ask again"
  1552. msgstr "Behouden en nooit meer vragen"
  1553. msgctxt "@action:button"
  1554. msgid "Keep changes"
  1555. msgstr "Wijzigingen behouden"
  1556. msgctxt "@action:button"
  1557. msgid "Keep printer configurations"
  1558. msgstr "Printerconfiguraties behouden"
  1559. msgctxt "@action:menu"
  1560. msgid "Keep this setting visible"
  1561. msgstr "Deze instelling zichtbaar houden"
  1562. msgctxt "@label The argument is a timestamp"
  1563. msgid "Last update: %1"
  1564. msgstr "Laatste update: %1"
  1565. msgctxt "@label:listbox"
  1566. msgid "Layer Thickness"
  1567. msgstr "Laagdikte"
  1568. msgctxt "@item:inlistbox"
  1569. msgid "Layer view"
  1570. msgstr "Laagweergave"
  1571. msgctxt "@button:label"
  1572. msgid "Learn More"
  1573. msgstr "Meer Informatie"
  1574. msgctxt "@button"
  1575. msgid "Learn how to connect your printer to Digital Factory"
  1576. msgstr "Meer informatie over het aansluiten van de printer op Digital Factory"
  1577. msgctxt "@tooltip:button"
  1578. msgid "Learn how to get started with UltiMaker Cura."
  1579. msgstr "Leer hoe u aan de slag gaat met UltiMaker Cura."
  1580. msgctxt "@action"
  1581. msgid "Learn more"
  1582. msgstr "Meer informatie"
  1583. msgctxt "@action:button"
  1584. msgid "Learn more"
  1585. msgstr "Meer informatie"
  1586. msgctxt "@button"
  1587. msgid "Learn more"
  1588. msgstr "Meer informatie"
  1589. msgctxt "@button:label"
  1590. msgid "Learn more"
  1591. msgstr "Meer informatie"
  1592. msgctxt "@action:button"
  1593. msgid "Learn more about Cura print profiles"
  1594. msgstr "Meer informatie over Cura-printprofielen"
  1595. msgctxt "@button"
  1596. msgid "Learn more about adding printers to Cura"
  1597. msgstr "Meer informatie over het toevoegen van printers aan Cura"
  1598. msgctxt "@label"
  1599. msgid "Learn more about project packages."
  1600. msgstr "Meer informatie over projectpakketten."
  1601. msgctxt "@action:inmenu menubar:view"
  1602. msgid "Left Side View"
  1603. msgstr "Weergave linkerzijde"
  1604. msgctxt "@info:tooltip"
  1605. msgid "Left View"
  1606. msgstr "Linkeraanzicht"
  1607. msgctxt "@tooltip:button"
  1608. msgid "Let developers know that something is going wrong."
  1609. msgstr "Laat ontwikkelaars weten dat er iets misgaat."
  1610. msgctxt "@action"
  1611. msgid "Level build plate"
  1612. msgstr "Platform kalibreren"
  1613. msgctxt "@item:inlistbox"
  1614. msgid "Lighter is higher"
  1615. msgstr "Lichter is hoger"
  1616. msgctxt "@label:listbox"
  1617. msgid "Line Type"
  1618. msgstr "Lijntype"
  1619. msgctxt "@label:listbox"
  1620. msgid "Line Width"
  1621. msgstr "Lijnbreedte"
  1622. msgctxt "@item:inlistbox"
  1623. msgid "Linear"
  1624. msgstr "Lineair"
  1625. msgctxt "@label Description for development tool"
  1626. msgid "Linux cross-distribution application deployment"
  1627. msgstr "Implementatie van Linux-toepassing voor kruisdistributie"
  1628. msgctxt "@label"
  1629. msgid "Load %3 as material %1 (This cannot be overridden)."
  1630. msgstr "Laad %3 als materiaal %1 (kan niet worden overschreven)."
  1631. msgctxt "@button"
  1632. msgid "Load more"
  1633. msgstr "Meer laden"
  1634. msgctxt "@button"
  1635. msgid "Loading"
  1636. msgstr "Laden"
  1637. msgctxt "@action:warning"
  1638. msgid "Loading a project will clear all models on the build plate."
  1639. msgstr "Als u een project laadt, worden alle modellen van het platform gewist."
  1640. msgctxt "@label"
  1641. msgid "Loading available configurations from the printer..."
  1642. msgstr "Beschikbare configuraties laden vanaf de printer..."
  1643. msgctxt "@info:progress"
  1644. msgid "Loading interface..."
  1645. msgstr "Interface laden..."
  1646. msgctxt "@info:progress"
  1647. msgid "Loading machines..."
  1648. msgstr "Machines laden..."
  1649. msgctxt "@label:status"
  1650. msgid "Loading..."
  1651. msgstr "Laden..."
  1652. msgctxt "@title"
  1653. msgid "Loading..."
  1654. msgstr "Laden..."
  1655. msgctxt "@label:category menu label"
  1656. msgid "Local printers"
  1657. msgstr "Lokale printers"
  1658. msgctxt "@info:title"
  1659. msgid "Log-in failed"
  1660. msgstr "Aanmelden mislukt"
  1661. msgctxt "@info:title"
  1662. msgid "Login failed"
  1663. msgstr "Inloggen mislukt"
  1664. msgctxt "@title:groupbox"
  1665. msgid "Logs"
  1666. msgstr "Logboeken"
  1667. msgctxt "@label:MonitorStatus"
  1668. msgid "Lost connection with the printer"
  1669. msgstr "Verbinding met de printer is verbroken"
  1670. msgctxt "@action"
  1671. msgid "Machine Settings"
  1672. msgstr "Machine-instellingen"
  1673. msgctxt "@backuplist:label"
  1674. msgid "Machines"
  1675. msgstr "Machines"
  1676. msgctxt "@text"
  1677. msgid "Make sure all your printers are turned ON and connected to Digital Factory."
  1678. msgstr "Controleer of alle printers zijn ingeschakeld en zijn aangesloten op Digital Factory."
  1679. msgctxt "@info:generic"
  1680. msgid "Make sure the g-code is suitable for your printer and printer configuration before sending the file to it. The g-code representation may not be accurate."
  1681. msgstr "Zorg ervoor dat de G-code geschikt is voor uw printer en de printerconfiguratie voordat u het bestand verzendt. Mogelijk is de weergave van de G-code niet nauwkeurig."
  1682. msgctxt "@item:inlistbox"
  1683. msgid "Makerbot Printfile"
  1684. msgstr "Makerbot Printbestand"
  1685. msgctxt "@error"
  1686. msgid "MakerbotWriter could not save to the designated path."
  1687. msgstr "MakerbotWriter kon niet opslaan op het aangegeven pad."
  1688. msgctxt "@error:not supported"
  1689. msgid "MakerbotWriter does not support text mode."
  1690. msgstr "MakerbotWriter ondersteunt geen tekstmodus."
  1691. msgctxt "@action:inmenu"
  1692. msgid "Manage Materials..."
  1693. msgstr "Materialen Beheren..."
  1694. msgctxt "@action:inmenu menubar:printer"
  1695. msgid "Manage Pr&inters..."
  1696. msgstr "Pr&inters Beheren..."
  1697. msgctxt "@action:inmenu menubar:profile"
  1698. msgid "Manage Profiles..."
  1699. msgstr "Profielen Beheren..."
  1700. msgctxt "@action:inmenu"
  1701. msgid "Manage Setting Visibility..."
  1702. msgstr "Instelling voor zichtbaarheid beheren..."
  1703. msgctxt "@item:inmenu"
  1704. msgid "Manage backups"
  1705. msgstr "Back-ups beheren"
  1706. msgctxt "@label link to connect manager"
  1707. msgid "Manage in browser"
  1708. msgstr "Beheren in browser"
  1709. msgctxt "@header"
  1710. msgid "Manage packages"
  1711. msgstr "Pakketten beheren"
  1712. msgctxt "@info:tooltip"
  1713. msgid "Manage packages"
  1714. msgstr "Pakketten beheren"
  1715. msgctxt "@action"
  1716. msgid "Manage print jobs"
  1717. msgstr "Printtaken beheren"
  1718. msgctxt "@label link to Connect and Cloud interfaces"
  1719. msgid "Manage printer"
  1720. msgstr "Printer beheren"
  1721. msgctxt "@button"
  1722. msgid "Manage printers"
  1723. msgstr "Printers beheren"
  1724. msgctxt "@text"
  1725. msgid "Manage your UltiMaker Cura plugins and material profiles here. Make sure to keep your plugins up to date and backup your setup regularly."
  1726. msgstr "Beheer hier uw UltiMaker Cura-plug-ins en materiaalprofielen. Zorg ervoor dat uw plug-ins up-to-date blijven en maak regelmatig een back-up van uw instellingen."
  1727. msgctxt "@label"
  1728. msgid "Manufacturer"
  1729. msgstr "Fabrikant"
  1730. msgctxt "@action:button"
  1731. msgid "Marketplace"
  1732. msgstr "Marktplaats"
  1733. msgctxt "@label"
  1734. msgid "Marketplace"
  1735. msgstr "Marktplaats"
  1736. msgctxt "@action:label"
  1737. msgid "Material"
  1738. msgstr "Materiaal"
  1739. msgctxt "@label"
  1740. msgid "Material"
  1741. msgstr "Materiaal"
  1742. msgctxt "@label:category menu label"
  1743. msgid "Material"
  1744. msgstr "Materiaal"
  1745. msgctxt "@label:listbox"
  1746. msgid "Material Color"
  1747. msgstr "Materiaalkleur"
  1748. msgctxt "@label"
  1749. msgid "Material Type"
  1750. msgstr "Type Materiaal"
  1751. msgctxt "@title"
  1752. msgid "Material color picker"
  1753. msgstr "Kleurkiezer materiaal"
  1754. msgctxt "@label"
  1755. msgid "Material estimation"
  1756. msgstr "Materiaalschatting"
  1757. msgctxt "@title:header"
  1758. msgid "Material profiles successfully synced with the following printers:"
  1759. msgstr "Materiaalprofielen zijn gesynchroniseerd met de volgende printers:"
  1760. msgctxt "@action:label"
  1761. msgid "Material settings"
  1762. msgstr "Materiaalinstellingen"
  1763. msgctxt "@backuplist:label"
  1764. msgid "Materials"
  1765. msgstr "Materialen"
  1766. msgctxt "@button"
  1767. msgid "Materials"
  1768. msgstr "Materialen"
  1769. msgctxt "@title:tab"
  1770. msgid "Materials"
  1771. msgstr "Materialen"
  1772. msgctxt "@label"
  1773. msgid "Materials compatible with active printer:"
  1774. msgstr "Materialen die compatibel zijn met actieve printer:"
  1775. msgctxt "@label"
  1776. msgid "Mesh Type"
  1777. msgstr "Rastertype"
  1778. msgctxt "@action:label"
  1779. msgid "Mode"
  1780. msgstr "Modus"
  1781. msgctxt "@info:title"
  1782. msgid "Model Errors"
  1783. msgstr "Modelfouten"
  1784. msgctxt "@item:inmenu"
  1785. msgid "Modify G-Code"
  1786. msgstr "G-code wijzigen"
  1787. msgctxt "@label"
  1788. msgid "Modify settings for overlaps"
  1789. msgstr "Instellingen aanpassen voor overlapping"
  1790. msgctxt "@item:inmenu"
  1791. msgid "Monitor"
  1792. msgstr "Controleren"
  1793. msgctxt "@action:button"
  1794. msgid "Monitor print"
  1795. msgstr "Printen in de gaten houden"
  1796. msgctxt "@tooltip:button"
  1797. msgid "Monitor print jobs and reprint from your print history."
  1798. msgstr "Volg printtaken en print opnieuw vanuit uw printgeschiedenis."
  1799. msgctxt "@tooltip:button"
  1800. msgid "Monitor printers in Ultimaker Digital Factory."
  1801. msgstr "Volg uw printers in Ultimaker Digital Factory."
  1802. msgctxt "@info"
  1803. msgid "Monitor your printers from everywhere using Ultimaker Digital Factory"
  1804. msgstr "Monitor uw printers overal met Ultimaker Digital Factory"
  1805. msgctxt "@title:window"
  1806. msgid "More information on anonymous data collection"
  1807. msgstr "Meer informatie over anonieme gegevensverzameling"
  1808. msgctxt "@window:title"
  1809. msgid "Move print job to top"
  1810. msgstr "Plaats printtaak bovenaan"
  1811. msgctxt "@action:button"
  1812. msgid "Move to Next Position"
  1813. msgstr "Beweeg Naar de Volgende Positie"
  1814. msgctxt "@label"
  1815. msgid "Move to top"
  1816. msgstr "Plaats bovenaan"
  1817. msgctxt "@info:tooltip"
  1818. msgid "Moves the camera so the model is in the center of the view when a model is selected"
  1819. msgstr "Verplaatst de camera zodanig dat wanneer een model wordt geselecteerd, het model in het midden van het beeld wordt weergegeven"
  1820. msgctxt "@action:inmenu menubar:edit"
  1821. msgid "Multiply Selected"
  1822. msgstr "Verveelvoudig geselecteerde items"
  1823. msgctxt "@title:window"
  1824. msgid "Multiply Selected Model"
  1825. msgid_plural "Multiply Selected Models"
  1826. msgstr[0] "Geselecteerd model verveelvoudigen"
  1827. msgstr[1] "Geselecteerde modellen verveelvoudigen"
  1828. msgctxt "@info"
  1829. msgid "Multiply selected item and place them in a grid of build plate."
  1830. msgstr "Vermenigvuldig het geselecteerde item en plaats het in een raster van een bouwplaat."
  1831. msgctxt "@info:status"
  1832. msgid "Multiplying and placing objects"
  1833. msgstr "Objecten verveelvoudigen en plaatsen"
  1834. msgctxt "@title"
  1835. msgid "My Backups"
  1836. msgstr "Mijn back-ups"
  1837. msgctxt "@label:button"
  1838. msgid "My printers"
  1839. msgstr "Mijn printers"
  1840. msgctxt "@action:label"
  1841. msgid "Name"
  1842. msgstr "Naam"
  1843. msgctxt "@label:category menu label"
  1844. msgid "Network enabled printers"
  1845. msgstr "Netwerkprinters"
  1846. msgctxt "@info:title"
  1847. msgid "Network error"
  1848. msgstr "Netwerkfout"
  1849. msgctxt "@info:title The %s gets replaced with the printer name."
  1850. msgid "New %s stable firmware available"
  1851. msgstr "Nieuwe stabiele firmware voor %s beschikbaar"
  1852. msgctxt "@textfield:placeholder"
  1853. msgid "New Custom Profile"
  1854. msgstr "Nieuw Aangepast Profiel"
  1855. msgctxt "@label"
  1856. msgid "New UltiMaker printers can be connected to Digital Factory and monitored remotely."
  1857. msgstr "Nieuwe UltiMaker printers kunnen toegevoegd worden aan Digital Factory om van afstand beheerd te worden"
  1858. msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!"
  1859. msgid "New features or bug-fixes may be available for your {machine_name}! If you haven't done so already, it is recommended to update the firmware on your printer to version {latest_version}."
  1860. msgstr "Er zijn mogelijk nieuwe functies of foutoplossingen beschikbaar voor uw {machine_name}. Als u dit nog niet hebt gedaan, is het raadzaam om de firmware op uw printer bij te werken naar versie {latest_version}."
  1861. msgctxt "@action:button"
  1862. msgid "New materials installed"
  1863. msgstr "Nieuwe materialen geïnstalleerd"
  1864. msgctxt "info:status"
  1865. msgid "New printer detected from your Ultimaker account"
  1866. msgid_plural "New printers detected from your Ultimaker account"
  1867. msgstr[0] "Nieuwe printer gedetecteerd van uw Ultimaker-account"
  1868. msgstr[1] "Nieuwe printers gedetecteerd van uw Ultimaker-account"
  1869. msgctxt "@title:window"
  1870. msgid "New project"
  1871. msgstr "Nieuw project"
  1872. msgctxt "@action:button"
  1873. msgid "Next"
  1874. msgstr "Volgende"
  1875. msgctxt "@button"
  1876. msgid "Next"
  1877. msgstr "Volgende"
  1878. msgctxt "@info:title"
  1879. msgid "Nightly build"
  1880. msgstr "Nachtbouw"
  1881. msgctxt "@info"
  1882. msgid "No"
  1883. msgstr "Nee"
  1884. msgctxt "@info"
  1885. msgid "No compatibility information"
  1886. msgstr "Geen compatibiliteitsinformatie"
  1887. msgctxt "@description"
  1888. msgid "No compatible printers, that are currently online, were found."
  1889. msgstr "Geen compatibele printers, die momenteel online zijn, indien gevonden."
  1890. msgctxt "@label"
  1891. msgid "No cost estimation available"
  1892. msgstr "Geen kostenraming beschikbaar"
  1893. msgctxt "@info:status Don't translate the XML tags <filename>!"
  1894. msgid "No custom profile to import in file <filename>{0}</filename>"
  1895. msgstr "Er is geen aangepast profiel om in het bestand <filename>{0}</filename> te importeren"
  1896. msgctxt "@label"
  1897. msgid "No items to select from"
  1898. msgstr "Geen items om uit te kiezen"
  1899. msgctxt "@info:title"
  1900. msgid "No layers to show"
  1901. msgstr "Geen lagen om weer te geven"
  1902. msgctxt "@message"
  1903. msgid "No more results to load"
  1904. msgstr "Geen resultaten meer om te laden"
  1905. msgctxt "@error:zip"
  1906. msgid "No permission to write the workspace here."
  1907. msgstr "Geen bevoegdheid om de werkruimte hier te schrijven."
  1908. msgctxt "@title:header"
  1909. msgid "No printers found"
  1910. msgstr "Geen printers gevonden"
  1911. msgctxt "@label"
  1912. msgid "No printers found in your account?"
  1913. msgstr "Geen printers gevonden in uw account?"
  1914. msgctxt "@message:text %1 is the name the printer uses for 'nozzle'."
  1915. msgid "No profiles are available for the selected material/%1 configuration. Please change your configuration."
  1916. msgstr "Er zijn geen profielen beschikbaar voor de geselecteerde materiaal/%1-configuratie. Wijzig uw configuratie."
  1917. msgctxt "@message"
  1918. msgid "No results found with current filter"
  1919. msgstr "Geen resultaten gevonden met huidige filter"
  1920. msgctxt "@label"
  1921. msgid "No specific value has been set"
  1922. msgstr "Er is geen specifieke waarde ingesteld"
  1923. msgctxt "@label"
  1924. msgid "No time estimation available"
  1925. msgstr "Geen tijdschatting beschikbaar"
  1926. msgctxt "@button"
  1927. msgid "Non UltiMaker printer"
  1928. msgstr "Non UltiMaker printer"
  1929. msgctxt "@info No materials"
  1930. msgid "None"
  1931. msgstr "Geen"
  1932. msgctxt "@label"
  1933. msgid "Normal model"
  1934. msgstr "Normaal model"
  1935. msgctxt "@info:title"
  1936. msgid "Not a group host"
  1937. msgstr "Geen groephost"
  1938. msgctxt "@label:MonitorStatus"
  1939. msgid "Not connected to a printer"
  1940. msgstr "Niet met een printer verbonden"
  1941. msgctxt "@action:label"
  1942. msgid "Not in profile"
  1943. msgstr "Niet in profiel"
  1944. msgctxt "@menuitem"
  1945. msgid "Not overridden"
  1946. msgstr "Niet overschreven"
  1947. msgctxt "@info:not supported profile"
  1948. msgid "Not supported"
  1949. msgstr "Niet ondersteund"
  1950. msgctxt "@label"
  1951. msgid "Not yet initialized"
  1952. msgstr "Nog niet geïnitialiseerd"
  1953. msgctxt "@info:status"
  1954. msgid "Nothing is shown because you need to slice first."
  1955. msgstr "Er wordt niets weergegeven omdat u eerst moet slicen."
  1956. msgctxt "@label"
  1957. msgid "Nozzle"
  1958. msgstr "Spuitmond"
  1959. msgctxt "@title:label"
  1960. msgid "Nozzle Settings"
  1961. msgstr "Nozzle-instellingen"
  1962. msgctxt "@label"
  1963. msgid "Nozzle offset X"
  1964. msgstr "Nozzle-offset X"
  1965. msgctxt "@label"
  1966. msgid "Nozzle offset Y"
  1967. msgstr "Nozzle-offset Y"
  1968. msgctxt "@label"
  1969. msgid "Nozzle size"
  1970. msgstr "Maat nozzle"
  1971. msgctxt "@label"
  1972. msgid "Number of Copies"
  1973. msgstr "Aantal exemplaren"
  1974. msgctxt "@label"
  1975. msgid "Number of Extruders"
  1976. msgstr "Aantal extruders"
  1977. msgctxt "@action:button"
  1978. msgid "OK"
  1979. msgstr "OK"
  1980. msgctxt "@label"
  1981. msgid "OS language"
  1982. msgstr "Taal van besturingssysteem"
  1983. msgctxt "@label"
  1984. msgid "Object list"
  1985. msgstr "Lijst met objecten"
  1986. msgctxt "@label:Should be short"
  1987. msgid "Off"
  1988. msgstr "Uit"
  1989. msgctxt "@label:Should be short"
  1990. msgid "On"
  1991. msgstr "Aan"
  1992. msgctxt "@label"
  1993. msgid "Only Show Top Layers"
  1994. msgstr "Alleen bovenlagen weergegeven"
  1995. msgctxt "@info:status"
  1996. msgid "Only one G-code file can be loaded at a time. Skipped importing {0}"
  1997. msgstr "Er kan slechts één G-code-bestand tegelijkertijd worden geladen. Het importeren van {0} is overgeslagen"
  1998. msgctxt "@message"
  1999. msgid "Oops! We encountered an unexpected error during your slicing process. Rest assured, we've automatically received the crash logs for analysis, if you have not disabled data sharing in your preferences. To assist us further, consider sharing your project details on our issue tracker."
  2000. msgstr "Oeps! We zijn een onverwachte fout tegengekomen tijdens uw snijproces. Geen zorgen, we hebben automatisch de crashlogs ontvangen voor analyse als u het delen van gegevens niet heeft uitgeschakeld in uw voorkeuren. Om ons verder te helpen, kunt u overwegen uw projectgegevens te delen op onze issue-tracker."
  2001. msgctxt "@action:button"
  2002. msgid "Open"
  2003. msgstr "Openen"
  2004. msgctxt "@title:menu menubar:file"
  2005. msgid "Open &Recent"
  2006. msgstr "&Recente bestanden openen"
  2007. msgctxt "@item:inlistbox 'Open' is part of the name of this file format."
  2008. msgid "Open Compressed Triangle Mesh"
  2009. msgstr "Gecomprimeerde driehoeksnet openen"
  2010. msgctxt "@title:window"
  2011. msgid "Open File(s)"
  2012. msgstr "Bestand(en) openen"
  2013. msgctxt "@title:menu menubar:file"
  2014. msgid "Open File(s)..."
  2015. msgstr "Bestand(en) openen..."
  2016. msgctxt "@title:window"
  2017. msgid "Open Project"
  2018. msgstr "Project openen"
  2019. msgctxt "@info:title"
  2020. msgid "Open Project File"
  2021. msgstr "Projectbestand Openen"
  2022. msgctxt "@title:window Don't translate 'Universal Cura Project'"
  2023. msgid "Open Universal Cura Project (UCP)"
  2024. msgstr "Universal Cura Project (UCP) openen"
  2025. msgctxt "@title:window Don't translate 'Universal Cura Project'"
  2026. msgid "Open Universal Cura Project (UCP) file"
  2027. msgstr "Bestand van Universal Cura Project (UCP) openen"
  2028. msgctxt "@action:label"
  2029. msgid "Open With"
  2030. msgstr "Openen"
  2031. msgctxt "@action:button"
  2032. msgid "Open as UCP"
  2033. msgstr "Openen als UCP"
  2034. msgctxt "@action:button"
  2035. msgid "Open as project"
  2036. msgstr "Openen als project"
  2037. msgctxt "@title:window"
  2038. msgid "Open file(s)"
  2039. msgstr "Bestand(en) openen"
  2040. msgctxt "@action:button"
  2041. msgid "Open project anyway"
  2042. msgstr "Project toch openen"
  2043. msgctxt "@title:window"
  2044. msgid "Open project file"
  2045. msgstr "Projectbestand openen"
  2046. msgctxt "@label OpenGL version"
  2047. msgid "OpenGL"
  2048. msgstr "OpenGL"
  2049. msgctxt "@label"
  2050. msgid "Opening and saving files"
  2051. msgstr "Bestanden openen en opslaan"
  2052. msgctxt "@header"
  2053. msgid "Optimized for Air Manager"
  2054. msgstr "Geoptimaliseerd voor Air Manager"
  2055. msgctxt "@label"
  2056. msgid "Origin at center"
  2057. msgstr "Centraal oorsprongpunt"
  2058. msgid "Orthographic"
  2059. msgstr "Orthografisch"
  2060. msgctxt "@action:inmenu menubar:view"
  2061. msgid "Orthographic"
  2062. msgstr "Orthografisch"
  2063. msgctxt "@tooltip"
  2064. msgid "Other"
  2065. msgstr "Overig(e)"
  2066. msgctxt "@label"
  2067. msgid "Other models overlapping with this model are modified."
  2068. msgstr "Andere modellen die met dit model overlappen, zijn gewijzigd."
  2069. msgctxt "@label"
  2070. msgid "Other printers"
  2071. msgstr "Andere printers"
  2072. msgctxt "@tooltip"
  2073. msgid "Outer Wall"
  2074. msgstr "Buitenwand"
  2075. msgctxt "@label"
  2076. msgid "Overlaps with this model are not supported."
  2077. msgstr "Overlappingen worden in dit model niet ondersteund."
  2078. msgctxt "@action:button"
  2079. msgid "Override"
  2080. msgstr "Overschrijven"
  2081. msgctxt "@label"
  2082. msgid "Override will use the specified settings with the existing printer configuration. This may result in a failed print."
  2083. msgstr "Met het overschrijven worden de opgegeven instellingen gebruikt met de bestaande printerconfiguratie. De print kan hierdoor mislukken."
  2084. msgctxt "@label %1 is the number of settings it overrides."
  2085. msgid "Overrides %1 setting."
  2086. msgid_plural "Overrides %1 settings."
  2087. msgstr[0] "Overschrijft %1 instelling."
  2088. msgstr[1] "Overschrijft %1 instellingen."
  2089. msgctxt "@title:menu menubar:toplevel"
  2090. msgid "P&references"
  2091. msgstr "Voo&rkeuren"
  2092. msgctxt "@item:inlistbox"
  2093. msgid "PNG Image"
  2094. msgstr "PNG-afbeelding"
  2095. msgctxt "@header"
  2096. msgid "Package details"
  2097. msgstr "Pakketgegevens"
  2098. msgctxt "@label Description for development tool"
  2099. msgid "Packaging Python-applications"
  2100. msgstr "Verpakking Python-toepassingen"
  2101. msgctxt "@info:status"
  2102. msgid "Parsing G-code"
  2103. msgstr "G-code parseren"
  2104. msgctxt "@action:inmenu menubar:edit"
  2105. msgid "Paste from clipboard"
  2106. msgstr "Plakken uit klembord"
  2107. msgctxt "@label"
  2108. msgid "Pause"
  2109. msgstr "Pauzeren"
  2110. msgctxt "@label:MonitorStatus"
  2111. msgid "Paused"
  2112. msgstr "Gepauzeerd"
  2113. msgctxt "@label:status"
  2114. msgid "Paused"
  2115. msgstr "Gepauzeerd"
  2116. msgctxt "@label"
  2117. msgid "Pausing..."
  2118. msgstr "Pauzeren..."
  2119. msgctxt "@label:status"
  2120. msgid "Pausing..."
  2121. msgstr "Pauzeren..."
  2122. msgctxt "@label"
  2123. msgid "Per Model Settings"
  2124. msgstr "Instellingen per Model"
  2125. msgid "Perspective"
  2126. msgstr "Perspectief"
  2127. msgctxt "@action:inmenu menubar:view"
  2128. msgid "Perspective"
  2129. msgstr "Perspectief"
  2130. msgctxt "@action:label"
  2131. msgid "Placement"
  2132. msgstr "Plaatsing"
  2133. msgctxt "@info:title"
  2134. msgid "Placing Object"
  2135. msgstr "Object plaatsen"
  2136. msgctxt "@info:title"
  2137. msgid "Placing Objects"
  2138. msgstr "Objecten plaatsen"
  2139. msgctxt "@label Type of platform"
  2140. msgid "Platform"
  2141. msgstr "Platform"
  2142. msgctxt "@info"
  2143. msgid "Please connect your printer to the network."
  2144. msgstr "Verbind uw printer met het netwerk."
  2145. msgctxt "@text"
  2146. msgid "Please enter a valid IP address."
  2147. msgstr "Voer een geldig IP-adres in."
  2148. msgctxt "@message"
  2149. msgid "Please give the required permissions when authorizing this application."
  2150. msgstr "Verleen de vereiste toestemmingen toe bij het autoriseren van deze toepassing."
  2151. msgctxt "@info"
  2152. msgid "Please make sure your printer has a connection:\n- Check if the printer is turned on.\n- Check if the printer is connected to the network.\n- Check if you are signed in to discover cloud-connected printers."
  2153. msgstr "Controleer of de printer verbonden is:"
  2154. "- Controleer of de printer ingeschakeld is."
  2155. "- Controleer of de printer verbonden is met het netwerk."
  2156. "- Controleer of u bent aangemeld om met de cloud verbonden printers te detecteren."
  2157. msgctxt "@text"
  2158. msgid "Please name your printer"
  2159. msgstr "Geef uw printer een naam"
  2160. msgctxt "@warning:status"
  2161. msgid "Please prepare G-code before exporting."
  2162. msgstr "Bereid voorafgaand aan het exporteren G-code voor."
  2163. msgctxt "@info"
  2164. msgid "Please provide a name for this profile."
  2165. msgstr "Geef een naam op voor dit profiel."
  2166. msgctxt "@info"
  2167. msgid "Please provide a new name."
  2168. msgstr "Gelieve een nieuwe naam op te geven."
  2169. msgctxt "@text"
  2170. msgid "Please read and agree with the plugin licence."
  2171. msgstr "Lees de plug-in-licentie en stem hiermee in."
  2172. msgctxt "@label:MonitorStatus"
  2173. msgid "Please remove the print"
  2174. msgstr "Verwijder de print"
  2175. msgctxt "@info:status"
  2176. msgid "Please review settings and check if your models:\n- Fit within the build volume\n- Are assigned to an enabled extruder\n- Are not all set as modifier meshes"
  2177. msgstr "Controleer de instellingen en zorg ervoor dat uw modellen:"
  2178. "- binnen het werkvolume passen"
  2179. "- zijn toegewezen aan een ingeschakelde extruder"
  2180. "- niet allemaal zijn ingesteld als modificatierasters"
  2181. msgctxt "@label"
  2182. msgid "Please select any upgrades made to this UltiMaker Original"
  2183. msgstr "Selecteer eventuele upgrades die op deze UltiMaker Original zijn uitgevoerd"
  2184. msgctxt "@description"
  2185. msgid "Please sign in to get verified plugins and materials for UltiMaker Cura Enterprise"
  2186. msgstr "Meld u aan voor geverifieerde plug-ins en materialen voor UltiMaker Cura Enterprise"
  2187. msgctxt "@info:tooltip"
  2188. msgid "Please sign in to your UltiMaker account to allow sending non-anonymous data."
  2189. msgstr "Meld u aan bij uw UltiMaker-account om het verzenden van niet-anonieme gegevens mogelijk te maken."
  2190. msgctxt "@action:button"
  2191. msgid "Please sync the material profiles with your printers before starting to print."
  2192. msgstr "Synchroniseer de materiaalprofielen met uw printer voordat u gaat printen."
  2193. msgctxt "@info"
  2194. msgid "Please update your printer's firmware to manage the queue remotely."
  2195. msgstr "Werk de firmware van uw printer bij om de wachtrij op afstand te beheren."
  2196. msgctxt "@info:status"
  2197. msgid "Please wait until the current job has been sent."
  2198. msgstr "Wacht tot de huidige taak is verzonden."
  2199. msgctxt "@title:window"
  2200. msgid "Plugin License Agreement"
  2201. msgstr "Licentieovereenkomst plug-in"
  2202. msgctxt "@button"
  2203. msgid "Plugin license agreement"
  2204. msgstr "Licentieovereenkomst plug-in"
  2205. msgctxt "@backuplist:label"
  2206. msgid "Plugins"
  2207. msgstr "Plug-ins"
  2208. msgctxt "@button"
  2209. msgid "Plugins"
  2210. msgstr "Plug-ins"
  2211. msgctxt "@label Description for application dependency"
  2212. msgid "Polygon clipping library"
  2213. msgstr "Bibliotheek met veelhoeken"
  2214. msgctxt "@label Description for application component"
  2215. msgid "Polygon packing library, developed by Prusa Research"
  2216. msgstr "Verpakkingsbibliotheek met veelhoeken, ontwikkeld door Prusa Research"
  2217. msgctxt "@item:inmenu"
  2218. msgid "Post Processing"
  2219. msgstr "Nabewerking"
  2220. msgctxt "@title:window"
  2221. msgid "Post Processing Plugin"
  2222. msgstr "Plug-in voor Nabewerking"
  2223. msgctxt "@label"
  2224. msgid "Post Processing Scripts"
  2225. msgstr "Scripts voor Nabewerking"
  2226. msgctxt "@button"
  2227. msgid "Pre-heat"
  2228. msgstr "Voorverwarmen"
  2229. msgctxt "@item:inmenu"
  2230. msgid "Prepare"
  2231. msgstr "Voorbereiden"
  2232. msgctxt "@label:MonitorStatus"
  2233. msgid "Preparing..."
  2234. msgstr "Voorbereiden..."
  2235. msgctxt "@label:status"
  2236. msgid "Preparing..."
  2237. msgstr "Voorbereiden..."
  2238. msgctxt "@label"
  2239. msgid "Preset printers"
  2240. msgstr "Vooraf ingestelde printers"
  2241. msgctxt "@button"
  2242. msgid "Preview"
  2243. msgstr "Voorbeeld"
  2244. msgctxt "@item:inmenu"
  2245. msgid "Preview"
  2246. msgstr "Voorbeeld"
  2247. msgctxt "@tooltip"
  2248. msgid "Prime Tower"
  2249. msgstr "Primepijler"
  2250. msgctxt "@action:button"
  2251. msgid "Print"
  2252. msgstr "Printen"
  2253. msgctxt "@action:inmenu menubar:edit"
  2254. msgid "Print After"
  2255. msgstr "Afdrukken na"
  2256. msgctxt "@action:inmenu menubar:edit"
  2257. msgid "Print Before"
  2258. msgstr "Afdrukken voor"
  2259. msgctxt "@label"
  2260. msgid "Print Selected Model With:"
  2261. msgid_plural "Print Selected Models With:"
  2262. msgstr[0] "Geselecteerd model printen met:"
  2263. msgstr[1] "Geselecteerde modellen printen met:"
  2264. msgctxt "@label %1 is filled in with the name of an extruder"
  2265. msgid "Print Selected Model with %1"
  2266. msgid_plural "Print Selected Models with %1"
  2267. msgstr[0] "Geselecteerd model printen met %1"
  2268. msgstr[1] "Geselecteerde modellen printen met %1"
  2269. msgctxt "@label"
  2270. msgid "Print as support"
  2271. msgstr "Printen als supportstructuur"
  2272. msgctxt "@info:title"
  2273. msgid "Print error"
  2274. msgstr "Printfout"
  2275. msgctxt "@message"
  2276. msgid "Print in Progress"
  2277. msgstr "Bezig met printen"
  2278. msgctxt "@info:status"
  2279. msgid "Print job queue is full. The printer can't accept a new job."
  2280. msgstr "Wachtrij voor afdruktaken is vol. De printer kan geen nieuwe taken accepteren."
  2281. msgctxt "@info:status"
  2282. msgid "Print job was successfully sent to the printer."
  2283. msgstr "De printtaak is naar de printer verzonden."
  2284. msgctxt "@label"
  2285. msgid "Print jobs"
  2286. msgstr "Printtaken"
  2287. msgctxt "@label:button"
  2288. msgid "Print jobs"
  2289. msgstr "Printtaken"
  2290. msgctxt "@action:button Preceded by 'Ready to'."
  2291. msgid "Print over network"
  2292. msgstr "Printen via netwerk"
  2293. msgctxt "@properties:tooltip"
  2294. msgid "Print over network"
  2295. msgstr "Printen via netwerk"
  2296. msgctxt "@title:window"
  2297. msgid "Print over network"
  2298. msgstr "Printen via netwerk"
  2299. msgctxt "@label"
  2300. msgid "Print settings"
  2301. msgstr "Instellingen voor printen"
  2302. msgctxt "@label shown when we load a Gcode file"
  2303. msgid "Print setup disabled. G-code file can not be modified."
  2304. msgstr "De printinstelling is uitgeschakeld. Het G-code-bestand kan niet worden gewijzigd."
  2305. msgctxt "@action:button Preceded by 'Ready to'."
  2306. msgid "Print via USB"
  2307. msgstr "Printen via USB"
  2308. msgctxt "@info:tooltip"
  2309. msgid "Print via USB"
  2310. msgstr "Via USB Printen"
  2311. msgctxt "@action:button"
  2312. msgid "Print via cloud"
  2313. msgstr "Printen via Cloud"
  2314. msgctxt "@properties:tooltip"
  2315. msgid "Print via cloud"
  2316. msgstr "Printen via Cloud"
  2317. msgctxt "@action:label"
  2318. msgid "Print with"
  2319. msgstr "Print met"
  2320. msgctxt "@title:tab"
  2321. msgid "Printer"
  2322. msgstr "Printer"
  2323. msgctxt "@title:window"
  2324. msgid "Printer Address"
  2325. msgstr "Printeradres"
  2326. msgctxt "@action:label"
  2327. msgid "Printer Group"
  2328. msgstr "Printergroep"
  2329. msgctxt "@title:label"
  2330. msgid "Printer Settings"
  2331. msgstr "Printerinstellingen"
  2332. msgctxt "@label"
  2333. msgid "Printer control"
  2334. msgstr "Printerbediening"
  2335. msgctxt "@label:MonitorStatus"
  2336. msgid "Printer does not accept commands"
  2337. msgstr "Printer accepteert geen opdrachten"
  2338. msgctxt "@label"
  2339. msgid "Printer name"
  2340. msgstr "Printernaam"
  2341. msgctxt "@label"
  2342. msgid "Printer selection"
  2343. msgstr "Printerselectie"
  2344. msgctxt "@action:label"
  2345. msgid "Printer settings"
  2346. msgstr "Printerinstellingen"
  2347. msgctxt "@info:tooltip"
  2348. msgid "Printer settings will be updated to match the settings saved with the project."
  2349. msgstr "Printerinstellingen worden bijgewerkt zodat deze overeenkomen met de instellingen die zijn opgeslagen met het project."
  2350. msgctxt "@title:tab"
  2351. msgid "Printers"
  2352. msgstr "Printers"
  2353. msgctxt "info:status"
  2354. msgid "Printers added from Digital Factory:"
  2355. msgstr "Printers toegevoegd vanuit Digital Factory:"
  2356. msgctxt "@text Asking the user whether printers are missing in a list."
  2357. msgid "Printers missing?"
  2358. msgstr "Ontbreken er printers?"
  2359. msgctxt "@title:label"
  2360. msgid "Printhead Settings"
  2361. msgstr "Printkopinstellingen"
  2362. msgctxt "@label:status"
  2363. msgid "Printing"
  2364. msgstr "Printen"
  2365. msgctxt "@label"
  2366. msgid "Printing Time"
  2367. msgstr "Printtijd"
  2368. msgctxt "@label:MonitorStatus"
  2369. msgid "Printing..."
  2370. msgstr "Printen..."
  2371. msgctxt "@label"
  2372. msgid "Privacy"
  2373. msgstr "Privacy"
  2374. msgctxt "@button"
  2375. msgid "Processing"
  2376. msgstr "Verwerken"
  2377. msgctxt "@info:status"
  2378. msgid "Processing Layers"
  2379. msgstr "Lagen verwerken"
  2380. msgctxt "@label"
  2381. msgid "Profile"
  2382. msgstr "Profiel"
  2383. msgctxt "@title:column"
  2384. msgid "Profile"
  2385. msgstr "Profiel"
  2386. msgctxt "@label"
  2387. msgid "Profile author"
  2388. msgstr "Profieleigenaar"
  2389. msgctxt "@info:status"
  2390. msgid "Profile is missing a quality type."
  2391. msgstr "Er ontbreekt een kwaliteitstype in het profiel."
  2392. msgctxt "@action:label"
  2393. msgid "Profile settings"
  2394. msgstr "Profielinstellingen"
  2395. msgctxt "@title:column"
  2396. msgid "Profile settings"
  2397. msgstr "Profielinstellingen"
  2398. msgctxt "@info:status"
  2399. msgid "Profile {0} has an unknown file type or is corrupted."
  2400. msgstr "Het profiel {0} heeft een onbekend bestandstype of is beschadigd."
  2401. msgctxt "@backuplist:label"
  2402. msgid "Profiles"
  2403. msgstr "Profielen"
  2404. msgctxt "@label"
  2405. msgid "Profiles"
  2406. msgstr "Profielen"
  2407. msgctxt "@title:tab"
  2408. msgid "Profiles"
  2409. msgstr "Profielen"
  2410. msgctxt "@label"
  2411. msgid "Profiles compatible with active printer:"
  2412. msgstr "Profielen die compatibel zijn met actieve printer:"
  2413. msgctxt "@label Description for application dependency"
  2414. msgid "Programming language"
  2415. msgstr "Programmeertaal"
  2416. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  2417. msgid "Project file <filename>{0}</filename> contains an unknown machine type <message>{1}</message>. Cannot import the machine. Models will be imported instead."
  2418. msgstr "Projectbestand <filename>{0}</filename> bevat een onbekend type machine <message>{1}</message>. Kan de machine niet importeren. In plaats daarvan worden er modellen geïmporteerd."
  2419. msgctxt "@info:error Don't translate the XML tags <filename> or <message>!"
  2420. msgid "Project file <filename>{0}</filename> is corrupt: <message>{1}</message>."
  2421. msgstr "Projectbestand <filename>{0}</filename> is corrupt: <message>{1}</message>."
  2422. msgctxt "@info:error Don't translate the XML tag <filename>!"
  2423. msgid "Project file <filename>{0}</filename> is made using profiles that are unknown to this version of UltiMaker Cura."
  2424. msgstr "Projectbestand <filename>{0}</filename> wordt gemaakt met behulp van profielen die onbekend zijn bij deze versie van UltiMaker Cura."
  2425. msgctxt "@info:error Don't translate the XML tags <filename> or <message>!"
  2426. msgid "Project file <filename>{0}</filename> is suddenly inaccessible: <message>{1}</message>."
  2427. msgstr "Projectbestand <filename>{0}</filename> is plotseling ontoegankelijk: <message>{1}</message>."
  2428. msgctxt "@label"
  2429. msgid "Properties"
  2430. msgstr "Eigenschappen"
  2431. msgctxt "@label"
  2432. msgid "PyQt version"
  2433. msgstr "PyQt version"
  2434. msgctxt "@Label Description for application dependency"
  2435. msgid "Python Error tracking library"
  2436. msgstr "Python fouttraceringsbibliotheek"
  2437. msgctxt "@label Description for application dependency"
  2438. msgid "Python bindings for Clipper"
  2439. msgstr "Pythonbindingen voor Clipper"
  2440. msgctxt "@label Description for application component"
  2441. msgid "Python bindings for libnest2d"
  2442. msgstr "Pythonbindingen voor libnest2d"
  2443. msgctxt "@label"
  2444. msgid "Qt version"
  2445. msgstr "Qt version"
  2446. msgctxt "@info:status"
  2447. msgid "Quality type '{0}' is not compatible with the current active machine definition '{1}'."
  2448. msgstr "Kwaliteitstype '{0}' is niet compatibel met de huidige actieve machinedefinitie '{1}'."
  2449. msgctxt "@info:title"
  2450. msgid "Queue Full"
  2451. msgstr "Wachtrij vol"
  2452. msgctxt "@label"
  2453. msgid "Queued"
  2454. msgstr "In wachtrij"
  2455. msgctxt "@info:button, %1 is the application name"
  2456. msgid "Quit %1"
  2457. msgstr "Sluit %1"
  2458. msgctxt "@button"
  2459. msgid "Recommended"
  2460. msgstr "Aanbevolen"
  2461. msgctxt "@title:tab"
  2462. msgid "Recommended"
  2463. msgstr "Aanbevolen"
  2464. msgctxt "@label"
  2465. msgid "Recommended print settings"
  2466. msgstr "Aanbevolen print instellingen"
  2467. msgctxt "@info %1 is the name of a profile"
  2468. msgid "Recommended settings (for <b>%1</b>) were altered."
  2469. msgstr "Aanbevolen instellingen (voor <b>%1</b>) zijn gewijzigd."
  2470. msgctxt "@action:button"
  2471. msgid "Refresh"
  2472. msgstr "Vernieuwen"
  2473. msgctxt "@button"
  2474. msgid "Refresh"
  2475. msgstr "Vernieuwen"
  2476. msgctxt "@label"
  2477. msgid "Refresh"
  2478. msgstr "Vernieuwen"
  2479. msgctxt "@button"
  2480. msgid "Refresh List"
  2481. msgstr "Lijst vernieuwen"
  2482. msgctxt "@button"
  2483. msgid "Refreshing..."
  2484. msgstr "Vernieuwen..."
  2485. msgctxt "@label"
  2486. msgid "Release Notes"
  2487. msgstr "Release notes"
  2488. msgctxt "@action:inmenu menubar:file"
  2489. msgid "Reload All Models"
  2490. msgstr "Alle Modellen Opnieuw Laden"
  2491. msgctxt "@text:window"
  2492. msgid "Remember my choice"
  2493. msgstr "Mijn keuze onthouden"
  2494. msgctxt "@item:intext"
  2495. msgid "Removable Drive"
  2496. msgstr "Verwisselbaar Station"
  2497. msgctxt "@action:button"
  2498. msgid "Remove"
  2499. msgstr "Verwijderen"
  2500. msgctxt "@action:button"
  2501. msgid "Remove printers"
  2502. msgstr "Printers verwijderen"
  2503. msgctxt "@title:window"
  2504. msgid "Remove printers?"
  2505. msgstr "Printers verwijderen?"
  2506. msgctxt "@action:button"
  2507. msgid "Rename"
  2508. msgstr "Hernoemen"
  2509. msgctxt "@title:window"
  2510. msgid "Rename"
  2511. msgstr "Naam wijzigen"
  2512. msgctxt "@title:window"
  2513. msgid "Rename Profile"
  2514. msgstr "Profiel Hernoemen"
  2515. msgctxt "@action:inmenu menubar:help"
  2516. msgid "Report a &Bug"
  2517. msgstr "Een &Bug Rapporteren"
  2518. msgctxt "@label:button"
  2519. msgid "Report a bug"
  2520. msgstr "Een fout melden"
  2521. msgctxt "@message:button"
  2522. msgid "Report a bug"
  2523. msgstr "Een fout melden"
  2524. msgctxt "@message:description"
  2525. msgid "Report a bug on UltiMaker Cura's issue tracker."
  2526. msgstr "Meld een fout via de issue tracker van UltiMaker Cura."
  2527. msgctxt "@label:status"
  2528. msgid "Requires configuration changes"
  2529. msgstr "Hiervoor zijn configuratiewijzigingen vereist"
  2530. msgctxt "@action:inmenu menubar:edit"
  2531. msgid "Reset All Model Positions"
  2532. msgstr "Alle Modelposities Herstellen"
  2533. msgctxt "@action:inmenu menubar:edit"
  2534. msgid "Reset All Model Transformations"
  2535. msgstr "Alle Modeltransformaties Herstellen"
  2536. msgctxt "@info"
  2537. msgid "Reset to defaults."
  2538. msgstr "Terug zetten naar standaardwaarden."
  2539. msgctxt "@label"
  2540. msgid "Resolution"
  2541. msgstr "Resolutie"
  2542. msgctxt "@button"
  2543. msgid "Restore"
  2544. msgstr "Herstellen"
  2545. msgctxt "@dialog:title"
  2546. msgid "Restore Backup"
  2547. msgstr "Back-up herstellen"
  2548. msgctxt "@option:check"
  2549. msgid "Restore window position on start"
  2550. msgstr "Herstel de vensterpositie bij het opstarten"
  2551. msgctxt "@label"
  2552. msgid "Resume"
  2553. msgstr "Hervatten"
  2554. msgctxt "@label"
  2555. msgid "Resuming..."
  2556. msgstr "Hervatten..."
  2557. msgctxt "@label:status"
  2558. msgid "Resuming..."
  2559. msgstr "Hervatten..."
  2560. msgctxt "@tooltip"
  2561. msgid "Retractions"
  2562. msgstr "Intrekkingen"
  2563. msgctxt "@button"
  2564. msgid "Retry?"
  2565. msgstr "Opnieuw proberen?"
  2566. msgctxt "@action:inmenu menubar:view"
  2567. msgid "Right Side View"
  2568. msgstr "Weergave rechterzijde"
  2569. msgctxt "@info:tooltip"
  2570. msgid "Right View"
  2571. msgstr "Rechteraanzicht"
  2572. msgctxt "@label Description for application dependency"
  2573. msgid "Root Certificates for validating SSL trustworthiness"
  2574. msgstr "Rootcertificaten voor het valideren van SSL-betrouwbaarheid"
  2575. msgctxt "@info:title"
  2576. msgid "Safely Remove Hardware"
  2577. msgstr "Hardware veilig verwijderen"
  2578. msgctxt "@button"
  2579. msgid "Safety datasheet"
  2580. msgstr "Informatieblad veiligheid"
  2581. msgctxt "@action:button"
  2582. msgid "Save"
  2583. msgstr "Opslaan"
  2584. msgctxt "@option"
  2585. msgid "Save Cura project"
  2586. msgstr "Cura-project opslaan"
  2587. msgctxt "@option"
  2588. msgid "Save Cura project and .makerbot print file"
  2589. msgstr "Cura-project en .makerbot-printbestand opslaan"
  2590. msgctxt "@option"
  2591. msgid "Save Cura project and .ufp print file"
  2592. msgstr "Cura-project en .ufp-printbestand opslaan"
  2593. msgctxt "@title:window"
  2594. msgid "Save Custom Profile"
  2595. msgstr "Bewaar aangepast profiel"
  2596. msgctxt "@title:window"
  2597. msgid "Save Project"
  2598. msgstr "Project opslaan"
  2599. msgctxt "@title:menu menubar:file"
  2600. msgid "Save Project..."
  2601. msgstr "Project opslaan..."
  2602. msgctxt "@action:button"
  2603. msgid "Save as new custom profile"
  2604. msgstr "Behoud wijzigingen in een nieuw profiel"
  2605. msgctxt "@action:button"
  2606. msgid "Save changes"
  2607. msgstr "Wijzigingen behouden"
  2608. msgctxt "@button"
  2609. msgid "Save new profile"
  2610. msgstr "Bewaar nieuw profiel"
  2611. msgctxt "@action:button"
  2612. msgid "Save project"
  2613. msgstr "Project opslaan"
  2614. msgctxt "@text"
  2615. msgid "Save the .umm file on a USB stick."
  2616. msgstr "Bewaar het .umm-bestand op een USB-stick."
  2617. msgctxt "@action:button Preceded by 'Ready to'."
  2618. msgid "Save to Removable Drive"
  2619. msgstr "Opslaan op verwisselbaar station"
  2620. msgctxt "@item:inlistbox"
  2621. msgid "Save to Removable Drive {0}"
  2622. msgstr "Opslaan op Verwisselbaar Station {0}"
  2623. msgctxt "@info:status"
  2624. msgid "Saved to Removable Drive {0} as {1}"
  2625. msgstr "Opgeslagen op Verwisselbaar Station {0} als {1}"
  2626. msgctxt "@info:title"
  2627. msgid "Saving"
  2628. msgstr "Opslaan"
  2629. msgctxt "@info:progress Don't translate the XML tags <filename>!"
  2630. msgid "Saving to Removable Drive <filename>{0}</filename>"
  2631. msgstr "Opslaan op Verwisselbaar Station <filename>{0}</filename>"
  2632. msgctxt "@option:check"
  2633. msgid "Scale extremely small models"
  2634. msgstr "Extreem kleine modellen schalen"
  2635. msgctxt "@option:check"
  2636. msgid "Scale large models"
  2637. msgstr "Grote modellen schalen"
  2638. msgctxt "@placeholder"
  2639. msgid "Search"
  2640. msgstr "Zoeken"
  2641. msgctxt "@info"
  2642. msgid "Search in the browser"
  2643. msgstr "Zoeken in browser"
  2644. msgctxt "@label:textbox"
  2645. msgid "Search settings"
  2646. msgstr "Instellingen zoeken"
  2647. msgctxt "@action:inmenu menubar:edit"
  2648. msgid "Select All Models"
  2649. msgstr "Alle Modellen Selecteren"
  2650. msgctxt "@title:window"
  2651. msgid "Select Printer"
  2652. msgstr "Printer selecteren"
  2653. msgctxt "@title:window"
  2654. msgid "Select Settings to Customize for this model"
  2655. msgstr "Instellingen Selecteren om Dit Model Aan te Passen"
  2656. msgctxt "@text"
  2657. msgid "Select and install material profiles optimised for your UltiMaker 3D printers."
  2658. msgstr "Selecteer en installeer materiaalprofielen die zijn geoptimaliseerd voor uw UltiMaker 3D-printers."
  2659. msgctxt "@label"
  2660. msgid "Select configuration"
  2661. msgstr "Configuratie selecteren"
  2662. msgctxt "@title:window"
  2663. msgid "Select custom firmware"
  2664. msgstr "Aangepaste firmware selecteren"
  2665. msgctxt "@option:check"
  2666. msgid "Select models when loaded"
  2667. msgstr "Modellen selecteren wanneer ze geladen zijn"
  2668. msgctxt "@action:button"
  2669. msgid "Select settings"
  2670. msgstr "Instellingen selecteren"
  2671. msgctxt "@action"
  2672. msgid "Select upgrades"
  2673. msgstr "Upgrades selecteren"
  2674. msgctxt "@label"
  2675. msgid "Select your printer from the list below:"
  2676. msgstr "Selecteer uw printer in de onderstaande lijst:"
  2677. msgctxt "@option:check"
  2678. msgid "Send (anonymous) print information"
  2679. msgstr "(Anonieme) printgegevens verzenden"
  2680. msgctxt "@label"
  2681. msgid "Send G-code"
  2682. msgstr "G-code verzenden"
  2683. msgctxt "@tooltip of G-code command input"
  2684. msgid "Send a custom G-code command to the connected printer. Press 'enter' to send the command."
  2685. msgstr "Verzend een aangepaste G-code-opdracht naar de verbonden printer. Druk op Enter om de opdracht te verzenden."
  2686. msgctxt "@action:button"
  2687. msgid "Send crash report to UltiMaker"
  2688. msgstr "Het crashrapport naar UltiMaker verzenden"
  2689. msgctxt "@info:tooltip"
  2690. msgid "Send crash reports with your registered UltiMaker account name and the project name to UltiMaker Sentry. No actual model data is being send."
  2691. msgstr "Verzend crashrapporten met uw geregistreerde UltiMaker-accountnaam en de projectnaam naar UltiMaker Sentry. Er worden geen daadwerkelijke modelgegevens verzonden."
  2692. msgctxt "@info:tooltip"
  2693. msgid "Send crash reports without any personally identifiable information or models data to UltiMaker."
  2694. msgstr "Verzend crashrapporten zonder enige persoonlijk identificeerbare informatie of modelgegevens naar UltiMaker."
  2695. msgctxt "@option:check"
  2696. msgid "Send engine crash reports"
  2697. msgstr "Verzend engine-crashrapporten"
  2698. msgctxt "@action:button"
  2699. msgid "Send report"
  2700. msgstr "Rapport verzenden"
  2701. msgctxt "@info:status"
  2702. msgid "Sending Print Job"
  2703. msgstr "Printtaak verzenden"
  2704. msgctxt "@info:title"
  2705. msgid "Sending materials to printer"
  2706. msgstr "De materialen worden naar de printer verzonden"
  2707. msgctxt "@label Description for application dependency"
  2708. msgid "Serial communication library"
  2709. msgstr "Seriële-communicatiebibliotheek"
  2710. msgctxt "@action:inmenu"
  2711. msgid "Set as Active Extruder"
  2712. msgstr "Instellen als Actieve Extruder"
  2713. msgctxt "@title:column"
  2714. msgid "Setting"
  2715. msgstr "Instelling"
  2716. msgctxt "@title:tab"
  2717. msgid "Setting Visibility"
  2718. msgstr "Zichtbaarheid Instellen"
  2719. msgctxt "@info:progress"
  2720. msgid "Setting up preferences..."
  2721. msgstr "Voorkeuren instellen..."
  2722. msgctxt "@info:progress"
  2723. msgid "Setting up scene..."
  2724. msgstr "Scene instellen..."
  2725. msgctxt "@action:label"
  2726. msgid "Setting visibility"
  2727. msgstr "Zichtbaarheid instellen"
  2728. msgctxt "@label"
  2729. msgid "Settings"
  2730. msgstr "Instellingen"
  2731. msgctxt "@title:tab"
  2732. msgid "Settings"
  2733. msgstr "Instellingen"
  2734. msgctxt "@action:label"
  2735. msgid "Settings Loaded from UCP file"
  2736. msgstr "Instellingen geladen uit UCP-bestand"
  2737. msgctxt "@info:message Followed by a list of settings."
  2738. msgid "Settings have been changed to match the current availability of extruders:"
  2739. msgstr "De instellingen zijn gewijzigd zodat deze overeenkomen met de huidige beschikbaarheid van extruders:"
  2740. msgctxt "@info:title"
  2741. msgid "Settings updated"
  2742. msgstr "De instellingen zijn bijgewerkt"
  2743. msgctxt "@text"
  2744. msgid "Share ideas and get help from 48,000+ users in the UltiMaker Community"
  2745. msgstr "Deel ideeën met 48,000+ gebruikers in de UltiMaker Community of vraag hen om ondersteuning"
  2746. msgctxt "@label"
  2747. msgid "Shell"
  2748. msgstr "Shell"
  2749. msgctxt "@action:label"
  2750. msgid "Shell Thickness"
  2751. msgstr "Wand Dikte"
  2752. msgctxt "@info:tooltip"
  2753. msgid "Should Cura check for updates when the program is started?"
  2754. msgstr "Moet Cura op updates controleren wanneer het programma wordt gestart?"
  2755. msgctxt "@info:tooltip"
  2756. msgid "Should Cura open at the location it was closed?"
  2757. msgstr "Moet Cura openen op de locatie waar het gesloten werd?"
  2758. msgctxt "@info:tooltip"
  2759. msgid "Should a prefix based on the printer name be added to the print job name automatically?"
  2760. msgstr "Moet er automatisch een op de printernaam gebaseerde voorvoegsel aan de naam van de printtaak worden toegevoegd?"
  2761. msgctxt "@info:tooltip"
  2762. msgid "Should a summary be shown when saving a project file?"
  2763. msgstr "Dient er een samenvatting te worden weergegeven wanneer een projectbestand wordt opgeslagen?"
  2764. msgctxt "@info:tooltip"
  2765. msgid "Should an automatic check for new plugins be done every time Cura is started? It is highly recommended that you do not disable this!"
  2766. msgstr "Moet er elke keer dat Cura wordt opgestart automatisch worden gecontroleerd op nieuwe plug-ins? Wij raden u ten zeerste aan dit niet uit te schakelen!"
  2767. msgctxt "@info:tooltip"
  2768. msgid "Should anonymous data about your print be sent to UltiMaker? Note, no models, IP addresses or other personally identifiable information is sent or stored."
  2769. msgstr "Mogen anonieme gegevens over uw print naar UltiMaker worden verzonden? Opmerking: er worden geen modellen, IP-adressen of andere persoonlijk identificeerbare gegevens verzonden of opgeslagen."
  2770. msgctxt "@info:tooltip"
  2771. msgid "Should layer be forced into compatibility mode?"
  2772. msgstr "Moet de laag in de compatibiliteitsmodus worden geforceerd?"
  2773. msgctxt "@info:tooltip"
  2774. msgid "Should models be scaled to the build volume if they are too large?"
  2775. msgstr "Moeten modellen worden geschaald naar het werkvolume als ze te groot zijn?"
  2776. msgctxt "@info:tooltip"
  2777. msgid "Should models be selected after they are loaded?"
  2778. msgstr "Moeten modellen worden geselecteerd nadat ze zijn geladen?"
  2779. msgctxt "@info:tooltip"
  2780. msgid "Should models on the platform be moved down to touch the build plate?"
  2781. msgstr "Moeten modellen in het printgebied omlaag worden gebracht zodat ze het platform raken?"
  2782. msgctxt "@info:tooltip"
  2783. msgid "Should models on the platform be moved so that they no longer intersect?"
  2784. msgstr "Moeten modellen op het platform zodanig worden verplaatst dat ze elkaar niet meer doorsnijden?"
  2785. msgctxt "@info:tooltip"
  2786. msgid "Should opening files from the desktop or external applications open in the same instance of Cura?"
  2787. msgstr "Wilt u dat bestanden vanaf de desktop of externe toepassingen in dezelfde instantie van Cura worden geopend?"
  2788. msgctxt "@info:tooltip"
  2789. msgid "Should slicing crashes be automatically reported to Ultimaker? Note, no models, IP addresses or other personally identifiable information is sent or stored, unless you give explicit permission."
  2790. msgstr "Moeten slicing-crashes automatisch gemeld worden aan Ultimaker? Let erop dat er geen modellen, IP-adressen of andere persoonlijk identificeerbare gegevens worden verzonden of opgeslagen, tenzij u hier expliciet toestemming voor geeft."
  2791. msgctxt "@info:tooltip"
  2792. msgid "Should the build plate be cleared before loading a new model in the single instance of Cura?"
  2793. msgstr "Moet het platform worden leeggemaakt voordat u een nieuw model laadt in de dezelfde instantie van Cura?"
  2794. msgctxt "@info:tooltip"
  2795. msgid "Should the default zoom behavior of cura be inverted?"
  2796. msgstr "Moet het standaard zoomgedrag van Cura worden omgekeerd?"
  2797. msgctxt "@info:tooltip"
  2798. msgid "Should zooming move in the direction of the mouse?"
  2799. msgstr "Moet het zoomen in de richting van de muis gebeuren?"
  2800. msgctxt "@label"
  2801. msgid "Show 5 Detailed Layers On Top"
  2802. msgstr "5 gedetailleerde lagen bovenaan weergeven"
  2803. msgctxt "@action:inmenu menubar:help"
  2804. msgid "Show Configuration Folder"
  2805. msgstr "Open Configuratiemap"
  2806. msgctxt "@button"
  2807. msgid "Show Custom"
  2808. msgstr "Aangepast"
  2809. msgctxt "@action:inmenu menubar:help"
  2810. msgid "Show Online &Documentation"
  2811. msgstr "Online &Documentatie Weergeven"
  2812. msgctxt "@action:inmenu"
  2813. msgid "Show Online Troubleshooting"
  2814. msgstr "Online probleemoplossing weergeven"
  2815. msgctxt "@label:checkbox"
  2816. msgid "Show all"
  2817. msgstr "Alles weergeven"
  2818. msgctxt "@label"
  2819. msgid "Show all connected printers"
  2820. msgstr "Alle aangesloten printers tonen"
  2821. msgctxt "@info:tooltip"
  2822. msgid "Show an icon and notifications in the system notification area."
  2823. msgstr "Toon een pictogram en meldingen in het systeemvak voor meldingen."
  2824. msgctxt "@info:tooltip"
  2825. msgid "Show caution message in g-code reader."
  2826. msgstr "Toon het waarschuwingsbericht in de G-code-lezer."
  2827. msgctxt "@action:button"
  2828. msgid "Show configuration folder"
  2829. msgstr "Open Configuratiemap"
  2830. msgctxt "@action:button"
  2831. msgid "Show detailed crash report"
  2832. msgstr "Gedetailleerd crashrapport weergeven"
  2833. msgctxt "@action:button"
  2834. msgid "Show settings"
  2835. msgstr "Instellingen weergeven"
  2836. msgctxt "@option:check"
  2837. msgid "Show summary dialog when saving project"
  2838. msgstr "Dialoogvenster voor samenvatting weergeven tijdens het opslaan van een project"
  2839. msgctxt "@tooltip:button"
  2840. msgid "Show your support for Cura with a donation."
  2841. msgstr "Laat zien dat u Cura steunt met een donatie."
  2842. msgctxt "@button"
  2843. msgid "Sign Out"
  2844. msgstr "Afmelden"
  2845. msgctxt "@action:button"
  2846. msgid "Sign in"
  2847. msgstr "Aanmelden"
  2848. msgctxt "@button"
  2849. msgid "Sign in"
  2850. msgstr "Aanmelden"
  2851. msgctxt "@title:header"
  2852. msgid "Sign in"
  2853. msgstr "Aanmelden"
  2854. msgctxt "@info"
  2855. msgid "Sign in into UltiMaker Digital Factory"
  2856. msgstr "Inloggen bij UltiMaker Digital Factory"
  2857. msgctxt "@button"
  2858. msgid "Sign in to Digital Factory"
  2859. msgstr "Inloggen bij Digital Factory"
  2860. msgctxt "@label"
  2861. msgid "Sign in to the UltiMaker platform"
  2862. msgstr "Meld u aan op het UltiMaker-platform"
  2863. msgctxt "@tooltip"
  2864. msgid "Skin"
  2865. msgstr "Huid"
  2866. msgctxt "@action:button"
  2867. msgid "Skip"
  2868. msgstr "Overslaan"
  2869. msgctxt "@button"
  2870. msgid "Skip"
  2871. msgstr "Overslaan"
  2872. msgctxt "@tooltip"
  2873. msgid "Skirt"
  2874. msgstr "Rok"
  2875. msgctxt "@button"
  2876. msgid "Slice"
  2877. msgstr "Slicen"
  2878. msgctxt "@option:check"
  2879. msgid "Slice automatically"
  2880. msgstr "Automatisch slicen"
  2881. msgctxt "@info:tooltip"
  2882. msgid "Slice automatically when changing settings."
  2883. msgstr "Automatisch slicen bij wijzigen van instellingen."
  2884. msgctxt "@message:title"
  2885. msgid "Slicing failed"
  2886. msgstr "Slicen mislukt"
  2887. msgctxt "@label:PrintjobStatus"
  2888. msgid "Slicing..."
  2889. msgstr "Slicen..."
  2890. msgctxt "@action:label"
  2891. msgid "Smoothing"
  2892. msgstr "Effenen"
  2893. msgctxt "@label"
  2894. msgid "Solid"
  2895. msgstr "Massief"
  2896. msgctxt "@item:inmenu"
  2897. msgid "Solid view"
  2898. msgstr "Solide weergave"
  2899. msgctxt "@label"
  2900. msgid "Some hidden settings use values different from their normal calculated value.\n\nClick to make these settings visible."
  2901. msgstr "Een aantal verborgen instellingen gebruiken andere waarden dan hun normale berekende waarde."
  2902. "Klik om deze instellingen zichtbaar te maken."
  2903. msgctxt "@info:status"
  2904. msgid "Some of the packages used in the project file are currently not installed in Cura, this might produce undesirable print results. We highly recommend installing the all required packages from the Marketplace."
  2905. msgstr "Sommige van de in het projectbestand gebruikte pakketten zijn momenteel niet geïnstalleerd in Cura, dit kan ongewenste afdrukresultaten opleveren. Wij raden u ten zeerste aan om alle benodigde pakketten uit de Marketplace te installeren."
  2906. msgctxt "@info:title"
  2907. msgid "Some required packages are not installed"
  2908. msgstr "Sommige vereiste pakketten zijn niet geïnstalleerd"
  2909. msgctxt "@info %1 is the name of a profile"
  2910. msgid "Some setting-values defined in <b>%1</b> were overridden."
  2911. msgstr "Sommige instelwaarden gedefinieerd in <b>%1</b> zijn overschreven."
  2912. msgctxt "@tooltip"
  2913. msgid "Some setting/override values are different from the values stored in the profile.\n\nClick to open the profile manager."
  2914. msgstr "Sommige waarden of aanpassingen van instellingen zijn anders dan de waarden die in het profiel zijn opgeslagen."
  2915. "Klik om het profielbeheer te openen."
  2916. msgctxt "@action:label"
  2917. msgid "Some settings from current profile were overwritten."
  2918. msgstr "Enkele instellingen van het huidige profiel zijn overschreven."
  2919. msgctxt "@message"
  2920. msgid "Something unexpected happened when trying to log in, please try again."
  2921. msgstr "Er heeft een onverwachte gebeurtenis plaatsgevonden bij het aanmelden. Probeer het opnieuw."
  2922. msgctxt "@title:header"
  2923. msgid "Something went wrong when sending the materials to the printers."
  2924. msgstr "Er is iets misgegaan bij het verzenden van de materialen naar de printers."
  2925. msgctxt "@label"
  2926. msgid "Something went wrong..."
  2927. msgstr "Er is een fout opgetreden..."
  2928. msgctxt "@label:listbox"
  2929. msgid "Speed"
  2930. msgstr "Snelheid"
  2931. msgctxt "@action:inmenu"
  2932. msgid "Sponsor Cura"
  2933. msgstr "Sponsor Cura"
  2934. msgctxt "@label:button"
  2935. msgid "Sponsor Cura"
  2936. msgstr "Sponsor Cura"
  2937. msgctxt "@option:radio"
  2938. msgid "Stable and Beta releases"
  2939. msgstr "Stabiele releases en bèta-releases"
  2940. msgctxt "@option:radio"
  2941. msgid "Stable releases only"
  2942. msgstr "Alleen stabiele releases"
  2943. msgctxt "@item:inlistbox"
  2944. msgid "Stanford Triangle Format"
  2945. msgstr "Stanford-driehoeksformaat"
  2946. msgctxt "@button"
  2947. msgid "Start"
  2948. msgstr "Starten"
  2949. msgctxt "@action:button"
  2950. msgid "Start Build Plate Leveling"
  2951. msgstr "Kalibratie Platform Starten"
  2952. msgctxt "@title:label"
  2953. msgid "Start G-code"
  2954. msgstr "Start G-code"
  2955. msgctxt "@label"
  2956. msgid "Start the slicing process"
  2957. msgstr "Het sliceproces starten"
  2958. msgctxt "@label"
  2959. msgid "Starts"
  2960. msgstr "Wordt gestart"
  2961. msgctxt "@text"
  2962. msgid "Streamline your workflow and customize your UltiMaker Cura experience with plugins contributed by our amazing community of users."
  2963. msgstr "Stroomlijn uw workflow en pas uw UltiMaker Cura-ervaring aan de eisen aan met plugins die zijn geleverd door onze fantastische gebruikersgemeenschap."
  2964. msgctxt "@label"
  2965. msgid "Strength"
  2966. msgstr "Kracht"
  2967. msgctxt "@info:status Don't translate the XML tag <filename>!"
  2968. msgid "Successfully exported material to <filename>%1</filename>"
  2969. msgstr "Materiaal is geëxporteerd naar <filename>%1</filename>"
  2970. msgctxt "@info:status Don't translate the XML tag <filename>!"
  2971. msgid "Successfully imported material <filename>%1</filename>"
  2972. msgstr "Materiaal <filename>%1</filename> is geïmporteerd"
  2973. msgctxt "@info:status"
  2974. msgid "Successfully imported profile {0}."
  2975. msgstr "Het profiel {0} is geïmporteerd."
  2976. msgctxt "@action:label"
  2977. msgid "Suggested Material settings"
  2978. msgstr "Gesuggereerde materiaalinstellingen"
  2979. msgctxt "@action:label"
  2980. msgid "Suggested Profile settings"
  2981. msgstr "Gesuggereerde profielinstellingen"
  2982. msgctxt "@action:title"
  2983. msgid "Summary - Cura Project"
  2984. msgstr "Samenvatting - Cura-project"
  2985. msgctxt "@action:title Don't translate 'Universal Cura Project'"
  2986. msgid "Summary - Open Universal Cura Project (UCP)"
  2987. msgstr "Samenvatting - Open Universal Cura Project (UCP)"
  2988. msgctxt "@action:title Don't translate 'Universal Cura Project'"
  2989. msgid "Summary - Universal Cura Project"
  2990. msgstr "Samenvatting - Universal Cura Project"
  2991. msgctxt "@label"
  2992. msgid "Support"
  2993. msgstr "Supportstructuur"
  2994. msgctxt "@tooltip"
  2995. msgid "Support"
  2996. msgstr "Supportstructuur"
  2997. msgctxt "@label"
  2998. msgid "Support Blocker"
  2999. msgstr "Supportblokkering"
  3000. msgctxt "@tooltip"
  3001. msgid "Support Infill"
  3002. msgstr "Supportvulling"
  3003. msgctxt "@tooltip"
  3004. msgid "Support Interface"
  3005. msgstr "Verbindingsstructuur"
  3006. msgctxt "@action:label"
  3007. msgid "Support Type"
  3008. msgstr "Support Type"
  3009. msgctxt "@label Description for application dependency"
  3010. msgid "Support library for faster math"
  3011. msgstr "Ondersteuningsbibliotheek voor snellere berekeningen"
  3012. msgctxt "@label Description for application component"
  3013. msgid "Support library for file metadata and streaming"
  3014. msgstr "Ondersteuningsbibliotheek voor bestandsmetadata en streaming"
  3015. msgctxt "@label Description for application component"
  3016. msgid "Support library for handling 3MF files"
  3017. msgstr "Ondersteuningsbibliotheek voor het verwerken van 3MF-bestanden"
  3018. msgctxt "@label Description for application dependency"
  3019. msgid "Support library for handling STL files"
  3020. msgstr "Ondersteuningsbibliotheek voor het verwerken van STL-bestanden"
  3021. msgctxt "@label Description for application dependency"
  3022. msgid "Support library for handling triangular meshes"
  3023. msgstr "Ondersteuningsbibliotheek voor het verwerken van driehoekig rasters"
  3024. msgctxt "@label Description for application dependency"
  3025. msgid "Support library for scientific computing"
  3026. msgstr "Ondersteuningsbibliotheek voor wetenschappelijke berekeningen"
  3027. msgctxt "@label Description for application dependency"
  3028. msgid "Support library for system keyring access"
  3029. msgstr "Ondersteuningsbibliotheek voor toegang tot systeemkeyring"
  3030. msgctxt "@action:button"
  3031. msgid "Sync"
  3032. msgstr "Synchroniseren"
  3033. msgctxt "@button"
  3034. msgid "Sync"
  3035. msgstr "Synchroniseren"
  3036. msgctxt "@title:header"
  3037. msgid "Sync material profiles via USB"
  3038. msgstr "Materiaalprofielen synchroniseren via USB"
  3039. msgctxt "@action:button"
  3040. msgid "Sync materials"
  3041. msgstr "Materialen synchroniseren..."
  3042. msgctxt "@button"
  3043. msgid "Sync materials with USB"
  3044. msgstr "Materialen synchroniseren met USB"
  3045. msgctxt "@title:header"
  3046. msgid "Sync materials with printers"
  3047. msgstr "Synchroniseer materialen met printers"
  3048. msgctxt "@title:window"
  3049. msgid "Sync materials with printers"
  3050. msgstr "Synchroniseer materialen met printers"
  3051. msgctxt "@action:button"
  3052. msgid "Sync with Printers"
  3053. msgstr "Synchroniseren met printers"
  3054. msgctxt "@button"
  3055. msgid "Syncing"
  3056. msgstr "Synchroniseren"
  3057. msgctxt "@info:generic"
  3058. msgid "Syncing..."
  3059. msgstr "Synchroniseren ..."
  3060. msgctxt "@title:groupbox"
  3061. msgid "System information"
  3062. msgstr "Systeeminformatie"
  3063. msgctxt "@button"
  3064. msgid "Technical datasheet"
  3065. msgstr "Technisch informatieblad"
  3066. msgctxt "@info:tooltip"
  3067. msgid "The amount of smoothing to apply to the image."
  3068. msgstr "De mate van effening die op de afbeelding moet worden toegepast."
  3069. msgctxt "@text"
  3070. msgid "The annealing profile requires post-processing in an oven after the print is finished. This profile retains the dimensional accuracy of the printed part after annealing and improves strength, stiffness, and thermal resistance."
  3071. msgstr "Het gloeiprofiel vereist nabewerking in een oven nadat het afdrukken klaar is. Dit profiel behoudt de maatnauwkeurigheid van het geprinte onderdeel na het gloeien en verbetert de sterkte, stijfheid en thermische weerstand."
  3072. msgctxt "@label"
  3073. msgid "The assigned printer, %1, requires the following configuration change:"
  3074. msgid_plural "The assigned printer, %1, requires the following configuration changes:"
  3075. msgstr[0] "Voor de toegewezen printer, %1, is de volgende configuratiewijziging vereist:"
  3076. msgstr[1] "Voor de toegewezen printer, %1, zijn de volgende configuratiewijzigingen vereist:"
  3077. msgctxt "@error:file_size"
  3078. msgid "The backup exceeds the maximum file size."
  3079. msgstr "De back-up is groter dan de maximale bestandsgrootte."
  3080. msgctxt "@text"
  3081. msgid "The balanced profile is designed to strike a balance between productivity, surface quality, mechanical properties and dimensional accuracy."
  3082. msgstr "Het gebalanceerde profiel is ontworpen om een balans te vinden tussen productiviteit, oppervlaktekwaliteit, mechanische eigenschappen en dimensionale nauwkeurigheid."
  3083. msgctxt "@info:tooltip"
  3084. msgid "The base height from the build plate in millimeters."
  3085. msgstr "De basishoogte van het platform in millimeters."
  3086. msgctxt "@info:status"
  3087. msgid "The build volume height has been reduced due to the value of the \"Print Sequence\" setting to prevent the gantry from colliding with printed models."
  3088. msgstr "De hoogte van het bouwvolume is verminderd wegens de waarde van de instelling \"Printvolgorde\", om te voorkomen dat de rijbrug tegen geprinte modellen botst."
  3089. msgctxt "@status"
  3090. msgid "The cloud connection is currently unavailable. Please check your internet connection."
  3091. msgstr "De cloudverbinding is momenteel niet beschikbaar. Controleer uw internetverbinding."
  3092. msgctxt "@status"
  3093. msgid "The cloud connection is currently unavailable. Please sign in to connect to the cloud printer."
  3094. msgstr "De cloudverbinding is momenteel niet beschikbaar. Log in om verbinding te maken met de cloudprinter."
  3095. msgctxt "@status"
  3096. msgid "The cloud printer is offline. Please check if the printer is turned on and connected to the internet."
  3097. msgstr "De cloudprinter is offline. Controleer of de printer is ingeschakeld en verbonden is met internet."
  3098. msgctxt "@tooltip"
  3099. msgid "The colour of the material in this extruder."
  3100. msgstr "De kleur van het materiaal in deze extruder."
  3101. msgctxt "@tooltip"
  3102. msgid "The configuration of this extruder is not allowed, and prohibits slicing."
  3103. msgstr "De configuratie van deze extruder is niet toegestaan en verhindert slicen."
  3104. msgctxt "@label"
  3105. msgid "The configurations are not available because the printer is disconnected."
  3106. msgstr "De configuraties zijn niet beschikbaar omdat de printer niet verbonden is."
  3107. msgctxt "@tooltip"
  3108. msgid "The current temperature of the heated bed."
  3109. msgstr "De huidige temperatuur van het verwarmde bed."
  3110. msgctxt "@tooltip"
  3111. msgid "The current temperature of this hotend."
  3112. msgstr "De huidige temperatuur van dit hotend."
  3113. msgctxt "@info:tooltip"
  3114. msgid "The depth in millimeters on the build plate"
  3115. msgstr "De diepte op het platform in millimeters"
  3116. msgctxt "@text"
  3117. msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction."
  3118. msgstr "Het ontwerpprofiel is ontworpen om initiële prototypen en conceptvalidatie te printen met als doel de printtijd aanzienlijk te verkorten."
  3119. msgctxt "@text"
  3120. msgid "The engineering profile is designed to print functional prototypes and end-use parts with the intent of better accuracy and for closer tolerances."
  3121. msgstr "Het engineeringprofiel is ontworpen om functionele prototypen en onderdelen voor eindgebruik te printen met als doel een grotere precisie en nauwere toleranties."
  3122. msgctxt "@label"
  3123. msgid "The extruder train to use for printing the support. This is used in multi-extrusion."
  3124. msgstr "De extruder train die wordt gebruikt voor het printen van de supportstructuur. Deze optie wordt gebruikt in meervoudige doorvoer."
  3125. msgctxt "@label Don't translate the XML tag <filename>!"
  3126. msgid "The file <filename>{0}</filename> already exists. Are you sure you want to overwrite it?"
  3127. msgstr "Het bestand <filename>{0}</filename> bestaat al. Weet u zeker dat u dit bestand wilt overschrijven?"
  3128. msgctxt "@label"
  3129. msgid "The firmware shipping with new printers works, but new versions tend to have more features and improvements."
  3130. msgstr "De firmware die bij nieuwe printers wordt geleverd, werkt wel, maar nieuwe versies hebben vaak meer functies en verbeteringen."
  3131. msgctxt "@info:backup_failed"
  3132. msgid "The following error occurred while trying to restore a Cura backup:"
  3133. msgstr "De volgende fout is opgetreden bij het herstellen van een Cura-backup:"
  3134. msgctxt "@label"
  3135. msgid "The following packages can not be installed because of an incompatible Cura version:"
  3136. msgstr "De volgende packages kunnen niet worden geïnstalleerd omdat de Cura-versie niet compatibel is:"
  3137. msgctxt "@label"
  3138. msgid "The following packages will be added:"
  3139. msgstr "De volgende packages worden toegevoegd:"
  3140. msgctxt "@label"
  3141. msgid "The following printers in your account have been added in Cura:"
  3142. msgstr "De volgende printers in uw account zijn toegevoegd in Cura:"
  3143. msgctxt "@title:header"
  3144. msgid "The following printers will receive the new material profiles:"
  3145. msgstr "De volgende printers ontvangen de nieuwe materiaalprofielen:"
  3146. msgctxt "@info:tooltip"
  3147. msgid "The following script is active:"
  3148. msgid_plural "The following scripts are active:"
  3149. msgstr[0] "Het volgende script is actief:"
  3150. msgstr[1] "De volgende scripts zijn actief:"
  3151. msgctxt "@label"
  3152. msgid "The following settings define the strength of your part."
  3153. msgstr "De volgende instellingen bepalen de sterkte van uw onderdeel."
  3154. msgctxt "@info:status"
  3155. msgid "The highlighted areas indicate either missing or extraneous surfaces. Fix your model and open it again into Cura."
  3156. msgstr "De gemarkeerde gebieden geven ofwel ontbrekende of ongebruikelijke oppervlakken aan. Corrigeer het model en open het opnieuw in Cura."
  3157. msgctxt "@tooltip"
  3158. msgid "The material in this extruder."
  3159. msgstr "Het materiaal in deze extruder."
  3160. msgctxt "@label:label Ultimaker Marketplace is a brand name, don't translate"
  3161. msgid "The material package associated with the Cura project could not be found on the Ultimaker Marketplace. Use the partial material profile definition stored in the Cura project file at your own risk."
  3162. msgstr "Het materiaalpakket dat is gekoppeld aan het Cura-project kan niet worden gevonden op de Ultimaker Marketplace. Gebruik de definitie van het gedeeltelijke materiaalprofiel die is opgeslagen in het Cura-projectbestand op eigen risico."
  3163. msgctxt "@info:tooltip"
  3164. msgid "The maximum distance of each pixel from \"Base.\""
  3165. msgstr "De maximale afstand van elke pixel tot de \"Basis\"."
  3166. msgctxt "@label (%1 is a number)"
  3167. msgid "The new filament diameter is set to %1 mm, which is not compatible with the current extruder. Do you wish to continue?"
  3168. msgstr "Het nieuwe filament is ingesteld op %1mm. Dit is niet compatibel met de huidige extruder. Wilt u verder gaan?"
  3169. msgctxt "@tooltip"
  3170. msgid "The nozzle inserted in this extruder."
  3171. msgstr "De nozzle die in deze extruder geplaatst is."
  3172. msgctxt "@label"
  3173. msgid "The pattern of the infill material of the print:\n\nFor quick prints of non functional model choose line, zig zag or lightning infill.\n\nFor functional part not subjected to a lot of stress we recommend grid or triangle or tri hexagon.\n\nFor functional 3D prints which require high strength in multiple directions use cubic, cubic subdivision, quarter cubic, octet, and gyroid."
  3174. msgstr "Het patroon van het invulmateriaal van de print:"
  3175. "Voor snelle prints van een niet-functioneel model kiest u een lijn-, zigzag- of lichtvulling."
  3176. "Voor functionele onderdelen die niet aan veel spanning worden blootgesteld, raden we raster of driehoek of tri-zeshoek aan."
  3177. "Gebruik kubieke, kubieke onderverdeling, kwartkubiek, octet en gyrod voor functionele 3D-prints die in meerdere richtingen een hoge sterkte vereisen."
  3178. msgctxt "@info:tooltip"
  3179. msgid "The percentage of light penetrating a print with a thickness of 1 millimeter. Lowering this value increases the contrast in dark regions and decreases the contrast in light regions of the image."
  3180. msgstr "Het percentage licht dat doordringt in een print met een dikte van 1 millimeter. Een lagere waarde verhoogt het contrast in donkere gebieden en verlaagt het contrast in lichte gebieden van de afbeelding."
  3181. msgctxt "@label:label Ultimaker Marketplace is a brand name, don't translate"
  3182. msgid "The plugin associated with the Cura project could not be found on the Ultimaker Marketplace. As the plugin may be required to slice the project it might not be possible to correctly slice the file."
  3183. msgstr "De plugin die bij het Cura-project hoort kon niet gevonden worden op de Ultimaker Marketplace. Aangezien de plugin mogelijk nodig is om het project te slicen, is het mogelijk dat het bestand niet correct gesliced kan worden."
  3184. msgctxt "@info:title"
  3185. msgid "The print job was successfully submitted"
  3186. msgstr "De printtaak is succesvol ingediend"
  3187. msgctxt "@label"
  3188. msgid "The printer %1 is assigned, but the job contains an unknown material configuration."
  3189. msgstr "De printer %1 is toegewezen. De taak bevat echter een onbekende materiaalconfiguratie."
  3190. msgctxt "@label"
  3191. msgid "The printer at this address has not responded yet."
  3192. msgstr "De printer op dit adres heeft nog niet gereageerd."
  3193. msgctxt "@label"
  3194. msgid "The printer at this address has not yet responded."
  3195. msgstr "De printer op dit adres heeft nog niet gereageerd."
  3196. msgctxt "@info:status"
  3197. msgid "The printer is not connected."
  3198. msgstr "Er is geen verbinding met de printer."
  3199. msgctxt "@label"
  3200. msgid "The printer(s) below cannot be connected because they are part of a group"
  3201. msgstr "Kan de onderstaande printer(s) niet verbinden omdat deze deel uitmaakt/uitmaken van een groep"
  3202. msgctxt "@message"
  3203. msgid "The provided state is not correct."
  3204. msgstr "De opgegeven status is niet juist."
  3205. msgctxt "@text:window"
  3206. msgid "The release notes could not be opened."
  3207. msgstr "De release notes konden niet worden geopend."
  3208. msgctxt "@text:error"
  3209. msgid "The response from Digital Factory appears to be corrupted."
  3210. msgstr "Antwoord van Digital Factor is mogelijk beschadigd."
  3211. msgctxt "@text:error"
  3212. msgid "The response from Digital Factory is missing important information."
  3213. msgstr "In het antwoord van Digital Factory ontbreekt belangrijke informatie."
  3214. msgctxt "@tooltip"
  3215. msgid "The target temperature of the heated bed. The bed will heat up or cool down towards this temperature. If this is 0, the bed heating is turned off."
  3216. msgstr "De doeltemperatuur van het verwarmde bed. Het bed wordt verwarmd of afgekoeld totdat deze temperatuur bereikt is. Als deze waarde ingesteld is op 0, wordt de verwarming van het bed uitgeschakeld."
  3217. msgctxt "@tooltip"
  3218. msgid "The target temperature of the hotend. The hotend will heat up or cool down towards this temperature. If this is 0, the hotend heating is turned off."
  3219. msgstr "De doeltemperatuur van de hot-end. De hot-end wordt verwarmd of afgekoeld totdat deze temperatuur bereikt is. Als deze waarde ingesteld is op 0, wordt de verwarming van de hot-end uitgeschakeld."
  3220. msgctxt "@tooltip of temperature input"
  3221. msgid "The temperature to pre-heat the bed to."
  3222. msgstr "De temperatuur waarnaar het bed moet worden voorverwarmd."
  3223. msgctxt "@tooltip of temperature input"
  3224. msgid "The temperature to pre-heat the hotend to."
  3225. msgstr "De temperatuur waarnaar het hotend moet worden voorverwarmd."
  3226. msgctxt "@text"
  3227. msgid "The visual profile is designed to print visual prototypes and models with the intent of high visual and surface quality."
  3228. msgstr "Het visuele profiel is ontworpen om visuele prototypen en modellen te printen met als doel een hoge visuele en oppervlaktekwaliteit te creëren."
  3229. msgctxt "@info:tooltip"
  3230. msgid "The width in millimeters on the build plate"
  3231. msgstr "De breedte op het platform in millimeters"
  3232. msgctxt "@label: Please keep the asterix, it's to indicate that a restart is needed."
  3233. msgid "Theme*:"
  3234. msgstr "Thema*:"
  3235. msgctxt "@info:status"
  3236. msgid "There are no file formats available to write with!"
  3237. msgstr "Er zijn geen bestandsindelingen beschikbaar om te schrijven!"
  3238. msgctxt "@label"
  3239. msgid "There are no print jobs in the queue. Slice and send a job to add one."
  3240. msgstr "Er staan geen afdruktaken in de wachtrij. Slice een taak en verzend deze om er een toe te voegen."
  3241. msgctxt "@tooltip"
  3242. msgid "There are no profiles matching the configuration of this extruder."
  3243. msgstr "Er zijn geen profielen die compatibel zijn met de configuratie van deze extruder."
  3244. msgctxt "@info:status"
  3245. msgid "There is no active printer yet."
  3246. msgstr "Er is nog geen actieve printer."
  3247. msgctxt "@label"
  3248. msgid "There is no printer found over your network."
  3249. msgstr "Kan in uw netwerk geen printer vinden."
  3250. msgctxt "@error"
  3251. msgid "There is no workspace yet to write. Please add a printer first."
  3252. msgstr "Er is nog geen werkruimte om te schrijven. Voeg eerst een printer toe."
  3253. msgctxt "@info:backup_status"
  3254. msgid "There was an error trying to restore your backup."
  3255. msgstr "Er is een fout opgetreden tijdens het herstellen van uw back-up."
  3256. msgctxt "@info:backup_status"
  3257. msgid "There was an error while creating your backup."
  3258. msgstr "Er is een fout opgetreden bij het maken van de back-up."
  3259. msgctxt "@info:backup_status"
  3260. msgid "There was an error while uploading your backup."
  3261. msgstr "Er is een fout opgetreden tijdens het uploaden van uw back-up."
  3262. msgctxt "@label"
  3263. msgid "This configuration is not available because %1 is not recognized. Please visit %2 to download the correct material profile."
  3264. msgstr "Deze configuratie is niet beschikbaar omdat %1 niet wordt herkend. Ga naar %2 om het juiste materiaalprofiel te downloaden."
  3265. msgctxt "@text:window"
  3266. msgid "This is a Cura Universal project file. Would you like to open it as a Cura project or Cura Universal Project or import the models from it?"
  3267. msgstr "Dit is een Cura Universal Projectbestand. Wilt u het als Cura project of Cura Universal Project openen of de modellen ervan importeren?"
  3268. msgctxt "@text:window"
  3269. msgid "This is a Cura project file. Would you like to open it as a project or import the models from it?"
  3270. msgstr "Dit is een Cura-projectbestand. Wilt u dit openen als project of de modellen eruit importeren?"
  3271. msgctxt "@label"
  3272. msgid "This material is linked to %1 and shares some of its properties."
  3273. msgstr "Dit materiaal is gekoppeld aan %1 en deelt hiermee enkele eigenschappen."
  3274. msgctxt "@label"
  3275. msgid "This package will be installed after restarting."
  3276. msgstr "Dit package wordt na opnieuw starten geïnstalleerd."
  3277. msgctxt "@label"
  3278. msgid "This printer cannot be added because it's an unknown printer or it's not the host of a group."
  3279. msgstr "Kan de printer niet toevoegen omdat het een onbekende printer is of omdat het niet de host in een groep is."
  3280. msgctxt "info:status"
  3281. msgid "This printer is not linked to the Digital Factory:"
  3282. msgid_plural "These printers are not linked to the Digital Factory:"
  3283. msgstr[0] "Deze printer is niet gekoppeld aan de Digital Factory:"
  3284. msgstr[1] "Deze printers zijn niet gekoppeld aan de Digital Factory:"
  3285. msgctxt "@status"
  3286. msgid "This printer is not linked to your account. Please visit the Ultimaker Digital Factory to establish a connection."
  3287. msgstr "Deze printer is niet gekoppeld aan uw account. Ga naar de Ultimaker Digital Factory om een verbinding tot stand te brengen."
  3288. msgctxt "@label"
  3289. msgid "This printer is not set up to host a group of printers."
  3290. msgstr "Deze printer is niet ingesteld voor het hosten van een groep printers."
  3291. msgctxt "@label"
  3292. msgid "This printer is the host for a group of %1 printers."
  3293. msgstr "Deze printer is de host voor een groep van %1 printers."
  3294. msgctxt "@info:status Don't translate the XML tags <filename>!"
  3295. msgid "This profile <filename>{0}</filename> contains incorrect data, could not import it."
  3296. msgstr "Dit profiel <filename>{0}</filename> bevat incorrecte gegevens. Kan het profiel niet importeren."
  3297. msgctxt "@action:label"
  3298. msgid "This profile uses the defaults specified by the printer, so it has no settings/overrides in the list below."
  3299. msgstr "Dit profiel gebruikt de standaardinstellingen die door de printer zijn opgegeven, dus er zijn hiervoor geen instellingen/overschrijvingen in de onderstaande lijst."
  3300. msgctxt "@label"
  3301. msgid "This project contains materials or plugins that are currently not installed in Cura.<br/>Install the missing packages and reopen the project."
  3302. msgstr "Dit project bevat materialen of plugins die momenteel niet geïnstalleerd zijn in Cura.<br/>Installeer de ontbrekende pakketten en open het project opnieuw."
  3303. msgctxt "@label"
  3304. msgid "This setting has a value that is different from the profile.\n\nClick to restore the value of the profile."
  3305. msgstr "Deze instelling heeft een andere waarde dan in het profiel."
  3306. "Klik om de waarde van het profiel te herstellen."
  3307. msgctxt "@item:tooltip"
  3308. msgid "This setting has been hidden by the active machine and will not be visible."
  3309. msgstr "Deze instelling is door de actieve machine verborgen en wordt niet zichtbaar."
  3310. msgctxt "@item:tooltip %1 is list of setting names"
  3311. msgid "This setting has been hidden by the value of %1. Change the value of that setting to make this setting visible."
  3312. msgid_plural "This setting has been hidden by the values of %1. Change the values of those settings to make this setting visible."
  3313. msgstr[0] "Deze instelling is verborgen vanwege de waarde van %1. Wijzig de waarde van die instelling om deze instelling zichtbaar te maken."
  3314. msgstr[1] "Deze instelling is verborgen vanwege de waarden van %1. Wijzig de waarden van die instellingen om deze instelling zichtbaar te maken."
  3315. msgctxt "@label"
  3316. msgid "This setting is always shared between all extruders. Changing it here will change the value for all extruders."
  3317. msgstr "Deze instelling wordt altijd door alle extruders gedeeld. Als u hier de instelling wijzigt, wordt de waarde voor alle extruders gewijzigd."
  3318. msgctxt "@label"
  3319. msgid "This setting is normally calculated, but it currently has an absolute value set.\n\nClick to restore the calculated value."
  3320. msgstr "Deze instelling wordt normaliter berekend, maar is nu ingesteld op een absolute waarde."
  3321. "Klik om de berekende waarde te herstellen."
  3322. msgctxt "@label"
  3323. msgid "This setting is not used because all the settings that it influences are overridden."
  3324. msgstr "Deze instelling wordt niet gebruikt omdat alle instellingen waarop deze invloed heeft, worden overschreven."
  3325. msgctxt "@label"
  3326. msgid "This setting is resolved from conflicting extruder-specific values:"
  3327. msgstr "Deze instelling wordt afgeleid van strijdige extruderspecifieke waarden:"
  3328. msgctxt "@tooltip Don't translate 'Universal Cura Project'"
  3329. msgid "This setting may not perform well while exporting to Universal Cura Project, Users are asked to add it at their own risk."
  3330. msgstr "Deze instelling werkt mogelijk niet goed tijdens het exporteren naar Universal Cura Project. Gebruikers wordt gevraagd deze instelling op eigen risico toe te voegen."
  3331. msgctxt "@tooltip Don't translate 'Universal Cura Project'"
  3332. msgid "This setting may not perform well while exporting to Universal Cura Project. Users are asked to add it at their own risk."
  3333. msgstr "Deze instelling werkt mogelijk niet goed tijdens het exporteren naar Universal Cura Project. Gebruikers wordt gevraagd deze op eigen risico toe te voegen."
  3334. msgctxt "@info:warning"
  3335. msgid "This version is not intended for production use. If you encounter any issues, please report them on our GitHub page, mentioning the full version {self.getVersion()}"
  3336. msgstr "Deze versie is niet bedoeld voor productiegebruik. Als u problemen tegenkomt, meld ze dan op onze GitHub-pagina, met vermelding van de volledige versie {self.getVersion()}"
  3337. msgctxt "@label"
  3338. msgid "Time estimation"
  3339. msgstr "Tijdschatting"
  3340. msgctxt "@message"
  3341. msgid "Timeout when authenticating with the account server."
  3342. msgstr "Time-out tijdens verificatie bij de accountserver."
  3343. msgctxt "@text"
  3344. msgid "To automatically sync the material profiles with all your printers connected to Digital Factory you need to be signed in in Cura."
  3345. msgstr "Om de materiaalprofielen automatisch te synchroniseren met alle printers die op Digital Factory zijn aangesloten, moet u zich aanmelden bij Cura."
  3346. msgctxt "info:status"
  3347. msgid "To establish a connection, please visit the {website_link}"
  3348. msgstr "Ga naar {website_link} om een verbinding tot stand te brengen"
  3349. msgctxt "@label"
  3350. msgid "To make sure your prints will come out great, you can now adjust your buildplate. When you click 'Move to Next Position' the nozzle will move to the different positions that can be adjusted."
  3351. msgstr "Je kan nu je platform afstellen, zodat uw prints er altijd fantastisch uitzien. Als u op 'Naar de volgende positie bewegen' klikt, beweegt de nozzle naar de verschillende instelbare posities."
  3352. msgctxt "@label"
  3353. msgid "To print directly to your printer over the network, please make sure your printer is connected to the network using a network cable or by connecting your printer to your WIFI network. If you don't connect Cura with your printer, you can still use a USB drive to transfer g-code files to your printer."
  3354. msgstr "Als u rechtstreeks via het netwerk wilt printen naar de printer, moet u ervoor zorgen dat de printer met een netwerkkabel is verbonden met het netwerk of moet u verbinding maken met de printer via het wifi-netwerk. Als u geen verbinding maakt tussen Cura en de printer, kunt u een USB-station gebruiken om G-code-bestanden naar de printer over te zetten."
  3355. msgctxt "@message {printer_name} is replaced with the name of the printer"
  3356. msgid "To remove {printer_name} permanently, visit {digital_factory_link}"
  3357. msgstr "Bezoek {digital_factory_link} om {printer_name} permanent te verwijderen"
  3358. msgctxt "@action:inmenu"
  3359. msgid "Toggle Full Screen"
  3360. msgstr "Volledig Scherm In-/Uitschakelen"
  3361. msgctxt "@label"
  3362. msgid "Top / Bottom"
  3363. msgstr "Boven-/onderkant"
  3364. msgctxt "@action:inmenu menubar:view"
  3365. msgid "Top View"
  3366. msgstr "Weergave bovenzijde"
  3367. msgctxt "@info:tooltip"
  3368. msgid "Top View"
  3369. msgstr "Weergave bovenzijde"
  3370. msgctxt "@label"
  3371. msgid "Total print time"
  3372. msgstr "Totale printtijd"
  3373. msgctxt "@action:tooltip"
  3374. msgid "Track the print in Ultimaker Digital Factory"
  3375. msgstr "Volg het printen in Ultimaker Digital Factory"
  3376. msgctxt "@item:inlistbox"
  3377. msgid "Translucency"
  3378. msgstr "Doorschijnendheid"
  3379. msgctxt "@tooltip"
  3380. msgid "Travel"
  3381. msgstr "Beweging"
  3382. msgctxt "@label"
  3383. msgid "Travels"
  3384. msgstr "Bewegingen"
  3385. msgctxt "@info:backup_failed"
  3386. msgid "Tried to restore a Cura backup that is higher than the current version."
  3387. msgstr "Geprobeerd een Cura-back-up te herstellen van een versie die hoger is dan de huidige versie."
  3388. msgctxt "@info:backup_failed"
  3389. msgid "Tried to restore a Cura backup without having proper data or meta data."
  3390. msgstr "Geprobeerd een Cura-back-up te herstellen zonder correcte gegevens of metadata."
  3391. msgctxt "@button"
  3392. msgid "Troubleshooting"
  3393. msgstr "Probleemoplossing"
  3394. msgctxt "@label"
  3395. msgid "Troubleshooting"
  3396. msgstr "Probleemoplossing"
  3397. msgctxt "@button"
  3398. msgid "Try again"
  3399. msgstr "Probeer het opnieuw"
  3400. msgctxt "@action:label"
  3401. msgid "Type"
  3402. msgstr "Type"
  3403. msgctxt "@label"
  3404. msgid "Type"
  3405. msgstr "Type"
  3406. msgctxt "@item:inmenu"
  3407. msgid "USB printing"
  3408. msgstr "USB-printen"
  3409. msgctxt "@button"
  3410. msgid "UltiMaker Account"
  3411. msgstr "UltiMaker-account"
  3412. msgctxt "@info"
  3413. msgid "UltiMaker Certified Material"
  3414. msgstr "Gecertificeerd UltiMaker-materiaal"
  3415. msgctxt "@text:window"
  3416. msgid "UltiMaker Cura collects anonymous data in order to improve the print quality and user experience. Below is an example of all the data that is shared:"
  3417. msgstr "UltiMaker Cura verzamelt anonieme gegevens om de printkwaliteit en gebruikerservaring te verbeteren. Hieronder ziet u een voorbeeld van alle gegevens die worden gedeeld:"
  3418. msgctxt "@item:inlistbox"
  3419. msgid "UltiMaker Format Package"
  3420. msgstr "UltiMaker Format Package"
  3421. msgctxt "@info"
  3422. msgid "UltiMaker Verified Package"
  3423. msgstr "Geverifieerd UltiMaker-pakket"
  3424. msgctxt "@info"
  3425. msgid "UltiMaker Verified Plug-in"
  3426. msgstr "Geverifieerde UltiMaker-plug-in"
  3427. msgctxt "@button"
  3428. msgid "UltiMaker printer"
  3429. msgstr "UltiMaker printer"
  3430. msgctxt "@label:button"
  3431. msgid "UltiMaker support"
  3432. msgstr "Ondersteuning van UltiMaker"
  3433. msgctxt "info:name"
  3434. msgid "Ultimaker Digital Factory"
  3435. msgstr "Ultimaker Digital Factory"
  3436. msgctxt "@info:status"
  3437. msgid "Unable to add the profile."
  3438. msgstr "Kan het profiel niet toevoegen."
  3439. msgctxt "@info:status"
  3440. msgid "Unable to find a location within the build volume for all objects"
  3441. msgstr "Kan binnen het werkvolume niet voor alle objecten een locatie vinden"
  3442. msgctxt "@info:plugin_failed"
  3443. msgid "Unable to find local EnginePlugin server executable for: {self._plugin_id}"
  3444. msgstr "Kan lokaal EnginePlugin-serveruitvoerbestand niet vinden voor: {self._plugin_id}"
  3445. msgctxt "@info:plugin_failed"
  3446. msgid "Unable to kill running EnginePlugin: {self._plugin_id}\nAccess is denied."
  3447. msgstr "Kan lopende EnginePlugin niet stoppen: {self._plugin_id}}Toegang is geweigerd."
  3448. msgctxt "@info"
  3449. msgid "Unable to reach the UltiMaker account server."
  3450. msgstr "Kan de UltiMaker-accountserver niet bereiken."
  3451. msgctxt "@text"
  3452. msgid "Unable to read example data file."
  3453. msgstr "Kan het voorbeeldgegevensbestand niet lezen."
  3454. msgctxt "@info:title"
  3455. msgid "Unable to slice"
  3456. msgstr "Kan niet slicen"
  3457. msgctxt "@label:PrintjobStatus"
  3458. msgid "Unable to slice"
  3459. msgstr "Kan niet slicen"
  3460. msgctxt "@info:status"
  3461. msgid "Unable to slice because the prime tower or prime position(s) are invalid."
  3462. msgstr "Slicen is niet mogelijk omdat de terugduwpijler of terugduwpositie(s) ongeldig zijn."
  3463. msgctxt "@info:status"
  3464. msgid "Unable to slice because there are objects associated with disabled Extruder %s."
  3465. msgstr "Slicen is niet mogelijk omdat er objecten gekoppeld zijn aan uitgeschakelde Extruder %s."
  3466. msgctxt "@info:status"
  3467. msgid "Unable to slice due to some per-model settings. The following settings have errors on one or more models: {error_labels}"
  3468. msgstr "Slicing is niet mogelijk vanwege enkele instellingen per model. De volgende instellingen bevatten fouten voor een of meer modellen: {error_labels}"
  3469. msgctxt "@info:status"
  3470. msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration."
  3471. msgstr "Met het huidige materiaal is slicen niet mogelijk, omdat het materiaal niet compatibel is met de geselecteerde machine of configuratie."
  3472. msgctxt "@info:status"
  3473. msgid "Unable to slice with the current settings. The following settings have errors: {0}"
  3474. msgstr "Met de huidige instellingen is slicing niet mogelijk. De volgende instellingen bevatten fouten: {0}"
  3475. msgctxt "@info"
  3476. msgid "Unable to start a new sign in process. Check if another sign in attempt is still active."
  3477. msgstr "Er kan geen nieuw aanmeldingsproces worden gestart. Controleer of een andere aanmeldingspoging nog actief is."
  3478. msgctxt "@info:error"
  3479. msgid "Unable to write to file: {0}"
  3480. msgstr "Er kan niet worden geschreven naar bestand: {0}"
  3481. msgctxt "@label:status"
  3482. msgid "Unavailable"
  3483. msgstr "Niet beschikbaar"
  3484. msgctxt "@label"
  3485. msgid "Unavailable printer"
  3486. msgstr "Niet‑beschikbare printer"
  3487. msgctxt "@action:inmenu menubar:edit"
  3488. msgid "Ungroup Models"
  3489. msgstr "Groeperen van Modellen Opheffen"
  3490. msgctxt "@button"
  3491. msgid "Uninstall"
  3492. msgstr "De-installeren"
  3493. msgctxt "@title:column Unit of measurement"
  3494. msgid "Unit"
  3495. msgstr "Eenheid"
  3496. msgctxt "@item:inlistbox"
  3497. msgid "Universal Cura Project"
  3498. msgstr "Universal Cura Project"
  3499. msgctxt "@action:description Don't translate 'Universal Cura Project'"
  3500. msgid "Universal Cura Project files can be printed on different 3D printers while retaining positional data and selected settings. When exported, all models present on the build plate will be included along with their current position, orientation, and scale. You can also select which per-extruder or per-model settings should be included to ensure proper printing."
  3501. msgstr "Universal Cura Project-bestanden kunnen worden geprint op verschillende 3D printers met behoud van positiegegevens en geselecteerde instellingen. Bij het exporteren worden alle modellen die aanwezig zijn op de bouwplaat meegenomen, samen met hun huidige positie, oriëntatie en schaal. U kunt ook selecteren welke instellingen per extruder of per model moeten worden meegenomen om er zeker van te zijn dat de print correct wordt uitgevoerd."
  3502. msgctxt "@label Description for development tool"
  3503. msgid "Universal build system configuration"
  3504. msgstr "Universele configuratie bouwsysteem"
  3505. msgctxt "@label"
  3506. msgid "Unknown"
  3507. msgstr "Onbekend"
  3508. msgctxt "@label unknown version of Cura"
  3509. msgid "Unknown"
  3510. msgstr "Onbekend"
  3511. msgctxt "@label:property"
  3512. msgid "Unknown Author"
  3513. msgstr "Onbekende auteur"
  3514. msgctxt "@label:property"
  3515. msgid "Unknown Package"
  3516. msgstr "Onbekend pakket"
  3517. msgctxt "@error:send"
  3518. msgid "Unknown error code when uploading print job: {0}"
  3519. msgstr "Onbekende foutcode bij uploaden printtaak: {0}"
  3520. msgctxt "@text"
  3521. msgid "Unknown error."
  3522. msgstr "Onbekende fout."
  3523. msgctxt "@label"
  3524. msgid "Unlink Material"
  3525. msgstr "Materiaal ontkoppelen"
  3526. msgctxt "@label:status"
  3527. msgid "Unreachable"
  3528. msgstr "Onbereikbaar"
  3529. msgctxt "@label"
  3530. msgid "Untitled"
  3531. msgstr "Zonder titel"
  3532. msgctxt "@text Print job name"
  3533. msgid "Untitled"
  3534. msgstr "Zonder titel"
  3535. msgctxt "@button"
  3536. msgid "Update"
  3537. msgstr "Bijwerken"
  3538. msgctxt "@action"
  3539. msgid "Update Firmware"
  3540. msgstr "Firmware bijwerken"
  3541. msgctxt "@title"
  3542. msgid "Update Firmware"
  3543. msgstr "Firmware bijwerken"
  3544. msgctxt "@action:ComboBox Update/override existing profile"
  3545. msgid "Update existing"
  3546. msgstr "Bestaand(e) bijwerken"
  3547. msgctxt "@action:tooltip"
  3548. msgid "Update profile with current settings/overrides"
  3549. msgstr "Profiel bijwerken met huidige instellingen/overschrijvingen"
  3550. msgctxt "@action:button"
  3551. msgid "Update profile."
  3552. msgstr "Werk profiel bij."
  3553. msgctxt "@info:title"
  3554. msgid "Update your printer"
  3555. msgstr "Uw printer bijwerken"
  3556. msgctxt "@label"
  3557. msgid "Updates"
  3558. msgstr "Updates"
  3559. msgctxt "@label"
  3560. msgid "Updating firmware."
  3561. msgstr "De firmware wordt bijgewerkt."
  3562. msgctxt "@button"
  3563. msgid "Updating..."
  3564. msgstr "Updaten..."
  3565. msgctxt "@action:button"
  3566. msgid "Upload custom Firmware"
  3567. msgstr "Aangepaste Firmware Uploaden"
  3568. msgctxt "@info:status"
  3569. msgid "Uploading print job to printer."
  3570. msgstr "Printtaak naar printer aan het uploaden."
  3571. msgctxt "@info:backup_status"
  3572. msgid "Uploading your backup..."
  3573. msgstr "Uw back-up wordt geüpload..."
  3574. msgctxt "@option:check"
  3575. msgid "Use a single instance of Cura"
  3576. msgstr "Gebruik één instantie van Cura"
  3577. msgctxt "@label"
  3578. msgid "Use glue for better adhesion with this material combination."
  3579. msgstr "Gebruik lijm bij deze combinatie van materialen voor een betere hechting."
  3580. msgctxt "@label"
  3581. msgid "User Agreement"
  3582. msgstr "Gebruikersovereenkomst"
  3583. msgctxt "@label Description for application dependency"
  3584. msgid "Utility functions, including an image loader"
  3585. msgstr "Gebruiksfuncties, waaronder een afbeeldinglader"
  3586. msgctxt "@label Description for application dependency"
  3587. msgid "Utility library, including Voronoi generation"
  3588. msgstr "Gebruiksbibliotheek, waaronder Voronoi-generatie"
  3589. msgctxt "@title:column"
  3590. msgid "Value"
  3591. msgstr "Waarde"
  3592. msgctxt "@button"
  3593. msgid "View printers in Digital Factory"
  3594. msgstr "Printers weergeven in Digital Factory"
  3595. msgctxt "@label"
  3596. msgid "View type"
  3597. msgstr "Type weergeven"
  3598. msgctxt "@label link to technical assistance"
  3599. msgid "View user manuals online"
  3600. msgstr "Gebruikershandleidingen online weergegeven"
  3601. msgctxt "@label"
  3602. msgid "Viewport behavior"
  3603. msgstr "Gedrag kijkvenster"
  3604. msgctxt "@action:inmenu"
  3605. msgid "Visible Settings"
  3606. msgstr "Zichtbare instellingen"
  3607. msgctxt "@button"
  3608. msgid "Visit plug-in website"
  3609. msgstr "Bezoek de plug-in-website"
  3610. msgctxt "@tooltip:button"
  3611. msgid "Visit the UltiMaker website."
  3612. msgstr "Bezoek de UltiMaker-website."
  3613. msgctxt "@label"
  3614. msgid "Visual"
  3615. msgstr "Visueel"
  3616. msgctxt "@label"
  3617. msgid "Waiting for"
  3618. msgstr "Wachten op"
  3619. msgctxt "@label"
  3620. msgid "Waiting for Cloud response"
  3621. msgstr "Wachten op cloudreactie"
  3622. msgctxt "@button"
  3623. msgid "Waiting for new printers"
  3624. msgstr "Wachten op nieuwe printers"
  3625. msgctxt "@button"
  3626. msgid "Want more?"
  3627. msgstr "Wilt u meer?"
  3628. msgctxt "@info:title"
  3629. msgid "Warning"
  3630. msgstr "Waarschuwing"
  3631. msgctxt "@info:status"
  3632. msgid "Warning: The profile is not visible because its quality type '{0}' is not available for the current configuration. Switch to a material/nozzle combination that can use this quality type."
  3633. msgstr "Waarschuwing: het profiel is niet zichtbaar omdat het kwaliteitstype '{0}' van het profiel niet beschikbaar is voor de huidige configuratie. Schakel naar een materiaal-nozzle-combinatie waarvoor dit kwaliteitstype geschikt is."
  3634. msgctxt "@text:window"
  3635. msgid "We have found one or more G-Code files within the files you have selected. You can only open one G-Code file at a time. If you want to open a G-Code file, please just select only one."
  3636. msgstr "Binnen de door u geselecteerde bestanden zijn een of meer G-code-bestanden aangetroffen. U kunt maximaal één G-code-bestand tegelijk openen. Selecteer maximaal één bestand als u dit wilt openen als G-code-bestand."
  3637. msgctxt "@text:window"
  3638. msgid "We have found one or more project file(s) within the files you have selected. You can open only one project file at a time. We suggest to only import models from those files. Would you like to proceed?"
  3639. msgstr "Binnen de door u geselecteerde bestanden zijn een of meer projectbestanden aangetroffen. U kunt slechts één projectbestand tegelijk openen. Het wordt aangeraden alleen modellen uit deze bestanden te importeren. Wilt u verdergaan?"
  3640. msgctxt "@info"
  3641. msgid "Webcam feeds for cloud printers cannot be viewed from UltiMaker Cura. Click \"Manage printer\" to visit Ultimaker Digital Factory and view this webcam."
  3642. msgstr "Vanuit UltiMaker Cura kunt u de webcamfeeds voor cloudprinters niet bekijken. Klik op 'Printer beheren' om Ultimaker Digital Factory te bezoeken en deze webcam te bekijken."
  3643. msgctxt "@button"
  3644. msgid "Website"
  3645. msgstr "Website"
  3646. msgctxt "@label"
  3647. msgid "What printer would you like to setup?"
  3648. msgstr "Welke printer wilt u instellen?"
  3649. msgctxt "@info:tooltip"
  3650. msgid "What type of camera navigation should be used?"
  3651. msgstr "Welk type cameranavigatie moet worden gebruikt?"
  3652. msgctxt "@info:tooltip"
  3653. msgid "What type of camera rendering should be used?"
  3654. msgstr "Welk type cameraweergave moet worden gebruikt?"
  3655. msgctxt "@action:inmenu menubar:help"
  3656. msgid "What's New"
  3657. msgstr "Nieuwe functies"
  3658. msgctxt "@label"
  3659. msgid "What's New"
  3660. msgstr "Nieuwe functies"
  3661. msgctxt "@title:window"
  3662. msgid "What's New"
  3663. msgstr "Nieuwe functies"
  3664. msgctxt "@info:tooltip"
  3665. msgid "When checking for updates, check for both stable and for beta releases."
  3666. msgstr "Kijk bij het controleren op updates naar stabiele releases en bèta-releases."
  3667. msgctxt "@info:tooltip"
  3668. msgid "When checking for updates, only check for stable releases."
  3669. msgstr "Kijk bij het controleren op updates alleen naar stabiele releases."
  3670. msgctxt "@info:tooltip"
  3671. msgid "When you have made changes to a profile and switched to a different one, a dialog will be shown asking whether you want to keep your modifications or not, or you can choose a default behaviour and never show that dialog again."
  3672. msgstr "Wanneer u wijzigingen hebt aangebracht aan een profiel en naar een ander profiel wisselt, wordt een dialoogvenster weergegeven waarin u wordt gevraagd of u de aanpassingen wilt behouden. U kunt ook een standaardgedrag kiezen en het dialoogvenster nooit meer laten weergeven."
  3673. msgctxt "@button"
  3674. msgid "Why do I need to sync material profiles?"
  3675. msgstr "Waarom moet ik materiaalprofielen synchroniseren?"
  3676. msgctxt "@action:label"
  3677. msgid "Width (mm)"
  3678. msgstr "Breedte (mm)"
  3679. msgctxt "@label"
  3680. msgid "X (Width)"
  3681. msgstr "X (Breedte)"
  3682. msgctxt "@label"
  3683. msgid "X max"
  3684. msgstr "X max"
  3685. msgctxt "@label"
  3686. msgid "X min"
  3687. msgstr "X min"
  3688. msgctxt "@item:inlistbox"
  3689. msgid "X-Ray view"
  3690. msgstr "Röntgenweergave"
  3691. msgctxt "@label"
  3692. msgid "X/Y"
  3693. msgstr "X/Y"
  3694. msgctxt "@item:inlistbox"
  3695. msgid "X3D File"
  3696. msgstr "X3D-bestand"
  3697. msgctxt "@label"
  3698. msgid "Y (Depth)"
  3699. msgstr "Y (Diepte)"
  3700. msgctxt "@label"
  3701. msgid "Y max"
  3702. msgstr "Y max"
  3703. msgctxt "@label"
  3704. msgid "Y min"
  3705. msgstr "Y min"
  3706. msgctxt "@info"
  3707. msgid "Yes"
  3708. msgstr "Ja"
  3709. msgctxt "@label"
  3710. msgid "You are about to remove all printers from Cura. This action cannot be undone.\nAre you sure you want to continue?"
  3711. msgstr "U staat op het punt om alle printers uit Cura te verwijderen. Deze actie kan niet ongedaan worden gemaakt."
  3712. "Weet u zeker dat u door wilt gaan?"
  3713. msgctxt "@label"
  3714. msgid "You are about to remove {0} printer from Cura. This action cannot be undone.\nAre you sure you want to continue?"
  3715. msgid_plural "You are about to remove {0} printers from Cura. This action cannot be undone.\nAre you sure you want to continue?"
  3716. msgstr[0] "U staat op het punt om {0} printer uit Cura te verwijderen. Deze actie kan niet ongedaan worden gemaakt.\nWeet u zeker dat u door wilt gaan?"
  3717. msgstr[1] "U staat op het punt om {0} printers uit Cura te verwijderen. Deze actie kan niet ongedaan worden gemaakt.\nWeet u zeker dat u door wilt gaan?"
  3718. msgctxt "@info:status"
  3719. msgid "You are attempting to connect to a printer that is not running UltiMaker Connect. Please update the printer to the latest firmware."
  3720. msgstr "U probeert verbinding te maken met een printer waarop UltiMaker Connect niet wordt uitgevoerd. Werk de printer bij naar de nieuwste firmware."
  3721. msgctxt "@info:status"
  3722. msgid "You are attempting to connect to {0} but it is not the host of a group. You can visit the web page to configure it as a group host."
  3723. msgstr "U probeert verbinding te maken met {0}, maar deze is niet de host van een groep. U kunt de webpagina bezoeken om deze als groephost te configureren."
  3724. msgctxt "@empty_state"
  3725. msgid "You don't have any backups currently. Use the 'Backup Now' button to create one."
  3726. msgstr "U hebt momenteel geen back-ups. Gebruik de knop 'Nu back-up maken' om een back-up te maken."
  3727. msgctxt "@text:window, %1 is a profile name"
  3728. msgid "You have customized some profile settings. Would you like to Keep these changed settings after switching profiles? Alternatively, you can discard the changes to load the defaults from '%1'."
  3729. msgstr "U hebt enkele profielinstellingen aangepast."
  3730. "Wilt u deze gewijzigde instellingen behouden na het verwisselen van profielen?"
  3731. "U kunt de wijzigingen ook verwijderen om de standaardinstellingen van '%1' te laden."
  3732. msgctxt "@label"
  3733. msgid "You need to accept the license to install the package"
  3734. msgstr "U moet de licentie accepteren om de package te installeren"
  3735. msgctxt "@info:generic"
  3736. msgid "You need to quit and restart {} before changes have effect."
  3737. msgstr "U moet {} afsluiten en herstarten voordat de wijzigingen van kracht worden."
  3738. msgctxt "@dialog:info"
  3739. msgid "You will need to restart Cura before your backup is restored. Do you want to close Cura now?"
  3740. msgstr "U moet Cura opnieuw starten voordat uw back-up wordt hersteld. Wilt u Cura nu sluiten?"
  3741. msgctxt "@info:status"
  3742. msgid "You will receive a confirmation via email when the print job is approved"
  3743. msgstr "U ontvangt een bevestiging via e-mail wanneer de printtaak is goedgekeurd"
  3744. msgctxt "@info:backup_status"
  3745. msgid "Your backup has finished uploading."
  3746. msgstr "Uw back-up is geüpload."
  3747. msgctxt "@action:label"
  3748. msgid "Your current settings match the selected profile."
  3749. msgstr "Uw huidige instellingen komen overeen met het geselecteerde profiel."
  3750. msgctxt "@info"
  3751. msgid "Your new printer will automatically appear in Cura"
  3752. msgstr "Uw nieuwe printer wordt automatisch weergegeven in Cura"
  3753. msgctxt "@info:status"
  3754. msgid "Your printer <b>{printer_name}</b> could be connected via cloud.\n Manage your print queue and monitor your prints from anywhere connecting your printer to Digital Factory"
  3755. msgstr "U kunt uw printer <b>{printer_name}</b> via de cloud verbinden."
  3756. " Beheer uw printerwachtrij en controleer uw prints vanaf elke plek door uw printer te verbinden met Digital Factory"
  3757. msgctxt "@label"
  3758. msgid "Z"
  3759. msgstr "Z"
  3760. msgctxt "@label"
  3761. msgid "Z (Height)"
  3762. msgstr "Z (Hoogte)"
  3763. msgctxt "@label Description for application dependency"
  3764. msgid "ZeroConf discovery library"
  3765. msgstr "ZeroConf-detectiebibliotheek"
  3766. msgctxt "@action:button"
  3767. msgid "Zoom toward mouse direction"
  3768. msgstr "Zoomen in de richting van de muis"
  3769. msgctxt "@info:tooltip"
  3770. msgid "Zooming towards the mouse is not supported in the orthographic perspective."
  3771. msgstr "Zoomen in de richting van de muis wordt niet ondersteund in het orthografische perspectief."
  3772. msgctxt "@text Placeholder for the username if it has been deleted"
  3773. msgid "deleted user"
  3774. msgstr "verwijderde gebruiker"
  3775. msgctxt "@item:inlistbox"
  3776. msgid "glTF Binary"
  3777. msgstr "glTF-binair"
  3778. msgctxt "@item:inlistbox"
  3779. msgid "glTF Embedded JSON"
  3780. msgstr "glTF-ingesloten JSON"
  3781. msgctxt "@label"
  3782. msgid "max"
  3783. msgstr "max"
  3784. msgctxt "@label"
  3785. msgid "min"
  3786. msgstr "min"
  3787. msgctxt "@label"
  3788. msgid "mm"
  3789. msgstr "mm"
  3790. msgctxt "@label"
  3791. msgid "s"
  3792. msgstr "s"
  3793. msgctxt "@info:status"
  3794. msgid "today"
  3795. msgstr "vandaag"
  3796. msgctxt "@info:status"
  3797. msgid "tomorrow"
  3798. msgstr "morgen"
  3799. msgctxt "@label"
  3800. msgid "version: %1"
  3801. msgstr "versie: %1"
  3802. msgctxt "@message {printer_name} is replaced with the name of the printer"
  3803. msgid "{printer_name} will be removed until the next account sync."
  3804. msgstr "{printer_name} wordt verwijderd tot de volgende accountsynchronisatie."
  3805. msgctxt "@info:generic"
  3806. msgid "{} plugins failed to download"
  3807. msgstr "{} plug-ins zijn niet gedownload"
  3808. msgctxt "description"
  3809. msgid "Manages network connections to UltiMaker networked printers."
  3810. msgstr "Beheert netwerkverbindingen naar UltiMaker-netwerkprinters."
  3811. msgctxt "name"
  3812. msgid "UltiMaker Network Connection"
  3813. msgstr "UltiMaker-netwerkverbinding"
  3814. msgctxt "description"
  3815. msgid "Provides support for importing profiles from g-code files."
  3816. msgstr "Biedt ondersteuning voor het importeren van profielen uit G-code-bestanden."
  3817. msgctxt "name"
  3818. msgid "G-code Profile Reader"
  3819. msgstr "G-code-profiellezer"
  3820. msgctxt "description"
  3821. msgid "Provides a normal solid mesh view."
  3822. msgstr "Biedt een normale, solide rasterweergave."
  3823. msgctxt "name"
  3824. msgid "Solid View"
  3825. msgstr "Solide weergave"
  3826. msgctxt "description"
  3827. msgid "CuraEngine plugin for gradually smoothing the flow to limit high-flow jumps"
  3828. msgstr "CuraEngine-plugin voor het geleidelijk afvlakken van de flow om grote sprongen in de flow te beperken"
  3829. msgctxt "name"
  3830. msgid "CuraEngineGradualFlow"
  3831. msgstr "CuraEngineGradualFlow"
  3832. msgctxt "description"
  3833. msgid "Provides support for reading 3MF files."
  3834. msgstr "Biedt ondersteuning voor het lezen van 3MF-bestanden."
  3835. msgctxt "name"
  3836. msgid "3MF Reader"
  3837. msgstr "3MF-lezer"
  3838. msgctxt "description"
  3839. msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware."
  3840. msgstr "Hiermee accepteert u G-code en verzendt u deze code naar een printer. Via de plug-in kan tevens de firmware worden bijgewerkt."
  3841. msgctxt "name"
  3842. msgid "USB printing"
  3843. msgstr "USB-printen"
  3844. msgctxt "description"
  3845. msgid "Checks for firmware updates."
  3846. msgstr "Controleert op firmware-updates."
  3847. msgctxt "name"
  3848. msgid "Firmware Update Checker"
  3849. msgstr "Firmware-updatecontrole"
  3850. msgctxt "description"
  3851. msgid "Manages extensions to the application and allows browsing extensions from the UltiMaker website."
  3852. msgstr "Beheert extensies voor de toepassing en staat browsingextensies toe van de UltiMaker-website."
  3853. msgctxt "name"
  3854. msgid "Marketplace"
  3855. msgstr "Marktplaats"
  3856. msgctxt "description"
  3857. msgid "Backup and restore your configuration."
  3858. msgstr "Een back-up maken van uw configuratie en deze herstellen."
  3859. msgctxt "name"
  3860. msgid "Cura Backups"
  3861. msgstr "Cura-back-ups"
  3862. msgctxt "description"
  3863. msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)."
  3864. msgstr "Biedt een manier om de machine-instellingen (zoals bouwvolume, maat nozzle, enz.) te wijzigen."
  3865. msgctxt "name"
  3866. msgid "Machine Settings Action"
  3867. msgstr "Actie machine-instellingen"
  3868. msgctxt "description"
  3869. msgid "Upgrades configurations from Cura 2.5 to Cura 2.6."
  3870. msgstr "Hiermee worden configuraties bijgewerkt van Cura 2.5 naar Cura 2.6."
  3871. msgctxt "name"
  3872. msgid "Version Upgrade 2.5 to 2.6"
  3873. msgstr "Versie-upgrade van 2.5 naar 2.6"
  3874. msgctxt "description"
  3875. msgid "Upgrades configurations from Cura 4.7 to Cura 4.8."
  3876. msgstr "Hiermee worden configuraties bijgewerkt van Cura 4.7 naar Cura 4.8."
  3877. msgctxt "name"
  3878. msgid "Version Upgrade 4.7 to 4.8"
  3879. msgstr "Versie-upgrade van 4.7 naar 4.8"
  3880. msgctxt "description"
  3881. msgid "Upgrades configurations from Cura 4.4 to Cura 4.5."
  3882. msgstr "Hiermee worden configuraties bijgewerkt van Cura 4.4 naar Cura 4.5."
  3883. msgctxt "name"
  3884. msgid "Version Upgrade 4.4 to 4.5"
  3885. msgstr "Versie-upgrade van 4.4 naar 4.5"
  3886. msgctxt "description"
  3887. msgid "Upgrades configurations from Cura 3.0 to Cura 3.1."
  3888. msgstr "Hiermee worden configuraties bijgewerkt van Cura 3.0 naar Cura 3.1."
  3889. msgctxt "name"
  3890. msgid "Version Upgrade 3.0 to 3.1"
  3891. msgstr "Versie-upgrade van 3.0 naar 3.1"
  3892. msgctxt "description"
  3893. msgid "Upgrades configurations from Cura 4.11 to Cura 4.12."
  3894. msgstr "Hiermee worden configuraties bijgewerkt van Cura 4.11 naar Cura 4.12."
  3895. msgctxt "name"
  3896. msgid "Version Upgrade 4.11 to 4.12"
  3897. msgstr "Versie-upgrade van 4.11 naar 4.12"
  3898. msgctxt "description"
  3899. msgid "Upgrades configurations from Cura 4.1 to Cura 4.2."
  3900. msgstr "Hiermee worden configuraties bijgewerkt van Cura 4.1 naar Cura 4.2."
  3901. msgctxt "name"
  3902. msgid "Version Upgrade 4.1 to 4.2"
  3903. msgstr "Versie-upgrade van 4.1 naar 4.2"
  3904. msgctxt "description"
  3905. msgid "Upgrades configurations from Cura 2.6 to Cura 2.7."
  3906. msgstr "Hiermee worden configuraties bijgewerkt van Cura 2.6 naar Cura 2.7."
  3907. msgctxt "name"
  3908. msgid "Version Upgrade 2.6 to 2.7"
  3909. msgstr "Versie-upgrade van 2.6 naar 2.7"
  3910. msgctxt "description"
  3911. msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2."
  3912. msgstr "Hiermee worden configuraties bijgewerkt van Cura 4.6.0 naar Cura 4.6.2."
  3913. msgctxt "name"
  3914. msgid "Version Upgrade 4.6.0 to 4.6.2"
  3915. msgstr "Versie-upgrade van 4.6.0 naar 4.6.2"
  3916. msgctxt "description"
  3917. msgid "Upgrades configurations from Cura 3.3 to Cura 3.4."
  3918. msgstr "Hiermee worden configuraties bijgewerkt van Cura 3.3 naar Cura 3.4."
  3919. msgctxt "name"
  3920. msgid "Version Upgrade 3.3 to 3.4"
  3921. msgstr "Versie-upgrade van 3.3 naar 3.4"
  3922. msgctxt "description"
  3923. msgid "Upgrades configurations from Cura 4.8 to Cura 4.9."
  3924. msgstr "Hiermee worden configuraties bijgewerkt van Cura 4.7 naar Cura 4.9."
  3925. msgctxt "name"
  3926. msgid "Version Upgrade 4.8 to 4.9"
  3927. msgstr "Versie-upgrade van 4.8 naar 4.9"
  3928. msgctxt "description"
  3929. msgid "Upgrades configurations from Cura 4.5 to Cura 4.6."
  3930. msgstr "Hiermee worden configuraties bijgewerkt van Cura 4.5 naar Cura 4.6."
  3931. msgctxt "name"
  3932. msgid "Version Upgrade 4.5 to 4.6"
  3933. msgstr "Versie-upgrade van 4.5 naar 4.6"
  3934. msgctxt "description"
  3935. msgid "Upgrades configurations from Cura 4.2 to Cura 4.3."
  3936. msgstr "Hiermee worden configuraties bijgewerkt van Cura 4.2 naar Cura 4.3."
  3937. msgctxt "name"
  3938. msgid "Version Upgrade 4.2 to 4.3"
  3939. msgstr "Versie-upgrade van 4.2 naar 4.3"
  3940. msgctxt "description"
  3941. msgid "Upgrades configurations from Cura 3.2 to Cura 3.3."
  3942. msgstr "Hiermee worden configuraties bijgewerkt van Cura 3.2 naar Cura 3.3."
  3943. msgctxt "name"
  3944. msgid "Version Upgrade 3.2 to 3.3"
  3945. msgstr "Versie-upgrade van 3.2 naar 3.3"
  3946. msgctxt "description"
  3947. msgid "Upgrades configurations from Cura 4.3 to Cura 4.4."
  3948. msgstr "Hiermee worden configuraties bijgewerkt van Cura 4.3 naar Cura 4.4."
  3949. msgctxt "name"
  3950. msgid "Version Upgrade 4.3 to 4.4"
  3951. msgstr "Versie-upgrade van 4.3 naar 4.4"
  3952. msgctxt "description"
  3953. msgid "Upgrades configurations from Cura 5.6 to Cura 5.7."
  3954. msgstr "Upgrades van configuraties van Cura 5.6 naar Cura 5.7."
  3955. msgctxt "name"
  3956. msgid "Version Upgrade 5.6 to 5.7"
  3957. msgstr "Versie-upgrade van 5.6 naar 5.7"
  3958. msgctxt "description"
  3959. msgid "Upgrades configurations from Cura 2.1 to Cura 2.2."
  3960. msgstr "Hiermee worden configuraties bijgewerkt van Cura 2.1 naar Cura 2.2."
  3961. msgctxt "name"
  3962. msgid "Version Upgrade 2.1 to 2.2"
  3963. msgstr "Versie-upgrade van 2.1 naar 2.2"
  3964. msgctxt "description"
  3965. msgid "Upgrades configurations from Cura 5.3 to Cura 5.4."
  3966. msgstr "Werkt configuraties bij van Cura 5.3 naar Cura 5.4."
  3967. msgctxt "name"
  3968. msgid "Version Upgrade 5.3 to 5.4"
  3969. msgstr "Versie-upgrade 5.3 naar 5.4"
  3970. msgctxt "description"
  3971. msgid "Upgrades configurations from Cura 4.9 to Cura 4.10."
  3972. msgstr "Hiermee worden configuraties bijgewerkt van Cura 4.9 naar Cura 4.10."
  3973. msgctxt "name"
  3974. msgid "Version Upgrade 4.9 to 4.10"
  3975. msgstr "Versie-upgrade 4.9 naar 4.10"
  3976. msgctxt "description"
  3977. msgid "Upgrades configurations from Cura 2.7 to Cura 3.0."
  3978. msgstr "Hiermee worden configuraties bijgewerkt van Cura 2.7 naar Cura 3.0."
  3979. msgctxt "name"
  3980. msgid "Version Upgrade 2.7 to 3.0"
  3981. msgstr "Versie-upgrade van 2.7 naar 3.0"
  3982. msgctxt "description"
  3983. msgid "Upgrades configurations from Cura 3.5 to Cura 4.0."
  3984. msgstr "Hiermee worden configuraties bijgewerkt van Cura 3.5 naar Cura 4.0."
  3985. msgctxt "name"
  3986. msgid "Version Upgrade 3.5 to 4.0"
  3987. msgstr "Versie-upgrade van 3.5 naar 4.0"
  3988. msgctxt "description"
  3989. msgid "Upgrades configurations from Cura 5.2 to Cura 5.3."
  3990. msgstr "Hiermee worden configuraties bijgewerkt van Cura 5.2 naar Cura 5.3."
  3991. msgctxt "name"
  3992. msgid "Version Upgrade 5.2 to 5.3"
  3993. msgstr "Versie-upgrade van 5.2 naar 5.3"
  3994. msgctxt "description"
  3995. msgid "Upgrades configurations from Cura 4.0 to Cura 4.1."
  3996. msgstr "Hiermee worden configuraties bijgewerkt van Cura 4.0 naar Cura 4.1."
  3997. msgctxt "name"
  3998. msgid "Version Upgrade 4.0 to 4.1"
  3999. msgstr "Versie-upgrade van 4.0 naar 4.1"
  4000. msgctxt "description"
  4001. msgid "Upgrades configurations from Cura 4.13 to Cura 5.0."
  4002. msgstr "Hiermee worden configuraties bijgewerkt van Cura 4.13 naar Cura 5.0."
  4003. msgctxt "name"
  4004. msgid "Version Upgrade 4.13 to 5.0"
  4005. msgstr "Versie-upgrade 4.13 naar 5.0"
  4006. msgctxt "description"
  4007. msgid "Upgrades configurations from Cura 3.4 to Cura 3.5."
  4008. msgstr "Hiermee worden configuraties bijgewerkt van Cura 3.4 naar Cura 3.5."
  4009. msgctxt "name"
  4010. msgid "Version Upgrade 3.4 to 3.5"
  4011. msgstr "Versie-upgrade van 3.4 naar 3.5"
  4012. msgctxt "description"
  4013. msgid "Upgrades configurations from Cura 2.2 to Cura 2.4."
  4014. msgstr "Hiermee worden configuraties bijgewerkt van Cura 2.2 naar Cura 2.4."
  4015. msgctxt "name"
  4016. msgid "Version Upgrade 2.2 to 2.4"
  4017. msgstr "Versie-upgrade van 2.2 naar 2.4"
  4018. msgctxt "description"
  4019. msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7."
  4020. msgstr "Hiermee worden configuraties bijgewerkt van Cura 4.6.2 naar Cura 4.7."
  4021. msgctxt "name"
  4022. msgid "Version Upgrade 4.6.2 to 4.7"
  4023. msgstr "Versie-upgrade van 4.6.2 naar 4.7"
  4024. msgctxt "description"
  4025. msgid "Upgrades configurations from Cura 5.4 to Cura 5.5."
  4026. msgstr "Werkt configuraties bij van Cura 5.4 naar Cura 5.5."
  4027. msgctxt "name"
  4028. msgid "Version Upgrade 5.4 to 5.5"
  4029. msgstr "Versie-upgrade 5.4 naar 5.5"
  4030. msgctxt "description"
  4031. msgid "Allows loading and displaying G-code files."
  4032. msgstr "Hiermee kunt u G-code-bestanden laden en weergeven."
  4033. msgctxt "name"
  4034. msgid "G-code Reader"
  4035. msgstr "G-code-lezer"
  4036. msgctxt "description"
  4037. msgid "Submits anonymous slice info. Can be disabled through preferences."
  4038. msgstr "Verzendt anonieme slice-informatie. Dit kan bij de voorkeuren worden uitgeschakeld."
  4039. msgctxt "name"
  4040. msgid "Slice info"
  4041. msgstr "Slice-informatie"
  4042. msgctxt "description"
  4043. msgid "Provides removable drive hotplugging and writing support."
  4044. msgstr "Biedt hotplug- en schrijfondersteuning voor verwisselbare stations."
  4045. msgctxt "name"
  4046. msgid "Removable Drive Output Device Plugin"
  4047. msgstr "Plug-in voor Verwijderbaar Uitvoerapparaat"
  4048. msgctxt "description"
  4049. msgid "Creates an eraser mesh to block the printing of support in certain places"
  4050. msgstr "Hiermee maakt u een wisraster om het printen van een supportstructuur op bepaalde plekken te blokkeren"
  4051. msgctxt "name"
  4052. msgid "Support Eraser"
  4053. msgstr "Supportwisser"
  4054. msgctxt "description"
  4055. msgid "Checks models and print configuration for possible printing issues and give suggestions."
  4056. msgstr "Via deze optie controleert u de modellen en de printconfiguratie op mogelijke printproblemen en ontvangt u suggesties."
  4057. msgctxt "name"
  4058. msgid "Model Checker"
  4059. msgstr "Modelcontrole"
  4060. msgctxt "description"
  4061. msgid "Provides a prepare stage in Cura."
  4062. msgstr "Deze optie biedt een voorbereidingsstadium in Cura."
  4063. msgctxt "name"
  4064. msgid "Prepare Stage"
  4065. msgstr "Stadium voorbereiden"
  4066. msgctxt "description"
  4067. msgid "Provides the preview of sliced layerdata."
  4068. msgstr "Biedt voorbeeld van geslicete laaggegevens."
  4069. msgctxt "name"
  4070. msgid "Simulation View"
  4071. msgstr "Simulatieweergave"
  4072. msgctxt "description"
  4073. msgid "Provides support for reading AMF files."
  4074. msgstr "Biedt ondersteuning voor het lezen van AMF-bestanden."
  4075. msgctxt "name"
  4076. msgid "AMF Reader"
  4077. msgstr "AMF-lezer"
  4078. msgctxt "description"
  4079. msgid "Provides the X-Ray view."
  4080. msgstr "Biedt de röntgenweergave."
  4081. msgctxt "name"
  4082. msgid "X-Ray View"
  4083. msgstr "Röntgenweergave"
  4084. msgctxt "description"
  4085. msgid "Provides a machine actions for updating firmware."
  4086. msgstr "Biedt machineacties voor het bijwerken van de firmware."
  4087. msgctxt "name"
  4088. msgid "Firmware Updater"
  4089. msgstr "Firmware-updater"
  4090. msgctxt "description"
  4091. msgid "Provides support for importing profiles from legacy Cura versions."
  4092. msgstr "Biedt ondersteuning voor het importeren van profielen uit oudere Cura-versies."
  4093. msgctxt "name"
  4094. msgid "Legacy Cura Profile Reader"
  4095. msgstr "Lezer voor Profielen van oudere Cura-versies"
  4096. msgctxt "description"
  4097. msgid "Extension that allows for user created scripts for post processing"
  4098. msgstr "Uitbreiding waarmee door de gebruiker gemaakte scripts voor nabewerking kunnen worden gebruikt"
  4099. msgctxt "name"
  4100. msgid "Post Processing"
  4101. msgstr "Nabewerking"
  4102. msgctxt "description"
  4103. msgid "Logs certain events so that they can be used by the crash reporter"
  4104. msgstr "Hiermee worden bepaalde gebeurtenissen geregistreerd, zodat deze door de crashrapportage kunnen worden gebruikt"
  4105. msgctxt "name"
  4106. msgid "Sentry Logger"
  4107. msgstr "Sentrylogger"
  4108. msgctxt "description"
  4109. msgid "Provides support for writing MakerBot Format Packages."
  4110. msgstr "Biedt ondersteuning voor het schrijven van MakerBot-formaatpakketten."
  4111. msgctxt "name"
  4112. msgid "Makerbot Printfile Writer"
  4113. msgstr "Makerbot Printbestandschrijver"
  4114. msgctxt "description"
  4115. msgid "Provides support for importing Cura profiles."
  4116. msgstr "Biedt ondersteuning bij het importeren van Cura-profielen."
  4117. msgctxt "name"
  4118. msgid "Cura Profile Reader"
  4119. msgstr "Cura-profiellezer"
  4120. msgctxt "description"
  4121. msgid "Provides support for reading Ultimaker Format Packages."
  4122. msgstr "Deze optie biedt ondersteuning voor het lezen van UltiMaker Format Packages."
  4123. msgctxt "name"
  4124. msgid "UFP Reader"
  4125. msgstr "UFP-lezer"
  4126. msgctxt "description"
  4127. msgid "Enables ability to generate printable geometry from 2D image files."
  4128. msgstr "Hiermee wordt het genereren van printbare geometrie van 2D-afbeeldingsbestanden mogelijk."
  4129. msgctxt "name"
  4130. msgid "Image Reader"
  4131. msgstr "Afbeeldinglezer"
  4132. msgctxt "description"
  4133. msgid "Provides the link to the CuraEngine slicing backend."
  4134. msgstr "Voorziet in de koppeling naar het slicing-back-end van de CuraEngine."
  4135. msgctxt "name"
  4136. msgid "CuraEngine Backend"
  4137. msgstr "CuraEngine-back-end"
  4138. msgctxt "description"
  4139. msgid "Writes g-code to a compressed archive."
  4140. msgstr "Met deze optie schrijft u G-code naar een gecomprimeerd archief."
  4141. msgctxt "name"
  4142. msgid "Compressed G-code Writer"
  4143. msgstr "Schrijver voor gecomprimeerde G-code"
  4144. msgctxt "description"
  4145. msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)."
  4146. msgstr "Biedt machineacties voor UltiMaker-machines (zoals wizard voor bedkalibratie, selecteren van upgrades, enz.)"
  4147. msgctxt "name"
  4148. msgid "UltiMaker machine actions"
  4149. msgstr "Acties UltiMaker-machines"
  4150. msgctxt "description"
  4151. msgid "Reads g-code from a compressed archive."
  4152. msgstr "Hiermee leest u G-code uit een gecomprimeerd archief."
  4153. msgctxt "name"
  4154. msgid "Compressed G-code Reader"
  4155. msgstr "Lezer voor gecomprimeerde G-code"
  4156. msgctxt "description"
  4157. msgid "Provides a preview stage in Cura."
  4158. msgstr "Deze optie biedt een voorbeeldstadium in Cura."
  4159. msgctxt "name"
  4160. msgid "Preview Stage"
  4161. msgstr "Voorbeeldstadium"
  4162. msgctxt "description"
  4163. msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library."
  4164. msgstr "Maakt verbinding met de digitale bibliotheek, zodat Cura bestanden kan openen vanuit, en bestanden kan opslaan in, de digitale bibliotheek."
  4165. msgctxt "name"
  4166. msgid "Ultimaker Digital Library"
  4167. msgstr "Ultimaker Digital Library"
  4168. msgctxt "description"
  4169. msgid "Provides support for exporting Cura profiles."
  4170. msgstr "Biedt ondersteuning voor het exporteren van Cura-profielen."
  4171. msgctxt "name"
  4172. msgid "Cura Profile Writer"
  4173. msgstr "Cura-profielschrijver"
  4174. msgctxt "description"
  4175. msgid "Provides support for reading X3D files."
  4176. msgstr "Deze optie biedt ondersteuning voor het lezen van X3D-bestanden."
  4177. msgctxt "name"
  4178. msgid "X3D Reader"
  4179. msgstr "X3D-lezer"
  4180. msgctxt "description"
  4181. msgid "Provides support for reading model files."
  4182. msgstr "Biedt ondersteuning voor het lezen van modelbestanden."
  4183. msgctxt "name"
  4184. msgid "Trimesh Reader"
  4185. msgstr "Trimesh-lezer"
  4186. msgctxt "description"
  4187. msgid "Provides a monitor stage in Cura."
  4188. msgstr "Deze optie biedt een controlestadium in Cura."
  4189. msgctxt "name"
  4190. msgid "Monitor Stage"
  4191. msgstr "Controlestadium"
  4192. msgctxt "description"
  4193. msgid "Provides the Per Model Settings."
  4194. msgstr "Biedt de Instellingen per Model."
  4195. msgctxt "name"
  4196. msgid "Per Model Settings Tool"
  4197. msgstr "Gereedschap voor Instellingen per Model"
  4198. msgctxt "description"
  4199. msgid "Provides capabilities to read and write XML-based material profiles."
  4200. msgstr "Biedt mogelijkheden om materiaalprofielen op XML-basis te lezen en te schrijven."
  4201. msgctxt "name"
  4202. msgid "Material Profiles"
  4203. msgstr "Materiaalprofielen"
  4204. msgctxt "description"
  4205. msgid "Provides support for writing 3MF and UCP files."
  4206. msgstr "Biedt ondersteuning voor het schrijven van 3MF- en UCP-bestanden."
  4207. msgctxt "name"
  4208. msgid "3MF Writer"
  4209. msgstr "3MF-schrijver"
  4210. msgctxt "description"
  4211. msgid "Provides support for writing Ultimaker Format Packages."
  4212. msgstr "Deze optie biedt ondersteuning voor het schrijven van UltiMaker Format Packages."
  4213. msgctxt "name"
  4214. msgid "UFP Writer"
  4215. msgstr "UFP-schrijver"
  4216. msgctxt "description"
  4217. msgid "Writes g-code to a file."
  4218. msgstr "Met deze optie schrijft u G-code naar een bestand."
  4219. msgctxt "name"
  4220. msgid "G-code Writer"
  4221. msgstr "G-code-schrijver"