ar.po 90 KB

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