ar.po 94 KB

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