tr.po 116 KB

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