ar.po 97 KB

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