ar.po 82 KB

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