ar.po 75 KB

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