lt.po 71 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341
  1. # SOME DESCRIPTIVE TITLE.
  2. # Copyright (C) YEAR Free Software Foundation, Inc.
  3. # This file is distributed under the same license as the mc package.
  4. #
  5. # Translators:
  6. # Andrius Burokas, 2017
  7. # Nerijus Baliūnas <nerijus@users.sourceforge.net>, 2011
  8. # Slava Zanko <slavazanko@gmail.com>, 2011
  9. # Zygi Mantus <zygimantus@gmail.com>, 2016
  10. # Zygi Mantus <zygimantus@gmail.com>, 2016-2017
  11. msgid ""
  12. msgstr ""
  13. "Project-Id-Version: Midnight Commander\n"
  14. "Report-Msgid-Bugs-To: http://www.midnight-commander.org/\n"
  15. "POT-Creation-Date: 2018-02-03 18:28+0300\n"
  16. "PO-Revision-Date: 2017-09-19 09:10+0000\n"
  17. "Last-Translator: Andrius Burokas\n"
  18. "Language-Team: Lithuanian (http://www.transifex.com/mc/mc/language/lt/)\n"
  19. "Language: lt\n"
  20. "MIME-Version: 1.0\n"
  21. "Content-Type: text/plain; charset=UTF-8\n"
  22. "Content-Transfer-Encoding: 8bit\n"
  23. "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n"
  24. "%100<10 || n%100>=20) ? 1 : 2);\n"
  25. # "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
  26. msgid "Warning: cannot load codepages list"
  27. msgstr "Įspėjimas: nepavyko įkelti koduočių sąrašo"
  28. msgid "7-bit ASCII"
  29. msgstr "7 bitų ASCII"
  30. #, c-format
  31. msgid "Cannot translate from %s to %s"
  32. msgstr "Nepavyko išversti iš %s į %s"
  33. msgid "Event system already initialized"
  34. msgstr "Įvykių sistema jau inicializuota"
  35. msgid "Failed to initialize event system"
  36. msgstr "Nepavyko inicializuoti įvykių sistemos"
  37. msgid "Event system not initialized"
  38. msgstr "Įvykių sistema neinicializuota"
  39. msgid "Check input data! Some of parameters are NULL!"
  40. msgstr "Patikrinkite įvesties duomenis! Kai kurie parametrai yra NULL!"
  41. #, c-format
  42. msgid "Unable to create group '%s' for events!"
  43. msgstr "Nepavyko sukurti grupės '%s' įvykiams!"
  44. #, c-format
  45. msgid "Unable to create event '%s'!"
  46. msgstr "Nepavyko sukurti įvykio '%s'!"
  47. #, c-format
  48. msgid ""
  49. "File \"%s\" is already being edited.\n"
  50. "User: %s\n"
  51. "Process ID: %d"
  52. msgstr ""
  53. "Failas \"%s\" jau yra redaguojamas.\n"
  54. "Vartotojas: %s\n"
  55. "Proceso ID: %d"
  56. msgid "File locked"
  57. msgstr "Failas užrakintas"
  58. msgid "&Grab lock"
  59. msgstr "&Paimti užraktą"
  60. msgid "&Ignore lock"
  61. msgstr "&Ignoruoti užraktą"
  62. #, c-format
  63. msgid "Cannot create %s directory"
  64. msgstr "Nepavyko sukurti %s aplanko"
  65. msgid "FATAL: not a directory:"
  66. msgstr "KLAIDA: ne aplankas:"
  67. #, c-format
  68. msgid "An error occurred while migrating user settings: %s"
  69. msgstr "Klaida perkeliant vartotojo nustatymus: %s"
  70. #, c-format
  71. msgid ""
  72. "Your old settings were migrated from %s\n"
  73. "to Freedesktop recommended dirs.\n"
  74. "To get more info, please visit\n"
  75. "http://standards.freedesktop.org/basedir-spec/basedir-spec-latest.html"
  76. msgstr ""
  77. "Jūsų anskstesni nustatymai buvo perkelti iš %s\n"
  78. "į Freedesktop rekomenduojamus aplankus.\n"
  79. "Daugiau informacijos rasite čia\n"
  80. "http://standards.freedesktop.org/basedir-spec/basedir-spec-latest.html"
  81. #, c-format
  82. msgid ""
  83. "Your old settings were migrated from %s\n"
  84. "to %s\n"
  85. msgstr ""
  86. "Jūsų anskstesni nustatymai buvo perkelti iš %s\n"
  87. "į %s\n"
  88. msgid ""
  89. "Number out of range (should be in byte range, 0 <= n <= 0xFF, expressed in "
  90. "hex)"
  91. msgstr ""
  92. "Skaičiaus reikšmė peržengia leistinas ribas (riba: 0 <= n <= "
  93. "0xFF, išreiškiama šešioliktainiu kodu)"
  94. msgid "Invalid character"
  95. msgstr "Neteisingas simbolis"
  96. msgid "Unmatched quotes character"
  97. msgstr "Trūksta citatos simbolio"
  98. #, c-format
  99. msgid ""
  100. "Hex pattern error at position %d:\n"
  101. "%s."
  102. msgstr ""
  103. "Šešioliktainės išraiškos klaida stulpelyje %d:\n"
  104. "%s."
  105. msgid "Search string not found"
  106. msgstr "Eilutė nerasta"
  107. msgid "Not implemented yet"
  108. msgstr "Dar neįgyvendinta"
  109. msgid "Num of replace tokens not equal to num of found tokens"
  110. msgstr ""
  111. #, c-format
  112. msgid "Invalid token number %d"
  113. msgstr ""
  114. msgid "Regular expression error"
  115. msgstr "Reguliariosios išraiškos klaida"
  116. msgid "No&rmal"
  117. msgstr "No&rmalus"
  118. msgid "Re&gular expression"
  119. msgstr "Reguliarioji išraiška"
  120. msgid "He&xadecimal"
  121. msgstr "Šešioliktainis"
  122. msgid "Wil&dcard search"
  123. msgstr ""
  124. #, c-format
  125. msgid ""
  126. "Unable to load '%s' skin.\n"
  127. "Default skin has been loaded"
  128. msgstr ""
  129. #, c-format
  130. msgid ""
  131. "Unable to parse '%s' skin.\n"
  132. "Default skin has been loaded"
  133. msgstr ""
  134. #, c-format
  135. msgid ""
  136. "Unable to use '%s' skin with true colors support:\n"
  137. "%s\n"
  138. "Default skin has been loaded"
  139. msgstr ""
  140. #, c-format
  141. msgid ""
  142. "Unable to use '%s' skin with 256 colors support\n"
  143. "on non-256 colors terminal.\n"
  144. "Default skin has been loaded"
  145. msgstr ""
  146. msgid "True color not supported with ncurses."
  147. msgstr ""
  148. msgid "True color not supported in this slang version."
  149. msgstr ""
  150. msgid "Your terminal doesn't even seem to support 256 colors."
  151. msgstr ""
  152. msgid "Set COLORTERM=truecolor if your terminal really supports true colors."
  153. msgstr ""
  154. msgid "Escape"
  155. msgstr ""
  156. msgid "Function key 1"
  157. msgstr "Funkcinis klav. 1"
  158. msgid "Function key 2"
  159. msgstr "Funkcinis klav. 2"
  160. msgid "Function key 3"
  161. msgstr "Funkcinis klav. 3"
  162. msgid "Function key 4"
  163. msgstr "Funkcinis klav. 4"
  164. msgid "Function key 5"
  165. msgstr "Funkcinis klav. 5"
  166. msgid "Function key 6"
  167. msgstr "Funkcinis klav. 6"
  168. msgid "Function key 7"
  169. msgstr "Funkcinis klav. 7"
  170. msgid "Function key 8"
  171. msgstr "Funkcinis klav. 8"
  172. msgid "Function key 9"
  173. msgstr "Funkcinis klav. 9"
  174. msgid "Function key 10"
  175. msgstr "Funkcinis klav. 10"
  176. msgid "Function key 11"
  177. msgstr "Funkcinis klav. 11"
  178. msgid "Function key 12"
  179. msgstr "Funkcinis klav. 12"
  180. msgid "Function key 13"
  181. msgstr "Funkcinis klav. 13"
  182. msgid "Function key 14"
  183. msgstr "Funkcinis klav. 14"
  184. msgid "Function key 15"
  185. msgstr "Funkcinis klav. 15"
  186. msgid "Function key 16"
  187. msgstr "Funkcinis klav. 16"
  188. msgid "Function key 17"
  189. msgstr "Funkcinis klav. 17"
  190. msgid "Function key 18"
  191. msgstr "Funkcinis klav. 18"
  192. msgid "Function key 19"
  193. msgstr "Funkcinis klav. 19"
  194. msgid "Function key 20"
  195. msgstr "Funkcinis klav. 20"
  196. msgid "Completion/M-tab"
  197. msgstr "Užbaig./„M-Tab“"
  198. msgid "BackTab/S-tab"
  199. msgstr ""
  200. msgid "Backspace"
  201. msgstr ""
  202. msgid "Up arrow"
  203. msgstr "Rodyklė \"aukštyn\""
  204. msgid "Down arrow"
  205. msgstr "Rodyklė \"žemyn\""
  206. msgid "Left arrow"
  207. msgstr "Rodyklė \"kairėn\""
  208. msgid "Right arrow"
  209. msgstr "Rodyklė \"dešinėn\""
  210. msgid "Insert"
  211. msgstr "Įterpti"
  212. msgid "Delete"
  213. msgstr "Šalinti"
  214. msgid "Home"
  215. msgstr "Home"
  216. msgid "End key"
  217. msgstr "„End“"
  218. msgid "Page Up"
  219. msgstr "Page Up"
  220. msgid "Page Down"
  221. msgstr "Page Down"
  222. msgid "/ on keypad"
  223. msgstr "Skaitm. /"
  224. msgid "* on keypad"
  225. msgstr "Skaitm. *"
  226. msgid "- on keypad"
  227. msgstr "Skaitm. -"
  228. msgid "+ on keypad"
  229. msgstr "Skaitm. +"
  230. msgid "Left arrow keypad"
  231. msgstr "Skaitm. „kairėn“"
  232. msgid "Right arrow keypad"
  233. msgstr "Skaitm. „dešinėn“"
  234. msgid "Up arrow keypad"
  235. msgstr "Skaitm. „aukštyn“"
  236. msgid "Down arrow keypad"
  237. msgstr "Skaitm. „žemyn“"
  238. msgid "Home on keypad"
  239. msgstr "Skaitm. „Home“"
  240. msgid "End on keypad"
  241. msgstr "Skaitm. „End“"
  242. msgid "Page Down keypad"
  243. msgstr "Skaitm. „Page Down“"
  244. msgid "Page Up keypad"
  245. msgstr "Skaitm. „Page Up“"
  246. msgid "Insert on keypad"
  247. msgstr "Skaitm. „Insert“"
  248. msgid "Delete on keypad"
  249. msgstr "Skaitm. „Delete“"
  250. msgid "Enter on keypad"
  251. msgstr "Skaitm. „Enter“"
  252. msgid "Function key 21"
  253. msgstr "Funkcinis klav. 21"
  254. msgid "Function key 22"
  255. msgstr "Funkcinis klav. 22"
  256. msgid "Function key 23"
  257. msgstr "Funkcinis klav. 23"
  258. msgid "Function key 24"
  259. msgstr "Funkcinis klav. 24"
  260. msgid "A1 key"
  261. msgstr ""
  262. msgid "C1 key"
  263. msgstr ""
  264. msgid "Asterisk"
  265. msgstr ""
  266. msgid "Minus"
  267. msgstr ""
  268. msgid "Plus"
  269. msgstr ""
  270. msgid "Dot"
  271. msgstr ""
  272. msgid "Less than"
  273. msgstr ""
  274. msgid "Great than"
  275. msgstr ""
  276. msgid "Equal"
  277. msgstr ""
  278. msgid "Comma"
  279. msgstr ""
  280. msgid "Apostrophe"
  281. msgstr ""
  282. msgid "Colon"
  283. msgstr ""
  284. msgid "Semicolon"
  285. msgstr ""
  286. msgid "Exclamation mark"
  287. msgstr ""
  288. msgid "Question mark"
  289. msgstr ""
  290. msgid "Ampersand"
  291. msgstr ""
  292. msgid "Dollar sign"
  293. msgstr ""
  294. msgid "Quotation mark"
  295. msgstr ""
  296. msgid "Percent sign"
  297. msgstr ""
  298. msgid "Caret"
  299. msgstr ""
  300. msgid "Tilda"
  301. msgstr ""
  302. msgid "Prime"
  303. msgstr ""
  304. msgid "Underline"
  305. msgstr ""
  306. msgid "Understrike"
  307. msgstr ""
  308. msgid "Pipe"
  309. msgstr ""
  310. msgid "Left parenthesis"
  311. msgstr "Kairysis skliaustas"
  312. msgid "Right parenthesis"
  313. msgstr "Dešinysis skliaustas"
  314. msgid "Left bracket"
  315. msgstr "Kairysis laužtinis skliaustas"
  316. msgid "Right bracket"
  317. msgstr "Dešinysis laužtinis skliaustas"
  318. msgid "Left brace"
  319. msgstr "Kairysis riestinis skliaustas"
  320. msgid "Right brace"
  321. msgstr "Dešinysis riestinis skliaustas"
  322. msgid "Enter"
  323. msgstr ""
  324. msgid "Tab key"
  325. msgstr ""
  326. msgid "Space key"
  327. msgstr ""
  328. msgid "Slash key"
  329. msgstr ""
  330. msgid "Backslash key"
  331. msgstr ""
  332. msgid "Number sign #"
  333. msgstr ""
  334. #. TRANSLATORS: Please translate as in "at sign" (@).
  335. msgid "At sign"
  336. msgstr ""
  337. msgid "Ctrl"
  338. msgstr ""
  339. msgid "Alt"
  340. msgstr ""
  341. msgid "Shift"
  342. msgstr ""
  343. msgid "The TERM environment variable is unset!\n"
  344. msgstr "Aplinkos kintamasis TERM nenustatytas!\n"
  345. #, c-format
  346. msgid ""
  347. "Screen size %dx%d is not supported.\n"
  348. "Check the TERM environment variable.\n"
  349. msgstr ""
  350. "Ekrano dydis %dx%d nepalaikomas.\n"
  351. "Patikrinkite TERM aplinkos kintamąjį.\n"
  352. msgid "B"
  353. msgstr ""
  354. msgid "kB"
  355. msgstr ""
  356. msgid "KiB"
  357. msgstr ""
  358. msgid "MB"
  359. msgstr ""
  360. msgid "MiB"
  361. msgstr ""
  362. msgid "GB"
  363. msgstr ""
  364. msgid "GiB"
  365. msgstr ""
  366. msgid "Cannot create pipe descriptor"
  367. msgstr ""
  368. msgid "Cannot create pipe streams"
  369. msgstr ""
  370. #, c-format
  371. msgid ""
  372. "Unexpected error in select() reading data from a child process:\n"
  373. "%s"
  374. msgstr ""
  375. #, c-format
  376. msgid ""
  377. "Unexpected error in waitpid():\n"
  378. "%s"
  379. msgstr ""
  380. msgid "Warning"
  381. msgstr "Įspėjimas"
  382. msgid "Pipe failed"
  383. msgstr ""
  384. msgid "Dup failed"
  385. msgstr ""
  386. msgid "Error dup'ing old error pipe"
  387. msgstr ""
  388. #, c-format
  389. msgid "Directory cache expired for %s"
  390. msgstr "Aplanko „%s“ podėlis nebegalioja"
  391. #, c-format
  392. msgid "%s: %s: %s %3d%% (%lld) bytes transferred"
  393. msgstr ""
  394. #, c-format
  395. msgid "%s: %s: %s %lld bytes transferred"
  396. msgstr ""
  397. msgid "Starting linear transfer..."
  398. msgstr "Pradedamas siuntimas..."
  399. msgid "Getting file"
  400. msgstr "Parsiunčiamas failas"
  401. msgid "Changes to file lost"
  402. msgstr "Failo pakeitimai prarasti"
  403. #, c-format
  404. msgid "%s is not a directory\n"
  405. msgstr "%s nėra aplankas\n"
  406. #, c-format
  407. msgid "Directory %s is not owned by you\n"
  408. msgstr "Aplankas %s jums nepriklauso\n"
  409. #, c-format
  410. msgid "Cannot set correct permissions for directory %s\n"
  411. msgstr " Nepavyko nustatyti reikiamų teisių aplankui %s\n"
  412. #, c-format
  413. msgid "Cannot create temporary directory %s: %s\n"
  414. msgstr "Nepavyko sukurti laikino aplanko %s: %s\n"
  415. #, c-format
  416. msgid "Temporary files will be created in %s\n"
  417. msgstr "Laikinieji failai bus talpinami aplanke %s\n"
  418. #, c-format
  419. msgid "Temporary files will not be created\n"
  420. msgstr "Laikinieji failai nebus kuriami\n"
  421. msgid "Press any key to continue..."
  422. msgstr "Paspauskite bet kurį klavišą..."
  423. msgid "Cannot parse:"
  424. msgstr "Nepavyko apdoroti:"
  425. msgid "More parsing errors will be ignored."
  426. msgstr "Kitos apdorojimo klaidos bus ignoruojamos."
  427. msgid "Internal error:"
  428. msgstr "Vidinė klaida:"
  429. msgid "Password:"
  430. msgstr "Slaptažodis:"
  431. msgid "Screens"
  432. msgstr ""
  433. msgid "History"
  434. msgstr "Istorija"
  435. #. TRANSLATORS: no need to translate 'DialogTitle', it's just a context prefix
  436. msgid "DialogTitle|History cleanup"
  437. msgstr ""
  438. msgid "Do you want clean this history?"
  439. msgstr "Ar tikrai norite išvalyti istoriją?"
  440. msgid "&Yes"
  441. msgstr "&Taip"
  442. msgid "&No"
  443. msgstr "&Ne"
  444. msgid "&OK"
  445. msgstr "&Gerai"
  446. msgid "&Cancel"
  447. msgstr "&Atsisakyti"
  448. msgid "Background process:"
  449. msgstr "Foninis procesas:"
  450. msgid "Error"
  451. msgstr "Klaida"
  452. #, c-format
  453. msgid "%s (%d)"
  454. msgstr ""
  455. msgid "&Abort"
  456. msgstr "Nutr&aukti"
  457. msgid "Displays the current version"
  458. msgstr "Parodo dabartinę versiją"
  459. msgid "Print data directory"
  460. msgstr "Parodo duomenų aplanką"
  461. msgid "Print extended info about used data directories"
  462. msgstr ""
  463. msgid "Print configure options"
  464. msgstr "Rodyti 'configure' parinktis"
  465. msgid "Print last working directory to specified file"
  466. msgstr "Įrašo paskutinį esamą aplanką į nurodytą failą"
  467. #, fuzzy
  468. msgid "<file>"
  469. msgstr "failą"
  470. msgid "Enables subshell support (default)"
  471. msgstr "Įjungia „subshell“ palaikymą (nenurodžius kitaip)"
  472. msgid "Disables subshell support"
  473. msgstr "Išjungia „subshell“ palaikymą"
  474. msgid "Log ftp dialog to specified file"
  475. msgstr "Veda FTP dialogo žurnalą į nurodytą failą"
  476. msgid "Set debug level"
  477. msgstr "Nurodo „debug“ lygį"
  478. msgid "<integer>"
  479. msgstr ""
  480. msgid "Launches the file viewer on a file"
  481. msgstr "Parodo failo turinį"
  482. msgid "Edit files"
  483. msgstr "Redaguoti failus"
  484. #, fuzzy
  485. msgid "<file> ..."
  486. msgstr "At&verti failą..."
  487. msgid "Forces xterm features"
  488. msgstr "Priverčia naudoti „xterm“ galimybes"
  489. msgid "Disable X11 support"
  490. msgstr "Išjungti X11 palaikymą"
  491. msgid "Tries to use an old highlight mouse tracking"
  492. msgstr ""
  493. msgid "Disable mouse support in text version"
  494. msgstr "Išjungia pelę tekstinėje versijoje"
  495. msgid "Tries to use termcap instead of terminfo"
  496. msgstr "Bando naudoti „termcap“ vietoj „terminfo“"
  497. msgid "To run on slow terminals"
  498. msgstr "Leidžia lėtame terminale"
  499. msgid "Use stickchars to draw"
  500. msgstr "Naudoja alternatyvią pseudografiką"
  501. msgid "Resets soft keys on HP terminals"
  502. msgstr "Iš naujo nustato „soft keys“ HP terminaluose"
  503. msgid "Load definitions of key bindings from specified file"
  504. msgstr ""
  505. msgid "Don't load definitions of key bindings from file, use defaults"
  506. msgstr ""
  507. msgid "Requests to run in black and white"
  508. msgstr "Paleidžia nespalvotu režimu"
  509. msgid "Request to run in color mode"
  510. msgstr "Paleidžia spalvotu režimu"
  511. msgid "Specifies a color configuration"
  512. msgstr "Nurodo spalvų konfigūraciją"
  513. msgid "<string>"
  514. msgstr ""
  515. msgid "Show mc with specified skin"
  516. msgstr ""
  517. #. TRANSLATORS: don't translate keywords
  518. msgid ""
  519. "--colors KEYWORD={FORE},{BACK},{ATTR}:KEYWORD2=...\n"
  520. "\n"
  521. "{FORE}, {BACK} and {ATTR} can be omitted, and the default will be used\n"
  522. "\n"
  523. " Keywords:\n"
  524. " Global: errors, disabled, reverse, gauge, header\n"
  525. " input, inputmark, inputunchanged, commandlinemark\n"
  526. " bbarhotkey, bbarbutton, statusbar\n"
  527. " File display: normal, selected, marked, markselect\n"
  528. " Dialog boxes: dnormal, dfocus, dhotnormal, dhotfocus, errdhotnormal,\n"
  529. " errdhotfocus\n"
  530. " Menus: menunormal, menuhot, menusel, menuhotsel, menuinactive\n"
  531. " Popup menus: pmenunormal, pmenusel, pmenutitle\n"
  532. " Editor: editnormal, editbold, editmarked, editwhitespace,\n"
  533. " editlinestate, editbg, editframe, editframeactive\n"
  534. " editframedrag\n"
  535. " Viewer: viewnormal,viewbold, viewunderline, viewselected\n"
  536. " Help: helpnormal, helpitalic, helpbold, helplink, helpslink\n"
  537. msgstr ""
  538. #. TRANSLATORS: don't translate color names and attributes
  539. msgid ""
  540. "Standard Colors:\n"
  541. " black, gray, red, brightred, green, brightgreen, brown,\n"
  542. " yellow, blue, brightblue, magenta, brightmagenta, cyan,\n"
  543. " brightcyan, lightgray and white\n"
  544. "\n"
  545. "Extended colors, when 256 colors are available:\n"
  546. " color16 to color255, or rgb000 to rgb555 and gray0 to gray23\n"
  547. "\n"
  548. "Attributes:\n"
  549. " bold, italic, underline, reverse, blink; append more with '+'\n"
  550. msgstr ""
  551. msgid "Color options"
  552. msgstr "Spalvų parinktys"
  553. msgid "[+lineno] file1[:lineno] [file2[:lineno]...]"
  554. msgstr ""
  555. msgid "file"
  556. msgstr "failą"
  557. msgid "file1 file2"
  558. msgstr ""
  559. msgid "[this_dir] [other_panel_dir]"
  560. msgstr ""
  561. msgid ""
  562. "\n"
  563. "Please send any bug reports (including the output of 'mc -V')\n"
  564. "as tickets at www.midnight-commander.org\n"
  565. msgstr ""
  566. #, c-format
  567. msgid "GNU Midnight Commander %s\n"
  568. msgstr "GNU Midnight Commander %s\n"
  569. msgid "Main options"
  570. msgstr "Pagrindinės parinktys"
  571. msgid "Terminal options"
  572. msgstr "Terminalo parinktys"
  573. msgid "Arguments parse error!"
  574. msgstr ""
  575. msgid "No arguments given to the viewer."
  576. msgstr ""
  577. msgid "Two files are required to envoke the diffviewer."
  578. msgstr "Peržiūrai su diff reikalingi du failai."
  579. msgid "Background protocol error"
  580. msgstr ""
  581. msgid "Reading failed"
  582. msgstr ""
  583. msgid "Background process error"
  584. msgstr ""
  585. msgid "Unknown error in child"
  586. msgstr ""
  587. msgid "Child died unexpectedly"
  588. msgstr ""
  589. msgid ""
  590. "Background process sent us a request for more arguments\n"
  591. "than we can handle."
  592. msgstr ""
  593. msgid "&Dismiss"
  594. msgstr "At&mesti"
  595. msgid "Enter search string:"
  596. msgstr ""
  597. msgid "Cas&e sensitive"
  598. msgstr ""
  599. msgid "&Backwards"
  600. msgstr "At&bulai"
  601. msgid "&Whole words"
  602. msgstr ""
  603. msgid "&All charsets"
  604. msgstr "Visi rinkmenų kodai"
  605. msgid "Search"
  606. msgstr "Paieška"
  607. msgid "Search is disabled"
  608. msgstr "Paieška yra išjungta"
  609. #, c-format
  610. msgid ""
  611. "Cannot create temporary diff file\n"
  612. "%s"
  613. msgstr ""
  614. "Nepavyko sukurti laikino diff failo\n"
  615. "%s"
  616. #, c-format
  617. msgid ""
  618. "Cannot create backup file\n"
  619. "%s%s\n"
  620. "%s"
  621. msgstr ""
  622. #, c-format
  623. msgid ""
  624. "Cannot create temporary merge file\n"
  625. "%s"
  626. msgstr ""
  627. msgid "&Fastest (Assume large files)"
  628. msgstr "Greičiausias (skirtas dideliems &failams)"
  629. msgid "&Minimal (Find a smaller set of change)"
  630. msgstr ""
  631. msgid "Diff algorithm"
  632. msgstr "Diff algoritmas"
  633. msgid "Diff extra options"
  634. msgstr "Diff papildomos parinktys"
  635. msgid "&Ignore case"
  636. msgstr ""
  637. msgid "Ignore tab &expansion"
  638. msgstr ""
  639. msgid "Ignore &space change"
  640. msgstr ""
  641. msgid "Ignore all &whitespace"
  642. msgstr ""
  643. msgid "Strip &trailing carriage return"
  644. msgstr ""
  645. msgid "Diff Options"
  646. msgstr "Diff parinktys"
  647. msgid "Edit"
  648. msgstr "Taisyti"
  649. msgid "Edit is disabled"
  650. msgstr "Redagavimas yra išjungtas"
  651. msgid "Goto line (left)"
  652. msgstr "Eiti į eilutę (kairė)"
  653. msgid "Goto line (right)"
  654. msgstr "Eiti į eilutę (dešinė)"
  655. msgid "Enter line:"
  656. msgstr ""
  657. msgid "ButtonBar|Help"
  658. msgstr "ButtonBar|Pagalba"
  659. msgid "ButtonBar|Save"
  660. msgstr "ButtonBar|Įrašy"
  661. msgid "ButtonBar|Edit"
  662. msgstr "ButtonBar|Keist"
  663. msgid "ButtonBar|Merge"
  664. msgstr ""
  665. msgid "ButtonBar|Search"
  666. msgstr "ButtonBar|Ieškot"
  667. msgid "ButtonBar|Options"
  668. msgstr "ButtonBar|Parinktys"
  669. msgid "ButtonBar|Quit"
  670. msgstr "ButtonBar|Išeit"
  671. msgid "Quit"
  672. msgstr "Išeiti"
  673. msgid "File(s) was modified. Save with exit?"
  674. msgstr ""
  675. msgid ""
  676. "Midnight Commander is being shut down.\n"
  677. "Save modified file(s)?"
  678. msgstr ""
  679. "Midnight Commander yra išjungiamas.\n"
  680. "Ar išsaugoti pakeitimus faile/failuose?"
  681. msgid "Diff:"
  682. msgstr "Diff:"
  683. #, c-format
  684. msgid "\"%s\" is a directory"
  685. msgstr "\"%s\" yra aplankas"
  686. #, c-format
  687. msgid ""
  688. "Cannot stat \"%s\"\n"
  689. "%s"
  690. msgstr ""
  691. msgid "Diff viewer: invalid mode"
  692. msgstr "Diff peržiūra: neteisingas režimas"
  693. msgid "Two files are needed to compare"
  694. msgstr ""
  695. msgid "Choose syntax highlighting"
  696. msgstr ""
  697. msgid "< Auto >"
  698. msgstr "< Auto >"
  699. msgid "< Reload Current Syntax >"
  700. msgstr "< Įkelti esamą sintaksę iš naujo >"
  701. #, c-format
  702. msgid "Loading: %3d%%"
  703. msgstr ""
  704. msgid "Loading..."
  705. msgstr "Įkeliama..."
  706. #, c-format
  707. msgid "Cannot open %s for reading"
  708. msgstr ""
  709. msgid "Load file"
  710. msgstr "Įkelti failą"
  711. #, c-format
  712. msgid "Error reading %s"
  713. msgstr ""
  714. #, c-format
  715. msgid "Cannot get size/permissions for %s"
  716. msgstr ""
  717. #, c-format
  718. msgid "\"%s\" is not a regular file"
  719. msgstr "\"%s\" yra neįprastas failas"
  720. #, c-format
  721. msgid ""
  722. "File \"%s\" is too large.\n"
  723. "Open it anyway?"
  724. msgstr ""
  725. #, c-format
  726. msgid "Error reading from pipe: %s"
  727. msgstr ""
  728. #, c-format
  729. msgid "Cannot open pipe for reading: %s"
  730. msgstr ""
  731. #, c-format
  732. msgid "Searching %s: %3d%%"
  733. msgstr ""
  734. #, c-format
  735. msgid "Searching %s"
  736. msgstr "Ieškoma %s"
  737. msgid "File has hard-links. Detach before saving?"
  738. msgstr ""
  739. msgid "The file has been modified in the meantime. Save anyway?"
  740. msgstr "Tuo tarpu failas buvo pakeistas. Vis tiek jį išsaugoti?"
  741. #, c-format
  742. msgid "Error writing to pipe: %s"
  743. msgstr ""
  744. #, c-format
  745. msgid "Cannot open pipe for writing: %s"
  746. msgstr ""
  747. #, c-format
  748. msgid "Cannot open file for writing: %s"
  749. msgstr ""
  750. msgid "The file you are saving does not end with a newline."
  751. msgstr ""
  752. msgid "C&ontinue"
  753. msgstr "&Tęsti"
  754. msgid "&Do not change"
  755. msgstr ""
  756. msgid "&Unix format (LF)"
  757. msgstr ""
  758. msgid "&Windows/DOS format (CR LF)"
  759. msgstr ""
  760. msgid "&Macintosh format (CR)"
  761. msgstr ""
  762. msgid "Enter file name:"
  763. msgstr ""
  764. msgid "Change line breaks to:"
  765. msgstr ""
  766. msgid "Save As"
  767. msgstr "Išsaugoti kaip"
  768. msgid "Block is large, you may not be able to undo this action"
  769. msgstr ""
  770. msgid "Collect completions"
  771. msgstr ""
  772. msgid "&Quick save"
  773. msgstr "&Greitas išsaugojimas"
  774. msgid "&Safe save"
  775. msgstr "&Saugus išsaugojimas"
  776. msgid "&Do backups with following extension:"
  777. msgstr ""
  778. msgid "Check &POSIX new line"
  779. msgstr ""
  780. msgid "Edit Save Mode"
  781. msgstr ""
  782. msgid "Save as"
  783. msgstr "Išsaugoti kaip"
  784. msgid "Cannot save: destination is not a regular file"
  785. msgstr ""
  786. msgid "A file already exists with this name"
  787. msgstr "Failas su tokiu vardu jau egzistuoja"
  788. msgid "&Overwrite"
  789. msgstr "Perraš&yti"
  790. msgid "Cannot save file"
  791. msgstr "Nepavyko išsaugoti failo"
  792. msgid "Delete macro"
  793. msgstr "Šalinti macro"
  794. msgid "Press macro hotkey:"
  795. msgstr ""
  796. msgid "Macro not deleted"
  797. msgstr "Macro nepašalinta"
  798. msgid "Save macro"
  799. msgstr ""
  800. msgid "Press the macro's new hotkey:"
  801. msgstr ""
  802. msgid "Repeat last commands"
  803. msgstr ""
  804. msgid "Repeat times:"
  805. msgstr "Kartojimų skaičius:"
  806. #, c-format
  807. msgid "Confirm save file: \"%s\""
  808. msgstr "Patvirtinkite failo išsaugojimą: \"%s\""
  809. msgid "Save file"
  810. msgstr "Išsaugoti failą"
  811. msgid "&Save"
  812. msgstr "Į&rašyti"
  813. msgid "Load"
  814. msgstr "Įkelti"
  815. msgid "Syntax file edit"
  816. msgstr "Sintaksės failo keitimas"
  817. msgid "Which syntax file you want to edit?"
  818. msgstr ""
  819. msgid "&User"
  820. msgstr "&Naudotojo"
  821. msgid "&System wide"
  822. msgstr ""
  823. msgid "Menu edit"
  824. msgstr ""
  825. msgid "Which menu file do you want to edit?"
  826. msgstr ""
  827. msgid "&Local"
  828. msgstr "&Vietinį"
  829. msgid "Replace"
  830. msgstr "Pakeisti"
  831. #, c-format
  832. msgid "%ld replacements made"
  833. msgstr ""
  834. msgid "[NoName]"
  835. msgstr ""
  836. #, c-format
  837. msgid ""
  838. "File %s was modified.\n"
  839. "Save before close?"
  840. msgstr ""
  841. "Failas %s buvo pakeistas.\n"
  842. "Ar išsaugoti?"
  843. msgid "Close file"
  844. msgstr "Uždaryti failą"
  845. #, c-format
  846. msgid ""
  847. "Midnight Commander is being shut down.\n"
  848. "Save modified file %s?"
  849. msgstr ""
  850. "Midnight Commander yra išjungiamas.\n"
  851. "Ar išsaugoti pakeitimus faile %s?"
  852. msgid "This function is not implemented"
  853. msgstr ""
  854. msgid "Copy to clipboard"
  855. msgstr ""
  856. msgid "Unable to save to file"
  857. msgstr ""
  858. msgid "Cut to clipboard"
  859. msgstr ""
  860. msgid "Goto line"
  861. msgstr "Eiti į eilutę"
  862. msgid "Save block"
  863. msgstr "Išsaugoti bloką"
  864. msgid "Insert file"
  865. msgstr "Įterpti failą"
  866. msgid "Cannot insert file"
  867. msgstr "Negalima įterpti failo"
  868. msgid "Sort block"
  869. msgstr "Rikiuoti pasirinkimą"
  870. msgid "You must first highlight a block of text"
  871. msgstr ""
  872. msgid "Run sort"
  873. msgstr "Rikiuoti"
  874. msgid "Enter sort options (see manpage) separated by whitespace:"
  875. msgstr "Įveskite rikiavimo parinktis (žiūrėkite 'manpage') atskirtas tarpais:"
  876. msgid "Sort"
  877. msgstr "Rikiuoti"
  878. msgid "Cannot execute sort command"
  879. msgstr "Nepavyko įvykdyti rikiavimo komandos"
  880. #, c-format
  881. msgid "Sort returned non-zero: %s"
  882. msgstr "Rikiavimas grąžino ne nulį: %s"
  883. msgid "Paste output of external command"
  884. msgstr "Įdėti išorinės komandos išvestį"
  885. msgid "Enter shell command(s):"
  886. msgstr "Įveskite aplinkos komandą (-as):"
  887. msgid "External command"
  888. msgstr "Išorinė komanda"
  889. msgid "Cannot execute command"
  890. msgstr "Nepavyko įvykdyti išorinės komandos"
  891. msgid "mail -s <subject> -c <cc> <to>"
  892. msgstr ""
  893. msgid "To"
  894. msgstr ""
  895. msgid "Subject"
  896. msgstr ""
  897. msgid "Copies to"
  898. msgstr ""
  899. msgid "Mail"
  900. msgstr ""
  901. msgid "Insert literal"
  902. msgstr ""
  903. msgid "Press any key:"
  904. msgstr ""
  905. msgid ""
  906. "Current text was modified without a file save.\n"
  907. "Continue discards these changes"
  908. msgstr ""
  909. msgid "In se&lection"
  910. msgstr ""
  911. msgid "&Find all"
  912. msgstr "&Rasti viską"
  913. msgid "Enter replacement string:"
  914. msgstr ""
  915. msgid "Replace with:"
  916. msgstr "Pakeisti:"
  917. msgid "&Replace"
  918. msgstr "Pa&keisti"
  919. msgid "A&ll"
  920. msgstr "&Visi"
  921. msgid "&Skip"
  922. msgstr "Pralei&sti"
  923. msgid "Confirm replace"
  924. msgstr "Patvirtinti pakeitimą"
  925. msgid "Cancel"
  926. msgstr "Atsisakyti"
  927. msgid ""
  928. "Current text was modified without a file save.\n"
  929. "Continue discards these changes."
  930. msgstr ""
  931. msgid "NoName"
  932. msgstr ""
  933. msgid "&Open file..."
  934. msgstr "At&verti failą..."
  935. msgid "&New"
  936. msgstr "&Naujas"
  937. msgid "&Close"
  938. msgstr "&Uždaryti"
  939. msgid "Save &as..."
  940. msgstr "Įrašyti kaip..."
  941. msgid "&Insert file..."
  942. msgstr "Įterpti failą..."
  943. msgid "Cop&y to file..."
  944. msgstr ""
  945. msgid "&User menu..."
  946. msgstr ""
  947. msgid "A&bout..."
  948. msgstr "A&pie"
  949. msgid "&Quit"
  950. msgstr "&Išeiti"
  951. msgid "&Undo"
  952. msgstr "Atšaukti"
  953. msgid "&Redo"
  954. msgstr "Atstatyti"
  955. msgid "&Toggle ins/overw"
  956. msgstr ""
  957. msgid "To&ggle mark"
  958. msgstr ""
  959. msgid "&Mark columns"
  960. msgstr ""
  961. msgid "Mark &all"
  962. msgstr "Pažymėti viską"
  963. msgid "Unmar&k"
  964. msgstr ""
  965. msgid "Cop&y"
  966. msgstr "Kopijuoti"
  967. msgid "Mo&ve"
  968. msgstr "Perkelti"
  969. msgid "&Delete"
  970. msgstr "Š&alinti"
  971. msgid "Co&py to clipfile"
  972. msgstr ""
  973. msgid "&Cut to clipfile"
  974. msgstr ""
  975. msgid "Pa&ste from clipfile"
  976. msgstr ""
  977. msgid "&Beginning"
  978. msgstr ""
  979. msgid "&End"
  980. msgstr ""
  981. msgid "&Search..."
  982. msgstr "Ieškoti..."
  983. msgid "Search &again"
  984. msgstr "Ieškoti dar kartą"
  985. msgid "&Replace..."
  986. msgstr "Pakeisti..."
  987. msgid "&Toggle bookmark"
  988. msgstr ""
  989. msgid "&Next bookmark"
  990. msgstr ""
  991. msgid "&Prev bookmark"
  992. msgstr ""
  993. msgid "&Flush bookmarks"
  994. msgstr ""
  995. msgid "&Go to line..."
  996. msgstr ""
  997. msgid "&Toggle line state"
  998. msgstr ""
  999. msgid "Go to matching &bracket"
  1000. msgstr "Eiti prie sutampančio skliausto"
  1001. msgid "Toggle s&yntax highlighting"
  1002. msgstr ""
  1003. msgid "&Find declaration"
  1004. msgstr ""
  1005. msgid "Back from &declaration"
  1006. msgstr ""
  1007. msgid "For&ward to declaration"
  1008. msgstr ""
  1009. msgid "Encod&ing..."
  1010. msgstr ""
  1011. msgid "&Refresh screen"
  1012. msgstr ""
  1013. msgid "&Start/Stop record macro"
  1014. msgstr ""
  1015. msgid "Delete macr&o..."
  1016. msgstr "Šalinti macr&o..."
  1017. msgid "Record/Repeat &actions"
  1018. msgstr ""
  1019. msgid "S&pell check"
  1020. msgstr ""
  1021. msgid "C&heck word"
  1022. msgstr ""
  1023. msgid "Change spelling &language..."
  1024. msgstr ""
  1025. msgid "&Mail..."
  1026. msgstr ""
  1027. msgid "Insert &literal..."
  1028. msgstr ""
  1029. msgid "Insert &date/time"
  1030. msgstr ""
  1031. msgid "&Format paragraph"
  1032. msgstr ""
  1033. msgid "&Sort..."
  1034. msgstr "Rikiuoti..."
  1035. msgid "&Paste output of..."
  1036. msgstr ""
  1037. msgid "&External formatter"
  1038. msgstr ""
  1039. msgid "&Move"
  1040. msgstr "&Perkelti"
  1041. msgid "&Resize"
  1042. msgstr ""
  1043. msgid "&Toggle fullscreen"
  1044. msgstr ""
  1045. msgid "&Next"
  1046. msgstr "&Kitas"
  1047. msgid "&Previous"
  1048. msgstr "&Ankstesnis"
  1049. msgid "&List..."
  1050. msgstr ""
  1051. msgid "&General..."
  1052. msgstr ""
  1053. msgid "Save &mode..."
  1054. msgstr "Įrašymo rėžimas..."
  1055. msgid "Learn &keys..."
  1056. msgstr "Mokytis klavišus"
  1057. msgid "Syntax &highlighting..."
  1058. msgstr ""
  1059. msgid "S&yntax file"
  1060. msgstr "Sintaksės failas"
  1061. msgid "&Menu file"
  1062. msgstr "Meniu failas"
  1063. msgid "&Save setup"
  1064. msgstr "Įrašyti nu&statymus"
  1065. msgid "&File"
  1066. msgstr "Failas"
  1067. msgid "&Edit"
  1068. msgstr "Taisa"
  1069. msgid "&Search"
  1070. msgstr "Paieška"
  1071. msgid "&Command"
  1072. msgstr "Komanda"
  1073. msgid "For&mat"
  1074. msgstr "Formatas"
  1075. msgid "&Window"
  1076. msgstr "Langas"
  1077. msgid "&Options"
  1078. msgstr "Nustatymai"
  1079. msgid "&None"
  1080. msgstr "Nieko"
  1081. msgid "&Dynamic paragraphing"
  1082. msgstr ""
  1083. msgid "Type &writer wrap"
  1084. msgstr ""
  1085. msgid "Wrap mode"
  1086. msgstr "Eilučių laužymas"
  1087. msgid "Tabulation"
  1088. msgstr "Tabuliacija"
  1089. msgid "&Fake half tabs"
  1090. msgstr "Netikra pusinė tabuliacija"
  1091. msgid "&Backspace through tabs"
  1092. msgstr "Trinti ta&buliaciją"
  1093. msgid "Fill tabs with &spaces"
  1094. msgstr "Tabuliacija tarpai&s"
  1095. msgid "Tab spacing:"
  1096. msgstr ""
  1097. msgid "Other options"
  1098. msgstr "Kitos parinktys"
  1099. msgid "&Return does autoindent"
  1100. msgstr "„&Return“ autom. įtraukia"
  1101. msgid "Confir&m before saving"
  1102. msgstr "Patvirtinti pri&eš įrašant"
  1103. msgid "Save file &position"
  1104. msgstr "Išsaugoti &vietą faile"
  1105. msgid "&Visible trailing spaces"
  1106. msgstr ""
  1107. msgid "Visible &tabs"
  1108. msgstr ""
  1109. msgid "Synta&x highlighting"
  1110. msgstr "Sintak&sės ryškinimas"
  1111. msgid "C&ursor after inserted block"
  1112. msgstr ""
  1113. msgid "Pers&istent selection"
  1114. msgstr ""
  1115. msgid "Cursor be&yond end of line"
  1116. msgstr ""
  1117. msgid "&Group undo"
  1118. msgstr ""
  1119. msgid "Word wrap line length:"
  1120. msgstr ""
  1121. msgid "Editor options"
  1122. msgstr "Redaktoriaus parinktys"
  1123. msgid ""
  1124. "A user friendly text editor\n"
  1125. "written for the Midnight Commander."
  1126. msgstr ""
  1127. msgid "Copyright (C) 1996-2016 the Free Software Foundation"
  1128. msgstr ""
  1129. msgid "About"
  1130. msgstr "Apie"
  1131. msgid "Open files"
  1132. msgstr "Atidaryti failus"
  1133. msgid "Edit: "
  1134. msgstr "Keisti:"
  1135. msgid "ButtonBar|Mark"
  1136. msgstr ""
  1137. msgid "ButtonBar|Replac"
  1138. msgstr ""
  1139. msgid "ButtonBar|Copy"
  1140. msgstr ""
  1141. msgid "ButtonBar|Move"
  1142. msgstr ""
  1143. msgid "ButtonBar|Delete"
  1144. msgstr "ButtonBar|Šalinti"
  1145. msgid "ButtonBar|PullDn"
  1146. msgstr ""
  1147. msgid "Breton"
  1148. msgstr ""
  1149. msgid "Czech"
  1150. msgstr "Čekų"
  1151. msgid "Welsh"
  1152. msgstr ""
  1153. msgid "Danish"
  1154. msgstr "Danų"
  1155. msgid "German"
  1156. msgstr "Vokiečių"
  1157. msgid "Greek"
  1158. msgstr "Graikų"
  1159. msgid "English"
  1160. msgstr "Anglų"
  1161. msgid "British English"
  1162. msgstr ""
  1163. msgid "Canadian English"
  1164. msgstr ""
  1165. msgid "American English"
  1166. msgstr ""
  1167. msgid "Esperanto"
  1168. msgstr "Esperanto"
  1169. msgid "Spanish"
  1170. msgstr "Ispanų"
  1171. msgid "Faroese"
  1172. msgstr ""
  1173. msgid "French"
  1174. msgstr "Prancūzų"
  1175. msgid "Italian"
  1176. msgstr "Italų"
  1177. msgid "Dutch"
  1178. msgstr "Olandų"
  1179. msgid "Norwegian"
  1180. msgstr "Norvegų"
  1181. msgid "Polish"
  1182. msgstr "Lenkų"
  1183. msgid "Portuguese"
  1184. msgstr "Portugalų"
  1185. msgid "Romanian"
  1186. msgstr "Rumunų"
  1187. msgid "Russian"
  1188. msgstr "Rusų"
  1189. msgid "Slovak"
  1190. msgstr "Slovakų"
  1191. msgid "Swedish"
  1192. msgstr "Švedų"
  1193. msgid "Ukrainian"
  1194. msgstr "Ukrainiečių"
  1195. msgid "&Add word"
  1196. msgstr ""
  1197. msgid "Language"
  1198. msgstr "Kalba"
  1199. msgid "Misspelled"
  1200. msgstr ""
  1201. msgid "Check word"
  1202. msgstr "Tikrinti žodį"
  1203. msgid "Suggest"
  1204. msgstr "Pasiūlyti"
  1205. msgid "Select language"
  1206. msgstr "Pasirinkti kalbą"
  1207. msgid "Load syntax file"
  1208. msgstr "Įkelti sintaksės failą"
  1209. #, c-format
  1210. msgid ""
  1211. "Cannot open file %s\n"
  1212. "%s"
  1213. msgstr ""
  1214. #, c-format
  1215. msgid "Error in file %s on line %d"
  1216. msgstr "Klaida faile %s eilutėje %d"
  1217. msgid ""
  1218. "The Commander can't change to the directory that\n"
  1219. "the subshell claims you are in. Perhaps you have\n"
  1220. "deleted your working directory, or given yourself\n"
  1221. "extra access permissions with the \"su\" command?"
  1222. msgstr ""
  1223. #, c-format
  1224. msgid "Cannot fetch a local copy of %s"
  1225. msgstr ""
  1226. msgid "The shell is already running a command"
  1227. msgstr ""
  1228. msgid "Type 'exit' to return to the Midnight Commander"
  1229. msgstr ""
  1230. msgid "Set &all"
  1231. msgstr "Nustatyti &visus"
  1232. msgid "S&kip"
  1233. msgstr "&Praleisti"
  1234. msgid "&Set"
  1235. msgstr "&Nustatyti"
  1236. msgid "owner"
  1237. msgstr "savin."
  1238. msgid "group"
  1239. msgstr "grupė"
  1240. msgid "other"
  1241. msgstr "kiti"
  1242. msgid "Flag"
  1243. msgstr "Būs."
  1244. msgid "Chown advanced command"
  1245. msgstr ""
  1246. #, c-format
  1247. msgid ""
  1248. "Cannot chmod \"%s\"\n"
  1249. "%s"
  1250. msgstr ""
  1251. #, fuzzy
  1252. msgid "&Ignore"
  1253. msgstr "&Ignoruoti užraktą"
  1254. #, fuzzy
  1255. msgid "Ignore &all"
  1256. msgstr "&Ignoruoti užraktą"
  1257. msgid "&Retry"
  1258. msgstr "&Iš naujo"
  1259. #, c-format
  1260. msgid ""
  1261. "Cannot chown \"%s\"\n"
  1262. "%s"
  1263. msgstr ""
  1264. msgid "< Default >"
  1265. msgstr ""
  1266. msgid "Skins"
  1267. msgstr ""
  1268. msgid "Other 8 bit"
  1269. msgstr "Kita 8 bitų"
  1270. msgid "Running"
  1271. msgstr ""
  1272. msgid "Stopped"
  1273. msgstr "Sustojo"
  1274. msgid "&Never"
  1275. msgstr "&Niekada"
  1276. msgid "On dum&b terminals"
  1277. msgstr ""
  1278. msgid "Alwa&ys"
  1279. msgstr "Visa&da"
  1280. msgid "File operations"
  1281. msgstr ""
  1282. msgid "&Verbose operation"
  1283. msgstr "Išsa&mios operacijos"
  1284. msgid "Compute tota&ls"
  1285. msgstr ""
  1286. msgid "Classic pro&gressbar"
  1287. msgstr ""
  1288. msgid "Mkdi&r autoname"
  1289. msgstr ""
  1290. msgid "&Preallocate space"
  1291. msgstr ""
  1292. msgid "Esc key mode"
  1293. msgstr ""
  1294. msgid "S&ingle press"
  1295. msgstr ""
  1296. msgid "Timeout:"
  1297. msgstr ""
  1298. msgid "Pause after run"
  1299. msgstr ""
  1300. msgid "Use internal edi&t"
  1301. msgstr ""
  1302. msgid "Use internal vie&w"
  1303. msgstr ""
  1304. msgid "A&sk new file name"
  1305. msgstr ""
  1306. msgid "Auto m&enus"
  1307. msgstr ""
  1308. msgid "&Drop down menus"
  1309. msgstr "Išsklei&džiami meniu"
  1310. msgid "S&hell patterns"
  1311. msgstr ""
  1312. msgid "Co&mplete: show all"
  1313. msgstr ""
  1314. msgid "Rotating d&ash"
  1315. msgstr ""
  1316. msgid "Cd follows lin&ks"
  1317. msgstr ""
  1318. msgid "Sa&fe delete"
  1319. msgstr "Saugus šalinimas"
  1320. msgid "A&uto save setup"
  1321. msgstr ""
  1322. msgid "Configure options"
  1323. msgstr "Keisti parinktis"
  1324. msgid "Skin:"
  1325. msgstr "Išvaizda"
  1326. msgid "Appearance"
  1327. msgstr "Išvaizda"
  1328. msgid "Case &insensitive"
  1329. msgstr ""
  1330. msgid "Use panel sort mo&de"
  1331. msgstr "Nau&doti skydelio rikiavimo režimą"
  1332. msgid "Show mi&ni-status"
  1333. msgstr ""
  1334. msgid "Use SI si&ze units"
  1335. msgstr ""
  1336. msgid "Mi&x all files"
  1337. msgstr ""
  1338. msgid "Show &backup files"
  1339. msgstr ""
  1340. msgid "Show &hidden files"
  1341. msgstr "Rodyti paslėptus failus"
  1342. msgid "&Fast dir reload"
  1343. msgstr "&Greitai atnaujinti"
  1344. msgid "Ma&rk moves down"
  1345. msgstr ""
  1346. msgid "Re&verse files only"
  1347. msgstr ""
  1348. msgid "Simple s&wap"
  1349. msgstr ""
  1350. msgid "A&uto save panels setup"
  1351. msgstr ""
  1352. msgid "Navigation"
  1353. msgstr "Navigacija"
  1354. msgid "L&ynx-like motion"
  1355. msgstr "„L&ynx“ elgesys"
  1356. msgid "Pa&ge scrolling"
  1357. msgstr ""
  1358. msgid "Center &scrolling"
  1359. msgstr ""
  1360. msgid "&Mouse page scrolling"
  1361. msgstr ""
  1362. msgid "File highlight"
  1363. msgstr ""
  1364. msgid "File &types"
  1365. msgstr "Failų tipai"
  1366. msgid "&Permissions"
  1367. msgstr "Leidimai"
  1368. msgid "Quick search"
  1369. msgstr ""
  1370. msgid "Panel options"
  1371. msgstr "Skydelio parinktys"
  1372. msgid "Information"
  1373. msgstr "Informacija"
  1374. msgid ""
  1375. "Using the fast reload option may not reflect the exact\n"
  1376. "directory contents. In this case you'll need to do a\n"
  1377. "manual reload of the directory. See the man page for\n"
  1378. "the details."
  1379. msgstr ""
  1380. "Naudojant greitą atnaujinimą gali būti neparodytas\n"
  1381. "tikslus aplanko turinys. Šiuo atveju jums reiks atnaujinti\n"
  1382. "aplanko turinį rankiniu būdu. Daugiau informacijos\n"
  1383. "ieškokite 'man' puslapiuose."
  1384. msgid "&Full file list"
  1385. msgstr "Pilnas &failų sąrašas"
  1386. msgid "&Brief file list:"
  1387. msgstr ""
  1388. msgid "&Long file list"
  1389. msgstr "I&lgas failų sąrašas"
  1390. msgid "&User defined:"
  1391. msgstr "Kit&oks:"
  1392. msgid "columns"
  1393. msgstr "stulpeliai"
  1394. msgid "User &mini status"
  1395. msgstr ""
  1396. msgid "Listing format"
  1397. msgstr ""
  1398. msgid "Executable &first"
  1399. msgstr ""
  1400. msgid "&Reverse"
  1401. msgstr "A&tbulai"
  1402. msgid "Sort order"
  1403. msgstr "Rikiavimo tvarka"
  1404. #. TRANSLATORS: no need to translate 'Confirmation', it's just a context prefix
  1405. msgid "Confirmation|&Delete"
  1406. msgstr "Confirmation|Šalinti"
  1407. msgid "Confirmation|O&verwrite"
  1408. msgstr ""
  1409. msgid "Confirmation|&Execute"
  1410. msgstr ""
  1411. msgid "Confirmation|E&xit"
  1412. msgstr ""
  1413. msgid "Confirmation|Di&rectory hotlist delete"
  1414. msgstr "Confirmation|Šalinti aplankų sąrašą"
  1415. msgid "Confirmation|&History cleanup"
  1416. msgstr ""
  1417. msgid "Confirmation"
  1418. msgstr "Patvirtinimas"
  1419. msgid "&UTF-8 output"
  1420. msgstr ""
  1421. msgid "&Full 8 bits output"
  1422. msgstr ""
  1423. msgid "&ISO 8859-1"
  1424. msgstr "&ISO 8859-1"
  1425. msgid "7 &bits"
  1426. msgstr "7 &bitai"
  1427. msgid "F&ull 8 bits input"
  1428. msgstr "Pilna 8 bitų į&vestis"
  1429. msgid "Display bits"
  1430. msgstr ""
  1431. msgid "Input / display codepage:"
  1432. msgstr "Įvesties / išvesties kodų lentelė:"
  1433. msgid "Directory tree"
  1434. msgstr "Aplankų medis"
  1435. msgid "Timeout for freeing VFSs (sec):"
  1436. msgstr ""
  1437. msgid "FTP anonymous password:"
  1438. msgstr ""
  1439. msgid "FTP directory cache timeout (sec):"
  1440. msgstr ""
  1441. msgid "&Always use ftp proxy:"
  1442. msgstr ""
  1443. msgid "&Use ~/.netrc"
  1444. msgstr "Na&udoti ~/.netrc"
  1445. msgid "Use &passive mode"
  1446. msgstr "&Pasyvus režimas"
  1447. msgid "Use passive mode over pro&xy"
  1448. msgstr "Pasyvus režimas per įgaliotąjį serverį"
  1449. msgid "Virtual File System Setting"
  1450. msgstr ""
  1451. msgid "cd"
  1452. msgstr "Eiti į: "
  1453. msgid "Quick cd"
  1454. msgstr "Greitas „cd“"
  1455. msgid "Existing filename (filename symlink will point to):"
  1456. msgstr "Esančio failo pavad. (į kurią nuoroda bus nukreipta):"
  1457. msgid "Symbolic link filename:"
  1458. msgstr "Simbolinės nuorodos pavadinimas:"
  1459. msgid "Symbolic link"
  1460. msgstr "Simbolinė nuoroda"
  1461. msgid "&Stop"
  1462. msgstr "&Stabdyti"
  1463. msgid "&Resume"
  1464. msgstr "&Tęsti"
  1465. msgid "&Kill"
  1466. msgstr "N&užudyti"
  1467. msgid "Background jobs"
  1468. msgstr "Foninio režimo užduotys"
  1469. #, c-format
  1470. msgid "Password for \\\\%s\\%s"
  1471. msgstr "\\\\%s\\%s slaptažodis"
  1472. msgid "Domain:"
  1473. msgstr "Domenas:"
  1474. msgid "Username:"
  1475. msgstr "Prisijungimo vardas:"
  1476. msgid "SMB authentication"
  1477. msgstr ""
  1478. msgid "set &user ID on execution"
  1479. msgstr ""
  1480. msgid "set &group ID on execution"
  1481. msgstr ""
  1482. msgid "stick&y bit"
  1483. msgstr ""
  1484. msgid "&read by owner"
  1485. msgstr ""
  1486. msgid "&write by owner"
  1487. msgstr ""
  1488. msgid "e&xecute/search by owner"
  1489. msgstr ""
  1490. msgid "rea&d by group"
  1491. msgstr ""
  1492. msgid "write by grou&p"
  1493. msgstr ""
  1494. msgid "execu&te/search by group"
  1495. msgstr ""
  1496. msgid "read &by others"
  1497. msgstr ""
  1498. msgid "wr&ite by others"
  1499. msgstr ""
  1500. msgid "execute/searc&h by others"
  1501. msgstr ""
  1502. msgid "Name:"
  1503. msgstr "Pavadinimas:"
  1504. msgid "Permissions (octal):"
  1505. msgstr ""
  1506. msgid "Owner name:"
  1507. msgstr "Savininko vardas:"
  1508. msgid "Group name:"
  1509. msgstr "Grupės pavadinimas:"
  1510. msgid "&Marked all"
  1511. msgstr "Pažy&mėti visi"
  1512. msgid "S&et marked"
  1513. msgstr "Nustat&yti pažymėtus"
  1514. msgid "C&lear marked"
  1515. msgstr "Išva&lyti pažymėtus"
  1516. msgid "Chmod command"
  1517. msgstr "„chmod“ komanda"
  1518. msgid "Permission"
  1519. msgstr "Leidimai"
  1520. msgid "File"
  1521. msgstr "Failas"
  1522. msgid "Set &groups"
  1523. msgstr "Nustatyti &grupes"
  1524. msgid "Set &users"
  1525. msgstr "N&ustatyti naudot."
  1526. msgid "Name"
  1527. msgstr "Pavadinimas"
  1528. msgid "Owner name"
  1529. msgstr "Savininkas:"
  1530. msgid "Group name"
  1531. msgstr "Grupė:"
  1532. msgid "Size"
  1533. msgstr "Dydis"
  1534. msgid "Chown command"
  1535. msgstr ""
  1536. msgid "User name"
  1537. msgstr "Vartotojo vardas"
  1538. msgid "<Unknown user>"
  1539. msgstr "<Nežinomas naud.>"
  1540. msgid "<Unknown group>"
  1541. msgstr "<Nežnoma grupė>"
  1542. msgid "Enter machine name (F1 for details):"
  1543. msgstr ""
  1544. msgid "Files tagged, want to cd?"
  1545. msgstr "Failai pažymėti, norite įvykdyti „cd“?"
  1546. msgid "Cannot change directory"
  1547. msgstr " Nepavyko pakeisti aplanko "
  1548. msgid "Filter"
  1549. msgstr "Filtras"
  1550. msgid "Set expression for filtering filenames"
  1551. msgstr ""
  1552. #, c-format
  1553. msgid "Link %s to:"
  1554. msgstr "Sukurti nuorodą iš „%s“ į:"
  1555. msgid "Link"
  1556. msgstr "Nuoroda"
  1557. #, c-format
  1558. msgid "link: %s"
  1559. msgstr ""
  1560. #, c-format
  1561. msgid "symlink: %s"
  1562. msgstr "simbolinė nuoroda: %s"
  1563. #, c-format
  1564. msgid "Cannot chdir to \"%s\""
  1565. msgstr ""
  1566. msgid "View file"
  1567. msgstr "Žiūrėti failą"
  1568. msgid "Filename:"
  1569. msgstr "Failo pavadinimas:"
  1570. msgid "Filtered view"
  1571. msgstr ""
  1572. msgid "Filter command and arguments:"
  1573. msgstr ""
  1574. msgid "Edit file"
  1575. msgstr "Keisti failą"
  1576. msgid "Create a new Directory"
  1577. msgstr "Sukurti naują aplanką"
  1578. msgid "Enter directory name:"
  1579. msgstr "Įvesti aplanko pavadinimą:"
  1580. msgid "Extension file edit"
  1581. msgstr "Plėtinių failo keitimas"
  1582. msgid "Which extension file you want to edit?"
  1583. msgstr ""
  1584. msgid "&System Wide"
  1585. msgstr "&Sisteminį"
  1586. msgid "Highlighting groups file edit"
  1587. msgstr ""
  1588. msgid "Which highlighting file you want to edit?"
  1589. msgstr ""
  1590. msgid "Compare directories"
  1591. msgstr "Lyginti aplankus"
  1592. msgid "Select compare method:"
  1593. msgstr "Pasirinkti lyginimo metodą:"
  1594. msgid "&Quick"
  1595. msgstr "&Greitas"
  1596. msgid "&Size only"
  1597. msgstr "Tik dydi&s"
  1598. msgid "&Thorough"
  1599. msgstr "&Pilnas"
  1600. msgid ""
  1601. "Both panels should be in the listing mode\n"
  1602. "to use this command"
  1603. msgstr ""
  1604. msgid ""
  1605. "Not an xterm or Linux console;\n"
  1606. "the panels cannot be toggled."
  1607. msgstr ""
  1608. #, c-format
  1609. msgid "'%s' is not a symbolic link"
  1610. msgstr ""
  1611. #, c-format
  1612. msgid "Symlink '%s' points to:"
  1613. msgstr "Simbolinė nuoroda '%s' nurodo į:"
  1614. msgid "Edit symlink"
  1615. msgstr "Keisti simbolinę nuorodą"
  1616. #, c-format
  1617. msgid "edit symlink, unable to remove %s: %s"
  1618. msgstr "keisti simbolinę nuorodą, neina pašalinti %s: %s"
  1619. #, c-format
  1620. msgid "edit symlink: %s"
  1621. msgstr "keisti simbolinę nuorodą: %s"
  1622. msgid "FTP to machine"
  1623. msgstr ""
  1624. msgid "SFTP to machine"
  1625. msgstr ""
  1626. msgid "Shell link to machine"
  1627. msgstr ""
  1628. msgid "SMB link to machine"
  1629. msgstr ""
  1630. msgid "Undelete files on an ext2 file system"
  1631. msgstr ""
  1632. msgid ""
  1633. "Enter device (without /dev/) to undelete\n"
  1634. "files on: (F1 for details)"
  1635. msgstr ""
  1636. msgid "Directory scanning"
  1637. msgstr ""
  1638. msgid "Setup"
  1639. msgstr "Sąranka"
  1640. #, c-format
  1641. msgid "Setup saved to %s"
  1642. msgstr ""
  1643. #, c-format
  1644. msgid "Unable to save setup to %s"
  1645. msgstr ""
  1646. msgid "Cannot execute commands on non-local filesystems"
  1647. msgstr ""
  1648. #, c-format
  1649. msgid ""
  1650. "Cannot chdir to \"%s\"\n"
  1651. "%s"
  1652. msgstr ""
  1653. msgid "Cannot read directory contents"
  1654. msgstr "Nepavyko perskaityti aplanko turinio"
  1655. msgid "Parameter"
  1656. msgstr "Parametras"
  1657. #, c-format
  1658. msgid ""
  1659. "Cannot create temporary command file\n"
  1660. "%s"
  1661. msgstr ""
  1662. #, c-format
  1663. msgid " %s%s file error"
  1664. msgstr " %s%s failo klaida"
  1665. #, c-format
  1666. msgid ""
  1667. "The format of the %smc.ext file has changed with version 3.0. It seems that "
  1668. "the installation failed. Please fetch a fresh copy from the Midnight "
  1669. "Commander package."
  1670. msgstr ""
  1671. #, c-format
  1672. msgid "%s file error"
  1673. msgstr "%s failo klaida"
  1674. #, c-format
  1675. msgid ""
  1676. "The format of the %s file has changed with version 3.0. You may either want "
  1677. "to copy it from %smc.ext or use that file as an example of how to write it."
  1678. msgstr ""
  1679. msgid "DialogTitle|Copy"
  1680. msgstr ""
  1681. msgid "DialogTitle|Move"
  1682. msgstr ""
  1683. msgid "DialogTitle|Delete"
  1684. msgstr "DialogTitle|Šalinti"
  1685. msgid "FileOperation|Copy"
  1686. msgstr ""
  1687. msgid "FileOperation|Move"
  1688. msgstr ""
  1689. msgid "FileOperation|Delete"
  1690. msgstr "FileOperation|Šalinti"
  1691. #, no-c-format
  1692. msgid "%o %f%n\"%s\"%m"
  1693. msgstr ""
  1694. #, no-c-format
  1695. msgid "%o %d %f%m"
  1696. msgstr "%o %d %f%m"
  1697. msgid "files"
  1698. msgstr "failus"
  1699. msgid "directory"
  1700. msgstr "aplanką"
  1701. msgid "directories"
  1702. msgstr "aplankus"
  1703. msgid "files/directories"
  1704. msgstr "failus/aplankus"
  1705. #. TRANSLATORS: keep leading space here to split words in Copy/Move dialog
  1706. msgid " with source mask:"
  1707. msgstr ", tokiu formatu:"
  1708. msgid "Cannot make the hardlink"
  1709. msgstr ""
  1710. #, c-format
  1711. msgid ""
  1712. "Cannot read source link \"%s\"\n"
  1713. "%s"
  1714. msgstr ""
  1715. msgid ""
  1716. "Cannot make stable symlinks across non-local filesystems:\n"
  1717. "\n"
  1718. "Option Stable Symlinks will be disabled"
  1719. msgstr ""
  1720. "Nepavyko sukurti simbolinių nuorodų tarp ne vietinių failinių sistemų:\n"
  1721. "\n"
  1722. "Parinktis 'Pastovios simbolinės nuorodos' bus išjungta"
  1723. #, c-format
  1724. msgid ""
  1725. "Cannot create target symlink \"%s\"\n"
  1726. "%s"
  1727. msgstr ""
  1728. #, c-format
  1729. msgid ""
  1730. "\"%s\"\n"
  1731. "and\n"
  1732. "\"%s\"\n"
  1733. "are the same directory"
  1734. msgstr ""
  1735. "\"%s\"\n"
  1736. "and\n"
  1737. "\"%s\"\n"
  1738. "yra tie patys aplankai"
  1739. #, c-format
  1740. msgid ""
  1741. "\"%s\"\n"
  1742. "and\n"
  1743. "\"%s\"\n"
  1744. "are the same file"
  1745. msgstr ""
  1746. msgid "Ski&p all"
  1747. msgstr "Praleisti viską"
  1748. #, c-format
  1749. msgid ""
  1750. "Directory \"%s\" not empty.\n"
  1751. "Delete it recursively?"
  1752. msgstr ""
  1753. "Aplankas \"%s\" ne tuščias.\n"
  1754. "Trinti rekursyviai?"
  1755. #, c-format
  1756. msgid ""
  1757. "Background process:\n"
  1758. "Directory \"%s\" not empty.\n"
  1759. "Delete it recursively?"
  1760. msgstr ""
  1761. "Foninis procesas:\n"
  1762. "Aplankas \"%s\" ne tuščias.\n"
  1763. "Trinti rekursyviai?"
  1764. msgid "Non&e"
  1765. msgstr "&Joks"
  1766. #, c-format
  1767. msgid ""
  1768. "Cannot remove file \"%s\"\n"
  1769. "%s"
  1770. msgstr ""
  1771. "Nepavyko pašalinti failo \"%s\"\n"
  1772. "%s"
  1773. #, c-format
  1774. msgid ""
  1775. "Cannot stat file \"%s\"\n"
  1776. "%s"
  1777. msgstr ""
  1778. #, c-format
  1779. msgid "Cannot overwrite directory \"%s\""
  1780. msgstr "Nepavyko perrašyti aplanko \"%s\""
  1781. #, c-format
  1782. msgid ""
  1783. "Cannot move file \"%s\" to \"%s\"\n"
  1784. "%s"
  1785. msgstr ""
  1786. "Nepavyko perkelti failo \"%s\" į \"%s\"\n"
  1787. "%s"
  1788. #, c-format
  1789. msgid ""
  1790. "Cannot remove directory \"%s\"\n"
  1791. "%s"
  1792. msgstr ""
  1793. "Nepavyko pašalinti aplanko \"%s\"\n"
  1794. "%s"
  1795. #, c-format
  1796. msgid ""
  1797. "Cannot overwrite directory \"%s\"\n"
  1798. "%s"
  1799. msgstr ""
  1800. "Nepavyko perrašyti aplanko \"%s\"\n"
  1801. "%s"
  1802. #, c-format
  1803. msgid ""
  1804. "Cannot overwrite file \"%s\"\n"
  1805. "%s"
  1806. msgstr ""
  1807. "Nepavyko perrašyti failo \"%s\"\n"
  1808. "%s"
  1809. #, c-format
  1810. msgid ""
  1811. "Cannot move directory \"%s\" to \"%s\"\n"
  1812. "%s"
  1813. msgstr ""
  1814. "Nepavyko perkelti aplanko \"%s\" į \"%s\"\n"
  1815. "%s"
  1816. msgid "Cannot operate on \"..\"!"
  1817. msgstr ""
  1818. #, c-format
  1819. msgid ""
  1820. "Cannot stat source file \"%s\"\n"
  1821. "%s"
  1822. msgstr ""
  1823. #, c-format
  1824. msgid ""
  1825. "Cannot create special file \"%s\"\n"
  1826. "%s"
  1827. msgstr ""
  1828. #, c-format
  1829. msgid ""
  1830. "Cannot chown target file \"%s\"\n"
  1831. "%s"
  1832. msgstr ""
  1833. #, c-format
  1834. msgid ""
  1835. "Cannot chmod target file \"%s\"\n"
  1836. "%s"
  1837. msgstr ""
  1838. #, c-format
  1839. msgid ""
  1840. "Cannot open source file \"%s\"\n"
  1841. "%s"
  1842. msgstr ""
  1843. msgid "Reget failed, about to overwrite file"
  1844. msgstr "Pratęsti nepavyko, failas bus perrašytas"
  1845. #, c-format
  1846. msgid ""
  1847. "Cannot fstat source file \"%s\"\n"
  1848. "%s"
  1849. msgstr ""
  1850. #, c-format
  1851. msgid ""
  1852. "Cannot create target file \"%s\"\n"
  1853. "%s"
  1854. msgstr ""
  1855. #, c-format
  1856. msgid ""
  1857. "Cannot fstat target file \"%s\"\n"
  1858. "%s"
  1859. msgstr ""
  1860. #, c-format
  1861. msgid ""
  1862. "Cannot preallocate space for target file \"%s\"\n"
  1863. "%s"
  1864. msgstr ""
  1865. #, c-format
  1866. msgid ""
  1867. "Cannot read source file \"%s\"\n"
  1868. "%s"
  1869. msgstr ""
  1870. #, c-format
  1871. msgid ""
  1872. "Cannot write target file \"%s\"\n"
  1873. "%s"
  1874. msgstr ""
  1875. msgid "(stalled)"
  1876. msgstr "(sustojo)"
  1877. #, c-format
  1878. msgid ""
  1879. "Cannot close source file \"%s\"\n"
  1880. "%s"
  1881. msgstr ""
  1882. #, c-format
  1883. msgid ""
  1884. "Cannot close target file \"%s\"\n"
  1885. "%s"
  1886. msgstr ""
  1887. msgid "Incomplete file was retrieved. Keep it?"
  1888. msgstr "Gautas nepilnas failas. Ar jį išlaikyti?"
  1889. msgid "&Keep"
  1890. msgstr "Išlai&kyti"
  1891. #, c-format
  1892. msgid ""
  1893. "Cannot stat source directory \"%s\"\n"
  1894. "%s"
  1895. msgstr ""
  1896. #, c-format
  1897. msgid ""
  1898. "Source \"%s\" is not a directory\n"
  1899. "%s"
  1900. msgstr ""
  1901. #, c-format
  1902. msgid ""
  1903. "Cannot copy cyclic symbolic link\n"
  1904. "\"%s\""
  1905. msgstr ""
  1906. #, c-format
  1907. msgid ""
  1908. "Destination \"%s\" must be a directory\n"
  1909. "%s"
  1910. msgstr ""
  1911. #, c-format
  1912. msgid ""
  1913. "Cannot create target directory \"%s\"\n"
  1914. "%s"
  1915. msgstr ""
  1916. "Nepavyko sukurti aplanko \"%s\"\n"
  1917. "%s"
  1918. #, c-format
  1919. msgid ""
  1920. "Cannot chown target directory \"%s\"\n"
  1921. "%s"
  1922. msgstr ""
  1923. #, c-format
  1924. msgid "Directories: %zu, total size: %s"
  1925. msgstr ""
  1926. msgid "Sorry, I could not put the job in background"
  1927. msgstr "Nepavyko įvykdyti užduoties foniniame režime"
  1928. msgid "S&uspend"
  1929. msgstr ""
  1930. msgid "Con&tinue"
  1931. msgstr "&Tęsti"
  1932. #, c-format
  1933. msgid "%d:%02d.%02d"
  1934. msgstr ""
  1935. #, c-format
  1936. msgid "ETA %s"
  1937. msgstr ""
  1938. #, c-format
  1939. msgid "%.2f MB/s"
  1940. msgstr "%.2f MB/s"
  1941. #, c-format
  1942. msgid "%.2f KB/s"
  1943. msgstr "%.2f KB/s"
  1944. #, c-format
  1945. msgid "%ld B/s"
  1946. msgstr "%ld B/s"
  1947. msgid "Target file already exists!"
  1948. msgstr "Toks failas jau egzistuoja!"
  1949. #, c-format
  1950. msgid "New : %s, size %s"
  1951. msgstr "Naujas : %s, dydis %s"
  1952. #, c-format
  1953. msgid "Existing: %s, size %s"
  1954. msgstr "Egzistuoja: %s, dydis %s"
  1955. msgid "Overwrite this target?"
  1956. msgstr "Perrašyti šią paskirtį?"
  1957. msgid "A&ppend"
  1958. msgstr "&Papildyti"
  1959. msgid "&Reget"
  1960. msgstr "P&ratęsti"
  1961. msgid "Overwrite all targets?"
  1962. msgstr "Perrašyti visas paskirtis?"
  1963. msgid "&Update"
  1964. msgstr "Atna&ujinti"
  1965. msgid "If &size differs"
  1966. msgstr "Jei &skiriasi dydis"
  1967. msgid "File exists"
  1968. msgstr "Failas egzistuoja"
  1969. msgid "Background process: File exists"
  1970. msgstr "Foninis procesas: failas egzistuoja"
  1971. #, c-format
  1972. msgid "Files processed: %zu/%zu"
  1973. msgstr ""
  1974. #, c-format
  1975. msgid "Files processed: %zu"
  1976. msgstr ""
  1977. #, c-format
  1978. msgid "Time: %s %s"
  1979. msgstr "Laikas: %s %s"
  1980. #, c-format
  1981. msgid "Time: %s %s (%s)"
  1982. msgstr "Laikas: %s %s (%s)"
  1983. #, c-format
  1984. msgid "Time: %s"
  1985. msgstr "Laikas: %s"
  1986. #, c-format
  1987. msgid "Time: %s (%s)"
  1988. msgstr "Laikas: %s (%s)"
  1989. #, c-format
  1990. msgid " Total: %s "
  1991. msgstr "Iš viso: %s"
  1992. #, c-format
  1993. msgid " Total: %s/%s "
  1994. msgstr ""
  1995. msgid "Source"
  1996. msgstr "Iš"
  1997. msgid "Target"
  1998. msgstr "Į"
  1999. msgid "Deleting"
  2000. msgstr "Ištrinama"
  2001. msgid "&Using shell patterns"
  2002. msgstr "Na&udojant aplinkos išraiškas"
  2003. msgid "to:"
  2004. msgstr "į:"
  2005. msgid "Follow &links"
  2006. msgstr "Sekti nuorodas"
  2007. msgid "Preserve &attributes"
  2008. msgstr ""
  2009. msgid "Di&ve into subdir if exists"
  2010. msgstr ""
  2011. msgid "&Stable symlinks"
  2012. msgstr "Pastovios simbolinės nuorodos"
  2013. msgid "&Background"
  2014. msgstr "&Foninis režimas"
  2015. #, c-format
  2016. msgid "Invalid source pattern '%s'"
  2017. msgstr ""
  2018. msgid "&Chdir"
  2019. msgstr "&Eiti į katal."
  2020. msgid "&Again"
  2021. msgstr "Iš n&aujo"
  2022. msgid "Pane&lize"
  2023. msgstr "Į skyde&lį"
  2024. msgid "&View - F3"
  2025. msgstr "&Rodyti - F3"
  2026. msgid "&Edit - F4"
  2027. msgstr "K&eisti - F4 "
  2028. #, c-format
  2029. msgid "Found: %lu"
  2030. msgstr "Rasta: %lu"
  2031. msgid "Malformed regular expression"
  2032. msgstr "Neteisinga reguliari išraiška"
  2033. msgid "File name:"
  2034. msgstr "Failo pavadinimas:"
  2035. msgid "&Find recursively"
  2036. msgstr "&Rasti rekursyviai"
  2037. msgid "S&kip hidden"
  2038. msgstr ""
  2039. msgid "Content:"
  2040. msgstr "Turinys:"
  2041. msgid "Sea&rch for content"
  2042. msgstr ""
  2043. msgid "Case sens&itive"
  2044. msgstr ""
  2045. msgid "A&ll charsets"
  2046. msgstr "Visi rinkmenų kodai"
  2047. msgid "Fir&st hit"
  2048. msgstr ""
  2049. msgid "&Tree"
  2050. msgstr "&Medis"
  2051. msgid "Find File"
  2052. msgstr "Rasti failą"
  2053. msgid "Start at:"
  2054. msgstr "Pradėti nuo:"
  2055. msgid "Ena&ble ignore directories:"
  2056. msgstr ""
  2057. #, c-format
  2058. msgid "Grepping in %s"
  2059. msgstr "Ieškoma faile %s"
  2060. msgid "Finished"
  2061. msgstr "Baigta"
  2062. #, c-format
  2063. msgid "Finished (ignored %zu directory)"
  2064. msgid_plural "Finished (ignored %zu directories)"
  2065. msgstr[0] ""
  2066. msgstr[1] ""
  2067. msgstr[2] ""
  2068. msgid "Searching"
  2069. msgstr "Ieškoma"
  2070. msgid "Change &to"
  2071. msgstr ""
  2072. msgid "&Free VFSs now"
  2073. msgstr ""
  2074. msgid "&Refresh"
  2075. msgstr "A&tnaujinti"
  2076. msgid "&Add current"
  2077. msgstr "Pridėti d&abartinį"
  2078. msgid "&Up"
  2079. msgstr "A&ukštyn"
  2080. msgid "New &group"
  2081. msgstr ""
  2082. msgid "New &entry"
  2083. msgstr ""
  2084. msgid "&Insert"
  2085. msgstr "Įterpt&i"
  2086. msgid "&Remove"
  2087. msgstr "Ša&linti"
  2088. msgid "Subgroup - press ENTER to see list"
  2089. msgstr "Yra vidinių grupių - ENTER jų sąrašui"
  2090. msgid "Active VFS directories"
  2091. msgstr "Aktyvūs VFS aplankai"
  2092. msgid "Directory hotlist"
  2093. msgstr "Aplankų sąrašas"
  2094. msgid "Top level group"
  2095. msgstr ""
  2096. msgid "Directory path"
  2097. msgstr "Aplanko kelias"
  2098. #, c-format
  2099. msgid "Moving %s"
  2100. msgstr "Perkeliama „%s“"
  2101. msgid "Directory label"
  2102. msgstr "Aplanko žymė"
  2103. msgid "&Append"
  2104. msgstr "P&apildyti"
  2105. msgid "New hotlist entry"
  2106. msgstr "Naujas sąrašo punktas"
  2107. msgid "Directory label:"
  2108. msgstr "Aplanko žymė:"
  2109. msgid "Directory path:"
  2110. msgstr "Aplanko kelias:"
  2111. msgid "New hotlist group"
  2112. msgstr "Nauja sąrašų grupė"
  2113. msgid "Name of new group:"
  2114. msgstr ""
  2115. #, c-format
  2116. msgid "Are you sure you want to remove entry \"%s\"?"
  2117. msgstr ""
  2118. #, c-format
  2119. msgid ""
  2120. "Group \"%s\" is not empty.\n"
  2121. "Remove it?"
  2122. msgstr ""
  2123. msgid "Hotlist Load"
  2124. msgstr "Parinkčių sąrašo įkėlimas"
  2125. #, c-format
  2126. msgid ""
  2127. "MC was unable to write %s file,\n"
  2128. "your old hotlist entries were not deleted"
  2129. msgstr ""
  2130. "MC neišsaugojo failo %s,\n"
  2131. "senasis parinkčių sąrašas neištrintas"
  2132. #, c-format
  2133. msgid "Label for \"%s\":"
  2134. msgstr "„%s“ žymė:"
  2135. msgid "Add to hotlist"
  2136. msgstr "Pridėti į parinkčių sąrašą"
  2137. #, c-format
  2138. msgid "Midnight Commander %s"
  2139. msgstr "Midnight Commander %s"
  2140. #, c-format
  2141. msgid "File: %s"
  2142. msgstr "Failas: %s"
  2143. msgid "No node information"
  2144. msgstr "Nėra informacijos apie mazgą"
  2145. msgid "Free nodes:"
  2146. msgstr ""
  2147. msgid "No space information"
  2148. msgstr "Nėra informacijos apie vietą"
  2149. #, c-format
  2150. msgid "Free space: %s/%s (%d%%)"
  2151. msgstr ""
  2152. #, c-format
  2153. msgid "Type: %s"
  2154. msgstr ""
  2155. msgid "non-local vfs"
  2156. msgstr "nevietinė VFS"
  2157. #, c-format
  2158. msgid "Device: %s"
  2159. msgstr "Įrenginys: %s"
  2160. #, c-format
  2161. msgid "Filesystem: %s"
  2162. msgstr "Failų sistema: %s"
  2163. #, c-format
  2164. msgid "Accessed: %s"
  2165. msgstr ""
  2166. #, c-format
  2167. msgid "Modified: %s"
  2168. msgstr ""
  2169. #. TRANSLATORS: Time of last status change as in stat(2) man.
  2170. #, c-format
  2171. msgid "Changed: %s"
  2172. msgstr ""
  2173. #, c-format
  2174. msgid "Dev. type: major %lu, minor %lu"
  2175. msgstr "Įreng. tipas: major %lu, minor %lu"
  2176. #, c-format
  2177. msgid "Size: %s"
  2178. msgstr "Dydis: %s"
  2179. #, c-format
  2180. msgid " (%lu block)"
  2181. msgid_plural " (%lu blocks)"
  2182. msgstr[0] ""
  2183. msgstr[1] ""
  2184. msgstr[2] ""
  2185. #, c-format
  2186. msgid "Owner: %s/%s"
  2187. msgstr "Savininkas: %s/%s"
  2188. #, c-format
  2189. msgid "Links: %d"
  2190. msgstr "Nuorodos: %d"
  2191. #, c-format
  2192. msgid "Mode: %s (%04o)"
  2193. msgstr ""
  2194. #, c-format
  2195. msgid "Location: %Xh:%Xh"
  2196. msgstr ""
  2197. msgid "&Equal split"
  2198. msgstr "P&o lygiai"
  2199. msgid "&Menubar visible"
  2200. msgstr ""
  2201. msgid "Command &prompt"
  2202. msgstr ""
  2203. msgid "&Keybar visible"
  2204. msgstr "&Klavišai"
  2205. msgid "H&intbar visible"
  2206. msgstr ""
  2207. msgid "&XTerm window title"
  2208. msgstr ""
  2209. msgid "&Show free space"
  2210. msgstr ""
  2211. msgid "Panel split"
  2212. msgstr ""
  2213. msgid "Console output"
  2214. msgstr ""
  2215. msgid "&Vertical"
  2216. msgstr "&Vertikalus"
  2217. msgid "&Horizontal"
  2218. msgstr "&horizontalus"
  2219. msgid "Output lines:"
  2220. msgstr ""
  2221. msgid "Layout"
  2222. msgstr "Išdėstymas"
  2223. msgid "File listin&g"
  2224. msgstr ""
  2225. msgid "&Quick view"
  2226. msgstr "Greitasis rodymas"
  2227. msgid "&Info"
  2228. msgstr "&Informacija"
  2229. msgid "&Listing format..."
  2230. msgstr ""
  2231. msgid "&Sort order..."
  2232. msgstr "Rik. t&varka..."
  2233. msgid "&Filter..."
  2234. msgstr "&Filtras..."
  2235. msgid "&Encoding..."
  2236. msgstr ""
  2237. msgid "FT&P link..."
  2238. msgstr "FT&P ryšys..."
  2239. msgid "S&hell link..."
  2240. msgstr "Apli&nkos ryšys..."
  2241. msgid "S&FTP link..."
  2242. msgstr ""
  2243. msgid "SM&B link..."
  2244. msgstr "SM&B ryšys..."
  2245. msgid "Paneli&ze"
  2246. msgstr ""
  2247. msgid "&Rescan"
  2248. msgstr ""
  2249. msgid "&View"
  2250. msgstr ""
  2251. msgid "Vie&w file..."
  2252. msgstr "&Peržiūrėti failą..."
  2253. msgid "&Filtered view"
  2254. msgstr ""
  2255. msgid "&Copy"
  2256. msgstr "Kopijuoti"
  2257. msgid "C&hmod"
  2258. msgstr "Chmod"
  2259. msgid "&Link"
  2260. msgstr "&Nuoroda"
  2261. msgid "&Symlink"
  2262. msgstr "Simbolinė nuoroda"
  2263. msgid "Relative symlin&k"
  2264. msgstr ""
  2265. msgid "Edit s&ymlink"
  2266. msgstr ""
  2267. msgid "Ch&own"
  2268. msgstr "Chown"
  2269. msgid "&Advanced chown"
  2270. msgstr ""
  2271. msgid "&Rename/Move"
  2272. msgstr "Pervadinti/Perkelti"
  2273. msgid "&Mkdir"
  2274. msgstr "Mkdir"
  2275. msgid "&Quick cd"
  2276. msgstr "Greitas cd"
  2277. msgid "Select &group"
  2278. msgstr "Pasirinkti grupę"
  2279. msgid "U&nselect group"
  2280. msgstr "Nebesirinkti grupės"
  2281. msgid "&Invert selection"
  2282. msgstr "Atvirkštinis pasirinkimas"
  2283. msgid "E&xit"
  2284. msgstr "Išeiti"
  2285. msgid "&User menu"
  2286. msgstr "Naudotojo meniu"
  2287. msgid "&Directory tree"
  2288. msgstr "&Aplankų medis"
  2289. msgid "&Find file"
  2290. msgstr "&Rasti failą"
  2291. msgid "S&wap panels"
  2292. msgstr ""
  2293. msgid "Switch &panels on/off"
  2294. msgstr ""
  2295. msgid "&Compare directories"
  2296. msgstr "Palyginti katalogus"
  2297. msgid "C&ompare files"
  2298. msgstr "Palyginti failus"
  2299. msgid "E&xternal panelize"
  2300. msgstr ""
  2301. msgid "Show directory s&izes"
  2302. msgstr "Rodyti katalogų dydžius"
  2303. msgid "Command &history"
  2304. msgstr "Komandų istorija"
  2305. msgid "Di&rectory hotlist"
  2306. msgstr "Aplankų są&rašas"
  2307. msgid "&Active VFS list"
  2308. msgstr ""
  2309. msgid "&Background jobs"
  2310. msgstr "&Foninio režimo užduotys"
  2311. msgid "Screen lis&t"
  2312. msgstr ""
  2313. msgid "&Undelete files (ext2fs only)"
  2314. msgstr "Atk&urti failus (tik ext2fs)"
  2315. msgid "&Listing format edit"
  2316. msgstr "Keisti r&odymo formatą"
  2317. msgid "Edit &extension file"
  2318. msgstr "K&eisti plėtinių failą"
  2319. msgid "Edit &menu file"
  2320. msgstr "Keisti &meniu failą"
  2321. msgid "Edit hi&ghlighting group file"
  2322. msgstr ""
  2323. msgid "&Configuration..."
  2324. msgstr "Konfigūra&cija..."
  2325. msgid "&Layout..."
  2326. msgstr "&Išdėstymas..."
  2327. msgid "&Panel options..."
  2328. msgstr "Skydelio &parinktys..."
  2329. msgid "C&onfirmation..."
  2330. msgstr "Patvirtinimas..."
  2331. msgid "&Appearance..."
  2332. msgstr "Išvaizda..."
  2333. msgid "&Display bits..."
  2334. msgstr "Iš&vesties bitai..."
  2335. msgid "&Virtual FS..."
  2336. msgstr "&Virtuali failų sistema..."
  2337. msgid "Panels:"
  2338. msgstr ""
  2339. #, c-format
  2340. msgid "You have %zu opened screen. Quit anyway?"
  2341. msgid_plural "You have %zu opened screens. Quit anyway?"
  2342. msgstr[0] ""
  2343. msgstr[1] ""
  2344. msgstr[2] ""
  2345. msgid "The Midnight Commander"
  2346. msgstr ""
  2347. msgid "Do you really want to quit the Midnight Commander?"
  2348. msgstr ""
  2349. msgid "&Above"
  2350. msgstr "&Viršuj"
  2351. msgid "&Left"
  2352. msgstr "Kairė"
  2353. msgid "&Below"
  2354. msgstr ""
  2355. msgid "&Right"
  2356. msgstr "Dešinė"
  2357. msgid "ButtonBar|Menu"
  2358. msgstr ""
  2359. msgid "ButtonBar|View"
  2360. msgstr "ButtonBar|Rodyt"
  2361. msgid "ButtonBar|RenMov"
  2362. msgstr ""
  2363. msgid "ButtonBar|Mkdir"
  2364. msgstr ""
  2365. msgid "Memory exhausted!"
  2366. msgstr ""
  2367. #. TRANSLATORS: one single character to represent 'unsorted' sort mode
  2368. #. TRANSLATORS: no need to translate 'sort', it's just a context prefix
  2369. msgid "sort|u"
  2370. msgstr "sort|u"
  2371. msgid "&Unsorted"
  2372. msgstr "Neriki&uotai"
  2373. #. TRANSLATORS: one single character to represent 'name' sort mode
  2374. #. TRANSLATORS: no need to translate 'sort', it's just a context prefix
  2375. msgid "sort|n"
  2376. msgstr "sort|n"
  2377. msgid "&Name"
  2378. msgstr "Pavadi&nimas"
  2379. #. TRANSLATORS: one single character to represent 'version' sort mode
  2380. #. TRANSLATORS: no need to translate 'sort', it's just a context prefix
  2381. msgid "sort|v"
  2382. msgstr "sort|v"
  2383. msgid "&Version"
  2384. msgstr ""
  2385. #. TRANSLATORS: one single character to represent 'extension' sort mode
  2386. #. TRANSLATORS: no need to translate 'sort', it's just a context prefix
  2387. msgid "sort|e"
  2388. msgstr "sort|e"
  2389. msgid "E&xtension"
  2390. msgstr ""
  2391. #. TRANSLATORS: one single character to represent 'size' sort mode
  2392. #. TRANSLATORS: no need to translate 'sort', it's just a context prefix
  2393. msgid "sort|s"
  2394. msgstr "sort|s"
  2395. msgid "&Size"
  2396. msgstr "Dydi&s"
  2397. msgid "Block Size"
  2398. msgstr ""
  2399. #. TRANSLATORS: one single character to represent 'Modify time' sort mode
  2400. #. TRANSLATORS: no need to translate 'sort', it's just a context prefix
  2401. msgid "sort|m"
  2402. msgstr "sort|m"
  2403. msgid "&Modify time"
  2404. msgstr "&Modif. laikas"
  2405. #. TRANSLATORS: one single character to represent 'Access time' sort mode
  2406. #. TRANSLATORS: no need to translate 'sort', it's just a context prefix
  2407. msgid "sort|a"
  2408. msgstr "sort|a"
  2409. msgid "&Access time"
  2410. msgstr "P&asiek. laikas"
  2411. #. TRANSLATORS: one single character to represent 'Change time' sort mode
  2412. #. TRANSLATORS: no need to translate 'sort', it's just a context prefix
  2413. msgid "sort|h"
  2414. msgstr "sort|h"
  2415. msgid "C&hange time"
  2416. msgstr ""
  2417. msgid "Perm"
  2418. msgstr "Leid."
  2419. msgid "Nl"
  2420. msgstr "Nl"
  2421. #. TRANSLATORS: one single character to represent 'inode' sort mode
  2422. #. TRANSLATORS: no need to translate 'sort', it's just a context prefix
  2423. msgid "sort|i"
  2424. msgstr "sort|i"
  2425. msgid "&Inode"
  2426. msgstr "„&Inode“"
  2427. msgid "UID"
  2428. msgstr "UID"
  2429. msgid "GID"
  2430. msgstr "GID"
  2431. msgid "Owner"
  2432. msgstr "Savin."
  2433. msgid "Group"
  2434. msgstr "Grupė"
  2435. msgid "[dev]"
  2436. msgstr "[įts]"
  2437. msgid "UP--DIR"
  2438. msgstr "AUKŠTYN"
  2439. msgid "SYMLINK"
  2440. msgstr "NUORODA"
  2441. msgid "SUB-DIR"
  2442. msgstr "PAKATAL"
  2443. msgid "<readlink failed>"
  2444. msgstr "<„readlink“ nepavyko>"
  2445. #, c-format
  2446. msgid "%s in %d file"
  2447. msgid_plural "%s in %d files"
  2448. msgstr[0] "%s %d faile"
  2449. msgstr[1] "%s %d failuose"
  2450. msgstr[2] "%s %d failų"
  2451. msgid "Panelize"
  2452. msgstr ""
  2453. msgid "Unknown tag on display format:"
  2454. msgstr ""
  2455. msgid "&Files only"
  2456. msgstr ""
  2457. msgid "&Case sensitive"
  2458. msgstr ""
  2459. msgid "Select"
  2460. msgstr "Pasirinkti"
  2461. msgid "Unselect"
  2462. msgstr "Nebesirinkti"
  2463. msgid "Do you really want to execute?"
  2464. msgstr ""
  2465. msgid "User supplied format looks invalid, reverting to default."
  2466. msgstr "Naudotojo formatas atrodo netaisyklingai, grįžtu prie pradinio."
  2467. msgid "&Add new"
  2468. msgstr "Pridėti n&aują"
  2469. msgid "External panelize"
  2470. msgstr "Išorinis skydelis"
  2471. msgid "Other command"
  2472. msgstr "Kita komanda"
  2473. msgid "Command"
  2474. msgstr "Komanda"
  2475. msgid "Add to external panelize"
  2476. msgstr ""
  2477. msgid "Enter command label:"
  2478. msgstr "Įvesti komandos etiketę:"
  2479. msgid "Cannot invoke command."
  2480. msgstr "Nepavyko iškviesti komandos."
  2481. msgid "Pipe close failed"
  2482. msgstr "Konvejerio užvėrimas nepavyko"
  2483. msgid "Cannot run external panelize in a non-local directory"
  2484. msgstr ""
  2485. msgid "Modified git files"
  2486. msgstr ""
  2487. msgid "Find rejects after patching"
  2488. msgstr "Rasti atmetimus po „patch“"
  2489. msgid "Find *.orig after patching"
  2490. msgstr "Rasti „*.orig“ po „patch“"
  2491. msgid "Find SUID and SGID programs"
  2492. msgstr "Rasti SUID ir SGID programas"
  2493. #, c-format
  2494. msgid ""
  2495. "Cannot open the %s file for writing:\n"
  2496. "%s\n"
  2497. msgstr ""
  2498. " Nepavyko atverti failo %s rašymui:\n"
  2499. "%s\n"
  2500. #, c-format
  2501. msgid "Copy \"%s\" directory to:"
  2502. msgstr "Kopijuoti aplanką „%s“ į:"
  2503. #, c-format
  2504. msgid "Move \"%s\" directory to:"
  2505. msgstr "Perkelti aplanką „%s“ į:"
  2506. #, c-format
  2507. msgid ""
  2508. "Cannot stat the destination\n"
  2509. "%s"
  2510. msgstr ""
  2511. #, c-format
  2512. msgid "Delete %s?"
  2513. msgstr "Ištrinti %s?"
  2514. msgid "ButtonBar|Static"
  2515. msgstr ""
  2516. msgid "ButtonBar|Dynamc"
  2517. msgstr ""
  2518. msgid "ButtonBar|Rescan"
  2519. msgstr ""
  2520. msgid "ButtonBar|Forget"
  2521. msgstr ""
  2522. msgid "ButtonBar|Rmdir"
  2523. msgstr ""
  2524. #, c-format
  2525. msgid ""
  2526. "Cannot write to the %s file:\n"
  2527. "%s\n"
  2528. msgstr ""
  2529. "Nepavyko įrašyti į failą %s:\n"
  2530. "%s\n"
  2531. msgid "Help file format error\n"
  2532. msgstr ""
  2533. msgid "Internal bug: Double start of link area"
  2534. msgstr ""
  2535. #, c-format
  2536. msgid "Cannot find node %s in help file"
  2537. msgstr ""
  2538. msgid "Help"
  2539. msgstr "Pagalba"
  2540. msgid "ButtonBar|Index"
  2541. msgstr ""
  2542. msgid "ButtonBar|Prev"
  2543. msgstr ""
  2544. msgid "Learn keys"
  2545. msgstr "Mokytis klavišus"
  2546. msgid "Teach me a key"
  2547. msgstr ""
  2548. #, c-format
  2549. msgid ""
  2550. "Please press the %s\n"
  2551. "and then wait until this message disappears.\n"
  2552. "\n"
  2553. "Then, press it again to see if OK appears\n"
  2554. "next to its button.\n"
  2555. "\n"
  2556. "If you want to escape, press a single Escape key\n"
  2557. "and wait as well."
  2558. msgstr ""
  2559. "Paspauskite %s\n"
  2560. "ir palaukite, kol dings šis pranešimas.\n"
  2561. "\n"
  2562. "Tuomet paspauskite jį dar kartą ir patikrinkite,\n"
  2563. "ar prie mygtuko atsirado „OK“.\n"
  2564. "\n"
  2565. "Jei norite atsisakyti, paspauskite „Grįžti“ („Esc“) \n"
  2566. "ir palaukite."
  2567. msgid "Cannot accept this key"
  2568. msgstr ""
  2569. #, c-format
  2570. msgid "You have entered \"%s\""
  2571. msgstr ""
  2572. #. TRANSLATORS: This label appears near learned keys. Keep it short.
  2573. msgid "OK"
  2574. msgstr "OK"
  2575. msgid ""
  2576. "It seems that all your keys already\n"
  2577. "work fine. That's great."
  2578. msgstr ""
  2579. "Panašu, kad visi klavišai jau veikia\n"
  2580. "gerai. Tai puiku."
  2581. msgid "&Discard"
  2582. msgstr "A&tmesti"
  2583. msgid ""
  2584. "Great! You have a complete terminal database!\n"
  2585. "All your keys work well."
  2586. msgstr ""
  2587. "Puiku! Turite išsamią terminalo duomenų bazę!\n"
  2588. "Visi klavišai veikia puikiai."
  2589. msgid ""
  2590. "Press all the keys mentioned here. After you have done it, check\n"
  2591. "which keys are not marked with OK. Press space on the missing\n"
  2592. "key, or click with the mouse to define it. Move around with Tab."
  2593. msgstr ""
  2594. #, c-format
  2595. msgid ""
  2596. "Failed to run:\n"
  2597. "%s\n"
  2598. msgstr ""
  2599. msgid "Home directory path is not absolute"
  2600. msgstr ""
  2601. #, c-format
  2602. msgid ""
  2603. "\n"
  2604. "Failed while close:\n"
  2605. "%s\n"
  2606. msgstr ""
  2607. msgid "Choose codepage"
  2608. msgstr ""
  2609. msgid "- < No translation >"
  2610. msgstr "– < Jokio vertimo >"
  2611. msgid "%b %e %Y"
  2612. msgstr "%b %e %Y"
  2613. msgid "%b %e %H:%M"
  2614. msgstr "%b %e %H:%M"
  2615. #, c-format
  2616. msgid ""
  2617. "Cannot save file %s:\n"
  2618. "%s"
  2619. msgstr ""
  2620. msgid ""
  2621. "GNU Midnight Commander is already\n"
  2622. "running on this terminal.\n"
  2623. "Subshell support will be disabled."
  2624. msgstr ""
  2625. "GNU Midnight Commander jau paleistas\n"
  2626. "šiame terminale.\n"
  2627. "„Subshell“ palaikymas neveiks."
  2628. #, c-format
  2629. msgid "Cannot open named pipe %s\n"
  2630. msgstr "Nepavyko atverti vardinio konvejerio „%s“\n"
  2631. msgid "The shell is still active. Quit anyway?"
  2632. msgstr ""
  2633. #, c-format
  2634. msgid "Warning: Cannot change to %s.\n"
  2635. msgstr "Įspėjimas: nepavyko įeiti į „%s“.\n"
  2636. msgid "Using the S-Lang library with terminfo database\n"
  2637. msgstr ""
  2638. msgid "Using the ncurses library\n"
  2639. msgstr ""
  2640. msgid "Using the ncursesw library\n"
  2641. msgstr ""
  2642. msgid "With builtin Editor\n"
  2643. msgstr "Su vidiniu redaktoriumi\n"
  2644. msgid "With optional subshell support\n"
  2645. msgstr ""
  2646. msgid "With subshell support as default\n"
  2647. msgstr ""
  2648. msgid "With support for background operations\n"
  2649. msgstr "Su fono operacijų galimybe\n"
  2650. msgid "With mouse support on xterm and Linux console\n"
  2651. msgstr "Su pelės palaikymu xterm ir Linux konsolėse\n"
  2652. msgid "With mouse support on xterm\n"
  2653. msgstr "Su pelės palaikymu xterm\n"
  2654. msgid "With support for X11 events\n"
  2655. msgstr "Su X11 įvykių palaikymu\n"
  2656. msgid "With internationalization support\n"
  2657. msgstr "Su internacionalizacijos palaimymu\n"
  2658. msgid "With multiple codepages support\n"
  2659. msgstr "Su daugelio koduočių galimybe\n"
  2660. #, c-format
  2661. msgid "Built with GLib %d.%d.%d\n"
  2662. msgstr ""
  2663. #, c-format
  2664. msgid "Virtual File Systems:"
  2665. msgstr ""
  2666. #, c-format
  2667. msgid "Data types:"
  2668. msgstr ""
  2669. msgid "Home directory:"
  2670. msgstr ""
  2671. msgid "Profile root directory:"
  2672. msgstr ""
  2673. msgid "System data"
  2674. msgstr ""
  2675. msgid "Config directory:"
  2676. msgstr ""
  2677. msgid "Data directory:"
  2678. msgstr "Duomenų aplankas:"
  2679. msgid "File extension handlers:"
  2680. msgstr ""
  2681. msgid "VFS plugins and scripts:"
  2682. msgstr ""
  2683. msgid "User data"
  2684. msgstr ""
  2685. msgid "Cache directory:"
  2686. msgstr ""
  2687. msgid "Debug"
  2688. msgstr "Derinimas"
  2689. msgid "ERROR:"
  2690. msgstr "KLAIDA:"
  2691. msgid "True:"
  2692. msgstr ""
  2693. msgid "False:"
  2694. msgstr ""
  2695. msgid "Error calling program"
  2696. msgstr "Klaida iškviečiant programą"
  2697. msgid "Warning -- ignoring file"
  2698. msgstr ""
  2699. #, c-format
  2700. msgid ""
  2701. "File %s is not owned by root or you or is world writable.\n"
  2702. "Using it may compromise your security"
  2703. msgstr ""
  2704. "Failas %s nepriklauso nei „root“, nei jums arba visi gali į ją rašyti.\n"
  2705. "Jo naudojimas gali būti nesaugus"
  2706. msgid "Format error on file Extensions File"
  2707. msgstr ""
  2708. #, c-format
  2709. msgid "The %%var macro has no default"
  2710. msgstr ""
  2711. #, c-format
  2712. msgid "The %%var macro has no variable"
  2713. msgstr ""
  2714. #, c-format
  2715. msgid "No suitable entries found in %s"
  2716. msgstr ""
  2717. msgid "User menu"
  2718. msgstr ""
  2719. #, c-format
  2720. msgid ""
  2721. "Cannot open cpio archive\n"
  2722. "%s"
  2723. msgstr ""
  2724. "Nepvyko atverti „cpio“ archyvo\n"
  2725. "%s"
  2726. #, c-format
  2727. msgid ""
  2728. "Premature end of cpio archive\n"
  2729. "%s"
  2730. msgstr ""
  2731. "Ankstyva „cpio“ archyvo pabaiga\n"
  2732. "%s"
  2733. #, c-format
  2734. msgid ""
  2735. "Inconsistent hardlinks of\n"
  2736. "%s\n"
  2737. "in cpio archive\n"
  2738. "%s"
  2739. msgstr ""
  2740. "Nesutampančios nuorodos:\n"
  2741. "%s\n"
  2742. "„cpio“ archyve\n"
  2743. "%s"
  2744. #, c-format
  2745. msgid "%s contains duplicate entries! Skipping!"
  2746. msgstr "Faile „%s“ turi dvigubų įrašų! Praleidžiama!"
  2747. #, c-format
  2748. msgid ""
  2749. "Corrupted cpio header encountered in\n"
  2750. "%s"
  2751. msgstr ""
  2752. "Sugadinta „cpio“ archyvo antraštė:\n"
  2753. "%s"
  2754. #, c-format
  2755. msgid ""
  2756. "Unexpected end of file\n"
  2757. "%s"
  2758. msgstr ""
  2759. "Netikėta failo pabaiga\n"
  2760. "%s"
  2761. #, c-format
  2762. msgid ""
  2763. "Cannot open %s archive\n"
  2764. "%s"
  2765. msgstr ""
  2766. "Nepavyko atverti „%s“ archyvo\n"
  2767. "%s"
  2768. msgid "Inconsistent extfs archive"
  2769. msgstr "Prieštaringas „extfs“ archyvas"
  2770. #, c-format
  2771. msgid "Warning: cannot open %s directory\n"
  2772. msgstr "Įspėjimas: nepavyko pereiti į aplanką %s\n"
  2773. #, c-format
  2774. msgid "fish: Disconnecting from %s"
  2775. msgstr "fish: atsijungiama nuo %s"
  2776. msgid "fish: Waiting for initial line..."
  2777. msgstr "fish: laukiama pradinės eilutės..."
  2778. msgid "Sorry, we cannot do password authenticated connections for now."
  2779. msgstr "Šiuo metu slaptažodžių apsaugotų prisijungimų atlikti negalima."
  2780. #, c-format
  2781. msgid "fish: Password is required for %s"
  2782. msgstr ""
  2783. msgid "fish: Sending password..."
  2784. msgstr "fish: siunčiamas slaptažodis..."
  2785. msgid "fish: Sending initial line..."
  2786. msgstr "fish: siunčiama pradinė linija..."
  2787. msgid "fish: Handshaking version..."
  2788. msgstr "fish: derinamos versijos..."
  2789. msgid "fish: Getting host info..."
  2790. msgstr ""
  2791. #, c-format
  2792. msgid "fish: Reading directory %s..."
  2793. msgstr "fish: atveriamas aplankas %s..."
  2794. #, c-format
  2795. msgid "%s: done."
  2796. msgstr "%s: atlikta."
  2797. #, c-format
  2798. msgid "%s: failure"
  2799. msgstr "%s: nepavyko"
  2800. #, c-format
  2801. msgid "fish: store %s: sending command..."
  2802. msgstr "fish: „%s“ siuntimas: siunčiamas slaptažodis..."
  2803. msgid "fish: Local read failed, sending zeros"
  2804. msgstr "fish: vietinis skaitymas nepavyko, siunčiami nuliai"
  2805. msgid "fish: storing file"
  2806. msgstr ""
  2807. msgid "Aborting transfer..."
  2808. msgstr "Nutraukiamas siuntimas..."
  2809. msgid "Error reported after abort."
  2810. msgstr "Po nutraukties pranešta klaida."
  2811. msgid "Aborted transfer would be successful."
  2812. msgstr "Nutrauktas siuntimas būtų sėkmingas."
  2813. #, c-format
  2814. msgid "ftpfs: Disconnecting from %s"
  2815. msgstr "ftpfs: atsijungiama nuo %s"
  2816. #, c-format
  2817. msgid "FTP: Password required for %s"
  2818. msgstr ""
  2819. msgid "ftpfs: sending login name"
  2820. msgstr "ftpfs: siunčiamas naudotojo vardas"
  2821. msgid "ftpfs: sending user password"
  2822. msgstr "ftpfs: siunčiamas slaptažodis"
  2823. #, c-format
  2824. msgid "FTP: Account required for user %s"
  2825. msgstr "FTP: %s naudotojui reikia prisijungimo vardo"
  2826. msgid "Account:"
  2827. msgstr "Paskyra:"
  2828. msgid "ftpfs: sending user account"
  2829. msgstr "ftpfs: siunčiamas naudotojo vardas"
  2830. msgid "ftpfs: logged in"
  2831. msgstr "ftpfs: prisijungta"
  2832. #, c-format
  2833. msgid "ftpfs: Login incorrect for user %s "
  2834. msgstr "ftpfs: Neteisingas naudotojo „%s“ jungimasis "
  2835. msgid "ftpfs: Invalid host name."
  2836. msgstr "ftpfs: Neteisingas kompiuterio vardas."
  2837. #, c-format
  2838. msgid "ftpfs: %s"
  2839. msgstr ""
  2840. #, c-format
  2841. msgid "ftpfs: making connection to %s"
  2842. msgstr "ftpfs: jungiamasi į %s"
  2843. msgid "ftpfs: connection interrupted by user"
  2844. msgstr "ftpfs: jungiamasis nutrauktas"
  2845. #, c-format
  2846. msgid "ftpfs: connection to server failed: %s"
  2847. msgstr "ftpfs: jungimasis į serverį nepavyko: %s"
  2848. #, c-format
  2849. msgid "Waiting to retry... %d (Control-G to cancel)"
  2850. msgstr ""
  2851. msgid "ftpfs: invalid address family"
  2852. msgstr ""
  2853. #, c-format
  2854. msgid "ftpfs: could not create socket: %s"
  2855. msgstr ""
  2856. msgid "ftpfs: could not setup passive mode"
  2857. msgstr "ftpfs: nepavyko nustatyti pasyvaus režimo"
  2858. msgid "ftpfs: aborting transfer."
  2859. msgstr "ftpfs: nutraukiamas siuntimas."
  2860. #, c-format
  2861. msgid "ftpfs: abort error: %s"
  2862. msgstr "ftpfs: nutraukti nepavyko: %s"
  2863. msgid "ftpfs: abort failed"
  2864. msgstr "ftpfs: nutraukti nepavyko"
  2865. msgid "ftpfs: CWD failed."
  2866. msgstr "ftpfs: CWD nepavyko"
  2867. msgid "ftpfs: couldn't resolve symlink"
  2868. msgstr "ftpfs: nepavyko išspręsti simb. nuorodos"
  2869. msgid "Resolving symlink..."
  2870. msgstr "Sprendžiama simb. nuoroda..."
  2871. #, c-format
  2872. msgid "ftpfs: Reading FTP directory %s... %s%s"
  2873. msgstr "ftpfs: atveriamas FTP aplankas %s... %s%s"
  2874. msgid "(strict rfc959)"
  2875. msgstr "(griežtas rfc959)"
  2876. msgid "(chdir first)"
  2877. msgstr "(keičiamas katalogas)"
  2878. msgid "ftpfs: failed; nowhere to fallback to"
  2879. msgstr "ftpfs: nepavyko; nėra kur grįžti"
  2880. msgid "ftpfs: storing file"
  2881. msgstr ""
  2882. msgid ""
  2883. "~/.netrc file has incorrect mode\n"
  2884. "Remove password or correct mode"
  2885. msgstr ""
  2886. #, c-format
  2887. msgid "%s: Warning: file %s not found\n"
  2888. msgstr "%s: Įspėjimas: failas %s nerastas\n"
  2889. #, c-format
  2890. msgid ""
  2891. "Warning: Invalid line in %s:\n"
  2892. "%s\n"
  2893. msgstr ""
  2894. "Įspėjimas: klaidinga eilutė faile %s:\n"
  2895. "%s\n"
  2896. #, c-format
  2897. msgid ""
  2898. "Warning: Invalid flag %c in %s:\n"
  2899. "%s\n"
  2900. msgstr ""
  2901. "Įspėjimas: klaidingas parametras %c faile %s:\n"
  2902. "%s\n"
  2903. #, c-format
  2904. msgid "sftp: an error occurred while reading %s: %s"
  2905. msgstr "sftp: klaida skaitant %s:%s"
  2906. msgid "sftp: Unable to get current user name."
  2907. msgstr ""
  2908. msgid "sftp: Invalid host name."
  2909. msgstr ""
  2910. #, c-format
  2911. msgid "sftp: %s"
  2912. msgstr ""
  2913. #, c-format
  2914. msgid "sftp: making connection to %s"
  2915. msgstr ""
  2916. msgid "sftp: connection interrupted by user"
  2917. msgstr ""
  2918. #, c-format
  2919. msgid "sftp: connection to server failed: %s"
  2920. msgstr ""
  2921. #, c-format
  2922. msgid "sftp: Enter passphrase for %s "
  2923. msgstr ""
  2924. msgid "sftp: Passphrase is empty."
  2925. msgstr ""
  2926. #, c-format
  2927. msgid "sftp: Enter password for %s "
  2928. msgstr ""
  2929. msgid "sftp: Password is empty."
  2930. msgstr ""
  2931. msgid "sftp: Failure establishing SSH session"
  2932. msgstr ""
  2933. msgid "sftp: No file handler data present for reading file"
  2934. msgstr ""
  2935. #, fuzzy, c-format
  2936. msgid "sftp: socket error: %s"
  2937. msgstr "ftpfs: nutraukti nepavyko: %s"
  2938. #, c-format
  2939. msgid "sftp: (Ctrl-G break) Listing... %s"
  2940. msgstr ""
  2941. msgid "sftp: Listing done."
  2942. msgstr ""
  2943. #, c-format
  2944. msgid "reconnect to %s failed"
  2945. msgstr ""
  2946. msgid "Authentication failed"
  2947. msgstr ""
  2948. #, c-format
  2949. msgid "Error %s creating directory %s"
  2950. msgstr "Klaida %s kuriant aplanką %s"
  2951. #, c-format
  2952. msgid "Error %s removing directory %s"
  2953. msgstr "Klaida %s šalinant aplanką %s"
  2954. #, c-format
  2955. msgid "%s opening remote file %s"
  2956. msgstr ""
  2957. #, c-format
  2958. msgid "%s removing remote file %s"
  2959. msgstr ""
  2960. #, c-format
  2961. msgid "%s renaming files\n"
  2962. msgstr ""
  2963. #, c-format
  2964. msgid ""
  2965. "Cannot open tar archive\n"
  2966. "%s"
  2967. msgstr ""
  2968. "Nepavyko atverti tar archyvo\n"
  2969. "%s"
  2970. msgid "Inconsistent tar archive"
  2971. msgstr "Nevientisas tar archyvas"
  2972. msgid "Unexpected EOF on archive file"
  2973. msgstr "Netikėta archyvo failo pabaiga"
  2974. #, c-format
  2975. msgid ""
  2976. "%s\n"
  2977. "doesn't look like a tar archive."
  2978. msgstr ""
  2979. msgid "undelfs: error"
  2980. msgstr "undelfs: klaida"
  2981. msgid "not enough memory"
  2982. msgstr ""
  2983. msgid "while allocating block buffer"
  2984. msgstr ""
  2985. #, c-format
  2986. msgid "open_inode_scan: %d"
  2987. msgstr ""
  2988. #, c-format
  2989. msgid "while starting inode scan %d"
  2990. msgstr ""
  2991. #, c-format
  2992. msgid "undelfs: loading deleted files information %d inodes"
  2993. msgstr "undelfs: įkeliama pašalintų failų informacija (%d „inodes“)"
  2994. #, c-format
  2995. msgid "while calling ext2_block_iterate %d"
  2996. msgstr ""
  2997. msgid "no more memory while reallocating array"
  2998. msgstr ""
  2999. #, c-format
  3000. msgid "while doing inode scan %d"
  3001. msgstr ""
  3002. #, c-format
  3003. msgid "Cannot open file %s"
  3004. msgstr ""
  3005. msgid "undelfs: reading inode bitmap..."
  3006. msgstr "undelfs: skaitomas bloko bitų laukas..."
  3007. #, c-format
  3008. msgid ""
  3009. "Cannot load inode bitmap from:\n"
  3010. "%s"
  3011. msgstr ""
  3012. msgid "undelfs: reading block bitmap..."
  3013. msgstr "undel: skaitomas bloko bitų laukas..."
  3014. #, c-format
  3015. msgid ""
  3016. "Cannot load block bitmap from:\n"
  3017. "%s"
  3018. msgstr ""
  3019. msgid "vfs_info is not fs!"
  3020. msgstr ""
  3021. msgid "You have to chdir to extract files first"
  3022. msgstr ""
  3023. msgid "while iterating over blocks"
  3024. msgstr ""
  3025. #, c-format
  3026. msgid "Cannot open file \"%s\""
  3027. msgstr ""
  3028. msgid "Ext2lib error"
  3029. msgstr "Ext2lib klaida"
  3030. msgid "Invalid value"
  3031. msgstr ""
  3032. msgid "File was modified. Save with exit?"
  3033. msgstr "Failas buvo pakeistas. Ar išsaugoti?"
  3034. msgid "&Cancel quit"
  3035. msgstr "&Neišeiti"
  3036. msgid ""
  3037. "Midnight Commander is being shut down.\n"
  3038. "Save modified file?"
  3039. msgstr ""
  3040. "Midnight Commander yra išjungiamas.\n"
  3041. "Ar išsaugoti pakeitimus faile?"
  3042. msgid "&Line number"
  3043. msgstr ""
  3044. msgid "Pe&rcents"
  3045. msgstr ""
  3046. msgid "&Decimal offset"
  3047. msgstr ""
  3048. msgid "He&xadecimal offset"
  3049. msgstr ""
  3050. msgid "Goto"
  3051. msgstr "Eiti į"
  3052. msgid "ButtonBar|Ascii"
  3053. msgstr "ButtonBar|ASCII"
  3054. msgid "ButtonBar|HxSrch"
  3055. msgstr "ButtonBar|ŠšlIeš"
  3056. msgid "ButtonBar|UnWrap"
  3057. msgstr "ButtonBar|Nelauž"
  3058. msgid "ButtonBar|Wrap"
  3059. msgstr "ButtonBar|Lauž"
  3060. msgid "ButtonBar|Hex"
  3061. msgstr "ButtonBar|Šešiol"
  3062. msgid "ButtonBar|Goto"
  3063. msgstr "ButtonBar|Eiti į"
  3064. msgid "ButtonBar|Raw"
  3065. msgstr "ButtonBar|Pradin"
  3066. msgid "ButtonBar|Parse"
  3067. msgstr "ButtonBar|Apdorot."
  3068. msgid "ButtonBar|Unform"
  3069. msgstr "ButtonBar|Išform."
  3070. msgid "ButtonBar|Format"
  3071. msgstr "ButtonBar|Formuot."
  3072. #, c-format
  3073. msgid ""
  3074. "Failed to read data from child stdout:\n"
  3075. "%s"
  3076. msgstr ""
  3077. #, c-format
  3078. msgid ""
  3079. "Error while closing the file:\n"
  3080. "%s\n"
  3081. "Data may have been written or not"
  3082. msgstr ""
  3083. "Klaida uždarant failą:\n"
  3084. "%s\n"
  3085. "Duomenys gali būti neišsaugoti"
  3086. #, c-format
  3087. msgid ""
  3088. "Cannot save file:\n"
  3089. "%s"
  3090. msgstr ""
  3091. msgid "View: "
  3092. msgstr ""
  3093. #, c-format
  3094. msgid ""
  3095. "Cannot open \"%s\"\n"
  3096. "%s"
  3097. msgstr ""
  3098. msgid "Cannot view: not a regular file"
  3099. msgstr "Peržiūra negalima: neįprastas failas"
  3100. #, c-format
  3101. msgid ""
  3102. "Cannot open \"%s\" in parse mode\n"
  3103. "%s"
  3104. msgstr ""
  3105. msgid "Search done"
  3106. msgstr ""
  3107. msgid "Continue from beginning?"
  3108. msgstr ""
  3109. msgid "Cannot fetch a local copy of /ftp://some.host/editme.txt"
  3110. msgstr ""
  3111. #~ msgid ""
  3112. #~ "Cannot delete file \"%s\"\n"
  3113. #~ "%s"
  3114. #~ msgstr ""
  3115. #~ "Nepavyko pašalinti failo \"%s\"\n"
  3116. #~ "%s"