ar.po 71 KB

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