ar.po 92 KB

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