tr.po 115 KB

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