ar.po 93 KB

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