ar.po 75 KB

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