ar.po 89 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303
  1. # translation of apt_po.po to Arabic
  2. # This file is put in the public domain.
  3. #
  4. # Ossama M. Khayat <okhayat@yahoo.com>, 2005, 2006.
  5. msgid ""
  6. msgstr ""
  7. "Project-Id-Version: apt_po\n"
  8. "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n"
  9. "POT-Creation-Date: 2013-05-16 11:28+0200\n"
  10. "PO-Revision-Date: 2006-10-20 21:28+0300\n"
  11. "Last-Translator: Ossama M. Khayat <okhayat@yahoo.com>\n"
  12. "Language-Team: Arabic <support@arabeyes.org>\n"
  13. "Language: ar\n"
  14. "MIME-Version: 1.0\n"
  15. "Content-Type: text/plain; charset=UTF-8\n"
  16. "Content-Transfer-Encoding: 8bit\n"
  17. "X-Poedit-Language: Arabic\n"
  18. "X-Poedit-Country: Lebanon\n"
  19. "X-Poedit-SourceCharset: utf-8\n"
  20. "X-Generator: KBabel 1.11.4\n"
  21. #: cmdline/apt-cache.cc:158
  22. #, c-format
  23. msgid "Package %s version %s has an unmet dep:\n"
  24. msgstr "الحزمة %s النسخة %s لها معتمد غير مستوفى:\n"
  25. #: cmdline/apt-cache.cc:286
  26. msgid "Total package names: "
  27. msgstr "أسماء الحزم الكلية :"
  28. #: cmdline/apt-cache.cc:288
  29. #, fuzzy
  30. msgid "Total package structures: "
  31. msgstr "أسماء الحزم الكلية :"
  32. #: cmdline/apt-cache.cc:328
  33. msgid " Normal packages: "
  34. msgstr " الحزم العادية:"
  35. #: cmdline/apt-cache.cc:329
  36. msgid " Pure virtual packages: "
  37. msgstr "الحزمة الوهمية تماماً:"
  38. #: cmdline/apt-cache.cc:330
  39. msgid " Single virtual packages: "
  40. msgstr " الحزمة الوهمية المفردة:"
  41. #: cmdline/apt-cache.cc:331
  42. msgid " Mixed virtual packages: "
  43. msgstr " الحزم الوهمية المختلطة:"
  44. #: cmdline/apt-cache.cc:332
  45. msgid " Missing: "
  46. msgstr " مفقودة:"
  47. #: cmdline/apt-cache.cc:334
  48. msgid "Total distinct versions: "
  49. msgstr "مجموع النسخ الفريدة:"
  50. #: cmdline/apt-cache.cc:336
  51. #, fuzzy
  52. msgid "Total distinct descriptions: "
  53. msgstr "مجموع النسخ الفريدة:"
  54. #: cmdline/apt-cache.cc:338
  55. msgid "Total dependencies: "
  56. msgstr "مجموع المعتمدات:"
  57. #: cmdline/apt-cache.cc:341
  58. msgid "Total ver/file relations: "
  59. msgstr "مجموع علاقات النسخ/الملفات:"
  60. #: cmdline/apt-cache.cc:343
  61. #, fuzzy
  62. msgid "Total Desc/File relations: "
  63. msgstr "مجموع علاقات النسخ/الملفات:"
  64. #: cmdline/apt-cache.cc:345
  65. msgid "Total Provides mappings: "
  66. msgstr "مجموع علاقات النسخ/الملفات:"
  67. #: cmdline/apt-cache.cc:357
  68. msgid "Total globbed strings: "
  69. msgstr ""
  70. #: cmdline/apt-cache.cc:371
  71. msgid "Total dependency version space: "
  72. msgstr ""
  73. #: cmdline/apt-cache.cc:376
  74. msgid "Total slack space: "
  75. msgstr ""
  76. #: cmdline/apt-cache.cc:384
  77. msgid "Total space accounted for: "
  78. msgstr "مجموع المساحة المحسوب حسابها:"
  79. #: cmdline/apt-cache.cc:515 cmdline/apt-cache.cc:1147
  80. #, c-format
  81. msgid "Package file %s is out of sync."
  82. msgstr ""
  83. #: cmdline/apt-cache.cc:593 cmdline/apt-cache.cc:1382
  84. #: cmdline/apt-cache.cc:1384 cmdline/apt-cache.cc:1461 cmdline/apt-mark.cc:46
  85. #: cmdline/apt-mark.cc:93 cmdline/apt-mark.cc:219
  86. msgid "No packages found"
  87. msgstr "لم يُعثر على أية حزم"
  88. #: cmdline/apt-cache.cc:1226
  89. #, fuzzy
  90. msgid "You must give at least one search pattern"
  91. msgstr "يجب أن تعطي صيغة واحدة بالضبط"
  92. #: cmdline/apt-cache.cc:1361
  93. msgid "This command is deprecated. Please use 'apt-mark showauto' instead."
  94. msgstr ""
  95. #: cmdline/apt-cache.cc:1456 apt-pkg/cacheset.cc:510
  96. #, c-format
  97. msgid "Unable to locate package %s"
  98. msgstr "تعذر العثور على الحزمة %s"
  99. #: cmdline/apt-cache.cc:1486
  100. msgid "Package files:"
  101. msgstr "ملفات الحزم:"
  102. #: cmdline/apt-cache.cc:1493 cmdline/apt-cache.cc:1584
  103. msgid "Cache is out of sync, can't x-ref a package file"
  104. msgstr ""
  105. #. Show any packages have explicit pins
  106. #: cmdline/apt-cache.cc:1507
  107. msgid "Pinned packages:"
  108. msgstr "الحزم المُدبّسة:"
  109. #: cmdline/apt-cache.cc:1519 cmdline/apt-cache.cc:1564
  110. msgid "(not found)"
  111. msgstr "(غير موجود)"
  112. #: cmdline/apt-cache.cc:1527
  113. msgid " Installed: "
  114. msgstr " مُثبّت:"
  115. #: cmdline/apt-cache.cc:1528
  116. msgid " Candidate: "
  117. msgstr " مرشّح: "
  118. #: cmdline/apt-cache.cc:1546 cmdline/apt-cache.cc:1554
  119. msgid "(none)"
  120. msgstr "(لاشيء)"
  121. #: cmdline/apt-cache.cc:1561
  122. msgid " Package pin: "
  123. msgstr ""
  124. #. Show the priority tables
  125. #: cmdline/apt-cache.cc:1570
  126. msgid " Version table:"
  127. msgstr " جدول النسخ:"
  128. #: cmdline/apt-cache.cc:1683 cmdline/apt-cdrom.cc:198 cmdline/apt-config.cc:81
  129. #: cmdline/apt-get.cc:3363 cmdline/apt-mark.cc:375
  130. #: cmdline/apt-extracttemplates.cc:229 ftparchive/apt-ftparchive.cc:591
  131. #: cmdline/apt-internal-solver.cc:33 cmdline/apt-sortpkgs.cc:147
  132. #, fuzzy, c-format
  133. msgid "%s %s for %s compiled on %s %s\n"
  134. msgstr "%s %s لـ%s %s مُجمّع على %s %s\n"
  135. #: cmdline/apt-cache.cc:1690
  136. msgid ""
  137. "Usage: apt-cache [options] command\n"
  138. " apt-cache [options] showpkg pkg1 [pkg2 ...]\n"
  139. " apt-cache [options] showsrc pkg1 [pkg2 ...]\n"
  140. "\n"
  141. "apt-cache is a low-level tool used to query information\n"
  142. "from APT's binary cache files\n"
  143. "\n"
  144. "Commands:\n"
  145. " gencaches - Build both the package and source cache\n"
  146. " showpkg - Show some general information for a single package\n"
  147. " showsrc - Show source records\n"
  148. " stats - Show some basic statistics\n"
  149. " dump - Show the entire file in a terse form\n"
  150. " dumpavail - Print an available file to stdout\n"
  151. " unmet - Show unmet dependencies\n"
  152. " search - Search the package list for a regex pattern\n"
  153. " show - Show a readable record for the package\n"
  154. " depends - Show raw dependency information for a package\n"
  155. " rdepends - Show reverse dependency information for a package\n"
  156. " pkgnames - List the names of all packages in the system\n"
  157. " dotty - Generate package graphs for GraphViz\n"
  158. " xvcg - Generate package graphs for xvcg\n"
  159. " policy - Show policy settings\n"
  160. "\n"
  161. "Options:\n"
  162. " -h This help text.\n"
  163. " -p=? The package cache.\n"
  164. " -s=? The source cache.\n"
  165. " -q Disable progress indicator.\n"
  166. " -i Show only important deps for the unmet command.\n"
  167. " -c=? Read this configuration file\n"
  168. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  169. "See the apt-cache(8) and apt.conf(5) manual pages for more information.\n"
  170. msgstr ""
  171. #: cmdline/apt-cdrom.cc:79
  172. #, fuzzy
  173. msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'"
  174. msgstr "الرجاء كتابة اسم لهذا القرص، مثال 'Debian 2.1r1 Disk 1'"
  175. #: cmdline/apt-cdrom.cc:94
  176. msgid "Please insert a Disc in the drive and press enter"
  177. msgstr "الرجاء إدخال قرص في السواقة وضغط الزر enter"
  178. #: cmdline/apt-cdrom.cc:129
  179. #, fuzzy, c-format
  180. msgid "Failed to mount '%s' to '%s'"
  181. msgstr "فشل تغيير اسم %s إلى %s"
  182. #: cmdline/apt-cdrom.cc:163
  183. msgid "Repeat this process for the rest of the CDs in your set."
  184. msgstr "كرر هذه العملية لباقي الأقراص المدمجة في المجموعة."
  185. #: cmdline/apt-config.cc:46
  186. msgid "Arguments not in pairs"
  187. msgstr ""
  188. #: cmdline/apt-config.cc:87
  189. msgid ""
  190. "Usage: apt-config [options] command\n"
  191. "\n"
  192. "apt-config is a simple tool to read the APT config file\n"
  193. "\n"
  194. "Commands:\n"
  195. " shell - Shell mode\n"
  196. " dump - Show the configuration\n"
  197. "\n"
  198. "Options:\n"
  199. " -h This help text.\n"
  200. " -c=? Read this configuration file\n"
  201. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  202. msgstr ""
  203. #: cmdline/apt-get.cc:135
  204. msgid "Y"
  205. msgstr "Y"
  206. #: cmdline/apt-get.cc:140
  207. msgid "N"
  208. msgstr ""
  209. #: cmdline/apt-get.cc:162 apt-pkg/cachefilter.cc:33
  210. #, c-format
  211. msgid "Regex compilation error - %s"
  212. msgstr ""
  213. #: cmdline/apt-get.cc:260
  214. msgid "The following packages have unmet dependencies:"
  215. msgstr ""
  216. #: cmdline/apt-get.cc:350
  217. #, c-format
  218. msgid "but %s is installed"
  219. msgstr "إلا أن %s مثبت"
  220. #: cmdline/apt-get.cc:352
  221. #, c-format
  222. msgid "but %s is to be installed"
  223. msgstr "إلا أنه سيتم تثبيت %s"
  224. #: cmdline/apt-get.cc:359
  225. msgid "but it is not installable"
  226. msgstr "إلا أنه غير قابل للتثبيت"
  227. #: cmdline/apt-get.cc:361
  228. msgid "but it is a virtual package"
  229. msgstr "إلا أنها حزمة وهمية"
  230. #: cmdline/apt-get.cc:364
  231. msgid "but it is not installed"
  232. msgstr "إلا أنها غير مثبتة"
  233. #: cmdline/apt-get.cc:364
  234. msgid "but it is not going to be installed"
  235. msgstr "إلا أنه لن يتم تثبيتها"
  236. #: cmdline/apt-get.cc:369
  237. msgid " or"
  238. msgstr " أو"
  239. #: cmdline/apt-get.cc:398
  240. msgid "The following NEW packages will be installed:"
  241. msgstr "سيتم تثبيت الحزم الجديدة التالية:"
  242. #: cmdline/apt-get.cc:424
  243. msgid "The following packages will be REMOVED:"
  244. msgstr "سيتم إزالة الحزم التالية:"
  245. #: cmdline/apt-get.cc:446
  246. msgid "The following packages have been kept back:"
  247. msgstr "سيتم الإبقاء على الحزم التالية:"
  248. #: cmdline/apt-get.cc:467
  249. msgid "The following packages will be upgraded:"
  250. msgstr "ستتم ترقية الحزم التالية:"
  251. #: cmdline/apt-get.cc:488
  252. msgid "The following packages will be DOWNGRADED:"
  253. msgstr "سيتم تثبيط الحزم التالية:"
  254. #: cmdline/apt-get.cc:508
  255. msgid "The following held packages will be changed:"
  256. msgstr "سيتم تغيير الحزم المبقاة التالية:"
  257. #: cmdline/apt-get.cc:563
  258. #, c-format
  259. msgid "%s (due to %s) "
  260. msgstr "%s (بسبب %s) "
  261. #: cmdline/apt-get.cc:571
  262. msgid ""
  263. "WARNING: The following essential packages will be removed.\n"
  264. "This should NOT be done unless you know exactly what you are doing!"
  265. msgstr ""
  266. "تحذير: ستتم إزالة الحزم الأساسية التالية.\n"
  267. "لا يجب أن تقوم بهذا إلى إن كنت تعرف تماماً ما تقوم به!"
  268. #: cmdline/apt-get.cc:602
  269. #, c-format
  270. msgid "%lu upgraded, %lu newly installed, "
  271. msgstr "%lu سيتم ترقيتها، %lu مثبتة حديثاً، "
  272. #: cmdline/apt-get.cc:606
  273. #, c-format
  274. msgid "%lu reinstalled, "
  275. msgstr "%lu أعيد تثبيتها، "
  276. #: cmdline/apt-get.cc:608
  277. #, c-format
  278. msgid "%lu downgraded, "
  279. msgstr "%lu مثبطة، "
  280. #: cmdline/apt-get.cc:610
  281. #, c-format
  282. msgid "%lu to remove and %lu not upgraded.\n"
  283. msgstr "%lu لإزالتها و %lu لم يتم ترقيتها.\n"
  284. #: cmdline/apt-get.cc:614
  285. #, c-format
  286. msgid "%lu not fully installed or removed.\n"
  287. msgstr "%lu غير مثبتة بالكامل أو مزالة.\n"
  288. #: cmdline/apt-get.cc:635
  289. #, fuzzy, c-format
  290. msgid "Note, selecting '%s' for task '%s'\n"
  291. msgstr "لاحظ، تحديد %s بسبب صيغة regex '%s'\n"
  292. #: cmdline/apt-get.cc:640
  293. #, fuzzy, c-format
  294. msgid "Note, selecting '%s' for regex '%s'\n"
  295. msgstr "لاحظ، تحديد %s بسبب صيغة regex '%s'\n"
  296. #: cmdline/apt-get.cc:657
  297. #, c-format
  298. msgid "Package %s is a virtual package provided by:\n"
  299. msgstr "الحزمة %s وهميّة وتوفّرها:\n"
  300. #: cmdline/apt-get.cc:668
  301. msgid " [Installed]"
  302. msgstr " [مُثبّتة]"
  303. #: cmdline/apt-get.cc:677
  304. msgid " [Not candidate version]"
  305. msgstr ""
  306. #: cmdline/apt-get.cc:679
  307. msgid "You should explicitly select one to install."
  308. msgstr "يجب اختيار واحدة بالتحديد لتثبيتها."
  309. #: cmdline/apt-get.cc:682
  310. #, c-format
  311. msgid ""
  312. "Package %s is not available, but is referred to by another package.\n"
  313. "This may mean that the package is missing, has been obsoleted, or\n"
  314. "is only available from another source\n"
  315. msgstr ""
  316. #: cmdline/apt-get.cc:700
  317. msgid "However the following packages replace it:"
  318. msgstr "على أيّ فإن الحزم التالية تحلّ مكانها:"
  319. #: cmdline/apt-get.cc:712
  320. #, fuzzy, c-format
  321. msgid "Package '%s' has no installation candidate"
  322. msgstr "الحزمة %s ليس لها مرشح تثبيت"
  323. #: cmdline/apt-get.cc:725
  324. #, c-format
  325. msgid "Virtual packages like '%s' can't be removed\n"
  326. msgstr ""
  327. #. TRANSLATORS: Note, this is not an interactive question
  328. #: cmdline/apt-get.cc:737 cmdline/apt-get.cc:940
  329. #, fuzzy, c-format
  330. msgid "Package '%s' is not installed, so not removed. Did you mean '%s'?\n"
  331. msgstr "الحزمة %s غير مُثبّتة، لذلك لن تُزال\n"
  332. #: cmdline/apt-get.cc:743 cmdline/apt-get.cc:946
  333. #, fuzzy, c-format
  334. msgid "Package '%s' is not installed, so not removed\n"
  335. msgstr "الحزمة %s غير مُثبّتة، لذلك لن تُزال\n"
  336. #: cmdline/apt-get.cc:788
  337. #, fuzzy, c-format
  338. msgid "Note, selecting '%s' instead of '%s'\n"
  339. msgstr "لاحظ، تحديد %s بدلاً من %s\n"
  340. #: cmdline/apt-get.cc:818
  341. #, c-format
  342. msgid "Skipping %s, it is already installed and upgrade is not set.\n"
  343. msgstr "تخطّي %s، حيث أنها مثبتة ولم يتمّ تعيين الترقية.\n"
  344. #: cmdline/apt-get.cc:822
  345. #, fuzzy, c-format
  346. msgid "Skipping %s, it is not installed and only upgrades are requested.\n"
  347. msgstr "تخطّي %s، حيث أنها مثبتة ولم يتمّ تعيين الترقية.\n"
  348. #: cmdline/apt-get.cc:834
  349. #, c-format
  350. msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n"
  351. msgstr "إعادة تثبيت %s غير ممكنة، حيث أنّه لا يمكن تنزيلها.\n"
  352. #: cmdline/apt-get.cc:839
  353. #, c-format
  354. msgid "%s is already the newest version.\n"
  355. msgstr "%s هي النسخة الأحدث.\n"
  356. #: cmdline/apt-get.cc:858 cmdline/apt-get.cc:2159 cmdline/apt-mark.cc:68
  357. #, fuzzy, c-format
  358. msgid "%s set to manually installed.\n"
  359. msgstr "إلا أنه سيتم تثبيت %s"
  360. #: cmdline/apt-get.cc:884
  361. #, fuzzy, c-format
  362. msgid "Selected version '%s' (%s) for '%s'\n"
  363. msgstr "النسخة المحددة %s (%s) للإصدارة %s\n"
  364. #: cmdline/apt-get.cc:889
  365. #, fuzzy, c-format
  366. msgid "Selected version '%s' (%s) for '%s' because of '%s'\n"
  367. msgstr "النسخة المحددة %s (%s) للإصدارة %s\n"
  368. #: cmdline/apt-get.cc:1025
  369. msgid "Correcting dependencies..."
  370. msgstr "تصحيح المعتمدات..."
  371. #: cmdline/apt-get.cc:1028
  372. msgid " failed."
  373. msgstr " فشل."
  374. #: cmdline/apt-get.cc:1031
  375. msgid "Unable to correct dependencies"
  376. msgstr "لم يمكن تصحيح المعتمدات"
  377. #: cmdline/apt-get.cc:1034
  378. msgid "Unable to minimize the upgrade set"
  379. msgstr "لم يمكن تقليص مجموعة الترقية"
  380. #: cmdline/apt-get.cc:1036
  381. msgid " Done"
  382. msgstr " تم"
  383. #: cmdline/apt-get.cc:1040
  384. msgid "You might want to run 'apt-get -f install' to correct these."
  385. msgstr "قد ترغب بتنفيذ الأمر 'apt-get -f install' لتصحيح هذه."
  386. #: cmdline/apt-get.cc:1043
  387. msgid "Unmet dependencies. Try using -f."
  388. msgstr "مُعتمدات غير مستوفاة. حاول استخدام -f."
  389. #: cmdline/apt-get.cc:1068
  390. msgid "WARNING: The following packages cannot be authenticated!"
  391. msgstr "تحذير: تعذرت المصادقة على الحزم التالية!"
  392. #: cmdline/apt-get.cc:1072
  393. msgid "Authentication warning overridden.\n"
  394. msgstr "تم غض النظر عن تحذير المصادقة.\n"
  395. #: cmdline/apt-get.cc:1079
  396. msgid "Install these packages without verification [y/N]? "
  397. msgstr "تثبيت هذه الحزم دون التحقق منها [y/N]؟ "
  398. #: cmdline/apt-get.cc:1081
  399. msgid "Some packages could not be authenticated"
  400. msgstr "تعذرت المصادقة على بعض الحزم"
  401. #: cmdline/apt-get.cc:1090 cmdline/apt-get.cc:1251
  402. msgid "There are problems and -y was used without --force-yes"
  403. msgstr "هناك مشاكل وتم استخدام -y دون --force-yes"
  404. #: cmdline/apt-get.cc:1131
  405. msgid "Internal error, InstallPackages was called with broken packages!"
  406. msgstr "خطأ داخلي، تم طلب InstallPackages مع وجود حزم معطوبة!"
  407. #: cmdline/apt-get.cc:1140
  408. msgid "Packages need to be removed but remove is disabled."
  409. msgstr "حزم بحاجة للإزالة لكن الإزالة مُعطّلة."
  410. #: cmdline/apt-get.cc:1151
  411. msgid "Internal error, Ordering didn't finish"
  412. msgstr "خطأ داخلي، لم تنته عملية الترتيب"
  413. #: cmdline/apt-get.cc:1189
  414. msgid "How odd.. The sizes didn't match, email apt@packages.debian.org"
  415. msgstr "يا للغرابة.. لم تتطابق الأحجام، الرجاء مراسلة apt@packages.debian.org"
  416. #. TRANSLATOR: The required space between number and unit is already included
  417. #. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
  418. #: cmdline/apt-get.cc:1196
  419. #, c-format
  420. msgid "Need to get %sB/%sB of archives.\n"
  421. msgstr "بحاجة إلى جلب %sب/%sب من الأرشيف.\n"
  422. #. TRANSLATOR: The required space between number and unit is already included
  423. #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
  424. #: cmdline/apt-get.cc:1201
  425. #, c-format
  426. msgid "Need to get %sB of archives.\n"
  427. msgstr "بحاجة إلى جلب %sب من الأرشيف.\n"
  428. #. TRANSLATOR: The required space between number and unit is already included
  429. #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
  430. #: cmdline/apt-get.cc:1208
  431. #, fuzzy, c-format
  432. msgid "After this operation, %sB of additional disk space will be used.\n"
  433. msgstr "بعد الاستخراج %sب من المساحة الإضافيّة سيتمّ استخدامها.\n"
  434. #. TRANSLATOR: The required space between number and unit is already included
  435. #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
  436. #: cmdline/apt-get.cc:1213
  437. #, fuzzy, c-format
  438. msgid "After this operation, %sB disk space will be freed.\n"
  439. msgstr "بعد الاستخراج %sب من المساحة ستفرّغ.\n"
  440. #: cmdline/apt-get.cc:1228 cmdline/apt-get.cc:1231 cmdline/apt-get.cc:2591
  441. #: cmdline/apt-get.cc:2594
  442. #, c-format
  443. msgid "Couldn't determine free space in %s"
  444. msgstr "تعذر حساب المساحة الحرة في %s"
  445. #: cmdline/apt-get.cc:1241
  446. #, c-format
  447. msgid "You don't have enough free space in %s."
  448. msgstr "ليس هناك مساحة كافية في %s."
  449. #: cmdline/apt-get.cc:1257 cmdline/apt-get.cc:1279
  450. msgid "Trivial Only specified but this is not a trivial operation."
  451. msgstr ""
  452. #. TRANSLATOR: This string needs to be typed by the user as a confirmation, so be
  453. #. careful with hard to type or special characters (like non-breaking spaces)
  454. #: cmdline/apt-get.cc:1261
  455. msgid "Yes, do as I say!"
  456. msgstr "نعم، افعل ما أقوله!"
  457. #: cmdline/apt-get.cc:1263
  458. #, c-format
  459. msgid ""
  460. "You are about to do something potentially harmful.\n"
  461. "To continue type in the phrase '%s'\n"
  462. " ?] "
  463. msgstr ""
  464. "أنت على وشك أن تقوم بشيء ضارّ جداً\n"
  465. "كي تستمر اكتب العبارة '%s'\n"
  466. " ؟] "
  467. #: cmdline/apt-get.cc:1269 cmdline/apt-get.cc:1288
  468. msgid "Abort."
  469. msgstr "إجهاض."
  470. #: cmdline/apt-get.cc:1284
  471. msgid "Do you want to continue [Y/n]? "
  472. msgstr "هل تريد الاستمرار [Y/n]؟"
  473. #: cmdline/apt-get.cc:1356 cmdline/apt-get.cc:2656 apt-pkg/algorithms.cc:1560
  474. #, c-format
  475. msgid "Failed to fetch %s %s\n"
  476. msgstr "فشل إحضار %s %s\n"
  477. #: cmdline/apt-get.cc:1374
  478. msgid "Some files failed to download"
  479. msgstr "فشل تنزيل بعض الملفات"
  480. #: cmdline/apt-get.cc:1375 cmdline/apt-get.cc:2668
  481. msgid "Download complete and in download only mode"
  482. msgstr "اكتمل التنزيل وفي وضع التنزيل فقط"
  483. #: cmdline/apt-get.cc:1381
  484. msgid ""
  485. "Unable to fetch some archives, maybe run apt-get update or try with --fix-"
  486. "missing?"
  487. msgstr ""
  488. "تعذر إحضار بعض الأرشيف، ربما يمكنك محاولة تنفيذ apt-get update أو إضافة --"
  489. "fix-missing؟"
  490. #: cmdline/apt-get.cc:1385
  491. msgid "--fix-missing and media swapping is not currently supported"
  492. msgstr "--fix-missing وتبديل الأوساط غير مدعومة حالياً"
  493. #: cmdline/apt-get.cc:1390
  494. msgid "Unable to correct missing packages."
  495. msgstr "تعذر تصحيح الحزم المفقودة."
  496. #: cmdline/apt-get.cc:1391
  497. msgid "Aborting install."
  498. msgstr "إجهاض التثبيت."
  499. #: cmdline/apt-get.cc:1419
  500. msgid ""
  501. "The following package disappeared from your system as\n"
  502. "all files have been overwritten by other packages:"
  503. msgid_plural ""
  504. "The following packages disappeared from your system as\n"
  505. "all files have been overwritten by other packages:"
  506. msgstr[0] ""
  507. msgstr[1] ""
  508. #: cmdline/apt-get.cc:1423
  509. msgid "Note: This is done automatically and on purpose by dpkg."
  510. msgstr ""
  511. #: cmdline/apt-get.cc:1561
  512. #, c-format
  513. msgid "Ignore unavailable target release '%s' of package '%s'"
  514. msgstr ""
  515. #: cmdline/apt-get.cc:1593
  516. #, c-format
  517. msgid "Picking '%s' as source package instead of '%s'\n"
  518. msgstr ""
  519. #. if (VerTag.empty() == false && Last == 0)
  520. #: cmdline/apt-get.cc:1631
  521. #, c-format
  522. msgid "Ignore unavailable version '%s' of package '%s'"
  523. msgstr ""
  524. #: cmdline/apt-get.cc:1647
  525. msgid "The update command takes no arguments"
  526. msgstr "لا يقبل الأمر update أية مُعطيات"
  527. #: cmdline/apt-get.cc:1713
  528. msgid "We are not supposed to delete stuff, can't start AutoRemover"
  529. msgstr ""
  530. #: cmdline/apt-get.cc:1817
  531. msgid ""
  532. "Hmm, seems like the AutoRemover destroyed something which really\n"
  533. "shouldn't happen. Please file a bug report against apt."
  534. msgstr ""
  535. #.
  536. #. if (Packages == 1)
  537. #. {
  538. #. c1out << endl;
  539. #. c1out <<
  540. #. _("Since you only requested a single operation it is extremely likely that\n"
  541. #. "the package is simply not installable and a bug report against\n"
  542. #. "that package should be filed.") << endl;
  543. #. }
  544. #.
  545. #: cmdline/apt-get.cc:1820 cmdline/apt-get.cc:1989
  546. msgid "The following information may help to resolve the situation:"
  547. msgstr "قد تساعد المعلومات التالية في حل المشكلة:"
  548. #: cmdline/apt-get.cc:1824
  549. #, fuzzy
  550. msgid "Internal Error, AutoRemover broke stuff"
  551. msgstr "خطأ داخلي، عطب AllUpgrade بعض الأشياء"
  552. #: cmdline/apt-get.cc:1831
  553. #, fuzzy
  554. msgid ""
  555. "The following package was automatically installed and is no longer required:"
  556. msgid_plural ""
  557. "The following packages were automatically installed and are no longer "
  558. "required:"
  559. msgstr[0] "سيتم تثبيت الحزم الجديدة التالية:"
  560. msgstr[1] "سيتم تثبيت الحزم الجديدة التالية:"
  561. #: cmdline/apt-get.cc:1835
  562. #, fuzzy, c-format
  563. msgid "%lu package was automatically installed and is no longer required.\n"
  564. msgid_plural ""
  565. "%lu packages were automatically installed and are no longer required.\n"
  566. msgstr[0] "سيتم تثبيت الحزم الجديدة التالية:"
  567. msgstr[1] "سيتم تثبيت الحزم الجديدة التالية:"
  568. #: cmdline/apt-get.cc:1837
  569. msgid "Use 'apt-get autoremove' to remove it."
  570. msgid_plural "Use 'apt-get autoremove' to remove them."
  571. msgstr[0] ""
  572. msgstr[1] ""
  573. #: cmdline/apt-get.cc:1856
  574. msgid "Internal error, AllUpgrade broke stuff"
  575. msgstr "خطأ داخلي، عطب AllUpgrade بعض الأشياء"
  576. #: cmdline/apt-get.cc:1955
  577. msgid "You might want to run 'apt-get -f install' to correct these:"
  578. msgstr "قد ترغب بتشغيل 'apt-get -f install' لتصحيح هذه:"
  579. #: cmdline/apt-get.cc:1959
  580. msgid ""
  581. "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a "
  582. "solution)."
  583. msgstr ""
  584. "مُعتمدات غير مستوفاة. جرب 'apt-get -f install' بدون أسماء حزم (أو حدّد حلاً)."
  585. #: cmdline/apt-get.cc:1974
  586. msgid ""
  587. "Some packages could not be installed. This may mean that you have\n"
  588. "requested an impossible situation or if you are using the unstable\n"
  589. "distribution that some required packages have not yet been created\n"
  590. "or been moved out of Incoming."
  591. msgstr ""
  592. #: cmdline/apt-get.cc:1995
  593. msgid "Broken packages"
  594. msgstr "حزم معطوبة"
  595. #: cmdline/apt-get.cc:2021
  596. msgid "The following extra packages will be installed:"
  597. msgstr "سيتم تثبيت الحزم الإضافيّة التالية:"
  598. #: cmdline/apt-get.cc:2111
  599. msgid "Suggested packages:"
  600. msgstr "الحزم المقترحة:"
  601. #: cmdline/apt-get.cc:2112
  602. msgid "Recommended packages:"
  603. msgstr "الحزم المستحسنة:"
  604. #: cmdline/apt-get.cc:2154
  605. #, c-format
  606. msgid "Couldn't find package %s"
  607. msgstr "تعذر العثور على الحزمة %s"
  608. #: cmdline/apt-get.cc:2161 cmdline/apt-mark.cc:70
  609. #, fuzzy, c-format
  610. msgid "%s set to automatically installed.\n"
  611. msgstr "إلا أنه سيتم تثبيت %s"
  612. #: cmdline/apt-get.cc:2169 cmdline/apt-mark.cc:114
  613. msgid ""
  614. "This command is deprecated. Please use 'apt-mark auto' and 'apt-mark manual' "
  615. "instead."
  616. msgstr ""
  617. #: cmdline/apt-get.cc:2185
  618. msgid "Calculating upgrade... "
  619. msgstr "حساب الترقية..."
  620. #: cmdline/apt-get.cc:2188 methods/ftp.cc:711 methods/connect.cc:116
  621. msgid "Failed"
  622. msgstr "فشل"
  623. #: cmdline/apt-get.cc:2193
  624. msgid "Done"
  625. msgstr "تمّ"
  626. #: cmdline/apt-get.cc:2260 cmdline/apt-get.cc:2268
  627. msgid "Internal error, problem resolver broke stuff"
  628. msgstr ""
  629. #: cmdline/apt-get.cc:2296 cmdline/apt-get.cc:2332
  630. msgid "Unable to lock the download directory"
  631. msgstr "تعذر قَفْل دليل التنزيل"
  632. #: cmdline/apt-get.cc:2388
  633. #, c-format
  634. msgid "Can't find a source to download version '%s' of '%s'"
  635. msgstr ""
  636. #: cmdline/apt-get.cc:2393
  637. #, c-format
  638. msgid "Downloading %s %s"
  639. msgstr ""
  640. #: cmdline/apt-get.cc:2453
  641. msgid "Must specify at least one package to fetch source for"
  642. msgstr "يجب تحديد حزمة واحدة على الأقل لجلب مصدرها"
  643. #: cmdline/apt-get.cc:2493 cmdline/apt-get.cc:2805
  644. #, c-format
  645. msgid "Unable to find a source package for %s"
  646. msgstr "تعذر العثور على مصدر الحزمة %s"
  647. #: cmdline/apt-get.cc:2510
  648. #, c-format
  649. msgid ""
  650. "NOTICE: '%s' packaging is maintained in the '%s' version control system at:\n"
  651. "%s\n"
  652. msgstr ""
  653. #: cmdline/apt-get.cc:2515
  654. #, c-format
  655. msgid ""
  656. "Please use:\n"
  657. "bzr branch %s\n"
  658. "to retrieve the latest (possibly unreleased) updates to the package.\n"
  659. msgstr ""
  660. #: cmdline/apt-get.cc:2568
  661. #, c-format
  662. msgid "Skipping already downloaded file '%s'\n"
  663. msgstr "تخطي الملف '%s' المنزل مسبقاً\n"
  664. #: cmdline/apt-get.cc:2605
  665. #, c-format
  666. msgid "You don't have enough free space in %s"
  667. msgstr "ليس هناك مساحة كافية في %s"
  668. #. TRANSLATOR: The required space between number and unit is already included
  669. #. in the replacement strings, so %sB will be correctly translate in e.g. 1,5 MB
  670. #: cmdline/apt-get.cc:2614
  671. #, c-format
  672. msgid "Need to get %sB/%sB of source archives.\n"
  673. msgstr "يجب جلب %sب/%sب من الأرشيفات المصدرية.\n"
  674. #. TRANSLATOR: The required space between number and unit is already included
  675. #. in the replacement string, so %sB will be correctly translate in e.g. 1,5 MB
  676. #: cmdline/apt-get.cc:2619
  677. #, c-format
  678. msgid "Need to get %sB of source archives.\n"
  679. msgstr "يجب جلب %sب من الأرشيفات المصدريّة.\n"
  680. #: cmdline/apt-get.cc:2625
  681. #, c-format
  682. msgid "Fetch source %s\n"
  683. msgstr "إحضار المصدر %s\n"
  684. #: cmdline/apt-get.cc:2663
  685. msgid "Failed to fetch some archives."
  686. msgstr "فشل إحضار بعض الأرشيفات."
  687. #: cmdline/apt-get.cc:2694
  688. #, c-format
  689. msgid "Skipping unpack of already unpacked source in %s\n"
  690. msgstr ""
  691. #: cmdline/apt-get.cc:2706
  692. #, c-format
  693. msgid "Unpack command '%s' failed.\n"
  694. msgstr "أمر فك الحزمة '%s' فشل.\n"
  695. #: cmdline/apt-get.cc:2707
  696. #, c-format
  697. msgid "Check if the 'dpkg-dev' package is installed.\n"
  698. msgstr ""
  699. #: cmdline/apt-get.cc:2729
  700. #, c-format
  701. msgid "Build command '%s' failed.\n"
  702. msgstr "أمر البناء '%s' فشل.\n"
  703. #: cmdline/apt-get.cc:2749
  704. msgid "Child process failed"
  705. msgstr ""
  706. #: cmdline/apt-get.cc:2768
  707. msgid "Must specify at least one package to check builddeps for"
  708. msgstr ""
  709. #: cmdline/apt-get.cc:2793
  710. #, c-format
  711. msgid ""
  712. "No architecture information available for %s. See apt.conf(5) APT::"
  713. "Architectures for setup"
  714. msgstr ""
  715. #: cmdline/apt-get.cc:2817 cmdline/apt-get.cc:2820
  716. #, c-format
  717. msgid "Unable to get build-dependency information for %s"
  718. msgstr ""
  719. #: cmdline/apt-get.cc:2840
  720. #, c-format
  721. msgid "%s has no build depends.\n"
  722. msgstr ""
  723. #: cmdline/apt-get.cc:3010
  724. #, c-format
  725. msgid ""
  726. "%s dependency for %s can't be satisfied because %s is not allowed on '%s' "
  727. "packages"
  728. msgstr ""
  729. #: cmdline/apt-get.cc:3028
  730. #, c-format
  731. msgid ""
  732. "%s dependency for %s cannot be satisfied because the package %s cannot be "
  733. "found"
  734. msgstr ""
  735. #: cmdline/apt-get.cc:3051
  736. #, c-format
  737. msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new"
  738. msgstr ""
  739. #: cmdline/apt-get.cc:3090
  740. #, c-format
  741. msgid ""
  742. "%s dependency for %s cannot be satisfied because candidate version of "
  743. "package %s can't satisfy version requirements"
  744. msgstr ""
  745. #: cmdline/apt-get.cc:3096
  746. #, c-format
  747. msgid ""
  748. "%s dependency for %s cannot be satisfied because package %s has no candidate "
  749. "version"
  750. msgstr ""
  751. #: cmdline/apt-get.cc:3119
  752. #, c-format
  753. msgid "Failed to satisfy %s dependency for %s: %s"
  754. msgstr ""
  755. #: cmdline/apt-get.cc:3135
  756. #, c-format
  757. msgid "Build-dependencies for %s could not be satisfied."
  758. msgstr ""
  759. #: cmdline/apt-get.cc:3140
  760. msgid "Failed to process build dependencies"
  761. msgstr ""
  762. #: cmdline/apt-get.cc:3233 cmdline/apt-get.cc:3245
  763. #, fuzzy, c-format
  764. msgid "Changelog for %s (%s)"
  765. msgstr "الاتصال بـ%s (%s)"
  766. #: cmdline/apt-get.cc:3368
  767. msgid "Supported modules:"
  768. msgstr "الوحدات المدعومة:"
  769. #: cmdline/apt-get.cc:3409
  770. msgid ""
  771. "Usage: apt-get [options] command\n"
  772. " apt-get [options] install|remove pkg1 [pkg2 ...]\n"
  773. " apt-get [options] source pkg1 [pkg2 ...]\n"
  774. "\n"
  775. "apt-get is a simple command line interface for downloading and\n"
  776. "installing packages. The most frequently used commands are update\n"
  777. "and install.\n"
  778. "\n"
  779. "Commands:\n"
  780. " update - Retrieve new lists of packages\n"
  781. " upgrade - Perform an upgrade\n"
  782. " install - Install new packages (pkg is libc6 not libc6.deb)\n"
  783. " remove - Remove packages\n"
  784. " autoremove - Remove automatically all unused packages\n"
  785. " purge - Remove packages and config files\n"
  786. " source - Download source archives\n"
  787. " build-dep - Configure build-dependencies for source packages\n"
  788. " dist-upgrade - Distribution upgrade, see apt-get(8)\n"
  789. " dselect-upgrade - Follow dselect selections\n"
  790. " clean - Erase downloaded archive files\n"
  791. " autoclean - Erase old downloaded archive files\n"
  792. " check - Verify that there are no broken dependencies\n"
  793. " changelog - Download and display the changelog for the given package\n"
  794. " download - Download the binary package into the current directory\n"
  795. "\n"
  796. "Options:\n"
  797. " -h This help text.\n"
  798. " -q Loggable output - no progress indicator\n"
  799. " -qq No output except for errors\n"
  800. " -d Download only - do NOT install or unpack archives\n"
  801. " -s No-act. Perform ordering simulation\n"
  802. " -y Assume Yes to all queries and do not prompt\n"
  803. " -f Attempt to correct a system with broken dependencies in place\n"
  804. " -m Attempt to continue if archives are unlocatable\n"
  805. " -u Show a list of upgraded packages as well\n"
  806. " -b Build the source package after fetching it\n"
  807. " -V Show verbose version numbers\n"
  808. " -c=? Read this configuration file\n"
  809. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  810. "See the apt-get(8), sources.list(5) and apt.conf(5) manual\n"
  811. "pages for more information and options.\n"
  812. " This APT has Super Cow Powers.\n"
  813. msgstr ""
  814. #: cmdline/apt-get.cc:3574
  815. msgid ""
  816. "NOTE: This is only a simulation!\n"
  817. " apt-get needs root privileges for real execution.\n"
  818. " Keep also in mind that locking is deactivated,\n"
  819. " so don't depend on the relevance to the real current situation!"
  820. msgstr ""
  821. #: cmdline/acqprogress.cc:60
  822. msgid "Hit "
  823. msgstr ""
  824. #: cmdline/acqprogress.cc:84
  825. msgid "Get:"
  826. msgstr "جلب:"
  827. #: cmdline/acqprogress.cc:115
  828. msgid "Ign "
  829. msgstr "تجاهل"
  830. #: cmdline/acqprogress.cc:119
  831. msgid "Err "
  832. msgstr "خطأ"
  833. #: cmdline/acqprogress.cc:140
  834. #, c-format
  835. msgid "Fetched %sB in %s (%sB/s)\n"
  836. msgstr "جلب %sب في %s (%sب/ث)\n"
  837. #: cmdline/acqprogress.cc:230
  838. #, c-format
  839. msgid " [Working]"
  840. msgstr " [يعمل]"
  841. #: cmdline/acqprogress.cc:286
  842. #, c-format
  843. msgid ""
  844. "Media change: please insert the disc labeled\n"
  845. " '%s'\n"
  846. "in the drive '%s' and press enter\n"
  847. msgstr ""
  848. "تغيير الوسط: الرجاء إدخال القرص المُسمّى\n"
  849. " '%s'\n"
  850. "في السوّاقة '%s' وضغط مفتاح الإدخال\n"
  851. #: cmdline/apt-mark.cc:55
  852. #, fuzzy, c-format
  853. msgid "%s can not be marked as it is not installed.\n"
  854. msgstr "إلا أنها غير مثبتة"
  855. #: cmdline/apt-mark.cc:61
  856. #, fuzzy, c-format
  857. msgid "%s was already set to manually installed.\n"
  858. msgstr "إلا أنه سيتم تثبيت %s"
  859. #: cmdline/apt-mark.cc:63
  860. #, fuzzy, c-format
  861. msgid "%s was already set to automatically installed.\n"
  862. msgstr "إلا أنه سيتم تثبيت %s"
  863. #: cmdline/apt-mark.cc:228
  864. #, fuzzy, c-format
  865. msgid "%s was already set on hold.\n"
  866. msgstr "%s هي النسخة الأحدث.\n"
  867. #: cmdline/apt-mark.cc:230
  868. #, fuzzy, c-format
  869. msgid "%s was already not hold.\n"
  870. msgstr "%s هي النسخة الأحدث.\n"
  871. #: cmdline/apt-mark.cc:245 cmdline/apt-mark.cc:326
  872. #: apt-pkg/contrib/fileutl.cc:828 apt-pkg/contrib/gpgv.cc:223
  873. #: apt-pkg/deb/dpkgpm.cc:1002
  874. #, c-format
  875. msgid "Waited for %s but it wasn't there"
  876. msgstr ""
  877. #: cmdline/apt-mark.cc:260 cmdline/apt-mark.cc:309
  878. #, fuzzy, c-format
  879. msgid "%s set on hold.\n"
  880. msgstr "إلا أنه سيتم تثبيت %s"
  881. #: cmdline/apt-mark.cc:262 cmdline/apt-mark.cc:314
  882. #, fuzzy, c-format
  883. msgid "Canceled hold on %s.\n"
  884. msgstr "فشل فتح %s"
  885. #: cmdline/apt-mark.cc:332
  886. msgid "Executing dpkg failed. Are you root?"
  887. msgstr ""
  888. #: cmdline/apt-mark.cc:379
  889. msgid ""
  890. "Usage: apt-mark [options] {auto|manual} pkg1 [pkg2 ...]\n"
  891. "\n"
  892. "apt-mark is a simple command line interface for marking packages\n"
  893. "as manually or automatically installed. It can also list marks.\n"
  894. "\n"
  895. "Commands:\n"
  896. " auto - Mark the given packages as automatically installed\n"
  897. " manual - Mark the given packages as manually installed\n"
  898. "\n"
  899. "Options:\n"
  900. " -h This help text.\n"
  901. " -q Loggable output - no progress indicator\n"
  902. " -qq No output except for errors\n"
  903. " -s No-act. Just prints what would be done.\n"
  904. " -f read/write auto/manual marking in the given file\n"
  905. " -c=? Read this configuration file\n"
  906. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  907. "See the apt-mark(8) and apt.conf(5) manual pages for more information."
  908. msgstr ""
  909. #: methods/cdrom.cc:203
  910. #, c-format
  911. msgid "Unable to read the cdrom database %s"
  912. msgstr "تعذرت قراءة قاعدة بيانات القرص المدمج %s"
  913. #: methods/cdrom.cc:212
  914. msgid ""
  915. "Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update "
  916. "cannot be used to add new CD-ROMs"
  917. msgstr ""
  918. "الرجاء استخدام apt-cdrom لتعريف APT بهذا القرص المدمج. لا يمكن استخدام apt-"
  919. "get update لإضافة أقراص مدمجة جديدة."
  920. #: methods/cdrom.cc:222
  921. msgid "Wrong CD-ROM"
  922. msgstr "القرص المدمج الخطأ"
  923. #: methods/cdrom.cc:249
  924. #, c-format
  925. msgid "Unable to unmount the CD-ROM in %s, it may still be in use."
  926. msgstr "تعذر فكّ القرص المدمج من %s، إذ قد يكون لا يزال قيد الاستخدام."
  927. #: methods/cdrom.cc:254
  928. msgid "Disk not found."
  929. msgstr "لم يُعثر على القرص."
  930. #: methods/cdrom.cc:262 methods/file.cc:82 methods/rsh.cc:273
  931. msgid "File not found"
  932. msgstr "لم يُعثر على الملف"
  933. #: methods/copy.cc:46 methods/gzip.cc:105 methods/gzip.cc:114
  934. #: methods/rred.cc:512 methods/rred.cc:521
  935. msgid "Failed to stat"
  936. msgstr "فشيل تنفيذ stat"
  937. #: methods/copy.cc:83 methods/gzip.cc:111 methods/rred.cc:518
  938. msgid "Failed to set modification time"
  939. msgstr "فشل تعيين وقت التعديل"
  940. #: methods/file.cc:47
  941. msgid "Invalid URI, local URIS must not start with //"
  942. msgstr ""
  943. #. Login must be before getpeername otherwise dante won't work.
  944. #: methods/ftp.cc:173
  945. msgid "Logging in"
  946. msgstr "تسجيل الدخول"
  947. #: methods/ftp.cc:179
  948. msgid "Unable to determine the peer name"
  949. msgstr ""
  950. #: methods/ftp.cc:184
  951. msgid "Unable to determine the local name"
  952. msgstr ""
  953. #: methods/ftp.cc:215 methods/ftp.cc:243
  954. #, c-format
  955. msgid "The server refused the connection and said: %s"
  956. msgstr "رفض الخادم اتصالنا بالرد: %s"
  957. #: methods/ftp.cc:221
  958. #, c-format
  959. msgid "USER failed, server said: %s"
  960. msgstr "فشل USER، ردّ الخادم: %s"
  961. #: methods/ftp.cc:228
  962. #, c-format
  963. msgid "PASS failed, server said: %s"
  964. msgstr "فشل PASS، ردّ الخادم: %s"
  965. #: methods/ftp.cc:248
  966. msgid ""
  967. "A proxy server was specified but no login script, Acquire::ftp::ProxyLogin "
  968. "is empty."
  969. msgstr ""
  970. "تم تحديد خادم بروكسي ولكن دون نص تسجيل دخول برمجي، Acquire::ftp::ProxyLogin "
  971. "فارغ."
  972. #: methods/ftp.cc:276
  973. #, c-format
  974. msgid "Login script command '%s' failed, server said: %s"
  975. msgstr "فشل أمر نص تسجيل الدخول البرمجي '%s'، ردّ الخادم: %s"
  976. #: methods/ftp.cc:302
  977. #, c-format
  978. msgid "TYPE failed, server said: %s"
  979. msgstr "فشل TYPE، ردّ الخادم: %s"
  980. #: methods/ftp.cc:340 methods/ftp.cc:451 methods/rsh.cc:192 methods/rsh.cc:235
  981. msgid "Connection timeout"
  982. msgstr "انتهى وقت الاتصال"
  983. #: methods/ftp.cc:346
  984. msgid "Server closed the connection"
  985. msgstr "أغلق الخادم الاتصال"
  986. #: methods/ftp.cc:349 methods/rsh.cc:199 apt-pkg/contrib/fileutl.cc:1254
  987. #: apt-pkg/contrib/fileutl.cc:1263 apt-pkg/contrib/fileutl.cc:1266
  988. msgid "Read error"
  989. msgstr "خطأ في القراءة"
  990. #: methods/ftp.cc:356 methods/rsh.cc:206
  991. msgid "A response overflowed the buffer."
  992. msgstr ""
  993. #: methods/ftp.cc:373 methods/ftp.cc:385
  994. msgid "Protocol corruption"
  995. msgstr ""
  996. #: methods/ftp.cc:457 methods/rred.cc:238 methods/rsh.cc:241
  997. #: apt-pkg/contrib/fileutl.cc:1352 apt-pkg/contrib/fileutl.cc:1361
  998. #: apt-pkg/contrib/fileutl.cc:1364 apt-pkg/contrib/fileutl.cc:1390
  999. msgid "Write error"
  1000. msgstr "خطأ في الكتابة"
  1001. #: methods/ftp.cc:696 methods/ftp.cc:702 methods/ftp.cc:737
  1002. msgid "Could not create a socket"
  1003. msgstr ""
  1004. #: methods/ftp.cc:707
  1005. msgid "Could not connect data socket, connection timed out"
  1006. msgstr ""
  1007. #: methods/ftp.cc:713
  1008. msgid "Could not connect passive socket."
  1009. msgstr ""
  1010. #: methods/ftp.cc:730
  1011. msgid "getaddrinfo was unable to get a listening socket"
  1012. msgstr ""
  1013. #: methods/ftp.cc:744
  1014. msgid "Could not bind a socket"
  1015. msgstr ""
  1016. #: methods/ftp.cc:748
  1017. msgid "Could not listen on the socket"
  1018. msgstr ""
  1019. #: methods/ftp.cc:755
  1020. msgid "Could not determine the socket's name"
  1021. msgstr ""
  1022. #: methods/ftp.cc:787
  1023. msgid "Unable to send PORT command"
  1024. msgstr "تعذر إرسال الأمر PORT"
  1025. #: methods/ftp.cc:797
  1026. #, c-format
  1027. msgid "Unknown address family %u (AF_*)"
  1028. msgstr ""
  1029. #: methods/ftp.cc:806
  1030. #, c-format
  1031. msgid "EPRT failed, server said: %s"
  1032. msgstr "فشل EPRT، ردّ الخادم: %s"
  1033. #: methods/ftp.cc:826
  1034. msgid "Data socket connect timed out"
  1035. msgstr ""
  1036. #: methods/ftp.cc:833
  1037. msgid "Unable to accept connection"
  1038. msgstr "تعذر قبول الاتصال"
  1039. #: methods/ftp.cc:872 methods/http.cc:1039 methods/rsh.cc:311
  1040. msgid "Problem hashing file"
  1041. msgstr ""
  1042. #: methods/ftp.cc:885
  1043. #, c-format
  1044. msgid "Unable to fetch file, server said '%s'"
  1045. msgstr "تعذر إحضار الملف، ردّ الخادم '%s'"
  1046. #: methods/ftp.cc:900 methods/rsh.cc:330
  1047. msgid "Data socket timed out"
  1048. msgstr ""
  1049. #: methods/ftp.cc:930
  1050. #, c-format
  1051. msgid "Data transfer failed, server said '%s'"
  1052. msgstr "فشل نقل البيانات، ردّ الخادم '%s'"
  1053. #. Get the files information
  1054. #: methods/ftp.cc:1007
  1055. msgid "Query"
  1056. msgstr "استعلام"
  1057. #: methods/ftp.cc:1119
  1058. msgid "Unable to invoke "
  1059. msgstr ""
  1060. #: methods/connect.cc:76
  1061. #, c-format
  1062. msgid "Connecting to %s (%s)"
  1063. msgstr "الاتصال بـ%s (%s)"
  1064. #: methods/connect.cc:87
  1065. #, c-format
  1066. msgid "[IP: %s %s]"
  1067. msgstr "[IP: %s %s]"
  1068. #: methods/connect.cc:94
  1069. #, c-format
  1070. msgid "Could not create a socket for %s (f=%u t=%u p=%u)"
  1071. msgstr ""
  1072. #: methods/connect.cc:100
  1073. #, c-format
  1074. msgid "Cannot initiate the connection to %s:%s (%s)."
  1075. msgstr "تعذر تمهيد الاتصال بـ%s:%s (%s)."
  1076. #: methods/connect.cc:108
  1077. #, c-format
  1078. msgid "Could not connect to %s:%s (%s), connection timed out"
  1079. msgstr "تعذر الاتصال بـ%s:%s (%s)، انتهى وقت الاتصال"
  1080. #: methods/connect.cc:126
  1081. #, c-format
  1082. msgid "Could not connect to %s:%s (%s)."
  1083. msgstr "تعذر الاتصال بـ%s:%s (%s)."
  1084. #. We say this mainly because the pause here is for the
  1085. #. ssh connection that is still going
  1086. #: methods/connect.cc:154 methods/rsh.cc:433
  1087. #, c-format
  1088. msgid "Connecting to %s"
  1089. msgstr "الاتصال بـ%s"
  1090. #: methods/connect.cc:180 methods/connect.cc:199
  1091. #, c-format
  1092. msgid "Could not resolve '%s'"
  1093. msgstr ""
  1094. #: methods/connect.cc:205
  1095. #, c-format
  1096. msgid "Temporary failure resolving '%s'"
  1097. msgstr ""
  1098. #: methods/connect.cc:209
  1099. #, c-format
  1100. msgid "System error resolving '%s:%s'"
  1101. msgstr ""
  1102. #: methods/connect.cc:211
  1103. #, c-format
  1104. msgid "Something wicked happened resolving '%s:%s' (%i - %s)"
  1105. msgstr ""
  1106. #: methods/connect.cc:258
  1107. #, fuzzy, c-format
  1108. msgid "Unable to connect to %s:%s:"
  1109. msgstr "تعذر الاتصال بـ%s %s:"
  1110. #: methods/gpgv.cc:169
  1111. msgid ""
  1112. "Internal error: Good signature, but could not determine key fingerprint?!"
  1113. msgstr ""
  1114. #: methods/gpgv.cc:174
  1115. msgid "At least one invalid signature was encountered."
  1116. msgstr ""
  1117. #: methods/gpgv.cc:178
  1118. msgid "Could not execute 'gpgv' to verify signature (is gpgv installed?)"
  1119. msgstr ""
  1120. #: methods/gpgv.cc:183
  1121. msgid "Unknown error executing gpgv"
  1122. msgstr ""
  1123. #: methods/gpgv.cc:217 methods/gpgv.cc:224
  1124. msgid "The following signatures were invalid:\n"
  1125. msgstr ""
  1126. #: methods/gpgv.cc:231
  1127. msgid ""
  1128. "The following signatures couldn't be verified because the public key is not "
  1129. "available:\n"
  1130. msgstr ""
  1131. #: methods/gzip.cc:65
  1132. msgid "Empty files can't be valid archives"
  1133. msgstr ""
  1134. #: methods/http.cc:394
  1135. msgid "Waiting for headers"
  1136. msgstr "بانتظار الترويسات"
  1137. #: methods/http.cc:544
  1138. msgid "Bad header line"
  1139. msgstr "سطر ترويسة سيء"
  1140. #: methods/http.cc:569 methods/http.cc:576
  1141. msgid "The HTTP server sent an invalid reply header"
  1142. msgstr "أرسل خادم http ترويسة ردّ غير صالحة"
  1143. #: methods/http.cc:606
  1144. msgid "The HTTP server sent an invalid Content-Length header"
  1145. msgstr "أرسل خادم http ترويسة طول محتويات (ِContent-Length) غير صالحة"
  1146. #: methods/http.cc:621
  1147. msgid "The HTTP server sent an invalid Content-Range header"
  1148. msgstr "أرسل خادم http ترويسة مدى محتويات (ِContent-Range) غير صالحة"
  1149. #: methods/http.cc:623
  1150. msgid "This HTTP server has broken range support"
  1151. msgstr "خادم http له دعم مدى معطوب"
  1152. #: methods/http.cc:647
  1153. msgid "Unknown date format"
  1154. msgstr "نسق تاريخ مجهول"
  1155. #: methods/http.cc:827
  1156. msgid "Select failed"
  1157. msgstr "فشل التحديد"
  1158. #: methods/http.cc:832
  1159. msgid "Connection timed out"
  1160. msgstr "انتهى وقت الاتصال"
  1161. #: methods/http.cc:855
  1162. msgid "Error writing to output file"
  1163. msgstr "خطأ في الكتابة إلى ملف المُخرجات"
  1164. #: methods/http.cc:886
  1165. msgid "Error writing to file"
  1166. msgstr "خطأ في الكتابة إلى الملف"
  1167. #: methods/http.cc:914
  1168. msgid "Error writing to the file"
  1169. msgstr "خطأ في الكتابة إلى الملف"
  1170. #: methods/http.cc:928
  1171. msgid "Error reading from server. Remote end closed connection"
  1172. msgstr "خطأ في القراءة من الخادم. أقفل الطرف الآخر الاتصال"
  1173. #: methods/http.cc:930
  1174. msgid "Error reading from server"
  1175. msgstr "خطأ في القراءة من الخادم"
  1176. #: methods/http.cc:1198
  1177. msgid "Bad header data"
  1178. msgstr "بيانات ترويسة سيئة"
  1179. #: methods/http.cc:1215 methods/http.cc:1270
  1180. msgid "Connection failed"
  1181. msgstr "فشل الاتصال"
  1182. #: methods/http.cc:1362
  1183. msgid "Internal error"
  1184. msgstr "خطأ داخلي"
  1185. #. Only warn if there are no sources.list.d.
  1186. #. Only warn if there is no sources.list file.
  1187. #: methods/mirror.cc:95 apt-inst/extract.cc:464
  1188. #: apt-pkg/contrib/cdromutl.cc:183 apt-pkg/contrib/fileutl.cc:400
  1189. #: apt-pkg/contrib/fileutl.cc:513 apt-pkg/sourcelist.cc:208
  1190. #: apt-pkg/sourcelist.cc:214 apt-pkg/acquire.cc:485 apt-pkg/init.cc:108
  1191. #: apt-pkg/init.cc:116 apt-pkg/clean.cc:36 apt-pkg/policy.cc:362
  1192. #, c-format
  1193. msgid "Unable to read %s"
  1194. msgstr "تعذرت قراءة %s"
  1195. #: methods/mirror.cc:101 methods/mirror.cc:130 apt-pkg/contrib/cdromutl.cc:179
  1196. #: apt-pkg/contrib/cdromutl.cc:213 apt-pkg/acquire.cc:491
  1197. #: apt-pkg/acquire.cc:516 apt-pkg/clean.cc:42 apt-pkg/clean.cc:60
  1198. #: apt-pkg/clean.cc:123
  1199. #, c-format
  1200. msgid "Unable to change to %s"
  1201. msgstr ""
  1202. #. FIXME: fallback to a default mirror here instead
  1203. #. and provide a config option to define that default
  1204. #: methods/mirror.cc:280
  1205. #, c-format
  1206. msgid "No mirror file '%s' found "
  1207. msgstr ""
  1208. #. FIXME: fallback to a default mirror here instead
  1209. #. and provide a config option to define that default
  1210. #: methods/mirror.cc:287
  1211. #, fuzzy, c-format
  1212. msgid "Can not read mirror file '%s'"
  1213. msgstr "فشل إغلاق الملف %s"
  1214. #: methods/mirror.cc:442
  1215. #, c-format
  1216. msgid "[Mirror: %s]"
  1217. msgstr ""
  1218. #: methods/rred.cc:491
  1219. #, c-format
  1220. msgid ""
  1221. "Could not patch %s with mmap and with file operation usage - the patch seems "
  1222. "to be corrupt."
  1223. msgstr ""
  1224. #: methods/rred.cc:496
  1225. #, c-format
  1226. msgid ""
  1227. "Could not patch %s with mmap (but no mmap specific fail) - the patch seems "
  1228. "to be corrupt."
  1229. msgstr ""
  1230. #: methods/rsh.cc:99 ftparchive/multicompress.cc:168
  1231. msgid "Failed to create IPC pipe to subprocess"
  1232. msgstr ""
  1233. #: methods/rsh.cc:338
  1234. msgid "Connection closed prematurely"
  1235. msgstr ""
  1236. #: dselect/install:32
  1237. msgid "Bad default setting!"
  1238. msgstr "إعداد افتراضيّ سيّء!"
  1239. #: dselect/install:51 dselect/install:83 dselect/install:87 dselect/install:94
  1240. #: dselect/install:105 dselect/update:45
  1241. msgid "Press enter to continue."
  1242. msgstr "اضغط مفتاح الإدخال للاستمرار."
  1243. #: dselect/install:91
  1244. msgid "Do you want to erase any previously downloaded .deb files?"
  1245. msgstr ""
  1246. #: dselect/install:101
  1247. #, fuzzy
  1248. msgid "Some errors occurred while unpacking. Packages that were installed"
  1249. msgstr "حدثت بعض الأخطاء أثناء فك الحزمة. سأقوم بتهيئة "
  1250. #: dselect/install:102
  1251. #, fuzzy
  1252. msgid "will be configured. This may result in duplicate errors"
  1253. msgstr "الحزم التي تم تثبيتها. قد يتسبب هذا بظهر أخطاء متكررة"
  1254. #: dselect/install:103
  1255. msgid "or errors caused by missing dependencies. This is OK, only the errors"
  1256. msgstr "أو أخطاء سبّبتها المُعتمدات المفقودة. لا بأس بهذا، فقط الأخطاء"
  1257. #: dselect/install:104
  1258. msgid ""
  1259. "above this message are important. Please fix them and run [I]nstall again"
  1260. msgstr "أعلى هذه الرسالة مهمّة. الرجاء تصحيحها وتشغيل التثبيت مجدداً"
  1261. #: dselect/update:30
  1262. msgid "Merging available information"
  1263. msgstr "دمج المعلومات المتوفرة"
  1264. #: cmdline/apt-extracttemplates.cc:102
  1265. #, c-format
  1266. msgid "%s not a valid DEB package."
  1267. msgstr "%s ليس حزمة DEB صالحة."
  1268. #: cmdline/apt-extracttemplates.cc:236
  1269. msgid ""
  1270. "Usage: apt-extracttemplates file1 [file2 ...]\n"
  1271. "\n"
  1272. "apt-extracttemplates is a tool to extract config and template info\n"
  1273. "from debian packages\n"
  1274. "\n"
  1275. "Options:\n"
  1276. " -h This help text\n"
  1277. " -t Set the temp dir\n"
  1278. " -c=? Read this configuration file\n"
  1279. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  1280. msgstr ""
  1281. #: cmdline/apt-extracttemplates.cc:271 apt-pkg/pkgcachegen.cc:1386
  1282. #, c-format
  1283. msgid "Unable to write to %s"
  1284. msgstr "تعذرت الكتابة إلى %s"
  1285. #: cmdline/apt-extracttemplates.cc:313
  1286. msgid "Cannot get debconf version. Is debconf installed?"
  1287. msgstr "تعذر الحصول على نسخة debconf. هل هي مثبتة؟"
  1288. #: ftparchive/apt-ftparchive.cc:171 ftparchive/apt-ftparchive.cc:349
  1289. msgid "Package extension list is too long"
  1290. msgstr "قائمة توسيعات الحزمة طويلة جداً"
  1291. #: ftparchive/apt-ftparchive.cc:173 ftparchive/apt-ftparchive.cc:190
  1292. #: ftparchive/apt-ftparchive.cc:213 ftparchive/apt-ftparchive.cc:264
  1293. #: ftparchive/apt-ftparchive.cc:278 ftparchive/apt-ftparchive.cc:300
  1294. #, c-format
  1295. msgid "Error processing directory %s"
  1296. msgstr "خطأ في معالجة الدليل %s"
  1297. #: ftparchive/apt-ftparchive.cc:262
  1298. msgid "Source extension list is too long"
  1299. msgstr "قائمة توسيعات المصدر طويلة جداً"
  1300. #: ftparchive/apt-ftparchive.cc:379
  1301. msgid "Error writing header to contents file"
  1302. msgstr "خطأ في كتابة الترويسة إلى ملف المحتويات"
  1303. #: ftparchive/apt-ftparchive.cc:409
  1304. #, c-format
  1305. msgid "Error processing contents %s"
  1306. msgstr "خطأ في معالجة المحتويات %s"
  1307. #: ftparchive/apt-ftparchive.cc:597
  1308. msgid ""
  1309. "Usage: apt-ftparchive [options] command\n"
  1310. "Commands: packages binarypath [overridefile [pathprefix]]\n"
  1311. " sources srcpath [overridefile [pathprefix]]\n"
  1312. " contents path\n"
  1313. " release path\n"
  1314. " generate config [groups]\n"
  1315. " clean config\n"
  1316. "\n"
  1317. "apt-ftparchive generates index files for Debian archives. It supports\n"
  1318. "many styles of generation from fully automated to functional replacements\n"
  1319. "for dpkg-scanpackages and dpkg-scansources\n"
  1320. "\n"
  1321. "apt-ftparchive generates Package files from a tree of .debs. The\n"
  1322. "Package file contains the contents of all the control fields from\n"
  1323. "each package as well as the MD5 hash and filesize. An override file\n"
  1324. "is supported to force the value of Priority and Section.\n"
  1325. "\n"
  1326. "Similarly apt-ftparchive generates Sources files from a tree of .dscs.\n"
  1327. "The --source-override option can be used to specify a src override file\n"
  1328. "\n"
  1329. "The 'packages' and 'sources' command should be run in the root of the\n"
  1330. "tree. BinaryPath should point to the base of the recursive search and \n"
  1331. "override file should contain the override flags. Pathprefix is\n"
  1332. "appended to the filename fields if present. Example usage from the \n"
  1333. "Debian archive:\n"
  1334. " apt-ftparchive packages dists/potato/main/binary-i386/ > \\\n"
  1335. " dists/potato/main/binary-i386/Packages\n"
  1336. "\n"
  1337. "Options:\n"
  1338. " -h This help text\n"
  1339. " --md5 Control MD5 generation\n"
  1340. " -s=? Source override file\n"
  1341. " -q Quiet\n"
  1342. " -d=? Select the optional caching database\n"
  1343. " --no-delink Enable delinking debug mode\n"
  1344. " --contents Control contents file generation\n"
  1345. " -c=? Read this configuration file\n"
  1346. " -o=? Set an arbitrary configuration option"
  1347. msgstr ""
  1348. #: ftparchive/apt-ftparchive.cc:803
  1349. msgid "No selections matched"
  1350. msgstr "لم تُطابق أية تحديدات"
  1351. #: ftparchive/apt-ftparchive.cc:881
  1352. #, c-format
  1353. msgid "Some files are missing in the package file group `%s'"
  1354. msgstr "بعض الملفات مفقودة في مجموعة ملف الحزمة `%s'"
  1355. #: ftparchive/cachedb.cc:47
  1356. #, c-format
  1357. msgid "DB was corrupted, file renamed to %s.old"
  1358. msgstr "قاعدة البيانات كانت فاسدة، فتم تغيير اسمها إلى %s.old"
  1359. #: ftparchive/cachedb.cc:65
  1360. #, c-format
  1361. msgid "DB is old, attempting to upgrade %s"
  1362. msgstr "قاعدة البيانات قديمة، محاولة ترقية %s"
  1363. #: ftparchive/cachedb.cc:76
  1364. msgid ""
  1365. "DB format is invalid. If you upgraded from an older version of apt, please "
  1366. "remove and re-create the database."
  1367. msgstr ""
  1368. #: ftparchive/cachedb.cc:81
  1369. #, c-format
  1370. msgid "Unable to open DB file %s: %s"
  1371. msgstr "تعذر فتح ملف قاعدة البيانات %s: %s"
  1372. #: ftparchive/cachedb.cc:127 apt-inst/extract.cc:179 apt-inst/extract.cc:192
  1373. #: apt-inst/extract.cc:209
  1374. #, c-format
  1375. msgid "Failed to stat %s"
  1376. msgstr ""
  1377. #: ftparchive/cachedb.cc:249
  1378. msgid "Archive has no control record"
  1379. msgstr ""
  1380. #: ftparchive/cachedb.cc:490
  1381. msgid "Unable to get a cursor"
  1382. msgstr ""
  1383. #: ftparchive/writer.cc:82
  1384. #, c-format
  1385. msgid "W: Unable to read directory %s\n"
  1386. msgstr "W: تعذرت قراءة الدليل %s\n"
  1387. #: ftparchive/writer.cc:87
  1388. #, c-format
  1389. msgid "W: Unable to stat %s\n"
  1390. msgstr ""
  1391. #: ftparchive/writer.cc:143
  1392. msgid "E: "
  1393. msgstr "E: "
  1394. #: ftparchive/writer.cc:145
  1395. msgid "W: "
  1396. msgstr "W: "
  1397. #: ftparchive/writer.cc:152
  1398. msgid "E: Errors apply to file "
  1399. msgstr ""
  1400. #: ftparchive/writer.cc:170 ftparchive/writer.cc:202
  1401. #, c-format
  1402. msgid "Failed to resolve %s"
  1403. msgstr ""
  1404. #: ftparchive/writer.cc:183
  1405. msgid "Tree walking failed"
  1406. msgstr ""
  1407. #: ftparchive/writer.cc:210
  1408. #, c-format
  1409. msgid "Failed to open %s"
  1410. msgstr "فشل فتح %s"
  1411. #: ftparchive/writer.cc:269
  1412. #, c-format
  1413. msgid " DeLink %s [%s]\n"
  1414. msgstr " DeLink %s [%s]\n"
  1415. #: ftparchive/writer.cc:277
  1416. #, c-format
  1417. msgid "Failed to readlink %s"
  1418. msgstr ""
  1419. #: ftparchive/writer.cc:281
  1420. #, c-format
  1421. msgid "Failed to unlink %s"
  1422. msgstr ""
  1423. #: ftparchive/writer.cc:288
  1424. #, c-format
  1425. msgid "*** Failed to link %s to %s"
  1426. msgstr "*** فشل ربط %s بـ%s"
  1427. #: ftparchive/writer.cc:298
  1428. #, c-format
  1429. msgid " DeLink limit of %sB hit.\n"
  1430. msgstr ""
  1431. #: ftparchive/writer.cc:403
  1432. msgid "Archive had no package field"
  1433. msgstr ""
  1434. #: ftparchive/writer.cc:411 ftparchive/writer.cc:701
  1435. #, c-format
  1436. msgid " %s has no override entry\n"
  1437. msgstr ""
  1438. #: ftparchive/writer.cc:479 ftparchive/writer.cc:845
  1439. #, c-format
  1440. msgid " %s maintainer is %s not %s\n"
  1441. msgstr ""
  1442. #: ftparchive/writer.cc:711
  1443. #, c-format
  1444. msgid " %s has no source override entry\n"
  1445. msgstr ""
  1446. #: ftparchive/writer.cc:715
  1447. #, c-format
  1448. msgid " %s has no binary override entry either\n"
  1449. msgstr ""
  1450. #: ftparchive/contents.cc:341 ftparchive/contents.cc:372
  1451. msgid "realloc - Failed to allocate memory"
  1452. msgstr "realloc - فشل تعيين الذاكرة"
  1453. #: ftparchive/override.cc:35 ftparchive/override.cc:143
  1454. #, c-format
  1455. msgid "Unable to open %s"
  1456. msgstr "تعذر فتح %s"
  1457. #: ftparchive/override.cc:61 ftparchive/override.cc:167
  1458. #, c-format
  1459. msgid "Malformed override %s line %llu #1"
  1460. msgstr ""
  1461. #: ftparchive/override.cc:75 ftparchive/override.cc:179
  1462. #, c-format
  1463. msgid "Malformed override %s line %llu #2"
  1464. msgstr ""
  1465. #: ftparchive/override.cc:89 ftparchive/override.cc:192
  1466. #, c-format
  1467. msgid "Malformed override %s line %llu #3"
  1468. msgstr ""
  1469. #: ftparchive/override.cc:128 ftparchive/override.cc:202
  1470. #, c-format
  1471. msgid "Failed to read the override file %s"
  1472. msgstr ""
  1473. #: ftparchive/multicompress.cc:70
  1474. #, c-format
  1475. msgid "Unknown compression algorithm '%s'"
  1476. msgstr ""
  1477. #: ftparchive/multicompress.cc:100
  1478. #, c-format
  1479. msgid "Compressed output %s needs a compression set"
  1480. msgstr ""
  1481. #: ftparchive/multicompress.cc:189
  1482. msgid "Failed to create FILE*"
  1483. msgstr ""
  1484. #: ftparchive/multicompress.cc:192
  1485. msgid "Failed to fork"
  1486. msgstr ""
  1487. #: ftparchive/multicompress.cc:206
  1488. msgid "Compress child"
  1489. msgstr ""
  1490. #: ftparchive/multicompress.cc:229
  1491. #, c-format
  1492. msgid "Internal error, failed to create %s"
  1493. msgstr "خطأ داخلي، تعذر إنشاء %s"
  1494. #: ftparchive/multicompress.cc:304
  1495. msgid "IO to subprocess/file failed"
  1496. msgstr ""
  1497. #: ftparchive/multicompress.cc:342
  1498. msgid "Failed to read while computing MD5"
  1499. msgstr ""
  1500. #: ftparchive/multicompress.cc:358
  1501. #, c-format
  1502. msgid "Problem unlinking %s"
  1503. msgstr ""
  1504. #: ftparchive/multicompress.cc:373 apt-inst/extract.cc:187
  1505. #, c-format
  1506. msgid "Failed to rename %s to %s"
  1507. msgstr "فشل تغيير اسم %s إلى %s"
  1508. #: cmdline/apt-internal-solver.cc:37
  1509. msgid ""
  1510. "Usage: apt-internal-solver\n"
  1511. "\n"
  1512. "apt-internal-solver is an interface to use the current internal\n"
  1513. "like an external resolver for the APT family for debugging or alike\n"
  1514. "\n"
  1515. "Options:\n"
  1516. " -h This help text.\n"
  1517. " -q Loggable output - no progress indicator\n"
  1518. " -c=? Read this configuration file\n"
  1519. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  1520. msgstr ""
  1521. #: cmdline/apt-sortpkgs.cc:89
  1522. msgid "Unknown package record!"
  1523. msgstr "سجل حزمة مجهول!"
  1524. #: cmdline/apt-sortpkgs.cc:153
  1525. msgid ""
  1526. "Usage: apt-sortpkgs [options] file1 [file2 ...]\n"
  1527. "\n"
  1528. "apt-sortpkgs is a simple tool to sort package files. The -s option is used\n"
  1529. "to indicate what kind of file it is.\n"
  1530. "\n"
  1531. "Options:\n"
  1532. " -h This help text\n"
  1533. " -s Use source file sorting\n"
  1534. " -c=? Read this configuration file\n"
  1535. " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n"
  1536. msgstr ""
  1537. #: apt-inst/contrib/extracttar.cc:117
  1538. msgid "Failed to create pipes"
  1539. msgstr ""
  1540. #: apt-inst/contrib/extracttar.cc:144
  1541. msgid "Failed to exec gzip "
  1542. msgstr "فشل تنفيذ gzip"
  1543. #: apt-inst/contrib/extracttar.cc:181 apt-inst/contrib/extracttar.cc:211
  1544. msgid "Corrupted archive"
  1545. msgstr "أرشيف فاسد"
  1546. #: apt-inst/contrib/extracttar.cc:196
  1547. msgid "Tar checksum failed, archive corrupted"
  1548. msgstr "فشل تحقّق Checksum لملف Tar، الأرشيف فاسد"
  1549. #: apt-inst/contrib/extracttar.cc:303
  1550. #, c-format
  1551. msgid "Unknown TAR header type %u, member %s"
  1552. msgstr ""
  1553. #: apt-inst/contrib/arfile.cc:74
  1554. msgid "Invalid archive signature"
  1555. msgstr "توقيع الأرشيف غير صالح"
  1556. #: apt-inst/contrib/arfile.cc:82
  1557. msgid "Error reading archive member header"
  1558. msgstr ""
  1559. #: apt-inst/contrib/arfile.cc:94
  1560. #, fuzzy, c-format
  1561. msgid "Invalid archive member header %s"
  1562. msgstr "توقيع الأرشيف غير صالح"
  1563. #: apt-inst/contrib/arfile.cc:106
  1564. msgid "Invalid archive member header"
  1565. msgstr ""
  1566. #: apt-inst/contrib/arfile.cc:132
  1567. msgid "Archive is too short"
  1568. msgstr "الأرشيف قصير جداً"
  1569. #: apt-inst/contrib/arfile.cc:136
  1570. msgid "Failed to read the archive headers"
  1571. msgstr "فشلت قراءة ترويسات الأرشيف"
  1572. #: apt-inst/filelist.cc:382
  1573. msgid "DropNode called on still linked node"
  1574. msgstr ""
  1575. #: apt-inst/filelist.cc:414
  1576. msgid "Failed to locate the hash element!"
  1577. msgstr ""
  1578. #: apt-inst/filelist.cc:461
  1579. msgid "Failed to allocate diversion"
  1580. msgstr ""
  1581. #: apt-inst/filelist.cc:466
  1582. msgid "Internal error in AddDiversion"
  1583. msgstr "خطأ داخلي في AddDiversion"
  1584. #: apt-inst/filelist.cc:479
  1585. #, c-format
  1586. msgid "Trying to overwrite a diversion, %s -> %s and %s/%s"
  1587. msgstr ""
  1588. #: apt-inst/filelist.cc:508
  1589. #, c-format
  1590. msgid "Double add of diversion %s -> %s"
  1591. msgstr ""
  1592. #: apt-inst/filelist.cc:551
  1593. #, c-format
  1594. msgid "Duplicate conf file %s/%s"
  1595. msgstr "ملف تهيئة مُزدوج %s/%s"
  1596. #: apt-inst/dirstream.cc:43 apt-inst/dirstream.cc:50 apt-inst/dirstream.cc:55
  1597. #, c-format
  1598. msgid "Failed to write file %s"
  1599. msgstr "فشلت كتابة الملف %s"
  1600. #: apt-inst/dirstream.cc:98 apt-inst/dirstream.cc:106
  1601. #, c-format
  1602. msgid "Failed to close file %s"
  1603. msgstr "فشل إغلاق الملف %s"
  1604. #: apt-inst/extract.cc:94 apt-inst/extract.cc:165
  1605. #, c-format
  1606. msgid "The path %s is too long"
  1607. msgstr "المسار %s طويل جداً"
  1608. #: apt-inst/extract.cc:125
  1609. #, c-format
  1610. msgid "Unpacking %s more than once"
  1611. msgstr "فكّ تحزيم %s أكثر من مرّة"
  1612. #: apt-inst/extract.cc:135
  1613. #, c-format
  1614. msgid "The directory %s is diverted"
  1615. msgstr ""
  1616. #: apt-inst/extract.cc:145
  1617. #, c-format
  1618. msgid "The package is trying to write to the diversion target %s/%s"
  1619. msgstr ""
  1620. #: apt-inst/extract.cc:155 apt-inst/extract.cc:299
  1621. msgid "The diversion path is too long"
  1622. msgstr ""
  1623. #: apt-inst/extract.cc:242
  1624. #, c-format
  1625. msgid "The directory %s is being replaced by a non-directory"
  1626. msgstr ""
  1627. #: apt-inst/extract.cc:282
  1628. msgid "Failed to locate node in its hash bucket"
  1629. msgstr ""
  1630. #: apt-inst/extract.cc:286
  1631. msgid "The path is too long"
  1632. msgstr "المسار طويل جداً"
  1633. #: apt-inst/extract.cc:414
  1634. #, c-format
  1635. msgid "Overwrite package match with no version for %s"
  1636. msgstr ""
  1637. #: apt-inst/extract.cc:431
  1638. #, c-format
  1639. msgid "File %s/%s overwrites the one in the package %s"
  1640. msgstr ""
  1641. #: apt-inst/extract.cc:491
  1642. #, c-format
  1643. msgid "Unable to stat %s"
  1644. msgstr ""
  1645. #: apt-inst/deb/debfile.cc:41 apt-inst/deb/debfile.cc:46
  1646. #, c-format
  1647. msgid "This is not a valid DEB archive, missing '%s' member"
  1648. msgstr ""
  1649. #. FIXME: add data.tar.xz here - adding it now would require a Translation round for a very small gain
  1650. #: apt-inst/deb/debfile.cc:55
  1651. #, c-format
  1652. msgid "This is not a valid DEB archive, it has no '%s', '%s' or '%s' member"
  1653. msgstr ""
  1654. #: apt-inst/deb/debfile.cc:120
  1655. #, c-format
  1656. msgid "Internal error, could not locate member %s"
  1657. msgstr "خطأ داخلي، تعذر العثور على العضو %s"
  1658. #: apt-inst/deb/debfile.cc:214
  1659. msgid "Unparsable control file"
  1660. msgstr ""
  1661. #: apt-pkg/contrib/mmap.cc:79
  1662. msgid "Can't mmap an empty file"
  1663. msgstr ""
  1664. #: apt-pkg/contrib/mmap.cc:111
  1665. #, c-format
  1666. msgid "Couldn't duplicate file descriptor %i"
  1667. msgstr ""
  1668. #: apt-pkg/contrib/mmap.cc:119
  1669. #, fuzzy, c-format
  1670. msgid "Couldn't make mmap of %llu bytes"
  1671. msgstr "تعذر التغيير إلى %s"
  1672. #: apt-pkg/contrib/mmap.cc:146
  1673. #, fuzzy
  1674. msgid "Unable to close mmap"
  1675. msgstr "تعذر فتح %s"
  1676. #: apt-pkg/contrib/mmap.cc:174 apt-pkg/contrib/mmap.cc:202
  1677. #, fuzzy
  1678. msgid "Unable to synchronize mmap"
  1679. msgstr "تعذر إرسال الأمر PORT"
  1680. #: apt-pkg/contrib/mmap.cc:290
  1681. #, c-format
  1682. msgid "Couldn't make mmap of %lu bytes"
  1683. msgstr ""
  1684. #: apt-pkg/contrib/mmap.cc:322
  1685. #, fuzzy
  1686. msgid "Failed to truncate file"
  1687. msgstr "فشلت كتابة الملف %s"
  1688. #: apt-pkg/contrib/mmap.cc:341
  1689. #, c-format
  1690. msgid ""
  1691. "Dynamic MMap ran out of room. Please increase the size of APT::Cache-Start. "
  1692. "Current value: %lu. (man 5 apt.conf)"
  1693. msgstr ""
  1694. #: apt-pkg/contrib/mmap.cc:440
  1695. #, c-format
  1696. msgid ""
  1697. "Unable to increase the size of the MMap as the limit of %lu bytes is already "
  1698. "reached."
  1699. msgstr ""
  1700. #: apt-pkg/contrib/mmap.cc:443
  1701. msgid ""
  1702. "Unable to increase size of the MMap as automatic growing is disabled by user."
  1703. msgstr ""
  1704. #. d means days, h means hours, min means minutes, s means seconds
  1705. #: apt-pkg/contrib/strutl.cc:378
  1706. #, c-format
  1707. msgid "%lid %lih %limin %lis"
  1708. msgstr ""
  1709. #. h means hours, min means minutes, s means seconds
  1710. #: apt-pkg/contrib/strutl.cc:385
  1711. #, c-format
  1712. msgid "%lih %limin %lis"
  1713. msgstr ""
  1714. #. min means minutes, s means seconds
  1715. #: apt-pkg/contrib/strutl.cc:392
  1716. #, c-format
  1717. msgid "%limin %lis"
  1718. msgstr ""
  1719. #. s means seconds
  1720. #: apt-pkg/contrib/strutl.cc:397
  1721. #, c-format
  1722. msgid "%lis"
  1723. msgstr ""
  1724. #: apt-pkg/contrib/strutl.cc:1172
  1725. #, c-format
  1726. msgid "Selection %s not found"
  1727. msgstr "تعذر العثور على التحديد %s"
  1728. #: apt-pkg/contrib/configuration.cc:491
  1729. #, c-format
  1730. msgid "Unrecognized type abbreviation: '%c'"
  1731. msgstr "اختصار نوع مجهول: '%c'"
  1732. #: apt-pkg/contrib/configuration.cc:605
  1733. #, c-format
  1734. msgid "Opening configuration file %s"
  1735. msgstr "فتح ملف التهيئة %s"
  1736. #: apt-pkg/contrib/configuration.cc:773
  1737. #, c-format
  1738. msgid "Syntax error %s:%u: Block starts with no name."
  1739. msgstr ""
  1740. #: apt-pkg/contrib/configuration.cc:792
  1741. #, c-format
  1742. msgid "Syntax error %s:%u: Malformed tag"
  1743. msgstr ""
  1744. #: apt-pkg/contrib/configuration.cc:809
  1745. #, c-format
  1746. msgid "Syntax error %s:%u: Extra junk after value"
  1747. msgstr ""
  1748. #: apt-pkg/contrib/configuration.cc:849
  1749. #, c-format
  1750. msgid "Syntax error %s:%u: Directives can only be done at the top level"
  1751. msgstr ""
  1752. #: apt-pkg/contrib/configuration.cc:856
  1753. #, c-format
  1754. msgid "Syntax error %s:%u: Too many nested includes"
  1755. msgstr ""
  1756. #: apt-pkg/contrib/configuration.cc:860 apt-pkg/contrib/configuration.cc:865
  1757. #, c-format
  1758. msgid "Syntax error %s:%u: Included from here"
  1759. msgstr ""
  1760. #: apt-pkg/contrib/configuration.cc:869
  1761. #, c-format
  1762. msgid "Syntax error %s:%u: Unsupported directive '%s'"
  1763. msgstr ""
  1764. #: apt-pkg/contrib/configuration.cc:872
  1765. #, c-format
  1766. msgid "Syntax error %s:%u: clear directive requires an option tree as argument"
  1767. msgstr ""
  1768. #: apt-pkg/contrib/configuration.cc:922
  1769. #, c-format
  1770. msgid "Syntax error %s:%u: Extra junk at end of file"
  1771. msgstr ""
  1772. #: apt-pkg/contrib/progress.cc:146
  1773. #, c-format
  1774. msgid "%c%s... Error!"
  1775. msgstr "%c%s... خطأ!"
  1776. #: apt-pkg/contrib/progress.cc:148
  1777. #, c-format
  1778. msgid "%c%s... Done"
  1779. msgstr "%c%s... تمّ"
  1780. #: apt-pkg/contrib/progress.cc:179
  1781. msgid "..."
  1782. msgstr ""
  1783. #. Print the spinner
  1784. #: apt-pkg/contrib/progress.cc:195
  1785. #, fuzzy, c-format
  1786. msgid "%c%s... %u%%"
  1787. msgstr "%c%s... تمّ"
  1788. #: apt-pkg/contrib/cmndline.cc:80
  1789. #, c-format
  1790. msgid "Command line option '%c' [from %s] is not known."
  1791. msgstr "خيار سطر الأمر '%c' [من %s] مجهول."
  1792. #: apt-pkg/contrib/cmndline.cc:105 apt-pkg/contrib/cmndline.cc:114
  1793. #: apt-pkg/contrib/cmndline.cc:122
  1794. #, c-format
  1795. msgid "Command line option %s is not understood"
  1796. msgstr "خيار سطر الأمر %s غير مفهوم"
  1797. #: apt-pkg/contrib/cmndline.cc:127
  1798. #, c-format
  1799. msgid "Command line option %s is not boolean"
  1800. msgstr ""
  1801. #: apt-pkg/contrib/cmndline.cc:168 apt-pkg/contrib/cmndline.cc:189
  1802. #, c-format
  1803. msgid "Option %s requires an argument."
  1804. msgstr "الخيار %s يتطلّب مُعطى."
  1805. #: apt-pkg/contrib/cmndline.cc:202 apt-pkg/contrib/cmndline.cc:208
  1806. #, c-format
  1807. msgid "Option %s: Configuration item specification must have an =<val>."
  1808. msgstr ""
  1809. #: apt-pkg/contrib/cmndline.cc:237
  1810. #, c-format
  1811. msgid "Option %s requires an integer argument, not '%s'"
  1812. msgstr ""
  1813. #: apt-pkg/contrib/cmndline.cc:268
  1814. #, c-format
  1815. msgid "Option '%s' is too long"
  1816. msgstr "الخيار '%s' طويل جداً"
  1817. #: apt-pkg/contrib/cmndline.cc:300
  1818. #, c-format
  1819. msgid "Sense %s is not understood, try true or false."
  1820. msgstr ""
  1821. #: apt-pkg/contrib/cmndline.cc:350
  1822. #, c-format
  1823. msgid "Invalid operation %s"
  1824. msgstr "عمليّة غير صالحة %s"
  1825. #: apt-pkg/contrib/cdromutl.cc:56
  1826. #, c-format
  1827. msgid "Unable to stat the mount point %s"
  1828. msgstr ""
  1829. #: apt-pkg/contrib/cdromutl.cc:224
  1830. msgid "Failed to stat the cdrom"
  1831. msgstr ""
  1832. #: apt-pkg/contrib/fileutl.cc:93
  1833. #, fuzzy, c-format
  1834. msgid "Problem closing the gzip file %s"
  1835. msgstr "مشكلة في إغلاق الملف"
  1836. #: apt-pkg/contrib/fileutl.cc:225
  1837. #, c-format
  1838. msgid "Not using locking for read only lock file %s"
  1839. msgstr ""
  1840. #: apt-pkg/contrib/fileutl.cc:230
  1841. #, c-format
  1842. msgid "Could not open lock file %s"
  1843. msgstr ""
  1844. #: apt-pkg/contrib/fileutl.cc:248
  1845. #, c-format
  1846. msgid "Not using locking for nfs mounted lock file %s"
  1847. msgstr ""
  1848. #: apt-pkg/contrib/fileutl.cc:252
  1849. #, c-format
  1850. msgid "Could not get lock %s"
  1851. msgstr ""
  1852. #: apt-pkg/contrib/fileutl.cc:392 apt-pkg/contrib/fileutl.cc:506
  1853. #, c-format
  1854. msgid "List of files can't be created as '%s' is not a directory"
  1855. msgstr ""
  1856. #: apt-pkg/contrib/fileutl.cc:426
  1857. #, c-format
  1858. msgid "Ignoring '%s' in directory '%s' as it is not a regular file"
  1859. msgstr ""
  1860. #: apt-pkg/contrib/fileutl.cc:444
  1861. #, c-format
  1862. msgid "Ignoring file '%s' in directory '%s' as it has no filename extension"
  1863. msgstr ""
  1864. #: apt-pkg/contrib/fileutl.cc:453
  1865. #, c-format
  1866. msgid ""
  1867. "Ignoring file '%s' in directory '%s' as it has an invalid filename extension"
  1868. msgstr ""
  1869. #: apt-pkg/contrib/fileutl.cc:840
  1870. #, c-format
  1871. msgid "Sub-process %s received a segmentation fault."
  1872. msgstr ""
  1873. #: apt-pkg/contrib/fileutl.cc:842
  1874. #, c-format
  1875. msgid "Sub-process %s received signal %u."
  1876. msgstr ""
  1877. #: apt-pkg/contrib/fileutl.cc:846 apt-pkg/contrib/gpgv.cc:243
  1878. #, c-format
  1879. msgid "Sub-process %s returned an error code (%u)"
  1880. msgstr ""
  1881. #: apt-pkg/contrib/fileutl.cc:848 apt-pkg/contrib/gpgv.cc:236
  1882. #, c-format
  1883. msgid "Sub-process %s exited unexpectedly"
  1884. msgstr ""
  1885. #: apt-pkg/contrib/fileutl.cc:984
  1886. #, c-format
  1887. msgid "Could not open file %s"
  1888. msgstr ""
  1889. #: apt-pkg/contrib/fileutl.cc:1046
  1890. #, fuzzy, c-format
  1891. msgid "Could not open file descriptor %d"
  1892. msgstr "فشل إغلاق الملف %s"
  1893. #: apt-pkg/contrib/fileutl.cc:1136
  1894. msgid "Failed to create subprocess IPC"
  1895. msgstr ""
  1896. #: apt-pkg/contrib/fileutl.cc:1192
  1897. msgid "Failed to exec compressor "
  1898. msgstr ""
  1899. #: apt-pkg/contrib/fileutl.cc:1289
  1900. #, c-format
  1901. msgid "read, still have %llu to read but none left"
  1902. msgstr ""
  1903. #: apt-pkg/contrib/fileutl.cc:1378 apt-pkg/contrib/fileutl.cc:1400
  1904. #, c-format
  1905. msgid "write, still have %llu to write but couldn't"
  1906. msgstr ""
  1907. #: apt-pkg/contrib/fileutl.cc:1716
  1908. #, fuzzy, c-format
  1909. msgid "Problem closing the file %s"
  1910. msgstr "مشكلة في إغلاق الملف"
  1911. #: apt-pkg/contrib/fileutl.cc:1728
  1912. #, fuzzy, c-format
  1913. msgid "Problem renaming the file %s to %s"
  1914. msgstr "مشكلة في مزامنة الملف"
  1915. #: apt-pkg/contrib/fileutl.cc:1739
  1916. #, fuzzy, c-format
  1917. msgid "Problem unlinking the file %s"
  1918. msgstr "مشكلة في إغلاق الملف"
  1919. #: apt-pkg/contrib/fileutl.cc:1754
  1920. msgid "Problem syncing the file"
  1921. msgstr "مشكلة في مزامنة الملف"
  1922. #. TRANSLATOR: %s is the trusted keyring parts directory
  1923. #: apt-pkg/contrib/gpgv.cc:76
  1924. #, fuzzy, c-format
  1925. msgid "No keyring installed in %s."
  1926. msgstr "إجهاض التثبيت."
  1927. #: apt-pkg/pkgcache.cc:148
  1928. msgid "Empty package cache"
  1929. msgstr ""
  1930. #: apt-pkg/pkgcache.cc:154
  1931. msgid "The package cache file is corrupted"
  1932. msgstr ""
  1933. #: apt-pkg/pkgcache.cc:159
  1934. msgid "The package cache file is an incompatible version"
  1935. msgstr ""
  1936. #: apt-pkg/pkgcache.cc:162
  1937. msgid "The package cache file is corrupted, it is too small"
  1938. msgstr ""
  1939. #: apt-pkg/pkgcache.cc:167
  1940. #, c-format
  1941. msgid "This APT does not support the versioning system '%s'"
  1942. msgstr ""
  1943. #: apt-pkg/pkgcache.cc:172
  1944. msgid "The package cache was built for a different architecture"
  1945. msgstr ""
  1946. #: apt-pkg/pkgcache.cc:314
  1947. msgid "Depends"
  1948. msgstr "يعتمد"
  1949. #: apt-pkg/pkgcache.cc:314
  1950. msgid "PreDepends"
  1951. msgstr "يعتمد مسبقاً"
  1952. #: apt-pkg/pkgcache.cc:314
  1953. msgid "Suggests"
  1954. msgstr "يستحسن"
  1955. #: apt-pkg/pkgcache.cc:315
  1956. msgid "Recommends"
  1957. msgstr "يقترح"
  1958. #: apt-pkg/pkgcache.cc:315
  1959. msgid "Conflicts"
  1960. msgstr "يعارض"
  1961. #: apt-pkg/pkgcache.cc:315
  1962. msgid "Replaces"
  1963. msgstr "يستبدل"
  1964. #: apt-pkg/pkgcache.cc:316
  1965. msgid "Obsoletes"
  1966. msgstr "يُلغي"
  1967. #: apt-pkg/pkgcache.cc:316
  1968. msgid "Breaks"
  1969. msgstr ""
  1970. #: apt-pkg/pkgcache.cc:316
  1971. msgid "Enhances"
  1972. msgstr ""
  1973. #: apt-pkg/pkgcache.cc:327
  1974. msgid "important"
  1975. msgstr "مهم"
  1976. #: apt-pkg/pkgcache.cc:327
  1977. msgid "required"
  1978. msgstr "مطلوب"
  1979. #: apt-pkg/pkgcache.cc:327
  1980. msgid "standard"
  1981. msgstr "قياسي"
  1982. #: apt-pkg/pkgcache.cc:328
  1983. msgid "optional"
  1984. msgstr "اختياري"
  1985. #: apt-pkg/pkgcache.cc:328
  1986. msgid "extra"
  1987. msgstr "إضافي"
  1988. #: apt-pkg/depcache.cc:132 apt-pkg/depcache.cc:161
  1989. msgid "Building dependency tree"
  1990. msgstr ""
  1991. #: apt-pkg/depcache.cc:133
  1992. msgid "Candidate versions"
  1993. msgstr ""
  1994. #: apt-pkg/depcache.cc:162
  1995. msgid "Dependency generation"
  1996. msgstr ""
  1997. #: apt-pkg/depcache.cc:182 apt-pkg/depcache.cc:215 apt-pkg/depcache.cc:219
  1998. #, fuzzy
  1999. msgid "Reading state information"
  2000. msgstr "دمج المعلومات المتوفرة"
  2001. #: apt-pkg/depcache.cc:244
  2002. #, fuzzy, c-format
  2003. msgid "Failed to open StateFile %s"
  2004. msgstr "فشل فتح %s"
  2005. #: apt-pkg/depcache.cc:250
  2006. #, fuzzy, c-format
  2007. msgid "Failed to write temporary StateFile %s"
  2008. msgstr "فشلت كتابة الملف %s"
  2009. #: apt-pkg/tagfile.cc:129
  2010. #, c-format
  2011. msgid "Unable to parse package file %s (1)"
  2012. msgstr ""
  2013. #: apt-pkg/tagfile.cc:216
  2014. #, c-format
  2015. msgid "Unable to parse package file %s (2)"
  2016. msgstr ""
  2017. #: apt-pkg/sourcelist.cc:96
  2018. #, c-format
  2019. msgid "Malformed line %lu in source list %s ([option] unparseable)"
  2020. msgstr ""
  2021. #: apt-pkg/sourcelist.cc:99
  2022. #, c-format
  2023. msgid "Malformed line %lu in source list %s ([option] too short)"
  2024. msgstr ""
  2025. #: apt-pkg/sourcelist.cc:110
  2026. #, c-format
  2027. msgid "Malformed line %lu in source list %s ([%s] is not an assignment)"
  2028. msgstr ""
  2029. #: apt-pkg/sourcelist.cc:116
  2030. #, c-format
  2031. msgid "Malformed line %lu in source list %s ([%s] has no key)"
  2032. msgstr ""
  2033. #: apt-pkg/sourcelist.cc:119
  2034. #, c-format
  2035. msgid "Malformed line %lu in source list %s ([%s] key %s has no value)"
  2036. msgstr ""
  2037. #: apt-pkg/sourcelist.cc:132
  2038. #, c-format
  2039. msgid "Malformed line %lu in source list %s (URI)"
  2040. msgstr ""
  2041. #: apt-pkg/sourcelist.cc:134
  2042. #, c-format
  2043. msgid "Malformed line %lu in source list %s (dist)"
  2044. msgstr ""
  2045. #: apt-pkg/sourcelist.cc:137
  2046. #, c-format
  2047. msgid "Malformed line %lu in source list %s (URI parse)"
  2048. msgstr ""
  2049. #: apt-pkg/sourcelist.cc:143
  2050. #, c-format
  2051. msgid "Malformed line %lu in source list %s (absolute dist)"
  2052. msgstr ""
  2053. #: apt-pkg/sourcelist.cc:150
  2054. #, c-format
  2055. msgid "Malformed line %lu in source list %s (dist parse)"
  2056. msgstr ""
  2057. #: apt-pkg/sourcelist.cc:248
  2058. #, c-format
  2059. msgid "Opening %s"
  2060. msgstr "فتح %s"
  2061. #: apt-pkg/sourcelist.cc:265 apt-pkg/cdrom.cc:495
  2062. #, c-format
  2063. msgid "Line %u too long in source list %s."
  2064. msgstr ""
  2065. #: apt-pkg/sourcelist.cc:289
  2066. #, c-format
  2067. msgid "Malformed line %u in source list %s (type)"
  2068. msgstr ""
  2069. #: apt-pkg/sourcelist.cc:293
  2070. #, c-format
  2071. msgid "Type '%s' is not known on line %u in source list %s"
  2072. msgstr ""
  2073. #: apt-pkg/packagemanager.cc:297 apt-pkg/packagemanager.cc:898
  2074. #, c-format
  2075. msgid ""
  2076. "Could not perform immediate configuration on '%s'. Please see man 5 apt.conf "
  2077. "under APT::Immediate-Configure for details. (%d)"
  2078. msgstr ""
  2079. #: apt-pkg/packagemanager.cc:473 apt-pkg/packagemanager.cc:504
  2080. #, fuzzy, c-format
  2081. msgid "Could not configure '%s'. "
  2082. msgstr "فشل إغلاق الملف %s"
  2083. #: apt-pkg/packagemanager.cc:546
  2084. #, c-format
  2085. msgid ""
  2086. "This installation run will require temporarily removing the essential "
  2087. "package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if "
  2088. "you really want to do it, activate the APT::Force-LoopBreak option."
  2089. msgstr ""
  2090. #: apt-pkg/pkgrecords.cc:34
  2091. #, c-format
  2092. msgid "Index file type '%s' is not supported"
  2093. msgstr ""
  2094. #: apt-pkg/algorithms.cc:266
  2095. #, c-format
  2096. msgid ""
  2097. "The package %s needs to be reinstalled, but I can't find an archive for it."
  2098. msgstr ""
  2099. #: apt-pkg/algorithms.cc:1234
  2100. msgid ""
  2101. "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by "
  2102. "held packages."
  2103. msgstr ""
  2104. #: apt-pkg/algorithms.cc:1236
  2105. msgid "Unable to correct problems, you have held broken packages."
  2106. msgstr ""
  2107. #: apt-pkg/algorithms.cc:1586 apt-pkg/algorithms.cc:1588
  2108. msgid ""
  2109. "Some index files failed to download. They have been ignored, or old ones "
  2110. "used instead."
  2111. msgstr ""
  2112. #: apt-pkg/acquire.cc:81
  2113. #, c-format
  2114. msgid "List directory %spartial is missing."
  2115. msgstr ""
  2116. #: apt-pkg/acquire.cc:85
  2117. #, c-format
  2118. msgid "Archives directory %spartial is missing."
  2119. msgstr ""
  2120. #: apt-pkg/acquire.cc:93
  2121. #, fuzzy, c-format
  2122. msgid "Unable to lock directory %s"
  2123. msgstr "تعذر قفل دليل القائمة"
  2124. #. only show the ETA if it makes sense
  2125. #. two days
  2126. #: apt-pkg/acquire.cc:893
  2127. #, c-format
  2128. msgid "Retrieving file %li of %li (%s remaining)"
  2129. msgstr ""
  2130. #: apt-pkg/acquire.cc:895
  2131. #, c-format
  2132. msgid "Retrieving file %li of %li"
  2133. msgstr ""
  2134. #: apt-pkg/acquire-worker.cc:112
  2135. #, c-format
  2136. msgid "The method driver %s could not be found."
  2137. msgstr ""
  2138. #: apt-pkg/acquire-worker.cc:161
  2139. #, c-format
  2140. msgid "Method %s did not start correctly"
  2141. msgstr ""
  2142. #: apt-pkg/acquire-worker.cc:447
  2143. #, c-format
  2144. msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter."
  2145. msgstr "الرجاء إدخال القرص المُسمّى '%s' في السوّاقة '%s' وضغط مفتاح الإدخال."
  2146. #: apt-pkg/init.cc:151
  2147. #, c-format
  2148. msgid "Packaging system '%s' is not supported"
  2149. msgstr "نظام الحزم '%s' غير مدعوم"
  2150. #: apt-pkg/init.cc:167
  2151. msgid "Unable to determine a suitable packaging system type"
  2152. msgstr ""
  2153. #: apt-pkg/clean.cc:57
  2154. #, c-format
  2155. msgid "Unable to stat %s."
  2156. msgstr ""
  2157. #: apt-pkg/srcrecords.cc:47
  2158. msgid "You must put some 'source' URIs in your sources.list"
  2159. msgstr ""
  2160. #: apt-pkg/cachefile.cc:87
  2161. msgid "The package lists or status file could not be parsed or opened."
  2162. msgstr ""
  2163. #: apt-pkg/cachefile.cc:91
  2164. msgid "You may want to run apt-get update to correct these problems"
  2165. msgstr "قد يساعدك تنفيذ الأمر apt-get update في تصحيح هذه المشاكل"
  2166. #: apt-pkg/cachefile.cc:109
  2167. msgid "The list of sources could not be read."
  2168. msgstr "تعذرت قراءة قائمة المصادر."
  2169. #: apt-pkg/policy.cc:75
  2170. #, c-format
  2171. msgid ""
  2172. "The value '%s' is invalid for APT::Default-Release as such a release is not "
  2173. "available in the sources"
  2174. msgstr ""
  2175. #: apt-pkg/policy.cc:399
  2176. #, c-format
  2177. msgid "Invalid record in the preferences file %s, no Package header"
  2178. msgstr ""
  2179. #: apt-pkg/policy.cc:421
  2180. #, c-format
  2181. msgid "Did not understand pin type %s"
  2182. msgstr ""
  2183. #: apt-pkg/policy.cc:429
  2184. msgid "No priority (or zero) specified for pin"
  2185. msgstr ""
  2186. #: apt-pkg/pkgcachegen.cc:87
  2187. msgid "Cache has an incompatible versioning system"
  2188. msgstr ""
  2189. #. TRANSLATOR: The first placeholder is a package name,
  2190. #. the other two should be copied verbatim as they include debug info
  2191. #: apt-pkg/pkgcachegen.cc:218 apt-pkg/pkgcachegen.cc:228
  2192. #: apt-pkg/pkgcachegen.cc:294 apt-pkg/pkgcachegen.cc:319
  2193. #: apt-pkg/pkgcachegen.cc:332 apt-pkg/pkgcachegen.cc:374
  2194. #: apt-pkg/pkgcachegen.cc:378 apt-pkg/pkgcachegen.cc:395
  2195. #: apt-pkg/pkgcachegen.cc:403 apt-pkg/pkgcachegen.cc:407
  2196. #: apt-pkg/pkgcachegen.cc:411 apt-pkg/pkgcachegen.cc:432
  2197. #: apt-pkg/pkgcachegen.cc:471 apt-pkg/pkgcachegen.cc:509
  2198. #: apt-pkg/pkgcachegen.cc:516 apt-pkg/pkgcachegen.cc:547
  2199. #: apt-pkg/pkgcachegen.cc:561
  2200. #, fuzzy, c-format
  2201. msgid "Error occurred while processing %s (%s%d)"
  2202. msgstr "حدث خطأ أثناء معالجة %s (NewVersion1)"
  2203. #: apt-pkg/pkgcachegen.cc:251
  2204. msgid "Wow, you exceeded the number of package names this APT is capable of."
  2205. msgstr ""
  2206. #: apt-pkg/pkgcachegen.cc:254
  2207. msgid "Wow, you exceeded the number of versions this APT is capable of."
  2208. msgstr ""
  2209. #: apt-pkg/pkgcachegen.cc:257
  2210. msgid "Wow, you exceeded the number of descriptions this APT is capable of."
  2211. msgstr ""
  2212. #: apt-pkg/pkgcachegen.cc:260
  2213. msgid "Wow, you exceeded the number of dependencies this APT is capable of."
  2214. msgstr ""
  2215. #: apt-pkg/pkgcachegen.cc:568
  2216. #, c-format
  2217. msgid "Package %s %s was not found while processing file dependencies"
  2218. msgstr ""
  2219. #: apt-pkg/pkgcachegen.cc:1197
  2220. #, c-format
  2221. msgid "Couldn't stat source package list %s"
  2222. msgstr ""
  2223. #: apt-pkg/pkgcachegen.cc:1285 apt-pkg/pkgcachegen.cc:1389
  2224. #: apt-pkg/pkgcachegen.cc:1395 apt-pkg/pkgcachegen.cc:1552
  2225. msgid "Reading package lists"
  2226. msgstr "قراءة قوائم الحزم"
  2227. #: apt-pkg/pkgcachegen.cc:1302
  2228. msgid "Collecting File Provides"
  2229. msgstr ""
  2230. #: apt-pkg/pkgcachegen.cc:1494 apt-pkg/pkgcachegen.cc:1501
  2231. msgid "IO Error saving source cache"
  2232. msgstr ""
  2233. #: apt-pkg/acquire-item.cc:139
  2234. #, c-format
  2235. msgid "rename failed, %s (%s -> %s)."
  2236. msgstr "فشل إعادة التسمية ، %s (%s -> %s)."
  2237. #: apt-pkg/acquire-item.cc:599
  2238. msgid "MD5Sum mismatch"
  2239. msgstr "MD5Sum غير متطابقة"
  2240. #: apt-pkg/acquire-item.cc:870 apt-pkg/acquire-item.cc:1865
  2241. #: apt-pkg/acquire-item.cc:2008
  2242. #, fuzzy
  2243. msgid "Hash Sum mismatch"
  2244. msgstr "MD5Sum غير متطابقة"
  2245. #: apt-pkg/acquire-item.cc:1370
  2246. #, c-format
  2247. msgid ""
  2248. "Unable to find expected entry '%s' in Release file (Wrong sources.list entry "
  2249. "or malformed file)"
  2250. msgstr ""
  2251. #: apt-pkg/acquire-item.cc:1386
  2252. #, fuzzy, c-format
  2253. msgid "Unable to find hash sum for '%s' in Release file"
  2254. msgstr "تعذر فتح ملف قاعدة البيانات %s: %s"
  2255. #: apt-pkg/acquire-item.cc:1428
  2256. msgid "There is no public key available for the following key IDs:\n"
  2257. msgstr ""
  2258. #: apt-pkg/acquire-item.cc:1466
  2259. #, c-format
  2260. msgid ""
  2261. "Release file for %s is expired (invalid since %s). Updates for this "
  2262. "repository will not be applied."
  2263. msgstr ""
  2264. #: apt-pkg/acquire-item.cc:1488
  2265. #, c-format
  2266. msgid "Conflicting distribution: %s (expected %s but got %s)"
  2267. msgstr ""
  2268. #: apt-pkg/acquire-item.cc:1518
  2269. #, c-format
  2270. msgid ""
  2271. "An error occurred during the signature verification. The repository is not "
  2272. "updated and the previous index files will be used. GPG error: %s: %s\n"
  2273. msgstr ""
  2274. #. Invalid signature file, reject (LP: #346386) (Closes: #627642)
  2275. #: apt-pkg/acquire-item.cc:1528 apt-pkg/acquire-item.cc:1533
  2276. #, c-format
  2277. msgid "GPG error: %s: %s"
  2278. msgstr ""
  2279. #: apt-pkg/acquire-item.cc:1641
  2280. #, c-format
  2281. msgid ""
  2282. "I wasn't able to locate a file for the %s package. This might mean you need "
  2283. "to manually fix this package. (due to missing arch)"
  2284. msgstr ""
  2285. #: apt-pkg/acquire-item.cc:1700
  2286. #, c-format
  2287. msgid ""
  2288. "I wasn't able to locate a file for the %s package. This might mean you need "
  2289. "to manually fix this package."
  2290. msgstr ""
  2291. #: apt-pkg/acquire-item.cc:1759
  2292. #, c-format
  2293. msgid ""
  2294. "The package index files are corrupted. No Filename: field for package %s."
  2295. msgstr ""
  2296. #: apt-pkg/acquire-item.cc:1857
  2297. msgid "Size mismatch"
  2298. msgstr "الحجم غير متطابق"
  2299. #: apt-pkg/indexrecords.cc:68
  2300. #, fuzzy, c-format
  2301. msgid "Unable to parse Release file %s"
  2302. msgstr "تعذر فتح ملف قاعدة البيانات %s: %s"
  2303. #: apt-pkg/indexrecords.cc:78
  2304. #, fuzzy, c-format
  2305. msgid "No sections in Release file %s"
  2306. msgstr "لاحظ، تحديد %s بدلاً من %s\n"
  2307. #: apt-pkg/indexrecords.cc:112
  2308. #, c-format
  2309. msgid "No Hash entry in Release file %s"
  2310. msgstr ""
  2311. #: apt-pkg/indexrecords.cc:125
  2312. #, fuzzy, c-format
  2313. msgid "Invalid 'Valid-Until' entry in Release file %s"
  2314. msgstr "لاحظ، تحديد %s بدلاً من %s\n"
  2315. #: apt-pkg/indexrecords.cc:144
  2316. #, fuzzy, c-format
  2317. msgid "Invalid 'Date' entry in Release file %s"
  2318. msgstr "تعذر فتح ملف قاعدة البيانات %s: %s"
  2319. #: apt-pkg/vendorlist.cc:78
  2320. #, c-format
  2321. msgid "Vendor block %s contains no fingerprint"
  2322. msgstr ""
  2323. #: apt-pkg/cdrom.cc:576
  2324. #, c-format
  2325. msgid ""
  2326. "Using CD-ROM mount point %s\n"
  2327. "Mounting CD-ROM\n"
  2328. msgstr ""
  2329. #: apt-pkg/cdrom.cc:585 apt-pkg/cdrom.cc:682
  2330. msgid "Identifying.. "
  2331. msgstr "جاري التعرف..."
  2332. #: apt-pkg/cdrom.cc:613
  2333. #, c-format
  2334. msgid "Stored label: %s\n"
  2335. msgstr ""
  2336. #: apt-pkg/cdrom.cc:622 apt-pkg/cdrom.cc:907
  2337. #, fuzzy
  2338. msgid "Unmounting CD-ROM...\n"
  2339. msgstr "فك تركيب القرص المدمج..."
  2340. #: apt-pkg/cdrom.cc:642
  2341. #, c-format
  2342. msgid "Using CD-ROM mount point %s\n"
  2343. msgstr ""
  2344. #: apt-pkg/cdrom.cc:660
  2345. msgid "Unmounting CD-ROM\n"
  2346. msgstr "فك تركيب القرص المدمج\n"
  2347. #: apt-pkg/cdrom.cc:665
  2348. msgid "Waiting for disc...\n"
  2349. msgstr "بانتظار القرص...\n"
  2350. #: apt-pkg/cdrom.cc:674
  2351. msgid "Mounting CD-ROM...\n"
  2352. msgstr "تركيب القرص...\n"
  2353. #: apt-pkg/cdrom.cc:693
  2354. msgid "Scanning disc for index files..\n"
  2355. msgstr ""
  2356. #: apt-pkg/cdrom.cc:744
  2357. #, c-format
  2358. msgid ""
  2359. "Found %zu package indexes, %zu source indexes, %zu translation indexes and "
  2360. "%zu signatures\n"
  2361. msgstr ""
  2362. #: apt-pkg/cdrom.cc:755
  2363. msgid ""
  2364. "Unable to locate any package files, perhaps this is not a Debian Disc or the "
  2365. "wrong architecture?"
  2366. msgstr ""
  2367. #: apt-pkg/cdrom.cc:782
  2368. #, c-format
  2369. msgid "Found label '%s'\n"
  2370. msgstr ""
  2371. #: apt-pkg/cdrom.cc:811
  2372. msgid "That is not a valid name, try again.\n"
  2373. msgstr "هذا الاسم غير صالح، حاول مجدداً.\n"
  2374. #: apt-pkg/cdrom.cc:828
  2375. #, c-format
  2376. msgid ""
  2377. "This disc is called: \n"
  2378. "'%s'\n"
  2379. msgstr ""
  2380. "هذا القرص مسمى: \n"
  2381. "'%s'\n"
  2382. #: apt-pkg/cdrom.cc:830
  2383. msgid "Copying package lists..."
  2384. msgstr "نسخ قوائم الحزم..."
  2385. #: apt-pkg/cdrom.cc:857
  2386. msgid "Writing new source list\n"
  2387. msgstr "كتابة لائحة المصادر الجديدة\n"
  2388. #: apt-pkg/cdrom.cc:865
  2389. msgid "Source list entries for this disc are:\n"
  2390. msgstr ""
  2391. #: apt-pkg/indexcopy.cc:236 apt-pkg/indexcopy.cc:764
  2392. #, c-format
  2393. msgid "Wrote %i records.\n"
  2394. msgstr ""
  2395. #: apt-pkg/indexcopy.cc:238 apt-pkg/indexcopy.cc:766
  2396. #, c-format
  2397. msgid "Wrote %i records with %i missing files.\n"
  2398. msgstr ""
  2399. #: apt-pkg/indexcopy.cc:241 apt-pkg/indexcopy.cc:769
  2400. #, c-format
  2401. msgid "Wrote %i records with %i mismatched files\n"
  2402. msgstr ""
  2403. #: apt-pkg/indexcopy.cc:244 apt-pkg/indexcopy.cc:772
  2404. #, c-format
  2405. msgid "Wrote %i records with %i missing files and %i mismatched files\n"
  2406. msgstr ""
  2407. #: apt-pkg/indexcopy.cc:515
  2408. #, c-format
  2409. msgid "Can't find authentication record for: %s"
  2410. msgstr ""
  2411. #: apt-pkg/indexcopy.cc:521
  2412. #, fuzzy, c-format
  2413. msgid "Hash mismatch for: %s"
  2414. msgstr "MD5Sum غير متطابقة"
  2415. #: apt-pkg/cacheset.cc:403
  2416. #, c-format
  2417. msgid "Release '%s' for '%s' was not found"
  2418. msgstr "تعذر العثور على الإصدارة '%s' للحزمة '%s'"
  2419. #: apt-pkg/cacheset.cc:406
  2420. #, c-format
  2421. msgid "Version '%s' for '%s' was not found"
  2422. msgstr "تعذر العثور على النسخة '%s' للحزمة '%s'"
  2423. #: apt-pkg/cacheset.cc:517
  2424. #, fuzzy, c-format
  2425. msgid "Couldn't find task '%s'"
  2426. msgstr "تعذر العثور على الحزمة %s"
  2427. #: apt-pkg/cacheset.cc:523
  2428. #, fuzzy, c-format
  2429. msgid "Couldn't find any package by regex '%s'"
  2430. msgstr "تعذر العثور على الحزمة %s"
  2431. #: apt-pkg/cacheset.cc:534
  2432. #, c-format
  2433. msgid "Can't select versions from package '%s' as it is purely virtual"
  2434. msgstr ""
  2435. #: apt-pkg/cacheset.cc:541 apt-pkg/cacheset.cc:548
  2436. #, c-format
  2437. msgid ""
  2438. "Can't select installed nor candidate version from package '%s' as it has "
  2439. "neither of them"
  2440. msgstr ""
  2441. #: apt-pkg/cacheset.cc:555
  2442. #, c-format
  2443. msgid "Can't select newest version from package '%s' as it is purely virtual"
  2444. msgstr ""
  2445. #: apt-pkg/cacheset.cc:563
  2446. #, c-format
  2447. msgid "Can't select candidate version from package %s as it has no candidate"
  2448. msgstr ""
  2449. #: apt-pkg/cacheset.cc:571
  2450. #, c-format
  2451. msgid "Can't select installed version from package %s as it is not installed"
  2452. msgstr ""
  2453. #: apt-pkg/edsp.cc:41 apt-pkg/edsp.cc:61
  2454. msgid "Send scenario to solver"
  2455. msgstr ""
  2456. #: apt-pkg/edsp.cc:209
  2457. msgid "Send request to solver"
  2458. msgstr ""
  2459. #: apt-pkg/edsp.cc:279
  2460. msgid "Prepare for receiving solution"
  2461. msgstr ""
  2462. #: apt-pkg/edsp.cc:286
  2463. msgid "External solver failed without a proper error message"
  2464. msgstr ""
  2465. #: apt-pkg/edsp.cc:556 apt-pkg/edsp.cc:559 apt-pkg/edsp.cc:564
  2466. msgid "Execute external solver"
  2467. msgstr ""
  2468. #: apt-pkg/deb/dpkgpm.cc:73
  2469. #, fuzzy, c-format
  2470. msgid "Installing %s"
  2471. msgstr "تم تثبيت %s"
  2472. #: apt-pkg/deb/dpkgpm.cc:74 apt-pkg/deb/dpkgpm.cc:952
  2473. #, c-format
  2474. msgid "Configuring %s"
  2475. msgstr "تهيئة %s"
  2476. #: apt-pkg/deb/dpkgpm.cc:75 apt-pkg/deb/dpkgpm.cc:959
  2477. #, c-format
  2478. msgid "Removing %s"
  2479. msgstr "إزالة %s"
  2480. #: apt-pkg/deb/dpkgpm.cc:76
  2481. #, fuzzy, c-format
  2482. msgid "Completely removing %s"
  2483. msgstr "تمت إزالة %s بالكامل"
  2484. #: apt-pkg/deb/dpkgpm.cc:77
  2485. #, c-format
  2486. msgid "Noting disappearance of %s"
  2487. msgstr ""
  2488. #: apt-pkg/deb/dpkgpm.cc:78
  2489. #, c-format
  2490. msgid "Running post-installation trigger %s"
  2491. msgstr ""
  2492. #. FIXME: use a better string after freeze
  2493. #: apt-pkg/deb/dpkgpm.cc:705
  2494. #, c-format
  2495. msgid "Directory '%s' missing"
  2496. msgstr ""
  2497. #: apt-pkg/deb/dpkgpm.cc:720 apt-pkg/deb/dpkgpm.cc:740
  2498. #, fuzzy, c-format
  2499. msgid "Could not open file '%s'"
  2500. msgstr "فشل إغلاق الملف %s"
  2501. #: apt-pkg/deb/dpkgpm.cc:945
  2502. #, c-format
  2503. msgid "Preparing %s"
  2504. msgstr "تحضير %s"
  2505. #: apt-pkg/deb/dpkgpm.cc:946
  2506. #, c-format
  2507. msgid "Unpacking %s"
  2508. msgstr "فتح %s"
  2509. #: apt-pkg/deb/dpkgpm.cc:951
  2510. #, c-format
  2511. msgid "Preparing to configure %s"
  2512. msgstr "التحضير لتهيئة %s"
  2513. #: apt-pkg/deb/dpkgpm.cc:953
  2514. #, c-format
  2515. msgid "Installed %s"
  2516. msgstr "تم تثبيت %s"
  2517. #: apt-pkg/deb/dpkgpm.cc:958
  2518. #, c-format
  2519. msgid "Preparing for removal of %s"
  2520. msgstr "التحضير لإزالة %s"
  2521. #: apt-pkg/deb/dpkgpm.cc:960
  2522. #, c-format
  2523. msgid "Removed %s"
  2524. msgstr "تم إزالة %s"
  2525. #: apt-pkg/deb/dpkgpm.cc:965
  2526. #, c-format
  2527. msgid "Preparing to completely remove %s"
  2528. msgstr "التحضير لإزالة %s بالكامل"
  2529. #: apt-pkg/deb/dpkgpm.cc:966
  2530. #, c-format
  2531. msgid "Completely removed %s"
  2532. msgstr "تمت إزالة %s بالكامل"
  2533. #: apt-pkg/deb/dpkgpm.cc:1213
  2534. msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n"
  2535. msgstr ""
  2536. #: apt-pkg/deb/dpkgpm.cc:1243
  2537. msgid "Running dpkg"
  2538. msgstr ""
  2539. #: apt-pkg/deb/dpkgpm.cc:1415
  2540. msgid "Operation was interrupted before it could finish"
  2541. msgstr ""
  2542. #: apt-pkg/deb/dpkgpm.cc:1477
  2543. msgid "No apport report written because MaxReports is reached already"
  2544. msgstr ""
  2545. #. check if its not a follow up error
  2546. #: apt-pkg/deb/dpkgpm.cc:1482
  2547. msgid "dependency problems - leaving unconfigured"
  2548. msgstr ""
  2549. #: apt-pkg/deb/dpkgpm.cc:1484
  2550. msgid ""
  2551. "No apport report written because the error message indicates its a followup "
  2552. "error from a previous failure."
  2553. msgstr ""
  2554. #: apt-pkg/deb/dpkgpm.cc:1490
  2555. msgid ""
  2556. "No apport report written because the error message indicates a disk full "
  2557. "error"
  2558. msgstr ""
  2559. #: apt-pkg/deb/dpkgpm.cc:1496
  2560. msgid ""
  2561. "No apport report written because the error message indicates a out of memory "
  2562. "error"
  2563. msgstr ""
  2564. #: apt-pkg/deb/dpkgpm.cc:1503
  2565. msgid ""
  2566. "No apport report written because the error message indicates a dpkg I/O error"
  2567. msgstr ""
  2568. #: apt-pkg/deb/debsystem.cc:84
  2569. #, c-format
  2570. msgid ""
  2571. "Unable to lock the administration directory (%s), is another process using "
  2572. "it?"
  2573. msgstr ""
  2574. #: apt-pkg/deb/debsystem.cc:87
  2575. #, fuzzy, c-format
  2576. msgid "Unable to lock the administration directory (%s), are you root?"
  2577. msgstr "تعذر قفل دليل القائمة"
  2578. #. TRANSLATORS: the %s contains the recovery command, usually
  2579. #. dpkg --configure -a
  2580. #: apt-pkg/deb/debsystem.cc:103
  2581. #, c-format
  2582. msgid ""
  2583. "dpkg was interrupted, you must manually run '%s' to correct the problem. "
  2584. msgstr ""
  2585. #: apt-pkg/deb/debsystem.cc:121
  2586. msgid "Not locked"
  2587. msgstr ""
  2588. #, fuzzy
  2589. #~ msgid "Skipping nonexistent file %s"
  2590. #~ msgstr "فتح ملف التهيئة %s"
  2591. #~ msgid "Failed to remove %s"
  2592. #~ msgstr "تعذرت إزالة %s"
  2593. #~ msgid "Unable to create %s"
  2594. #~ msgstr "تعذر إنشاء %s"
  2595. #~ msgid "Failed to change to the admin dir %sinfo"
  2596. #~ msgstr "فشل تغيير دليل الإدارة إلى %sinfo"
  2597. #~ msgid "Internal error getting a package name"
  2598. #~ msgstr "خطأ داخلي أثناء الحصول على اسم الحزمة"
  2599. #~ msgid "Reading file listing"
  2600. #~ msgstr "قراءة سرد الملفات"
  2601. #~ msgid "Failed reading the list file %sinfo/%s"
  2602. #~ msgstr "فشلت قراءة ملف القائمة %sinfo/%s"
  2603. #~ msgid "Internal error getting a node"
  2604. #~ msgstr "خطأ داخلي أثناء الحصول على node"
  2605. #~ msgid "Couldn't change to %s"
  2606. #~ msgstr "تعذر التغيير إلى %s"
  2607. #~ msgid "Failed to locate a valid control file"
  2608. #~ msgstr "فشل العثور على ملف تحكّم صالح"
  2609. #, fuzzy
  2610. #~ msgid "Couldn't open pipe for %s"
  2611. #~ msgstr "فشل إغلاق الملف %s"
  2612. #~ msgid "Error occurred while processing %s (NewPackage)"
  2613. #~ msgstr "حدث خطأ أثناء معالجة %s (NewPackage)"
  2614. #~ msgid "Error occurred while processing %s (UsePackage1)"
  2615. #~ msgstr "حدث خطأ أثناء معالجة %s (UserPackage1)"
  2616. #, fuzzy
  2617. #~ msgid "Error occurred while processing %s (NewFileDesc1)"
  2618. #~ msgstr "حدث خطأ أثناء معالجة %s (NewFileVer1)"
  2619. #~ msgid "Error occurred while processing %s (UsePackage2)"
  2620. #~ msgstr "حدث خطأ أثناء معالجة %s (UserPackage2)"
  2621. #~ msgid "Error occurred while processing %s (NewFileVer1)"
  2622. #~ msgstr "حدث خطأ أثناء معالجة %s (NewFileVer1)"
  2623. #, fuzzy
  2624. #~ msgid "Error occurred while processing %s (NewVersion%d)"
  2625. #~ msgstr "حدث خطأ أثناء معالجة %s (NewVersion1)"
  2626. #~ msgid "Error occurred while processing %s (UsePackage3)"
  2627. #~ msgstr "حدث خطأ أثناء معالجة %s (UsePackage3)"
  2628. #, fuzzy
  2629. #~ msgid "Error occurred while processing %s (NewFileDesc2)"
  2630. #~ msgstr "حدث خطأ أثناء معالجة %s (NewFileVer1)"
  2631. #~ msgid "Internal error, could not locate member"
  2632. #~ msgstr "خطأ داخلي، تعذر العثور على العضو"
  2633. #~ msgid "Error occurred while processing %s (NewVersion2)"
  2634. #~ msgstr "حدث خطأ أثناء معالجة %s (NewVersion2)"
  2635. #~ msgid " %4i %s\n"
  2636. #~ msgstr " %4i %s\n"
  2637. #~ msgid "%4i %s\n"
  2638. #~ msgstr "%4i %s\n"
  2639. #, fuzzy
  2640. #~ msgid "Processing triggers for %s"
  2641. #~ msgstr "خطأ في معالجة الدليل %s"
  2642. #, fuzzy
  2643. #~ msgid "Line %d too long (max %lu)"
  2644. #~ msgstr "السطر %d طويل جداً (أقصاه %d)"
  2645. #, fuzzy
  2646. #~ msgid "Line %d too long (max %d)"
  2647. #~ msgstr "السطر %d طويل جداً (أقصاه %d)"
  2648. #, fuzzy
  2649. #~ msgid "Error occured while processing %s (NewFileDesc1)"
  2650. #~ msgstr "حدث خطأ أثناء معالجة %s (NewFileVer1)"
  2651. #, fuzzy
  2652. #~ msgid "Error occured while processing %s (NewFileDesc2)"
  2653. #~ msgstr "حدث خطأ أثناء معالجة %s (NewFileVer1)"
  2654. #, fuzzy
  2655. #~ msgid "openpty failed\n"
  2656. #~ msgstr "فشل التحديد"
  2657. #~ msgid "File date has changed %s"
  2658. #~ msgstr "تغير تاريخ الملف %s"