tr.po 124 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960
  1. # Turkish translation for apt
  2. # Copyright (c) 2009 Rosetta Contributors and Canonical Ltd 2009
  3. # Copyright (c) 2013 Debian L10n Turkish 2013
  4. # Mert Dirik <mertdirik@gmail.com>, 2013-2014.
  5. # This file is distributed under the same license as the apt package.
  6. # Rosetta Contributors, 2009.
  7. msgid ""
  8. msgstr ""
  9. "Project-Id-Version: apt 1.0.5\n"
  10. "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
  11. "POT-Creation-Date: 2015-08-21 06:13-0400\n"
  12. "PO-Revision-Date: 2015-06-21 16:54+0200\n"
  13. "Last-Translator: Mert Dirik <mertdirik@gmail.com>\n"
  14. "Language-Team: Debian l10n Turkish <debian-l10n-turkish@lists.debian.org>\n"
  15. "Language: tr\n"
  16. "MIME-Version: 1.0\n"
  17. "Content-Type: text/plain; charset=UTF-8\n"
  18. "Content-Transfer-Encoding: 8bit\n"
  19. "Plural-Forms: nplurals=2; plural=n!=1;\n"
  20. "X-Generator: Poedit 1.6.10\n"
  21. "X-Launchpad-Export-Date: 2013-02-04 12:16+0000\n"
  22. #: cmdline/apt-cache.cc:149
  23. #, c-format
  24. msgid "Package %s version %s has an unmet dep:\n"
  25. msgstr "%s paketinin (sürüm %s) karşılanamayan bir bağımlılığı var:\n"
  26. #: cmdline/apt-cache.cc:319
  27. #, fuzzy
  28. msgid "apt-cache stats does not take any arguments"
  29. msgstr "'update' komutu argüman almaz"
  30. #: cmdline/apt-cache.cc:325
  31. msgid "Total package names: "
  32. msgstr "Toplam paketlerin adları: "
  33. #: cmdline/apt-cache.cc:327
  34. msgid "Total package structures: "
  35. msgstr "Toplam paket yapıları: "
  36. #: cmdline/apt-cache.cc:367
  37. msgid " Normal packages: "
  38. msgstr " Normal paketler: "
  39. #: cmdline/apt-cache.cc:368
  40. msgid " Pure virtual packages: "
  41. msgstr " Saf sanal paketler: "
  42. #: cmdline/apt-cache.cc:369
  43. msgid " Single virtual packages: "
  44. msgstr " Tekil sanal paketler: "
  45. #: cmdline/apt-cache.cc:370
  46. msgid " Mixed virtual packages: "
  47. msgstr " Karışık sanal paketler: "
  48. #: cmdline/apt-cache.cc:371
  49. msgid " Missing: "
  50. msgstr " Eksik: "
  51. #: cmdline/apt-cache.cc:373
  52. msgid "Total distinct versions: "
  53. msgstr "Toplam farklı sürümler: "
  54. #: cmdline/apt-cache.cc:375
  55. msgid "Total distinct descriptions: "
  56. msgstr "Toplam farklı açıklamalar: "
  57. #: cmdline/apt-cache.cc:377
  58. msgid "Total dependencies: "
  59. msgstr "Toplam bağımlılıklar: "
  60. #: cmdline/apt-cache.cc:380
  61. msgid "Total ver/file relations: "
  62. msgstr "Toplam sürüm/dosya ilişkileri: "
  63. #: cmdline/apt-cache.cc:382
  64. msgid "Total Desc/File relations: "
  65. msgstr "Toplam Tanım/Dosya ilişkileri: "
  66. #: cmdline/apt-cache.cc:384
  67. msgid "Total Provides mappings: "
  68. msgstr "Toplam destekleme eşleştirmeleri: "
  69. #: cmdline/apt-cache.cc:440
  70. msgid "Total globbed strings: "
  71. msgstr "Toplam birikmiş dizgiler: "
  72. #: cmdline/apt-cache.cc:446
  73. msgid "Total slack space: "
  74. msgstr "Toplam serbest alan: "
  75. #: cmdline/apt-cache.cc:463
  76. msgid "Total space accounted for: "
  77. msgstr "Hesaplanan toplam alan: "
  78. #: cmdline/apt-cache.cc:605 cmdline/apt-cache.cc:1256
  79. #: apt-private/private-show.cc:58
  80. #, c-format
  81. msgid "Package file %s is out of sync."
  82. msgstr "%s paket dosyası eşzamansız."
  83. #: cmdline/apt-cache.cc:680 cmdline/apt-cache.cc:1541 cmdline/apt-cache.cc:1543
  84. #: cmdline/apt-cache.cc:1624 cmdline/apt-mark.cc:56 cmdline/apt-mark.cc:103
  85. #: cmdline/apt-mark.cc:229 apt-private/private-show.cc:173
  86. #: apt-private/private-show.cc:175
  87. msgid "No packages found"
  88. msgstr "Hiç paket bulunamadı"
  89. #: cmdline/apt-cache.cc:1356 apt-private/private-search.cc:41
  90. msgid "You must give at least one search pattern"
  91. msgstr "En az bir arama örüntüsü vermelisiniz"
  92. #: cmdline/apt-cache.cc:1520
  93. msgid "This command is deprecated. Please use 'apt-mark showauto' instead."
  94. msgstr ""
  95. "Bu komutun kullanımı bırakılmıştır. Lütfen bunun yerine 'apt-mark showauto' "
  96. "komutunu kullanın."
  97. #: cmdline/apt-cache.cc:1619 apt-pkg/cacheset.cc:762
  98. #, c-format
  99. msgid "Unable to locate package %s"
  100. msgstr "%s paketi bulunamadı"
  101. #: cmdline/apt-cache.cc:1649
  102. msgid "Package files:"
  103. msgstr "Paket dosyaları:"
  104. #: cmdline/apt-cache.cc:1658 cmdline/apt-cache.cc:1766
  105. msgid "Cache is out of sync, can't x-ref a package file"
  106. msgstr "Önbellek eşzamanlı değil, paket dosyası 'x-ref' yapılamıyor"
  107. #. Show any packages have explicit pins
  108. #: cmdline/apt-cache.cc:1672
  109. msgid "Pinned packages:"
  110. msgstr "Sabitlenmiş paketler:"
  111. #: cmdline/apt-cache.cc:1686 cmdline/apt-cache.cc:1743
  112. msgid "(not found)"
  113. msgstr "(bulunamadı)"
  114. #. Print the package name and the version we are forcing to
  115. #: cmdline/apt-cache.cc:1700
  116. #, c-format
  117. msgid "%s -> %s with priority %d\n"
  118. msgstr ""
  119. #: cmdline/apt-cache.cc:1706
  120. msgid " Installed: "
  121. msgstr " Kurulu: "
  122. #: cmdline/apt-cache.cc:1707
  123. msgid " Candidate: "
  124. msgstr " Aday: "
  125. #: cmdline/apt-cache.cc:1725 cmdline/apt-cache.cc:1733
  126. msgid "(none)"
  127. msgstr "(hiçbiri)"
  128. #: cmdline/apt-cache.cc:1740
  129. msgid " Package pin: "
  130. msgstr " Paket sabitleme: "
  131. #. Show the priority tables
  132. #: cmdline/apt-cache.cc:1749
  133. msgid " Version table:"
  134. msgstr " Sürüm çizelgesi:"
  135. #: cmdline/apt-cache.cc:1871
  136. msgid ""
  137. "Usage: apt-cache [options] command\n"
  138. " apt-cache [options] showpkg pkg1 [pkg2 ...]\n"
  139. " apt-cache [options] showsrc pkg1 [pkg2 ...]\n"
  140. "\n"
  141. "apt-cache is a low-level tool used to query information\n"
  142. "from APT's binary cache files\n"
  143. "\n"
  144. "Commands:\n"
  145. " gencaches - Build both the package and source cache\n"
  146. " showpkg - Show some general information for a single package\n"
  147. " showsrc - Show source records\n"
  148. " stats - Show some basic statistics\n"
  149. " dump - Show the entire file in a terse form\n"
  150. " dumpavail - Print an available file to stdout\n"
  151. " unmet - Show unmet dependencies\n"
  152. " search - Search the package list for a regex pattern\n"
  153. " show - Show a readable record for the package\n"
  154. " depends - Show raw dependency information for a package\n"
  155. " rdepends - Show reverse dependency information for a package\n"
  156. " pkgnames - List the names of all packages in the system\n"
  157. " dotty - Generate package graphs for GraphViz\n"
  158. " xvcg - Generate package graphs for xvcg\n"
  159. " policy - Show policy settings\n"
  160. "\n"
  161. "Options:\n"
  162. " -h This help text.\n"
  163. " -p=? The package cache.\n"
  164. " -s=? The source cache.\n"
  165. " -q Disable progress indicator.\n"
  166. " -i Show only important deps for the unmet command.\n"
  167. " -c=? Read this configuration file\n"
  168. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  169. "See the apt-cache(8) and apt.conf(5) manual pages for more information.\n"
  170. msgstr ""
  171. "Kullanım: apt-cache [seçenekler] komut\n"
  172. " apt-cache [seçenekler] showpkg paket1 [paket2 ...]\n"
  173. " apt-cache [seçenekler] showsrc paket1 [paket2 ...]\n"
  174. "\n"
  175. "apt-cache APT'nin ikili paket önbelleğindeki dosyaları\n"
  176. "sorgulamakta kullanılan alt seviye bir araçtır.\n"
  177. "\n"
  178. "Komutlar:\n"
  179. " gencaches - Hem paket hem de kaynak önbelleğini oluştur\n"
  180. " showpkg - Tek bir paket hakkındaki genel bilgileri görüntüle\n"
  181. " showsrc - Paket kayıtlarını görüntüle\n"
  182. " stats - Bir takım basit istatistikleri görüntüle\n"
  183. " dump - Bütün dosyayı kısa biçimde görüntüle\n"
  184. " dumpavail - Uygun bir dosyayı standart çıktıya yazdır\n"
  185. " unmet - Karşılanmayan bağımlılıkları görüntüle\n"
  186. " search - Paket listesini bir düzenli ifade ile ara\n"
  187. " show - Bir paketin okunabilir kaydını görüntüle\n"
  188. " depends - Bir paketin bağımlılık bilgilerini ham haliyle görüntüle\n"
  189. " rdepends - Bir paketin ters bağımlılık bilgilerini görüntüle\n"
  190. " pkgnames - Sistemdeki tüm paketlerin adlarını listele\n"
  191. " dotty - GraphViz için paket grafikleri üret\n"
  192. " xvcg - xvcg için paket grafikleri üret\n"
  193. " policy - İlke seçeneklerini görüntüle\n"
  194. "\n"
  195. "Options:\n"
  196. " -h Bu yardım metni.\n"
  197. " -p=? Paket önbelleği.\n"
  198. " -s=? Kaynak önbelleği.\n"
  199. " -q İlerleme göstergesini kapat.\n"
  200. " -i unmet komutunda sadece önemli bağımlılıkları görüntüle.\n"
  201. " -c=? Belirtilen yapılandırma dosyasını kullan\n"
  202. " -o=? Herhangi bir yapılandırma seçeneğini ayarla, örneğin -o dir::cache=/"
  203. "tmp\n"
  204. "Ayrıntılı bilgi için apt-cache(8) ve apt.conf(5) rehber sayfalarına göz "
  205. "atın.\n"
  206. #: cmdline/apt-cdrom.cc:77
  207. msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'"
  208. msgstr "Lütfen bu CD/DVD'ye bir ad verin, örneğin 'Debian 5.0.3 Disk 1'"
  209. #: cmdline/apt-cdrom.cc:92
  210. #, fuzzy
  211. msgid "Please insert a Disc in the drive and press [Enter]"
  212. msgstr "Lütfen sürücüye bir Disk yerleştirin ve giriş tuşuna (Enter) basın"
  213. #: cmdline/apt-cdrom.cc:140
  214. #, c-format
  215. msgid "Failed to mount '%s' to '%s'"
  216. msgstr "'%s', '%s' konumuna bağlanamadı"
  217. #: cmdline/apt-cdrom.cc:179
  218. msgid ""
  219. "No CD-ROM could be auto-detected or found using the default mount point.\n"
  220. "You may try the --cdrom option to set the CD-ROM mount point.\n"
  221. "See 'man apt-cdrom' for more information about the CD-ROM auto-detection and "
  222. "mount point."
  223. msgstr ""
  224. "Öntanımlı bağlama noktasında bir CD-ROM algılanamadı.\n"
  225. "CD-ROM bağlama noktasını ayarlamak için --cdrom seçeneğini kullanmayı "
  226. "deneyebilirsiniz.\n"
  227. "Otomatik CD-ROM ve bağlantı noktası algılama hakkında daha fazla bilgi almak "
  228. "için 'man apt-cdrom' komutunu kullanabilirsiniz."
  229. #: cmdline/apt-cdrom.cc:183
  230. msgid "Repeat this process for the rest of the CDs in your set."
  231. msgstr "Kalan CD'leriniz için bu işlemi yineleyin."
  232. #: cmdline/apt-config.cc:48
  233. msgid "Arguments not in pairs"
  234. msgstr "Argümanlar çiftler halinde değil"
  235. #: cmdline/apt-config.cc:88
  236. msgid ""
  237. "Usage: apt-config [options] command\n"
  238. "\n"
  239. "apt-config is a simple tool to read the APT config file\n"
  240. "\n"
  241. "Commands:\n"
  242. " shell - Shell mode\n"
  243. " dump - Show the configuration\n"
  244. "\n"
  245. "Options:\n"
  246. " -h This help text.\n"
  247. " -c=? Read this configuration file\n"
  248. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  249. msgstr ""
  250. "Kullanım: apt-config [seçenekler] komut\n"
  251. "\n"
  252. "apt-config, APT ayar dosyasını okumaya yarayan basit bir araçtır\n"
  253. "\n"
  254. "Komutlar:\n"
  255. " shell - Kabuk kipi\n"
  256. " dump - Ayarları görüntüle\n"
  257. "\n"
  258. "Seçenekler:\n"
  259. " -h Bu yardım dosyası.\n"
  260. " -c=? Belirtilen ayar dosyasını görüntüler\n"
  261. " -o=? İsteğe bağlı ayar seçeneği belirtmenizi sağlar, örneğin -o dir::"
  262. "cache=/tmp\n"
  263. #: cmdline/apt-get.cc:211
  264. #, c-format
  265. msgid "Can not find a package for architecture '%s'"
  266. msgstr "'%s' mimarisi için bir paket bulunamadı"
  267. #: cmdline/apt-get.cc:287
  268. #, c-format
  269. msgid "Can not find a package '%s' with version '%s'"
  270. msgstr "'%s' paketinin '%s' sürümü bulunamadı"
  271. #: cmdline/apt-get.cc:290
  272. #, c-format
  273. msgid "Can not find a package '%s' with release '%s'"
  274. msgstr "'%s' paketi '%s' dağıtım sürümünde bulunamadı"
  275. #: cmdline/apt-get.cc:327
  276. #, c-format
  277. msgid "Picking '%s' as source package instead of '%s'\n"
  278. msgstr "Kaynak paket olarak '%s' yerine '%s' kullanılacak\n"
  279. #: cmdline/apt-get.cc:386
  280. #, c-format
  281. msgid "Can not find version '%s' of package '%s'"
  282. msgstr "'%2$s' paketinin '%1$s' sürümünü bulunamadı"
  283. #: cmdline/apt-get.cc:417
  284. #, c-format
  285. msgid "Couldn't find package %s"
  286. msgstr "%s paketi bulunamadı"
  287. #: cmdline/apt-get.cc:422 cmdline/apt-mark.cc:78
  288. #: apt-private/private-install.cc:839
  289. #, c-format
  290. msgid "%s set to manually installed.\n"
  291. msgstr "%s elle kurulmuş olarak ayarlandı.\n"
  292. #: cmdline/apt-get.cc:424 cmdline/apt-mark.cc:80
  293. #, c-format
  294. msgid "%s set to automatically installed.\n"
  295. msgstr "%s otomatik olarak kurulmuş şekilde ayarlandı.\n"
  296. #: cmdline/apt-get.cc:432 cmdline/apt-mark.cc:124
  297. msgid ""
  298. "This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' "
  299. "instead."
  300. msgstr ""
  301. "Bu komut artık kullanılmamaktadır. Bunun yerine 'apt-mark auto' ve 'apt-mark "
  302. "manual' kullanın."
  303. #: cmdline/apt-get.cc:501 cmdline/apt-get.cc:509
  304. msgid "Internal error, problem resolver broke stuff"
  305. msgstr "İç hata, sorun çözücü nesneyi bozdu"
  306. #: cmdline/apt-get.cc:570
  307. msgid "Unable to lock the download directory"
  308. msgstr "İndirme dizini kilitlenemiyor"
  309. #: cmdline/apt-get.cc:688
  310. msgid "Must specify at least one package to fetch source for"
  311. msgstr "Kaynağının indirileceği en az bir paket seçilmeli"
  312. #: cmdline/apt-get.cc:725 cmdline/apt-get.cc:1035
  313. #, c-format
  314. msgid "Unable to find a source package for %s"
  315. msgstr "%s paketinin kaynak paketi bulunamadı"
  316. #: cmdline/apt-get.cc:745
  317. #, c-format
  318. msgid ""
  319. "NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n"
  320. "%s\n"
  321. msgstr ""
  322. "NOT: '%s' paketlemesi '%s' sürüm kontrol sistemiyle aşağıdaki adreste "
  323. "yapılmaktadır:\n"
  324. "%s\n"
  325. #: cmdline/apt-get.cc:750
  326. #, c-format
  327. msgid ""
  328. "Please use:\n"
  329. "bzr branch %s\n"
  330. "to retrieve the latest (possibly unreleased) updates to the package.\n"
  331. msgstr ""
  332. "Bu paketin en son (ve muhtemelen henüz yayımlanmamış olan)\n"
  333. "sürümünü edinmek için lütfen:\n"
  334. "bzr branch %s\n"
  335. "komutunu kullanın.\n"
  336. #: cmdline/apt-get.cc:798
  337. #, c-format
  338. msgid "Skipping already downloaded file '%s'\n"
  339. msgstr "Zaten indirilmiş olan '%s' dosyası atlanıyor\n"
  340. #. TRANSLATOR: The required space between number and unit is already included
  341. #. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
  342. #: cmdline/apt-get.cc:828
  343. #, c-format
  344. msgid "Need to get %sB/%sB of source archives.\n"
  345. msgstr "%sB/%sB kaynak arşivi indirilecek.\n"
  346. #. TRANSLATOR: The required space between number and unit is already included
  347. #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
  348. #: cmdline/apt-get.cc:833
  349. #, c-format
  350. msgid "Need to get %sB of source archives.\n"
  351. msgstr "%sB kaynak arşivi indirilecek.\n"
  352. #: cmdline/apt-get.cc:839
  353. #, c-format
  354. msgid "Fetch source %s\n"
  355. msgstr "%s kaynağını al\n"
  356. #: cmdline/apt-get.cc:864
  357. msgid "Failed to fetch some archives."
  358. msgstr "Bazı arşivler alınamadı."
  359. #: cmdline/apt-get.cc:869 apt-private/private-install.cc:300
  360. msgid "Download complete and in download only mode"
  361. msgstr "İndirme işlemi tamamlandı ve sadece indirme kipinde"
  362. #: cmdline/apt-get.cc:894
  363. #, c-format
  364. msgid "Skipping unpack of already unpacked source in %s\n"
  365. msgstr "%s için zaten açılmış bazı paketlerin açılması atlanıyor\n"
  366. #: cmdline/apt-get.cc:907
  367. #, c-format
  368. msgid "Unpack command '%s' failed.\n"
  369. msgstr "Paket açma komutu '%s' başarısız.\n"
  370. #: cmdline/apt-get.cc:908
  371. #, c-format
  372. msgid "Check if the 'dpkg-dev' package is installed.\n"
  373. msgstr "'dpkg-dev' paketinin kurulu olduğundan emin olun.\n"
  374. #: cmdline/apt-get.cc:936
  375. #, c-format
  376. msgid "Build command '%s' failed.\n"
  377. msgstr "İnşa komutu '%s' başarısız oldu.\n"
  378. #: cmdline/apt-get.cc:955
  379. msgid "Child process failed"
  380. msgstr "Alt süreç başarısız"
  381. #: cmdline/apt-get.cc:976
  382. msgid "Must specify at least one package to check builddeps for"
  383. msgstr "İnşa bağımlılıklarının denetleneceği en az bir paket belirtilmelidir"
  384. #: cmdline/apt-get.cc:994
  385. #, c-format
  386. msgid ""
  387. "No architecture information available for %s. See apt.conf(5) APT::"
  388. "Architectures for setup"
  389. msgstr ""
  390. "%s mimarisine uygun mimari bilgileri mevcut değil. Kurulumu için apt.conf(5) "
  391. "rehber sayfasındaki APT::Architectures kısmına göz atın"
  392. #: cmdline/apt-get.cc:1012
  393. #, c-format
  394. msgid "Note, using directory '%s' to get the build dependencies\n"
  395. msgstr ""
  396. #: cmdline/apt-get.cc:1022
  397. #, fuzzy, c-format
  398. msgid "Note, using file '%s' to get the build dependencies\n"
  399. msgstr "İnşa bağımlılıklarını işleme başarısız oldu"
  400. #: cmdline/apt-get.cc:1047 cmdline/apt-get.cc:1050
  401. #, c-format
  402. msgid "Unable to get build-dependency information for %s"
  403. msgstr "%s paketinin inşa-bağımlılığı bilgisi alınamıyor"
  404. #: cmdline/apt-get.cc:1070
  405. #, c-format
  406. msgid "%s has no build depends.\n"
  407. msgstr "%s paketinin hiç inşa bağımlılığı yok.\n"
  408. #: cmdline/apt-get.cc:1240
  409. #, c-format
  410. msgid ""
  411. "%s dependency for %s can't be satisfied because %s is not allowed on '%s' "
  412. "packages"
  413. msgstr ""
  414. "'%4$s' paketlerinde %3$s paketine izin verilmediği için %2$s kaynağının %1$s "
  415. "bağımlılığı karşılanamıyor"
  416. #: cmdline/apt-get.cc:1258
  417. #, c-format
  418. msgid ""
  419. "%s dependency for %s cannot be satisfied because the package %s cannot be "
  420. "found"
  421. msgstr ""
  422. "%2$s için %1$s bağımlılığı, %3$s paketi bulunamadığı için karşılanamadı"
  423. #: cmdline/apt-get.cc:1281
  424. #, c-format
  425. msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new"
  426. msgstr "%2$s için %1$s bağımlılığı karşılanamadı: Kurulu %3$s paketi çok yeni"
  427. #: cmdline/apt-get.cc:1320
  428. #, c-format
  429. msgid ""
  430. "%s dependency for %s cannot be satisfied because candidate version of "
  431. "package %s can't satisfy version requirements"
  432. msgstr ""
  433. "%2$s için %1$s bağımlılığı sağlanamıyor, çünkü %3$s paketinin aday sürümü "
  434. "gerekli sürüm şartlarını karşılamıyor"
  435. #: cmdline/apt-get.cc:1326
  436. #, c-format
  437. msgid ""
  438. "%s dependency for %s cannot be satisfied because package %s has no candidate "
  439. "version"
  440. msgstr ""
  441. "%2$s için %1$s bağımlılığı sağlanamıyor, çünkü %3$s paketinin aday sürümü yok"
  442. #: cmdline/apt-get.cc:1349
  443. #, c-format
  444. msgid "Failed to satisfy %s dependency for %s: %s"
  445. msgstr "%2$s için %1$s bağımlılığı karşılanamadı: %3$s"
  446. #: cmdline/apt-get.cc:1364
  447. #, c-format
  448. msgid "Build-dependencies for %s could not be satisfied."
  449. msgstr "%s için inşa bağımlılıkları karşılanamadı."
  450. #: cmdline/apt-get.cc:1369
  451. msgid "Failed to process build dependencies"
  452. msgstr "İnşa bağımlılıklarını işleme başarısız oldu"
  453. #: cmdline/apt-get.cc:1554
  454. msgid "Supported modules:"
  455. msgstr "Desteklenen birimler:"
  456. #: cmdline/apt-get.cc:1595
  457. msgid ""
  458. "Usage: apt-get [options] command\n"
  459. " apt-get [options] install|remove pkg1 [pkg2 ...]\n"
  460. " apt-get [options] source pkg1 [pkg2 ...]\n"
  461. "\n"
  462. "apt-get is a simple command line interface for downloading and\n"
  463. "installing packages. The most frequently used commands are update\n"
  464. "and install.\n"
  465. "\n"
  466. "Commands:\n"
  467. " update - Retrieve new lists of packages\n"
  468. " upgrade - Perform an upgrade\n"
  469. " install - Install new packages (pkg is libc6 not libc6.deb)\n"
  470. " remove - Remove packages\n"
  471. " autoremove - Remove automatically all unused packages\n"
  472. " purge - Remove packages and config files\n"
  473. " source - Download source archives\n"
  474. " build-dep - Configure build-dependencies for source packages\n"
  475. " dist-upgrade - Distribution upgrade, see apt-get(8)\n"
  476. " dselect-upgrade - Follow dselect selections\n"
  477. " clean - Erase downloaded archive files\n"
  478. " autoclean - Erase old downloaded archive files\n"
  479. " check - Verify that there are no broken dependencies\n"
  480. " changelog - Download and display the changelog for the given package\n"
  481. " download - Download the binary package into the current directory\n"
  482. "\n"
  483. "Options:\n"
  484. " -h This help text.\n"
  485. " -q Loggable output - no progress indicator\n"
  486. " -qq No output except for errors\n"
  487. " -d Download only - do NOT install or unpack archives\n"
  488. " -s No-act. Perform ordering simulation\n"
  489. " -y Assume Yes to all queries and do not prompt\n"
  490. " -f Attempt to correct a system with broken dependencies in place\n"
  491. " -m Attempt to continue if archives are unlocatable\n"
  492. " -u Show a list of upgraded packages as well\n"
  493. " -b Build the source package after fetching it\n"
  494. " -V Show verbose version numbers\n"
  495. " -c=? Read this configuration file\n"
  496. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  497. "See the apt-get(8), sources.list(5) and apt.conf(5) manual\n"
  498. "pages for more information and options.\n"
  499. " This APT has Super Cow Powers.\n"
  500. msgstr ""
  501. "Kullanım: apt-get [seçenekler] komut\n"
  502. " apt-get [seçenekler] install|remove paket1 [paket2 ...]\n"
  503. " apt-get [seçenekler] kaynak paket1 [paket2 ...]\n"
  504. "\n"
  505. "apt-get, paket indirme ve kurmada kullanılan basit bir komut satırı\n"
  506. "arayüzüdür. En sık kullanılan komutlar güncelleme (update) ve kurma\n"
  507. "(install) komutlarıdır.\n"
  508. "\n"
  509. "Komutlar:\n"
  510. " update - Paket listelerini yenile\n"
  511. " upgrade - Yükseltme işlemini gerçekleştir\n"
  512. " install - Yeni paket kur (paket libc6.deb değil libc6 şeklinde "
  513. "olmalıdır)\n"
  514. " remove - Paket(leri) kaldır\n"
  515. " autoremove - Kullanılmayan tüm paketleri otomatik olarak kaldır\n"
  516. " purge - Paketleri ve yapılandırma dosyalarını kaldır\n"
  517. " source - Kaynak paket dosyalarını indir\n"
  518. " build-dep - Kaynak paketlerin inşa bağımlılıklarını yapılandır\n"
  519. " dist-upgrade - Dağıtım yükseltme, ayrıntılı bilgi için apt-get(8)\n"
  520. " dselect-upgrade - dselect yapılandırmalarına uy\n"
  521. " clean - İndirilmiş olan arşiv dosyalarını sil\n"
  522. " autoclean - İndirilmiş olan eski arşiv dosyalarını sil\n"
  523. " check - Eksik bağımlılık olmadığından emin ol\n"
  524. " changelog - Belirtilen paketlerin değişim günlüklerini indir ve "
  525. "görüntüle\n"
  526. " download - İkili paketleri içinde bulunulan dizine indir\n"
  527. "\n"
  528. "Seçenekler:\n"
  529. " -h Bu yardım metni.\n"
  530. " -q Günlük tutmaya uygun çıktı - İlerleme göstergesi yok\n"
  531. " -qq Hata olmadığı müddetçe çıktıya bir şey yazma\n"
  532. " -d Sadece indir - Paketleri açmaz ve kurmaz\n"
  533. " -s Bir şey yapma. Simülasyon kipinde çalış\n"
  534. " -y Tüm sorulara Evet yanıtını ver ve soru sorma\n"
  535. " -f Eksik bağımlılıklara sahip bir sistemi onarmaya çalış\n"
  536. " -m Eksik paketleri görmezden gel ve işleme devam et\n"
  537. " -u Yükseltilen paketlerin listesini de görüntüle\n"
  538. " -b Kaynak paketi indirdikten sonra inşa et\n"
  539. " -V Sürüm numaralarını daha ayrıntılı göster\n"
  540. " -c=? Belirtilen yapılandırma dosyası kullan\n"
  541. " -o=? Yapılandırma seçeneği ayarla, örneğin -o dir::cache=/tmp\n"
  542. "Ayrıntılı bilgi için apt-get(8), sources.list(5) ve apt.conf(5) rehber\n"
  543. "sayfalarına bakabilirsiniz.\n"
  544. " Bu APT'nin Süper İnek Güçleri vardır.\n"
  545. #: cmdline/apt-helper.cc:37
  546. msgid "Need one URL as argument"
  547. msgstr "Argüman olarak bir adet URL'ye ihtiyaç vardır"
  548. #: cmdline/apt-helper.cc:50
  549. msgid "Must specify at least one pair url/filename"
  550. msgstr "En az bir adet url/dosya-adı çifti belirtilmelidir"
  551. #: cmdline/apt-helper.cc:76 cmdline/apt-helper.cc:80
  552. msgid "Download Failed"
  553. msgstr "İndirme Başarısız"
  554. #: cmdline/apt-helper.cc:88
  555. #, fuzzy
  556. msgid "Must specifc at least one srv record"
  557. msgstr "En az bir adet url/dosya-adı çifti belirtilmelidir"
  558. #: cmdline/apt-helper.cc:95
  559. #, c-format
  560. msgid "GetSrvRec failed for %s"
  561. msgstr ""
  562. #: cmdline/apt-helper.cc:118
  563. #, fuzzy
  564. msgid ""
  565. "Usage: apt-helper [options] command\n"
  566. " apt-helper [options] download-file uri target-path\n"
  567. "\n"
  568. "apt-helper is a internal helper for apt\n"
  569. "\n"
  570. "Commands:\n"
  571. " download-file - download the given uri to the target-path\n"
  572. " srv-lookup - lookup a SRV record (e.g. _http._tcp.ftp.debian.org)\n"
  573. " auto-detect-proxy - detect proxy using apt.conf\n"
  574. "\n"
  575. " This APT helper has Super Meep Powers.\n"
  576. msgstr ""
  577. "Usage: apt-helper [seçenekler] komut\n"
  578. " apt-helper [seçenekler] download-file uri hedef-konum\n"
  579. "\n"
  580. "apt-helper apt'nin dâhilî yardımcı aracıdır\n"
  581. "\n"
  582. "Komutlar:\n"
  583. " download-file - verilen adresi hedef yola kaydet\n"
  584. " auto-detect-proxy - apt.conf kullanarak vekil sunucuyu algıla\n"
  585. "\n"
  586. " Bu APT yardımcısının Süper Meep Güçleri var.\n"
  587. #: cmdline/apt-mark.cc:65
  588. #, c-format
  589. msgid "%s can not be marked as it is not installed.\n"
  590. msgstr "%s kurulu olmadığı için işaretlenemedi.\n"
  591. #: cmdline/apt-mark.cc:71
  592. #, c-format
  593. msgid "%s was already set to manually installed.\n"
  594. msgstr "%s zaten elle kurulmuş olarak ayarlı.\n"
  595. #: cmdline/apt-mark.cc:73
  596. #, c-format
  597. msgid "%s was already set to automatically installed.\n"
  598. msgstr "%s zaten otomatik kurulmuş olarak ayarlı.\n"
  599. #: cmdline/apt-mark.cc:238
  600. #, c-format
  601. msgid "%s was already set on hold.\n"
  602. msgstr "%s zaten tutulacak şekilde ayarlanmış.\n"
  603. #: cmdline/apt-mark.cc:240
  604. #, c-format
  605. msgid "%s was already not hold.\n"
  606. msgstr "%s zaten tutulmayacak şekilde ayarlanmış.\n"
  607. #: cmdline/apt-mark.cc:255 cmdline/apt-mark.cc:333 cmdline/apt-mark.cc:397
  608. #: apt-pkg/contrib/fileutl.cc:850 apt-pkg/contrib/gpgv.cc:207
  609. #: apt-pkg/deb/dpkgpm.cc:1302
  610. #, c-format
  611. msgid "Waited for %s but it wasn't there"
  612. msgstr "%s için beklenildi ama o gelmedi"
  613. #: cmdline/apt-mark.cc:270 cmdline/apt-mark.cc:380
  614. #, c-format
  615. msgid "%s set on hold.\n"
  616. msgstr "%s paketi tutuluyor.\n"
  617. #: cmdline/apt-mark.cc:272 cmdline/apt-mark.cc:385
  618. #, c-format
  619. msgid "Canceled hold on %s.\n"
  620. msgstr "%s paketini tutma işlemi iptal edildi.\n"
  621. #: cmdline/apt-mark.cc:337 cmdline/apt-mark.cc:403
  622. msgid "Executing dpkg failed. Are you root?"
  623. msgstr "'dpkg' çalıştırılamadı. root olduğunuzdan emin misiniz?"
  624. #: cmdline/apt-mark.cc:449
  625. msgid ""
  626. "Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n"
  627. "\n"
  628. "apt-mark is a simple command line interface for marking packages\n"
  629. "as manually or automatically installed. It can also list marks.\n"
  630. "\n"
  631. "Commands:\n"
  632. " auto - Mark the given packages as automatically installed\n"
  633. " manual - Mark the given packages as manually installed\n"
  634. " hold - Mark a package as held back\n"
  635. " unhold - Unset a package set as held back\n"
  636. " showauto - Print the list of automatically installed packages\n"
  637. " showmanual - Print the list of manually installed packages\n"
  638. " showhold - Print the list of package on hold\n"
  639. "\n"
  640. "Options:\n"
  641. " -h This help text.\n"
  642. " -q Loggable output - no progress indicator\n"
  643. " -qq No output except for errors\n"
  644. " -s No-act. Just prints what would be done.\n"
  645. " -f read/write auto/manual marking in the given file\n"
  646. " -c=? Read this configuration file\n"
  647. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  648. "See the apt-mark(8) and apt.conf(5) manual pages for more information."
  649. msgstr ""
  650. "Kullanım: apt-mark [seçenekler] {auto|manual} paket1 [paket2 ...]\n"
  651. "\n"
  652. "apt-mark paketleri otomatik ya da elle kurulmuş olarak işaretlemeye\n"
  653. "ve mevcut işaretleri görmeye yarayan basit bir komut satırı arayüzüdür.\n"
  654. "\n"
  655. "Komutlar:\n"
  656. " auto - Belirtilen paketleri otomatik kurulmuş olarak işaretle\n"
  657. " manual - Belirtilen paketleri elle kurulmuş olarak işaretle\n"
  658. " hold - Paketi tutulacak şekilde işaretle\n"
  659. " unhold - Paketin tutuluyor işaretini kaldır\n"
  660. " showauto - Otomatik olarak kurulmuş paketlerin listesini görüntüle\n"
  661. " showmanual - Elle kurulmuş paketlerin listesini görüntüle\n"
  662. " showhold - Tutulur durumda olan paketlerin listesini görüntüle\n"
  663. "\n"
  664. "Seçenekler:\n"
  665. " -h Bu yardım metni.\n"
  666. " -q Günlük tutmaya uygun çıktı - İlerleme göstergesi yok\n"
  667. " -qq Hata olmadığı müddetçe çıktıya bir şey yazma\n"
  668. " -s Bir şey yapma. Sadece ne yapılacağını söyler.\n"
  669. " -f read/write auto/manual marking in the given file\n"
  670. " -c=? Belirtilen yapılandırma dosyası kullan\n"
  671. " -o=? Yapılandırma seçeneği ayarla, örneğin -o dir::cache=/tmp\n"
  672. "Ayrıntılı bilgi için apt-mark(8) ve apt.conf(5) rehber sayfalarına\n"
  673. "bakabilirsiniz."
  674. #: cmdline/apt.cc:46
  675. #, fuzzy
  676. msgid ""
  677. "Usage: apt [options] command\n"
  678. "\n"
  679. "CLI for apt.\n"
  680. "Basic commands: \n"
  681. " list - list packages based on package names\n"
  682. " search - search in package descriptions\n"
  683. " show - show package details\n"
  684. "\n"
  685. " update - update list of available packages\n"
  686. "\n"
  687. " install - install packages\n"
  688. " remove - remove packages\n"
  689. " autoremove - Remove automatically all unused packages\n"
  690. "\n"
  691. " upgrade - upgrade the system by installing/upgrading packages\n"
  692. " full-upgrade - upgrade the system by removing/installing/upgrading "
  693. "packages\n"
  694. "\n"
  695. " edit-sources - edit the source information file\n"
  696. msgstr ""
  697. "Usage: apt [seçenekler] komut\n"
  698. "\n"
  699. "apt için komut satırı arayüzü.\n"
  700. "Temel komutlar: \n"
  701. " list - Paketleri adlarına göre listele\n"
  702. " search - Paket açıklamalarında arama yap\n"
  703. " show - Paket ayrıntılarını görüntüle\n"
  704. "\n"
  705. " update - Mevcut paket listesini güncelle\n"
  706. "\n"
  707. " install - paket kur\n"
  708. " remove - paket kaldır\n"
  709. "\n"
  710. " upgrade - sistemi yükselt (paketleri kurarak ve yükselterek)\n"
  711. " full-upgrade - sistemi yükselt (paketleri kurarak,yükselterek ve "
  712. "kaldırarak)\n"
  713. "\n"
  714. " edit-sources - kaynak bilgi dosyasını düzenle\n"
  715. #: methods/cdrom.cc:203
  716. #, c-format
  717. msgid "Unable to read the cdrom database %s"
  718. msgstr "'cdrom' veritabanı %s okunamıyor"
  719. #: methods/cdrom.cc:212
  720. msgid ""
  721. "Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update "
  722. "cannot be used to add new CD-ROMs"
  723. msgstr ""
  724. "Lütfen bu CD-ROM'un APT tarafından tanınması için apt-cdrom aracını "
  725. "kullanın. apt-get update yeni CD-ROM'lar eklemek için kullanılamaz"
  726. #: methods/cdrom.cc:222
  727. msgid "Wrong CD-ROM"
  728. msgstr "Yanlış CD-ROM"
  729. #: methods/cdrom.cc:249
  730. #, c-format
  731. msgid "Unable to unmount the CD-ROM in %s, it may still be in use."
  732. msgstr "%s konumundaki CD-ROM çıkarılamıyor, hâlâ kullanımda olabilir."
  733. #: methods/cdrom.cc:254
  734. msgid "Disk not found."
  735. msgstr "Disk bulunamadı."
  736. #: methods/cdrom.cc:262 methods/file.cc:121 methods/rsh.cc:299
  737. msgid "File not found"
  738. msgstr "Dosya bulunamadı"
  739. #: methods/copy.cc:57 methods/gzip.cc:127 methods/rred.cc:654
  740. #: methods/rred.cc:664
  741. msgid "Failed to stat"
  742. msgstr "Durum bilgisi okunamadı"
  743. #: methods/copy.cc:101 methods/gzip.cc:134 methods/rred.cc:661
  744. msgid "Failed to set modification time"
  745. msgstr "Değişiklik zamanı ayarlanamadı"
  746. #: methods/file.cc:49
  747. msgid "Invalid URI, local URIS must not start with //"
  748. msgstr "Geçersiz URI, yerel URI'ler // ile başlamamalıdır"
  749. #. Login must be before getpeername otherwise dante won't work.
  750. #: methods/ftp.cc:177
  751. msgid "Logging in"
  752. msgstr "Giriş yapılıyor"
  753. #: methods/ftp.cc:183
  754. msgid "Unable to determine the peer name"
  755. msgstr "Eş adı belirlenemiyor"
  756. #: methods/ftp.cc:188
  757. msgid "Unable to determine the local name"
  758. msgstr "Yerel ad belirlenemiyor"
  759. #: methods/ftp.cc:219 methods/ftp.cc:247
  760. #, c-format
  761. msgid "The server refused the connection and said: %s"
  762. msgstr "Sunucu bağlantıyı reddetti, sunucunun iletisi: %s"
  763. #: methods/ftp.cc:225
  764. #, c-format
  765. msgid "USER failed, server said: %s"
  766. msgstr "USER başarısız, sunucunun iletisi: %s"
  767. #: methods/ftp.cc:232
  768. #, c-format
  769. msgid "PASS failed, server said: %s"
  770. msgstr "PASS başarısız, sunucunun iletisi: %s"
  771. #: methods/ftp.cc:252
  772. msgid ""
  773. "A proxy server was specified but no login script, Acquire::ftp::ProxyLogin "
  774. "is empty."
  775. msgstr ""
  776. "Bir Vekil sunucu belirtildi ancak oturum açma betiği belirtilmedi, Acquire::"
  777. "ftp::ProxyLogin boş."
  778. #: methods/ftp.cc:282
  779. #, c-format
  780. msgid "Login script command '%s' failed, server said: %s"
  781. msgstr "Oturum açma betiği komutu '%s' başarısız oldu, sunucunun iletisi: %s"
  782. #: methods/ftp.cc:308
  783. #, c-format
  784. msgid "TYPE failed, server said: %s"
  785. msgstr "TYPE başarısız, sunucunun iletisi: %s"
  786. #: methods/ftp.cc:346 methods/ftp.cc:458 methods/rsh.cc:213 methods/rsh.cc:261
  787. msgid "Connection timeout"
  788. msgstr "Bağlantı zaman aşımına uğradı"
  789. #: methods/ftp.cc:352
  790. msgid "Server closed the connection"
  791. msgstr "Sunucu bağlantıyı kesti"
  792. #: methods/ftp.cc:355 methods/rsh.cc:220 apt-pkg/contrib/fileutl.cc:1569
  793. #: apt-pkg/contrib/fileutl.cc:1578 apt-pkg/contrib/fileutl.cc:1583
  794. #: apt-pkg/contrib/fileutl.cc:1585
  795. msgid "Read error"
  796. msgstr "Okuma hatası"
  797. #: methods/ftp.cc:362 methods/rsh.cc:227
  798. msgid "A response overflowed the buffer."
  799. msgstr "Bir yanıt arabelleği taşırdı."
  800. #: methods/ftp.cc:379 methods/ftp.cc:391
  801. msgid "Protocol corruption"
  802. msgstr "İletişim kuralları bozulması"
  803. #: methods/ftp.cc:464 methods/rsh.cc:267 apt-pkg/contrib/fileutl.cc:946
  804. #: apt-pkg/contrib/fileutl.cc:1691 apt-pkg/contrib/fileutl.cc:1700
  805. #: apt-pkg/contrib/fileutl.cc:1705 apt-pkg/contrib/fileutl.cc:1707
  806. #: apt-pkg/contrib/fileutl.cc:1732
  807. msgid "Write error"
  808. msgstr "Yazma hatası"
  809. #: methods/ftp.cc:703 methods/ftp.cc:709 methods/ftp.cc:744
  810. msgid "Could not create a socket"
  811. msgstr "Bir soket oluşturulamadı"
  812. #: methods/ftp.cc:714
  813. msgid "Could not connect data socket, connection timed out"
  814. msgstr "Veri soketine bağlanılamadı, bağlantı zaman aşımına uğradı"
  815. #: methods/ftp.cc:718 methods/connect.cc:120 methods/rsh.cc:102
  816. msgid "Failed"
  817. msgstr "Başarısız"
  818. #: methods/ftp.cc:720
  819. msgid "Could not connect passive socket."
  820. msgstr "Edilgen sokete bağlanılamadı."
  821. #: methods/ftp.cc:737
  822. msgid "getaddrinfo was unable to get a listening socket"
  823. msgstr "getaddrinfo bir dinleme soketi alamıyor"
  824. #: methods/ftp.cc:751
  825. msgid "Could not bind a socket"
  826. msgstr "Bir sokete bağlanılamadı"
  827. #: methods/ftp.cc:755
  828. msgid "Could not listen on the socket"
  829. msgstr "Soket dinlenemedi"
  830. #: methods/ftp.cc:762
  831. msgid "Could not determine the socket's name"
  832. msgstr "Soketin adı belirlenemedi"
  833. #: methods/ftp.cc:794
  834. msgid "Unable to send PORT command"
  835. msgstr "PORT komutu gönderilemedi"
  836. #: methods/ftp.cc:804
  837. #, c-format
  838. msgid "Unknown address family %u (AF_*)"
  839. msgstr "Bilinmeyen adres ailesi %u (AF_*)"
  840. #: methods/ftp.cc:813
  841. #, c-format
  842. msgid "EPRT failed, server said: %s"
  843. msgstr "EPRT başarısız, sunucunun iletisi: %s"
  844. #: methods/ftp.cc:833
  845. msgid "Data socket connect timed out"
  846. msgstr "Veri soketi bağlantısı zaman aşımına uğradı"
  847. #: methods/ftp.cc:840
  848. msgid "Unable to accept connection"
  849. msgstr "Bağlantı kabul edilemiyor"
  850. #: methods/ftp.cc:880 methods/server.cc:391 methods/rsh.cc:337
  851. msgid "Problem hashing file"
  852. msgstr "Dosya sağlaması yapılamadı"
  853. #: methods/ftp.cc:893
  854. #, c-format
  855. msgid "Unable to fetch file, server said '%s'"
  856. msgstr "Dosya alınamıyor, sunucunun iletisi: '%s'"
  857. #: methods/ftp.cc:908 methods/rsh.cc:356
  858. msgid "Data socket timed out"
  859. msgstr "Veri soketi zaman aşımına uğradı"
  860. #: methods/ftp.cc:945
  861. #, c-format
  862. msgid "Data transfer failed, server said '%s'"
  863. msgstr "Veri aktarımı başarısız, sunucunun iletisi: '%s'"
  864. #. Get the files information
  865. #: methods/ftp.cc:1028
  866. msgid "Query"
  867. msgstr "Sorgu"
  868. #: methods/ftp.cc:1142
  869. msgid "Unable to invoke "
  870. msgstr "Çağrılamıyor "
  871. #: methods/connect.cc:80
  872. #, c-format
  873. msgid "Connecting to %s (%s)"
  874. msgstr "Bağlanılıyor %s (%s)"
  875. #: methods/connect.cc:91
  876. #, c-format
  877. msgid "[IP: %s %s]"
  878. msgstr "[IP: %s %s]"
  879. #: methods/connect.cc:98
  880. #, c-format
  881. msgid "Could not create a socket for %s (f=%u t=%u p=%u)"
  882. msgstr "%s için bir soket oluşturulamadı (f=%u t=%u p=%u)"
  883. #: methods/connect.cc:104
  884. #, c-format
  885. msgid "Cannot initiate the connection to %s:%s (%s)."
  886. msgstr "%s:%s bağlantısı başlatılamıyor (%s)."
  887. #: methods/connect.cc:112
  888. #, c-format
  889. msgid "Could not connect to %s:%s (%s), connection timed out"
  890. msgstr "Adrese bağlanılamadı: %s:%s (%s), bağlantı zaman aşımına uğradı"
  891. #: methods/connect.cc:130
  892. #, c-format
  893. msgid "Could not connect to %s:%s (%s)."
  894. msgstr "Adrese bağlanılamadı: %s:%s (%s)."
  895. #. We say this mainly because the pause here is for the
  896. #. ssh connection that is still going
  897. #: methods/connect.cc:155 methods/rsh.cc:460
  898. #, c-format
  899. msgid "Connecting to %s"
  900. msgstr "Bağlanılıyor: %s"
  901. #: methods/connect.cc:181 methods/connect.cc:200
  902. #, c-format
  903. msgid "Could not resolve '%s'"
  904. msgstr "'%s' çözümlenemedi"
  905. #: methods/connect.cc:206
  906. #, c-format
  907. msgid "Temporary failure resolving '%s'"
  908. msgstr "'%s' çözümlenirken geçici bir sorunla karşılaşıldı"
  909. #: methods/connect.cc:210
  910. #, c-format
  911. msgid "System error resolving '%s:%s'"
  912. msgstr "'%s:%s' çözümlenirken bir sistem hatası oluştu"
  913. #: methods/connect.cc:212
  914. #, c-format
  915. msgid "Something wicked happened resolving '%s:%s' (%i - %s)"
  916. msgstr "'%s:%s' (%i - %s) adresi çözümlenirken bir şeyler kötü gitti"
  917. #: methods/connect.cc:259
  918. #, c-format
  919. msgid "Unable to connect to %s:%s:"
  920. msgstr "Bağlanılamadı %s:%s:"
  921. #: methods/gpgv.cc:205 methods/gpgv.cc:215
  922. msgid "At least one invalid signature was encountered."
  923. msgstr "En az bir geçersiz imza ile karşılaşıldı."
  924. #: methods/gpgv.cc:210
  925. msgid ""
  926. "Internal error: Good signature, but could not determine key fingerprint?!"
  927. msgstr "İç hata: İmza iyi, ancak anahtar parmak izi belirlenemedi?!"
  928. #: methods/gpgv.cc:217
  929. msgid "Could not execute 'apt-key' to verify signature (is gnupg installed?)"
  930. msgstr "İmza doğrulama için 'apt-key' çalıştırılamadı (gnupg kurulu mu?)"
  931. #. TRANSLATORS: %s is a single techy word like 'NODATA'
  932. #: methods/gpgv.cc:223 apt-pkg/acquire-item.cc:604
  933. #, c-format
  934. msgid ""
  935. "Clearsigned file isn't valid, got '%s' (does the network require "
  936. "authentication?)"
  937. msgstr ""
  938. "Temiz-imzalı dosya geçerli değil, '%s' hatası alındı (ağ kimlik doğrulama "
  939. "gerektiriyor mu?)"
  940. #: methods/gpgv.cc:227
  941. msgid "Unknown error executing apt-key"
  942. msgstr "apt-key çalıştırılırken bilinmeyen hata"
  943. #: methods/gpgv.cc:260 methods/gpgv.cc:267
  944. msgid "The following signatures were invalid:\n"
  945. msgstr "Aşağıdaki imzalar geçersiz:\n"
  946. #: methods/gpgv.cc:274
  947. msgid ""
  948. "The following signatures couldn't be verified because the public key is not "
  949. "available:\n"
  950. msgstr "Aşağıdaki imzalar doğrulanamadı, çünkü genel anahtar mevcut değil:\n"
  951. #: methods/gzip.cc:79
  952. msgid "Empty files can't be valid archives"
  953. msgstr "Boş dosyalar geçerli birer arşiv dosyası olamazlar"
  954. #: methods/http.cc:515
  955. msgid "Error writing to the file"
  956. msgstr "Dosyaya yazılamadı"
  957. #: methods/http.cc:529
  958. msgid "Error reading from server. Remote end closed connection"
  959. msgstr "Sunucundan okunurken hata. Uzak sonlu kapalı bağlantı"
  960. #: methods/http.cc:531
  961. msgid "Error reading from server"
  962. msgstr "Sunucundan okunurken hata"
  963. #: methods/http.cc:567
  964. msgid "Error writing to file"
  965. msgstr "Dosyaya yazılamadı"
  966. #: methods/http.cc:627
  967. msgid "Select failed"
  968. msgstr "Seçme başarısız"
  969. #: methods/http.cc:632
  970. msgid "Connection timed out"
  971. msgstr "Bağlantı zaman aşımına uğradı"
  972. #: methods/http.cc:655
  973. msgid "Error writing to output file"
  974. msgstr "Çıktı dosyasına yazılırken hata"
  975. #: methods/server.cc:52
  976. msgid "Waiting for headers"
  977. msgstr "Başlıklar bekleniyor"
  978. #: methods/server.cc:111
  979. msgid "Bad header line"
  980. msgstr "Kötü başlık satırı"
  981. #: methods/server.cc:136 methods/server.cc:143
  982. msgid "The HTTP server sent an invalid reply header"
  983. msgstr "HTTP sunucusu geçersiz bir cevap başlığı gönderdi"
  984. #: methods/server.cc:173
  985. msgid "The HTTP server sent an invalid Content-Length header"
  986. msgstr "HTTP sunucusu geçersiz bir Content-Length başlığı gönderdi"
  987. #: methods/server.cc:200
  988. msgid "The HTTP server sent an invalid Content-Range header"
  989. msgstr "HTTP sunucusu geçersiz bir Content-Range başlığı gönderdi"
  990. #: methods/server.cc:202
  991. msgid "This HTTP server has broken range support"
  992. msgstr "HTTP sunucusunun aralık desteği bozuk"
  993. #: methods/server.cc:229
  994. msgid "Unknown date format"
  995. msgstr "Bilinmeyen tarih biçimi"
  996. #: methods/server.cc:535
  997. msgid "Bad header data"
  998. msgstr "Kötü başlık verisi"
  999. #: methods/server.cc:552 methods/server.cc:646
  1000. msgid "Connection failed"
  1001. msgstr "Bağlantı başarısız"
  1002. #: methods/server.cc:618
  1003. #, c-format
  1004. msgid ""
  1005. "Automatically disabled %s due to incorrect response from server/proxy. (man "
  1006. "5 apt.conf)"
  1007. msgstr ""
  1008. #: methods/server.cc:741
  1009. msgid "Internal error"
  1010. msgstr "İç hata"
  1011. #: apt-private/private-cacheset.cc:38 apt-private/private-search.cc:65
  1012. msgid "Sorting"
  1013. msgstr "Sıralama"
  1014. #: apt-private/private-cacheset.cc:127
  1015. #, c-format
  1016. msgid "Note, selecting '%s' for task '%s'\n"
  1017. msgstr "Bilgi, '%2$s' görevi için '%1$s' seçiliyor\n"
  1018. #: apt-private/private-cacheset.cc:133
  1019. #, fuzzy, c-format
  1020. msgid "Note, selecting '%s' for glob '%s'\n"
  1021. msgstr "Bilgi, '%2$s' düzenli ifadesi için '%1$s' seçiliyor\n"
  1022. #: apt-private/private-cacheset.cc:139
  1023. #, c-format
  1024. msgid "Note, selecting '%s' for regex '%s'\n"
  1025. msgstr "Bilgi, '%2$s' düzenli ifadesi için '%1$s' seçiliyor\n"
  1026. #: apt-private/private-cacheset.cc:157
  1027. #, c-format
  1028. msgid "Package %s is a virtual package provided by:\n"
  1029. msgstr "%s paketi sanal bir pakettir, bu paketi sağlayan:\n"
  1030. #: apt-private/private-cacheset.cc:168
  1031. #, fuzzy
  1032. msgid " [Installed]"
  1033. msgstr "[kurulu]"
  1034. #: apt-private/private-cacheset.cc:177
  1035. msgid " [Not candidate version]"
  1036. msgstr " [Aday sürüm değil]"
  1037. #: apt-private/private-cacheset.cc:179
  1038. msgid "You should explicitly select one to install."
  1039. msgstr "Kurmak için adaylardan birini açıkça seçmelisiniz."
  1040. #: apt-private/private-cacheset.cc:182
  1041. #, c-format
  1042. msgid ""
  1043. "Package %s is not available, but is referred to by another package.\n"
  1044. "This may mean that the package is missing, has been obsoleted, or\n"
  1045. "is only available from another source\n"
  1046. msgstr ""
  1047. "%s paketi mevcut değil, ancak başka paket içerisinden işaret edilmiş.\n"
  1048. "Bu durum bu paketin kayıp, eskidiği için bırakılmış, ya da başka bir\n"
  1049. "yazılım kaynağında bulunduğu anlamına gelebilir.\n"
  1050. #: apt-private/private-cacheset.cc:200
  1051. msgid "However the following packages replace it:"
  1052. msgstr "Yine de aşağıdaki paketler onun yerine geçecek:"
  1053. #: apt-private/private-cacheset.cc:213
  1054. #, c-format
  1055. msgid "Package '%s' has no installation candidate"
  1056. msgstr "'%s' paketi için kurulum adayı yok"
  1057. #: apt-private/private-cacheset.cc:226
  1058. #, c-format
  1059. msgid "Virtual packages like '%s' can't be removed\n"
  1060. msgstr "'%s' gibi sanal paketler kaldırılamaz\n"
  1061. #. TRANSLATORS: Note, this is not an interactive question
  1062. #: apt-private/private-cacheset.cc:238 apt-private/private-install.cc:915
  1063. #, c-format
  1064. msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n"
  1065. msgstr ""
  1066. "'%s' kurulu değildi, dolayısıyla kaldırılmadı. Bunu mu demek istediniz: "
  1067. "'%s'?\n"
  1068. #: apt-private/private-cacheset.cc:244 apt-private/private-install.cc:921
  1069. #, c-format
  1070. msgid "Package '%s' is not installed, so not removed\n"
  1071. msgstr "'%s' kurulu değildi, dolayısıyla kaldırılmadı\n"
  1072. #: apt-private/private-cacheset.cc:289
  1073. #, c-format
  1074. msgid "Note, selecting '%s' instead of '%s'\n"
  1075. msgstr "Bilgi, '%2$s' yerine '%1$s' seçiliyor\n"
  1076. #: apt-private/private-install.cc:87
  1077. msgid "Internal error, InstallPackages was called with broken packages!"
  1078. msgstr "İç hata, InstallPackages bozuk paketler ile çağrıldı!"
  1079. #: apt-private/private-install.cc:96
  1080. msgid "Packages need to be removed but remove is disabled."
  1081. msgstr ""
  1082. "Paketlerin kaldırılması gerekiyor ancak kaldırma işlemi devre dışı "
  1083. "bırakılmış."
  1084. #: apt-private/private-install.cc:103 apt-private/private-download.cc:118
  1085. msgid ""
  1086. "--force-yes is deprecated, use one of the options starting with --allow "
  1087. "instead."
  1088. msgstr ""
  1089. #: apt-private/private-install.cc:108
  1090. #, fuzzy
  1091. msgid ""
  1092. "Essential packages were removed and -y was used without --allow-remove-"
  1093. "essential."
  1094. msgstr "Bazı sorunlar çıktı ve -y seçeneği, --force-yes olmadan kullanıldı"
  1095. #: apt-private/private-install.cc:110
  1096. #, fuzzy
  1097. msgid "Packages were downgraded and -y was used without --allow-downgrades."
  1098. msgstr "Bazı sorunlar çıktı ve -y seçeneği, --force-yes olmadan kullanıldı"
  1099. #: apt-private/private-install.cc:112
  1100. msgid ""
  1101. "Held packages were changed and -y was used without --allow-change-held-"
  1102. "packages."
  1103. msgstr ""
  1104. #: apt-private/private-install.cc:128
  1105. msgid "Internal error, Ordering didn't finish"
  1106. msgstr "İç hata, Sıralama tamamlanamadı"
  1107. #: apt-private/private-install.cc:166
  1108. msgid "How odd... The sizes didn't match, email apt@packages.debian.org"
  1109. msgstr ""
  1110. "Ne kadar ilginç... Boyutlar eşleşmedi, apt@packages.debian.org adresine "
  1111. "eposta atın"
  1112. #. TRANSLATOR: The required space between number and unit is already included
  1113. #. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
  1114. #: apt-private/private-install.cc:173
  1115. #, c-format
  1116. msgid "Need to get %sB/%sB of archives.\n"
  1117. msgstr "%sB/%sB arşiv dosyası indirilecek.\n"
  1118. #. TRANSLATOR: The required space between number and unit is already included
  1119. #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
  1120. #: apt-private/private-install.cc:178
  1121. #, c-format
  1122. msgid "Need to get %sB of archives.\n"
  1123. msgstr "%sB arşiv dosyası indirilecek.\n"
  1124. #. TRANSLATOR: The required space between number and unit is already included
  1125. #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
  1126. #: apt-private/private-install.cc:185
  1127. #, c-format
  1128. msgid "After this operation, %sB of additional disk space will be used.\n"
  1129. msgstr "Bu işlem tamamlandıktan sonra %sB ek disk alanı kullanılacak.\n"
  1130. #. TRANSLATOR: The required space between number and unit is already included
  1131. #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
  1132. #: apt-private/private-install.cc:190
  1133. #, c-format
  1134. msgid "After this operation, %sB disk space will be freed.\n"
  1135. msgstr "Bu işlem tamamlandıktan sonra %sB disk alanı boşalacak.\n"
  1136. #: apt-private/private-install.cc:202 apt-private/private-install.cc:224
  1137. msgid "Trivial Only specified but this is not a trivial operation."
  1138. msgstr "Sadece Önemsiz seçeneği ayarlandı, ama bu önemsiz bir işlem değil."
  1139. #. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be
  1140. #. careful with hard to type or special characters (like non-breaking spaces)
  1141. #: apt-private/private-install.cc:206
  1142. msgid "Yes, do as I say!"
  1143. msgstr "Evet, söylediğim şekilde yap!"
  1144. #: apt-private/private-install.cc:208
  1145. #, c-format
  1146. msgid ""
  1147. "You are about to do something potentially harmful.\n"
  1148. "To continue type in the phrase '%s'\n"
  1149. " ?] "
  1150. msgstr ""
  1151. "Tehlikeli bir iş yapmak üzeresiniz.\n"
  1152. "Devam etmek için '%s' ifadesini yazınız\n"
  1153. " ?] "
  1154. #: apt-private/private-install.cc:214 apt-private/private-install.cc:232
  1155. msgid "Abort."
  1156. msgstr "Vazgeç."
  1157. #: apt-private/private-install.cc:229
  1158. msgid "Do you want to continue?"
  1159. msgstr "Devam etmek istiyor musunuz?"
  1160. #: apt-private/private-install.cc:299
  1161. msgid "Some files failed to download"
  1162. msgstr "Bazı dosyalar indirilemedi"
  1163. #: apt-private/private-install.cc:306
  1164. msgid ""
  1165. "Unable to fetch some archives, maybe run apt-get update or try with --fix-"
  1166. "missing?"
  1167. msgstr ""
  1168. "Bazı arşivler alınamıyor, apt-get update'i çalıştırmayı ya da --fix-missing "
  1169. "seçeneğini ekleyerek düzeltmeyi deneyin."
  1170. #: apt-private/private-install.cc:310
  1171. msgid "--fix-missing and media swapping is not currently supported"
  1172. msgstr "--fix-missing seçeneği ve ortam takası şu an için desteklenmiyor"
  1173. #: apt-private/private-install.cc:315
  1174. msgid "Unable to correct missing packages."
  1175. msgstr "Eksik paketler düzeltilemedi."
  1176. #: apt-private/private-install.cc:316
  1177. msgid "Aborting install."
  1178. msgstr "Kurulum iptal ediliyor."
  1179. #: apt-private/private-install.cc:341
  1180. msgid ""
  1181. "The following package disappeared from your system as\n"
  1182. "all files have been overwritten by other packages:"
  1183. msgid_plural ""
  1184. "The following packages disappeared from your system as\n"
  1185. "all files have been overwritten by other packages:"
  1186. msgstr[0] ""
  1187. "Tüm dosyalarının üzerine yazıldığı için aşağıdaki paket\n"
  1188. "sisteminizden kayboldu:"
  1189. msgstr[1] ""
  1190. "Tüm dosyalarının üzerine yazıldığı için aşağıdaki paketler\n"
  1191. "sisteminizden kayboldu:"
  1192. #: apt-private/private-install.cc:348
  1193. msgid "Note: This is done automatically and on purpose by dpkg."
  1194. msgstr "Not: Bu eylem dpkg tarafından otomatik ve kasıtlı olarak yapılmıştır."
  1195. #: apt-private/private-install.cc:370
  1196. msgid "We are not supposed to delete stuff, can't start AutoRemover"
  1197. msgstr "Nesneleri silmemiz beklenemez, AutoRemover çalıştırılamıyor"
  1198. #: apt-private/private-install.cc:463
  1199. msgid ""
  1200. "Hmm, seems like the AutoRemover destroyed something which really\n"
  1201. "shouldn't happen. Please file a bug report against apt."
  1202. msgstr ""
  1203. "AutoRemover yapmaması gereken bir yıkıma\n"
  1204. "sebep oldu. Lütfen apt hakkında bir hata raporu doldurun."
  1205. #.
  1206. #. if (Packages == 1)
  1207. #. {
  1208. #. c1out << std::endl;
  1209. #. c1out <<
  1210. #. _("Since you only requested a single operation it is extremely likely that\n"
  1211. #. "the package is simply not installable and a bug report against\n"
  1212. #. "that package should be filed.") << std::endl;
  1213. #. }
  1214. #.
  1215. #: apt-private/private-install.cc:466 apt-private/private-install.cc:622
  1216. msgid "The following information may help to resolve the situation:"
  1217. msgstr "Aşağıdaki bilgiler durumu çözmenize yardımcı olabilir:"
  1218. #: apt-private/private-install.cc:470
  1219. msgid "Internal Error, AutoRemover broke stuff"
  1220. msgstr "İç hata, AutoRemover bazı şeyleri bozdu"
  1221. #: apt-private/private-install.cc:479
  1222. msgid ""
  1223. "The following package was automatically installed and is no longer required:"
  1224. msgid_plural ""
  1225. "The following packages were automatically installed and are no longer "
  1226. "required:"
  1227. msgstr[0] ""
  1228. "Aşağıdaki paket otomatik olarak kurulmuş ve artık bu pakete gerek duyulmuyor:"
  1229. msgstr[1] ""
  1230. "Aşağıdaki paketler otomatik olarak kurulmuş ve artık bu paketlere gerek "
  1231. "duyulmuyor:"
  1232. #: apt-private/private-install.cc:486
  1233. #, c-format
  1234. msgid "%lu package was automatically installed and is no longer required.\n"
  1235. msgid_plural ""
  1236. "%lu packages were automatically installed and are no longer required.\n"
  1237. msgstr[0] "%lu paket otomatik olarak kurulmuş ve artık gerekli değil.\n"
  1238. msgstr[1] "%lu paket otomatik olarak kurulmuş ve artık gerekli değil.\n"
  1239. #: apt-private/private-install.cc:488
  1240. msgid "Use 'apt-get autoremove' to remove it."
  1241. msgid_plural "Use 'apt-get autoremove' to remove them."
  1242. msgstr[0] "Bu paketi kaldırmak için 'apt-get autoremove' komutunu kullanın."
  1243. msgstr[1] "Bu paketleri kaldırmak için 'apt-get autoremove' komutunu kullanın."
  1244. #: apt-private/private-install.cc:582
  1245. msgid "You might want to run 'apt-get -f install' to correct these:"
  1246. msgstr ""
  1247. "Bunları düzeltmek için 'apt-get -f install' komutunu çalıştırmanız "
  1248. "gerekebilir:"
  1249. #: apt-private/private-install.cc:584
  1250. msgid ""
  1251. "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
  1252. "solution)."
  1253. msgstr ""
  1254. "Karşılanmamış bağımlılıklar. 'apt-get -f install' komutunu paket seçeneği "
  1255. "vermeden deneyin (ya da bir çözüm belirtin)."
  1256. #: apt-private/private-install.cc:607
  1257. msgid ""
  1258. "Some packages could not be installed. This may mean that you have\n"
  1259. "requested an impossible situation or if you are using the unstable\n"
  1260. "distribution that some required packages have not yet been created\n"
  1261. "or been moved out of Incoming."
  1262. msgstr ""
  1263. "Bazı paketler kurulamadı. Bu durum, olanaksız bir durum istemiş\n"
  1264. "olduğunuzu ya da kararsız (unstable) dağıtımı kullandığınızı ve\n"
  1265. "bazı paketlerin henüz oluşturulamamış ya da oluşturulmakta\n"
  1266. "olduğunu gösterir."
  1267. #: apt-private/private-install.cc:628
  1268. msgid "Broken packages"
  1269. msgstr "Bozuk paketler"
  1270. #: apt-private/private-install.cc:685
  1271. #, fuzzy
  1272. msgid "The following additional packages will be installed:"
  1273. msgstr "Aşağıdaki ek paketler de kurulacak:"
  1274. #: apt-private/private-install.cc:774
  1275. msgid "Suggested packages:"
  1276. msgstr "Önerilen paketler:"
  1277. #: apt-private/private-install.cc:776
  1278. msgid "Recommended packages:"
  1279. msgstr "Tavsiye edilen paketler:"
  1280. #: apt-private/private-install.cc:798
  1281. #, c-format
  1282. msgid "Skipping %s, it is already installed and upgrade is not set.\n"
  1283. msgstr "%s atlanıyor, bu paket zaten kurulu ve yükseltme seçilmemiş.\n"
  1284. #: apt-private/private-install.cc:802
  1285. #, c-format
  1286. msgid "Skipping %s, it is not installed and only upgrades are requested.\n"
  1287. msgstr ""
  1288. "%s atlanıyor, bu paket kurulu değil ve sadece yükseltmeler isteniyor.\n"
  1289. #: apt-private/private-install.cc:814
  1290. #, c-format
  1291. msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
  1292. msgstr ""
  1293. "%s paketinin yeniden kurulumu mümkün değil, çünkü paket indirilemedi.\n"
  1294. #. TRANSLATORS: First string is package name, second is version
  1295. #: apt-private/private-install.cc:820
  1296. #, fuzzy, c-format
  1297. msgid "%s is already the newest version (%s).\n"
  1298. msgstr "%s zaten en yeni sürümde.\n"
  1299. #: apt-private/private-install.cc:868
  1300. #, c-format
  1301. msgid "Selected version '%s' (%s) for '%s'\n"
  1302. msgstr "'%3$s' paketinin '%1$s' (%2$s) sürümü seçildi\n"
  1303. #: apt-private/private-install.cc:873
  1304. #, c-format
  1305. msgid "Selected version '%s' (%s) for '%s' because of '%s'\n"
  1306. msgstr "'%4$s' nedeniyle '%3$s' paketinin '%1$s' (%2$s) sürümü seçildi\n"
  1307. #: apt-private/private-list.cc:121
  1308. msgid "Listing"
  1309. msgstr "Listeleme"
  1310. #: apt-private/private-list.cc:151
  1311. #, c-format
  1312. msgid "There is %i additional version. Please use the '-a' switch to see it"
  1313. msgid_plural ""
  1314. "There are %i additional versions. Please use the '-a' switch to see them."
  1315. msgstr[0] "Fazladan %i sürüm daha var. Görmek için '-a' anahtarını kullanın."
  1316. msgstr[1] ""
  1317. "Fazladan %i sürüm daha var. Bu sürümleri görmek için '-a' anahtarını "
  1318. "kullanın."
  1319. #: apt-private/private-cachefile.cc:96
  1320. msgid "Correcting dependencies..."
  1321. msgstr "Bağımlılıklar düzeltiliyor..."
  1322. #: apt-private/private-cachefile.cc:99
  1323. msgid " failed."
  1324. msgstr " başarısız oldu."
  1325. #: apt-private/private-cachefile.cc:102
  1326. msgid "Unable to correct dependencies"
  1327. msgstr "Bağımlılıklar düzeltilemedi"
  1328. #: apt-private/private-cachefile.cc:105
  1329. msgid "Unable to minimize the upgrade set"
  1330. msgstr "Yükseltme kümesi küçültülemiyor"
  1331. #: apt-private/private-cachefile.cc:107
  1332. msgid " Done"
  1333. msgstr " Tamamlandı"
  1334. #: apt-private/private-cachefile.cc:111
  1335. msgid "You might want to run 'apt-get -f install' to correct these."
  1336. msgstr ""
  1337. "Bu sorunları düzeltmek için 'apt-get -f install' komutunu çalıştırmanız "
  1338. "gerekebilir."
  1339. #: apt-private/private-cachefile.cc:114
  1340. msgid "Unmet dependencies. Try using -f."
  1341. msgstr "Karşılanmayan bağımlılıklar. -f kullanmayı deneyin."
  1342. #: apt-private/private-output.cc:105 apt-private/private-show.cc:84
  1343. #: apt-private/private-show.cc:89
  1344. msgid "unknown"
  1345. msgstr "bilinmeyen"
  1346. #: apt-private/private-output.cc:272
  1347. #, c-format
  1348. msgid "[installed,upgradable to: %s]"
  1349. msgstr "[kurulu,yükseltilebilir: %s]"
  1350. #: apt-private/private-output.cc:275
  1351. msgid "[installed,local]"
  1352. msgstr "[kurulu,yerel]"
  1353. #: apt-private/private-output.cc:277
  1354. msgid "[installed,auto-removable]"
  1355. msgstr "[kurulu,otomatik-kaldırılabilir]"
  1356. #: apt-private/private-output.cc:279
  1357. msgid "[installed,automatic]"
  1358. msgstr "[kurulu,otomatik]"
  1359. #: apt-private/private-output.cc:281
  1360. msgid "[installed]"
  1361. msgstr "[kurulu]"
  1362. #: apt-private/private-output.cc:284
  1363. #, c-format
  1364. msgid "[upgradable from: %s]"
  1365. msgstr "[şundan yükseltilebilir: %s]"
  1366. #: apt-private/private-output.cc:288
  1367. msgid "[residual-config]"
  1368. msgstr "[artık-yapılandırma]"
  1369. #: apt-private/private-output.cc:402
  1370. #, c-format
  1371. msgid "but %s is installed"
  1372. msgstr "ama %s kurulu"
  1373. #: apt-private/private-output.cc:404
  1374. #, c-format
  1375. msgid "but %s is to be installed"
  1376. msgstr "ama %s kurulacak"
  1377. #: apt-private/private-output.cc:411
  1378. msgid "but it is not installable"
  1379. msgstr "ama kurulabilir değil"
  1380. #: apt-private/private-output.cc:413
  1381. msgid "but it is a virtual package"
  1382. msgstr "ama o bir sanal paket"
  1383. #: apt-private/private-output.cc:416
  1384. msgid "but it is not installed"
  1385. msgstr "ama kurulu değil"
  1386. #: apt-private/private-output.cc:416
  1387. msgid "but it is not going to be installed"
  1388. msgstr "ama kurulmayacak"
  1389. #: apt-private/private-output.cc:421
  1390. msgid " or"
  1391. msgstr " ya da"
  1392. #: apt-private/private-output.cc:435 apt-private/private-output.cc:445
  1393. msgid "The following packages have unmet dependencies:"
  1394. msgstr "Aşağıdaki paketler karşılanmamış bağımlılıklara sahip:"
  1395. #: apt-private/private-output.cc:455
  1396. msgid "The following NEW packages will be installed:"
  1397. msgstr "Aşağıdaki YENİ paketler kurulacak:"
  1398. #: apt-private/private-output.cc:465
  1399. msgid "The following packages will be REMOVED:"
  1400. msgstr "Aşağıdaki paketler KALDIRILACAK:"
  1401. #: apt-private/private-output.cc:481
  1402. msgid "The following packages have been kept back:"
  1403. msgstr "Aşağıdaki paketlerin mevcut durumları korunacak:"
  1404. #: apt-private/private-output.cc:497
  1405. msgid "The following packages will be upgraded:"
  1406. msgstr "Aşağıdaki paketler yükseltilecek:"
  1407. #: apt-private/private-output.cc:512
  1408. msgid "The following packages will be DOWNGRADED:"
  1409. msgstr "Aşağıdaki paketlerin SÜRÜMLERİ DÜŞÜRÜLECEK:"
  1410. #: apt-private/private-output.cc:525
  1411. msgid "The following held packages will be changed:"
  1412. msgstr "Aşağıdaki eski sürümlerinde tutulan paketler değiştirilecek:"
  1413. #: apt-private/private-output.cc:552
  1414. #, c-format
  1415. msgid "%s (due to %s)"
  1416. msgstr "%s (%s nedeniyle)"
  1417. #: apt-private/private-output.cc:602
  1418. msgid ""
  1419. "WARNING: The following essential packages will be removed.\n"
  1420. "This should NOT be done unless you know exactly what you are doing!"
  1421. msgstr ""
  1422. "UYARI: Aşağıdaki temel paketler kaldırılacak.\n"
  1423. "Bu işlem ne yaptığınızı tam olarak bilmediğiniz takdirde YAPILMAMALIDIR!"
  1424. #: apt-private/private-output.cc:633
  1425. #, c-format
  1426. msgid "%lu upgraded, %lu newly installed, "
  1427. msgstr "%lu paket yükseltilecek, %lu yeni paket kurulacak, "
  1428. #: apt-private/private-output.cc:637
  1429. #, c-format
  1430. msgid "%lu reinstalled, "
  1431. msgstr "%lu paket yeniden kurulacak, "
  1432. #: apt-private/private-output.cc:639
  1433. #, c-format
  1434. msgid "%lu downgraded, "
  1435. msgstr "%lu paketin sürümü düşürülecek, "
  1436. #: apt-private/private-output.cc:641
  1437. #, c-format
  1438. msgid "%lu to remove and %lu not upgraded.\n"
  1439. msgstr "%lu paket kaldırılacak ve %lu paket yükseltilmeyecek.\n"
  1440. #: apt-private/private-output.cc:645
  1441. #, c-format
  1442. msgid "%lu not fully installed or removed.\n"
  1443. msgstr "%lu paket tam olarak kurulmayacak ya da kaldırılmayacak.\n"
  1444. #. TRANSLATOR: Yes/No question help-text: defaulting to Y[es]
  1445. #. e.g. "Do you want to continue? [Y/n] "
  1446. #. The user has to answer with an input matching the
  1447. #. YESEXPR/NOEXPR defined in your l10n.
  1448. #: apt-private/private-output.cc:667
  1449. msgid "[Y/n]"
  1450. msgstr "[E/h]"
  1451. #. TRANSLATOR: Yes/No question help-text: defaulting to N[o]
  1452. #. e.g. "Should this file be removed? [y/N] "
  1453. #. The user has to answer with an input matching the
  1454. #. YESEXPR/NOEXPR defined in your l10n.
  1455. #: apt-private/private-output.cc:673
  1456. msgid "[y/N]"
  1457. msgstr "[e/H]"
  1458. #. TRANSLATOR: "Yes" answer printed for a yes/no question if --assume-yes is set
  1459. #: apt-private/private-output.cc:684
  1460. msgid "Y"
  1461. msgstr "E"
  1462. #. TRANSLATOR: "No" answer printed for a yes/no question if --assume-no is set
  1463. #: apt-private/private-output.cc:690
  1464. msgid "N"
  1465. msgstr "H"
  1466. #: apt-private/private-output.cc:712 apt-pkg/cachefilter.cc:40
  1467. #, c-format
  1468. msgid "Regex compilation error - %s"
  1469. msgstr "Regex derleme hatası - %s"
  1470. #: apt-private/private-update.cc:31
  1471. msgid "The update command takes no arguments"
  1472. msgstr "'update' komutu argüman almaz"
  1473. #: apt-private/private-update.cc:96
  1474. #, c-format
  1475. msgid "%i package can be upgraded. Run 'apt list --upgradable' to see it.\n"
  1476. msgid_plural ""
  1477. "%i packages can be upgraded. Run 'apt list --upgradable' to see them.\n"
  1478. msgstr[0] ""
  1479. "%i paket yükseltilebilir. Bu paketi görmek için 'apt list --upgradable' "
  1480. "komutunu çalıştırın.\n"
  1481. msgstr[1] ""
  1482. "%i paket yükseltilebilir. Bu paketleri görmek için 'apt list --upgradable' "
  1483. "komutunu çalıştırın.\n"
  1484. #: apt-private/private-update.cc:100
  1485. msgid "All packages are up to date."
  1486. msgstr "Tüm paketler güncel."
  1487. #: apt-private/private-show.cc:158
  1488. #, c-format
  1489. msgid "There is %i additional record. Please use the '-a' switch to see it"
  1490. msgid_plural ""
  1491. "There are %i additional records. Please use the '-a' switch to see them."
  1492. msgstr[0] ""
  1493. "Fazladan %i kayıt daha var. Görmek için '-a' anahtarını kullanabilirsiniz."
  1494. msgstr[1] ""
  1495. "Fazladan %i kayıt daha var. Bu kayıtları görmek için '-a' anahtarını "
  1496. "kullanabilirsiniz."
  1497. #: apt-private/private-show.cc:165
  1498. msgid "not a real package (virtual)"
  1499. msgstr "gerçek bir paket değil (sanal)"
  1500. #: apt-private/private-main.cc:34
  1501. msgid ""
  1502. "NOTE: This is only a simulation!\n"
  1503. " apt-get needs root privileges for real execution.\n"
  1504. " Keep also in mind that locking is deactivated,\n"
  1505. " so don't depend on the relevance to the real current situation!"
  1506. msgstr ""
  1507. "NOT: Bu sadece bir benzetimdir!\n"
  1508. " apt-get'i gerçekten çalıştırmak için root haklarına ihtiyaç vardır.\n"
  1509. " Unutmayın ki benzetim kipinde kilitleme yapılmaz, bu nedenle\n"
  1510. " bu benzetimin gerçekteki durumla birebir aynı olacağına güvenmeyin!"
  1511. #: apt-private/private-download.cc:62
  1512. #, c-format
  1513. msgid ""
  1514. "Can't drop privileges for downloading as file '%s' couldn't be accessed by "
  1515. "user '%s'."
  1516. msgstr ""
  1517. #: apt-private/private-download.cc:94
  1518. msgid "WARNING: The following packages cannot be authenticated!"
  1519. msgstr "UYARI: Aşağıdaki paketler doğrulanamıyor!"
  1520. #: apt-private/private-download.cc:101
  1521. msgid "Authentication warning overridden.\n"
  1522. msgstr "Kimlik denetimi uyarısı görmezden geliniyor.\n"
  1523. #: apt-private/private-download.cc:106 apt-private/private-download.cc:113
  1524. msgid "Some packages could not be authenticated"
  1525. msgstr "Bazı paketlerin kimlik denetimi yapılamadı"
  1526. #: apt-private/private-download.cc:111
  1527. msgid "Install these packages without verification?"
  1528. msgstr "Paketler doğrulanmadan kurulsun mu?"
  1529. #: apt-private/private-download.cc:122
  1530. #, fuzzy
  1531. msgid ""
  1532. "There were unauthenticated packages and -y was used without --allow-"
  1533. "unauthenticated"
  1534. msgstr "Bazı sorunlar çıktı ve -y seçeneği, --force-yes olmadan kullanıldı"
  1535. #: apt-private/private-download.cc:154
  1536. #, c-format
  1537. msgid "Failed to fetch %s %s\n"
  1538. msgstr "%s ağdan alınamadı. %s\n"
  1539. #: apt-private/private-download.cc:176 apt-private/private-download.cc:179
  1540. #, c-format
  1541. msgid "Couldn't determine free space in %s"
  1542. msgstr "%s içindeki boş alan miktarı belirlenemedi"
  1543. #: apt-private/private-download.cc:193
  1544. #, c-format
  1545. msgid "You don't have enough free space in %s."
  1546. msgstr "%s içinde yeterli boş alanınız yok."
  1547. #: apt-private/private-sources.cc:58
  1548. #, c-format
  1549. msgid "Failed to parse %s. Edit again? "
  1550. msgstr "%s ayrıştırılamadı. Tekrar düzenlemek ister misiniz? "
  1551. #: apt-private/private-sources.cc:70
  1552. #, c-format
  1553. msgid "Your '%s' file changed, please run 'apt-get update'."
  1554. msgstr "'%s' dosyası değişti, lütfen 'apt-get update' komutunu çalıştırın."
  1555. #: apt-private/private-search.cc:69
  1556. msgid "Full Text Search"
  1557. msgstr "Tam Metin Arama"
  1558. #. TRANSLATOR: Very short word to be displayed before unchanged files in 'apt-get update'
  1559. #: apt-private/acqprogress.cc:74
  1560. #, c-format
  1561. msgid "Hit:%lu %s"
  1562. msgstr ""
  1563. #. TRANSLATOR: Very short word to be displayed for files processed in 'apt-get update'
  1564. #. Potentially replaced later by "Hit:", "Ign:" or "Err:" if something (bad) happens
  1565. #: apt-private/acqprogress.cc:96
  1566. #, c-format
  1567. msgid "Get:%lu %s"
  1568. msgstr ""
  1569. #. TRANSLATOR: Very short word to be displayed for files in 'apt-get update'
  1570. #. which failed to download, but the error is ignored (compare "Err:")
  1571. #: apt-private/acqprogress.cc:126
  1572. #, c-format
  1573. msgid "Ign:%lu %s"
  1574. msgstr ""
  1575. #. TRANSLATOR: Very short word to be displayed for files in 'apt-get update'
  1576. #. which failed to download and the error is critical (compare "Ign:")
  1577. #: apt-private/acqprogress.cc:136
  1578. #, c-format
  1579. msgid "Err:%lu %s"
  1580. msgstr ""
  1581. #: apt-private/acqprogress.cc:159
  1582. #, c-format
  1583. msgid "Fetched %sB in %s (%sB/s)\n"
  1584. msgstr "%2$s'de %1$sB alındı (%3$sB/s)\n"
  1585. #: apt-private/acqprogress.cc:229
  1586. msgid " [Working]"
  1587. msgstr " [Çalışıyor]"
  1588. #: apt-private/acqprogress.cc:297
  1589. #, fuzzy, c-format
  1590. msgid ""
  1591. "Media change: please insert the disc labeled\n"
  1592. " '%s'\n"
  1593. "in the drive '%s' and press [Enter]\n"
  1594. msgstr ""
  1595. "Ortam değişimi: Lütfen '%2$s' sürücüsüne\n"
  1596. " '%1$s'\n"
  1597. "olarak etiketlenmiş diski takın ve enter tuşuna basın\n"
  1598. #. Only warn if there are no sources.list.d.
  1599. #. Only warn if there is no sources.list file.
  1600. #: methods/mirror.cc:95 apt-pkg/init.cc:133 apt-pkg/init.cc:141
  1601. #: apt-pkg/clean.cc:43 apt-pkg/acquire.cc:557 apt-pkg/policy.cc:412
  1602. #: apt-pkg/sourcelist.cc:306 apt-pkg/sourcelist.cc:312
  1603. #: apt-pkg/contrib/fileutl.cc:375 apt-pkg/contrib/fileutl.cc:488
  1604. #: apt-pkg/contrib/cdromutl.cc:205 apt-inst/extract.cc:471
  1605. #, c-format
  1606. msgid "Unable to read %s"
  1607. msgstr "%s okunamadı"
  1608. #: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/clean.cc:49
  1609. #: apt-pkg/clean.cc:67 apt-pkg/clean.cc:130 apt-pkg/acquire.cc:563
  1610. #: apt-pkg/acquire.cc:588 apt-pkg/contrib/cdromutl.cc:201
  1611. #: apt-pkg/contrib/cdromutl.cc:235
  1612. #, c-format
  1613. msgid "Unable to change to %s"
  1614. msgstr "%s olarak değiştirilemedi"
  1615. #. FIXME: fallback to a default mirror here instead
  1616. #. and provide a config option to define that default
  1617. #: methods/mirror.cc:280
  1618. #, c-format
  1619. msgid "No mirror file '%s' found "
  1620. msgstr "'%s' yansı dosyası bulunamadı "
  1621. #. FIXME: fallback to a default mirror here instead
  1622. #. and provide a config option to define that default
  1623. #: methods/mirror.cc:287
  1624. #, c-format
  1625. msgid "Can not read mirror file '%s'"
  1626. msgstr "Yansı dosyası %s okunamıyor"
  1627. #: methods/mirror.cc:315
  1628. #, c-format
  1629. msgid "No entry found in mirror file '%s'"
  1630. msgstr "'%s' yansı dosyasında hiç girdi bulunmuyor"
  1631. #: methods/mirror.cc:445
  1632. #, c-format
  1633. msgid "[Mirror: %s]"
  1634. msgstr "[Yansı: %s]"
  1635. #: methods/rsh.cc:109 ftparchive/multicompress.cc:170
  1636. msgid "Failed to create IPC pipe to subprocess"
  1637. msgstr "Altsürece IPC borusu oluşturulamadı"
  1638. #: methods/rsh.cc:364
  1639. msgid "Connection closed prematurely"
  1640. msgstr "Bağlantı vaktinden önce kapandı"
  1641. #: dselect/install:33
  1642. msgid "Bad default setting!"
  1643. msgstr "Geçersiz öntanımlı ayar!"
  1644. #: dselect/install:52 dselect/install:84 dselect/install:88 dselect/install:95
  1645. #: dselect/install:106 dselect/update:45
  1646. #, fuzzy
  1647. msgid "Press [Enter] to continue."
  1648. msgstr "Devam etmek için giriş (enter) tuşuna basın."
  1649. #: dselect/install:92
  1650. msgid "Do you want to erase any previously downloaded .deb files?"
  1651. msgstr "Daha önceden indirilmiş .deb dosyalarını silmek istiyor musunuz?"
  1652. #: dselect/install:102
  1653. msgid "Some errors occurred while unpacking. Packages that were installed"
  1654. msgstr ""
  1655. "Paket açılırken bazı sorunlar çıktı. Kurulan paketler yapılandırılacak."
  1656. #: dselect/install:103
  1657. msgid "will be configured. This may result in duplicate errors"
  1658. msgstr "Bu durum, çift hata iletilerine ya da eksik bağımlılıkların neden"
  1659. #: dselect/install:104
  1660. msgid "or errors caused by missing dependencies. This is OK, only the errors"
  1661. msgstr ""
  1662. "olduğu hatalara yol açabilir. Bu durum bir sorun teşkil etmez, sadece bu "
  1663. "iletinin"
  1664. #: dselect/install:105
  1665. msgid ""
  1666. "above this message are important. Please fix them and run [I]nstall again"
  1667. msgstr ""
  1668. "üstündeki hatalar önemlidir. Lütfen bunları onarın ve [I]nstall komutunu "
  1669. "yeniden çalıştırın"
  1670. #: dselect/update:30
  1671. msgid "Merging available information"
  1672. msgstr "Kullanılabilir bilgiler birleştiriliyor"
  1673. #: apt-pkg/install-progress.cc:58
  1674. #, c-format
  1675. msgid "Progress: [%3i%%]"
  1676. msgstr "Durum: [%3i%%]"
  1677. #: apt-pkg/install-progress.cc:93 apt-pkg/install-progress.cc:177
  1678. msgid "Running dpkg"
  1679. msgstr "dpkg çalıştırılıyor"
  1680. #: apt-pkg/init.cc:176
  1681. #, c-format
  1682. msgid "Packaging system '%s' is not supported"
  1683. msgstr "Paketleme sistemi '%s' desteklenmiyor"
  1684. #: apt-pkg/init.cc:192
  1685. msgid "Unable to determine a suitable packaging system type"
  1686. msgstr "Uygun bir paketleme sistemi türü bulunamıyor"
  1687. #: apt-pkg/indexcopy.cc:228 apt-pkg/indexcopy.cc:753
  1688. #, c-format
  1689. msgid "Wrote %i records.\n"
  1690. msgstr "%i kayıt yazıldı.\n"
  1691. #: apt-pkg/indexcopy.cc:230 apt-pkg/indexcopy.cc:755
  1692. #, c-format
  1693. msgid "Wrote %i records with %i missing files.\n"
  1694. msgstr "%2$i eksik dosyayla %1$i kayıt yazıldı.\n"
  1695. #: apt-pkg/indexcopy.cc:233 apt-pkg/indexcopy.cc:758
  1696. #, c-format
  1697. msgid "Wrote %i records with %i mismatched files\n"
  1698. msgstr "%2$i eşleşmeyen dosyayla %1$i kayıt yazıldı\n"
  1699. #: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:761
  1700. #, c-format
  1701. msgid "Wrote %i records with %i missing files and %i mismatched files\n"
  1702. msgstr "%2$i eksik dosya ve %3$i eşleşmeyen dosyayla %1$i kayıt yazıldı\n"
  1703. #: apt-pkg/indexcopy.cc:498
  1704. #, c-format
  1705. msgid "Can't find authentication record for: %s"
  1706. msgstr "%s için kimlik doğrulama kaydı bulunamadı"
  1707. #: apt-pkg/indexcopy.cc:504
  1708. #, c-format
  1709. msgid "Hash mismatch for: %s"
  1710. msgstr "Sağlama yapılamadı: %s"
  1711. #: apt-pkg/cachefile.cc:101
  1712. msgid "The package lists or status file could not be parsed or opened."
  1713. msgstr "Paket listeleri ya da durum dosyası ayrıştırılamadı ya da açılamadı."
  1714. #: apt-pkg/cachefile.cc:105
  1715. msgid "You may want to run apt-get update to correct these problems"
  1716. msgstr "Bu sorunları gidermek için apt-get update komutunu çalıştırabilirsiniz"
  1717. #: apt-pkg/cachefile.cc:123
  1718. msgid "The list of sources could not be read."
  1719. msgstr "Kaynak listesi okunamadı."
  1720. #: apt-pkg/pkgcache.cc:163
  1721. msgid "Empty package cache"
  1722. msgstr "Paket önbelleği boş"
  1723. #: apt-pkg/pkgcache.cc:169 apt-pkg/pkgcache.cc:180
  1724. msgid "The package cache file is corrupted"
  1725. msgstr "Paket önbelleği dosyası bozulmuş"
  1726. #: apt-pkg/pkgcache.cc:174
  1727. msgid "The package cache file is an incompatible version"
  1728. msgstr "Paket önbelleği dosyası uyumsuz bir sürümde"
  1729. #: apt-pkg/pkgcache.cc:177
  1730. msgid "The package cache file is corrupted, it is too small"
  1731. msgstr "Paket önbellek dosyası bozulmuş, çok küçük"
  1732. #: apt-pkg/pkgcache.cc:184
  1733. #, c-format
  1734. msgid "This APT does not support the versioning system '%s'"
  1735. msgstr "Bu APT '%s' sürümleme sistemini desteklemiyor"
  1736. #: apt-pkg/pkgcache.cc:194
  1737. #, fuzzy, c-format
  1738. msgid "The package cache was built for different architectures: %s vs %s"
  1739. msgstr "Paket önbelleği farklı bir mimarı için yapılmış"
  1740. #: apt-pkg/pkgcache.cc:319
  1741. msgid "Depends"
  1742. msgstr "Bağımlılıklar"
  1743. #: apt-pkg/pkgcache.cc:319
  1744. msgid "PreDepends"
  1745. msgstr "ÖnBağımlılıklar"
  1746. #: apt-pkg/pkgcache.cc:319
  1747. msgid "Suggests"
  1748. msgstr "Önerdikleri"
  1749. #: apt-pkg/pkgcache.cc:320
  1750. msgid "Recommends"
  1751. msgstr "Tavsiye ettikleri"
  1752. #: apt-pkg/pkgcache.cc:320
  1753. msgid "Conflicts"
  1754. msgstr "Çakışmalar"
  1755. #: apt-pkg/pkgcache.cc:320
  1756. msgid "Replaces"
  1757. msgstr "Değiştirilenler"
  1758. #: apt-pkg/pkgcache.cc:321
  1759. msgid "Obsoletes"
  1760. msgstr "Eskiyenler"
  1761. #: apt-pkg/pkgcache.cc:321
  1762. msgid "Breaks"
  1763. msgstr "Bozdukları"
  1764. #: apt-pkg/pkgcache.cc:321
  1765. msgid "Enhances"
  1766. msgstr "Geliştirdikleri"
  1767. #: apt-pkg/pkgcache.cc:332
  1768. msgid "important"
  1769. msgstr "önemli"
  1770. #: apt-pkg/pkgcache.cc:332
  1771. msgid "required"
  1772. msgstr "gerekli"
  1773. #: apt-pkg/pkgcache.cc:332
  1774. msgid "standard"
  1775. msgstr "standart"
  1776. #: apt-pkg/pkgcache.cc:333
  1777. msgid "optional"
  1778. msgstr "seçimlik"
  1779. #: apt-pkg/pkgcache.cc:333
  1780. msgid "extra"
  1781. msgstr "ilave"
  1782. #: apt-pkg/acquire-worker.cc:111
  1783. #, c-format
  1784. msgid "The method driver %s could not be found."
  1785. msgstr "Yöntem sürücüsü %s bulunamadı."
  1786. #: apt-pkg/acquire-worker.cc:113
  1787. #, c-format
  1788. msgid "Is the package %s installed?"
  1789. msgstr "%s paketi kurulu mu?"
  1790. #: apt-pkg/acquire-worker.cc:164
  1791. #, c-format
  1792. msgid "Method %s did not start correctly"
  1793. msgstr "%s yöntemi düzgün şekilde başlamadı"
  1794. #: apt-pkg/acquire-worker.cc:536
  1795. #, fuzzy, c-format
  1796. msgid ""
  1797. "Please insert the disc labeled: '%s' in the drive '%s' and press [Enter]."
  1798. msgstr ""
  1799. "Lütfen '%s' olarak etiketlenmiş diski '%s' sürücüsüne yerleştirin ve giriş "
  1800. "(enter) tuşuna basın."
  1801. #: apt-pkg/pkgrecords.cc:38
  1802. #, c-format
  1803. msgid "Index file type '%s' is not supported"
  1804. msgstr "İndeks dosyası türü '%s' desteklenmiyor"
  1805. #: apt-pkg/depcache.cc:139 apt-pkg/depcache.cc:167
  1806. msgid "Building dependency tree"
  1807. msgstr "Bağımlılık ağacı oluşturuluyor"
  1808. #: apt-pkg/depcache.cc:140
  1809. msgid "Candidate versions"
  1810. msgstr "Aday sürümler"
  1811. #: apt-pkg/depcache.cc:168
  1812. msgid "Dependency generation"
  1813. msgstr "Bağımlılık oluşturma"
  1814. #: apt-pkg/depcache.cc:188 apt-pkg/depcache.cc:221 apt-pkg/depcache.cc:225
  1815. msgid "Reading state information"
  1816. msgstr "Durum bilgisi okunuyor"
  1817. #: apt-pkg/depcache.cc:252
  1818. #, c-format
  1819. msgid "Failed to open StateFile %s"
  1820. msgstr "Durum dosyası (StateFile) %s açılamadı"
  1821. #: apt-pkg/depcache.cc:257
  1822. #, c-format
  1823. msgid "Failed to write temporary StateFile %s"
  1824. msgstr "Geçici durum dosyasına (%s) yazma başarısız oldu"
  1825. #: apt-pkg/acquire-item.cc:116
  1826. msgid "Use --allow-insecure-repositories to force the update"
  1827. msgstr ""
  1828. #: apt-pkg/acquire-item.cc:561 apt-pkg/contrib/fileutl.cc:2161
  1829. #, c-format
  1830. msgid "rename failed, %s (%s -> %s)."
  1831. msgstr "yeniden adlandırma başarısız, %s (%s -> %s)."
  1832. #: apt-pkg/acquire-item.cc:585
  1833. msgid "Hash Sum mismatch"
  1834. msgstr "Sağlama toplamları eşleşmiyor"
  1835. #: apt-pkg/acquire-item.cc:590
  1836. msgid "Size mismatch"
  1837. msgstr "Boyutlar eşleşmiyor"
  1838. #: apt-pkg/acquire-item.cc:595
  1839. msgid "Invalid file format"
  1840. msgstr "Geçersiz dosya biçimi"
  1841. #: apt-pkg/acquire-item.cc:600
  1842. #, fuzzy
  1843. msgid "Signature error"
  1844. msgstr "Yazma hatası"
  1845. #: apt-pkg/acquire-item.cc:789
  1846. #, fuzzy, c-format
  1847. msgid ""
  1848. "An error occurred during the signature verification. The repository is not "
  1849. "updated and the previous index files will be used. GPG error: %s: %s"
  1850. msgstr ""
  1851. "İmza doğrulama sırasında bir hata meydana geldi. Depo güncel değil ve önceki "
  1852. "indeks dosyaları kullanılacak. GPG hatası: %s:%s\n"
  1853. #. Invalid signature file, reject (LP: #346386) (Closes: #627642)
  1854. #: apt-pkg/acquire-item.cc:799 apt-pkg/acquire-item.cc:805
  1855. #, c-format
  1856. msgid "GPG error: %s: %s"
  1857. msgstr "GPG hatası: %s: %s"
  1858. #: apt-pkg/acquire-item.cc:970
  1859. #, c-format
  1860. msgid ""
  1861. "Unable to find expected entry '%s' in Release file (Wrong sources.list entry "
  1862. "or malformed file)"
  1863. msgstr ""
  1864. "'Release' dosyasında olması beklenilen '%s' girdisi bulunamadı (sources.list "
  1865. "dosyasındaki girdi ya da satır hatalı)"
  1866. #: apt-pkg/acquire-item.cc:1026
  1867. msgid "There is no public key available for the following key IDs:\n"
  1868. msgstr ""
  1869. "Aşağıdaki anahtar kimlikleri için kullanılır hiçbir genel anahtar yok:\n"
  1870. #. TRANSLATOR: The first %s is the URL of the bad Release file, the second is
  1871. #. the time since then the file is invalid - formatted in the same way as in
  1872. #. the download progress display (e.g. 7d 3h 42min 1s)
  1873. #: apt-pkg/acquire-item.cc:1066
  1874. #, c-format
  1875. msgid ""
  1876. "Release file for %s is expired (invalid since %s). Updates for this "
  1877. "repository will not be applied."
  1878. msgstr ""
  1879. "%s konumundaki 'Release' dosyasının vâdesi dolmuş (%s önce). Bu deponun "
  1880. "güncelleştirmeleri uygulanmayacak."
  1881. #: apt-pkg/acquire-item.cc:1107
  1882. #, c-format
  1883. msgid "Conflicting distribution: %s (expected %s but got %s)"
  1884. msgstr "Dağıtım çakışması: %s (beklenen %s ama eldeki %s)"
  1885. #: apt-pkg/acquire-item.cc:1224 apt-pkg/acquire-item.cc:1480
  1886. #, c-format
  1887. msgid ""
  1888. "The data from '%s' is not signed. Packages from that repository can not be "
  1889. "authenticated."
  1890. msgstr ""
  1891. #: apt-pkg/acquire-item.cc:1326
  1892. #, c-format
  1893. msgid ""
  1894. "The repository '%s' does not have a Release file. This is deprecated, please "
  1895. "contact the owner of the repository."
  1896. msgstr ""
  1897. #: apt-pkg/acquire-item.cc:1459
  1898. #, fuzzy, c-format
  1899. msgid "The repository '%s' is no longer signed."
  1900. msgstr "%s dizini yönlendirilmiş"
  1901. #: apt-pkg/acquire-item.cc:1466
  1902. msgid ""
  1903. "This is normally not allowed, but the option Acquire::"
  1904. "AllowDowngradeToInsecureRepositories was given to override it."
  1905. msgstr ""
  1906. #: apt-pkg/acquire-item.cc:2611
  1907. #, c-format
  1908. msgid ""
  1909. "I wasn't able to locate a file for the %s package. This might mean you need "
  1910. "to manually fix this package. (due to missing arch)"
  1911. msgstr ""
  1912. "%s paketindeki dosyalardan biri konumlandırılamadı. Bu durum, bu paketi elle "
  1913. "düzeltmeniz gerektiği anlamına gelebilir. (eksik mimariden dolayı)"
  1914. #: apt-pkg/acquire-item.cc:2677
  1915. #, c-format
  1916. msgid "Can't find a source to download version '%s' of '%s'"
  1917. msgstr "'%2$s' paketinin '%1$s' sürümü hiçbir kaynakta bulunamadı"
  1918. #: apt-pkg/acquire-item.cc:2715
  1919. #, c-format
  1920. msgid ""
  1921. "The package index files are corrupted. No Filename: field for package %s."
  1922. msgstr "Paket indeks dosyaları bozuk. %s paketinin 'Filename:' alanı yok."
  1923. #. TRANSLATOR: %s=%s is sourcename=sourceversion, e.g. apt=1.1
  1924. #: apt-pkg/acquire-item.cc:2916 apt-pkg/acquire-item.cc:3054
  1925. #, fuzzy, c-format
  1926. msgid "Changelog unavailable for %s=%s"
  1927. msgstr "%s (%s) paketinin değişim günlüğü"
  1928. #: apt-pkg/clean.cc:39 apt-pkg/acquire.cc:553
  1929. #, c-format
  1930. msgid "Clean of %s is not supported"
  1931. msgstr "%s temizliği desteklenmiyor"
  1932. #: apt-pkg/clean.cc:64
  1933. #, c-format
  1934. msgid "Unable to stat %s."
  1935. msgstr "%s için dosya bilgisi alınamadı."
  1936. #: apt-pkg/pkgcachegen.cc:112
  1937. msgid "Cache has an incompatible versioning system"
  1938. msgstr "Önbelleğin uyumsuz bir sürümleme sistemi var"
  1939. #. TRANSLATOR: The first placeholder is a package name,
  1940. #. the other two should be copied verbatim as they include debug info
  1941. #: apt-pkg/pkgcachegen.cc:237 apt-pkg/pkgcachegen.cc:299
  1942. #: apt-pkg/pkgcachegen.cc:365 apt-pkg/pkgcachegen.cc:369
  1943. #: apt-pkg/pkgcachegen.cc:386 apt-pkg/pkgcachegen.cc:394
  1944. #: apt-pkg/pkgcachegen.cc:398 apt-pkg/pkgcachegen.cc:402
  1945. #: apt-pkg/pkgcachegen.cc:423 apt-pkg/pkgcachegen.cc:428
  1946. #: apt-pkg/pkgcachegen.cc:474 apt-pkg/pkgcachegen.cc:488
  1947. #, c-format
  1948. msgid "Error occurred while processing %s (%s%d)"
  1949. msgstr "%s paketi işlenirken sorunlarla karşılaşıldı (%s%d)"
  1950. #: apt-pkg/pkgcachegen.cc:257
  1951. msgid "Wow, you exceeded the number of package names this APT is capable of."
  1952. msgstr "Vay canına, bu APT'nin alabileceği paket adları sayısını aştınız."
  1953. #: apt-pkg/pkgcachegen.cc:260
  1954. msgid "Wow, you exceeded the number of versions this APT is capable of."
  1955. msgstr "Vay canına, bu APT'nin alabileceği sürüm sayısını aştınız."
  1956. #: apt-pkg/pkgcachegen.cc:263
  1957. msgid "Wow, you exceeded the number of descriptions this APT is capable of."
  1958. msgstr "Vay canına, bu APT'nin alabileceği açıklama sayısını aştınız."
  1959. #: apt-pkg/pkgcachegen.cc:266
  1960. msgid "Wow, you exceeded the number of dependencies this APT is capable of."
  1961. msgstr "Vay canına, bu APT'nin alabileceği bağımlılık sayısını aştınız."
  1962. #: apt-pkg/pkgcachegen.cc:1400 apt-pkg/pkgcachegen.cc:1526
  1963. #: apt-pkg/pkgcachegen.cc:1552 apt-pkg/pkgcachegen.cc:1671
  1964. msgid "Reading package lists"
  1965. msgstr "Paket listeleri okunuyor"
  1966. #: apt-pkg/pkgcachegen.cc:1471 apt-pkg/pkgcachegen.cc:1478
  1967. msgid "IO Error saving source cache"
  1968. msgstr "Kaynak önbelleği kaydedilirken GÇ Hatası"
  1969. #: apt-pkg/pkgcachegen.cc:1570 apt-pkg/pkgcachegen.cc:1572
  1970. #: apt-pkg/contrib/fileutl.cc:2151 cmdline/apt-extracttemplates.cc:263
  1971. #, c-format
  1972. msgid "Unable to write to %s"
  1973. msgstr "%s dosyasına yazılamıyor"
  1974. #: apt-pkg/acquire.cc:126 apt-pkg/acquire.cc:146 apt-pkg/cdrom.cc:833
  1975. #, c-format
  1976. msgid "List directory %spartial is missing."
  1977. msgstr "Liste dizini %spartial bulunamadı."
  1978. #: apt-pkg/acquire.cc:129 apt-pkg/acquire.cc:151
  1979. #, c-format
  1980. msgid "Archives directory %spartial is missing."
  1981. msgstr "Arşiv dizini %spartial bulunamadı."
  1982. #: apt-pkg/acquire.cc:162
  1983. #, c-format
  1984. msgid "Unable to lock directory %s"
  1985. msgstr "%s dizini kilitlenemiyor"
  1986. #. only show the ETA if it makes sense
  1987. #. two days
  1988. #: apt-pkg/acquire.cc:1081
  1989. #, c-format
  1990. msgid "Retrieving file %li of %li (%s remaining)"
  1991. msgstr "Alınan dosya: %li / %li (%s kaldı)"
  1992. #: apt-pkg/acquire.cc:1083
  1993. #, c-format
  1994. msgid "Retrieving file %li of %li"
  1995. msgstr "Alınan dosya: %li / %li"
  1996. #: apt-pkg/update.cc:76
  1997. #, fuzzy, c-format
  1998. msgid "Failed to fetch %s %s"
  1999. msgstr "%s ağdan alınamadı. %s\n"
  2000. #: apt-pkg/update.cc:102 apt-pkg/update.cc:104
  2001. msgid ""
  2002. "Some index files failed to download. They have been ignored, or old ones "
  2003. "used instead."
  2004. msgstr ""
  2005. "Bazı indeks dosyaları indirilemedi. Bu dosyalar yok sayıldılar ya da önceki "
  2006. "sürümleri kullanıldı."
  2007. #: apt-pkg/srcrecords.cc:53
  2008. msgid "You must put some 'source' URIs in your sources.list"
  2009. msgstr "'sources.list' dosyası içine bazı 'source' adresleri koymalısınız"
  2010. #: apt-pkg/policy.cc:77
  2011. #, c-format
  2012. msgid ""
  2013. "The value '%s' is invalid for APT::Default-Release as such a release is not "
  2014. "available in the sources"
  2015. msgstr ""
  2016. "APT::Default-Release için '%s' değeri geçersizdir, çünkü kaynaklarda böyle "
  2017. "bir sürüm yok"
  2018. #: apt-pkg/policy.cc:453
  2019. #, c-format
  2020. msgid "Invalid record in the preferences file %s, no Package header"
  2021. msgstr "%s tercihler dosyasında geçersiz kayıt, Paket başlığı yok"
  2022. #: apt-pkg/policy.cc:475
  2023. #, c-format
  2024. msgid "Did not understand pin type %s"
  2025. msgstr "İğne türü %s anlaşılamadı"
  2026. #: apt-pkg/policy.cc:484
  2027. #, c-format
  2028. msgid "%s: Value %s is outside the range of valid pin priorities (%d to %d)"
  2029. msgstr ""
  2030. #: apt-pkg/policy.cc:491
  2031. msgid "No priority (or zero) specified for pin"
  2032. msgstr "İğne için öncelik belirlenmedi (ya da sıfır)"
  2033. #: apt-pkg/packagemanager.cc:303 apt-pkg/packagemanager.cc:983
  2034. #, c-format
  2035. msgid ""
  2036. "Could not perform immediate configuration on '%s'. Please see man 5 apt.conf "
  2037. "under APT::Immediate-Configure for details. (%d)"
  2038. msgstr ""
  2039. "\"%s\" paketinin anında yapılandırması başarısız oldu. Ayrıntılar için apt."
  2040. "conf(5) rehber sayfasının APT::Immediate-Configure kısmına bakın. (%d)"
  2041. #: apt-pkg/packagemanager.cc:562 apt-pkg/packagemanager.cc:592
  2042. #, c-format
  2043. msgid "Could not configure '%s'. "
  2044. msgstr "'%s' paketi yapılandırılamadı. "
  2045. #: apt-pkg/packagemanager.cc:642
  2046. #, c-format
  2047. msgid ""
  2048. "This installation run will require temporarily removing the essential "
  2049. "package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if "
  2050. "you really want to do it, activate the APT::Force-LoopBreak option."
  2051. msgstr ""
  2052. "Bu kurulum, bir Çakışma/Ön-Bağımlılık döngüsü içerdiği için %s temel "
  2053. "paketinin geçici olarak kaldırılmasını gerektiriyor. Bu durum genellikle "
  2054. "kötü bir durumdur, ama ille de devam etmek isterseniz, APT::Force-LoopBreak "
  2055. "seçeneğini etkinleştirin."
  2056. #: apt-pkg/cdrom.cc:498
  2057. #, c-format
  2058. msgid "Line %u too long in source list %s."
  2059. msgstr "Kaynak listesinin (%2$s) %1$u numaralı satırı çok uzun."
  2060. #: apt-pkg/cdrom.cc:572
  2061. msgid "Unmounting CD-ROM...\n"
  2062. msgstr "CD-ROM ayrılıyor...\n"
  2063. #: apt-pkg/cdrom.cc:587
  2064. #, c-format
  2065. msgid "Using CD-ROM mount point %s\n"
  2066. msgstr "CD-ROM bağlama noktası %s kullanılıyor\n"
  2067. #: apt-pkg/cdrom.cc:600
  2068. msgid "Waiting for disc...\n"
  2069. msgstr "Disk bekleniliyor...\n"
  2070. #: apt-pkg/cdrom.cc:610
  2071. msgid "Mounting CD-ROM...\n"
  2072. msgstr "CD-ROM bağlanıyor...\n"
  2073. #: apt-pkg/cdrom.cc:621
  2074. msgid "Identifying... "
  2075. msgstr "Tanımlanıyor... "
  2076. #: apt-pkg/cdrom.cc:663
  2077. #, c-format
  2078. msgid "Stored label: %s\n"
  2079. msgstr "Kayıtlı etiket: %s\n"
  2080. #: apt-pkg/cdrom.cc:681
  2081. msgid "Scanning disc for index files...\n"
  2082. msgstr "Disk, indeks dosyaları için taranıyor...\n"
  2083. #: apt-pkg/cdrom.cc:735
  2084. #, c-format
  2085. msgid ""
  2086. "Found %zu package indexes, %zu source indexes, %zu translation indexes and "
  2087. "%zu signatures\n"
  2088. msgstr ""
  2089. "%zu paket indeksi, %zu kaynak indeksi, %zu çeviri indeksi ve %zu imza "
  2090. "bulundu\n"
  2091. #: apt-pkg/cdrom.cc:745
  2092. msgid ""
  2093. "Unable to locate any package files, perhaps this is not a Debian Disc or the "
  2094. "wrong architecture?"
  2095. msgstr ""
  2096. "Hiç paket dosyası bulunamadı. Belirttiğiniz disk bir Debian diski değil ya "
  2097. "da yanlış mimariye sahip."
  2098. #: apt-pkg/cdrom.cc:772
  2099. #, c-format
  2100. msgid "Found label '%s'\n"
  2101. msgstr "'%s' etiketi bulundu\n"
  2102. #: apt-pkg/cdrom.cc:801
  2103. msgid "That is not a valid name, try again.\n"
  2104. msgstr "Bu, geçerli bir ad değil, yeniden deneyin.\n"
  2105. #: apt-pkg/cdrom.cc:818
  2106. #, c-format
  2107. msgid ""
  2108. "This disc is called: \n"
  2109. "'%s'\n"
  2110. msgstr ""
  2111. "Disk adı: \n"
  2112. "'%s'\n"
  2113. #: apt-pkg/cdrom.cc:820
  2114. msgid "Copying package lists..."
  2115. msgstr "Paket listeleri kopyalanıyor..."
  2116. #: apt-pkg/cdrom.cc:867
  2117. msgid "Writing new source list\n"
  2118. msgstr "Yeni kaynak listesi yazılıyor\n"
  2119. #: apt-pkg/cdrom.cc:878
  2120. msgid "Source list entries for this disc are:\n"
  2121. msgstr "Bu disk için olan kaynak listesi girdileri:\n"
  2122. #: apt-pkg/upgrade.cc:34 apt-pkg/upgrade.cc:136 apt-pkg/upgrade.cc:182
  2123. msgid "Calculating upgrade"
  2124. msgstr "Yükseltme hesaplanıyor"
  2125. #: apt-pkg/algorithms.cc:263
  2126. #, c-format
  2127. msgid ""
  2128. "The package %s needs to be reinstalled, but I can't find an archive for it."
  2129. msgstr ""
  2130. "%s paketinin tekrar kurulması gerekli, ancak gereken arşiv dosyası "
  2131. "bulunamıyor."
  2132. #: apt-pkg/algorithms.cc:1080
  2133. msgid ""
  2134. "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
  2135. "held packages."
  2136. msgstr ""
  2137. "Hata, pkgProblemResolver::Resolve bozuk paketlere yol açtı, bu sorunun "
  2138. "nedeni tutulan paketler olabilir."
  2139. #: apt-pkg/algorithms.cc:1082
  2140. msgid "Unable to correct problems, you have held broken packages."
  2141. msgstr "Sorunlar giderilemedi, tutulan bozuk paketleriniz var."
  2142. #: apt-pkg/edsp.cc:184 apt-pkg/edsp.cc:210
  2143. msgid "Send scenario to solver"
  2144. msgstr "Çözücüye senaryo gönder"
  2145. #: apt-pkg/edsp.cc:232
  2146. msgid "Send request to solver"
  2147. msgstr "Çözücüye istek gönder"
  2148. #: apt-pkg/edsp.cc:311
  2149. msgid "Prepare for receiving solution"
  2150. msgstr "Çözüm almak için hazırlan"
  2151. #: apt-pkg/edsp.cc:318
  2152. msgid "External solver failed without a proper error message"
  2153. msgstr "Harici çözücü düzgün bir hata iletisi göstermeden başarısız oldu"
  2154. #: apt-pkg/edsp.cc:610 apt-pkg/edsp.cc:613 apt-pkg/edsp.cc:618
  2155. msgid "Execute external solver"
  2156. msgstr "Harici çözücüyü çalıştır"
  2157. #: apt-pkg/tagfile.cc:196 apt-pkg/tagfile.cc:296 apt-pkg/deb/debrecords.cc:212
  2158. #, fuzzy, c-format
  2159. msgid "Unable to parse package file %s (%d)"
  2160. msgstr "Paket dosyası %s ayrıştırılamadı (1)"
  2161. #: apt-pkg/tagfile.cc:541 apt-pkg/tagfile.cc:544
  2162. #, c-format
  2163. msgid "Cannot convert %s to integer"
  2164. msgstr ""
  2165. #. TRANSLATOR: %u is a line number, the first %s is a filename of a file with the extension "second %s" and the third %s is a unique identifier for bugreports
  2166. #: apt-pkg/sourcelist.cc:133 apt-pkg/sourcelist.cc:140
  2167. #: apt-pkg/sourcelist.cc:143 apt-pkg/sourcelist.cc:151
  2168. #: apt-pkg/sourcelist.cc:158 apt-pkg/sourcelist.cc:197
  2169. #: apt-pkg/sourcelist.cc:200 apt-pkg/sourcelist.cc:211
  2170. #: apt-pkg/sourcelist.cc:217 apt-pkg/sourcelist.cc:220
  2171. #: apt-pkg/sourcelist.cc:233 apt-pkg/sourcelist.cc:235
  2172. #: apt-pkg/sourcelist.cc:238 apt-pkg/sourcelist.cc:244
  2173. #: apt-pkg/sourcelist.cc:251
  2174. #, fuzzy, c-format
  2175. msgid "Malformed entry %u in %s file %s (%s)"
  2176. msgstr "Hatalı geçersiz kılma %s satır %llu (%s)"
  2177. #: apt-pkg/sourcelist.cc:355
  2178. #, c-format
  2179. msgid "Opening %s"
  2180. msgstr "%s Açılıyor"
  2181. #: apt-pkg/sourcelist.cc:389
  2182. #, c-format
  2183. msgid "Malformed line %u in source list %s (type)"
  2184. msgstr "Kaynak listesinin (%2$s) %1$u numaralı satırı hatalı (tür)"
  2185. #: apt-pkg/sourcelist.cc:393
  2186. #, c-format
  2187. msgid "Type '%s' is not known on line %u in source list %s"
  2188. msgstr "'%s' türü bilinmiyor. (Satır: %u, Kaynak Listesi: %s)"
  2189. #: apt-pkg/sourcelist.cc:413 apt-pkg/sourcelist.cc:419
  2190. #, fuzzy, c-format
  2191. msgid "Malformed stanza %u in source list %s (type)"
  2192. msgstr "Kaynak listesinin (%2$s) %1$u numaralı satırı hatalı (tür)"
  2193. #: apt-pkg/sourcelist.cc:429
  2194. #, c-format
  2195. msgid "Type '%s' is not known on stanza %u in source list %s"
  2196. msgstr "'%s' türü bilinmiyor (girdi: %u, kaynak listesi: %s)"
  2197. #: apt-pkg/cacheset.cc:500
  2198. #, c-format
  2199. msgid "Release '%s' for '%s' was not found"
  2200. msgstr "'%2$s' paketinin '%1$s' sürümü bulunamadı"
  2201. #: apt-pkg/cacheset.cc:503
  2202. #, c-format
  2203. msgid "Version '%s' for '%s' was not found"
  2204. msgstr "'%2$s' paketinin '%1$s' sürümü bulunamadı"
  2205. #: apt-pkg/cacheset.cc:738
  2206. #, c-format
  2207. msgid "Couldn't find task '%s'"
  2208. msgstr "'%s' görevi bulunamadı"
  2209. #: apt-pkg/cacheset.cc:744
  2210. #, c-format
  2211. msgid "Couldn't find any package by regex '%s'"
  2212. msgstr "'%s' düzenli ifadesini içeren herhangi bir paket bulunamadı"
  2213. #: apt-pkg/cacheset.cc:750
  2214. #, c-format
  2215. msgid "Couldn't find any package by glob '%s'"
  2216. msgstr "'%s' ifadesine eşleşen herhangi bir paket bulunamadı"
  2217. #: apt-pkg/cacheset.cc:789
  2218. #, c-format
  2219. msgid "Can't select versions from package '%s' as it is purely virtual"
  2220. msgstr "'%s' paketi tamamen sanal olduğu için sürümü seçilemiyor"
  2221. #: apt-pkg/cacheset.cc:828
  2222. #, c-format
  2223. msgid "Can't select newest version from package '%s' as it is purely virtual"
  2224. msgstr "'%s' paketi sanal olduğu için en yeni sürümü seçilemiyor"
  2225. #: apt-pkg/cacheset.cc:836
  2226. #, c-format
  2227. msgid "Can't select candidate version from package %s as it has no candidate"
  2228. msgstr "'%s' paketinin aday sürümü olmadığı için aday sürüm seçilemiyor"
  2229. #: apt-pkg/cacheset.cc:844
  2230. #, c-format
  2231. msgid "Can't select installed version from package %s as it is not installed"
  2232. msgstr "'%s' paketi kurulu olmadığı için kurulu sürüm seçilemiyor"
  2233. #: apt-pkg/cacheset.cc:852 apt-pkg/cacheset.cc:860
  2234. #, c-format
  2235. msgid ""
  2236. "Can't select installed nor candidate version from package '%s' as it has "
  2237. "neither of them"
  2238. msgstr ""
  2239. "'%s' paketi kurulu olmadığı ve aday sürüme sahip olmadığı için her ikisi de "
  2240. "seçilemiyor"
  2241. #. TRANSLATOR: d means days, h means hours, min means minutes, s means seconds
  2242. #: apt-pkg/contrib/strutl.cc:420
  2243. #, c-format
  2244. msgid "%lid %lih %limin %lis"
  2245. msgstr "%li gün %li saat %li dk. %li sn."
  2246. #. TRANSLATOR: h means hours, min means minutes, s means seconds
  2247. #: apt-pkg/contrib/strutl.cc:425
  2248. #, c-format
  2249. msgid "%lih %limin %lis"
  2250. msgstr "%li saat %li dk. %li sn."
  2251. #. TRANSLATOR: min means minutes, s means seconds
  2252. #: apt-pkg/contrib/strutl.cc:430
  2253. #, c-format
  2254. msgid "%limin %lis"
  2255. msgstr "%li dk. %li sn."
  2256. #. TRANSLATOR: s means seconds
  2257. #: apt-pkg/contrib/strutl.cc:435
  2258. #, c-format
  2259. msgid "%lis"
  2260. msgstr "%li sn."
  2261. #: apt-pkg/contrib/strutl.cc:1279
  2262. #, c-format
  2263. msgid "Selection %s not found"
  2264. msgstr "%s seçimi bulunamadı"
  2265. #: apt-pkg/contrib/fileutl.cc:197
  2266. #, c-format
  2267. msgid "Not using locking for read only lock file %s"
  2268. msgstr "Kilitleme dosyası %s salt okunur olduğu için kilitleme kullanılmıyor"
  2269. #: apt-pkg/contrib/fileutl.cc:202
  2270. #, c-format
  2271. msgid "Could not open lock file %s"
  2272. msgstr "Kilit dosyası %s açılamadı"
  2273. #: apt-pkg/contrib/fileutl.cc:225
  2274. #, c-format
  2275. msgid "Not using locking for nfs mounted lock file %s"
  2276. msgstr "nfs ile bağlanmış kilit dosyası %s için kilitleme kullanılmıyor"
  2277. #: apt-pkg/contrib/fileutl.cc:230
  2278. #, c-format
  2279. msgid "Could not get lock %s"
  2280. msgstr "%s kilidi alınamadı"
  2281. #: apt-pkg/contrib/fileutl.cc:367 apt-pkg/contrib/fileutl.cc:481
  2282. #, c-format
  2283. msgid "List of files can't be created as '%s' is not a directory"
  2284. msgstr "'%s' dizin olmadığı için dosya listeli oluşturulamıyor"
  2285. #: apt-pkg/contrib/fileutl.cc:401
  2286. #, c-format
  2287. msgid "Ignoring '%s' in directory '%s' as it is not a regular file"
  2288. msgstr ""
  2289. "'%2$s' dizinindeki '%1$s' normal bir dosya olmadığı için görmezden geliniyor"
  2290. #: apt-pkg/contrib/fileutl.cc:419
  2291. #, c-format
  2292. msgid "Ignoring file '%s' in directory '%s' as it has no filename extension"
  2293. msgstr ""
  2294. "'%2$s' dizinindeki '%1$s' dosyası uzantısı olmadığı için görmezden geliniyor"
  2295. #: apt-pkg/contrib/fileutl.cc:428
  2296. #, c-format
  2297. msgid ""
  2298. "Ignoring file '%s' in directory '%s' as it has an invalid filename extension"
  2299. msgstr ""
  2300. "'%2$s' dizinindeki '%1$s' dosyası geçersiz bir dosya uzantısı olduğu için "
  2301. "yok sayılıyor"
  2302. #: apt-pkg/contrib/fileutl.cc:862
  2303. #, c-format
  2304. msgid "Sub-process %s received a segmentation fault."
  2305. msgstr "%s altsüreci bir bölümleme hatası aldı (segmentation fault)."
  2306. #: apt-pkg/contrib/fileutl.cc:864
  2307. #, c-format
  2308. msgid "Sub-process %s received signal %u."
  2309. msgstr "%s altsüreci %u sinyali aldı."
  2310. #: apt-pkg/contrib/fileutl.cc:868 apt-pkg/contrib/gpgv.cc:227
  2311. #, c-format
  2312. msgid "Sub-process %s returned an error code (%u)"
  2313. msgstr "%s altsüreci bir hata kodu gönderdi (%u)"
  2314. #: apt-pkg/contrib/fileutl.cc:870 apt-pkg/contrib/gpgv.cc:220
  2315. #, c-format
  2316. msgid "Sub-process %s exited unexpectedly"
  2317. msgstr "%s altsüreci beklenmeyen bir şekilde sona erdi"
  2318. #: apt-pkg/contrib/fileutl.cc:987
  2319. #, c-format
  2320. msgid "Problem closing the gzip file %s"
  2321. msgstr "Gzip dosyası %s kapatılamadı"
  2322. #: apt-pkg/contrib/fileutl.cc:1194
  2323. #, c-format
  2324. msgid "Could not open file %s"
  2325. msgstr "%s dosyası açılamadı"
  2326. #: apt-pkg/contrib/fileutl.cc:1253 apt-pkg/contrib/fileutl.cc:1300
  2327. #, c-format
  2328. msgid "Could not open file descriptor %d"
  2329. msgstr "Dosya tanımlayıcı %d açılamadı"
  2330. #: apt-pkg/contrib/fileutl.cc:1408 apt-pkg/contrib/fileutl.cc:2176
  2331. msgid "Failed to create subprocess IPC"
  2332. msgstr "Altsüreç IPC'si oluşturulamadı"
  2333. #: apt-pkg/contrib/fileutl.cc:1466
  2334. msgid "Failed to exec compressor "
  2335. msgstr "Sıkıştırma programı çalıştırılamadı "
  2336. #: apt-pkg/contrib/fileutl.cc:1607
  2337. #, c-format
  2338. msgid "read, still have %llu to read but none left"
  2339. msgstr "read, %llu bayt okunması gerekli ama hiç kalmamış"
  2340. #: apt-pkg/contrib/fileutl.cc:1720 apt-pkg/contrib/fileutl.cc:1742
  2341. #, c-format
  2342. msgid "write, still have %llu to write but couldn't"
  2343. msgstr "write, yazılması gereken %llu bayt yazılamıyor"
  2344. #: apt-pkg/contrib/fileutl.cc:2008
  2345. #, c-format
  2346. msgid "Problem closing the file %s"
  2347. msgstr "%s dosyası kapatılamadı"
  2348. #: apt-pkg/contrib/fileutl.cc:2019
  2349. #, c-format
  2350. msgid "Problem renaming the file %s to %s"
  2351. msgstr "%s dosyası %s olarak yeniden adlandırılamadı"
  2352. #: apt-pkg/contrib/fileutl.cc:2030
  2353. #, c-format
  2354. msgid "Problem unlinking the file %s"
  2355. msgstr "%s dosyasından bağ kaldırma sorunu"
  2356. #: apt-pkg/contrib/fileutl.cc:2043
  2357. msgid "Problem syncing the file"
  2358. msgstr "Dosya eşitlenirken sorun çıktı"
  2359. #: apt-pkg/contrib/fileutl.cc:2146 cmdline/apt-extracttemplates.cc:258
  2360. #, c-format
  2361. msgid "Unable to mkstemp %s"
  2362. msgstr "mkstemp %s başarısız oldu"
  2363. #: apt-pkg/contrib/progress.cc:148
  2364. #, c-format
  2365. msgid "%c%s... Error!"
  2366. msgstr "%c%s... Hata!"
  2367. #: apt-pkg/contrib/progress.cc:150
  2368. #, c-format
  2369. msgid "%c%s... Done"
  2370. msgstr "%c%s... Bitti"
  2371. #: apt-pkg/contrib/progress.cc:181
  2372. msgid "..."
  2373. msgstr "..."
  2374. #. Print the spinner
  2375. #: apt-pkg/contrib/progress.cc:197
  2376. #, c-format
  2377. msgid "%c%s... %u%%"
  2378. msgstr "%c%s... %u%%"
  2379. #: apt-pkg/contrib/mmap.cc:79
  2380. msgid "Can't mmap an empty file"
  2381. msgstr "Boş dosya mmap yapılamıyor"
  2382. #: apt-pkg/contrib/mmap.cc:111
  2383. #, c-format
  2384. msgid "Couldn't duplicate file descriptor %i"
  2385. msgstr "Dosya tanımlayıcı %i çoğaltılamadı"
  2386. #: apt-pkg/contrib/mmap.cc:119
  2387. #, c-format
  2388. msgid "Couldn't make mmap of %llu bytes"
  2389. msgstr "%llu baytlık mmap yapılamaz"
  2390. #: apt-pkg/contrib/mmap.cc:146
  2391. msgid "Unable to close mmap"
  2392. msgstr "mmap kapatılamıyor"
  2393. #: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202
  2394. msgid "Unable to synchronize mmap"
  2395. msgstr "mmap eşlenemiyor"
  2396. #: apt-pkg/contrib/mmap.cc:290
  2397. #, c-format
  2398. msgid "Couldn't make mmap of %lu bytes"
  2399. msgstr "%lu baytlık mmap yapılamaz"
  2400. #: apt-pkg/contrib/mmap.cc:322
  2401. msgid "Failed to truncate file"
  2402. msgstr "Dosya kesilemedi"
  2403. #: apt-pkg/contrib/mmap.cc:341
  2404. #, c-format
  2405. msgid ""
  2406. "Dynamic MMap ran out of room. Please increase the size of APT::Cache-Start. "
  2407. "Current value: %lu. (man 5 apt.conf)"
  2408. msgstr ""
  2409. "Dinamik MMap yerine sığamadı. Lütfen APT::Cache-Start boyutunu artırın. "
  2410. "Kullanımdaki değer: %lu (ayrıntılı bilgi için man 5 apt.conf komutunu "
  2411. "kullanın)"
  2412. #: apt-pkg/contrib/mmap.cc:446
  2413. #, c-format
  2414. msgid ""
  2415. "Unable to increase the size of the MMap as the limit of %lu bytes is already "
  2416. "reached."
  2417. msgstr "%lu baytlık sınıra ulaşıldığı için MMap boyutu artırılamadı."
  2418. #: apt-pkg/contrib/mmap.cc:449
  2419. msgid ""
  2420. "Unable to increase size of the MMap as automatic growing is disabled by user."
  2421. msgstr ""
  2422. "Otomatik büyüme kullanıcı tarafından kapatıldığı için MMap boyutu "
  2423. "artırılamadı."
  2424. #: apt-pkg/contrib/cdromutl.cc:65
  2425. #, c-format
  2426. msgid "Unable to stat the mount point %s"
  2427. msgstr "Bağlama noktasının (%s) durum bilgisi alınamadı"
  2428. #: apt-pkg/contrib/cdromutl.cc:247
  2429. msgid "Failed to stat the cdrom"
  2430. msgstr "Cdrom durum bilgisi alınamadı"
  2431. #: apt-pkg/contrib/configuration.cc:516
  2432. #, c-format
  2433. msgid "Unrecognized type abbreviation: '%c'"
  2434. msgstr "Tanınamayan tür kısaltması: '%c'"
  2435. #: apt-pkg/contrib/configuration.cc:630
  2436. #, c-format
  2437. msgid "Opening configuration file %s"
  2438. msgstr "Yapılandırma dosyası (%s) açılıyor"
  2439. #: apt-pkg/contrib/configuration.cc:798
  2440. #, c-format
  2441. msgid "Syntax error %s:%u: Block starts with no name."
  2442. msgstr "Sözdizimi hatası %s:%u: Blok ad olmadan başlıyor."
  2443. #: apt-pkg/contrib/configuration.cc:817
  2444. #, c-format
  2445. msgid "Syntax error %s:%u: Malformed tag"
  2446. msgstr "Sözdizimi hatası %s:%u: Kötü biçimlendirilmiş etiket"
  2447. #: apt-pkg/contrib/configuration.cc:834
  2448. #, c-format
  2449. msgid "Syntax error %s:%u: Extra junk after value"
  2450. msgstr "Sözdizimi hatası %s:%u: Değerden sonra ilave gereksiz"
  2451. #: apt-pkg/contrib/configuration.cc:874
  2452. #, c-format
  2453. msgid "Syntax error %s:%u: Directives can only be done at the top level"
  2454. msgstr "Sözdizimi hatası %s:%u: Yönergeler sadece en üst düzeyde bitebilir"
  2455. #: apt-pkg/contrib/configuration.cc:881
  2456. #, c-format
  2457. msgid "Syntax error %s:%u: Too many nested includes"
  2458. msgstr "Sözdizimi hatası %s:%u: Çok fazla yuvalanmış 'include'"
  2459. #: apt-pkg/contrib/configuration.cc:885 apt-pkg/contrib/configuration.cc:890
  2460. #, c-format
  2461. msgid "Syntax error %s:%u: Included from here"
  2462. msgstr "Sözdizimi hatası %s:%u: Buradan 'include' edilmiş"
  2463. #: apt-pkg/contrib/configuration.cc:894
  2464. #, c-format
  2465. msgid "Syntax error %s:%u: Unsupported directive '%s'"
  2466. msgstr "Sözdizimi hatası %s:%u: Desteklenmeyen yönerge '%s'"
  2467. #: apt-pkg/contrib/configuration.cc:897
  2468. #, c-format
  2469. msgid "Syntax error %s:%u: clear directive requires an option tree as argument"
  2470. msgstr ""
  2471. "Sözdizimi hatası %s:%u: clear yönergesi bir seçenek ağacı argümanını "
  2472. "gerektirir"
  2473. #: apt-pkg/contrib/configuration.cc:947
  2474. #, c-format
  2475. msgid "Syntax error %s:%u: Extra junk at end of file"
  2476. msgstr "Sözdizimi hatası %s:%u: Dosya sonunda ilave gereksiz"
  2477. #: apt-pkg/contrib/cmndline.cc:127
  2478. #, fuzzy, c-format
  2479. msgid ""
  2480. "Command line option '%c' [from %s] is not understood in combination with the "
  2481. "other options."
  2482. msgstr "Komut satırı seçeneği '%c' [%s içinden] tanınmıyor."
  2483. #: apt-pkg/contrib/cmndline.cc:152 apt-pkg/contrib/cmndline.cc:161
  2484. #: apt-pkg/contrib/cmndline.cc:169
  2485. #, fuzzy, c-format
  2486. msgid ""
  2487. "Command line option %s is not understood in combination with the other "
  2488. "options"
  2489. msgstr "Komut satırı seçeneği %s anlaşılamadı"
  2490. #: apt-pkg/contrib/cmndline.cc:174
  2491. #, c-format
  2492. msgid "Command line option %s is not boolean"
  2493. msgstr "Komut satırı seçeneği %s mantıksal değer değil"
  2494. #: apt-pkg/contrib/cmndline.cc:215 apt-pkg/contrib/cmndline.cc:236
  2495. #, c-format
  2496. msgid "Option %s requires an argument."
  2497. msgstr "%s seçeneği bir argüman kullanımını gerektirir."
  2498. #: apt-pkg/contrib/cmndline.cc:249 apt-pkg/contrib/cmndline.cc:255
  2499. #, c-format
  2500. msgid "Option %s: Configuration item specification must have an =<val>."
  2501. msgstr ""
  2502. "%s seçeneği: Yapılandırma öğesi tanımlaması =<değer> şeklinde değer "
  2503. "içermelidir."
  2504. #: apt-pkg/contrib/cmndline.cc:284
  2505. #, c-format
  2506. msgid "Option %s requires an integer argument, not '%s'"
  2507. msgstr ""
  2508. "%s seçeneği bir tam sayı argümanının kullanımını gerektirir, '%s' değil"
  2509. #: apt-pkg/contrib/cmndline.cc:315
  2510. #, c-format
  2511. msgid "Option '%s' is too long"
  2512. msgstr "'%s' seçeneği çok uzun"
  2513. #: apt-pkg/contrib/cmndline.cc:347
  2514. #, c-format
  2515. msgid "Sense %s is not understood, try true or false."
  2516. msgstr "%s algılaması anlaşılamadı, true (doğru) ya da false (yanlış) deneyin."
  2517. #: apt-pkg/contrib/cmndline.cc:397
  2518. #, c-format
  2519. msgid "Invalid operation %s"
  2520. msgstr "Geçersiz işlem: %s"
  2521. #: apt-pkg/deb/debmetaindex.cc:229
  2522. #, c-format
  2523. msgid "Unable to parse Release file %s"
  2524. msgstr "'Release' dosyası (%s) ayrıştırılamadı"
  2525. #: apt-pkg/deb/debmetaindex.cc:238
  2526. #, c-format
  2527. msgid "No sections in Release file %s"
  2528. msgstr "'Release' dosyası %s içinde hiç bölüm yok"
  2529. #: apt-pkg/deb/debmetaindex.cc:278
  2530. #, c-format
  2531. msgid "No Hash entry in Release file %s"
  2532. msgstr "'Release' dosyasında (%s) sağlama girdisi yok"
  2533. #: apt-pkg/deb/debmetaindex.cc:286
  2534. #, c-format
  2535. msgid "Invalid 'Date' entry in Release file %s"
  2536. msgstr "'Release' dosyasında (%s) geçersiz 'Date' girdisi"
  2537. #: apt-pkg/deb/debmetaindex.cc:307
  2538. #, c-format
  2539. msgid "Invalid 'Valid-Until' entry in Release file %s"
  2540. msgstr "'Release' dosyasında (%s) geçersiz 'Valid-Until' girdisi"
  2541. #. TRANSLATOR: The first is an option name from sources.list manpage, the other two URI and Suite
  2542. #: apt-pkg/deb/debmetaindex.cc:438 apt-pkg/deb/debmetaindex.cc:446
  2543. #: apt-pkg/deb/debmetaindex.cc:454 apt-pkg/deb/debmetaindex.cc:462
  2544. #: apt-pkg/deb/debmetaindex.cc:485
  2545. #, c-format
  2546. msgid "Conflicting values set for option %s concerning source %s %s"
  2547. msgstr ""
  2548. #: apt-pkg/deb/debmetaindex.cc:480
  2549. #, c-format
  2550. msgid "Invalid value set for option %s concerning source %s %s (%s)"
  2551. msgstr ""
  2552. #: apt-pkg/deb/dpkgpm.cc:110
  2553. #, c-format
  2554. msgid "Installing %s"
  2555. msgstr "%s kuruluyor"
  2556. #: apt-pkg/deb/dpkgpm.cc:111 apt-pkg/deb/dpkgpm.cc:1007
  2557. #, c-format
  2558. msgid "Configuring %s"
  2559. msgstr "%s yapılandırılıyor"
  2560. #: apt-pkg/deb/dpkgpm.cc:112 apt-pkg/deb/dpkgpm.cc:1014
  2561. #, c-format
  2562. msgid "Removing %s"
  2563. msgstr "%s kaldırılıyor"
  2564. #: apt-pkg/deb/dpkgpm.cc:113
  2565. #, c-format
  2566. msgid "Completely removing %s"
  2567. msgstr "%s tamamen kaldırılıyor"
  2568. #: apt-pkg/deb/dpkgpm.cc:114
  2569. #, c-format
  2570. msgid "Noting disappearance of %s"
  2571. msgstr "%s paketinin kaybolduğu not ediliyor"
  2572. #: apt-pkg/deb/dpkgpm.cc:115
  2573. #, c-format
  2574. msgid "Running post-installation trigger %s"
  2575. msgstr "Kurulum sonrası tetikleyicisi %s çalıştırılıyor"
  2576. #. FIXME: use a better string after freeze
  2577. #: apt-pkg/deb/dpkgpm.cc:838
  2578. #, c-format
  2579. msgid "Directory '%s' missing"
  2580. msgstr "'%s' dizini bulunamadı"
  2581. #: apt-pkg/deb/dpkgpm.cc:853 apt-pkg/deb/dpkgpm.cc:875
  2582. #, c-format
  2583. msgid "Could not open file '%s'"
  2584. msgstr "'%s' dosyası açılamadı"
  2585. #: apt-pkg/deb/dpkgpm.cc:1000
  2586. #, c-format
  2587. msgid "Preparing %s"
  2588. msgstr "%s hazırlanıyor"
  2589. #: apt-pkg/deb/dpkgpm.cc:1001
  2590. #, c-format
  2591. msgid "Unpacking %s"
  2592. msgstr "%s paketi açılıyor"
  2593. #: apt-pkg/deb/dpkgpm.cc:1006
  2594. #, c-format
  2595. msgid "Preparing to configure %s"
  2596. msgstr "%s paketini yapılandırmaya hazırlanılıyor"
  2597. #: apt-pkg/deb/dpkgpm.cc:1008
  2598. #, c-format
  2599. msgid "Installed %s"
  2600. msgstr "%s kuruldu"
  2601. #: apt-pkg/deb/dpkgpm.cc:1013
  2602. #, c-format
  2603. msgid "Preparing for removal of %s"
  2604. msgstr "%s paketinin kaldırılmasına hazırlanılıyor"
  2605. #: apt-pkg/deb/dpkgpm.cc:1015
  2606. #, c-format
  2607. msgid "Removed %s"
  2608. msgstr "%s kaldırıldı"
  2609. #: apt-pkg/deb/dpkgpm.cc:1020
  2610. #, c-format
  2611. msgid "Preparing to completely remove %s"
  2612. msgstr "%s paketinin tamamen kaldırılmasına hazırlanılıyor"
  2613. #: apt-pkg/deb/dpkgpm.cc:1021
  2614. #, c-format
  2615. msgid "Completely removed %s"
  2616. msgstr "%s tamamen kaldırıldı"
  2617. #: apt-pkg/deb/dpkgpm.cc:1080 apt-pkg/deb/dpkgpm.cc:1168
  2618. #, c-format
  2619. msgid "Can not write log (%s)"
  2620. msgstr "Günlük dosyasına yazılamıyor (%s)"
  2621. #: apt-pkg/deb/dpkgpm.cc:1080 apt-pkg/deb/dpkgpm.cc:1168
  2622. msgid "Is /dev/pts mounted?"
  2623. msgstr "/dev/pts bağlı mı?"
  2624. #: apt-pkg/deb/dpkgpm.cc:1656
  2625. msgid "Operation was interrupted before it could finish"
  2626. msgstr "İşlem yarıda kesildi"
  2627. #: apt-pkg/deb/dpkgpm.cc:1718
  2628. msgid "No apport report written because MaxReports is reached already"
  2629. msgstr ""
  2630. "En fazla rapor miktarına (MaxReports) ulaşıldığı için apport raporu yazılmadı"
  2631. #. check if its not a follow up error
  2632. #: apt-pkg/deb/dpkgpm.cc:1723
  2633. msgid "dependency problems - leaving unconfigured"
  2634. msgstr "bağımlılık sorunları - yapılandırılmamış durumda bırakılıyor"
  2635. #: apt-pkg/deb/dpkgpm.cc:1725
  2636. msgid ""
  2637. "No apport report written because the error message indicates its a followup "
  2638. "error from a previous failure."
  2639. msgstr ""
  2640. "Apport raporu yazılmadı çünkü hata iletisi bu durumun bir önceki hatadan "
  2641. "kaynaklanan bir hata olduğunu belirtiyor."
  2642. #: apt-pkg/deb/dpkgpm.cc:1731
  2643. msgid ""
  2644. "No apport report written because the error message indicates a disk full "
  2645. "error"
  2646. msgstr ""
  2647. "Hata iletisi diskin dolu olduğunu belirttiği için apport raporu yazılamadı"
  2648. #: apt-pkg/deb/dpkgpm.cc:1738
  2649. msgid ""
  2650. "No apport report written because the error message indicates a out of memory "
  2651. "error"
  2652. msgstr ""
  2653. "Hata iletisi bir bellek yetersizliği hatasına işaret ettiği için apport "
  2654. "raporu yazılamadı"
  2655. #: apt-pkg/deb/dpkgpm.cc:1745 apt-pkg/deb/dpkgpm.cc:1751
  2656. msgid ""
  2657. "No apport report written because the error message indicates an issue on the "
  2658. "local system"
  2659. msgstr ""
  2660. "Hata iletisi yerel bir sistem hatasına işaret ettiği için apport raporu "
  2661. "yazılamadı"
  2662. #: apt-pkg/deb/dpkgpm.cc:1773
  2663. msgid ""
  2664. "No apport report written because the error message indicates a dpkg I/O error"
  2665. msgstr ""
  2666. "Hata iletisi bir dpkg G/Ç hatasına işaret ettiği için apport raporu "
  2667. "yazılamadı"
  2668. #: apt-pkg/deb/debsystem.cc:88
  2669. #, c-format
  2670. msgid ""
  2671. "Unable to lock the administration directory (%s), is another process using "
  2672. "it?"
  2673. msgstr ""
  2674. "Yönetim dizini (%s) kilitlenemiyor, başka bir işlem tarafından kullanılıyor "
  2675. "olmasın?"
  2676. #: apt-pkg/deb/debsystem.cc:91
  2677. #, c-format
  2678. msgid "Unable to lock the administration directory (%s), are you root?"
  2679. msgstr "Yönetim dizini (%s) kilitlenemiyor, root kullanıcısı mısınız?"
  2680. #. TRANSLATORS: the %s contains the recovery command, usually
  2681. #. dpkg --configure -a
  2682. #: apt-pkg/deb/debsystem.cc:107
  2683. #, c-format
  2684. msgid ""
  2685. "dpkg was interrupted, you must manually run '%s' to correct the problem. "
  2686. msgstr ""
  2687. "dpkg kesintiye uğradı, sorunu düzeltmek için elle '%s' komutunu çalıştırın. "
  2688. #: apt-pkg/deb/debsystem.cc:125
  2689. msgid "Not locked"
  2690. msgstr "Kilitlenmemiş"
  2691. #: cmdline/apt-extracttemplates.cc:228
  2692. msgid ""
  2693. "Usage: apt-extracttemplates file1 [file2 ...]\n"
  2694. "\n"
  2695. "apt-extracttemplates is a tool to extract config and template info\n"
  2696. "from debian packages\n"
  2697. "\n"
  2698. "Options:\n"
  2699. " -h This help text\n"
  2700. " -t Set the temp dir\n"
  2701. " -c=? Read this configuration file\n"
  2702. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  2703. msgstr ""
  2704. "Kullanım: apt-extracttemplates dosya1 [dosya2 ...]\n"
  2705. "\n"
  2706. "apt-extracttemplates, Debian paketlerinden ayar ve şablon bilgisini\n"
  2707. "almak için kullanılan bir araçtır\n"
  2708. "\n"
  2709. "Seçenekler:\n"
  2710. " -h Bu yardım dosyası\n"
  2711. " -t Geçici dizini ayarlar\n"
  2712. " -c=? Belirtilen ayar dosyasını kullanır\n"
  2713. " -o=? Ayar seçeneği belirtmeyi sağlar, ör -o dir::cache=/tmp\n"
  2714. #: cmdline/apt-extracttemplates.cc:304
  2715. msgid "Cannot get debconf version. Is debconf installed?"
  2716. msgstr "debconf sürümü alınamıyor. debconf kurulu mu?"
  2717. #: ftparchive/apt-ftparchive.cc:188 ftparchive/apt-ftparchive.cc:368
  2718. msgid "Package extension list is too long"
  2719. msgstr "Paket uzantı listesi çok uzun"
  2720. #: ftparchive/apt-ftparchive.cc:190 ftparchive/apt-ftparchive.cc:202
  2721. #: ftparchive/apt-ftparchive.cc:225 ftparchive/apt-ftparchive.cc:281
  2722. #: ftparchive/apt-ftparchive.cc:291 ftparchive/apt-ftparchive.cc:313
  2723. #, c-format
  2724. msgid "Error processing directory %s"
  2725. msgstr "%s dizinini işlemede hata"
  2726. #: ftparchive/apt-ftparchive.cc:279
  2727. msgid "Source extension list is too long"
  2728. msgstr "Kaynak uzantı listesi çok uzun"
  2729. #: ftparchive/apt-ftparchive.cc:394
  2730. msgid "Error writing header to contents file"
  2731. msgstr "İçindekiler dosyasına başlık yazmada hata"
  2732. #: ftparchive/apt-ftparchive.cc:424
  2733. #, c-format
  2734. msgid "Error processing contents %s"
  2735. msgstr "%s içeriğini işlemede hata"
  2736. #: ftparchive/apt-ftparchive.cc:616
  2737. msgid ""
  2738. "Usage: apt-ftparchive [options] command\n"
  2739. "Commands: packages binarypath [overridefile [pathprefix]]\n"
  2740. " sources srcpath [overridefile [pathprefix]]\n"
  2741. " contents path\n"
  2742. " release path\n"
  2743. " generate config [groups]\n"
  2744. " clean config\n"
  2745. "\n"
  2746. "apt-ftparchive generates index files for Debian archives. It supports\n"
  2747. "many styles of generation from fully automated to functional replacements\n"
  2748. "for dpkg-scanpackages and dpkg-scansources\n"
  2749. "\n"
  2750. "apt-ftparchive generates Package files from a tree of .debs. The\n"
  2751. "Package file contains the contents of all the control fields from\n"
  2752. "each package as well as the MD5 hash and filesize. An override file\n"
  2753. "is supported to force the value of Priority and Section.\n"
  2754. "\n"
  2755. "Similarly apt-ftparchive generates Sources files from a tree of .dscs.\n"
  2756. "The --source-override option can be used to specify a src override file\n"
  2757. "\n"
  2758. "The 'packages' and 'sources' command should be run in the root of the\n"
  2759. "tree. BinaryPath should point to the base of the recursive search and \n"
  2760. "override file should contain the override flags. Pathprefix is\n"
  2761. "appended to the filename fields if present. Example usage from the \n"
  2762. "Debian archive:\n"
  2763. " apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
  2764. " dists/potato/main/binary-i386/Packages\n"
  2765. "\n"
  2766. "Options:\n"
  2767. " -h This help text\n"
  2768. " --md5 Control MD5 generation\n"
  2769. " -s=? Source override file\n"
  2770. " -q Quiet\n"
  2771. " -d=? Select the optional caching database\n"
  2772. " --no-delink Enable delinking debug mode\n"
  2773. " --contents Control contents file generation\n"
  2774. " -c=? Read this configuration file\n"
  2775. " -o=? Set an arbitrary configuration option"
  2776. msgstr ""
  2777. "Kullanım: apt-ftparchive [seçenekler] komut\n"
  2778. "Komutlar: packages ikilikonumu [geçersizkılmadosyası [konumöneki]]\n"
  2779. " sources kaynakkonumu [geçersizkılmadosyası [konumöneki]]\n"
  2780. " contents konum\n"
  2781. " release konum\n"
  2782. " generate yapılandırma [gruplar]\n"
  2783. " clean yapılandırma\n"
  2784. "\n"
  2785. "apt-ftparchive Debian arşivleri için indeks dosyaları üretir. \n"
  2786. "dpkg-scanpackages ve dpkg-scansources için tamamen otomatikten\n"
  2787. "işlevsel yedeklere kadar birçok üretim çeşidini destekler.\n"
  2788. "\n"
  2789. "apt-ftparchive, .deb dizinlerinden 'Package' dosyaları üretir. 'Package'\n"
  2790. "dosyası, her paketin MD5 doğrulama ve dosya büyüklüğü gibi denetim\n"
  2791. "alanlarının bilgilerini içerir. Öncelik (Priority) ve bölüm (Section)\n"
  2792. "değerlerini istenen başka değerlerle değiştirebilmek için bir geçersiz\n"
  2793. "kılma dosyası kullanılabilir.\n"
  2794. "\n"
  2795. "Benzer şekilde, apt-ftparchive, .dscs dosyalarından 'Sources' dosyaları\n"
  2796. "üretir. '--source-override' seçeneği bir src geçersiz kılma dosyası\n"
  2797. "belirtmek için kullanıabilir.\n"
  2798. "\n"
  2799. "'packages' ve 'sources' komutları dizin ağacının kökünde çalıştırıl-\n"
  2800. "malıdır. BinaryPath özyineli aramanın temeline işaret etmeli ve\n"
  2801. "geçersiz kılma dosyası geçersiz kılma bayraklarını içermelidir.\n"
  2802. "Pathprefix mevcutsa dosya adı alanlarının sonuna eklenir. Debian\n"
  2803. "arşivinden örnek kullanım şu şekildedir:\n"
  2804. "\n"
  2805. " apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
  2806. " dists/potato/main/binary-i386/Packages\n"
  2807. "\n"
  2808. "Seçenekler:\n"
  2809. " -h Bu yardım metni\n"
  2810. " --md5 MD5 üretimini denetle\n"
  2811. " -s=? Kaynak geçersiz kılma dosyası\n"
  2812. " -q Sessiz\n"
  2813. " -d=? Seçimlik önbellek veritabanını seç\n"
  2814. " --no-delink Bağ kurulmamış hata ayıklama kipini etkinleştir\n"
  2815. " --contents İçerik dosyası üretimini denetle\n"
  2816. " -c=? Belirtilen yapılandırma dosyası kullan\n"
  2817. " -o=? Yapılandırma seçeneği ayarla"
  2818. #: ftparchive/apt-ftparchive.cc:812
  2819. msgid "No selections matched"
  2820. msgstr "Hiçbir seçim eşleşmedi"
  2821. #: ftparchive/apt-ftparchive.cc:892
  2822. #, c-format
  2823. msgid "Some files are missing in the package file group `%s'"
  2824. msgstr "'%s' paket dosyası grubunda bazı dosyalar eksik"
  2825. #: ftparchive/cachedb.cc:68
  2826. #, c-format
  2827. msgid "DB was corrupted, file renamed to %s.old"
  2828. msgstr "Veritabanı bozuk, dosya adı %s.old olarak değiştirildi"
  2829. #: ftparchive/cachedb.cc:86
  2830. #, c-format
  2831. msgid "DB is old, attempting to upgrade %s"
  2832. msgstr "Veritabanı eski, %s yükseltilmeye çalışılıyor"
  2833. #: ftparchive/cachedb.cc:97
  2834. msgid ""
  2835. "DB format is invalid. If you upgraded from an older version of apt, please "
  2836. "remove and re-create the database."
  2837. msgstr ""
  2838. "Veritabanı biçimi geçersiz. Eğer apt'ın eski bir sürümünden yükseltme "
  2839. "yaptıysanız, lütfen veritabanını silin ve yeniden oluşturun."
  2840. #: ftparchive/cachedb.cc:102
  2841. #, c-format
  2842. msgid "Unable to open DB file %s: %s"
  2843. msgstr "Veritabanı dosyası %s açılamadı: %s"
  2844. #: ftparchive/cachedb.cc:185 apt-inst/extract.cc:186 apt-inst/extract.cc:199
  2845. #: apt-inst/extract.cc:216
  2846. #, c-format
  2847. msgid "Failed to stat %s"
  2848. msgstr "%s durum bilgisi alınamadı"
  2849. #: ftparchive/cachedb.cc:327
  2850. msgid "Failed to read .dsc"
  2851. msgstr ".dsc dosyası okunamadı"
  2852. #: ftparchive/cachedb.cc:360
  2853. msgid "Archive has no control record"
  2854. msgstr "Arşivin denetim kaydı yok"
  2855. #: ftparchive/cachedb.cc:527
  2856. msgid "Unable to get a cursor"
  2857. msgstr "İmleç alınamıyor"
  2858. #: ftparchive/writer.cc:104
  2859. #, c-format
  2860. msgid "W: Unable to read directory %s\n"
  2861. msgstr "U: %s dizini okunamıyor\n"
  2862. #: ftparchive/writer.cc:109
  2863. #, c-format
  2864. msgid "W: Unable to stat %s\n"
  2865. msgstr "U: %s durum bilgisi alınamıyor\n"
  2866. #: ftparchive/writer.cc:165
  2867. msgid "E: "
  2868. msgstr "H: "
  2869. #: ftparchive/writer.cc:167
  2870. msgid "W: "
  2871. msgstr "U: "
  2872. #: ftparchive/writer.cc:174
  2873. msgid "E: Errors apply to file "
  2874. msgstr "H: Hatalar şu dosya için geçerli: "
  2875. #: ftparchive/writer.cc:192 ftparchive/writer.cc:224
  2876. #, c-format
  2877. msgid "Failed to resolve %s"
  2878. msgstr "%s çözümlenemedi"
  2879. #: ftparchive/writer.cc:205
  2880. msgid "Tree walking failed"
  2881. msgstr "Ağaçta gezinme başarısız"
  2882. #: ftparchive/writer.cc:232
  2883. #, c-format
  2884. msgid "Failed to open %s"
  2885. msgstr "%s açılamadı"
  2886. #: ftparchive/writer.cc:291
  2887. #, c-format
  2888. msgid " DeLink %s [%s]\n"
  2889. msgstr " DeLink %s [%s]\n"
  2890. #: ftparchive/writer.cc:299
  2891. #, c-format
  2892. msgid "Failed to readlink %s"
  2893. msgstr "%s readlink çağrısı başarısız oldu"
  2894. #: ftparchive/writer.cc:303
  2895. #, c-format
  2896. msgid "Failed to unlink %s"
  2897. msgstr "%s bağı koparılamadı"
  2898. #: ftparchive/writer.cc:311
  2899. #, c-format
  2900. msgid "*** Failed to link %s to %s"
  2901. msgstr "*** %s, %s konumuna bağlanamadı"
  2902. #: ftparchive/writer.cc:321
  2903. #, c-format
  2904. msgid " DeLink limit of %sB hit.\n"
  2905. msgstr " %sB'lik bağ koparma (DeLink) sınırına ulaşıldı.\n"
  2906. #: ftparchive/writer.cc:426
  2907. msgid "Archive had no package field"
  2908. msgstr "Arşivde paket alanı yok"
  2909. #: ftparchive/writer.cc:434 ftparchive/writer.cc:698
  2910. #, c-format
  2911. msgid " %s has no override entry\n"
  2912. msgstr " %s için geçersiz kılma girdisi yok\n"
  2913. #: ftparchive/writer.cc:501 ftparchive/writer.cc:855
  2914. #, c-format
  2915. msgid " %s maintainer is %s not %s\n"
  2916. msgstr " %s geliştiricisi %s, %s değil\n"
  2917. #: ftparchive/writer.cc:712
  2918. #, c-format
  2919. msgid " %s has no source override entry\n"
  2920. msgstr " '%s' paketinin yerine geçecek bir kaynak paket yok\n"
  2921. #: ftparchive/writer.cc:716
  2922. #, c-format
  2923. msgid " %s has no binary override entry either\n"
  2924. msgstr " '%s' paketinin yerine geçecek bir ikili paket de yok\n"
  2925. #: ftparchive/contents.cc:353 ftparchive/contents.cc:384
  2926. msgid "realloc - Failed to allocate memory"
  2927. msgstr "realloc - Bellek ayırma yapılamadı"
  2928. #: ftparchive/override.cc:38 ftparchive/override.cc:142
  2929. #, c-format
  2930. msgid "Unable to open %s"
  2931. msgstr "%s açılamıyor"
  2932. #. skip spaces
  2933. #. find end of word
  2934. #: ftparchive/override.cc:68
  2935. #, c-format
  2936. msgid "Malformed override %s line %llu (%s)"
  2937. msgstr "Hatalı geçersiz kılma %s satır %llu (%s)"
  2938. #: ftparchive/override.cc:127 ftparchive/override.cc:201
  2939. #, c-format
  2940. msgid "Failed to read the override file %s"
  2941. msgstr "Geçersiz kılma dosyası %s okunamadı"
  2942. #: ftparchive/override.cc:166
  2943. #, c-format
  2944. msgid "Malformed override %s line %llu #1"
  2945. msgstr "Hatalı geçersiz kılma %s satır %llu #1"
  2946. #: ftparchive/override.cc:178
  2947. #, c-format
  2948. msgid "Malformed override %s line %llu #2"
  2949. msgstr "Hatalı geçersiz kılma %s satır %llu #2"
  2950. #: ftparchive/override.cc:191
  2951. #, c-format
  2952. msgid "Malformed override %s line %llu #3"
  2953. msgstr "Hatalı geçersiz kılma %s satır %llu #3"
  2954. #: ftparchive/multicompress.cc:72
  2955. #, c-format
  2956. msgid "Unknown compression algorithm '%s'"
  2957. msgstr "Bilinmeyen sıkıştırma algoritması '%s'"
  2958. #: ftparchive/multicompress.cc:102
  2959. #, c-format
  2960. msgid "Compressed output %s needs a compression set"
  2961. msgstr "Sıkıştırılmış %s çıktısı bir sıkıştırma kümesine ihtiyaç duymaktadır"
  2962. #: ftparchive/multicompress.cc:193
  2963. msgid "Failed to fork"
  2964. msgstr "fork yapılamadı"
  2965. #: ftparchive/multicompress.cc:206
  2966. msgid "Compress child"
  2967. msgstr "Çocuğu sıkıştır"
  2968. #: ftparchive/multicompress.cc:229
  2969. #, c-format
  2970. msgid "Internal error, failed to create %s"
  2971. msgstr "İç hata, %s oluşturulamadı"
  2972. #: ftparchive/multicompress.cc:302
  2973. msgid "IO to subprocess/file failed"
  2974. msgstr "Altsürece/dosyaya GÇ işlemi başarısız oldu"
  2975. #: ftparchive/multicompress.cc:340
  2976. msgid "Failed to read while computing MD5"
  2977. msgstr "MD5 hesaplanırken okunamadı"
  2978. #: ftparchive/multicompress.cc:356
  2979. #, c-format
  2980. msgid "Problem unlinking %s"
  2981. msgstr "%s bağı koparılırken sorun çıktı"
  2982. #: ftparchive/multicompress.cc:371 apt-inst/extract.cc:194
  2983. #, c-format
  2984. msgid "Failed to rename %s to %s"
  2985. msgstr "%s, %s olarak yeniden adlandırılamadı"
  2986. #: cmdline/apt-internal-solver.cc:50
  2987. msgid ""
  2988. "Usage: apt-internal-solver\n"
  2989. "\n"
  2990. "apt-internal-solver is an interface to use the current internal\n"
  2991. "like an external resolver for the APT family for debugging or alike\n"
  2992. "\n"
  2993. "Options:\n"
  2994. " -h This help text.\n"
  2995. " -q Loggable output - no progress indicator\n"
  2996. " -c=? Read this configuration file\n"
  2997. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  2998. msgstr ""
  2999. "Kullanım: apt-internal-solver\n"
  3000. "\n"
  3001. "apt-internal-solver mevcut dâhilî çözücüyü (hata ayıklama\n"
  3002. "gibi sebeplerle) harici çözücü gibi kullanmaya yarayan bir\n"
  3003. "arayüzdür.\n"
  3004. "\n"
  3005. "Seçenekler:\n"
  3006. " -h Bu yardım metni.\n"
  3007. " -q Günlük tutmaya uygun çıktı - İlerleme göstergesi yok\n"
  3008. " -c=? Belirtilen yapılandırma dosyası kullan\n"
  3009. " -o=? Yapılandırma seçeneği ayarla, örneğin -o dir::cache=/tmp\n"
  3010. #: cmdline/apt-sortpkgs.cc:91
  3011. msgid "Unknown package record!"
  3012. msgstr "Bilinmeyen paket kaydı!"
  3013. #: cmdline/apt-sortpkgs.cc:154
  3014. msgid ""
  3015. "Usage: apt-sortpkgs [options] file1 [file2 ...]\n"
  3016. "\n"
  3017. "apt-sortpkgs is a simple tool to sort package files. The -s option is used\n"
  3018. "to indicate what kind of file it is.\n"
  3019. "\n"
  3020. "Options:\n"
  3021. " -h This help text\n"
  3022. " -s Use source file sorting\n"
  3023. " -c=? Read this configuration file\n"
  3024. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  3025. msgstr ""
  3026. "Kullanım: apt-sortpkgs [seçenekler] dosya1 [dosya2 ...]\n"
  3027. "\n"
  3028. "apt-sortpkgs, paket dosyalarını sıralayan basit bir araçtır.\n"
  3029. "-s seçeneği ne tür bir dosya olduğunu göstermekte kullanılır.\n"
  3030. "\n"
  3031. "Seçenekler:\n"
  3032. " -h Bu yardım metni\n"
  3033. " -s Kaynak dosyası sıralamayı kullan\n"
  3034. " -c=? Belirtilen yapılandırma dosyasını oku\n"
  3035. " -o=? Herhangi bir yapılandırma seçeneği ayarla, örneğin -o dir::cache=/"
  3036. "tmp\n"
  3037. #: apt-inst/filelist.cc:380
  3038. msgid "DropNode called on still linked node"
  3039. msgstr "DropNode hâlâ bağlı olan düğüm üzerinde çağrıldı"
  3040. #: apt-inst/filelist.cc:412
  3041. msgid "Failed to locate the hash element!"
  3042. msgstr "Sağlama elementi bulunamadı!"
  3043. #: apt-inst/filelist.cc:459
  3044. msgid "Failed to allocate diversion"
  3045. msgstr "Yönlendirme tahsisi başarısız oldu"
  3046. #: apt-inst/filelist.cc:464
  3047. msgid "Internal error in AddDiversion"
  3048. msgstr "AddDiversion'da iç hata"
  3049. #: apt-inst/filelist.cc:477
  3050. #, c-format
  3051. msgid "Trying to overwrite a diversion, %s -> %s and %s/%s"
  3052. msgstr "Bir yönlendirmenin üzerine yazılmaya çalışılıyor, %s -> %s ve %s/%s"
  3053. #: apt-inst/filelist.cc:506
  3054. #, c-format
  3055. msgid "Double add of diversion %s -> %s"
  3056. msgstr "Aynı dosya iki kez yönlendirilemez: %s -> %s"
  3057. #: apt-inst/filelist.cc:549
  3058. #, c-format
  3059. msgid "Duplicate conf file %s/%s"
  3060. msgstr "%s/%s yapılandırma dosyası zaten mevcut"
  3061. #: apt-inst/extract.cc:101 apt-inst/extract.cc:172
  3062. #, c-format
  3063. msgid "The path %s is too long"
  3064. msgstr "%s yolu çok uzun"
  3065. #: apt-inst/extract.cc:132
  3066. #, c-format
  3067. msgid "Unpacking %s more than once"
  3068. msgstr "%s paketi bir çok kez açıldı"
  3069. #: apt-inst/extract.cc:142
  3070. #, c-format
  3071. msgid "The directory %s is diverted"
  3072. msgstr "%s dizini yönlendirilmiş"
  3073. #: apt-inst/extract.cc:152
  3074. #, c-format
  3075. msgid "The package is trying to write to the diversion target %s/%s"
  3076. msgstr "Bu paket yönlendirme hedefine (%s/%s) yazmayı deniyor"
  3077. #: apt-inst/extract.cc:162 apt-inst/extract.cc:306
  3078. msgid "The diversion path is too long"
  3079. msgstr "Yönlendirme yolu çok uzun"
  3080. #: apt-inst/extract.cc:249
  3081. #, c-format
  3082. msgid "The directory %s is being replaced by a non-directory"
  3083. msgstr "%s dizini dizin olmayan bir öğeyle değiştirildi"
  3084. #: apt-inst/extract.cc:289
  3085. msgid "Failed to locate node in its hash bucket"
  3086. msgstr "Düğüm sağlama kovasında bulunamadı"
  3087. #: apt-inst/extract.cc:293
  3088. msgid "The path is too long"
  3089. msgstr "Yol çok uzun"
  3090. #: apt-inst/extract.cc:421
  3091. #, c-format
  3092. msgid "Overwrite package match with no version for %s"
  3093. msgstr "%s paketinin sürümü yok"
  3094. #: apt-inst/extract.cc:438
  3095. #, c-format
  3096. msgid "File %s/%s overwrites the one in the package %s"
  3097. msgstr "%s/%s dosyası %s paketindeki aynı adlı dosyanın üzerine yazmak istiyor"
  3098. #: apt-inst/extract.cc:498
  3099. #, c-format
  3100. msgid "Unable to stat %s"
  3101. msgstr "%s durum bilgisi alınamadı"
  3102. #: apt-inst/dirstream.cc:42 apt-inst/dirstream.cc:49 apt-inst/dirstream.cc:54
  3103. #, c-format
  3104. msgid "Failed to write file %s"
  3105. msgstr "%s dosyasına yazılamadı"
  3106. #: apt-inst/dirstream.cc:104
  3107. #, c-format
  3108. msgid "Failed to close file %s"
  3109. msgstr "%s dosyası kapatılamadı"
  3110. #: apt-inst/deb/debfile.cc:47 apt-inst/deb/debfile.cc:54
  3111. #: apt-inst/deb/debfile.cc:63
  3112. #, c-format
  3113. msgid "This is not a valid DEB archive, missing '%s' member"
  3114. msgstr "Bu dosya geçerli bir DEB arşivi değil, '%s' üyesi eksik"
  3115. #: apt-inst/deb/debfile.cc:132
  3116. #, c-format
  3117. msgid "Internal error, could not locate member %s"
  3118. msgstr "İç hata, %s üyesi bulunamadı"
  3119. #: apt-inst/deb/debfile.cc:227
  3120. msgid "Unparsable control file"
  3121. msgstr "Ayrıştırılamayan 'control' dosyası"
  3122. #: apt-inst/contrib/arfile.cc:76
  3123. msgid "Invalid archive signature"
  3124. msgstr "Geçersiz arşiv imzası"
  3125. #: apt-inst/contrib/arfile.cc:84
  3126. msgid "Error reading archive member header"
  3127. msgstr "Arşiv üyesi başlığı okuma hatası"
  3128. #: apt-inst/contrib/arfile.cc:96
  3129. #, c-format
  3130. msgid "Invalid archive member header %s"
  3131. msgstr "Geçersiz arşiv üyesi başlığı %s"
  3132. #: apt-inst/contrib/arfile.cc:108
  3133. msgid "Invalid archive member header"
  3134. msgstr "Geçersiz arşiv üyesi başlığı"
  3135. #: apt-inst/contrib/arfile.cc:137
  3136. msgid "Archive is too short"
  3137. msgstr "Arşiv çok kısa"
  3138. #: apt-inst/contrib/arfile.cc:141
  3139. msgid "Failed to read the archive headers"
  3140. msgstr "Arşiv başlıkları okunamadı"
  3141. #: apt-inst/contrib/extracttar.cc:123
  3142. msgid "Failed to create pipes"
  3143. msgstr "Boru oluşturulamadı"
  3144. #: apt-inst/contrib/extracttar.cc:150
  3145. msgid "Failed to exec gzip "
  3146. msgstr "Gzip çalıştırılamadı "
  3147. #: apt-inst/contrib/extracttar.cc:187 apt-inst/contrib/extracttar.cc:217
  3148. msgid "Corrupted archive"
  3149. msgstr "Bozuk arşiv"
  3150. #: apt-inst/contrib/extracttar.cc:202
  3151. msgid "Tar checksum failed, archive corrupted"
  3152. msgstr "Tar sağlama toplamı başarısız, arşiv bozulmuş"
  3153. #: apt-inst/contrib/extracttar.cc:307
  3154. #, c-format
  3155. msgid "Unknown TAR header type %u, member %s"
  3156. msgstr "Bilinmeyen TAR başlığı türü %u, üye %s"
  3157. #~ msgid "Total dependency version space: "
  3158. #~ msgstr "Toplam bağımlılık sürümü alanı: "
  3159. #~ msgid "%s %s for %s compiled on %s %s\n"
  3160. #~ msgstr "%s %s (%s için) %s %s tarihinde derlendi\n"
  3161. #~ msgid "You don't have enough free space in %s"
  3162. #~ msgstr "%s üzerinde yeterli boş alan yok"
  3163. #~ msgid "Done"
  3164. #~ msgstr "Bitti"
  3165. #~ msgid "Hit "
  3166. #~ msgstr "Bağlandı "
  3167. #~ msgid "Get:"
  3168. #~ msgstr "Alınıyor: "
  3169. #~ msgid "Ign "
  3170. #~ msgstr "Yoksay "
  3171. #~ msgid "Err "
  3172. #~ msgstr "Hata "
  3173. #~ msgid "Malformed stanza %u in source list %s (URI parse)"
  3174. #~ msgstr ""
  3175. #~ "Kaynak listesinin (%2$s) %1$u numaralı girdisi hatalı (URI ayrıştırma)"
  3176. #~ msgid "Malformed line %lu in source list %s ([option] unparseable)"
  3177. #~ msgstr ""
  3178. #~ "Kaynak listesinin (%2$s) %1$lu numaralı satırı hatalı ([seçenek] "
  3179. #~ "ayrıştırılamıyor)"
  3180. #~ msgid "Malformed line %lu in source list %s ([option] too short)"
  3181. #~ msgstr ""
  3182. #~ "Kaynak listesinin (%2$s) %1$lu numaralı satırı hatalı ([seçenek] çok kısa)"
  3183. #~ msgid "Malformed line %lu in source list %s ([%s] is not an assignment)"
  3184. #~ msgstr ""
  3185. #~ "Kaynak listesinin (%2$s) %1$lu numaralı satırı hatalı ([%3$s] bir atama "
  3186. #~ "değil)"
  3187. #~ msgid "Malformed line %lu in source list %s ([%s] has no key)"
  3188. #~ msgstr ""
  3189. #~ "Kaynak listesinin (%2$s) %1$lu numaralı satırı hatalı ([%3$s] seçeneğinin "
  3190. #~ "anahtarı yok)"
  3191. #~ msgid "Malformed line %lu in source list %s ([%s] key %s has no value)"
  3192. #~ msgstr ""
  3193. #~ "Kaynak listesinin (%2$s) %1$lu numaralı satırı hatalı ([%3$s] %4$s "
  3194. #~ "anahtarına değer atanmamış)"
  3195. #~ msgid "Malformed line %lu in source list %s (URI)"
  3196. #~ msgstr "Kaynak listesinin (%2$s) %1$lu numaralı satırı hatalı (URI)"
  3197. #~ msgid "Malformed line %lu in source list %s (dist)"
  3198. #~ msgstr "Kaynak listesinin (%2$s) %1$lu numaralı satırı hatalı (dist)"
  3199. #~ msgid "Malformed line %lu in source list %s (URI parse)"
  3200. #~ msgstr ""
  3201. #~ "Kaynak listesinin (%2$s) %1$lu numaralı satırı hatalı (URI ayrıştırma)"
  3202. #~ msgid "Malformed line %lu in source list %s (absolute dist)"
  3203. #~ msgstr "Kaynak listesinin (%2$s) %1$lu numaralı satırı hatalı (mutlak dist)"
  3204. #~ msgid "Malformed line %lu in source list %s (dist parse)"
  3205. #~ msgstr ""
  3206. #~ "Kaynak listesinin (%2$s) %1$lu numaralı satırı hatalı (dağıtım ayrıştırma)"
  3207. #~ msgid "Package %s %s was not found while processing file dependencies"
  3208. #~ msgstr "Dosya bağımlılıkları işlenirken %s %s paketi bulunamadı"
  3209. #~ msgid "Couldn't stat source package list %s"
  3210. #~ msgstr "Kaynak listesinin (%s) dosya bilgisi alınamadı"
  3211. #~ msgid "Collecting File Provides"
  3212. #~ msgstr "Dosya Sağlananları Toplanıyor"
  3213. #~ msgid "Unable to find hash sum for '%s' in Release file"
  3214. #~ msgstr "'Release' dosyasında '%s' için uygun bir sağlama toplamı bulunamadı"
  3215. #~ msgid "Vendor block %s contains no fingerprint"
  3216. #~ msgstr "Sağlayıcı bloğu %s parmak izi içermiyor"
  3217. #~ msgid "Unable to parse package file %s (2)"
  3218. #~ msgstr "Paket dosyası %s ayrıştırılamadı (2)"
  3219. #~ msgid "No keyring installed in %s."
  3220. #~ msgstr "%s dizininde kurulu bir anahtar yok."
  3221. #~ msgid "Failed to create FILE*"
  3222. #~ msgstr "DOSYA* oluşturulamadı"
  3223. #~ msgid "Is stdout a terminal?"
  3224. #~ msgstr "stdout bir uçbirim mi?"
  3225. #~ msgid "ioctl(TIOCGWINSZ) failed"
  3226. #~ msgstr "ioctl(TIOCGWINSZ) başarısız oldu"
  3227. #, fuzzy
  3228. #~ msgid "Internal error, Upgrade broke stuff"
  3229. #~ msgstr "İç hata, AllUpgrade bazı şeyleri bozdu"
  3230. #~ msgid "%s not a valid DEB package."
  3231. #~ msgstr "%s geçerli bir DEB paketi değil."
  3232. #~ msgid ""
  3233. #~ "Using CD-ROM mount point %s\n"
  3234. #~ "Mounting CD-ROM\n"
  3235. #~ msgstr ""
  3236. #~ "CD-ROM bağlama noktası %s kullanılıyor\n"
  3237. #~ "CD-ROM bağlanıyor\n"
  3238. #~ msgid ""
  3239. #~ "Could not patch %s with mmap and with file operation usage - the patch "
  3240. #~ "seems to be corrupt."
  3241. #~ msgstr ""
  3242. #~ "%s mmap ve dosya işlem kullanımı ile yamalanamadı - yama bozuk gibi "
  3243. #~ "duruyor."
  3244. #~ msgid ""
  3245. #~ "Could not patch %s with mmap (but no mmap specific fail) - the patch "
  3246. #~ "seems to be corrupt."
  3247. #~ msgstr ""
  3248. #~ "%s mmap ile yamalanamadı (mmap'e özel bir hata değil) - yama bozuk gibi "
  3249. #~ "duruyor."
  3250. #~ msgid "Ignore unavailable target release '%s' of package '%s'"
  3251. #~ msgstr "Mevcut olmayan hedef '%s' sürüm '%s' paketini ihmal et"
  3252. #~ msgid "Downloading %s %s"
  3253. #~ msgstr "İndiriliyor %s %s"
  3254. #~ msgid "This is not a valid DEB archive, it has no '%s', '%s' or '%s' member"
  3255. #~ msgstr ""
  3256. #~ "Bu dosya geçerli bir DEB arşivi değil, '%s', '%s' ya da '%s' üyesi yok"
  3257. #~ msgid "MD5Sum mismatch"
  3258. #~ msgstr "MD5 toplamı eşleşmiyor"
  3259. #~ msgid ""
  3260. #~ "I wasn't able to locate a file for the %s package. This might mean you "
  3261. #~ "need to manually fix this package."
  3262. #~ msgstr ""
  3263. #~ "%s paketindeki dosyalardan biri konumlandırılamadı. Bu durum, bu paketi "
  3264. #~ "elle düzeltmeniz gerektiği anlamına gelebilir."
  3265. #~ msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
  3266. #~ msgstr ""
  3267. #~ "Günlük yazılamadı, openpty() başarısız oldu (/dev/pts bağlanmadı mı?)\n"
  3268. #~ msgid "File %s doesn't start with a clearsigned message"
  3269. #~ msgstr "%s dosyası açıkimzalı bir iletiyle başlamıyor"