ar.po 92 KB

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