editor.pot 142 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820
  1. # LANGUAGE translation of the Godot Engine editor
  2. # Copyright (C) 2007-2017 Juan Linietsky, Ariel Manzur
  3. # Copyright (C) 2014-2017 Godot Engine contributors (cf. AUTHORS.md)
  4. # This file is distributed under the same license as the Godot source code.
  5. #
  6. # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
  7. #
  8. #, fuzzy
  9. msgid ""
  10. msgstr ""
  11. "Project-Id-Version: Godot Engine editor\n"
  12. "Content-Type: text/plain; charset=UTF-8\n"
  13. "Content-Transfer-Encoding: 8-bit\n"
  14. #: editor/animation_editor.cpp
  15. msgid "Disabled"
  16. msgstr ""
  17. #: editor/animation_editor.cpp
  18. msgid "All Selection"
  19. msgstr ""
  20. #: editor/animation_editor.cpp
  21. msgid "Move Add Key"
  22. msgstr ""
  23. #: editor/animation_editor.cpp
  24. msgid "Anim Change Transition"
  25. msgstr ""
  26. #: editor/animation_editor.cpp
  27. msgid "Anim Change Transform"
  28. msgstr ""
  29. #: editor/animation_editor.cpp
  30. msgid "Anim Change Value"
  31. msgstr ""
  32. #: editor/animation_editor.cpp
  33. msgid "Anim Change Call"
  34. msgstr ""
  35. #: editor/animation_editor.cpp
  36. msgid "Anim Add Track"
  37. msgstr ""
  38. #: editor/animation_editor.cpp
  39. msgid "Anim Duplicate Keys"
  40. msgstr ""
  41. #: editor/animation_editor.cpp
  42. msgid "Move Anim Track Up"
  43. msgstr ""
  44. #: editor/animation_editor.cpp
  45. msgid "Move Anim Track Down"
  46. msgstr ""
  47. #: editor/animation_editor.cpp
  48. msgid "Remove Anim Track"
  49. msgstr ""
  50. #: editor/animation_editor.cpp
  51. msgid "Set Transitions to:"
  52. msgstr ""
  53. #: editor/animation_editor.cpp
  54. msgid "Anim Track Rename"
  55. msgstr ""
  56. #: editor/animation_editor.cpp
  57. msgid "Anim Track Change Interpolation"
  58. msgstr ""
  59. #: editor/animation_editor.cpp
  60. msgid "Anim Track Change Value Mode"
  61. msgstr ""
  62. #: editor/animation_editor.cpp
  63. msgid "Anim Track Change Wrap Mode"
  64. msgstr ""
  65. #: editor/animation_editor.cpp
  66. msgid "Edit Node Curve"
  67. msgstr ""
  68. #: editor/animation_editor.cpp
  69. msgid "Edit Selection Curve"
  70. msgstr ""
  71. #: editor/animation_editor.cpp
  72. msgid "Anim Delete Keys"
  73. msgstr ""
  74. #: editor/animation_editor.cpp editor/plugins/tile_map_editor_plugin.cpp
  75. msgid "Duplicate Selection"
  76. msgstr ""
  77. #: editor/animation_editor.cpp
  78. msgid "Duplicate Transposed"
  79. msgstr ""
  80. #: editor/animation_editor.cpp
  81. msgid "Remove Selection"
  82. msgstr ""
  83. #: editor/animation_editor.cpp
  84. msgid "Continuous"
  85. msgstr ""
  86. #: editor/animation_editor.cpp
  87. msgid "Discrete"
  88. msgstr ""
  89. #: editor/animation_editor.cpp
  90. msgid "Trigger"
  91. msgstr ""
  92. #: editor/animation_editor.cpp
  93. msgid "Anim Add Key"
  94. msgstr ""
  95. #: editor/animation_editor.cpp
  96. msgid "Anim Move Keys"
  97. msgstr ""
  98. #: editor/animation_editor.cpp
  99. msgid "Scale Selection"
  100. msgstr ""
  101. #: editor/animation_editor.cpp
  102. msgid "Scale From Cursor"
  103. msgstr ""
  104. #: editor/animation_editor.cpp
  105. msgid "Goto Next Step"
  106. msgstr ""
  107. #: editor/animation_editor.cpp
  108. msgid "Goto Prev Step"
  109. msgstr ""
  110. #: editor/animation_editor.cpp editor/property_editor.cpp
  111. msgid "Linear"
  112. msgstr ""
  113. #: editor/animation_editor.cpp editor/plugins/theme_editor_plugin.cpp
  114. msgid "Constant"
  115. msgstr ""
  116. #: editor/animation_editor.cpp
  117. msgid "In"
  118. msgstr ""
  119. #: editor/animation_editor.cpp
  120. msgid "Out"
  121. msgstr ""
  122. #: editor/animation_editor.cpp
  123. msgid "In-Out"
  124. msgstr ""
  125. #: editor/animation_editor.cpp
  126. msgid "Out-In"
  127. msgstr ""
  128. #: editor/animation_editor.cpp
  129. msgid "Transitions"
  130. msgstr ""
  131. #: editor/animation_editor.cpp
  132. msgid "Optimize Animation"
  133. msgstr ""
  134. #: editor/animation_editor.cpp
  135. msgid "Clean-Up Animation"
  136. msgstr ""
  137. #: editor/animation_editor.cpp
  138. msgid "Create NEW track for %s and insert key?"
  139. msgstr ""
  140. #: editor/animation_editor.cpp
  141. msgid "Create %d NEW tracks and insert keys?"
  142. msgstr ""
  143. #: editor/animation_editor.cpp editor/create_dialog.cpp
  144. #: editor/editor_audio_buses.cpp
  145. #: editor/plugins/light_occluder_2d_editor_plugin.cpp
  146. #: editor/plugins/mesh_instance_editor_plugin.cpp
  147. #: editor/plugins/navigation_polygon_editor_plugin.cpp
  148. #: editor/plugins/particles_editor_plugin.cpp editor/project_manager.cpp
  149. #: editor/script_create_dialog.cpp
  150. msgid "Create"
  151. msgstr ""
  152. #: editor/animation_editor.cpp
  153. msgid "Anim Create & Insert"
  154. msgstr ""
  155. #: editor/animation_editor.cpp
  156. msgid "Anim Insert Track & Key"
  157. msgstr ""
  158. #: editor/animation_editor.cpp
  159. msgid "Anim Insert Key"
  160. msgstr ""
  161. #: editor/animation_editor.cpp
  162. msgid "Change Anim Len"
  163. msgstr ""
  164. #: editor/animation_editor.cpp
  165. msgid "Change Anim Loop"
  166. msgstr ""
  167. #: editor/animation_editor.cpp
  168. msgid "Anim Create Typed Value Key"
  169. msgstr ""
  170. #: editor/animation_editor.cpp
  171. msgid "Anim Insert"
  172. msgstr ""
  173. #: editor/animation_editor.cpp
  174. msgid "Anim Scale Keys"
  175. msgstr ""
  176. #: editor/animation_editor.cpp
  177. msgid "Anim Add Call Track"
  178. msgstr ""
  179. #: editor/animation_editor.cpp
  180. msgid "Animation zoom."
  181. msgstr ""
  182. #: editor/animation_editor.cpp
  183. msgid "Length (s):"
  184. msgstr ""
  185. #: editor/animation_editor.cpp
  186. msgid "Animation length (in seconds)."
  187. msgstr ""
  188. #: editor/animation_editor.cpp
  189. msgid "Step (s):"
  190. msgstr ""
  191. #: editor/animation_editor.cpp
  192. msgid "Cursor step snap (in seconds)."
  193. msgstr ""
  194. #: editor/animation_editor.cpp
  195. msgid "Enable/Disable looping in animation."
  196. msgstr ""
  197. #: editor/animation_editor.cpp
  198. msgid "Add new tracks."
  199. msgstr ""
  200. #: editor/animation_editor.cpp
  201. msgid "Move current track up."
  202. msgstr ""
  203. #: editor/animation_editor.cpp
  204. msgid "Move current track down."
  205. msgstr ""
  206. #: editor/animation_editor.cpp
  207. msgid "Remove selected track."
  208. msgstr ""
  209. #: editor/animation_editor.cpp
  210. msgid "Track tools"
  211. msgstr ""
  212. #: editor/animation_editor.cpp
  213. msgid "Enable editing of individual keys by clicking them."
  214. msgstr ""
  215. #: editor/animation_editor.cpp
  216. msgid "Anim. Optimizer"
  217. msgstr ""
  218. #: editor/animation_editor.cpp
  219. msgid "Max. Linear Error:"
  220. msgstr ""
  221. #: editor/animation_editor.cpp
  222. msgid "Max. Angular Error:"
  223. msgstr ""
  224. #: editor/animation_editor.cpp
  225. msgid "Max Optimizable Angle:"
  226. msgstr ""
  227. #: editor/animation_editor.cpp
  228. msgid "Optimize"
  229. msgstr ""
  230. #: editor/animation_editor.cpp
  231. msgid "Select an AnimationPlayer from the Scene Tree to edit animations."
  232. msgstr ""
  233. #: editor/animation_editor.cpp
  234. msgid "Key"
  235. msgstr ""
  236. #: editor/animation_editor.cpp
  237. msgid "Transition"
  238. msgstr ""
  239. #: editor/animation_editor.cpp
  240. msgid "Scale Ratio:"
  241. msgstr ""
  242. #: editor/animation_editor.cpp
  243. msgid "Call Functions in Which Node?"
  244. msgstr ""
  245. #: editor/animation_editor.cpp
  246. msgid "Remove invalid keys"
  247. msgstr ""
  248. #: editor/animation_editor.cpp
  249. msgid "Remove unresolved and empty tracks"
  250. msgstr ""
  251. #: editor/animation_editor.cpp
  252. msgid "Clean-up all animations"
  253. msgstr ""
  254. #: editor/animation_editor.cpp
  255. msgid "Clean-Up Animation(s) (NO UNDO!)"
  256. msgstr ""
  257. #: editor/animation_editor.cpp
  258. msgid "Clean-Up"
  259. msgstr ""
  260. #: editor/array_property_edit.cpp
  261. msgid "Resize Array"
  262. msgstr ""
  263. #: editor/array_property_edit.cpp
  264. msgid "Change Array Value Type"
  265. msgstr ""
  266. #: editor/array_property_edit.cpp
  267. msgid "Change Array Value"
  268. msgstr ""
  269. #: editor/asset_library_editor_plugin.cpp
  270. msgid "Free"
  271. msgstr ""
  272. #: editor/asset_library_editor_plugin.cpp editor/editor_plugin_settings.cpp
  273. msgid "Version:"
  274. msgstr ""
  275. #: editor/asset_library_editor_plugin.cpp
  276. msgid "Contents:"
  277. msgstr ""
  278. #: editor/asset_library_editor_plugin.cpp
  279. msgid "View Files"
  280. msgstr ""
  281. #: editor/asset_library_editor_plugin.cpp editor/create_dialog.cpp
  282. #: editor/editor_help.cpp editor/property_selector.cpp
  283. #: editor/script_editor_debugger.cpp
  284. msgid "Description:"
  285. msgstr ""
  286. #: editor/asset_library_editor_plugin.cpp editor/project_manager.cpp
  287. msgid "Install"
  288. msgstr ""
  289. #: editor/asset_library_editor_plugin.cpp editor/call_dialog.cpp
  290. #: editor/connections_dialog.cpp editor/export_template_manager.cpp
  291. #: editor/plugins/animation_player_editor_plugin.cpp
  292. #: editor/plugins/canvas_item_editor_plugin.cpp
  293. #: editor/plugins/resource_preloader_editor_plugin.cpp
  294. #: editor/plugins/sample_library_editor_plugin.cpp
  295. #: editor/plugins/script_editor_plugin.cpp
  296. #: editor/plugins/sprite_frames_editor_plugin.cpp editor/project_settings.cpp
  297. #: editor/property_editor.cpp editor/run_settings_dialog.cpp
  298. #: editor/settings_config_dialog.cpp
  299. #: modules/visual_script/visual_script_editor.cpp
  300. msgid "Close"
  301. msgstr ""
  302. #: editor/asset_library_editor_plugin.cpp
  303. msgid "Can't resolve hostname:"
  304. msgstr ""
  305. #: editor/asset_library_editor_plugin.cpp
  306. msgid "Can't resolve."
  307. msgstr ""
  308. #: editor/asset_library_editor_plugin.cpp
  309. msgid "Connection error, please try again."
  310. msgstr ""
  311. #: editor/asset_library_editor_plugin.cpp
  312. msgid "Can't connect."
  313. msgstr ""
  314. #: editor/asset_library_editor_plugin.cpp
  315. msgid "Can't connect to host:"
  316. msgstr ""
  317. #: editor/asset_library_editor_plugin.cpp
  318. msgid "No response from host:"
  319. msgstr ""
  320. #: editor/asset_library_editor_plugin.cpp
  321. msgid "No response."
  322. msgstr ""
  323. #: editor/asset_library_editor_plugin.cpp
  324. msgid "Request failed, return code:"
  325. msgstr ""
  326. #: editor/asset_library_editor_plugin.cpp
  327. msgid "Req. Failed."
  328. msgstr ""
  329. #: editor/asset_library_editor_plugin.cpp
  330. msgid "Request failed, too many redirects"
  331. msgstr ""
  332. #: editor/asset_library_editor_plugin.cpp
  333. msgid "Redirect Loop."
  334. msgstr ""
  335. #: editor/asset_library_editor_plugin.cpp
  336. msgid "Failed:"
  337. msgstr ""
  338. #: editor/asset_library_editor_plugin.cpp
  339. msgid "Bad download hash, assuming file has been tampered with."
  340. msgstr ""
  341. #: editor/asset_library_editor_plugin.cpp
  342. msgid "Expected:"
  343. msgstr ""
  344. #: editor/asset_library_editor_plugin.cpp
  345. msgid "Got:"
  346. msgstr ""
  347. #: editor/asset_library_editor_plugin.cpp
  348. msgid "Failed sha256 hash check"
  349. msgstr ""
  350. #: editor/asset_library_editor_plugin.cpp
  351. msgid "Asset Download Error:"
  352. msgstr ""
  353. #: editor/asset_library_editor_plugin.cpp
  354. msgid "Success!"
  355. msgstr ""
  356. #: editor/asset_library_editor_plugin.cpp
  357. msgid "Fetching:"
  358. msgstr ""
  359. #: editor/asset_library_editor_plugin.cpp
  360. msgid "Resolving.."
  361. msgstr ""
  362. #: editor/asset_library_editor_plugin.cpp
  363. msgid "Connecting.."
  364. msgstr ""
  365. #: editor/asset_library_editor_plugin.cpp
  366. msgid "Requesting.."
  367. msgstr ""
  368. #: editor/asset_library_editor_plugin.cpp
  369. msgid "Error making request"
  370. msgstr ""
  371. #: editor/asset_library_editor_plugin.cpp
  372. msgid "Idle"
  373. msgstr ""
  374. #: editor/asset_library_editor_plugin.cpp
  375. msgid "Retry"
  376. msgstr ""
  377. #: editor/asset_library_editor_plugin.cpp
  378. msgid "Download Error"
  379. msgstr ""
  380. #: editor/asset_library_editor_plugin.cpp
  381. msgid "Download for this asset is already in progress!"
  382. msgstr ""
  383. #: editor/asset_library_editor_plugin.cpp
  384. msgid "first"
  385. msgstr ""
  386. #: editor/asset_library_editor_plugin.cpp
  387. msgid "prev"
  388. msgstr ""
  389. #: editor/asset_library_editor_plugin.cpp
  390. msgid "next"
  391. msgstr ""
  392. #: editor/asset_library_editor_plugin.cpp
  393. msgid "last"
  394. msgstr ""
  395. #: editor/asset_library_editor_plugin.cpp
  396. msgid "All"
  397. msgstr ""
  398. #: editor/asset_library_editor_plugin.cpp editor/create_dialog.cpp
  399. #: editor/editor_help.cpp editor/editor_node.cpp
  400. #: editor/plugins/script_editor_plugin.cpp editor/property_selector.cpp
  401. #: editor/quick_open.cpp editor/settings_config_dialog.cpp
  402. msgid "Search:"
  403. msgstr ""
  404. #: editor/asset_library_editor_plugin.cpp editor/code_editor.cpp
  405. #: editor/editor_help.cpp editor/plugins/script_editor_plugin.cpp
  406. #: editor/plugins/script_text_editor.cpp
  407. #: editor/plugins/shader_editor_plugin.cpp editor/project_settings.cpp
  408. msgid "Search"
  409. msgstr ""
  410. #: editor/asset_library_editor_plugin.cpp editor/editor_node.cpp
  411. #: editor/io_plugins/editor_bitmask_import_plugin.cpp
  412. #: editor/io_plugins/editor_font_import_plugin.cpp
  413. #: editor/io_plugins/editor_mesh_import_plugin.cpp
  414. #: editor/io_plugins/editor_sample_import_plugin.cpp
  415. #: editor/io_plugins/editor_scene_import_plugin.cpp
  416. #: editor/io_plugins/editor_texture_import_plugin.cpp
  417. #: editor/io_plugins/editor_translation_import_plugin.cpp
  418. #: editor/project_manager.cpp
  419. msgid "Import"
  420. msgstr ""
  421. #: editor/asset_library_editor_plugin.cpp editor/project_settings.cpp
  422. msgid "Plugins"
  423. msgstr ""
  424. #: editor/asset_library_editor_plugin.cpp
  425. msgid "Sort:"
  426. msgstr ""
  427. #: editor/asset_library_editor_plugin.cpp
  428. msgid "Reverse"
  429. msgstr ""
  430. #: editor/asset_library_editor_plugin.cpp editor/project_settings.cpp
  431. msgid "Category:"
  432. msgstr ""
  433. #: editor/asset_library_editor_plugin.cpp
  434. msgid "Site:"
  435. msgstr ""
  436. #: editor/asset_library_editor_plugin.cpp
  437. msgid "Support.."
  438. msgstr ""
  439. #: editor/asset_library_editor_plugin.cpp
  440. msgid "Official"
  441. msgstr ""
  442. #: editor/asset_library_editor_plugin.cpp
  443. msgid "Community"
  444. msgstr ""
  445. #: editor/asset_library_editor_plugin.cpp
  446. msgid "Testing"
  447. msgstr ""
  448. #: editor/asset_library_editor_plugin.cpp
  449. msgid "Assets ZIP File"
  450. msgstr ""
  451. #: editor/call_dialog.cpp
  452. msgid "Method List For '%s':"
  453. msgstr ""
  454. #: editor/call_dialog.cpp modules/visual_script/visual_script_editor.cpp
  455. msgid "Call"
  456. msgstr ""
  457. #: editor/call_dialog.cpp
  458. msgid "Method List:"
  459. msgstr ""
  460. #: editor/call_dialog.cpp
  461. msgid "Arguments:"
  462. msgstr ""
  463. #: editor/call_dialog.cpp
  464. msgid "Return:"
  465. msgstr ""
  466. #: editor/code_editor.cpp
  467. msgid "Go to Line"
  468. msgstr ""
  469. #: editor/code_editor.cpp
  470. msgid "Line Number:"
  471. msgstr ""
  472. #: editor/code_editor.cpp
  473. msgid "No Matches"
  474. msgstr ""
  475. #: editor/code_editor.cpp
  476. msgid "Replaced %d occurrence(s)."
  477. msgstr ""
  478. #: editor/code_editor.cpp
  479. msgid "Replace"
  480. msgstr ""
  481. #: editor/code_editor.cpp
  482. msgid "Replace All"
  483. msgstr ""
  484. #: editor/code_editor.cpp
  485. msgid "Match Case"
  486. msgstr ""
  487. #: editor/code_editor.cpp
  488. msgid "Whole Words"
  489. msgstr ""
  490. #: editor/code_editor.cpp
  491. msgid "Selection Only"
  492. msgstr ""
  493. #: editor/code_editor.cpp editor/editor_help.cpp
  494. msgid "Find"
  495. msgstr ""
  496. #: editor/code_editor.cpp
  497. msgid "Next"
  498. msgstr ""
  499. #: editor/code_editor.cpp
  500. msgid "Not found!"
  501. msgstr ""
  502. #: editor/code_editor.cpp
  503. msgid "Replace By"
  504. msgstr ""
  505. #: editor/code_editor.cpp
  506. msgid "Case Sensitive"
  507. msgstr ""
  508. #: editor/code_editor.cpp
  509. msgid "Backwards"
  510. msgstr ""
  511. #: editor/code_editor.cpp
  512. msgid "Prompt On Replace"
  513. msgstr ""
  514. #: editor/code_editor.cpp
  515. msgid "Skip"
  516. msgstr ""
  517. #: editor/code_editor.cpp editor/plugins/canvas_item_editor_plugin.cpp
  518. msgid "Zoom In"
  519. msgstr ""
  520. #: editor/code_editor.cpp editor/plugins/canvas_item_editor_plugin.cpp
  521. msgid "Zoom Out"
  522. msgstr ""
  523. #: editor/code_editor.cpp
  524. msgid "Reset Zoom"
  525. msgstr ""
  526. #: editor/code_editor.cpp editor/script_editor_debugger.cpp
  527. msgid "Line:"
  528. msgstr ""
  529. #: editor/code_editor.cpp
  530. msgid "Col:"
  531. msgstr ""
  532. #: editor/connections_dialog.cpp
  533. msgid "Method in target Node must be specified!"
  534. msgstr ""
  535. #: editor/connections_dialog.cpp
  536. msgid ""
  537. "Target method not found! Specify a valid method or attach a script to target "
  538. "Node."
  539. msgstr ""
  540. #: editor/connections_dialog.cpp
  541. msgid "Connect To Node:"
  542. msgstr ""
  543. #: editor/connections_dialog.cpp editor/editor_autoload_settings.cpp
  544. #: editor/groups_editor.cpp editor/plugins/item_list_editor_plugin.cpp
  545. #: editor/plugins/theme_editor_plugin.cpp editor/project_settings.cpp
  546. msgid "Add"
  547. msgstr ""
  548. #: editor/connections_dialog.cpp editor/dependency_editor.cpp
  549. #: editor/plugins/animation_tree_editor_plugin.cpp
  550. #: editor/plugins/theme_editor_plugin.cpp editor/project_manager.cpp
  551. msgid "Remove"
  552. msgstr ""
  553. #: editor/connections_dialog.cpp
  554. msgid "Add Extra Call Argument:"
  555. msgstr ""
  556. #: editor/connections_dialog.cpp
  557. msgid "Extra Call Arguments:"
  558. msgstr ""
  559. #: editor/connections_dialog.cpp
  560. msgid "Path to Node:"
  561. msgstr ""
  562. #: editor/connections_dialog.cpp
  563. msgid "Make Function"
  564. msgstr ""
  565. #: editor/connections_dialog.cpp
  566. msgid "Deferred"
  567. msgstr ""
  568. #: editor/connections_dialog.cpp
  569. msgid "Oneshot"
  570. msgstr ""
  571. #: editor/connections_dialog.cpp
  572. msgid "Connect"
  573. msgstr ""
  574. #: editor/connections_dialog.cpp
  575. msgid "Connect '%s' to '%s'"
  576. msgstr ""
  577. #: editor/connections_dialog.cpp
  578. msgid "Connecting Signal:"
  579. msgstr ""
  580. #: editor/connections_dialog.cpp
  581. msgid "Create Subscription"
  582. msgstr ""
  583. #: editor/connections_dialog.cpp
  584. msgid "Connect.."
  585. msgstr ""
  586. #: editor/connections_dialog.cpp
  587. #: editor/plugins/animation_tree_editor_plugin.cpp
  588. msgid "Disconnect"
  589. msgstr ""
  590. #: editor/connections_dialog.cpp editor/node_dock.cpp
  591. msgid "Signals"
  592. msgstr ""
  593. #: editor/create_dialog.cpp
  594. msgid "Create New"
  595. msgstr ""
  596. #: editor/create_dialog.cpp editor/editor_file_dialog.cpp
  597. #: editor/filesystem_dock.cpp
  598. msgid "Favorites:"
  599. msgstr ""
  600. #: editor/create_dialog.cpp editor/editor_file_dialog.cpp
  601. msgid "Recent:"
  602. msgstr ""
  603. #: editor/create_dialog.cpp editor/editor_help.cpp
  604. #: editor/plugins/script_editor_plugin.cpp editor/property_selector.cpp
  605. #: editor/quick_open.cpp
  606. msgid "Matches:"
  607. msgstr ""
  608. #: editor/dependency_editor.cpp
  609. msgid "Search Replacement For:"
  610. msgstr ""
  611. #: editor/dependency_editor.cpp
  612. msgid "Dependencies For:"
  613. msgstr ""
  614. #: editor/dependency_editor.cpp
  615. msgid ""
  616. "Scene '%s' is currently being edited.\n"
  617. "Changes will not take effect unless reloaded."
  618. msgstr ""
  619. #: editor/dependency_editor.cpp
  620. msgid ""
  621. "Resource '%s' is in use.\n"
  622. "Changes will take effect when reloaded."
  623. msgstr ""
  624. #: editor/dependency_editor.cpp
  625. msgid "Dependencies"
  626. msgstr ""
  627. #: editor/dependency_editor.cpp
  628. msgid "Resource"
  629. msgstr ""
  630. #: editor/dependency_editor.cpp editor/editor_autoload_settings.cpp
  631. #: editor/project_manager.cpp editor/project_settings.cpp
  632. msgid "Path"
  633. msgstr ""
  634. #: editor/dependency_editor.cpp
  635. msgid "Dependencies:"
  636. msgstr ""
  637. #: editor/dependency_editor.cpp
  638. msgid "Fix Broken"
  639. msgstr ""
  640. #: editor/dependency_editor.cpp
  641. msgid "Dependency Editor"
  642. msgstr ""
  643. #: editor/dependency_editor.cpp
  644. msgid "Search Replacement Resource:"
  645. msgstr ""
  646. #: editor/dependency_editor.cpp
  647. msgid "Owners Of:"
  648. msgstr ""
  649. #: editor/dependency_editor.cpp
  650. msgid ""
  651. "The files being removed are required by other resources in order for them to "
  652. "work.\n"
  653. "Remove them anyway? (no undo)"
  654. msgstr ""
  655. #: editor/dependency_editor.cpp
  656. msgid "Remove selected files from the project? (no undo)"
  657. msgstr ""
  658. #: editor/dependency_editor.cpp
  659. msgid "Error loading:"
  660. msgstr ""
  661. #: editor/dependency_editor.cpp
  662. msgid "Scene failed to load due to missing dependencies:"
  663. msgstr ""
  664. #: editor/dependency_editor.cpp editor/editor_node.cpp
  665. msgid "Open Anyway"
  666. msgstr ""
  667. #: editor/dependency_editor.cpp
  668. msgid "Which action should be taken?"
  669. msgstr ""
  670. #: editor/dependency_editor.cpp
  671. msgid "Fix Dependencies"
  672. msgstr ""
  673. #: editor/dependency_editor.cpp
  674. msgid "Errors loading!"
  675. msgstr ""
  676. #: editor/dependency_editor.cpp
  677. msgid "Permanently delete %d item(s)? (No undo!)"
  678. msgstr ""
  679. #: editor/dependency_editor.cpp
  680. msgid "Owns"
  681. msgstr ""
  682. #: editor/dependency_editor.cpp
  683. msgid "Resources Without Explicit Ownership:"
  684. msgstr ""
  685. #: editor/dependency_editor.cpp editor/editor_node.cpp
  686. msgid "Orphan Resource Explorer"
  687. msgstr ""
  688. #: editor/dependency_editor.cpp
  689. msgid "Delete selected files?"
  690. msgstr ""
  691. #: editor/dependency_editor.cpp editor/editor_node.cpp
  692. #: editor/filesystem_dock.cpp editor/plugins/item_list_editor_plugin.cpp
  693. #: editor/project_export.cpp editor/scene_tree_dock.cpp
  694. msgid "Delete"
  695. msgstr ""
  696. #: editor/editor_audio_buses.cpp
  697. msgid "Save Audio Bus Layout As.."
  698. msgstr ""
  699. #: editor/editor_audio_buses.cpp
  700. msgid "Location for New Layout.."
  701. msgstr ""
  702. #: editor/editor_audio_buses.cpp
  703. msgid "Open Audio Bus Layout"
  704. msgstr ""
  705. #: editor/editor_audio_buses.cpp
  706. msgid "Add Bus"
  707. msgstr ""
  708. #: editor/editor_audio_buses.cpp editor/property_editor.cpp
  709. #: editor/script_create_dialog.cpp
  710. msgid "Load"
  711. msgstr ""
  712. #: editor/editor_audio_buses.cpp
  713. #: editor/plugins/animation_player_editor_plugin.cpp
  714. msgid "Save As"
  715. msgstr ""
  716. #: editor/editor_audio_buses.cpp editor/editor_node.cpp editor/import_dock.cpp
  717. msgid "Default"
  718. msgstr ""
  719. #: editor/editor_autoload_settings.cpp
  720. msgid "Invalid name."
  721. msgstr ""
  722. #: editor/editor_autoload_settings.cpp
  723. msgid "Valid characters:"
  724. msgstr ""
  725. #: editor/editor_autoload_settings.cpp
  726. msgid "Invalid name. Must not collide with an existing engine class name."
  727. msgstr ""
  728. #: editor/editor_autoload_settings.cpp
  729. msgid "Invalid name. Must not collide with an existing buit-in type name."
  730. msgstr ""
  731. #: editor/editor_autoload_settings.cpp
  732. msgid "Invalid name. Must not collide with an existing global constant name."
  733. msgstr ""
  734. #: editor/editor_autoload_settings.cpp
  735. msgid "Invalid Path."
  736. msgstr ""
  737. #: editor/editor_autoload_settings.cpp
  738. msgid "File does not exist."
  739. msgstr ""
  740. #: editor/editor_autoload_settings.cpp
  741. msgid "Not in resource path."
  742. msgstr ""
  743. #: editor/editor_autoload_settings.cpp
  744. msgid "Add AutoLoad"
  745. msgstr ""
  746. #: editor/editor_autoload_settings.cpp
  747. msgid "Autoload '%s' already exists!"
  748. msgstr ""
  749. #: editor/editor_autoload_settings.cpp
  750. msgid "Rename Autoload"
  751. msgstr ""
  752. #: editor/editor_autoload_settings.cpp
  753. msgid "Toggle AutoLoad Globals"
  754. msgstr ""
  755. #: editor/editor_autoload_settings.cpp
  756. msgid "Move Autoload"
  757. msgstr ""
  758. #: editor/editor_autoload_settings.cpp
  759. msgid "Remove Autoload"
  760. msgstr ""
  761. #: editor/editor_autoload_settings.cpp
  762. msgid "Enable"
  763. msgstr ""
  764. #: editor/editor_autoload_settings.cpp
  765. msgid "Rearrange Autoloads"
  766. msgstr ""
  767. #: editor/editor_autoload_settings.cpp editor/editor_file_dialog.cpp
  768. #: editor/io_plugins/editor_font_import_plugin.cpp
  769. #: editor/script_create_dialog.cpp scene/gui/file_dialog.cpp
  770. msgid "Path:"
  771. msgstr ""
  772. #: editor/editor_autoload_settings.cpp
  773. msgid "Node Name:"
  774. msgstr ""
  775. #: editor/editor_autoload_settings.cpp
  776. #: editor/io_plugins/editor_scene_import_plugin.cpp
  777. #: editor/plugins/sample_library_editor_plugin.cpp editor/project_manager.cpp
  778. msgid "Name"
  779. msgstr ""
  780. #: editor/editor_autoload_settings.cpp
  781. msgid "Singleton"
  782. msgstr ""
  783. #: editor/editor_autoload_settings.cpp
  784. msgid "List:"
  785. msgstr ""
  786. #: editor/editor_data.cpp
  787. msgid "Updating Scene"
  788. msgstr ""
  789. #: editor/editor_data.cpp
  790. msgid "Storing local changes.."
  791. msgstr ""
  792. #: editor/editor_data.cpp
  793. msgid "Updating scene.."
  794. msgstr ""
  795. #: editor/editor_dir_dialog.cpp
  796. msgid "Choose a Directory"
  797. msgstr ""
  798. #: editor/editor_dir_dialog.cpp editor/editor_file_dialog.cpp
  799. #: scene/gui/file_dialog.cpp
  800. msgid "Create Folder"
  801. msgstr ""
  802. #: editor/editor_dir_dialog.cpp editor/editor_file_dialog.cpp
  803. #: editor/editor_plugin_settings.cpp editor/plugins/theme_editor_plugin.cpp
  804. #: editor/project_export.cpp scene/gui/file_dialog.cpp
  805. msgid "Name:"
  806. msgstr ""
  807. #: editor/editor_dir_dialog.cpp editor/editor_file_dialog.cpp
  808. #: scene/gui/file_dialog.cpp
  809. msgid "Could not create folder."
  810. msgstr ""
  811. #: editor/editor_dir_dialog.cpp
  812. msgid "Choose"
  813. msgstr ""
  814. #: editor/editor_export.cpp
  815. msgid "Storing File:"
  816. msgstr ""
  817. #: editor/editor_export.cpp
  818. msgid "Packing"
  819. msgstr ""
  820. #: editor/editor_export.cpp platform/javascript/export/export.cpp
  821. msgid "Template file not found:\n"
  822. msgstr ""
  823. #: editor/editor_export.cpp
  824. msgid "Added:"
  825. msgstr ""
  826. #: editor/editor_export.cpp
  827. msgid "Removed:"
  828. msgstr ""
  829. #: editor/editor_export.cpp
  830. msgid "Error saving atlas:"
  831. msgstr ""
  832. #: editor/editor_export.cpp
  833. msgid "Could not save atlas subtexture:"
  834. msgstr ""
  835. #: editor/editor_export.cpp
  836. msgid "Exporting for %s"
  837. msgstr ""
  838. #: editor/editor_export.cpp
  839. msgid "Setting Up.."
  840. msgstr ""
  841. #: editor/editor_file_dialog.cpp scene/gui/file_dialog.cpp
  842. msgid "File Exists, Overwrite?"
  843. msgstr ""
  844. #: editor/editor_file_dialog.cpp scene/gui/file_dialog.cpp
  845. msgid "All Recognized"
  846. msgstr ""
  847. #: editor/editor_file_dialog.cpp scene/gui/file_dialog.cpp
  848. msgid "All Files (*)"
  849. msgstr ""
  850. #: editor/editor_file_dialog.cpp editor/editor_help.cpp editor/editor_node.cpp
  851. #: editor/filesystem_dock.cpp editor/plugins/script_editor_plugin.cpp
  852. #: editor/property_selector.cpp editor/quick_open.cpp scene/gui/file_dialog.cpp
  853. msgid "Open"
  854. msgstr ""
  855. #: editor/editor_file_dialog.cpp editor/editor_node.cpp
  856. #: editor/plugins/animation_player_editor_plugin.cpp
  857. #: editor/plugins/script_editor_plugin.cpp scene/gui/file_dialog.cpp
  858. msgid "Save"
  859. msgstr ""
  860. #: editor/editor_file_dialog.cpp scene/gui/file_dialog.cpp
  861. msgid "Save a File"
  862. msgstr ""
  863. #: editor/editor_file_dialog.cpp
  864. msgid "Go Back"
  865. msgstr ""
  866. #: editor/editor_file_dialog.cpp
  867. msgid "Go Forward"
  868. msgstr ""
  869. #: editor/editor_file_dialog.cpp
  870. msgid "Go Up"
  871. msgstr ""
  872. #: editor/editor_file_dialog.cpp
  873. msgid "Refresh"
  874. msgstr ""
  875. #: editor/editor_file_dialog.cpp
  876. msgid "Toggle Hidden Files"
  877. msgstr ""
  878. #: editor/editor_file_dialog.cpp
  879. msgid "Toggle Favorite"
  880. msgstr ""
  881. #: editor/editor_file_dialog.cpp
  882. msgid "Toggle Mode"
  883. msgstr ""
  884. #: editor/editor_file_dialog.cpp
  885. msgid "Focus Path"
  886. msgstr ""
  887. #: editor/editor_file_dialog.cpp
  888. msgid "Move Favorite Up"
  889. msgstr ""
  890. #: editor/editor_file_dialog.cpp
  891. msgid "Move Favorite Down"
  892. msgstr ""
  893. #: editor/editor_file_dialog.cpp scene/gui/file_dialog.cpp
  894. msgid "Directories & Files:"
  895. msgstr ""
  896. #: editor/editor_file_dialog.cpp
  897. msgid "Preview:"
  898. msgstr ""
  899. #: editor/editor_file_dialog.cpp editor/script_editor_debugger.cpp
  900. #: scene/gui/file_dialog.cpp
  901. msgid "File:"
  902. msgstr ""
  903. #: editor/editor_file_dialog.cpp scene/gui/file_dialog.cpp
  904. msgid "Filter:"
  905. msgstr ""
  906. #: editor/editor_file_dialog.cpp scene/gui/file_dialog.cpp
  907. msgid "Must use a valid extension."
  908. msgstr ""
  909. #: editor/editor_file_system.cpp
  910. msgid "ScanSources"
  911. msgstr ""
  912. #: editor/editor_file_system.cpp
  913. msgid "(Re)Importing Assets"
  914. msgstr ""
  915. #: editor/editor_help.cpp editor/plugins/script_editor_plugin.cpp
  916. msgid "Search Help"
  917. msgstr ""
  918. #: editor/editor_help.cpp
  919. msgid "Class List:"
  920. msgstr ""
  921. #: editor/editor_help.cpp
  922. msgid "Search Classes"
  923. msgstr ""
  924. #: editor/editor_help.cpp editor/property_editor.cpp
  925. msgid "Class:"
  926. msgstr ""
  927. #: editor/editor_help.cpp editor/scene_tree_editor.cpp
  928. #: editor/script_create_dialog.cpp
  929. msgid "Inherits:"
  930. msgstr ""
  931. #: editor/editor_help.cpp
  932. msgid "Inherited by:"
  933. msgstr ""
  934. #: editor/editor_help.cpp
  935. msgid "Brief Description:"
  936. msgstr ""
  937. #: editor/editor_help.cpp modules/visual_script/visual_script_editor.cpp
  938. msgid "Members:"
  939. msgstr ""
  940. #: editor/editor_help.cpp
  941. msgid "Public Methods:"
  942. msgstr ""
  943. #: editor/editor_help.cpp
  944. msgid "GUI Theme Items:"
  945. msgstr ""
  946. #: editor/editor_help.cpp modules/visual_script/visual_script_editor.cpp
  947. msgid "Signals:"
  948. msgstr ""
  949. #: editor/editor_help.cpp
  950. msgid "Constants:"
  951. msgstr ""
  952. #: editor/editor_help.cpp
  953. msgid "Property Description:"
  954. msgstr ""
  955. #: editor/editor_help.cpp
  956. msgid "Method Description:"
  957. msgstr ""
  958. #: editor/editor_help.cpp
  959. msgid "Search Text"
  960. msgstr ""
  961. #: editor/editor_log.cpp
  962. msgid " Output:"
  963. msgstr ""
  964. #: editor/editor_log.cpp editor/plugins/animation_tree_editor_plugin.cpp
  965. #: editor/plugins/rich_text_editor_plugin.cpp editor/property_editor.cpp
  966. #: editor/script_editor_debugger.cpp scene/gui/line_edit.cpp
  967. #: scene/gui/text_edit.cpp
  968. msgid "Clear"
  969. msgstr ""
  970. #: editor/editor_node.cpp editor/plugins/animation_player_editor_plugin.cpp
  971. #: editor/resources_dock.cpp
  972. msgid "Error saving resource!"
  973. msgstr ""
  974. #: editor/editor_node.cpp editor/plugins/animation_player_editor_plugin.cpp
  975. #: editor/resources_dock.cpp
  976. msgid "Save Resource As.."
  977. msgstr ""
  978. #: editor/editor_node.cpp editor/export_template_manager.cpp
  979. #: editor/plugins/canvas_item_editor_plugin.cpp editor/scene_tree_dock.cpp
  980. msgid "I see.."
  981. msgstr ""
  982. #: editor/editor_node.cpp
  983. msgid "Can't open file for writing:"
  984. msgstr ""
  985. #: editor/editor_node.cpp
  986. msgid "Requested file format unknown:"
  987. msgstr ""
  988. #: editor/editor_node.cpp
  989. msgid "Error while saving."
  990. msgstr ""
  991. #: editor/editor_node.cpp
  992. msgid "Saving Scene"
  993. msgstr ""
  994. #: editor/editor_node.cpp
  995. msgid "Analyzing"
  996. msgstr ""
  997. #: editor/editor_node.cpp
  998. msgid "Creating Thumbnail"
  999. msgstr ""
  1000. #: editor/editor_node.cpp
  1001. msgid ""
  1002. "Couldn't save scene. Likely dependencies (instances) couldn't be satisfied."
  1003. msgstr ""
  1004. #: editor/editor_node.cpp
  1005. msgid "Failed to load resource."
  1006. msgstr ""
  1007. #: editor/editor_node.cpp
  1008. msgid "Can't load MeshLibrary for merging!"
  1009. msgstr ""
  1010. #: editor/editor_node.cpp
  1011. msgid "Error saving MeshLibrary!"
  1012. msgstr ""
  1013. #: editor/editor_node.cpp
  1014. msgid "Can't load TileSet for merging!"
  1015. msgstr ""
  1016. #: editor/editor_node.cpp
  1017. msgid "Error saving TileSet!"
  1018. msgstr ""
  1019. #: editor/editor_node.cpp
  1020. msgid "Error trying to save layout!"
  1021. msgstr ""
  1022. #: editor/editor_node.cpp
  1023. msgid "Default editor layout overridden."
  1024. msgstr ""
  1025. #: editor/editor_node.cpp
  1026. msgid "Layout name not found!"
  1027. msgstr ""
  1028. #: editor/editor_node.cpp
  1029. msgid "Restored default layout to base settings."
  1030. msgstr ""
  1031. #: editor/editor_node.cpp
  1032. msgid "Copy Params"
  1033. msgstr ""
  1034. #: editor/editor_node.cpp
  1035. msgid "Paste Params"
  1036. msgstr ""
  1037. #: editor/editor_node.cpp editor/plugins/resource_preloader_editor_plugin.cpp
  1038. msgid "Paste Resource"
  1039. msgstr ""
  1040. #: editor/editor_node.cpp
  1041. msgid "Copy Resource"
  1042. msgstr ""
  1043. #: editor/editor_node.cpp
  1044. msgid "Make Built-In"
  1045. msgstr ""
  1046. #: editor/editor_node.cpp
  1047. msgid "Make Sub-Resources Unique"
  1048. msgstr ""
  1049. #: editor/editor_node.cpp
  1050. msgid "Open in Help"
  1051. msgstr ""
  1052. #: editor/editor_node.cpp
  1053. msgid "There is no defined scene to run."
  1054. msgstr ""
  1055. #: editor/editor_node.cpp
  1056. msgid ""
  1057. "No main scene has ever been defined, select one?\n"
  1058. "You can change it later in later in \"Project Settings\" under the "
  1059. "'application' category."
  1060. msgstr ""
  1061. #: editor/editor_node.cpp
  1062. msgid ""
  1063. "Selected scene '%s' does not exist, select a valid one?\n"
  1064. "You can change it later in \"Project Settings\" under the 'application' "
  1065. "category."
  1066. msgstr ""
  1067. #: editor/editor_node.cpp
  1068. msgid ""
  1069. "Selected scene '%s' is not a scene file, select a valid one?\n"
  1070. "You can change it later in \"Project Settings\" under the 'application' "
  1071. "category."
  1072. msgstr ""
  1073. #: editor/editor_node.cpp
  1074. msgid "Current scene was never saved, please save it prior to running."
  1075. msgstr ""
  1076. #: editor/editor_node.cpp
  1077. msgid "Could not start subprocess!"
  1078. msgstr ""
  1079. #: editor/editor_node.cpp
  1080. msgid "Open Scene"
  1081. msgstr ""
  1082. #: editor/editor_node.cpp
  1083. msgid "Open Base Scene"
  1084. msgstr ""
  1085. #: editor/editor_node.cpp
  1086. msgid "Quick Open Scene.."
  1087. msgstr ""
  1088. #: editor/editor_node.cpp
  1089. msgid "Quick Open Script.."
  1090. msgstr ""
  1091. #: editor/editor_node.cpp
  1092. msgid "Yes"
  1093. msgstr ""
  1094. #: editor/editor_node.cpp
  1095. msgid "Close scene? (Unsaved changes will be lost)"
  1096. msgstr ""
  1097. #: editor/editor_node.cpp
  1098. msgid "Save Scene As.."
  1099. msgstr ""
  1100. #: editor/editor_node.cpp
  1101. msgid "This scene has never been saved. Save before running?"
  1102. msgstr ""
  1103. #: editor/editor_node.cpp
  1104. msgid "Export Mesh Library"
  1105. msgstr ""
  1106. #: editor/editor_node.cpp
  1107. msgid "Export Tile Set"
  1108. msgstr ""
  1109. #: editor/editor_node.cpp
  1110. msgid "Quit"
  1111. msgstr ""
  1112. #: editor/editor_node.cpp
  1113. msgid "Exit the editor?"
  1114. msgstr ""
  1115. #: editor/editor_node.cpp
  1116. msgid "Current scene not saved. Open anyway?"
  1117. msgstr ""
  1118. #: editor/editor_node.cpp
  1119. msgid "Can't reload a scene that was never saved."
  1120. msgstr ""
  1121. #: editor/editor_node.cpp
  1122. msgid "Revert"
  1123. msgstr ""
  1124. #: editor/editor_node.cpp
  1125. msgid "This action cannot be undone. Revert anyway?"
  1126. msgstr ""
  1127. #: editor/editor_node.cpp
  1128. msgid "Quick Run Scene.."
  1129. msgstr ""
  1130. #: editor/editor_node.cpp
  1131. msgid ""
  1132. "Open Project Manager? \n"
  1133. "(Unsaved changes will be lost)"
  1134. msgstr ""
  1135. #: editor/editor_node.cpp
  1136. msgid "Pick a Main Scene"
  1137. msgstr ""
  1138. #: editor/editor_node.cpp
  1139. msgid ""
  1140. "Scene '%s' was automatically imported, so it can't be modified.\n"
  1141. "To make changes to it, a new inherited scene can be created."
  1142. msgstr ""
  1143. #: editor/editor_node.cpp editor/plugins/canvas_item_editor_plugin.cpp
  1144. #: editor/scene_tree_dock.cpp editor/script_create_dialog.cpp
  1145. msgid "Ugh"
  1146. msgstr ""
  1147. #: editor/editor_node.cpp
  1148. msgid ""
  1149. "Error loading scene, it must be inside the project path. Use 'Import' to "
  1150. "open the scene, then save it inside the project path."
  1151. msgstr ""
  1152. #: editor/editor_node.cpp
  1153. msgid "Error loading scene."
  1154. msgstr ""
  1155. #: editor/editor_node.cpp
  1156. msgid "Scene '%s' has broken dependencies:"
  1157. msgstr ""
  1158. #: editor/editor_node.cpp
  1159. msgid "Save Layout"
  1160. msgstr ""
  1161. #: editor/editor_node.cpp
  1162. msgid "Delete Layout"
  1163. msgstr ""
  1164. #: editor/editor_node.cpp
  1165. msgid "Switch Scene Tab"
  1166. msgstr ""
  1167. #: editor/editor_node.cpp
  1168. msgid "%d more file(s)"
  1169. msgstr ""
  1170. #: editor/editor_node.cpp
  1171. msgid "%d more file(s) or folder(s)"
  1172. msgstr ""
  1173. #: editor/editor_node.cpp editor/io_plugins/editor_scene_import_plugin.cpp
  1174. msgid "Scene"
  1175. msgstr ""
  1176. #: editor/editor_node.cpp
  1177. msgid "Go to previously opened scene."
  1178. msgstr ""
  1179. #: editor/editor_node.cpp
  1180. msgid "Next tab"
  1181. msgstr ""
  1182. #: editor/editor_node.cpp
  1183. msgid "Previous tab"
  1184. msgstr ""
  1185. #: editor/editor_node.cpp
  1186. msgid "Filter Files.."
  1187. msgstr ""
  1188. #: editor/editor_node.cpp
  1189. msgid "Operations with scene files."
  1190. msgstr ""
  1191. #: editor/editor_node.cpp
  1192. msgid "New Scene"
  1193. msgstr ""
  1194. #: editor/editor_node.cpp
  1195. msgid "New Inherited Scene.."
  1196. msgstr ""
  1197. #: editor/editor_node.cpp
  1198. msgid "Open Scene.."
  1199. msgstr ""
  1200. #: editor/editor_node.cpp
  1201. msgid "Save Scene"
  1202. msgstr ""
  1203. #: editor/editor_node.cpp
  1204. msgid "Save all Scenes"
  1205. msgstr ""
  1206. #: editor/editor_node.cpp
  1207. msgid "Close Scene"
  1208. msgstr ""
  1209. #: editor/editor_node.cpp
  1210. msgid "Close Goto Prev. Scene"
  1211. msgstr ""
  1212. #: editor/editor_node.cpp
  1213. msgid "Open Recent"
  1214. msgstr ""
  1215. #: editor/editor_node.cpp
  1216. msgid "Convert To.."
  1217. msgstr ""
  1218. #: editor/editor_node.cpp
  1219. msgid "MeshLibrary.."
  1220. msgstr ""
  1221. #: editor/editor_node.cpp
  1222. msgid "TileSet.."
  1223. msgstr ""
  1224. #: editor/editor_node.cpp editor/plugins/script_text_editor.cpp
  1225. #: editor/plugins/shader_editor_plugin.cpp scene/gui/line_edit.cpp
  1226. #: scene/gui/text_edit.cpp
  1227. msgid "Undo"
  1228. msgstr ""
  1229. #: editor/editor_node.cpp editor/plugins/script_text_editor.cpp
  1230. #: editor/plugins/shader_editor_plugin.cpp
  1231. msgid "Redo"
  1232. msgstr ""
  1233. #: editor/editor_node.cpp
  1234. msgid "Run Script"
  1235. msgstr ""
  1236. #: editor/editor_node.cpp
  1237. msgid "Project Settings"
  1238. msgstr ""
  1239. #: editor/editor_node.cpp
  1240. msgid "Revert Scene"
  1241. msgstr ""
  1242. #: editor/editor_node.cpp
  1243. msgid "Quit to Project List"
  1244. msgstr ""
  1245. #: editor/editor_node.cpp
  1246. msgid "Distraction Free Mode"
  1247. msgstr ""
  1248. #: editor/editor_node.cpp
  1249. msgid "Miscellaneous project or scene-wide tools."
  1250. msgstr ""
  1251. #: editor/editor_node.cpp
  1252. msgid "Tools"
  1253. msgstr ""
  1254. #: editor/editor_node.cpp
  1255. msgid "Export the project to many platforms."
  1256. msgstr ""
  1257. #: editor/editor_node.cpp editor/project_export.cpp
  1258. msgid "Export"
  1259. msgstr ""
  1260. #: editor/editor_node.cpp
  1261. msgid "Play the project."
  1262. msgstr ""
  1263. #: editor/editor_node.cpp editor/plugins/sample_library_editor_plugin.cpp
  1264. msgid "Play"
  1265. msgstr ""
  1266. #: editor/editor_node.cpp
  1267. msgid "Pause the scene"
  1268. msgstr ""
  1269. #: editor/editor_node.cpp
  1270. msgid "Pause Scene"
  1271. msgstr ""
  1272. #: editor/editor_node.cpp
  1273. msgid "Stop the scene."
  1274. msgstr ""
  1275. #: editor/editor_node.cpp editor/plugins/sample_library_editor_plugin.cpp
  1276. msgid "Stop"
  1277. msgstr ""
  1278. #: editor/editor_node.cpp
  1279. msgid "Play the edited scene."
  1280. msgstr ""
  1281. #: editor/editor_node.cpp
  1282. msgid "Play Scene"
  1283. msgstr ""
  1284. #: editor/editor_node.cpp
  1285. msgid "Play custom scene"
  1286. msgstr ""
  1287. #: editor/editor_node.cpp
  1288. msgid "Play Custom Scene"
  1289. msgstr ""
  1290. #: editor/editor_node.cpp
  1291. msgid "Debug options"
  1292. msgstr ""
  1293. #: editor/editor_node.cpp
  1294. msgid "Deploy with Remote Debug"
  1295. msgstr ""
  1296. #: editor/editor_node.cpp
  1297. msgid ""
  1298. "When exporting or deploying, the resulting executable will attempt to "
  1299. "connect to the IP of this computer in order to be debugged."
  1300. msgstr ""
  1301. #: editor/editor_node.cpp
  1302. msgid "Small Deploy with Network FS"
  1303. msgstr ""
  1304. #: editor/editor_node.cpp
  1305. msgid ""
  1306. "When this option is enabled, export or deploy will produce a minimal "
  1307. "executable.\n"
  1308. "The filesystem will be provided from the project by the editor over the "
  1309. "network.\n"
  1310. "On Android, deploy will use the USB cable for faster performance. This "
  1311. "option speeds up testing for games with a large footprint."
  1312. msgstr ""
  1313. #: editor/editor_node.cpp
  1314. msgid "Visible Collision Shapes"
  1315. msgstr ""
  1316. #: editor/editor_node.cpp
  1317. msgid ""
  1318. "Collision shapes and raycast nodes (for 2D and 3D) will be visible on the "
  1319. "running game if this option is turned on."
  1320. msgstr ""
  1321. #: editor/editor_node.cpp
  1322. msgid "Visible Navigation"
  1323. msgstr ""
  1324. #: editor/editor_node.cpp
  1325. msgid ""
  1326. "Navigation meshes and polygons will be visible on the running game if this "
  1327. "option is turned on."
  1328. msgstr ""
  1329. #: editor/editor_node.cpp
  1330. msgid "Sync Scene Changes"
  1331. msgstr ""
  1332. #: editor/editor_node.cpp
  1333. msgid ""
  1334. "When this option is turned on, any changes made to the scene in the editor "
  1335. "will be replicated in the running game.\n"
  1336. "When used remotely on a device, this is more efficient with network "
  1337. "filesystem."
  1338. msgstr ""
  1339. #: editor/editor_node.cpp
  1340. msgid "Sync Script Changes"
  1341. msgstr ""
  1342. #: editor/editor_node.cpp
  1343. msgid ""
  1344. "When this option is turned on, any script that is saved will be reloaded on "
  1345. "the running game.\n"
  1346. "When used remotely on a device, this is more efficient with network "
  1347. "filesystem."
  1348. msgstr ""
  1349. #: editor/editor_node.cpp editor/plugins/spatial_editor_plugin.cpp
  1350. msgid "Settings"
  1351. msgstr ""
  1352. #: editor/editor_node.cpp editor/settings_config_dialog.cpp
  1353. msgid "Editor Settings"
  1354. msgstr ""
  1355. #: editor/editor_node.cpp
  1356. msgid "Editor Layout"
  1357. msgstr ""
  1358. #: editor/editor_node.cpp
  1359. msgid "Toggle Fullscreen"
  1360. msgstr ""
  1361. #: editor/editor_node.cpp editor/project_export.cpp
  1362. msgid "Manage Export Templates"
  1363. msgstr ""
  1364. #: editor/editor_node.cpp
  1365. msgid "About"
  1366. msgstr ""
  1367. #: editor/editor_node.cpp
  1368. msgid "Alerts when an external resource has changed."
  1369. msgstr ""
  1370. #: editor/editor_node.cpp
  1371. msgid "Spins when the editor window repaints!"
  1372. msgstr ""
  1373. #: editor/editor_node.cpp
  1374. msgid "Update Always"
  1375. msgstr ""
  1376. #: editor/editor_node.cpp
  1377. msgid "Update Changes"
  1378. msgstr ""
  1379. #: editor/editor_node.cpp
  1380. msgid "Disable Update Spinner"
  1381. msgstr ""
  1382. #: editor/editor_node.cpp
  1383. msgid "Inspector"
  1384. msgstr ""
  1385. #: editor/editor_node.cpp
  1386. msgid "Create a new resource in memory and edit it."
  1387. msgstr ""
  1388. #: editor/editor_node.cpp
  1389. msgid "Load an existing resource from disk and edit it."
  1390. msgstr ""
  1391. #: editor/editor_node.cpp
  1392. msgid "Save the currently edited resource."
  1393. msgstr ""
  1394. #: editor/editor_node.cpp editor/plugins/script_editor_plugin.cpp
  1395. msgid "Save As.."
  1396. msgstr ""
  1397. #: editor/editor_node.cpp
  1398. msgid "Go to the previous edited object in history."
  1399. msgstr ""
  1400. #: editor/editor_node.cpp
  1401. msgid "Go to the next edited object in history."
  1402. msgstr ""
  1403. #: editor/editor_node.cpp
  1404. msgid "History of recently edited objects."
  1405. msgstr ""
  1406. #: editor/editor_node.cpp
  1407. msgid "Object properties."
  1408. msgstr ""
  1409. #: editor/editor_node.cpp
  1410. msgid "FileSystem"
  1411. msgstr ""
  1412. #: editor/editor_node.cpp editor/node_dock.cpp
  1413. msgid "Node"
  1414. msgstr ""
  1415. #: editor/editor_node.cpp
  1416. msgid "Output"
  1417. msgstr ""
  1418. #: editor/editor_node.cpp editor/editor_reimport_dialog.cpp
  1419. msgid "Re-Import"
  1420. msgstr ""
  1421. #: editor/editor_node.cpp editor/editor_plugin_settings.cpp
  1422. msgid "Update"
  1423. msgstr ""
  1424. #: editor/editor_node.cpp
  1425. msgid "Thanks from the Godot community!"
  1426. msgstr ""
  1427. #: editor/editor_node.cpp
  1428. msgid "Thanks!"
  1429. msgstr ""
  1430. #: editor/editor_node.cpp
  1431. msgid "Import Templates From ZIP File"
  1432. msgstr ""
  1433. #: editor/editor_node.cpp
  1434. msgid "Export Project"
  1435. msgstr ""
  1436. #: editor/editor_node.cpp
  1437. msgid "Export Library"
  1438. msgstr ""
  1439. #: editor/editor_node.cpp
  1440. msgid "Merge With Existing"
  1441. msgstr ""
  1442. #: editor/editor_node.cpp
  1443. msgid "Password:"
  1444. msgstr ""
  1445. #: editor/editor_node.cpp
  1446. msgid "Open & Run a Script"
  1447. msgstr ""
  1448. #: editor/editor_node.cpp
  1449. msgid "Load Errors"
  1450. msgstr ""
  1451. #: editor/editor_plugin_settings.cpp
  1452. msgid "Installed Plugins:"
  1453. msgstr ""
  1454. #: editor/editor_plugin_settings.cpp
  1455. msgid "Author:"
  1456. msgstr ""
  1457. #: editor/editor_plugin_settings.cpp
  1458. msgid "Status:"
  1459. msgstr ""
  1460. #: editor/editor_profiler.cpp
  1461. msgid "Stop Profiling"
  1462. msgstr ""
  1463. #: editor/editor_profiler.cpp
  1464. msgid "Start Profiling"
  1465. msgstr ""
  1466. #: editor/editor_profiler.cpp
  1467. msgid "Measure:"
  1468. msgstr ""
  1469. #: editor/editor_profiler.cpp
  1470. msgid "Frame Time (sec)"
  1471. msgstr ""
  1472. #: editor/editor_profiler.cpp
  1473. msgid "Average Time (sec)"
  1474. msgstr ""
  1475. #: editor/editor_profiler.cpp
  1476. msgid "Frame %"
  1477. msgstr ""
  1478. #: editor/editor_profiler.cpp
  1479. msgid "Fixed Frame %"
  1480. msgstr ""
  1481. #: editor/editor_profiler.cpp editor/script_editor_debugger.cpp
  1482. msgid "Time:"
  1483. msgstr ""
  1484. #: editor/editor_profiler.cpp
  1485. msgid "Inclusive"
  1486. msgstr ""
  1487. #: editor/editor_profiler.cpp
  1488. msgid "Self"
  1489. msgstr ""
  1490. #: editor/editor_profiler.cpp
  1491. msgid "Frame #:"
  1492. msgstr ""
  1493. #: editor/editor_reimport_dialog.cpp
  1494. msgid "Please wait for scan to complete."
  1495. msgstr ""
  1496. #: editor/editor_reimport_dialog.cpp
  1497. msgid "Current scene must be saved to re-import."
  1498. msgstr ""
  1499. #: editor/editor_reimport_dialog.cpp
  1500. msgid "Save & Re-Import"
  1501. msgstr ""
  1502. #: editor/editor_reimport_dialog.cpp
  1503. msgid "Re-Importing"
  1504. msgstr ""
  1505. #: editor/editor_reimport_dialog.cpp
  1506. msgid "Re-Import Changed Resources"
  1507. msgstr ""
  1508. #: editor/editor_run_script.cpp
  1509. msgid "Write your logic in the _run() method."
  1510. msgstr ""
  1511. #: editor/editor_run_script.cpp
  1512. msgid "There is an edited scene already."
  1513. msgstr ""
  1514. #: editor/editor_run_script.cpp
  1515. msgid "Couldn't instance script:"
  1516. msgstr ""
  1517. #: editor/editor_run_script.cpp
  1518. msgid "Did you forget the 'tool' keyword?"
  1519. msgstr ""
  1520. #: editor/editor_run_script.cpp
  1521. msgid "Couldn't run script:"
  1522. msgstr ""
  1523. #: editor/editor_run_script.cpp
  1524. msgid "Did you forget the '_run' method?"
  1525. msgstr ""
  1526. #: editor/editor_settings.cpp
  1527. msgid "Default (Same as Editor)"
  1528. msgstr ""
  1529. #: editor/editor_sub_scene.cpp
  1530. msgid "Select Node(s) to Import"
  1531. msgstr ""
  1532. #: editor/editor_sub_scene.cpp
  1533. msgid "Scene Path:"
  1534. msgstr ""
  1535. #: editor/editor_sub_scene.cpp
  1536. msgid "Import From Node:"
  1537. msgstr ""
  1538. #: editor/export_template_manager.cpp
  1539. msgid "Re-Download"
  1540. msgstr ""
  1541. #: editor/export_template_manager.cpp
  1542. msgid "Uninstall"
  1543. msgstr ""
  1544. #: editor/export_template_manager.cpp
  1545. msgid "(Installed)"
  1546. msgstr ""
  1547. #: editor/export_template_manager.cpp
  1548. msgid "Download"
  1549. msgstr ""
  1550. #: editor/export_template_manager.cpp
  1551. msgid "(Missing)"
  1552. msgstr ""
  1553. #: editor/export_template_manager.cpp
  1554. msgid "(Current)"
  1555. msgstr ""
  1556. #: editor/export_template_manager.cpp
  1557. msgid "Remove template version '%s'?"
  1558. msgstr ""
  1559. #: editor/export_template_manager.cpp
  1560. msgid "Can't open export templates zip."
  1561. msgstr ""
  1562. #: editor/export_template_manager.cpp
  1563. msgid "Invalid version.txt format inside templates."
  1564. msgstr ""
  1565. #: editor/export_template_manager.cpp
  1566. msgid ""
  1567. "Invalid version.txt format inside templates. Revision is not a valid "
  1568. "identifier."
  1569. msgstr ""
  1570. #: editor/export_template_manager.cpp
  1571. msgid "No version.txt found inside templates."
  1572. msgstr ""
  1573. #: editor/export_template_manager.cpp
  1574. msgid "Error creating path for templates:\n"
  1575. msgstr ""
  1576. #: editor/export_template_manager.cpp
  1577. msgid "Extracting Export Templates"
  1578. msgstr ""
  1579. #: editor/export_template_manager.cpp
  1580. msgid "Importing:"
  1581. msgstr ""
  1582. #: editor/export_template_manager.cpp
  1583. msgid "Loading Export Templates"
  1584. msgstr ""
  1585. #: editor/export_template_manager.cpp
  1586. msgid "Current Version:"
  1587. msgstr ""
  1588. #: editor/export_template_manager.cpp
  1589. msgid "Installed Versions:"
  1590. msgstr ""
  1591. #: editor/export_template_manager.cpp
  1592. msgid "Install From File"
  1593. msgstr ""
  1594. #: editor/export_template_manager.cpp
  1595. msgid "Remove Template"
  1596. msgstr ""
  1597. #: editor/export_template_manager.cpp
  1598. msgid "Select template file"
  1599. msgstr ""
  1600. #: editor/export_template_manager.cpp
  1601. msgid "Export Template Manager"
  1602. msgstr ""
  1603. #: editor/file_type_cache.cpp
  1604. msgid "Can't open file_type_cache.cch for writing, not saving file type cache!"
  1605. msgstr ""
  1606. #: editor/filesystem_dock.cpp
  1607. msgid "Cannot navigate to '"
  1608. msgstr ""
  1609. #: editor/filesystem_dock.cpp
  1610. msgid "Same source and destination files, doing nothing."
  1611. msgstr ""
  1612. #: editor/filesystem_dock.cpp
  1613. msgid "Same source and destination paths, doing nothing."
  1614. msgstr ""
  1615. #: editor/filesystem_dock.cpp
  1616. msgid "Can't move directories to within themselves."
  1617. msgstr ""
  1618. #: editor/filesystem_dock.cpp
  1619. msgid "Can't operate on '..'"
  1620. msgstr ""
  1621. #: editor/filesystem_dock.cpp
  1622. msgid "Pick New Name and Location For:"
  1623. msgstr ""
  1624. #: editor/filesystem_dock.cpp
  1625. msgid "No files selected!"
  1626. msgstr ""
  1627. #: editor/filesystem_dock.cpp
  1628. msgid "Expand all"
  1629. msgstr ""
  1630. #: editor/filesystem_dock.cpp
  1631. msgid "Collapse all"
  1632. msgstr ""
  1633. #: editor/filesystem_dock.cpp
  1634. msgid "Instance"
  1635. msgstr ""
  1636. #: editor/filesystem_dock.cpp
  1637. msgid "Edit Dependencies.."
  1638. msgstr ""
  1639. #: editor/filesystem_dock.cpp
  1640. msgid "View Owners.."
  1641. msgstr ""
  1642. #: editor/filesystem_dock.cpp
  1643. msgid "Copy Path"
  1644. msgstr ""
  1645. #: editor/filesystem_dock.cpp
  1646. msgid "Rename or Move.."
  1647. msgstr ""
  1648. #: editor/filesystem_dock.cpp
  1649. msgid "Move To.."
  1650. msgstr ""
  1651. #: editor/filesystem_dock.cpp
  1652. msgid "Info"
  1653. msgstr ""
  1654. #: editor/filesystem_dock.cpp
  1655. msgid "Show In File Manager"
  1656. msgstr ""
  1657. #: editor/filesystem_dock.cpp
  1658. msgid "Re-Import.."
  1659. msgstr ""
  1660. #: editor/filesystem_dock.cpp
  1661. msgid "Previous Directory"
  1662. msgstr ""
  1663. #: editor/filesystem_dock.cpp
  1664. msgid "Next Directory"
  1665. msgstr ""
  1666. #: editor/filesystem_dock.cpp
  1667. msgid "Re-Scan Filesystem"
  1668. msgstr ""
  1669. #: editor/filesystem_dock.cpp
  1670. msgid "Toggle folder status as Favorite"
  1671. msgstr ""
  1672. #: editor/filesystem_dock.cpp
  1673. msgid "Instance the selected scene(s) as child of the selected node."
  1674. msgstr ""
  1675. #: editor/filesystem_dock.cpp
  1676. msgid "Move"
  1677. msgstr ""
  1678. #: editor/groups_editor.cpp
  1679. msgid "Add to Group"
  1680. msgstr ""
  1681. #: editor/groups_editor.cpp
  1682. msgid "Remove from Group"
  1683. msgstr ""
  1684. #: editor/import/resource_importer_obj.cpp
  1685. #: editor/io_plugins/editor_mesh_import_plugin.cpp
  1686. msgid "Surface %d"
  1687. msgstr ""
  1688. #: editor/import/resource_importer_scene.cpp
  1689. #: editor/io_plugins/editor_scene_import_plugin.cpp
  1690. #: editor/plugins/cube_grid_theme_editor_plugin.cpp
  1691. msgid "Import Scene"
  1692. msgstr ""
  1693. #: editor/import/resource_importer_scene.cpp
  1694. #: editor/io_plugins/editor_scene_import_plugin.cpp
  1695. msgid "Importing Scene.."
  1696. msgstr ""
  1697. #: editor/import/resource_importer_scene.cpp
  1698. #: editor/io_plugins/editor_scene_import_plugin.cpp
  1699. msgid "Running Custom Script.."
  1700. msgstr ""
  1701. #: editor/import/resource_importer_scene.cpp
  1702. #: editor/io_plugins/editor_scene_import_plugin.cpp
  1703. msgid "Couldn't load post-import script:"
  1704. msgstr ""
  1705. #: editor/import/resource_importer_scene.cpp
  1706. #: editor/io_plugins/editor_scene_import_plugin.cpp
  1707. msgid "Invalid/broken script for post-import (check console):"
  1708. msgstr ""
  1709. #: editor/import/resource_importer_scene.cpp
  1710. #: editor/io_plugins/editor_scene_import_plugin.cpp
  1711. msgid "Error running post-import script:"
  1712. msgstr ""
  1713. #: editor/import/resource_importer_scene.cpp
  1714. #: editor/io_plugins/editor_scene_import_plugin.cpp
  1715. msgid "Saving.."
  1716. msgstr ""
  1717. #: editor/import_dock.cpp
  1718. msgid " Files"
  1719. msgstr ""
  1720. #: editor/import_dock.cpp
  1721. msgid "Import As:"
  1722. msgstr ""
  1723. #: editor/import_dock.cpp editor/property_editor.cpp
  1724. msgid "Preset.."
  1725. msgstr ""
  1726. #: editor/import_dock.cpp
  1727. msgid "Reimport"
  1728. msgstr ""
  1729. #: editor/io_plugins/editor_bitmask_import_plugin.cpp
  1730. msgid "No bit masks to import!"
  1731. msgstr ""
  1732. #: editor/io_plugins/editor_bitmask_import_plugin.cpp
  1733. #: editor/io_plugins/editor_sample_import_plugin.cpp
  1734. #: editor/io_plugins/editor_scene_import_plugin.cpp
  1735. #: editor/io_plugins/editor_texture_import_plugin.cpp
  1736. msgid "Target path is empty."
  1737. msgstr ""
  1738. #: editor/io_plugins/editor_bitmask_import_plugin.cpp
  1739. #: editor/io_plugins/editor_sample_import_plugin.cpp
  1740. #: editor/io_plugins/editor_scene_import_plugin.cpp
  1741. #: editor/io_plugins/editor_texture_import_plugin.cpp
  1742. msgid "Target path must be a complete resource path."
  1743. msgstr ""
  1744. #: editor/io_plugins/editor_bitmask_import_plugin.cpp
  1745. #: editor/io_plugins/editor_sample_import_plugin.cpp
  1746. #: editor/io_plugins/editor_scene_import_plugin.cpp
  1747. #: editor/io_plugins/editor_texture_import_plugin.cpp
  1748. msgid "Target path must exist."
  1749. msgstr ""
  1750. #: editor/io_plugins/editor_bitmask_import_plugin.cpp
  1751. #: editor/io_plugins/editor_mesh_import_plugin.cpp
  1752. #: editor/io_plugins/editor_sample_import_plugin.cpp
  1753. msgid "Save path is empty!"
  1754. msgstr ""
  1755. #: editor/io_plugins/editor_bitmask_import_plugin.cpp
  1756. msgid "Import BitMasks"
  1757. msgstr ""
  1758. #: editor/io_plugins/editor_bitmask_import_plugin.cpp
  1759. #: editor/io_plugins/editor_texture_import_plugin.cpp
  1760. msgid "Source Texture(s):"
  1761. msgstr ""
  1762. #: editor/io_plugins/editor_bitmask_import_plugin.cpp
  1763. #: editor/io_plugins/editor_mesh_import_plugin.cpp
  1764. #: editor/io_plugins/editor_sample_import_plugin.cpp
  1765. #: editor/io_plugins/editor_scene_import_plugin.cpp
  1766. #: editor/io_plugins/editor_texture_import_plugin.cpp
  1767. #: editor/io_plugins/editor_translation_import_plugin.cpp
  1768. msgid "Target Path:"
  1769. msgstr ""
  1770. #: editor/io_plugins/editor_bitmask_import_plugin.cpp
  1771. #: editor/io_plugins/editor_font_import_plugin.cpp
  1772. #: editor/io_plugins/editor_sample_import_plugin.cpp
  1773. #: editor/io_plugins/editor_scene_import_plugin.cpp
  1774. #: editor/io_plugins/editor_texture_import_plugin.cpp
  1775. #: editor/io_plugins/editor_translation_import_plugin.cpp
  1776. msgid "Accept"
  1777. msgstr ""
  1778. #: editor/io_plugins/editor_bitmask_import_plugin.cpp
  1779. msgid "Bit Mask"
  1780. msgstr ""
  1781. #: editor/io_plugins/editor_font_import_plugin.cpp
  1782. msgid "No source font file!"
  1783. msgstr ""
  1784. #: editor/io_plugins/editor_font_import_plugin.cpp
  1785. msgid "No target font resource!"
  1786. msgstr ""
  1787. #: editor/io_plugins/editor_font_import_plugin.cpp
  1788. msgid ""
  1789. "Invalid file extension.\n"
  1790. "Please use .fnt."
  1791. msgstr ""
  1792. #: editor/io_plugins/editor_font_import_plugin.cpp
  1793. msgid "Can't load/process source font."
  1794. msgstr ""
  1795. #: editor/io_plugins/editor_font_import_plugin.cpp
  1796. msgid "Couldn't save font."
  1797. msgstr ""
  1798. #: editor/io_plugins/editor_font_import_plugin.cpp
  1799. msgid "Source Font:"
  1800. msgstr ""
  1801. #: editor/io_plugins/editor_font_import_plugin.cpp
  1802. msgid "Source Font Size:"
  1803. msgstr ""
  1804. #: editor/io_plugins/editor_font_import_plugin.cpp
  1805. msgid "Dest Resource:"
  1806. msgstr ""
  1807. #: editor/io_plugins/editor_font_import_plugin.cpp
  1808. msgid "The quick brown fox jumps over the lazy dog."
  1809. msgstr ""
  1810. #: editor/io_plugins/editor_font_import_plugin.cpp
  1811. msgid "Test:"
  1812. msgstr ""
  1813. #: editor/io_plugins/editor_font_import_plugin.cpp
  1814. #: editor/io_plugins/editor_mesh_import_plugin.cpp
  1815. #: editor/io_plugins/editor_sample_import_plugin.cpp
  1816. #: editor/io_plugins/editor_scene_import_plugin.cpp
  1817. msgid "Options:"
  1818. msgstr ""
  1819. #: editor/io_plugins/editor_font_import_plugin.cpp
  1820. msgid "Font Import"
  1821. msgstr ""
  1822. #: editor/io_plugins/editor_font_import_plugin.cpp
  1823. msgid ""
  1824. "This file is already a Godot font file, please supply a BMFont type file "
  1825. "instead."
  1826. msgstr ""
  1827. #: editor/io_plugins/editor_font_import_plugin.cpp
  1828. msgid "Failed opening as BMFont file."
  1829. msgstr ""
  1830. #: editor/io_plugins/editor_font_import_plugin.cpp
  1831. #: scene/resources/dynamic_font.cpp
  1832. msgid "Error initializing FreeType."
  1833. msgstr ""
  1834. #: editor/io_plugins/editor_font_import_plugin.cpp
  1835. #: scene/resources/dynamic_font.cpp
  1836. msgid "Unknown font format."
  1837. msgstr ""
  1838. #: editor/io_plugins/editor_font_import_plugin.cpp
  1839. #: scene/resources/dynamic_font.cpp
  1840. msgid "Error loading font."
  1841. msgstr ""
  1842. #: editor/io_plugins/editor_font_import_plugin.cpp
  1843. #: scene/resources/dynamic_font.cpp
  1844. msgid "Invalid font size."
  1845. msgstr ""
  1846. #: editor/io_plugins/editor_font_import_plugin.cpp
  1847. msgid "Invalid font custom source."
  1848. msgstr ""
  1849. #: editor/io_plugins/editor_font_import_plugin.cpp
  1850. #: editor/plugins/theme_editor_plugin.cpp
  1851. msgid "Font"
  1852. msgstr ""
  1853. #: editor/io_plugins/editor_mesh_import_plugin.cpp
  1854. msgid "No meshes to import!"
  1855. msgstr ""
  1856. #: editor/io_plugins/editor_mesh_import_plugin.cpp
  1857. msgid "Single Mesh Import"
  1858. msgstr ""
  1859. #: editor/io_plugins/editor_mesh_import_plugin.cpp
  1860. msgid "Source Mesh(es):"
  1861. msgstr ""
  1862. #: editor/io_plugins/editor_mesh_import_plugin.cpp
  1863. #: editor/plugins/mesh_instance_editor_plugin.cpp
  1864. msgid "Mesh"
  1865. msgstr ""
  1866. #: editor/io_plugins/editor_sample_import_plugin.cpp
  1867. msgid "No samples to import!"
  1868. msgstr ""
  1869. #: editor/io_plugins/editor_sample_import_plugin.cpp
  1870. msgid "Import Audio Samples"
  1871. msgstr ""
  1872. #: editor/io_plugins/editor_sample_import_plugin.cpp
  1873. msgid "Source Sample(s):"
  1874. msgstr ""
  1875. #: editor/io_plugins/editor_sample_import_plugin.cpp
  1876. msgid "Audio Sample"
  1877. msgstr ""
  1878. #: editor/io_plugins/editor_scene_import_plugin.cpp
  1879. msgid "New Clip"
  1880. msgstr ""
  1881. #: editor/io_plugins/editor_scene_import_plugin.cpp
  1882. msgid "Animation Options"
  1883. msgstr ""
  1884. #: editor/io_plugins/editor_scene_import_plugin.cpp
  1885. msgid "Flags"
  1886. msgstr ""
  1887. #: editor/io_plugins/editor_scene_import_plugin.cpp
  1888. msgid "Bake FPS:"
  1889. msgstr ""
  1890. #: editor/io_plugins/editor_scene_import_plugin.cpp
  1891. msgid "Optimizer"
  1892. msgstr ""
  1893. #: editor/io_plugins/editor_scene_import_plugin.cpp
  1894. msgid "Max Linear Error"
  1895. msgstr ""
  1896. #: editor/io_plugins/editor_scene_import_plugin.cpp
  1897. msgid "Max Angular Error"
  1898. msgstr ""
  1899. #: editor/io_plugins/editor_scene_import_plugin.cpp
  1900. msgid "Max Angle"
  1901. msgstr ""
  1902. #: editor/io_plugins/editor_scene_import_plugin.cpp
  1903. msgid "Clips"
  1904. msgstr ""
  1905. #: editor/io_plugins/editor_scene_import_plugin.cpp
  1906. msgid "Start(s)"
  1907. msgstr ""
  1908. #: editor/io_plugins/editor_scene_import_plugin.cpp
  1909. msgid "End(s)"
  1910. msgstr ""
  1911. #: editor/io_plugins/editor_scene_import_plugin.cpp
  1912. #: editor/plugins/sprite_frames_editor_plugin.cpp
  1913. msgid "Loop"
  1914. msgstr ""
  1915. #: editor/io_plugins/editor_scene_import_plugin.cpp
  1916. msgid "Filters"
  1917. msgstr ""
  1918. #: editor/io_plugins/editor_scene_import_plugin.cpp
  1919. msgid "Source path is empty."
  1920. msgstr ""
  1921. #: editor/io_plugins/editor_scene_import_plugin.cpp
  1922. msgid "Couldn't load post-import script."
  1923. msgstr ""
  1924. #: editor/io_plugins/editor_scene_import_plugin.cpp
  1925. msgid "Invalid/broken script for post-import."
  1926. msgstr ""
  1927. #: editor/io_plugins/editor_scene_import_plugin.cpp
  1928. msgid "Error importing scene."
  1929. msgstr ""
  1930. #: editor/io_plugins/editor_scene_import_plugin.cpp
  1931. msgid "Import 3D Scene"
  1932. msgstr ""
  1933. #: editor/io_plugins/editor_scene_import_plugin.cpp
  1934. msgid "Source Scene:"
  1935. msgstr ""
  1936. #: editor/io_plugins/editor_scene_import_plugin.cpp
  1937. msgid "Same as Target Scene"
  1938. msgstr ""
  1939. #: editor/io_plugins/editor_scene_import_plugin.cpp
  1940. msgid "Shared"
  1941. msgstr ""
  1942. #: editor/io_plugins/editor_scene_import_plugin.cpp
  1943. msgid "Target Texture Folder:"
  1944. msgstr ""
  1945. #: editor/io_plugins/editor_scene_import_plugin.cpp
  1946. msgid "Post-Process Script:"
  1947. msgstr ""
  1948. #: editor/io_plugins/editor_scene_import_plugin.cpp
  1949. msgid "Custom Root Node Type:"
  1950. msgstr ""
  1951. #: editor/io_plugins/editor_scene_import_plugin.cpp
  1952. msgid "Auto"
  1953. msgstr ""
  1954. #: editor/io_plugins/editor_scene_import_plugin.cpp
  1955. msgid "Root Node Name:"
  1956. msgstr ""
  1957. #: editor/io_plugins/editor_scene_import_plugin.cpp
  1958. msgid "The Following Files are Missing:"
  1959. msgstr ""
  1960. #: editor/io_plugins/editor_scene_import_plugin.cpp
  1961. msgid "Import Anyway"
  1962. msgstr ""
  1963. #: editor/io_plugins/editor_scene_import_plugin.cpp scene/gui/dialogs.cpp
  1964. msgid "Cancel"
  1965. msgstr ""
  1966. #: editor/io_plugins/editor_scene_import_plugin.cpp
  1967. msgid "Import & Open"
  1968. msgstr ""
  1969. #: editor/io_plugins/editor_scene_import_plugin.cpp
  1970. msgid "Edited scene has not been saved, open imported scene anyway?"
  1971. msgstr ""
  1972. #: editor/io_plugins/editor_scene_import_plugin.cpp
  1973. msgid "Import Image:"
  1974. msgstr ""
  1975. #: editor/io_plugins/editor_scene_import_plugin.cpp
  1976. msgid "Can't import a file over itself:"
  1977. msgstr ""
  1978. #: editor/io_plugins/editor_scene_import_plugin.cpp
  1979. msgid "Couldn't localize path: %s (already local)"
  1980. msgstr ""
  1981. #: editor/io_plugins/editor_scene_import_plugin.cpp
  1982. msgid "3D Scene Animation"
  1983. msgstr ""
  1984. #: editor/io_plugins/editor_texture_import_plugin.cpp
  1985. msgid "Uncompressed"
  1986. msgstr ""
  1987. #: editor/io_plugins/editor_texture_import_plugin.cpp
  1988. msgid "Compress Lossless (PNG)"
  1989. msgstr ""
  1990. #: editor/io_plugins/editor_texture_import_plugin.cpp
  1991. msgid "Compress Lossy (WebP)"
  1992. msgstr ""
  1993. #: editor/io_plugins/editor_texture_import_plugin.cpp
  1994. msgid "Compress (VRAM)"
  1995. msgstr ""
  1996. #: editor/io_plugins/editor_texture_import_plugin.cpp
  1997. msgid "Texture Format"
  1998. msgstr ""
  1999. #: editor/io_plugins/editor_texture_import_plugin.cpp
  2000. msgid "Texture Compression Quality (WebP):"
  2001. msgstr ""
  2002. #: editor/io_plugins/editor_texture_import_plugin.cpp
  2003. msgid "Texture Options"
  2004. msgstr ""
  2005. #: editor/io_plugins/editor_texture_import_plugin.cpp
  2006. msgid "Please specify some files!"
  2007. msgstr ""
  2008. #: editor/io_plugins/editor_texture_import_plugin.cpp
  2009. msgid "At least one file needed for Atlas."
  2010. msgstr ""
  2011. #: editor/io_plugins/editor_texture_import_plugin.cpp
  2012. msgid "Error importing:"
  2013. msgstr ""
  2014. #: editor/io_plugins/editor_texture_import_plugin.cpp
  2015. msgid "Only one file is required for large texture."
  2016. msgstr ""
  2017. #: editor/io_plugins/editor_texture_import_plugin.cpp
  2018. msgid "Max Texture Size:"
  2019. msgstr ""
  2020. #: editor/io_plugins/editor_texture_import_plugin.cpp
  2021. msgid "Import Textures for Atlas (2D)"
  2022. msgstr ""
  2023. #: editor/io_plugins/editor_texture_import_plugin.cpp
  2024. msgid "Cell Size:"
  2025. msgstr ""
  2026. #: editor/io_plugins/editor_texture_import_plugin.cpp
  2027. msgid "Large Texture"
  2028. msgstr ""
  2029. #: editor/io_plugins/editor_texture_import_plugin.cpp
  2030. msgid "Import Large Textures (2D)"
  2031. msgstr ""
  2032. #: editor/io_plugins/editor_texture_import_plugin.cpp
  2033. msgid "Source Texture"
  2034. msgstr ""
  2035. #: editor/io_plugins/editor_texture_import_plugin.cpp
  2036. msgid "Base Atlas Texture"
  2037. msgstr ""
  2038. #: editor/io_plugins/editor_texture_import_plugin.cpp
  2039. msgid "Source Texture(s)"
  2040. msgstr ""
  2041. #: editor/io_plugins/editor_texture_import_plugin.cpp
  2042. msgid "Import Textures for 2D"
  2043. msgstr ""
  2044. #: editor/io_plugins/editor_texture_import_plugin.cpp
  2045. msgid "Import Textures for 3D"
  2046. msgstr ""
  2047. #: editor/io_plugins/editor_texture_import_plugin.cpp
  2048. msgid "Import Textures"
  2049. msgstr ""
  2050. #: editor/io_plugins/editor_texture_import_plugin.cpp
  2051. msgid "2D Texture"
  2052. msgstr ""
  2053. #: editor/io_plugins/editor_texture_import_plugin.cpp
  2054. msgid "3D Texture"
  2055. msgstr ""
  2056. #: editor/io_plugins/editor_texture_import_plugin.cpp
  2057. msgid "Atlas Texture"
  2058. msgstr ""
  2059. #: editor/io_plugins/editor_texture_import_plugin.cpp
  2060. msgid ""
  2061. "NOTICE: Importing 2D textures is not mandatory. Just copy png/jpg files to "
  2062. "the project."
  2063. msgstr ""
  2064. #: editor/io_plugins/editor_texture_import_plugin.cpp
  2065. msgid "Crop empty space."
  2066. msgstr ""
  2067. #: editor/io_plugins/editor_texture_import_plugin.cpp
  2068. msgid "Texture"
  2069. msgstr ""
  2070. #: editor/io_plugins/editor_texture_import_plugin.cpp
  2071. msgid "Import Large Texture"
  2072. msgstr ""
  2073. #: editor/io_plugins/editor_texture_import_plugin.cpp
  2074. msgid "Load Source Image"
  2075. msgstr ""
  2076. #: editor/io_plugins/editor_texture_import_plugin.cpp
  2077. msgid "Slicing"
  2078. msgstr ""
  2079. #: editor/io_plugins/editor_texture_import_plugin.cpp
  2080. msgid "Inserting"
  2081. msgstr ""
  2082. #: editor/io_plugins/editor_texture_import_plugin.cpp
  2083. msgid "Saving"
  2084. msgstr ""
  2085. #: editor/io_plugins/editor_texture_import_plugin.cpp
  2086. msgid "Couldn't save large texture:"
  2087. msgstr ""
  2088. #: editor/io_plugins/editor_texture_import_plugin.cpp
  2089. msgid "Build Atlas For:"
  2090. msgstr ""
  2091. #: editor/io_plugins/editor_texture_import_plugin.cpp
  2092. msgid "Loading Image:"
  2093. msgstr ""
  2094. #: editor/io_plugins/editor_texture_import_plugin.cpp
  2095. msgid "Couldn't load image:"
  2096. msgstr ""
  2097. #: editor/io_plugins/editor_texture_import_plugin.cpp
  2098. msgid "Converting Images"
  2099. msgstr ""
  2100. #: editor/io_plugins/editor_texture_import_plugin.cpp
  2101. msgid "Cropping Images"
  2102. msgstr ""
  2103. #: editor/io_plugins/editor_texture_import_plugin.cpp
  2104. msgid "Blitting Images"
  2105. msgstr ""
  2106. #: editor/io_plugins/editor_texture_import_plugin.cpp
  2107. msgid "Couldn't save atlas image:"
  2108. msgstr ""
  2109. #: editor/io_plugins/editor_texture_import_plugin.cpp
  2110. msgid "Couldn't save converted texture:"
  2111. msgstr ""
  2112. #: editor/io_plugins/editor_translation_import_plugin.cpp
  2113. msgid "Invalid source!"
  2114. msgstr ""
  2115. #: editor/io_plugins/editor_translation_import_plugin.cpp
  2116. msgid "Invalid translation source!"
  2117. msgstr ""
  2118. #: editor/io_plugins/editor_translation_import_plugin.cpp
  2119. msgid "Column"
  2120. msgstr ""
  2121. #: editor/io_plugins/editor_translation_import_plugin.cpp
  2122. #: editor/script_create_dialog.cpp
  2123. msgid "Language"
  2124. msgstr ""
  2125. #: editor/io_plugins/editor_translation_import_plugin.cpp
  2126. msgid "No items to import!"
  2127. msgstr ""
  2128. #: editor/io_plugins/editor_translation_import_plugin.cpp
  2129. msgid "No target path!"
  2130. msgstr ""
  2131. #: editor/io_plugins/editor_translation_import_plugin.cpp
  2132. msgid "Import Translations"
  2133. msgstr ""
  2134. #: editor/io_plugins/editor_translation_import_plugin.cpp
  2135. msgid "Couldn't import!"
  2136. msgstr ""
  2137. #: editor/io_plugins/editor_translation_import_plugin.cpp
  2138. msgid "Import Translation"
  2139. msgstr ""
  2140. #: editor/io_plugins/editor_translation_import_plugin.cpp
  2141. msgid "Source CSV:"
  2142. msgstr ""
  2143. #: editor/io_plugins/editor_translation_import_plugin.cpp
  2144. msgid "Ignore First Row"
  2145. msgstr ""
  2146. #: editor/io_plugins/editor_translation_import_plugin.cpp
  2147. msgid "Compress"
  2148. msgstr ""
  2149. #: editor/io_plugins/editor_translation_import_plugin.cpp
  2150. msgid "Add to Project (godot.cfg)"
  2151. msgstr ""
  2152. #: editor/io_plugins/editor_translation_import_plugin.cpp
  2153. msgid "Import Languages:"
  2154. msgstr ""
  2155. #: editor/io_plugins/editor_translation_import_plugin.cpp
  2156. msgid "Translation"
  2157. msgstr ""
  2158. #: editor/multi_node_edit.cpp
  2159. msgid "MultiNode Set"
  2160. msgstr ""
  2161. #: editor/node_dock.cpp
  2162. msgid "Groups"
  2163. msgstr ""
  2164. #: editor/node_dock.cpp
  2165. msgid "Select a Node to edit Signals and Groups."
  2166. msgstr ""
  2167. #: editor/plugins/animation_player_editor_plugin.cpp
  2168. msgid "Toggle Autoplay"
  2169. msgstr ""
  2170. #: editor/plugins/animation_player_editor_plugin.cpp
  2171. msgid "New Animation Name:"
  2172. msgstr ""
  2173. #: editor/plugins/animation_player_editor_plugin.cpp
  2174. msgid "New Anim"
  2175. msgstr ""
  2176. #: editor/plugins/animation_player_editor_plugin.cpp
  2177. msgid "Change Animation Name:"
  2178. msgstr ""
  2179. #: editor/plugins/animation_player_editor_plugin.cpp
  2180. msgid "Delete Animation?"
  2181. msgstr ""
  2182. #: editor/plugins/animation_player_editor_plugin.cpp
  2183. #: editor/plugins/sprite_frames_editor_plugin.cpp
  2184. msgid "Remove Animation"
  2185. msgstr ""
  2186. #: editor/plugins/animation_player_editor_plugin.cpp
  2187. msgid "ERROR: Invalid animation name!"
  2188. msgstr ""
  2189. #: editor/plugins/animation_player_editor_plugin.cpp
  2190. msgid "ERROR: Animation name already exists!"
  2191. msgstr ""
  2192. #: editor/plugins/animation_player_editor_plugin.cpp
  2193. #: editor/plugins/sprite_frames_editor_plugin.cpp
  2194. msgid "Rename Animation"
  2195. msgstr ""
  2196. #: editor/plugins/animation_player_editor_plugin.cpp
  2197. #: editor/plugins/sprite_frames_editor_plugin.cpp
  2198. msgid "Add Animation"
  2199. msgstr ""
  2200. #: editor/plugins/animation_player_editor_plugin.cpp
  2201. msgid "Blend Next Changed"
  2202. msgstr ""
  2203. #: editor/plugins/animation_player_editor_plugin.cpp
  2204. msgid "Change Blend Time"
  2205. msgstr ""
  2206. #: editor/plugins/animation_player_editor_plugin.cpp
  2207. msgid "Load Animation"
  2208. msgstr ""
  2209. #: editor/plugins/animation_player_editor_plugin.cpp
  2210. msgid "Duplicate Animation"
  2211. msgstr ""
  2212. #: editor/plugins/animation_player_editor_plugin.cpp
  2213. msgid "ERROR: No animation to copy!"
  2214. msgstr ""
  2215. #: editor/plugins/animation_player_editor_plugin.cpp
  2216. msgid "ERROR: No animation resource on clipboard!"
  2217. msgstr ""
  2218. #: editor/plugins/animation_player_editor_plugin.cpp
  2219. msgid "Pasted Animation"
  2220. msgstr ""
  2221. #: editor/plugins/animation_player_editor_plugin.cpp
  2222. msgid "Paste Animation"
  2223. msgstr ""
  2224. #: editor/plugins/animation_player_editor_plugin.cpp
  2225. msgid "ERROR: No animation to edit!"
  2226. msgstr ""
  2227. #: editor/plugins/animation_player_editor_plugin.cpp
  2228. msgid "Play selected animation backwards from current pos. (A)"
  2229. msgstr ""
  2230. #: editor/plugins/animation_player_editor_plugin.cpp
  2231. msgid "Play selected animation backwards from end. (Shift+A)"
  2232. msgstr ""
  2233. #: editor/plugins/animation_player_editor_plugin.cpp
  2234. msgid "Stop animation playback. (S)"
  2235. msgstr ""
  2236. #: editor/plugins/animation_player_editor_plugin.cpp
  2237. msgid "Play selected animation from start. (Shift+D)"
  2238. msgstr ""
  2239. #: editor/plugins/animation_player_editor_plugin.cpp
  2240. msgid "Play selected animation from current pos. (D)"
  2241. msgstr ""
  2242. #: editor/plugins/animation_player_editor_plugin.cpp
  2243. msgid "Animation position (in seconds)."
  2244. msgstr ""
  2245. #: editor/plugins/animation_player_editor_plugin.cpp
  2246. msgid "Scale animation playback globally for the node."
  2247. msgstr ""
  2248. #: editor/plugins/animation_player_editor_plugin.cpp
  2249. msgid "Create new animation in player."
  2250. msgstr ""
  2251. #: editor/plugins/animation_player_editor_plugin.cpp
  2252. msgid "Load animation from disk."
  2253. msgstr ""
  2254. #: editor/plugins/animation_player_editor_plugin.cpp
  2255. msgid "Load an animation from disk."
  2256. msgstr ""
  2257. #: editor/plugins/animation_player_editor_plugin.cpp
  2258. msgid "Save the current animation"
  2259. msgstr ""
  2260. #: editor/plugins/animation_player_editor_plugin.cpp
  2261. msgid "Display list of animations in player."
  2262. msgstr ""
  2263. #: editor/plugins/animation_player_editor_plugin.cpp
  2264. msgid "Autoplay on Load"
  2265. msgstr ""
  2266. #: editor/plugins/animation_player_editor_plugin.cpp
  2267. msgid "Edit Target Blend Times"
  2268. msgstr ""
  2269. #: editor/plugins/animation_player_editor_plugin.cpp
  2270. msgid "Animation Tools"
  2271. msgstr ""
  2272. #: editor/plugins/animation_player_editor_plugin.cpp
  2273. msgid "Copy Animation"
  2274. msgstr ""
  2275. #: editor/plugins/animation_player_editor_plugin.cpp
  2276. msgid "Create New Animation"
  2277. msgstr ""
  2278. #: editor/plugins/animation_player_editor_plugin.cpp
  2279. msgid "Animation Name:"
  2280. msgstr ""
  2281. #: editor/plugins/animation_player_editor_plugin.cpp
  2282. #: editor/plugins/resource_preloader_editor_plugin.cpp
  2283. #: editor/plugins/sample_library_editor_plugin.cpp
  2284. #: editor/plugins/sprite_frames_editor_plugin.cpp editor/property_editor.cpp
  2285. #: editor/script_create_dialog.cpp
  2286. msgid "Error!"
  2287. msgstr ""
  2288. #: editor/plugins/animation_player_editor_plugin.cpp
  2289. msgid "Blend Times:"
  2290. msgstr ""
  2291. #: editor/plugins/animation_player_editor_plugin.cpp
  2292. msgid "Next (Auto Queue):"
  2293. msgstr ""
  2294. #: editor/plugins/animation_player_editor_plugin.cpp
  2295. msgid "Cross-Animation Blend Times"
  2296. msgstr ""
  2297. #: editor/plugins/animation_player_editor_plugin.cpp
  2298. #: editor/plugins/canvas_item_editor_plugin.cpp
  2299. msgid "Animation"
  2300. msgstr ""
  2301. #: editor/plugins/animation_tree_editor_plugin.cpp
  2302. msgid "New name:"
  2303. msgstr ""
  2304. #: editor/plugins/animation_tree_editor_plugin.cpp
  2305. #: editor/plugins/multimesh_editor_plugin.cpp
  2306. msgid "Scale:"
  2307. msgstr ""
  2308. #: editor/plugins/animation_tree_editor_plugin.cpp
  2309. msgid "Fade In (s):"
  2310. msgstr ""
  2311. #: editor/plugins/animation_tree_editor_plugin.cpp
  2312. msgid "Fade Out (s):"
  2313. msgstr ""
  2314. #: editor/plugins/animation_tree_editor_plugin.cpp
  2315. msgid "Blend"
  2316. msgstr ""
  2317. #: editor/plugins/animation_tree_editor_plugin.cpp
  2318. msgid "Mix"
  2319. msgstr ""
  2320. #: editor/plugins/animation_tree_editor_plugin.cpp
  2321. msgid "Auto Restart:"
  2322. msgstr ""
  2323. #: editor/plugins/animation_tree_editor_plugin.cpp
  2324. msgid "Restart (s):"
  2325. msgstr ""
  2326. #: editor/plugins/animation_tree_editor_plugin.cpp
  2327. msgid "Random Restart (s):"
  2328. msgstr ""
  2329. #: editor/plugins/animation_tree_editor_plugin.cpp
  2330. msgid "Start!"
  2331. msgstr ""
  2332. #: editor/plugins/animation_tree_editor_plugin.cpp
  2333. #: editor/plugins/multimesh_editor_plugin.cpp
  2334. msgid "Amount:"
  2335. msgstr ""
  2336. #: editor/plugins/animation_tree_editor_plugin.cpp
  2337. msgid "Blend:"
  2338. msgstr ""
  2339. #: editor/plugins/animation_tree_editor_plugin.cpp
  2340. msgid "Blend 0:"
  2341. msgstr ""
  2342. #: editor/plugins/animation_tree_editor_plugin.cpp
  2343. msgid "Blend 1:"
  2344. msgstr ""
  2345. #: editor/plugins/animation_tree_editor_plugin.cpp
  2346. msgid "X-Fade Time (s):"
  2347. msgstr ""
  2348. #: editor/plugins/animation_tree_editor_plugin.cpp
  2349. msgid "Current:"
  2350. msgstr ""
  2351. #: editor/plugins/animation_tree_editor_plugin.cpp
  2352. msgid "Add Input"
  2353. msgstr ""
  2354. #: editor/plugins/animation_tree_editor_plugin.cpp
  2355. msgid "Clear Auto-Advance"
  2356. msgstr ""
  2357. #: editor/plugins/animation_tree_editor_plugin.cpp
  2358. msgid "Set Auto-Advance"
  2359. msgstr ""
  2360. #: editor/plugins/animation_tree_editor_plugin.cpp
  2361. msgid "Delete Input"
  2362. msgstr ""
  2363. #: editor/plugins/animation_tree_editor_plugin.cpp
  2364. msgid "Rename"
  2365. msgstr ""
  2366. #: editor/plugins/animation_tree_editor_plugin.cpp
  2367. msgid "Animation tree is valid."
  2368. msgstr ""
  2369. #: editor/plugins/animation_tree_editor_plugin.cpp
  2370. msgid "Animation tree is invalid."
  2371. msgstr ""
  2372. #: editor/plugins/animation_tree_editor_plugin.cpp
  2373. msgid "Animation Node"
  2374. msgstr ""
  2375. #: editor/plugins/animation_tree_editor_plugin.cpp
  2376. msgid "OneShot Node"
  2377. msgstr ""
  2378. #: editor/plugins/animation_tree_editor_plugin.cpp
  2379. msgid "Mix Node"
  2380. msgstr ""
  2381. #: editor/plugins/animation_tree_editor_plugin.cpp
  2382. msgid "Blend2 Node"
  2383. msgstr ""
  2384. #: editor/plugins/animation_tree_editor_plugin.cpp
  2385. msgid "Blend3 Node"
  2386. msgstr ""
  2387. #: editor/plugins/animation_tree_editor_plugin.cpp
  2388. msgid "Blend4 Node"
  2389. msgstr ""
  2390. #: editor/plugins/animation_tree_editor_plugin.cpp
  2391. msgid "TimeScale Node"
  2392. msgstr ""
  2393. #: editor/plugins/animation_tree_editor_plugin.cpp
  2394. msgid "TimeSeek Node"
  2395. msgstr ""
  2396. #: editor/plugins/animation_tree_editor_plugin.cpp
  2397. msgid "Transition Node"
  2398. msgstr ""
  2399. #: editor/plugins/animation_tree_editor_plugin.cpp
  2400. msgid "Import Animations.."
  2401. msgstr ""
  2402. #: editor/plugins/animation_tree_editor_plugin.cpp
  2403. msgid "Edit Node Filters"
  2404. msgstr ""
  2405. #: editor/plugins/animation_tree_editor_plugin.cpp
  2406. msgid "Filters.."
  2407. msgstr ""
  2408. #: editor/plugins/baked_light_baker.cpp
  2409. msgid "Parsing %d Triangles:"
  2410. msgstr ""
  2411. #: editor/plugins/baked_light_baker.cpp
  2412. msgid "Triangle #"
  2413. msgstr ""
  2414. #: editor/plugins/baked_light_baker.cpp
  2415. msgid "Light Baker Setup:"
  2416. msgstr ""
  2417. #: editor/plugins/baked_light_baker.cpp
  2418. msgid "Parsing Geometry"
  2419. msgstr ""
  2420. #: editor/plugins/baked_light_baker.cpp
  2421. msgid "Fixing Lights"
  2422. msgstr ""
  2423. #: editor/plugins/baked_light_baker.cpp
  2424. msgid "Making BVH"
  2425. msgstr ""
  2426. #: editor/plugins/baked_light_baker.cpp
  2427. msgid "Creating Light Octree"
  2428. msgstr ""
  2429. #: editor/plugins/baked_light_baker.cpp
  2430. msgid "Creating Octree Texture"
  2431. msgstr ""
  2432. #: editor/plugins/baked_light_baker.cpp
  2433. msgid "Transfer to Lightmaps:"
  2434. msgstr ""
  2435. #: editor/plugins/baked_light_baker.cpp
  2436. msgid "Allocating Texture #"
  2437. msgstr ""
  2438. #: editor/plugins/baked_light_baker.cpp
  2439. msgid "Baking Triangle #"
  2440. msgstr ""
  2441. #: editor/plugins/baked_light_baker.cpp
  2442. msgid "Post-Processing Texture #"
  2443. msgstr ""
  2444. #: editor/plugins/baked_light_editor_plugin.cpp
  2445. msgid "Bake!"
  2446. msgstr ""
  2447. #: editor/plugins/baked_light_editor_plugin.cpp
  2448. msgid "Reset the lightmap octree baking process (start over)."
  2449. msgstr ""
  2450. #: editor/plugins/camera_editor_plugin.cpp
  2451. #: editor/plugins/sample_library_editor_plugin.cpp
  2452. msgid "Preview"
  2453. msgstr ""
  2454. #: editor/plugins/canvas_item_editor_plugin.cpp
  2455. msgid "Configure Snap"
  2456. msgstr ""
  2457. #: editor/plugins/canvas_item_editor_plugin.cpp
  2458. #: editor/plugins/polygon_2d_editor_plugin.cpp
  2459. msgid "Grid Offset:"
  2460. msgstr ""
  2461. #: editor/plugins/canvas_item_editor_plugin.cpp
  2462. #: editor/plugins/polygon_2d_editor_plugin.cpp
  2463. msgid "Grid Step:"
  2464. msgstr ""
  2465. #: editor/plugins/canvas_item_editor_plugin.cpp
  2466. msgid "Rotation Offset:"
  2467. msgstr ""
  2468. #: editor/plugins/canvas_item_editor_plugin.cpp
  2469. msgid "Rotation Step:"
  2470. msgstr ""
  2471. #: editor/plugins/canvas_item_editor_plugin.cpp
  2472. msgid "Move Pivot"
  2473. msgstr ""
  2474. #: editor/plugins/canvas_item_editor_plugin.cpp
  2475. msgid "Move Action"
  2476. msgstr ""
  2477. #: editor/plugins/canvas_item_editor_plugin.cpp
  2478. msgid "Edit IK Chain"
  2479. msgstr ""
  2480. #: editor/plugins/canvas_item_editor_plugin.cpp
  2481. msgid "Edit CanvasItem"
  2482. msgstr ""
  2483. #: editor/plugins/canvas_item_editor_plugin.cpp
  2484. msgid "Change Anchors"
  2485. msgstr ""
  2486. #: editor/plugins/canvas_item_editor_plugin.cpp
  2487. msgid "Zoom (%):"
  2488. msgstr ""
  2489. #: editor/plugins/canvas_item_editor_plugin.cpp
  2490. msgid "Paste Pose"
  2491. msgstr ""
  2492. #: editor/plugins/canvas_item_editor_plugin.cpp
  2493. msgid "Select Mode"
  2494. msgstr ""
  2495. #: editor/plugins/canvas_item_editor_plugin.cpp
  2496. msgid "Drag: Rotate"
  2497. msgstr ""
  2498. #: editor/plugins/canvas_item_editor_plugin.cpp
  2499. msgid "Alt+Drag: Move"
  2500. msgstr ""
  2501. #: editor/plugins/canvas_item_editor_plugin.cpp
  2502. msgid "Press 'v' to Change Pivot, 'Shift+v' to Drag Pivot (while moving)."
  2503. msgstr ""
  2504. #: editor/plugins/canvas_item_editor_plugin.cpp
  2505. msgid "Alt+RMB: Depth list selection"
  2506. msgstr ""
  2507. #: editor/plugins/canvas_item_editor_plugin.cpp
  2508. msgid "Move Mode"
  2509. msgstr ""
  2510. #: editor/plugins/canvas_item_editor_plugin.cpp
  2511. msgid "Rotate Mode"
  2512. msgstr ""
  2513. #: editor/plugins/canvas_item_editor_plugin.cpp
  2514. #: editor/plugins/spatial_editor_plugin.cpp
  2515. msgid ""
  2516. "Show a list of all objects at the position clicked\n"
  2517. "(same as Alt+RMB in select mode)."
  2518. msgstr ""
  2519. #: editor/plugins/canvas_item_editor_plugin.cpp
  2520. msgid "Click to change object's rotation pivot."
  2521. msgstr ""
  2522. #: editor/plugins/canvas_item_editor_plugin.cpp
  2523. msgid "Pan Mode"
  2524. msgstr ""
  2525. #: editor/plugins/canvas_item_editor_plugin.cpp
  2526. msgid "Lock the selected object in place (can't be moved)."
  2527. msgstr ""
  2528. #: editor/plugins/canvas_item_editor_plugin.cpp
  2529. msgid "Unlock the selected object (can be moved)."
  2530. msgstr ""
  2531. #: editor/plugins/canvas_item_editor_plugin.cpp
  2532. msgid "Makes sure the object's children are not selectable."
  2533. msgstr ""
  2534. #: editor/plugins/canvas_item_editor_plugin.cpp
  2535. msgid "Restores the object's children's ability to be selected."
  2536. msgstr ""
  2537. #: editor/plugins/canvas_item_editor_plugin.cpp
  2538. #: editor/plugins/polygon_2d_editor_plugin.cpp
  2539. #: editor/plugins/script_text_editor.cpp
  2540. #: editor/plugins/shader_editor_plugin.cpp editor/project_manager.cpp
  2541. #: modules/visual_script/visual_script_editor.cpp
  2542. msgid "Edit"
  2543. msgstr ""
  2544. #: editor/plugins/canvas_item_editor_plugin.cpp
  2545. #: editor/plugins/spatial_editor_plugin.cpp
  2546. msgid "Use Snap"
  2547. msgstr ""
  2548. #: editor/plugins/canvas_item_editor_plugin.cpp
  2549. #: editor/plugins/polygon_2d_editor_plugin.cpp
  2550. msgid "Show Grid"
  2551. msgstr ""
  2552. #: editor/plugins/canvas_item_editor_plugin.cpp
  2553. msgid "Use Rotation Snap"
  2554. msgstr ""
  2555. #: editor/plugins/canvas_item_editor_plugin.cpp
  2556. msgid "Snap Relative"
  2557. msgstr ""
  2558. #: editor/plugins/canvas_item_editor_plugin.cpp
  2559. #: editor/plugins/spatial_editor_plugin.cpp
  2560. msgid "Configure Snap.."
  2561. msgstr ""
  2562. #: editor/plugins/canvas_item_editor_plugin.cpp
  2563. msgid "Use Pixel Snap"
  2564. msgstr ""
  2565. #: editor/plugins/canvas_item_editor_plugin.cpp
  2566. msgid "Expand to Parent"
  2567. msgstr ""
  2568. #: editor/plugins/canvas_item_editor_plugin.cpp
  2569. msgid "Skeleton.."
  2570. msgstr ""
  2571. #: editor/plugins/canvas_item_editor_plugin.cpp
  2572. msgid "Make Bones"
  2573. msgstr ""
  2574. #: editor/plugins/canvas_item_editor_plugin.cpp
  2575. msgid "Clear Bones"
  2576. msgstr ""
  2577. #: editor/plugins/canvas_item_editor_plugin.cpp
  2578. msgid "Show Bones"
  2579. msgstr ""
  2580. #: editor/plugins/canvas_item_editor_plugin.cpp
  2581. msgid "Make IK Chain"
  2582. msgstr ""
  2583. #: editor/plugins/canvas_item_editor_plugin.cpp
  2584. msgid "Clear IK Chain"
  2585. msgstr ""
  2586. #: editor/plugins/canvas_item_editor_plugin.cpp
  2587. #: editor/plugins/spatial_editor_plugin.cpp
  2588. msgid "View"
  2589. msgstr ""
  2590. #: editor/plugins/canvas_item_editor_plugin.cpp
  2591. msgid "Zoom Reset"
  2592. msgstr ""
  2593. #: editor/plugins/canvas_item_editor_plugin.cpp
  2594. msgid "Zoom Set.."
  2595. msgstr ""
  2596. #: editor/plugins/canvas_item_editor_plugin.cpp
  2597. msgid "Center Selection"
  2598. msgstr ""
  2599. #: editor/plugins/canvas_item_editor_plugin.cpp
  2600. msgid "Frame Selection"
  2601. msgstr ""
  2602. #: editor/plugins/canvas_item_editor_plugin.cpp
  2603. msgid "Anchor"
  2604. msgstr ""
  2605. #: editor/plugins/canvas_item_editor_plugin.cpp
  2606. msgid "Insert Keys"
  2607. msgstr ""
  2608. #: editor/plugins/canvas_item_editor_plugin.cpp
  2609. msgid "Insert Key"
  2610. msgstr ""
  2611. #: editor/plugins/canvas_item_editor_plugin.cpp
  2612. msgid "Insert Key (Existing Tracks)"
  2613. msgstr ""
  2614. #: editor/plugins/canvas_item_editor_plugin.cpp
  2615. msgid "Copy Pose"
  2616. msgstr ""
  2617. #: editor/plugins/canvas_item_editor_plugin.cpp
  2618. msgid "Clear Pose"
  2619. msgstr ""
  2620. #: editor/plugins/canvas_item_editor_plugin.cpp
  2621. msgid "Set a Value"
  2622. msgstr ""
  2623. #: editor/plugins/canvas_item_editor_plugin.cpp
  2624. msgid "Snap (Pixels):"
  2625. msgstr ""
  2626. #: editor/plugins/canvas_item_editor_plugin.cpp
  2627. msgid "Add %s"
  2628. msgstr ""
  2629. #: editor/plugins/canvas_item_editor_plugin.cpp
  2630. msgid "Adding %s..."
  2631. msgstr ""
  2632. #: editor/plugins/canvas_item_editor_plugin.cpp editor/scene_tree_dock.cpp
  2633. msgid "Create Node"
  2634. msgstr ""
  2635. #: editor/plugins/canvas_item_editor_plugin.cpp editor/scene_tree_dock.cpp
  2636. msgid "Error instancing scene from %s"
  2637. msgstr ""
  2638. #: editor/plugins/canvas_item_editor_plugin.cpp editor/scene_tree_dock.cpp
  2639. msgid "OK :("
  2640. msgstr ""
  2641. #: editor/plugins/canvas_item_editor_plugin.cpp editor/scene_tree_dock.cpp
  2642. msgid "No parent to instance a child at."
  2643. msgstr ""
  2644. #: editor/plugins/canvas_item_editor_plugin.cpp editor/scene_tree_dock.cpp
  2645. msgid "This operation requires a single selected node."
  2646. msgstr ""
  2647. #: editor/plugins/canvas_item_editor_plugin.cpp
  2648. msgid "Change default type"
  2649. msgstr ""
  2650. #: editor/plugins/canvas_item_editor_plugin.cpp editor/scene_tree_dock.cpp
  2651. #: scene/gui/dialogs.cpp
  2652. msgid "OK"
  2653. msgstr ""
  2654. #: editor/plugins/canvas_item_editor_plugin.cpp
  2655. msgid ""
  2656. "Drag & drop + Shift : Add node as sibling\n"
  2657. "Drag & drop + Alt : Change node type"
  2658. msgstr ""
  2659. #: editor/plugins/collision_polygon_2d_editor_plugin.cpp
  2660. #: editor/plugins/light_occluder_2d_editor_plugin.cpp
  2661. #: editor/plugins/navigation_polygon_editor_plugin.cpp
  2662. #: editor/plugins/polygon_2d_editor_plugin.cpp
  2663. msgid "Create Poly"
  2664. msgstr ""
  2665. #: editor/plugins/collision_polygon_2d_editor_plugin.cpp
  2666. #: editor/plugins/collision_polygon_editor_plugin.cpp
  2667. #: editor/plugins/light_occluder_2d_editor_plugin.cpp
  2668. #: editor/plugins/navigation_polygon_editor_plugin.cpp
  2669. #: editor/plugins/path_2d_editor_plugin.cpp
  2670. #: editor/plugins/polygon_2d_editor_plugin.cpp
  2671. msgid "Edit Poly"
  2672. msgstr ""
  2673. #: editor/plugins/collision_polygon_2d_editor_plugin.cpp
  2674. #: editor/plugins/collision_polygon_editor_plugin.cpp
  2675. #: editor/plugins/light_occluder_2d_editor_plugin.cpp
  2676. #: editor/plugins/navigation_polygon_editor_plugin.cpp
  2677. #: editor/plugins/path_2d_editor_plugin.cpp
  2678. #: editor/plugins/polygon_2d_editor_plugin.cpp
  2679. msgid "Edit Poly (Remove Point)"
  2680. msgstr ""
  2681. #: editor/plugins/collision_polygon_2d_editor_plugin.cpp
  2682. #: editor/plugins/light_occluder_2d_editor_plugin.cpp
  2683. #: editor/plugins/navigation_polygon_editor_plugin.cpp
  2684. msgid "Create a new polygon from scratch."
  2685. msgstr ""
  2686. #: editor/plugins/collision_polygon_editor_plugin.cpp
  2687. msgid "Create Poly3D"
  2688. msgstr ""
  2689. #: editor/plugins/collision_shape_2d_editor_plugin.cpp
  2690. msgid "Set Handle"
  2691. msgstr ""
  2692. #: editor/plugins/color_ramp_editor_plugin.cpp
  2693. #: editor/plugins/gradient_texture_editor_plugin.cpp
  2694. msgid "Add/Remove Color Ramp Point"
  2695. msgstr ""
  2696. #: editor/plugins/color_ramp_editor_plugin.cpp
  2697. #: editor/plugins/gradient_texture_editor_plugin.cpp
  2698. #: editor/plugins/shader_graph_editor_plugin.cpp
  2699. msgid "Modify Color Ramp"
  2700. msgstr ""
  2701. #: editor/plugins/cube_grid_theme_editor_plugin.cpp
  2702. msgid "Creating Mesh Library"
  2703. msgstr ""
  2704. #: editor/plugins/cube_grid_theme_editor_plugin.cpp
  2705. msgid "Thumbnail.."
  2706. msgstr ""
  2707. #: editor/plugins/cube_grid_theme_editor_plugin.cpp
  2708. msgid "Remove item %d?"
  2709. msgstr ""
  2710. #: editor/plugins/cube_grid_theme_editor_plugin.cpp
  2711. #: editor/plugins/theme_editor_plugin.cpp
  2712. #: editor/plugins/tile_set_editor_plugin.cpp
  2713. msgid "Add Item"
  2714. msgstr ""
  2715. #: editor/plugins/cube_grid_theme_editor_plugin.cpp
  2716. msgid "Remove Selected Item"
  2717. msgstr ""
  2718. #: editor/plugins/cube_grid_theme_editor_plugin.cpp
  2719. msgid "Import from Scene"
  2720. msgstr ""
  2721. #: editor/plugins/cube_grid_theme_editor_plugin.cpp
  2722. msgid "Update from Scene"
  2723. msgstr ""
  2724. #: editor/plugins/curve_editor_plugin.cpp
  2725. msgid "Modify Curve"
  2726. msgstr ""
  2727. #: editor/plugins/item_list_editor_plugin.cpp
  2728. msgid "Item %d"
  2729. msgstr ""
  2730. #: editor/plugins/item_list_editor_plugin.cpp
  2731. msgid "Items"
  2732. msgstr ""
  2733. #: editor/plugins/item_list_editor_plugin.cpp
  2734. msgid "Item List Editor"
  2735. msgstr ""
  2736. #: editor/plugins/light_occluder_2d_editor_plugin.cpp
  2737. msgid "Create Occluder Polygon"
  2738. msgstr ""
  2739. #: editor/plugins/light_occluder_2d_editor_plugin.cpp
  2740. #: editor/plugins/navigation_polygon_editor_plugin.cpp
  2741. msgid "Edit existing polygon:"
  2742. msgstr ""
  2743. #: editor/plugins/light_occluder_2d_editor_plugin.cpp
  2744. #: editor/plugins/navigation_polygon_editor_plugin.cpp
  2745. msgid "LMB: Move Point."
  2746. msgstr ""
  2747. #: editor/plugins/light_occluder_2d_editor_plugin.cpp
  2748. #: editor/plugins/navigation_polygon_editor_plugin.cpp
  2749. msgid "Ctrl+LMB: Split Segment."
  2750. msgstr ""
  2751. #: editor/plugins/light_occluder_2d_editor_plugin.cpp
  2752. #: editor/plugins/navigation_polygon_editor_plugin.cpp
  2753. msgid "RMB: Erase Point."
  2754. msgstr ""
  2755. #: editor/plugins/line_2d_editor_plugin.cpp
  2756. msgid "Remove Point from Line2D"
  2757. msgstr ""
  2758. #: editor/plugins/line_2d_editor_plugin.cpp
  2759. msgid "Add Point to Line2D"
  2760. msgstr ""
  2761. #: editor/plugins/line_2d_editor_plugin.cpp
  2762. msgid "Move Point in Line2D"
  2763. msgstr ""
  2764. #: editor/plugins/line_2d_editor_plugin.cpp
  2765. #: editor/plugins/path_2d_editor_plugin.cpp
  2766. #: editor/plugins/path_editor_plugin.cpp
  2767. msgid "Select Points"
  2768. msgstr ""
  2769. #: editor/plugins/line_2d_editor_plugin.cpp
  2770. #: editor/plugins/path_2d_editor_plugin.cpp
  2771. #: editor/plugins/path_editor_plugin.cpp
  2772. msgid "Shift+Drag: Select Control Points"
  2773. msgstr ""
  2774. #: editor/plugins/line_2d_editor_plugin.cpp
  2775. #: editor/plugins/path_2d_editor_plugin.cpp
  2776. #: editor/plugins/path_editor_plugin.cpp
  2777. msgid "Click: Add Point"
  2778. msgstr ""
  2779. #: editor/plugins/line_2d_editor_plugin.cpp
  2780. #: editor/plugins/path_2d_editor_plugin.cpp
  2781. #: editor/plugins/path_editor_plugin.cpp
  2782. msgid "Right Click: Delete Point"
  2783. msgstr ""
  2784. #: editor/plugins/line_2d_editor_plugin.cpp
  2785. #: editor/plugins/path_2d_editor_plugin.cpp
  2786. #: editor/plugins/path_editor_plugin.cpp
  2787. msgid "Add Point (in empty space)"
  2788. msgstr ""
  2789. #: editor/plugins/line_2d_editor_plugin.cpp
  2790. msgid "Split Segment (in line)"
  2791. msgstr ""
  2792. #: editor/plugins/line_2d_editor_plugin.cpp
  2793. #: editor/plugins/path_2d_editor_plugin.cpp
  2794. #: editor/plugins/path_editor_plugin.cpp
  2795. msgid "Delete Point"
  2796. msgstr ""
  2797. #: editor/plugins/mesh_instance_editor_plugin.cpp
  2798. msgid "Mesh is empty!"
  2799. msgstr ""
  2800. #: editor/plugins/mesh_instance_editor_plugin.cpp
  2801. msgid "Create Static Trimesh Body"
  2802. msgstr ""
  2803. #: editor/plugins/mesh_instance_editor_plugin.cpp
  2804. msgid "Create Static Convex Body"
  2805. msgstr ""
  2806. #: editor/plugins/mesh_instance_editor_plugin.cpp
  2807. msgid "This doesn't work on scene root!"
  2808. msgstr ""
  2809. #: editor/plugins/mesh_instance_editor_plugin.cpp
  2810. msgid "Create Trimesh Shape"
  2811. msgstr ""
  2812. #: editor/plugins/mesh_instance_editor_plugin.cpp
  2813. msgid "Create Convex Shape"
  2814. msgstr ""
  2815. #: editor/plugins/mesh_instance_editor_plugin.cpp
  2816. msgid "Create Navigation Mesh"
  2817. msgstr ""
  2818. #: editor/plugins/mesh_instance_editor_plugin.cpp
  2819. msgid "MeshInstance lacks a Mesh!"
  2820. msgstr ""
  2821. #: editor/plugins/mesh_instance_editor_plugin.cpp
  2822. msgid "Mesh has not surface to create outlines from!"
  2823. msgstr ""
  2824. #: editor/plugins/mesh_instance_editor_plugin.cpp
  2825. msgid "Could not create outline!"
  2826. msgstr ""
  2827. #: editor/plugins/mesh_instance_editor_plugin.cpp
  2828. msgid "Create Outline"
  2829. msgstr ""
  2830. #: editor/plugins/mesh_instance_editor_plugin.cpp
  2831. msgid "Create Trimesh Static Body"
  2832. msgstr ""
  2833. #: editor/plugins/mesh_instance_editor_plugin.cpp
  2834. msgid "Create Convex Static Body"
  2835. msgstr ""
  2836. #: editor/plugins/mesh_instance_editor_plugin.cpp
  2837. msgid "Create Trimesh Collision Sibling"
  2838. msgstr ""
  2839. #: editor/plugins/mesh_instance_editor_plugin.cpp
  2840. msgid "Create Convex Collision Sibling"
  2841. msgstr ""
  2842. #: editor/plugins/mesh_instance_editor_plugin.cpp
  2843. msgid "Create Outline Mesh.."
  2844. msgstr ""
  2845. #: editor/plugins/mesh_instance_editor_plugin.cpp
  2846. msgid "Create Outline Mesh"
  2847. msgstr ""
  2848. #: editor/plugins/mesh_instance_editor_plugin.cpp
  2849. msgid "Outline Size:"
  2850. msgstr ""
  2851. #: editor/plugins/multimesh_editor_plugin.cpp
  2852. msgid "No mesh source specified (and no MultiMesh set in node)."
  2853. msgstr ""
  2854. #: editor/plugins/multimesh_editor_plugin.cpp
  2855. msgid "No mesh source specified (and MultiMesh contains no Mesh)."
  2856. msgstr ""
  2857. #: editor/plugins/multimesh_editor_plugin.cpp
  2858. msgid "Mesh source is invalid (invalid path)."
  2859. msgstr ""
  2860. #: editor/plugins/multimesh_editor_plugin.cpp
  2861. msgid "Mesh source is invalid (not a MeshInstance)."
  2862. msgstr ""
  2863. #: editor/plugins/multimesh_editor_plugin.cpp
  2864. msgid "Mesh source is invalid (contains no Mesh resource)."
  2865. msgstr ""
  2866. #: editor/plugins/multimesh_editor_plugin.cpp
  2867. msgid "No surface source specified."
  2868. msgstr ""
  2869. #: editor/plugins/multimesh_editor_plugin.cpp
  2870. msgid "Surface source is invalid (invalid path)."
  2871. msgstr ""
  2872. #: editor/plugins/multimesh_editor_plugin.cpp
  2873. msgid "Surface source is invalid (no geometry)."
  2874. msgstr ""
  2875. #: editor/plugins/multimesh_editor_plugin.cpp
  2876. msgid "Surface source is invalid (no faces)."
  2877. msgstr ""
  2878. #: editor/plugins/multimesh_editor_plugin.cpp
  2879. msgid "Parent has no solid faces to populate."
  2880. msgstr ""
  2881. #: editor/plugins/multimesh_editor_plugin.cpp
  2882. msgid "Couldn't map area."
  2883. msgstr ""
  2884. #: editor/plugins/multimesh_editor_plugin.cpp
  2885. msgid "Select a Source Mesh:"
  2886. msgstr ""
  2887. #: editor/plugins/multimesh_editor_plugin.cpp
  2888. msgid "Select a Target Surface:"
  2889. msgstr ""
  2890. #: editor/plugins/multimesh_editor_plugin.cpp
  2891. msgid "Populate Surface"
  2892. msgstr ""
  2893. #: editor/plugins/multimesh_editor_plugin.cpp
  2894. msgid "Populate MultiMesh"
  2895. msgstr ""
  2896. #: editor/plugins/multimesh_editor_plugin.cpp
  2897. msgid "Target Surface:"
  2898. msgstr ""
  2899. #: editor/plugins/multimesh_editor_plugin.cpp
  2900. msgid "Source Mesh:"
  2901. msgstr ""
  2902. #: editor/plugins/multimesh_editor_plugin.cpp
  2903. msgid "X-Axis"
  2904. msgstr ""
  2905. #: editor/plugins/multimesh_editor_plugin.cpp
  2906. msgid "Y-Axis"
  2907. msgstr ""
  2908. #: editor/plugins/multimesh_editor_plugin.cpp
  2909. msgid "Z-Axis"
  2910. msgstr ""
  2911. #: editor/plugins/multimesh_editor_plugin.cpp
  2912. msgid "Mesh Up Axis:"
  2913. msgstr ""
  2914. #: editor/plugins/multimesh_editor_plugin.cpp
  2915. msgid "Random Rotation:"
  2916. msgstr ""
  2917. #: editor/plugins/multimesh_editor_plugin.cpp
  2918. msgid "Random Tilt:"
  2919. msgstr ""
  2920. #: editor/plugins/multimesh_editor_plugin.cpp
  2921. msgid "Random Scale:"
  2922. msgstr ""
  2923. #: editor/plugins/multimesh_editor_plugin.cpp
  2924. msgid "Populate"
  2925. msgstr ""
  2926. #: editor/plugins/navigation_polygon_editor_plugin.cpp
  2927. msgid "Create Navigation Polygon"
  2928. msgstr ""
  2929. #: editor/plugins/navigation_polygon_editor_plugin.cpp
  2930. msgid "Remove Poly And Point"
  2931. msgstr ""
  2932. #: editor/plugins/particles_2d_editor_plugin.cpp
  2933. msgid "Error loading image:"
  2934. msgstr ""
  2935. #: editor/plugins/particles_2d_editor_plugin.cpp
  2936. msgid "No pixels with transparency > 128 in image.."
  2937. msgstr ""
  2938. #: editor/plugins/particles_2d_editor_plugin.cpp
  2939. msgid "Set Emission Mask"
  2940. msgstr ""
  2941. #: editor/plugins/particles_2d_editor_plugin.cpp
  2942. msgid "Clear Emission Mask"
  2943. msgstr ""
  2944. #: editor/plugins/particles_2d_editor_plugin.cpp
  2945. msgid "Load Emission Mask"
  2946. msgstr ""
  2947. #: editor/plugins/particles_2d_editor_plugin.cpp
  2948. msgid "Generated Point Count:"
  2949. msgstr ""
  2950. #: editor/plugins/particles_editor_plugin.cpp
  2951. msgid "Node does not contain geometry."
  2952. msgstr ""
  2953. #: editor/plugins/particles_editor_plugin.cpp
  2954. msgid "Node does not contain geometry (faces)."
  2955. msgstr ""
  2956. #: editor/plugins/particles_editor_plugin.cpp
  2957. msgid "A processor material of type 'ParticlesMaterial' is required."
  2958. msgstr ""
  2959. #: editor/plugins/particles_editor_plugin.cpp
  2960. msgid "Generating AABB"
  2961. msgstr ""
  2962. #: editor/plugins/particles_editor_plugin.cpp
  2963. msgid "Faces contain no area!"
  2964. msgstr ""
  2965. #: editor/plugins/particles_editor_plugin.cpp
  2966. msgid "No faces!"
  2967. msgstr ""
  2968. #: editor/plugins/particles_editor_plugin.cpp
  2969. msgid "Generate AABB"
  2970. msgstr ""
  2971. #: editor/plugins/particles_editor_plugin.cpp
  2972. msgid "Create Emission Points From Mesh"
  2973. msgstr ""
  2974. #: editor/plugins/particles_editor_plugin.cpp
  2975. msgid "Create Emission Points From Node"
  2976. msgstr ""
  2977. #: editor/plugins/particles_editor_plugin.cpp
  2978. msgid "Clear Emitter"
  2979. msgstr ""
  2980. #: editor/plugins/particles_editor_plugin.cpp
  2981. msgid "Create Emitter"
  2982. msgstr ""
  2983. #: editor/plugins/particles_editor_plugin.cpp
  2984. msgid "Emission Points:"
  2985. msgstr ""
  2986. #: editor/plugins/particles_editor_plugin.cpp
  2987. msgid "Surface Points"
  2988. msgstr ""
  2989. #: editor/plugins/particles_editor_plugin.cpp
  2990. msgid "Surface Points+Normal (Directed)"
  2991. msgstr ""
  2992. #: editor/plugins/particles_editor_plugin.cpp
  2993. msgid "Volume"
  2994. msgstr ""
  2995. #: editor/plugins/particles_editor_plugin.cpp
  2996. msgid "Emission Source: "
  2997. msgstr ""
  2998. #: editor/plugins/particles_editor_plugin.cpp
  2999. msgid "Generate Visibility AABB"
  3000. msgstr ""
  3001. #: editor/plugins/particles_editor_plugin.cpp
  3002. msgid "Generation Time (sec):"
  3003. msgstr ""
  3004. #: editor/plugins/path_2d_editor_plugin.cpp
  3005. msgid "Remove Point from Curve"
  3006. msgstr ""
  3007. #: editor/plugins/path_2d_editor_plugin.cpp
  3008. #: editor/plugins/path_editor_plugin.cpp
  3009. msgid "Add Point to Curve"
  3010. msgstr ""
  3011. #: editor/plugins/path_2d_editor_plugin.cpp
  3012. msgid "Move Point in Curve"
  3013. msgstr ""
  3014. #: editor/plugins/path_2d_editor_plugin.cpp
  3015. msgid "Move In-Control in Curve"
  3016. msgstr ""
  3017. #: editor/plugins/path_2d_editor_plugin.cpp
  3018. msgid "Move Out-Control in Curve"
  3019. msgstr ""
  3020. #: editor/plugins/path_2d_editor_plugin.cpp
  3021. msgid "Select Control Points (Shift+Drag)"
  3022. msgstr ""
  3023. #: editor/plugins/path_2d_editor_plugin.cpp
  3024. #: editor/plugins/path_editor_plugin.cpp
  3025. msgid "Split Segment (in curve)"
  3026. msgstr ""
  3027. #: editor/plugins/path_2d_editor_plugin.cpp
  3028. #: editor/plugins/path_editor_plugin.cpp
  3029. msgid "Close Curve"
  3030. msgstr ""
  3031. #: editor/plugins/path_editor_plugin.cpp
  3032. msgid "Curve Point #"
  3033. msgstr ""
  3034. #: editor/plugins/path_editor_plugin.cpp
  3035. msgid "Set Curve Point Pos"
  3036. msgstr ""
  3037. #: editor/plugins/path_editor_plugin.cpp
  3038. msgid "Set Curve In Pos"
  3039. msgstr ""
  3040. #: editor/plugins/path_editor_plugin.cpp
  3041. msgid "Set Curve Out Pos"
  3042. msgstr ""
  3043. #: editor/plugins/path_editor_plugin.cpp
  3044. msgid "Split Path"
  3045. msgstr ""
  3046. #: editor/plugins/path_editor_plugin.cpp
  3047. msgid "Remove Path Point"
  3048. msgstr ""
  3049. #: editor/plugins/polygon_2d_editor_plugin.cpp
  3050. msgid "Create UV Map"
  3051. msgstr ""
  3052. #: editor/plugins/polygon_2d_editor_plugin.cpp
  3053. msgid "Transform UV Map"
  3054. msgstr ""
  3055. #: editor/plugins/polygon_2d_editor_plugin.cpp
  3056. msgid "Polygon 2D UV Editor"
  3057. msgstr ""
  3058. #: editor/plugins/polygon_2d_editor_plugin.cpp
  3059. msgid "Move Point"
  3060. msgstr ""
  3061. #: editor/plugins/polygon_2d_editor_plugin.cpp
  3062. msgid "Ctrl: Rotate"
  3063. msgstr ""
  3064. #: editor/plugins/polygon_2d_editor_plugin.cpp
  3065. msgid "Shift: Move All"
  3066. msgstr ""
  3067. #: editor/plugins/polygon_2d_editor_plugin.cpp
  3068. msgid "Shift+Ctrl: Scale"
  3069. msgstr ""
  3070. #: editor/plugins/polygon_2d_editor_plugin.cpp
  3071. msgid "Move Polygon"
  3072. msgstr ""
  3073. #: editor/plugins/polygon_2d_editor_plugin.cpp
  3074. msgid "Rotate Polygon"
  3075. msgstr ""
  3076. #: editor/plugins/polygon_2d_editor_plugin.cpp
  3077. msgid "Scale Polygon"
  3078. msgstr ""
  3079. #: editor/plugins/polygon_2d_editor_plugin.cpp
  3080. msgid "Polygon->UV"
  3081. msgstr ""
  3082. #: editor/plugins/polygon_2d_editor_plugin.cpp
  3083. msgid "UV->Polygon"
  3084. msgstr ""
  3085. #: editor/plugins/polygon_2d_editor_plugin.cpp
  3086. msgid "Clear UV"
  3087. msgstr ""
  3088. #: editor/plugins/polygon_2d_editor_plugin.cpp
  3089. #: editor/plugins/spatial_editor_plugin.cpp
  3090. msgid "Snap"
  3091. msgstr ""
  3092. #: editor/plugins/polygon_2d_editor_plugin.cpp
  3093. msgid "Enable Snap"
  3094. msgstr ""
  3095. #: editor/plugins/polygon_2d_editor_plugin.cpp
  3096. msgid "Grid"
  3097. msgstr ""
  3098. #: editor/plugins/resource_preloader_editor_plugin.cpp
  3099. msgid "ERROR: Couldn't load resource!"
  3100. msgstr ""
  3101. #: editor/plugins/resource_preloader_editor_plugin.cpp
  3102. msgid "Add Resource"
  3103. msgstr ""
  3104. #: editor/plugins/resource_preloader_editor_plugin.cpp
  3105. msgid "Rename Resource"
  3106. msgstr ""
  3107. #: editor/plugins/resource_preloader_editor_plugin.cpp
  3108. #: editor/plugins/sprite_frames_editor_plugin.cpp
  3109. msgid "Delete Resource"
  3110. msgstr ""
  3111. #: editor/plugins/resource_preloader_editor_plugin.cpp
  3112. msgid "Resource clipboard is empty!"
  3113. msgstr ""
  3114. #: editor/plugins/resource_preloader_editor_plugin.cpp
  3115. #: editor/plugins/sprite_frames_editor_plugin.cpp
  3116. msgid "Load Resource"
  3117. msgstr ""
  3118. #: editor/plugins/resource_preloader_editor_plugin.cpp
  3119. #: editor/plugins/script_text_editor.cpp
  3120. #: editor/plugins/shader_editor_plugin.cpp
  3121. #: editor/plugins/sprite_frames_editor_plugin.cpp editor/property_editor.cpp
  3122. #: editor/resources_dock.cpp scene/gui/line_edit.cpp scene/gui/text_edit.cpp
  3123. msgid "Paste"
  3124. msgstr ""
  3125. #: editor/plugins/rich_text_editor_plugin.cpp
  3126. msgid "Parse BBCode"
  3127. msgstr ""
  3128. #: editor/plugins/sample_editor_plugin.cpp
  3129. msgid "Length:"
  3130. msgstr ""
  3131. #: editor/plugins/sample_library_editor_plugin.cpp
  3132. msgid "Open Sample File(s)"
  3133. msgstr ""
  3134. #: editor/plugins/sample_library_editor_plugin.cpp
  3135. msgid "ERROR: Couldn't load sample!"
  3136. msgstr ""
  3137. #: editor/plugins/sample_library_editor_plugin.cpp
  3138. msgid "Add Sample"
  3139. msgstr ""
  3140. #: editor/plugins/sample_library_editor_plugin.cpp
  3141. msgid "Rename Sample"
  3142. msgstr ""
  3143. #: editor/plugins/sample_library_editor_plugin.cpp
  3144. msgid "Delete Sample"
  3145. msgstr ""
  3146. #: editor/plugins/sample_library_editor_plugin.cpp
  3147. msgid "16 Bits"
  3148. msgstr ""
  3149. #: editor/plugins/sample_library_editor_plugin.cpp
  3150. msgid "8 Bits"
  3151. msgstr ""
  3152. #: editor/plugins/sample_library_editor_plugin.cpp
  3153. msgid "Stereo"
  3154. msgstr ""
  3155. #: editor/plugins/sample_library_editor_plugin.cpp
  3156. msgid "Mono"
  3157. msgstr ""
  3158. #: editor/plugins/sample_library_editor_plugin.cpp
  3159. #: editor/script_editor_debugger.cpp
  3160. msgid "Format"
  3161. msgstr ""
  3162. #: editor/plugins/sample_library_editor_plugin.cpp
  3163. msgid "Pitch"
  3164. msgstr ""
  3165. #: editor/plugins/script_editor_plugin.cpp
  3166. msgid "Error while saving theme"
  3167. msgstr ""
  3168. #: editor/plugins/script_editor_plugin.cpp
  3169. msgid "Error saving"
  3170. msgstr ""
  3171. #: editor/plugins/script_editor_plugin.cpp
  3172. msgid "Error importing theme"
  3173. msgstr ""
  3174. #: editor/plugins/script_editor_plugin.cpp
  3175. msgid "Error importing"
  3176. msgstr ""
  3177. #: editor/plugins/script_editor_plugin.cpp
  3178. msgid "Import Theme"
  3179. msgstr ""
  3180. #: editor/plugins/script_editor_plugin.cpp
  3181. msgid "Save Theme As.."
  3182. msgstr ""
  3183. #: editor/plugins/script_editor_plugin.cpp
  3184. msgid "Next script"
  3185. msgstr ""
  3186. #: editor/plugins/script_editor_plugin.cpp
  3187. msgid "Previous script"
  3188. msgstr ""
  3189. #: editor/plugins/script_editor_plugin.cpp
  3190. msgid "File"
  3191. msgstr ""
  3192. #: editor/plugins/script_editor_plugin.cpp editor/property_editor.cpp
  3193. msgid "New"
  3194. msgstr ""
  3195. #: editor/plugins/script_editor_plugin.cpp
  3196. msgid "Save All"
  3197. msgstr ""
  3198. #: editor/plugins/script_editor_plugin.cpp
  3199. msgid "Soft Reload Script"
  3200. msgstr ""
  3201. #: editor/plugins/script_editor_plugin.cpp
  3202. msgid "History Prev"
  3203. msgstr ""
  3204. #: editor/plugins/script_editor_plugin.cpp
  3205. msgid "History Next"
  3206. msgstr ""
  3207. #: editor/plugins/script_editor_plugin.cpp
  3208. msgid "Reload Theme"
  3209. msgstr ""
  3210. #: editor/plugins/script_editor_plugin.cpp
  3211. msgid "Save Theme"
  3212. msgstr ""
  3213. #: editor/plugins/script_editor_plugin.cpp
  3214. msgid "Save Theme As"
  3215. msgstr ""
  3216. #: editor/plugins/script_editor_plugin.cpp
  3217. msgid "Close Docs"
  3218. msgstr ""
  3219. #: editor/plugins/script_editor_plugin.cpp
  3220. msgid "Close All"
  3221. msgstr ""
  3222. #: editor/plugins/script_editor_plugin.cpp
  3223. #: editor/plugins/script_text_editor.cpp
  3224. #: editor/plugins/shader_editor_plugin.cpp
  3225. msgid "Find.."
  3226. msgstr ""
  3227. #: editor/plugins/script_editor_plugin.cpp
  3228. #: editor/plugins/script_text_editor.cpp
  3229. #: editor/plugins/shader_editor_plugin.cpp
  3230. msgid "Find Next"
  3231. msgstr ""
  3232. #: editor/plugins/script_editor_plugin.cpp
  3233. msgid "Debug"
  3234. msgstr ""
  3235. #: editor/plugins/script_editor_plugin.cpp editor/script_editor_debugger.cpp
  3236. msgid "Step Over"
  3237. msgstr ""
  3238. #: editor/plugins/script_editor_plugin.cpp editor/script_editor_debugger.cpp
  3239. msgid "Step Into"
  3240. msgstr ""
  3241. #: editor/plugins/script_editor_plugin.cpp editor/script_editor_debugger.cpp
  3242. msgid "Break"
  3243. msgstr ""
  3244. #: editor/plugins/script_editor_plugin.cpp editor/script_editor_debugger.cpp
  3245. msgid "Continue"
  3246. msgstr ""
  3247. #: editor/plugins/script_editor_plugin.cpp
  3248. msgid "Keep Debugger Open"
  3249. msgstr ""
  3250. #: editor/plugins/script_editor_plugin.cpp
  3251. msgid "Window"
  3252. msgstr ""
  3253. #: editor/plugins/script_editor_plugin.cpp
  3254. msgid "Move Left"
  3255. msgstr ""
  3256. #: editor/plugins/script_editor_plugin.cpp
  3257. msgid "Move Right"
  3258. msgstr ""
  3259. #: editor/plugins/script_editor_plugin.cpp
  3260. msgid "Tutorials"
  3261. msgstr ""
  3262. #: editor/plugins/script_editor_plugin.cpp
  3263. msgid "Open https://godotengine.org at tutorials section."
  3264. msgstr ""
  3265. #: editor/plugins/script_editor_plugin.cpp
  3266. msgid "Classes"
  3267. msgstr ""
  3268. #: editor/plugins/script_editor_plugin.cpp
  3269. msgid "Search the class hierarchy."
  3270. msgstr ""
  3271. #: editor/plugins/script_editor_plugin.cpp
  3272. msgid "Search the reference documentation."
  3273. msgstr ""
  3274. #: editor/plugins/script_editor_plugin.cpp
  3275. msgid "Go to previous edited document."
  3276. msgstr ""
  3277. #: editor/plugins/script_editor_plugin.cpp
  3278. msgid "Go to next edited document."
  3279. msgstr ""
  3280. #: editor/plugins/script_editor_plugin.cpp
  3281. msgid "Discard"
  3282. msgstr ""
  3283. #: editor/plugins/script_editor_plugin.cpp
  3284. msgid "Create Script"
  3285. msgstr ""
  3286. #: editor/plugins/script_editor_plugin.cpp
  3287. msgid ""
  3288. "The following files are newer on disk.\n"
  3289. "What action should be taken?:"
  3290. msgstr ""
  3291. #: editor/plugins/script_editor_plugin.cpp
  3292. msgid "Reload"
  3293. msgstr ""
  3294. #: editor/plugins/script_editor_plugin.cpp
  3295. msgid "Resave"
  3296. msgstr ""
  3297. #: editor/plugins/script_editor_plugin.cpp editor/script_editor_debugger.cpp
  3298. msgid "Debugger"
  3299. msgstr ""
  3300. #: editor/plugins/script_editor_plugin.cpp
  3301. msgid ""
  3302. "Built-in scripts can only be edited when the scene they belong to is loaded"
  3303. msgstr ""
  3304. #: editor/plugins/script_text_editor.cpp
  3305. msgid "Pick Color"
  3306. msgstr ""
  3307. #: editor/plugins/script_text_editor.cpp
  3308. #: editor/plugins/shader_editor_plugin.cpp scene/gui/line_edit.cpp
  3309. #: scene/gui/text_edit.cpp
  3310. msgid "Cut"
  3311. msgstr ""
  3312. #: editor/plugins/script_text_editor.cpp
  3313. #: editor/plugins/shader_editor_plugin.cpp editor/property_editor.cpp
  3314. #: editor/resources_dock.cpp scene/gui/line_edit.cpp scene/gui/text_edit.cpp
  3315. msgid "Copy"
  3316. msgstr ""
  3317. #: editor/plugins/script_text_editor.cpp
  3318. #: editor/plugins/shader_editor_plugin.cpp scene/gui/line_edit.cpp
  3319. #: scene/gui/text_edit.cpp
  3320. msgid "Select All"
  3321. msgstr ""
  3322. #: editor/plugins/script_text_editor.cpp editor/scene_tree_dock.cpp
  3323. msgid "Move Up"
  3324. msgstr ""
  3325. #: editor/plugins/script_text_editor.cpp editor/scene_tree_dock.cpp
  3326. msgid "Move Down"
  3327. msgstr ""
  3328. #: editor/plugins/script_text_editor.cpp
  3329. msgid "Indent Left"
  3330. msgstr ""
  3331. #: editor/plugins/script_text_editor.cpp
  3332. msgid "Indent Right"
  3333. msgstr ""
  3334. #: editor/plugins/script_text_editor.cpp
  3335. msgid "Toggle Comment"
  3336. msgstr ""
  3337. #: editor/plugins/script_text_editor.cpp
  3338. msgid "Clone Down"
  3339. msgstr ""
  3340. #: editor/plugins/script_text_editor.cpp
  3341. msgid "Complete Symbol"
  3342. msgstr ""
  3343. #: editor/plugins/script_text_editor.cpp
  3344. msgid "Trim Trailing Whitespace"
  3345. msgstr ""
  3346. #: editor/plugins/script_text_editor.cpp
  3347. msgid "Convert Indent To Spaces"
  3348. msgstr ""
  3349. #: editor/plugins/script_text_editor.cpp
  3350. msgid "Convert Indent To Tabs"
  3351. msgstr ""
  3352. #: editor/plugins/script_text_editor.cpp
  3353. msgid "Auto Indent"
  3354. msgstr ""
  3355. #: editor/plugins/script_text_editor.cpp
  3356. #: modules/visual_script/visual_script_editor.cpp
  3357. msgid "Toggle Breakpoint"
  3358. msgstr ""
  3359. #: editor/plugins/script_text_editor.cpp
  3360. msgid "Remove All Breakpoints"
  3361. msgstr ""
  3362. #: editor/plugins/script_text_editor.cpp
  3363. msgid "Goto Next Breakpoint"
  3364. msgstr ""
  3365. #: editor/plugins/script_text_editor.cpp
  3366. msgid "Goto Previous Breakpoint"
  3367. msgstr ""
  3368. #: editor/plugins/script_text_editor.cpp
  3369. #: editor/plugins/shader_editor_plugin.cpp
  3370. msgid "Find Previous"
  3371. msgstr ""
  3372. #: editor/plugins/script_text_editor.cpp
  3373. #: editor/plugins/shader_editor_plugin.cpp
  3374. msgid "Replace.."
  3375. msgstr ""
  3376. #: editor/plugins/script_text_editor.cpp
  3377. msgid "Goto Function.."
  3378. msgstr ""
  3379. #: editor/plugins/script_text_editor.cpp
  3380. #: editor/plugins/shader_editor_plugin.cpp
  3381. msgid "Goto Line.."
  3382. msgstr ""
  3383. #: editor/plugins/script_text_editor.cpp
  3384. msgid "Contextual Help"
  3385. msgstr ""
  3386. #: editor/plugins/shader_graph_editor_plugin.cpp
  3387. msgid "Change Scalar Constant"
  3388. msgstr ""
  3389. #: editor/plugins/shader_graph_editor_plugin.cpp
  3390. msgid "Change Vec Constant"
  3391. msgstr ""
  3392. #: editor/plugins/shader_graph_editor_plugin.cpp
  3393. msgid "Change RGB Constant"
  3394. msgstr ""
  3395. #: editor/plugins/shader_graph_editor_plugin.cpp
  3396. msgid "Change Scalar Operator"
  3397. msgstr ""
  3398. #: editor/plugins/shader_graph_editor_plugin.cpp
  3399. msgid "Change Vec Operator"
  3400. msgstr ""
  3401. #: editor/plugins/shader_graph_editor_plugin.cpp
  3402. msgid "Change Vec Scalar Operator"
  3403. msgstr ""
  3404. #: editor/plugins/shader_graph_editor_plugin.cpp
  3405. msgid "Change RGB Operator"
  3406. msgstr ""
  3407. #: editor/plugins/shader_graph_editor_plugin.cpp
  3408. msgid "Toggle Rot Only"
  3409. msgstr ""
  3410. #: editor/plugins/shader_graph_editor_plugin.cpp
  3411. msgid "Change Scalar Function"
  3412. msgstr ""
  3413. #: editor/plugins/shader_graph_editor_plugin.cpp
  3414. msgid "Change Vec Function"
  3415. msgstr ""
  3416. #: editor/plugins/shader_graph_editor_plugin.cpp
  3417. msgid "Change Scalar Uniform"
  3418. msgstr ""
  3419. #: editor/plugins/shader_graph_editor_plugin.cpp
  3420. msgid "Change Vec Uniform"
  3421. msgstr ""
  3422. #: editor/plugins/shader_graph_editor_plugin.cpp
  3423. msgid "Change RGB Uniform"
  3424. msgstr ""
  3425. #: editor/plugins/shader_graph_editor_plugin.cpp
  3426. msgid "Change Default Value"
  3427. msgstr ""
  3428. #: editor/plugins/shader_graph_editor_plugin.cpp
  3429. msgid "Change XForm Uniform"
  3430. msgstr ""
  3431. #: editor/plugins/shader_graph_editor_plugin.cpp
  3432. msgid "Change Texture Uniform"
  3433. msgstr ""
  3434. #: editor/plugins/shader_graph_editor_plugin.cpp
  3435. msgid "Change Cubemap Uniform"
  3436. msgstr ""
  3437. #: editor/plugins/shader_graph_editor_plugin.cpp
  3438. msgid "Change Comment"
  3439. msgstr ""
  3440. #: editor/plugins/shader_graph_editor_plugin.cpp
  3441. msgid "Add/Remove to Color Ramp"
  3442. msgstr ""
  3443. #: editor/plugins/shader_graph_editor_plugin.cpp
  3444. msgid "Add/Remove to Curve Map"
  3445. msgstr ""
  3446. #: editor/plugins/shader_graph_editor_plugin.cpp
  3447. msgid "Modify Curve Map"
  3448. msgstr ""
  3449. #: editor/plugins/shader_graph_editor_plugin.cpp
  3450. msgid "Change Input Name"
  3451. msgstr ""
  3452. #: editor/plugins/shader_graph_editor_plugin.cpp
  3453. msgid "Connect Graph Nodes"
  3454. msgstr ""
  3455. #: editor/plugins/shader_graph_editor_plugin.cpp
  3456. msgid "Disconnect Graph Nodes"
  3457. msgstr ""
  3458. #: editor/plugins/shader_graph_editor_plugin.cpp
  3459. msgid "Remove Shader Graph Node"
  3460. msgstr ""
  3461. #: editor/plugins/shader_graph_editor_plugin.cpp
  3462. msgid "Move Shader Graph Node"
  3463. msgstr ""
  3464. #: editor/plugins/shader_graph_editor_plugin.cpp
  3465. msgid "Duplicate Graph Node(s)"
  3466. msgstr ""
  3467. #: editor/plugins/shader_graph_editor_plugin.cpp
  3468. msgid "Delete Shader Graph Node(s)"
  3469. msgstr ""
  3470. #: editor/plugins/shader_graph_editor_plugin.cpp
  3471. msgid "Error: Cyclic Connection Link"
  3472. msgstr ""
  3473. #: editor/plugins/shader_graph_editor_plugin.cpp
  3474. msgid "Error: Missing Input Connections"
  3475. msgstr ""
  3476. #: editor/plugins/shader_graph_editor_plugin.cpp
  3477. msgid "Add Shader Graph Node"
  3478. msgstr ""
  3479. #: editor/plugins/spatial_editor_plugin.cpp
  3480. msgid "Orthogonal"
  3481. msgstr ""
  3482. #: editor/plugins/spatial_editor_plugin.cpp
  3483. msgid "Perspective"
  3484. msgstr ""
  3485. #: editor/plugins/spatial_editor_plugin.cpp
  3486. msgid "Transform Aborted."
  3487. msgstr ""
  3488. #: editor/plugins/spatial_editor_plugin.cpp
  3489. msgid "X-Axis Transform."
  3490. msgstr ""
  3491. #: editor/plugins/spatial_editor_plugin.cpp
  3492. msgid "Y-Axis Transform."
  3493. msgstr ""
  3494. #: editor/plugins/spatial_editor_plugin.cpp
  3495. msgid "Z-Axis Transform."
  3496. msgstr ""
  3497. #: editor/plugins/spatial_editor_plugin.cpp
  3498. msgid "View Plane Transform."
  3499. msgstr ""
  3500. #: editor/plugins/spatial_editor_plugin.cpp
  3501. msgid "Scaling to %s%%."
  3502. msgstr ""
  3503. #: editor/plugins/spatial_editor_plugin.cpp
  3504. msgid "Rotating %s degrees."
  3505. msgstr ""
  3506. #: editor/plugins/spatial_editor_plugin.cpp
  3507. msgid "Bottom View."
  3508. msgstr ""
  3509. #: editor/plugins/spatial_editor_plugin.cpp
  3510. msgid "Bottom"
  3511. msgstr ""
  3512. #: editor/plugins/spatial_editor_plugin.cpp
  3513. msgid "Top View."
  3514. msgstr ""
  3515. #: editor/plugins/spatial_editor_plugin.cpp
  3516. msgid "Top"
  3517. msgstr ""
  3518. #: editor/plugins/spatial_editor_plugin.cpp
  3519. msgid "Rear View."
  3520. msgstr ""
  3521. #: editor/plugins/spatial_editor_plugin.cpp
  3522. msgid "Rear"
  3523. msgstr ""
  3524. #: editor/plugins/spatial_editor_plugin.cpp
  3525. msgid "Front View."
  3526. msgstr ""
  3527. #: editor/plugins/spatial_editor_plugin.cpp
  3528. msgid "Front"
  3529. msgstr ""
  3530. #: editor/plugins/spatial_editor_plugin.cpp
  3531. msgid "Left View."
  3532. msgstr ""
  3533. #: editor/plugins/spatial_editor_plugin.cpp
  3534. msgid "Left"
  3535. msgstr ""
  3536. #: editor/plugins/spatial_editor_plugin.cpp
  3537. msgid "Right View."
  3538. msgstr ""
  3539. #: editor/plugins/spatial_editor_plugin.cpp
  3540. msgid "Right"
  3541. msgstr ""
  3542. #: editor/plugins/spatial_editor_plugin.cpp
  3543. msgid "Keying is disabled (no key inserted)."
  3544. msgstr ""
  3545. #: editor/plugins/spatial_editor_plugin.cpp
  3546. msgid "Animation Key Inserted."
  3547. msgstr ""
  3548. #: editor/plugins/spatial_editor_plugin.cpp
  3549. msgid "Align with view"
  3550. msgstr ""
  3551. #: editor/plugins/spatial_editor_plugin.cpp
  3552. msgid "Environment"
  3553. msgstr ""
  3554. #: editor/plugins/spatial_editor_plugin.cpp
  3555. msgid "Audio Listener"
  3556. msgstr ""
  3557. #: editor/plugins/spatial_editor_plugin.cpp
  3558. msgid "Gizmos"
  3559. msgstr ""
  3560. #: editor/plugins/spatial_editor_plugin.cpp
  3561. msgid "XForm Dialog"
  3562. msgstr ""
  3563. #: editor/plugins/spatial_editor_plugin.cpp
  3564. msgid "No scene selected to instance!"
  3565. msgstr ""
  3566. #: editor/plugins/spatial_editor_plugin.cpp
  3567. msgid "Instance at Cursor"
  3568. msgstr ""
  3569. #: editor/plugins/spatial_editor_plugin.cpp
  3570. msgid "Could not instance scene!"
  3571. msgstr ""
  3572. #: editor/plugins/spatial_editor_plugin.cpp
  3573. msgid "Move Mode (W)"
  3574. msgstr ""
  3575. #: editor/plugins/spatial_editor_plugin.cpp
  3576. msgid "Rotate Mode (E)"
  3577. msgstr ""
  3578. #: editor/plugins/spatial_editor_plugin.cpp
  3579. msgid "Scale Mode (R)"
  3580. msgstr ""
  3581. #: editor/plugins/spatial_editor_plugin.cpp
  3582. msgid "Bottom View"
  3583. msgstr ""
  3584. #: editor/plugins/spatial_editor_plugin.cpp
  3585. msgid "Top View"
  3586. msgstr ""
  3587. #: editor/plugins/spatial_editor_plugin.cpp
  3588. msgid "Rear View"
  3589. msgstr ""
  3590. #: editor/plugins/spatial_editor_plugin.cpp
  3591. msgid "Front View"
  3592. msgstr ""
  3593. #: editor/plugins/spatial_editor_plugin.cpp
  3594. msgid "Left View"
  3595. msgstr ""
  3596. #: editor/plugins/spatial_editor_plugin.cpp
  3597. msgid "Right View"
  3598. msgstr ""
  3599. #: editor/plugins/spatial_editor_plugin.cpp
  3600. msgid "Switch Perspective/Orthogonal view"
  3601. msgstr ""
  3602. #: editor/plugins/spatial_editor_plugin.cpp
  3603. msgid "Insert Animation Key"
  3604. msgstr ""
  3605. #: editor/plugins/spatial_editor_plugin.cpp
  3606. msgid "Focus Origin"
  3607. msgstr ""
  3608. #: editor/plugins/spatial_editor_plugin.cpp
  3609. msgid "Focus Selection"
  3610. msgstr ""
  3611. #: editor/plugins/spatial_editor_plugin.cpp
  3612. msgid "Align Selection With View"
  3613. msgstr ""
  3614. #: editor/plugins/spatial_editor_plugin.cpp
  3615. msgid "Transform"
  3616. msgstr ""
  3617. #: editor/plugins/spatial_editor_plugin.cpp
  3618. msgid "Local Coords"
  3619. msgstr ""
  3620. #: editor/plugins/spatial_editor_plugin.cpp
  3621. msgid "Transform Dialog.."
  3622. msgstr ""
  3623. #: editor/plugins/spatial_editor_plugin.cpp
  3624. msgid "Use Default Light"
  3625. msgstr ""
  3626. #: editor/plugins/spatial_editor_plugin.cpp
  3627. msgid "Use Default sRGB"
  3628. msgstr ""
  3629. #: editor/plugins/spatial_editor_plugin.cpp
  3630. msgid "1 Viewport"
  3631. msgstr ""
  3632. #: editor/plugins/spatial_editor_plugin.cpp
  3633. msgid "2 Viewports"
  3634. msgstr ""
  3635. #: editor/plugins/spatial_editor_plugin.cpp
  3636. msgid "2 Viewports (Alt)"
  3637. msgstr ""
  3638. #: editor/plugins/spatial_editor_plugin.cpp
  3639. msgid "3 Viewports"
  3640. msgstr ""
  3641. #: editor/plugins/spatial_editor_plugin.cpp
  3642. msgid "3 Viewports (Alt)"
  3643. msgstr ""
  3644. #: editor/plugins/spatial_editor_plugin.cpp
  3645. msgid "4 Viewports"
  3646. msgstr ""
  3647. #: editor/plugins/spatial_editor_plugin.cpp
  3648. msgid "Display Normal"
  3649. msgstr ""
  3650. #: editor/plugins/spatial_editor_plugin.cpp
  3651. msgid "Display Wireframe"
  3652. msgstr ""
  3653. #: editor/plugins/spatial_editor_plugin.cpp
  3654. msgid "Display Overdraw"
  3655. msgstr ""
  3656. #: editor/plugins/spatial_editor_plugin.cpp
  3657. msgid "Display Shadeless"
  3658. msgstr ""
  3659. #: editor/plugins/spatial_editor_plugin.cpp
  3660. msgid "View Origin"
  3661. msgstr ""
  3662. #: editor/plugins/spatial_editor_plugin.cpp
  3663. msgid "View Grid"
  3664. msgstr ""
  3665. #: editor/plugins/spatial_editor_plugin.cpp
  3666. msgid "Snap Settings"
  3667. msgstr ""
  3668. #: editor/plugins/spatial_editor_plugin.cpp
  3669. msgid "Translate Snap:"
  3670. msgstr ""
  3671. #: editor/plugins/spatial_editor_plugin.cpp
  3672. msgid "Rotate Snap (deg.):"
  3673. msgstr ""
  3674. #: editor/plugins/spatial_editor_plugin.cpp
  3675. msgid "Scale Snap (%):"
  3676. msgstr ""
  3677. #: editor/plugins/spatial_editor_plugin.cpp
  3678. msgid "Viewport Settings"
  3679. msgstr ""
  3680. #: editor/plugins/spatial_editor_plugin.cpp
  3681. msgid "Default Light Normal:"
  3682. msgstr ""
  3683. #: editor/plugins/spatial_editor_plugin.cpp
  3684. msgid "Ambient Light Color:"
  3685. msgstr ""
  3686. #: editor/plugins/spatial_editor_plugin.cpp
  3687. msgid "Perspective FOV (deg.):"
  3688. msgstr ""
  3689. #: editor/plugins/spatial_editor_plugin.cpp
  3690. msgid "View Z-Near:"
  3691. msgstr ""
  3692. #: editor/plugins/spatial_editor_plugin.cpp
  3693. msgid "View Z-Far:"
  3694. msgstr ""
  3695. #: editor/plugins/spatial_editor_plugin.cpp
  3696. msgid "Transform Change"
  3697. msgstr ""
  3698. #: editor/plugins/spatial_editor_plugin.cpp
  3699. msgid "Translate:"
  3700. msgstr ""
  3701. #: editor/plugins/spatial_editor_plugin.cpp
  3702. msgid "Rotate (deg.):"
  3703. msgstr ""
  3704. #: editor/plugins/spatial_editor_plugin.cpp
  3705. msgid "Scale (ratio):"
  3706. msgstr ""
  3707. #: editor/plugins/spatial_editor_plugin.cpp
  3708. msgid "Transform Type"
  3709. msgstr ""
  3710. #: editor/plugins/spatial_editor_plugin.cpp
  3711. msgid "Pre"
  3712. msgstr ""
  3713. #: editor/plugins/spatial_editor_plugin.cpp
  3714. msgid "Post"
  3715. msgstr ""
  3716. #: editor/plugins/sprite_frames_editor_plugin.cpp
  3717. msgid "ERROR: Couldn't load frame resource!"
  3718. msgstr ""
  3719. #: editor/plugins/sprite_frames_editor_plugin.cpp
  3720. msgid "Add Frame"
  3721. msgstr ""
  3722. #: editor/plugins/sprite_frames_editor_plugin.cpp
  3723. msgid "Resource clipboard is empty or not a texture!"
  3724. msgstr ""
  3725. #: editor/plugins/sprite_frames_editor_plugin.cpp
  3726. msgid "Paste Frame"
  3727. msgstr ""
  3728. #: editor/plugins/sprite_frames_editor_plugin.cpp
  3729. msgid "Add Empty"
  3730. msgstr ""
  3731. #: editor/plugins/sprite_frames_editor_plugin.cpp
  3732. msgid "Change Animation Loop"
  3733. msgstr ""
  3734. #: editor/plugins/sprite_frames_editor_plugin.cpp
  3735. msgid "Change Animation FPS"
  3736. msgstr ""
  3737. #: editor/plugins/sprite_frames_editor_plugin.cpp
  3738. msgid "(empty)"
  3739. msgstr ""
  3740. #: editor/plugins/sprite_frames_editor_plugin.cpp
  3741. msgid "Animations"
  3742. msgstr ""
  3743. #: editor/plugins/sprite_frames_editor_plugin.cpp
  3744. msgid "Speed (FPS):"
  3745. msgstr ""
  3746. #: editor/plugins/sprite_frames_editor_plugin.cpp
  3747. msgid "Animation Frames"
  3748. msgstr ""
  3749. #: editor/plugins/sprite_frames_editor_plugin.cpp
  3750. msgid "Insert Empty (Before)"
  3751. msgstr ""
  3752. #: editor/plugins/sprite_frames_editor_plugin.cpp
  3753. msgid "Insert Empty (After)"
  3754. msgstr ""
  3755. #: editor/plugins/sprite_frames_editor_plugin.cpp
  3756. msgid "Up"
  3757. msgstr ""
  3758. #: editor/plugins/sprite_frames_editor_plugin.cpp
  3759. msgid "Down"
  3760. msgstr ""
  3761. #: editor/plugins/style_box_editor_plugin.cpp
  3762. msgid "StyleBox Preview:"
  3763. msgstr ""
  3764. #: editor/plugins/texture_region_editor_plugin.cpp
  3765. msgid "Snap Mode:"
  3766. msgstr ""
  3767. #: editor/plugins/texture_region_editor_plugin.cpp
  3768. msgid "<None>"
  3769. msgstr ""
  3770. #: editor/plugins/texture_region_editor_plugin.cpp
  3771. msgid "Pixel Snap"
  3772. msgstr ""
  3773. #: editor/plugins/texture_region_editor_plugin.cpp
  3774. msgid "Grid Snap"
  3775. msgstr ""
  3776. #: editor/plugins/texture_region_editor_plugin.cpp
  3777. msgid "Auto Slice"
  3778. msgstr ""
  3779. #: editor/plugins/texture_region_editor_plugin.cpp
  3780. msgid "Offset:"
  3781. msgstr ""
  3782. #: editor/plugins/texture_region_editor_plugin.cpp
  3783. msgid "Step:"
  3784. msgstr ""
  3785. #: editor/plugins/texture_region_editor_plugin.cpp
  3786. msgid "Separation:"
  3787. msgstr ""
  3788. #: editor/plugins/texture_region_editor_plugin.cpp
  3789. msgid "Texture Region"
  3790. msgstr ""
  3791. #: editor/plugins/texture_region_editor_plugin.cpp
  3792. msgid "Texture Region Editor"
  3793. msgstr ""
  3794. #: editor/plugins/theme_editor_plugin.cpp
  3795. msgid "Can't save theme to file:"
  3796. msgstr ""
  3797. #: editor/plugins/theme_editor_plugin.cpp
  3798. msgid "Add All Items"
  3799. msgstr ""
  3800. #: editor/plugins/theme_editor_plugin.cpp
  3801. msgid "Add All"
  3802. msgstr ""
  3803. #: editor/plugins/theme_editor_plugin.cpp
  3804. #: editor/plugins/tile_set_editor_plugin.cpp
  3805. msgid "Remove Item"
  3806. msgstr ""
  3807. #: editor/plugins/theme_editor_plugin.cpp
  3808. msgid "Theme"
  3809. msgstr ""
  3810. #: editor/plugins/theme_editor_plugin.cpp
  3811. msgid "Add Class Items"
  3812. msgstr ""
  3813. #: editor/plugins/theme_editor_plugin.cpp
  3814. msgid "Remove Class Items"
  3815. msgstr ""
  3816. #: editor/plugins/theme_editor_plugin.cpp
  3817. msgid "Create Empty Template"
  3818. msgstr ""
  3819. #: editor/plugins/theme_editor_plugin.cpp
  3820. msgid "Create Empty Editor Template"
  3821. msgstr ""
  3822. #: editor/plugins/theme_editor_plugin.cpp
  3823. msgid "CheckBox Radio1"
  3824. msgstr ""
  3825. #: editor/plugins/theme_editor_plugin.cpp
  3826. msgid "CheckBox Radio2"
  3827. msgstr ""
  3828. #: editor/plugins/theme_editor_plugin.cpp
  3829. msgid "Item"
  3830. msgstr ""
  3831. #: editor/plugins/theme_editor_plugin.cpp
  3832. msgid "Check Item"
  3833. msgstr ""
  3834. #: editor/plugins/theme_editor_plugin.cpp
  3835. msgid "Checked Item"
  3836. msgstr ""
  3837. #: editor/plugins/theme_editor_plugin.cpp
  3838. msgid "Has"
  3839. msgstr ""
  3840. #: editor/plugins/theme_editor_plugin.cpp
  3841. msgid "Many"
  3842. msgstr ""
  3843. #: editor/plugins/theme_editor_plugin.cpp editor/project_export.cpp
  3844. msgid "Options"
  3845. msgstr ""
  3846. #: editor/plugins/theme_editor_plugin.cpp
  3847. msgid "Have,Many,Several,Options!"
  3848. msgstr ""
  3849. #: editor/plugins/theme_editor_plugin.cpp
  3850. msgid "Tab 1"
  3851. msgstr ""
  3852. #: editor/plugins/theme_editor_plugin.cpp
  3853. msgid "Tab 2"
  3854. msgstr ""
  3855. #: editor/plugins/theme_editor_plugin.cpp
  3856. msgid "Tab 3"
  3857. msgstr ""
  3858. #: editor/plugins/theme_editor_plugin.cpp editor/project_settings.cpp
  3859. #: editor/scene_tree_editor.cpp editor/script_editor_debugger.cpp
  3860. msgid "Type:"
  3861. msgstr ""
  3862. #: editor/plugins/theme_editor_plugin.cpp
  3863. msgid "Data Type:"
  3864. msgstr ""
  3865. #: editor/plugins/theme_editor_plugin.cpp
  3866. msgid "Icon"
  3867. msgstr ""
  3868. #: editor/plugins/theme_editor_plugin.cpp
  3869. msgid "Style"
  3870. msgstr ""
  3871. #: editor/plugins/theme_editor_plugin.cpp
  3872. msgid "Color"
  3873. msgstr ""
  3874. #: editor/plugins/tile_map_editor_plugin.cpp
  3875. msgid "Paint TileMap"
  3876. msgstr ""
  3877. #: editor/plugins/tile_map_editor_plugin.cpp editor/scene_tree_dock.cpp
  3878. msgid "Duplicate"
  3879. msgstr ""
  3880. #: editor/plugins/tile_map_editor_plugin.cpp
  3881. msgid "Erase TileMap"
  3882. msgstr ""
  3883. #: editor/plugins/tile_map_editor_plugin.cpp
  3884. msgid "Erase selection"
  3885. msgstr ""
  3886. #: editor/plugins/tile_map_editor_plugin.cpp
  3887. msgid "Find tile"
  3888. msgstr ""
  3889. #: editor/plugins/tile_map_editor_plugin.cpp
  3890. msgid "Transpose"
  3891. msgstr ""
  3892. #: editor/plugins/tile_map_editor_plugin.cpp
  3893. msgid "Mirror X"
  3894. msgstr ""
  3895. #: editor/plugins/tile_map_editor_plugin.cpp
  3896. msgid "Mirror Y"
  3897. msgstr ""
  3898. #: editor/plugins/tile_map_editor_plugin.cpp
  3899. msgid "Bucket"
  3900. msgstr ""
  3901. #: editor/plugins/tile_map_editor_plugin.cpp
  3902. msgid "Pick Tile"
  3903. msgstr ""
  3904. #: editor/plugins/tile_map_editor_plugin.cpp
  3905. msgid "Select"
  3906. msgstr ""
  3907. #: editor/plugins/tile_map_editor_plugin.cpp
  3908. msgid "Rotate 0 degrees"
  3909. msgstr ""
  3910. #: editor/plugins/tile_map_editor_plugin.cpp
  3911. msgid "Rotate 90 degrees"
  3912. msgstr ""
  3913. #: editor/plugins/tile_map_editor_plugin.cpp
  3914. msgid "Rotate 180 degrees"
  3915. msgstr ""
  3916. #: editor/plugins/tile_map_editor_plugin.cpp
  3917. msgid "Rotate 270 degrees"
  3918. msgstr ""
  3919. #: editor/plugins/tile_set_editor_plugin.cpp
  3920. msgid "Could not find tile:"
  3921. msgstr ""
  3922. #: editor/plugins/tile_set_editor_plugin.cpp
  3923. msgid "Item name or ID:"
  3924. msgstr ""
  3925. #: editor/plugins/tile_set_editor_plugin.cpp
  3926. msgid "Create from scene?"
  3927. msgstr ""
  3928. #: editor/plugins/tile_set_editor_plugin.cpp
  3929. msgid "Merge from scene?"
  3930. msgstr ""
  3931. #: editor/plugins/tile_set_editor_plugin.cpp
  3932. msgid "Create from Scene"
  3933. msgstr ""
  3934. #: editor/plugins/tile_set_editor_plugin.cpp
  3935. msgid "Merge from Scene"
  3936. msgstr ""
  3937. #: editor/plugins/tile_set_editor_plugin.cpp editor/script_editor_debugger.cpp
  3938. msgid "Error"
  3939. msgstr ""
  3940. #: editor/project_export.cpp
  3941. msgid "Runnable"
  3942. msgstr ""
  3943. #: editor/project_export.cpp
  3944. msgid "Delete patch '"
  3945. msgstr ""
  3946. #: editor/project_export.cpp
  3947. msgid "Delete preset '%s'?"
  3948. msgstr ""
  3949. #: editor/project_export.cpp
  3950. msgid "Presets"
  3951. msgstr ""
  3952. #: editor/project_export.cpp editor/project_settings.cpp
  3953. msgid "Add.."
  3954. msgstr ""
  3955. #: editor/project_export.cpp
  3956. msgid "Resources"
  3957. msgstr ""
  3958. #: editor/project_export.cpp
  3959. msgid "Export all resources in the project"
  3960. msgstr ""
  3961. #: editor/project_export.cpp
  3962. msgid "Export selected scenes (and dependencies)"
  3963. msgstr ""
  3964. #: editor/project_export.cpp
  3965. msgid "Export selected resources (and dependencies)"
  3966. msgstr ""
  3967. #: editor/project_export.cpp
  3968. msgid "Export Mode:"
  3969. msgstr ""
  3970. #: editor/project_export.cpp
  3971. msgid "Resources to export:"
  3972. msgstr ""
  3973. #: editor/project_export.cpp
  3974. msgid ""
  3975. "Filters to export non-resource files (comma separated, e.g: *.json, *.txt)"
  3976. msgstr ""
  3977. #: editor/project_export.cpp
  3978. msgid ""
  3979. "Filters to exclude files from project (comma separated, e.g: *.json, *.txt)"
  3980. msgstr ""
  3981. #: editor/project_export.cpp
  3982. msgid "Patches"
  3983. msgstr ""
  3984. #: editor/project_export.cpp
  3985. msgid "Make Patch"
  3986. msgstr ""
  3987. #: editor/project_export.cpp
  3988. msgid "Export templates for this platform are missing:"
  3989. msgstr ""
  3990. #: editor/project_export.cpp
  3991. msgid "Export With Debug"
  3992. msgstr ""
  3993. #: editor/project_manager.cpp
  3994. msgid "Invalid project path, the path must exist!"
  3995. msgstr ""
  3996. #: editor/project_manager.cpp
  3997. msgid "Invalid project path, *.godot must not exist."
  3998. msgstr ""
  3999. #: editor/project_manager.cpp
  4000. msgid "Invalid project path, *.godot must exist."
  4001. msgstr ""
  4002. #: editor/project_manager.cpp
  4003. msgid "Imported Project"
  4004. msgstr ""
  4005. #: editor/project_manager.cpp
  4006. msgid "Invalid project path (changed anything?)."
  4007. msgstr ""
  4008. #: editor/project_manager.cpp
  4009. msgid "Couldn't create *.godot project file in project path."
  4010. msgstr ""
  4011. #: editor/project_manager.cpp
  4012. msgid "The following files failed extraction from package:"
  4013. msgstr ""
  4014. #: editor/project_manager.cpp
  4015. msgid "Package Installed Successfully!"
  4016. msgstr ""
  4017. #: editor/project_manager.cpp
  4018. msgid "Import Existing Project"
  4019. msgstr ""
  4020. #: editor/project_manager.cpp
  4021. msgid "Project Path (Must Exist):"
  4022. msgstr ""
  4023. #: editor/project_manager.cpp
  4024. msgid "Project Name:"
  4025. msgstr ""
  4026. #: editor/project_manager.cpp
  4027. msgid "Create New Project"
  4028. msgstr ""
  4029. #: editor/project_manager.cpp
  4030. msgid "Project Path:"
  4031. msgstr ""
  4032. #: editor/project_manager.cpp
  4033. msgid "Install Project:"
  4034. msgstr ""
  4035. #: editor/project_manager.cpp
  4036. msgid "Browse"
  4037. msgstr ""
  4038. #: editor/project_manager.cpp
  4039. msgid "New Game Project"
  4040. msgstr ""
  4041. #: editor/project_manager.cpp
  4042. msgid "That's a BINGO!"
  4043. msgstr ""
  4044. #: editor/project_manager.cpp
  4045. msgid "Unnamed Project"
  4046. msgstr ""
  4047. #: editor/project_manager.cpp
  4048. msgid "Are you sure to open more than one project?"
  4049. msgstr ""
  4050. #: editor/project_manager.cpp
  4051. msgid "Are you sure to run more than one project?"
  4052. msgstr ""
  4053. #: editor/project_manager.cpp
  4054. msgid "Remove project from the list? (Folder contents will not be modified)"
  4055. msgstr ""
  4056. #: editor/project_manager.cpp
  4057. msgid ""
  4058. "You are about the scan %s folders for existing Godot projects. Do you "
  4059. "confirm?"
  4060. msgstr ""
  4061. #: editor/project_manager.cpp
  4062. msgid "Project Manager"
  4063. msgstr ""
  4064. #: editor/project_manager.cpp
  4065. msgid "Project List"
  4066. msgstr ""
  4067. #: editor/project_manager.cpp
  4068. msgid "Run"
  4069. msgstr ""
  4070. #: editor/project_manager.cpp
  4071. msgid "Scan"
  4072. msgstr ""
  4073. #: editor/project_manager.cpp
  4074. msgid "Select a Folder to Scan"
  4075. msgstr ""
  4076. #: editor/project_manager.cpp
  4077. msgid "New Project"
  4078. msgstr ""
  4079. #: editor/project_manager.cpp
  4080. msgid "Templates"
  4081. msgstr ""
  4082. #: editor/project_manager.cpp
  4083. msgid "Exit"
  4084. msgstr ""
  4085. #: editor/project_settings.cpp
  4086. msgid "Key "
  4087. msgstr ""
  4088. #: editor/project_settings.cpp
  4089. msgid "Joy Button"
  4090. msgstr ""
  4091. #: editor/project_settings.cpp
  4092. msgid "Joy Axis"
  4093. msgstr ""
  4094. #: editor/project_settings.cpp
  4095. msgid "Mouse Button"
  4096. msgstr ""
  4097. #: editor/project_settings.cpp
  4098. msgid "Invalid action (anything goes but '/' or ':')."
  4099. msgstr ""
  4100. #: editor/project_settings.cpp
  4101. msgid "Action '%s' already exists!"
  4102. msgstr ""
  4103. #: editor/project_settings.cpp
  4104. msgid "Rename Input Action Event"
  4105. msgstr ""
  4106. #: editor/project_settings.cpp
  4107. msgid "Add Input Action Event"
  4108. msgstr ""
  4109. #: editor/project_settings.cpp editor/settings_config_dialog.cpp
  4110. #: scene/gui/input_action.cpp
  4111. msgid "Meta+"
  4112. msgstr ""
  4113. #: editor/project_settings.cpp editor/settings_config_dialog.cpp
  4114. #: scene/gui/input_action.cpp
  4115. msgid "Shift+"
  4116. msgstr ""
  4117. #: editor/project_settings.cpp editor/settings_config_dialog.cpp
  4118. #: scene/gui/input_action.cpp
  4119. msgid "Alt+"
  4120. msgstr ""
  4121. #: editor/project_settings.cpp editor/settings_config_dialog.cpp
  4122. msgid "Control+"
  4123. msgstr ""
  4124. #: editor/project_settings.cpp editor/settings_config_dialog.cpp
  4125. msgid "Press a Key.."
  4126. msgstr ""
  4127. #: editor/project_settings.cpp
  4128. msgid "Mouse Button Index:"
  4129. msgstr ""
  4130. #: editor/project_settings.cpp
  4131. msgid "Left Button"
  4132. msgstr ""
  4133. #: editor/project_settings.cpp
  4134. msgid "Right Button"
  4135. msgstr ""
  4136. #: editor/project_settings.cpp
  4137. msgid "Middle Button"
  4138. msgstr ""
  4139. #: editor/project_settings.cpp
  4140. msgid "Wheel Up Button"
  4141. msgstr ""
  4142. #: editor/project_settings.cpp
  4143. msgid "Wheel Down Button"
  4144. msgstr ""
  4145. #: editor/project_settings.cpp
  4146. msgid "Button 6"
  4147. msgstr ""
  4148. #: editor/project_settings.cpp
  4149. msgid "Button 7"
  4150. msgstr ""
  4151. #: editor/project_settings.cpp
  4152. msgid "Button 8"
  4153. msgstr ""
  4154. #: editor/project_settings.cpp
  4155. msgid "Button 9"
  4156. msgstr ""
  4157. #: editor/project_settings.cpp
  4158. msgid "Joypad Axis Index:"
  4159. msgstr ""
  4160. #: editor/project_settings.cpp scene/gui/input_action.cpp
  4161. msgid "Axis"
  4162. msgstr ""
  4163. #: editor/project_settings.cpp
  4164. msgid "Joypad Button Index:"
  4165. msgstr ""
  4166. #: editor/project_settings.cpp
  4167. msgid "Add Input Action"
  4168. msgstr ""
  4169. #: editor/project_settings.cpp
  4170. msgid "Erase Input Action Event"
  4171. msgstr ""
  4172. #: editor/project_settings.cpp scene/gui/input_action.cpp
  4173. msgid "Device"
  4174. msgstr ""
  4175. #: editor/project_settings.cpp scene/gui/input_action.cpp
  4176. msgid "Button"
  4177. msgstr ""
  4178. #: editor/project_settings.cpp scene/gui/input_action.cpp
  4179. msgid "Left Button."
  4180. msgstr ""
  4181. #: editor/project_settings.cpp scene/gui/input_action.cpp
  4182. msgid "Right Button."
  4183. msgstr ""
  4184. #: editor/project_settings.cpp scene/gui/input_action.cpp
  4185. msgid "Middle Button."
  4186. msgstr ""
  4187. #: editor/project_settings.cpp scene/gui/input_action.cpp
  4188. msgid "Wheel Up."
  4189. msgstr ""
  4190. #: editor/project_settings.cpp scene/gui/input_action.cpp
  4191. msgid "Wheel Down."
  4192. msgstr ""
  4193. #: editor/project_settings.cpp
  4194. msgid "Error saving settings."
  4195. msgstr ""
  4196. #: editor/project_settings.cpp
  4197. msgid "Settings saved OK."
  4198. msgstr ""
  4199. #: editor/project_settings.cpp
  4200. msgid "Add Translation"
  4201. msgstr ""
  4202. #: editor/project_settings.cpp
  4203. msgid "Remove Translation"
  4204. msgstr ""
  4205. #: editor/project_settings.cpp
  4206. msgid "Add Remapped Path"
  4207. msgstr ""
  4208. #: editor/project_settings.cpp
  4209. msgid "Resource Remap Add Remap"
  4210. msgstr ""
  4211. #: editor/project_settings.cpp
  4212. msgid "Change Resource Remap Language"
  4213. msgstr ""
  4214. #: editor/project_settings.cpp
  4215. msgid "Remove Resource Remap"
  4216. msgstr ""
  4217. #: editor/project_settings.cpp
  4218. msgid "Remove Resource Remap Option"
  4219. msgstr ""
  4220. #: editor/project_settings.cpp
  4221. msgid "Project Settings "
  4222. msgstr ""
  4223. #: editor/project_settings.cpp editor/settings_config_dialog.cpp
  4224. msgid "General"
  4225. msgstr ""
  4226. #: editor/project_settings.cpp editor/property_editor.cpp
  4227. msgid "Property:"
  4228. msgstr ""
  4229. #: editor/project_settings.cpp
  4230. msgid "Del"
  4231. msgstr ""
  4232. #: editor/project_settings.cpp
  4233. msgid "Copy To Platform.."
  4234. msgstr ""
  4235. #: editor/project_settings.cpp
  4236. msgid "Input Map"
  4237. msgstr ""
  4238. #: editor/project_settings.cpp
  4239. msgid "Action:"
  4240. msgstr ""
  4241. #: editor/project_settings.cpp
  4242. msgid "Device:"
  4243. msgstr ""
  4244. #: editor/project_settings.cpp
  4245. msgid "Index:"
  4246. msgstr ""
  4247. #: editor/project_settings.cpp
  4248. msgid "Localization"
  4249. msgstr ""
  4250. #: editor/project_settings.cpp
  4251. msgid "Translations"
  4252. msgstr ""
  4253. #: editor/project_settings.cpp
  4254. msgid "Translations:"
  4255. msgstr ""
  4256. #: editor/project_settings.cpp
  4257. msgid "Remaps"
  4258. msgstr ""
  4259. #: editor/project_settings.cpp
  4260. msgid "Resources:"
  4261. msgstr ""
  4262. #: editor/project_settings.cpp
  4263. msgid "Remaps by Locale:"
  4264. msgstr ""
  4265. #: editor/project_settings.cpp
  4266. msgid "Locale"
  4267. msgstr ""
  4268. #: editor/project_settings.cpp
  4269. msgid "AutoLoad"
  4270. msgstr ""
  4271. #: editor/property_editor.cpp
  4272. msgid "Pick a Viewport"
  4273. msgstr ""
  4274. #: editor/property_editor.cpp
  4275. msgid "Ease In"
  4276. msgstr ""
  4277. #: editor/property_editor.cpp
  4278. msgid "Ease Out"
  4279. msgstr ""
  4280. #: editor/property_editor.cpp
  4281. msgid "Zero"
  4282. msgstr ""
  4283. #: editor/property_editor.cpp
  4284. msgid "Easing In-Out"
  4285. msgstr ""
  4286. #: editor/property_editor.cpp
  4287. msgid "Easing Out-In"
  4288. msgstr ""
  4289. #: editor/property_editor.cpp
  4290. msgid "File.."
  4291. msgstr ""
  4292. #: editor/property_editor.cpp
  4293. msgid "Dir.."
  4294. msgstr ""
  4295. #: editor/property_editor.cpp
  4296. msgid "Assign"
  4297. msgstr ""
  4298. #: editor/property_editor.cpp
  4299. msgid "New Script"
  4300. msgstr ""
  4301. #: editor/property_editor.cpp
  4302. msgid "Show in File System"
  4303. msgstr ""
  4304. #: editor/property_editor.cpp
  4305. msgid "Error loading file: Not a resource!"
  4306. msgstr ""
  4307. #: editor/property_editor.cpp
  4308. msgid "Couldn't load image"
  4309. msgstr ""
  4310. #: editor/property_editor.cpp
  4311. msgid "Pick a Node"
  4312. msgstr ""
  4313. #: editor/property_editor.cpp
  4314. msgid "Bit %d, val %d."
  4315. msgstr ""
  4316. #: editor/property_editor.cpp
  4317. msgid "On"
  4318. msgstr ""
  4319. #: editor/property_editor.cpp modules/visual_script/visual_script_editor.cpp
  4320. msgid "Set"
  4321. msgstr ""
  4322. #: editor/property_editor.cpp
  4323. msgid "Properties:"
  4324. msgstr ""
  4325. #: editor/property_editor.cpp
  4326. msgid "Sections:"
  4327. msgstr ""
  4328. #: editor/property_selector.cpp
  4329. msgid "Select Property"
  4330. msgstr ""
  4331. #: editor/property_selector.cpp
  4332. msgid "Select Method"
  4333. msgstr ""
  4334. #: editor/pvrtc_compress.cpp
  4335. msgid "Could not execute PVRTC tool:"
  4336. msgstr ""
  4337. #: editor/pvrtc_compress.cpp
  4338. msgid "Can't load back converted image using PVRTC tool:"
  4339. msgstr ""
  4340. #: editor/reparent_dialog.cpp editor/scene_tree_dock.cpp
  4341. msgid "Reparent Node"
  4342. msgstr ""
  4343. #: editor/reparent_dialog.cpp
  4344. msgid "Reparent Location (Select new Parent):"
  4345. msgstr ""
  4346. #: editor/reparent_dialog.cpp
  4347. msgid "Keep Global Transform"
  4348. msgstr ""
  4349. #: editor/reparent_dialog.cpp editor/scene_tree_dock.cpp
  4350. msgid "Reparent"
  4351. msgstr ""
  4352. #: editor/resources_dock.cpp
  4353. msgid "Create New Resource"
  4354. msgstr ""
  4355. #: editor/resources_dock.cpp
  4356. msgid "Open Resource"
  4357. msgstr ""
  4358. #: editor/resources_dock.cpp
  4359. msgid "Save Resource"
  4360. msgstr ""
  4361. #: editor/resources_dock.cpp
  4362. msgid "Resource Tools"
  4363. msgstr ""
  4364. #: editor/resources_dock.cpp
  4365. msgid "Make Local"
  4366. msgstr ""
  4367. #: editor/run_settings_dialog.cpp
  4368. msgid "Run Mode:"
  4369. msgstr ""
  4370. #: editor/run_settings_dialog.cpp
  4371. msgid "Current Scene"
  4372. msgstr ""
  4373. #: editor/run_settings_dialog.cpp
  4374. msgid "Main Scene"
  4375. msgstr ""
  4376. #: editor/run_settings_dialog.cpp
  4377. msgid "Main Scene Arguments:"
  4378. msgstr ""
  4379. #: editor/run_settings_dialog.cpp
  4380. msgid "Scene Run Settings"
  4381. msgstr ""
  4382. #: editor/scene_tree_dock.cpp
  4383. msgid "No parent to instance the scenes at."
  4384. msgstr ""
  4385. #: editor/scene_tree_dock.cpp
  4386. msgid "Error loading scene from %s"
  4387. msgstr ""
  4388. #: editor/scene_tree_dock.cpp
  4389. msgid "Ok"
  4390. msgstr ""
  4391. #: editor/scene_tree_dock.cpp
  4392. msgid ""
  4393. "Cannot instance the scene '%s' because the current scene exists within one "
  4394. "of its nodes."
  4395. msgstr ""
  4396. #: editor/scene_tree_dock.cpp
  4397. msgid "Instance Scene(s)"
  4398. msgstr ""
  4399. #: editor/scene_tree_dock.cpp
  4400. msgid "This operation can't be done on the tree root."
  4401. msgstr ""
  4402. #: editor/scene_tree_dock.cpp
  4403. msgid "Move Node In Parent"
  4404. msgstr ""
  4405. #: editor/scene_tree_dock.cpp
  4406. msgid "Move Nodes In Parent"
  4407. msgstr ""
  4408. #: editor/scene_tree_dock.cpp
  4409. msgid "Duplicate Node(s)"
  4410. msgstr ""
  4411. #: editor/scene_tree_dock.cpp
  4412. msgid "Delete Node(s)?"
  4413. msgstr ""
  4414. #: editor/scene_tree_dock.cpp
  4415. msgid "This operation can't be done without a scene."
  4416. msgstr ""
  4417. #: editor/scene_tree_dock.cpp
  4418. msgid "Can not perform with the root node."
  4419. msgstr ""
  4420. #: editor/scene_tree_dock.cpp
  4421. msgid "This operation can't be done on instanced scenes."
  4422. msgstr ""
  4423. #: editor/scene_tree_dock.cpp
  4424. msgid "Save New Scene As.."
  4425. msgstr ""
  4426. #: editor/scene_tree_dock.cpp
  4427. msgid "Makes Sense!"
  4428. msgstr ""
  4429. #: editor/scene_tree_dock.cpp
  4430. msgid "Can't operate on nodes from a foreign scene!"
  4431. msgstr ""
  4432. #: editor/scene_tree_dock.cpp
  4433. msgid "Can't operate on nodes the current scene inherits from!"
  4434. msgstr ""
  4435. #: editor/scene_tree_dock.cpp
  4436. msgid "Remove Node(s)"
  4437. msgstr ""
  4438. #: editor/scene_tree_dock.cpp
  4439. msgid ""
  4440. "Couldn't save new scene. Likely dependencies (instances) couldn't be "
  4441. "satisfied."
  4442. msgstr ""
  4443. #: editor/scene_tree_dock.cpp
  4444. msgid "Error saving scene."
  4445. msgstr ""
  4446. #: editor/scene_tree_dock.cpp
  4447. msgid "Error duplicating scene to save it."
  4448. msgstr ""
  4449. #: editor/scene_tree_dock.cpp
  4450. msgid "Edit Groups"
  4451. msgstr ""
  4452. #: editor/scene_tree_dock.cpp
  4453. msgid "Edit Connections"
  4454. msgstr ""
  4455. #: editor/scene_tree_dock.cpp
  4456. msgid "Delete Node(s)"
  4457. msgstr ""
  4458. #: editor/scene_tree_dock.cpp
  4459. msgid "Add Child Node"
  4460. msgstr ""
  4461. #: editor/scene_tree_dock.cpp
  4462. msgid "Instance Child Scene"
  4463. msgstr ""
  4464. #: editor/scene_tree_dock.cpp
  4465. msgid "Change Type"
  4466. msgstr ""
  4467. #: editor/scene_tree_dock.cpp
  4468. msgid "Attach Script"
  4469. msgstr ""
  4470. #: editor/scene_tree_dock.cpp
  4471. msgid "Clear Script"
  4472. msgstr ""
  4473. #: editor/scene_tree_dock.cpp
  4474. msgid "Merge From Scene"
  4475. msgstr ""
  4476. #: editor/scene_tree_dock.cpp
  4477. msgid "Save Branch as Scene"
  4478. msgstr ""
  4479. #: editor/scene_tree_dock.cpp
  4480. msgid "Copy Node Path"
  4481. msgstr ""
  4482. #: editor/scene_tree_dock.cpp
  4483. msgid "Delete (No Confirm)"
  4484. msgstr ""
  4485. #: editor/scene_tree_dock.cpp
  4486. msgid "Add/Create a New Node"
  4487. msgstr ""
  4488. #: editor/scene_tree_dock.cpp
  4489. msgid ""
  4490. "Instance a scene file as a Node. Creates an inherited scene if no root node "
  4491. "exists."
  4492. msgstr ""
  4493. #: editor/scene_tree_dock.cpp
  4494. msgid "Attach a new or existing script for the selected node."
  4495. msgstr ""
  4496. #: editor/scene_tree_dock.cpp
  4497. msgid "Clear a script for the selected node."
  4498. msgstr ""
  4499. #: editor/scene_tree_editor.cpp
  4500. msgid "Toggle Spatial Visible"
  4501. msgstr ""
  4502. #: editor/scene_tree_editor.cpp
  4503. msgid "Toggle CanvasItem Visible"
  4504. msgstr ""
  4505. #: editor/scene_tree_editor.cpp
  4506. msgid "Instance:"
  4507. msgstr ""
  4508. #: editor/scene_tree_editor.cpp
  4509. msgid "Invalid node name, the following characters are not allowed:"
  4510. msgstr ""
  4511. #: editor/scene_tree_editor.cpp
  4512. msgid "Rename Node"
  4513. msgstr ""
  4514. #: editor/scene_tree_editor.cpp
  4515. msgid "Scene Tree (Nodes):"
  4516. msgstr ""
  4517. #: editor/scene_tree_editor.cpp
  4518. msgid "Editable Children"
  4519. msgstr ""
  4520. #: editor/scene_tree_editor.cpp
  4521. msgid "Load As Placeholder"
  4522. msgstr ""
  4523. #: editor/scene_tree_editor.cpp
  4524. msgid "Discard Instancing"
  4525. msgstr ""
  4526. #: editor/scene_tree_editor.cpp
  4527. msgid "Open in Editor"
  4528. msgstr ""
  4529. #: editor/scene_tree_editor.cpp
  4530. msgid "Clear Inheritance"
  4531. msgstr ""
  4532. #: editor/scene_tree_editor.cpp
  4533. msgid "Clear Inheritance? (No Undo!)"
  4534. msgstr ""
  4535. #: editor/scene_tree_editor.cpp
  4536. msgid "Clear!"
  4537. msgstr ""
  4538. #: editor/scene_tree_editor.cpp
  4539. msgid "Select a Node"
  4540. msgstr ""
  4541. #: editor/script_create_dialog.cpp
  4542. msgid "Invalid parent class name"
  4543. msgstr ""
  4544. #: editor/script_create_dialog.cpp
  4545. msgid "Valid chars:"
  4546. msgstr ""
  4547. #: editor/script_create_dialog.cpp
  4548. msgid "Invalid class name"
  4549. msgstr ""
  4550. #: editor/script_create_dialog.cpp
  4551. msgid "Valid name"
  4552. msgstr ""
  4553. #: editor/script_create_dialog.cpp
  4554. msgid "N/A"
  4555. msgstr ""
  4556. #: editor/script_create_dialog.cpp
  4557. msgid "Class name is invalid!"
  4558. msgstr ""
  4559. #: editor/script_create_dialog.cpp
  4560. msgid "Parent class name is invalid!"
  4561. msgstr ""
  4562. #: editor/script_create_dialog.cpp
  4563. msgid "Invalid path!"
  4564. msgstr ""
  4565. #: editor/script_create_dialog.cpp
  4566. msgid "Could not create script in filesystem."
  4567. msgstr ""
  4568. #: editor/script_create_dialog.cpp
  4569. msgid "Error loading script from %s"
  4570. msgstr ""
  4571. #: editor/script_create_dialog.cpp
  4572. msgid "Path is empty"
  4573. msgstr ""
  4574. #: editor/script_create_dialog.cpp
  4575. msgid "Path is not local"
  4576. msgstr ""
  4577. #: editor/script_create_dialog.cpp
  4578. msgid "Invalid base path"
  4579. msgstr ""
  4580. #: editor/script_create_dialog.cpp
  4581. msgid "Invalid extension"
  4582. msgstr ""
  4583. #: editor/script_create_dialog.cpp
  4584. msgid "Create new script"
  4585. msgstr ""
  4586. #: editor/script_create_dialog.cpp
  4587. msgid "Load existing script"
  4588. msgstr ""
  4589. #: editor/script_create_dialog.cpp
  4590. msgid "Class Name:"
  4591. msgstr ""
  4592. #: editor/script_create_dialog.cpp
  4593. msgid "Built-In Script"
  4594. msgstr ""
  4595. #: editor/script_create_dialog.cpp
  4596. msgid "Attach Node Script"
  4597. msgstr ""
  4598. #: editor/script_editor_debugger.cpp
  4599. msgid "Bytes:"
  4600. msgstr ""
  4601. #: editor/script_editor_debugger.cpp
  4602. msgid "Warning"
  4603. msgstr ""
  4604. #: editor/script_editor_debugger.cpp
  4605. msgid "Error:"
  4606. msgstr ""
  4607. #: editor/script_editor_debugger.cpp
  4608. msgid "Source:"
  4609. msgstr ""
  4610. #: editor/script_editor_debugger.cpp
  4611. msgid "Function:"
  4612. msgstr ""
  4613. #: editor/script_editor_debugger.cpp
  4614. msgid "Errors"
  4615. msgstr ""
  4616. #: editor/script_editor_debugger.cpp
  4617. msgid "Child Process Connected"
  4618. msgstr ""
  4619. #: editor/script_editor_debugger.cpp
  4620. msgid "Inspect Previous Instance"
  4621. msgstr ""
  4622. #: editor/script_editor_debugger.cpp
  4623. msgid "Inspect Next Instance"
  4624. msgstr ""
  4625. #: editor/script_editor_debugger.cpp
  4626. msgid "Stack Frames"
  4627. msgstr ""
  4628. #: editor/script_editor_debugger.cpp
  4629. msgid "Variable"
  4630. msgstr ""
  4631. #: editor/script_editor_debugger.cpp
  4632. msgid "Errors:"
  4633. msgstr ""
  4634. #: editor/script_editor_debugger.cpp
  4635. msgid "Stack Trace (if applicable):"
  4636. msgstr ""
  4637. #: editor/script_editor_debugger.cpp
  4638. msgid "Remote Inspector"
  4639. msgstr ""
  4640. #: editor/script_editor_debugger.cpp
  4641. msgid "Live Scene Tree:"
  4642. msgstr ""
  4643. #: editor/script_editor_debugger.cpp
  4644. msgid "Remote Object Properties: "
  4645. msgstr ""
  4646. #: editor/script_editor_debugger.cpp
  4647. msgid "Profiler"
  4648. msgstr ""
  4649. #: editor/script_editor_debugger.cpp
  4650. msgid "Monitor"
  4651. msgstr ""
  4652. #: editor/script_editor_debugger.cpp
  4653. msgid "Value"
  4654. msgstr ""
  4655. #: editor/script_editor_debugger.cpp
  4656. msgid "Monitors"
  4657. msgstr ""
  4658. #: editor/script_editor_debugger.cpp
  4659. msgid "List of Video Memory Usage by Resource:"
  4660. msgstr ""
  4661. #: editor/script_editor_debugger.cpp
  4662. msgid "Total:"
  4663. msgstr ""
  4664. #: editor/script_editor_debugger.cpp
  4665. msgid "Video Mem"
  4666. msgstr ""
  4667. #: editor/script_editor_debugger.cpp
  4668. msgid "Resource Path"
  4669. msgstr ""
  4670. #: editor/script_editor_debugger.cpp
  4671. msgid "Type"
  4672. msgstr ""
  4673. #: editor/script_editor_debugger.cpp
  4674. msgid "Usage"
  4675. msgstr ""
  4676. #: editor/script_editor_debugger.cpp
  4677. msgid "Misc"
  4678. msgstr ""
  4679. #: editor/script_editor_debugger.cpp
  4680. msgid "Clicked Control:"
  4681. msgstr ""
  4682. #: editor/script_editor_debugger.cpp
  4683. msgid "Clicked Control Type:"
  4684. msgstr ""
  4685. #: editor/script_editor_debugger.cpp
  4686. msgid "Live Edit Root:"
  4687. msgstr ""
  4688. #: editor/script_editor_debugger.cpp
  4689. msgid "Set From Tree"
  4690. msgstr ""
  4691. #: editor/settings_config_dialog.cpp
  4692. msgid "Shortcuts"
  4693. msgstr ""
  4694. #: editor/spatial_editor_gizmos.cpp
  4695. msgid "Change Light Radius"
  4696. msgstr ""
  4697. #: editor/spatial_editor_gizmos.cpp
  4698. msgid "Change Camera FOV"
  4699. msgstr ""
  4700. #: editor/spatial_editor_gizmos.cpp
  4701. msgid "Change Camera Size"
  4702. msgstr ""
  4703. #: editor/spatial_editor_gizmos.cpp
  4704. msgid "Change Sphere Shape Radius"
  4705. msgstr ""
  4706. #: editor/spatial_editor_gizmos.cpp
  4707. msgid "Change Box Shape Extents"
  4708. msgstr ""
  4709. #: editor/spatial_editor_gizmos.cpp
  4710. msgid "Change Capsule Shape Radius"
  4711. msgstr ""
  4712. #: editor/spatial_editor_gizmos.cpp
  4713. msgid "Change Capsule Shape Height"
  4714. msgstr ""
  4715. #: editor/spatial_editor_gizmos.cpp
  4716. msgid "Change Ray Shape Length"
  4717. msgstr ""
  4718. #: editor/spatial_editor_gizmos.cpp
  4719. msgid "Change Notifier Extents"
  4720. msgstr ""
  4721. #: editor/spatial_editor_gizmos.cpp
  4722. msgid "Change Particles AABB"
  4723. msgstr ""
  4724. #: editor/spatial_editor_gizmos.cpp
  4725. msgid "Change Probe Extents"
  4726. msgstr ""
  4727. #: modules/gdscript/gd_functions.cpp
  4728. #: modules/visual_script/visual_script_builtin_funcs.cpp
  4729. msgid "Invalid type argument to convert(), use TYPE_* constants."
  4730. msgstr ""
  4731. #: modules/gdscript/gd_functions.cpp
  4732. #: modules/visual_script/visual_script_builtin_funcs.cpp
  4733. msgid "Not enough bytes for decoding bytes, or invalid format."
  4734. msgstr ""
  4735. #: modules/gdscript/gd_functions.cpp
  4736. msgid "step argument is zero!"
  4737. msgstr ""
  4738. #: modules/gdscript/gd_functions.cpp
  4739. msgid "Not a script with an instance"
  4740. msgstr ""
  4741. #: modules/gdscript/gd_functions.cpp
  4742. msgid "Not based on a script"
  4743. msgstr ""
  4744. #: modules/gdscript/gd_functions.cpp
  4745. msgid "Not based on a resource file"
  4746. msgstr ""
  4747. #: modules/gdscript/gd_functions.cpp
  4748. msgid "Invalid instance dictionary format (missing @path)"
  4749. msgstr ""
  4750. #: modules/gdscript/gd_functions.cpp
  4751. msgid "Invalid instance dictionary format (can't load script at @path)"
  4752. msgstr ""
  4753. #: modules/gdscript/gd_functions.cpp
  4754. msgid "Invalid instance dictionary format (invalid script at @path)"
  4755. msgstr ""
  4756. #: modules/gdscript/gd_functions.cpp
  4757. msgid "Invalid instance dictionary (invalid subclasses)"
  4758. msgstr ""
  4759. #: modules/visual_script/visual_script.cpp
  4760. msgid ""
  4761. "A node yielded without working memory, please read the docs on how to yield "
  4762. "properly!"
  4763. msgstr ""
  4764. #: modules/visual_script/visual_script.cpp
  4765. msgid ""
  4766. "Node yielded, but did not return a function state in the first working "
  4767. "memory."
  4768. msgstr ""
  4769. #: modules/visual_script/visual_script.cpp
  4770. msgid ""
  4771. "Return value must be assigned to first element of node working memory! Fix "
  4772. "your node please."
  4773. msgstr ""
  4774. #: modules/visual_script/visual_script.cpp
  4775. msgid "Node returned an invalid sequence output: "
  4776. msgstr ""
  4777. #: modules/visual_script/visual_script.cpp
  4778. msgid "Found sequence bit but not the node in the stack, report bug!"
  4779. msgstr ""
  4780. #: modules/visual_script/visual_script.cpp
  4781. msgid "Stack overflow with stack depth: "
  4782. msgstr ""
  4783. #: modules/visual_script/visual_script_editor.cpp
  4784. msgid "Functions:"
  4785. msgstr ""
  4786. #: modules/visual_script/visual_script_editor.cpp
  4787. msgid "Variables:"
  4788. msgstr ""
  4789. #: modules/visual_script/visual_script_editor.cpp
  4790. msgid "Name is not a valid identifier:"
  4791. msgstr ""
  4792. #: modules/visual_script/visual_script_editor.cpp
  4793. msgid "Name already in use by another func/var/signal:"
  4794. msgstr ""
  4795. #: modules/visual_script/visual_script_editor.cpp
  4796. msgid "Rename Function"
  4797. msgstr ""
  4798. #: modules/visual_script/visual_script_editor.cpp
  4799. msgid "Rename Variable"
  4800. msgstr ""
  4801. #: modules/visual_script/visual_script_editor.cpp
  4802. msgid "Rename Signal"
  4803. msgstr ""
  4804. #: modules/visual_script/visual_script_editor.cpp
  4805. msgid "Add Function"
  4806. msgstr ""
  4807. #: modules/visual_script/visual_script_editor.cpp
  4808. msgid "Add Variable"
  4809. msgstr ""
  4810. #: modules/visual_script/visual_script_editor.cpp
  4811. msgid "Add Signal"
  4812. msgstr ""
  4813. #: modules/visual_script/visual_script_editor.cpp
  4814. msgid "Remove Function"
  4815. msgstr ""
  4816. #: modules/visual_script/visual_script_editor.cpp
  4817. msgid "Remove Variable"
  4818. msgstr ""
  4819. #: modules/visual_script/visual_script_editor.cpp
  4820. msgid "Editing Variable:"
  4821. msgstr ""
  4822. #: modules/visual_script/visual_script_editor.cpp
  4823. msgid "Remove Signal"
  4824. msgstr ""
  4825. #: modules/visual_script/visual_script_editor.cpp
  4826. msgid "Editing Signal:"
  4827. msgstr ""
  4828. #: modules/visual_script/visual_script_editor.cpp
  4829. msgid "Change Expression"
  4830. msgstr ""
  4831. #: modules/visual_script/visual_script_editor.cpp
  4832. msgid "Add Node"
  4833. msgstr ""
  4834. #: modules/visual_script/visual_script_editor.cpp
  4835. msgid "Hold Meta to drop a Getter. Hold Shift to drop a generic signature."
  4836. msgstr ""
  4837. #: modules/visual_script/visual_script_editor.cpp
  4838. msgid "Hold Ctrl to drop a Getter. Hold Shift to drop a generic signature."
  4839. msgstr ""
  4840. #: modules/visual_script/visual_script_editor.cpp
  4841. msgid "Hold Meta to drop a simple reference to the node."
  4842. msgstr ""
  4843. #: modules/visual_script/visual_script_editor.cpp
  4844. msgid "Hold Ctrl to drop a simple reference to the node."
  4845. msgstr ""
  4846. #: modules/visual_script/visual_script_editor.cpp
  4847. msgid "Hold Meta to drop a Variable Setter."
  4848. msgstr ""
  4849. #: modules/visual_script/visual_script_editor.cpp
  4850. msgid "Hold Ctrl to drop a Variable Setter."
  4851. msgstr ""
  4852. #: modules/visual_script/visual_script_editor.cpp
  4853. msgid "Add Preload Node"
  4854. msgstr ""
  4855. #: modules/visual_script/visual_script_editor.cpp
  4856. msgid "Add Node(s) From Tree"
  4857. msgstr ""
  4858. #: modules/visual_script/visual_script_editor.cpp
  4859. msgid "Add Getter Property"
  4860. msgstr ""
  4861. #: modules/visual_script/visual_script_editor.cpp
  4862. msgid "Add Setter Property"
  4863. msgstr ""
  4864. #: modules/visual_script/visual_script_editor.cpp
  4865. msgid "Condition"
  4866. msgstr ""
  4867. #: modules/visual_script/visual_script_editor.cpp
  4868. msgid "Sequence"
  4869. msgstr ""
  4870. #: modules/visual_script/visual_script_editor.cpp
  4871. msgid "Switch"
  4872. msgstr ""
  4873. #: modules/visual_script/visual_script_editor.cpp
  4874. msgid "Iterator"
  4875. msgstr ""
  4876. #: modules/visual_script/visual_script_editor.cpp
  4877. msgid "While"
  4878. msgstr ""
  4879. #: modules/visual_script/visual_script_editor.cpp
  4880. msgid "Return"
  4881. msgstr ""
  4882. #: modules/visual_script/visual_script_editor.cpp
  4883. msgid "Get"
  4884. msgstr ""
  4885. #: modules/visual_script/visual_script_editor.cpp
  4886. msgid "Base Type:"
  4887. msgstr ""
  4888. #: modules/visual_script/visual_script_editor.cpp
  4889. msgid "Available Nodes:"
  4890. msgstr ""
  4891. #: modules/visual_script/visual_script_editor.cpp
  4892. msgid "Select or create a function to edit graph"
  4893. msgstr ""
  4894. #: modules/visual_script/visual_script_editor.cpp
  4895. msgid "Edit Signal Arguments:"
  4896. msgstr ""
  4897. #: modules/visual_script/visual_script_editor.cpp
  4898. msgid "Edit Variable:"
  4899. msgstr ""
  4900. #: modules/visual_script/visual_script_editor.cpp
  4901. msgid "Change"
  4902. msgstr ""
  4903. #: modules/visual_script/visual_script_editor.cpp
  4904. msgid "Delete Selected"
  4905. msgstr ""
  4906. #: modules/visual_script/visual_script_editor.cpp
  4907. msgid "Find Node Type"
  4908. msgstr ""
  4909. #: modules/visual_script/visual_script_editor.cpp
  4910. msgid "Copy Nodes"
  4911. msgstr ""
  4912. #: modules/visual_script/visual_script_editor.cpp
  4913. msgid "Cut Nodes"
  4914. msgstr ""
  4915. #: modules/visual_script/visual_script_editor.cpp
  4916. msgid "Paste Nodes"
  4917. msgstr ""
  4918. #: modules/visual_script/visual_script_flow_control.cpp
  4919. msgid "Input type not iterable: "
  4920. msgstr ""
  4921. #: modules/visual_script/visual_script_flow_control.cpp
  4922. msgid "Iterator became invalid"
  4923. msgstr ""
  4924. #: modules/visual_script/visual_script_flow_control.cpp
  4925. msgid "Iterator became invalid: "
  4926. msgstr ""
  4927. #: modules/visual_script/visual_script_func_nodes.cpp
  4928. msgid "Invalid index property name."
  4929. msgstr ""
  4930. #: modules/visual_script/visual_script_func_nodes.cpp
  4931. msgid "Base object is not a Node!"
  4932. msgstr ""
  4933. #: modules/visual_script/visual_script_func_nodes.cpp
  4934. msgid "Path does not lead Node!"
  4935. msgstr ""
  4936. #: modules/visual_script/visual_script_func_nodes.cpp
  4937. msgid "Invalid index property name '%s' in node %s."
  4938. msgstr ""
  4939. #: modules/visual_script/visual_script_nodes.cpp
  4940. msgid ": Invalid argument of type: "
  4941. msgstr ""
  4942. #: modules/visual_script/visual_script_nodes.cpp
  4943. msgid ": Invalid arguments: "
  4944. msgstr ""
  4945. #: modules/visual_script/visual_script_nodes.cpp
  4946. msgid "VariableGet not found in script: "
  4947. msgstr ""
  4948. #: modules/visual_script/visual_script_nodes.cpp
  4949. msgid "VariableSet not found in script: "
  4950. msgstr ""
  4951. #: modules/visual_script/visual_script_nodes.cpp
  4952. msgid "Custom node has no _step() method, can't process graph."
  4953. msgstr ""
  4954. #: modules/visual_script/visual_script_nodes.cpp
  4955. msgid ""
  4956. "Invalid return value from _step(), must be integer (seq out), or string "
  4957. "(error)."
  4958. msgstr ""
  4959. #: modules/visual_script/visual_script_nodes.cpp
  4960. msgid "just pressed"
  4961. msgstr ""
  4962. #: modules/visual_script/visual_script_nodes.cpp
  4963. msgid "just released"
  4964. msgstr ""
  4965. #: platform/javascript/export/export.cpp
  4966. msgid "Run in Browser"
  4967. msgstr ""
  4968. #: platform/javascript/export/export.cpp
  4969. msgid "Run exported HTML in the system's default browser."
  4970. msgstr ""
  4971. #: platform/javascript/export/export.cpp
  4972. msgid "Could not write file:\n"
  4973. msgstr ""
  4974. #: platform/javascript/export/export.cpp
  4975. msgid "Could not read file:\n"
  4976. msgstr ""
  4977. #: platform/javascript/export/export.cpp
  4978. msgid "Could not open template for export:\n"
  4979. msgstr ""
  4980. #: platform/uwp/export/export.cpp
  4981. msgid ""
  4982. "Couldn't read the certificate file. Are the path and password both correct?"
  4983. msgstr ""
  4984. #: platform/uwp/export/export.cpp
  4985. msgid "Error creating the signature object."
  4986. msgstr ""
  4987. #: platform/uwp/export/export.cpp
  4988. msgid "Error creating the package signature."
  4989. msgstr ""
  4990. #: platform/uwp/export/export.cpp
  4991. msgid ""
  4992. "No export templates found.\n"
  4993. "Download and install export templates."
  4994. msgstr ""
  4995. #: platform/uwp/export/export.cpp
  4996. msgid "Custom debug package not found."
  4997. msgstr ""
  4998. #: platform/uwp/export/export.cpp
  4999. msgid "Custom release package not found."
  5000. msgstr ""
  5001. #: platform/uwp/export/export.cpp
  5002. msgid "Invalid unique name."
  5003. msgstr ""
  5004. #: platform/uwp/export/export.cpp
  5005. msgid "Invalid product GUID."
  5006. msgstr ""
  5007. #: platform/uwp/export/export.cpp
  5008. msgid "Invalid publisher GUID."
  5009. msgstr ""
  5010. #: platform/uwp/export/export.cpp
  5011. msgid "Invalid background color."
  5012. msgstr ""
  5013. #: platform/uwp/export/export.cpp
  5014. msgid "Invalid Store Logo image dimensions (should be 50x50)."
  5015. msgstr ""
  5016. #: platform/uwp/export/export.cpp
  5017. msgid "Invalid square 44x44 logo image dimensions (should be 44x44)."
  5018. msgstr ""
  5019. #: platform/uwp/export/export.cpp
  5020. msgid "Invalid square 71x71 logo image dimensions (should be 71x71)."
  5021. msgstr ""
  5022. #: platform/uwp/export/export.cpp
  5023. msgid "Invalid square 150x150 logo image dimensions (should be 150x150)."
  5024. msgstr ""
  5025. #: platform/uwp/export/export.cpp
  5026. msgid "Invalid square 310x310 logo image dimensions (should be 310x310)."
  5027. msgstr ""
  5028. #: platform/uwp/export/export.cpp
  5029. msgid "Invalid wide 310x150 logo image dimensions (should be 310x150)."
  5030. msgstr ""
  5031. #: platform/uwp/export/export.cpp
  5032. msgid "Invalid splash screen image dimensions (should be 620x300)."
  5033. msgstr ""
  5034. #: scene/2d/animated_sprite.cpp
  5035. msgid ""
  5036. "A SpriteFrames resource must be created or set in the 'Frames' property in "
  5037. "order for AnimatedSprite to display frames."
  5038. msgstr ""
  5039. #: scene/2d/canvas_modulate.cpp
  5040. msgid ""
  5041. "Only one visible CanvasModulate is allowed per scene (or set of instanced "
  5042. "scenes). The first created one will work, while the rest will be ignored."
  5043. msgstr ""
  5044. #: scene/2d/collision_polygon_2d.cpp
  5045. msgid ""
  5046. "CollisionPolygon2D only serves to provide a collision shape to a "
  5047. "CollisionObject2D derived node. Please only use it as a child of Area2D, "
  5048. "StaticBody2D, RigidBody2D, KinematicBody2D, etc. to give them a shape."
  5049. msgstr ""
  5050. #: scene/2d/collision_polygon_2d.cpp
  5051. msgid "An empty CollisionPolygon2D has no effect on collision."
  5052. msgstr ""
  5053. #: scene/2d/collision_shape_2d.cpp
  5054. msgid ""
  5055. "CollisionShape2D only serves to provide a collision shape to a "
  5056. "CollisionObject2D derived node. Please only use it as a child of Area2D, "
  5057. "StaticBody2D, RigidBody2D, KinematicBody2D, etc. to give them a shape."
  5058. msgstr ""
  5059. #: scene/2d/collision_shape_2d.cpp
  5060. msgid ""
  5061. "A shape must be provided for CollisionShape2D to function. Please create a "
  5062. "shape resource for it!"
  5063. msgstr ""
  5064. #: scene/2d/light_2d.cpp
  5065. msgid ""
  5066. "A texture with the shape of the light must be supplied to the 'texture' "
  5067. "property."
  5068. msgstr ""
  5069. #: scene/2d/light_occluder_2d.cpp
  5070. msgid ""
  5071. "An occluder polygon must be set (or drawn) for this occluder to take effect."
  5072. msgstr ""
  5073. #: scene/2d/light_occluder_2d.cpp
  5074. msgid "The occluder polygon for this occluder is empty. Please draw a polygon!"
  5075. msgstr ""
  5076. #: scene/2d/navigation_polygon.cpp
  5077. msgid ""
  5078. "A NavigationPolygon resource must be set or created for this node to work. "
  5079. "Please set a property or draw a polygon."
  5080. msgstr ""
  5081. #: scene/2d/navigation_polygon.cpp
  5082. msgid ""
  5083. "NavigationPolygonInstance must be a child or grandchild to a Navigation2D "
  5084. "node. It only provides navigation data."
  5085. msgstr ""
  5086. #: scene/2d/parallax_layer.cpp
  5087. msgid ""
  5088. "ParallaxLayer node only works when set as child of a ParallaxBackground node."
  5089. msgstr ""
  5090. #: scene/2d/particles_2d.cpp
  5091. msgid "Path property must point to a valid Particles2D node to work."
  5092. msgstr ""
  5093. #: scene/2d/path_2d.cpp
  5094. msgid "PathFollow2D only works when set as a child of a Path2D node."
  5095. msgstr ""
  5096. #: scene/2d/remote_transform_2d.cpp
  5097. msgid "Path property must point to a valid Node2D node to work."
  5098. msgstr ""
  5099. #: scene/2d/sprite.cpp
  5100. msgid ""
  5101. "Path property must point to a valid Viewport node to work. Such Viewport "
  5102. "must be set to 'render target' mode."
  5103. msgstr ""
  5104. #: scene/2d/sprite.cpp
  5105. msgid ""
  5106. "The Viewport set in the path property must be set as 'render target' in "
  5107. "order for this sprite to work."
  5108. msgstr ""
  5109. #: scene/2d/visibility_notifier_2d.cpp
  5110. msgid ""
  5111. "VisibilityEnable2D works best when used with the edited scene root directly "
  5112. "as parent."
  5113. msgstr ""
  5114. #: scene/3d/body_shape.cpp
  5115. msgid ""
  5116. "CollisionShape only serves to provide a collision shape to a CollisionObject "
  5117. "derived node. Please only use it as a child of Area, StaticBody, RigidBody, "
  5118. "KinematicBody, etc. to give them a shape."
  5119. msgstr ""
  5120. #: scene/3d/body_shape.cpp
  5121. msgid ""
  5122. "A shape must be provided for CollisionShape to function. Please create a "
  5123. "shape resource for it!"
  5124. msgstr ""
  5125. #: scene/3d/collision_polygon.cpp
  5126. msgid ""
  5127. "CollisionPolygon only serves to provide a collision shape to a "
  5128. "CollisionObject derived node. Please only use it as a child of Area, "
  5129. "StaticBody, RigidBody, KinematicBody, etc. to give them a shape."
  5130. msgstr ""
  5131. #: scene/3d/collision_polygon.cpp
  5132. msgid "An empty CollisionPolygon has no effect on collision."
  5133. msgstr ""
  5134. #: scene/3d/navigation_mesh.cpp
  5135. msgid "A NavigationMesh resource must be set or created for this node to work."
  5136. msgstr ""
  5137. #: scene/3d/navigation_mesh.cpp
  5138. msgid ""
  5139. "NavigationMeshInstance must be a child or grandchild to a Navigation node. "
  5140. "It only provides navigation data."
  5141. msgstr ""
  5142. #: scene/3d/particles.cpp
  5143. msgid ""
  5144. "Nothing is visible because meshes have not been assigned to draw passes."
  5145. msgstr ""
  5146. #: scene/3d/particles.cpp
  5147. msgid ""
  5148. "A material to process the particles is not assigned, so no behavior is "
  5149. "imprinted."
  5150. msgstr ""
  5151. #: scene/3d/remote_transform.cpp
  5152. msgid "Path property must point to a valid Spatial node to work."
  5153. msgstr ""
  5154. #: scene/3d/scenario_fx.cpp
  5155. msgid ""
  5156. "Only one WorldEnvironment is allowed per scene (or set of instanced scenes)."
  5157. msgstr ""
  5158. #: scene/3d/sprite_3d.cpp
  5159. msgid ""
  5160. "A SpriteFrames resource must be created or set in the 'Frames' property in "
  5161. "order for AnimatedSprite3D to display frames."
  5162. msgstr ""
  5163. #: scene/gui/dialogs.cpp
  5164. msgid "Alert!"
  5165. msgstr ""
  5166. #: scene/gui/dialogs.cpp
  5167. msgid "Please Confirm..."
  5168. msgstr ""
  5169. #: scene/gui/file_dialog.cpp
  5170. msgid "Open a File"
  5171. msgstr ""
  5172. #: scene/gui/file_dialog.cpp
  5173. msgid "Open File(s)"
  5174. msgstr ""
  5175. #: scene/gui/file_dialog.cpp
  5176. msgid "Open a Directory"
  5177. msgstr ""
  5178. #: scene/gui/file_dialog.cpp
  5179. msgid "Open a File or Directory"
  5180. msgstr ""
  5181. #: scene/gui/input_action.cpp
  5182. msgid "Ctrl+"
  5183. msgstr ""
  5184. #: scene/gui/popup.cpp
  5185. msgid ""
  5186. "Popups will hide by default unless you call popup() or any of the popup*() "
  5187. "functions. Making them visible for editing is fine though, but they will "
  5188. "hide upon running."
  5189. msgstr ""
  5190. #: scene/gui/scroll_container.cpp
  5191. msgid ""
  5192. "ScrollContainer is intended to work with a single child control.\n"
  5193. "Use a container as child (VBox,HBox,etc), or a Control and set the custom "
  5194. "minimum size manually."
  5195. msgstr ""
  5196. #: scene/main/viewport.cpp
  5197. msgid ""
  5198. "This viewport is not set as render target. If you intend for it to display "
  5199. "its contents directly to the screen, make it a child of a Control so it can "
  5200. "obtain a size. Otherwise, make it a RenderTarget and assign its internal "
  5201. "texture to some node for display."
  5202. msgstr ""