ar.po 83 KB

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