Localizable.strings 134 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992
  1. /* No comment provided by engineer. */
  2. "%@ invitation" = "%@دعوة";
  3. /* {app name} is not installed */
  4. "%@ not installed" = "%@ لم يتم تثبيت";
  5. /* {app name} version not supported */
  6. "%@ version not supported" = "%@ إصدار غير مدعوم";
  7. /* No comment provided by engineer. */
  8. "%d days ago" = "منذ %d أيام مضت";
  9. /* No comment provided by engineer. */
  10. "%d hours ago" = "منذ %d ساعات مضت";
  11. /* No comment provided by engineer. */
  12. "%d minutes ago" = "منذ %d دقيقة مضت";
  13. /* Votes in a poll */
  14. "%d votes" = "%d أصوات";
  15. /* No comment provided by engineer. */
  16. "%ld notifications" = "%ld إخطارات";
  17. /* No comment provided by engineer. */
  18. "%ld participants" = "%ld مشاركون";
  19. /* No comment provided by engineer. */
  20. "1 day" = "1 يوم";
  21. /* No comment provided by engineer. */
  22. "1 hour" = "ساعة واحدة";
  23. /* No comment provided by engineer. */
  24. "1 week" = "1 أسبوع ";
  25. /* No comment provided by engineer. */
  26. "30 minutes" = "30 دقيقة";
  27. /* No comment provided by engineer. */
  28. "4 hours" = "4 ساعات";
  29. /* No comment provided by engineer. */
  30. "4 weeks" = "4 أسابيع";
  31. /* No comment provided by engineer. */
  32. "8 hours" = "8 ساعات";
  33. /* No comment provided by engineer. */
  34. "@-mentions only" = "@-منشن فقط";
  35. /* No comment provided by engineer. */
  36. "[Unknown username]" = "[اسم مستخدم غير معروف]";
  37. /* No comment provided by engineer. */
  38. "About" = "عن";
  39. /* No comment provided by engineer. */
  40. "Accept" = "قبول";
  41. /* No comment provided by engineer. */
  42. "Account" = "الحساب";
  43. /* No comment provided by engineer. */
  44. "Account already added" = "تمت إضافة الحساب بالفعل ";
  45. /* No comment provided by engineer. */
  46. "Account not configured" = "الحساب غير مهيأ";
  47. /* No comment provided by engineer. */
  48. "Accounts" = "الحسابات";
  49. /* No comment provided by engineer. */
  50. "Accuracy" = "الدقة";
  51. /* No comment provided by engineer. */
  52. "Add" = "إضافة";
  53. /* No comment provided by engineer. */
  54. "Add (%lu)" = "إضافة (%lu)";
  55. /* No comment provided by engineer. */
  56. "Add account" = "أضف حسابا";
  57. /* No comment provided by engineer. */
  58. "Add an internal note about this ban" = "أضِف ملاحظة داخلية حول هذا الحظر";
  59. /* No comment provided by engineer. */
  60. "Add answer" = "إضافة إجابة";
  61. /* No comment provided by engineer. */
  62. "Add participants" = "إضافة مشارك جديد";
  63. /* No comment provided by engineer. */
  64. "Add reaction" = "إضافة تفاعل";
  65. /* No comment provided by engineer. */
  66. "Add to favorites" = "أضفه إلى المفضلة";
  67. /* No comment provided by engineer. */
  68. "Added note to self" = "ملاحظة شخصية مضافة";
  69. /* No comment provided by engineer. */
  70. "Adding a mention will only notify users that did not read the message yet" = "إضافة إشارة لتنبيه المستخدِم إلى أنه لم يقرأ الرسالة بعدُ";
  71. /* No comment provided by engineer. */
  72. "Address" = "العنوان";
  73. /* No comment provided by engineer. */
  74. "Advanced" = "تعديلات متقدمه";
  75. /* No comment provided by engineer. */
  76. "AirPlay button" = "زر AirPlay";
  77. /* 'All' meaning 'All conversations' */
  78. "All" = "الكل";
  79. /* No comment provided by engineer. */
  80. "All messages" = "كافة الرسائل";
  81. /* No comment provided by engineer. */
  82. "All messages were deleted" = "تم مسح جميع الرسائل";
  83. /* No comment provided by engineer. */
  84. "All notifications are muted" = "لا تظهر جميع التنبيهات ";
  85. /* No comment provided by engineer. */
  86. "Allow guests" = "السماح للضيوف";
  87. /* '@all' should not be translated */
  88. "Allow participants to mention @all" = "تمكين جميع المشاركين من الإشارة إلى الكل @all";
  89. /* No comment provided by engineer. */
  90. "Allow to dial-in without a pin" = "السماح بالاتصال دون رقم تعريف شخصي PIN";
  91. /* '{Microphone, Camera, ...} access is allowed' */
  92. "Allowed" = "مسموح";
  93. /* No comment provided by engineer. */
  94. "Alphabetical order" = "ترتيب أبجدي";
  95. /* No comment provided by engineer. */
  96. "Also open to guest app users" = "مفتوح أيضًا لضيوف التطبيق ";
  97. /* Please put %ld placeholder in the correct position on the translated text but do not translate it */
  98. "An administrator added you and %ld more participants" = "قام المشرف بإضافتك أنت و %ld مشاركين آخرين";
  99. /* Please put {user0} placeholder in the correct position on the translated text but do not translate it */
  100. "An administrator added you and {user0}" = "قام المشرف بإضافتك أنت و {user0}";
  101. /* Please put {user0} and %ld placeholders in the correct position on the translated text but do not translate them */
  102. "An administrator added {user0} and %ld more participants" = "قام المشرف بإضافة {user0} و %ld مشاركين آخرين";
  103. /* Please put {user0} and {user1} placeholders in the correct position on the translated text but do not translate them */
  104. "An administrator added {user0} and {user1}" = "قام المشرف بإضافة {user0} و {user1}";
  105. /* Please put %ld placeholder in the correct position on the translated text but do not translate it */
  106. "An administrator demoted you and %ld more participants from moderators" = "قام المشرف بعزلك أنت و %ld مشتركين آخرين عن دور المنسق";
  107. /* Please put {user0} placeholder in the correct position on the translated text but do not translate it */
  108. "An administrator demoted you and {user0} from moderators" = "قام المشرف بعزلك أنت و {user0} عن دور المنسق";
  109. /* Please put {user0} and %ld placeholders in the correct position on the translated text but do not translate them */
  110. "An administrator demoted {user0} and %ld more participants from moderators" = "قام المشرف بعزل {user0} و %ld مشتركين آخرين عن دور المنسق";
  111. /* Please put {user0} and {user1} placeholders in the correct position on the translated text but do not translate them */
  112. "An administrator demoted {user0} and {user1} from moderators" = "قام المشرف بعزل {user0} و {user1} عن دور المنسق";
  113. /* Please put %ld placeholder in the correct position on the translated text but do not translate it */
  114. "An administrator promoted you and %ld more participants to moderators" = "قام المشرف بترفيعك أنت و %ld مشتركين آخرين إلى دور المنسق";
  115. /* Please put {user0} placeholder in the correct position on the translated text but do not translate it */
  116. "An administrator promoted you and {user0} to moderators" = "قام المشرف بترفيعك أنت و {user0} إلى دور المنسق";
  117. /* Please put {user0} and %ld placeholders in the correct position on the translated text but do not translate them */
  118. "An administrator promoted {user0} and %ld more participants to moderators" = "قام المشرف بترفيع {user0} و %ld مشاركين آخرين إلى دور المنسق";
  119. /* Please put {user0} and {user1} placeholders in the correct position on the translated text but do not translate them */
  120. "An administrator promoted {user0} and {user1} to moderators" = "قام المشرف بترفيع {user0} و {user1} إلى دور المنسق";
  121. /* Please put %ld placeholder in the correct position on the translated text but do not translate it */
  122. "An administrator removed you and %ld more participants" = "قام المشرف بحذف اشتراكك أنت و %ld مشاركين آخرين ";
  123. /* Please put {user0} placeholder in the correct position on the translated text but do not translate it */
  124. "An administrator removed you and {user0}" = "قام المشرف بحذف اشتراكك أنت و {user0} ";
  125. /* Please put {user0} and %ld placeholders in the correct position on the translated text but do not translate them */
  126. "An administrator removed {user0} and %ld more participants" = "قام المشرف بحذف اشتراك {user0} و %ld مشاركين آخرين ";
  127. /* Please put {user0} and {user1} placeholders in the correct position on the translated text but do not translate them */
  128. "An administrator removed {user0} and {user1}" = "قام المشرف بحذف اشتراك {user0} و {user1}";
  129. /* No comment provided by engineer. */
  130. "An error occurred changing privacy setting" = "حدث خطأ أثناء تغيير إعدادات الخصوصية";
  131. /* No comment provided by engineer. */
  132. "An error occurred changing read status setting" = "حدث خطأ أثناء تغيير إعداد حالة القراءة";
  133. /* No comment provided by engineer. */
  134. "An error occurred changing typing privacy setting" = "حدث خطأ أثناء تغيير إعدادات خصوصية الكتابة";
  135. /* No comment provided by engineer. */
  136. "An error occurred downloading the picture" = "حدث خطأ أثناء تنزيل الصورة";
  137. /* No comment provided by engineer. */
  138. "An error occurred removing profile image" = "وقع خطأ عند حذف صورة البروفايل";
  139. /* No comment provided by engineer. */
  140. "An error occurred setting address" = "حدث خطأ أثناء تعيين العنوان";
  141. /* No comment provided by engineer. */
  142. "An error occurred setting email address" = "وقع خطأ عند تعيين عنوان البريد الالكتروني";
  143. /* No comment provided by engineer. */
  144. "An error occurred setting phone number" = "حدث خطأ أثناء تعيين رقم الهاتف";
  145. /* No comment provided by engineer. */
  146. "An error occurred setting profile image" = "وقع خطأ عند تعيين صورة البروفايل";
  147. /* No comment provided by engineer. */
  148. "An error occurred setting Twitter account" = "حدث خطأ أثناء إعداد حساب تويتر";
  149. /* No comment provided by engineer. */
  150. "An error occurred setting user name" = "حدث خطأ أثناء تعيين اسم المستخدم";
  151. /* No comment provided by engineer. */
  152. "An error occurred setting website" = "حدث خطأ أثناء تعيين موقع الويب";
  153. /* No comment provided by engineer. */
  154. "An error occurred trying to translate message" = "حدث خطأ أثناء محاولة ترجمة الرسالة";
  155. /* No comment provided by engineer. */
  156. "An error occurred while adding %@ to the room" = "حدث خطأ أثناء إضافة %@ إلى الغرفة ";
  157. /* No comment provided by engineer. */
  158. "An error occurred while adding a reaction to a message" = "حدث خطأ أثناء إضافة تفاعل إلى رسالة";
  159. /* No comment provided by engineer. */
  160. "An error occurred while adding note" = "حدث خطأ أثنا إضافة الملاحظة";
  161. /* No comment provided by engineer. */
  162. "An error occurred while clearing status message" = "حدث خطأ أثناء مسح رسالة الحالة";
  163. /* No comment provided by engineer. */
  164. "An error occurred while creating the poll" = "حدث خطأ أثناء إنشاء الاستبيان";
  165. /* No comment provided by engineer. */
  166. "An error occurred while deleting the message" = "حدث خطأ أثناء حذف الرسالة";
  167. /* No comment provided by engineer. */
  168. "An error occurred while opening the file %@" = "حدث خطأ أثناء فتح الملف %@";
  169. /* No comment provided by engineer. */
  170. "An error occurred while removing a reaction from a message" = "حدث خطأ أثناء حذف تفاعل من رسالة";
  171. /* No comment provided by engineer. */
  172. "An error occurred while removing the avatar" = "حدث خطأ أثناء إزالة الرمز التجسيدي avatar";
  173. /* No comment provided by engineer. */
  174. "An error occurred while sending the message" = "حدث خطأ أثناء إرسال الرسالة";
  175. /* No comment provided by engineer. */
  176. "An error occurred while setting \(formattedPhoneNumber) as phone number" = "حدث خطأ أثناء تعيين \ (formattedPhoneNumber) كرقم هاتف";
  177. /* No comment provided by engineer. */
  178. "An error occurred while setting description" = "حدث خطأ أثناء تعيين الوصف";
  179. /* No comment provided by engineer. */
  180. "An error occurred while setting phone number" = "حدث خطأ أثناء تعيين رقم الهاتف";
  181. /* No comment provided by engineer. */
  182. "An error occurred while setting status message" = "حدث خطأ أثناء تعيين رسالة الحالة";
  183. /* No comment provided by engineer. */
  184. "An error occurred while setting the avatar" = "حدث خطأ أثناء تعيين الرمز التجسيدي avatar";
  185. /* No comment provided by engineer. */
  186. "An error occurred while sharing the file" = "حدث خطأ أثناء مشاركة الملف";
  187. /* No comment provided by engineer. */
  188. "an hour" = "ساعة ";
  189. /* Alice and Bob */
  190. "and" = "و";
  191. /* Alice, Bob, Charlie and 3 others are typing… */
  192. "and %ld others are typing…" = "و%ld آخرون يكتبون…";
  193. /* Alice, Bob, Charlie and 1 other is typing… */
  194. "and 1 other is typing…" = "وشخص آخر 1 يكتب…";
  195. /* No comment provided by engineer. */
  196. "Answer" = "إجابة";
  197. /* No comment provided by engineer. */
  198. "Answers" = "إجابات";
  199. /* No comment provided by engineer. */
  200. "App" = "التطبيق";
  201. /* No comment provided by engineer. */
  202. "App is outdated" = "التطبيق يحتاج إلى التحديث";
  203. /* No comment provided by engineer. */
  204. "Appear offline" = "الحالة غير متصل";
  205. /* Alice and Bob are typing… */
  206. "are typing…" = "يكتبون ...";
  207. /* No comment provided by engineer. */
  208. "Ask a question" = "طرح سؤال";
  209. /* No comment provided by engineer. */
  210. "Attachments allowed?" = "يسمح بالمرفقات؟";
  211. /* No comment provided by engineer. */
  212. "Audio options" = "خيارات الصوت";
  213. /* No comment provided by engineer. */
  214. "Audios" = "الصَّوتِيات";
  215. /* No comment provided by engineer. */
  216. "Away" = "بالخارج";
  217. /* Ban a user/guest */
  218. "Ban" = "حظر";
  219. /* e.g. Ban John Doe */
  220. "Ban %@" = "حظر %@";
  221. /* No comment provided by engineer. */
  222. "Ban participant" = "حظر مشارك";
  223. /* Date and time of ban creation */
  224. "Banned by:" = "محظور من قِبَل";
  225. /* No comment provided by engineer. */
  226. "Banned users and guests" = "المستخدِمون والضيوف المحظورون";
  227. /* No comment provided by engineer. */
  228. "bot" = "بوت";
  229. /* No comment provided by engineer. */
  230. "Cached files" = "ملفات مُخزّنة مؤقّتاً";
  231. /* No comment provided by engineer. */
  232. "Cached images" = "صِوَر مُخزّنة مؤقّتاً";
  233. /* No comment provided by engineer. */
  234. "Call notification sent" = "تمّ إرسال إشعارٍ بالمكالمة";
  235. /* No comment provided by engineer. */
  236. "Call recording enabled?" = "تمكين تسجيل المكالمات؟";
  237. /* No comment provided by engineer. */
  238. "Call recording failed. Please contact your administrator" = "فشل في تسجيل المكالمة. إتصل رجاء بمشرفك";
  239. /* No comment provided by engineer. */
  240. "Call recording is starting" = "بَدَأَ تسجيل المكالمة";
  241. /* No comment provided by engineer. */
  242. "Call recording started" = "بدأ تسجيل المكالمة";
  243. /* No comment provided by engineer. */
  244. "Call recording stopped" = "توقف تسجيل المكالمة";
  245. /* No comment provided by engineer. */
  246. "Call without notification" = "اتصال بدون إشعار";
  247. /* No comment provided by engineer. */
  248. "CallKit supported?" = "هل Callkit مدعوم؟";
  249. /* No comment provided by engineer. */
  250. "Calls" = "مكالمات";
  251. /* No comment provided by engineer. */
  252. "Calls enabled?" = "تمكين المكالمات؟";
  253. /* No comment provided by engineer. */
  254. "Calls from an old account were received." = "تمّ تلقّي مكالماتٍ واردة من حسابٍ قديمٍ.";
  255. /* No comment provided by engineer. */
  256. "Calls from old accounts" = " مكالمات واردة من حسابات قديمة";
  257. /* No comment provided by engineer. */
  258. "Camera" = "الكاميرا";
  259. /* No comment provided by engineer. */
  260. "Camera access" = "الوصول إلى الكاميرا";
  261. /* No comment provided by engineer. */
  262. "Camera access is not allowed. Check your settings." = "الوصول للكاميرا غير مسموح، تحقق من إعدادتك.";
  263. /* No comment provided by engineer. */
  264. "Camera disabled" = "الكاميرا معطلة";
  265. /* No comment provided by engineer. */
  266. "Camera enabled" = "الكاميرا مفعلة";
  267. /* No comment provided by engineer. */
  268. "Can create conversations?" = "يمكن إنشاء محادثات؟";
  269. /* No comment provided by engineer. */
  270. "Cancel" = "إلغاء";
  271. /* No comment provided by engineer. */
  272. "Cancelled call from another account" = " مكالمة ملغية من حساب آخر";
  273. /* No comment provided by engineer. */
  274. "Cannot share to conversation" = "لا يمكن مُشارَكة المحادثة";
  275. /* No comment provided by engineer. */
  276. "Capabilities" = "القدرات";
  277. /* No comment provided by engineer. */
  278. "Change password" = "تعديل الكلمة السرية";
  279. /* No comment provided by engineer. */
  280. "Change your vote" = "غيّر تصويتك";
  281. /* No comment provided by engineer. */
  282. "Chat" = "الدردشة";
  283. /* No comment provided by engineer. */
  284. "Chat messages" = "رسائل الدردشة";
  285. /* No comment provided by engineer. */
  286. "Clear cache" = "مسح ذاكرة التخزين المؤقتة";
  287. /* No comment provided by engineer. */
  288. "Clear reminder" = "إمْحُ التذكير";
  289. /* No comment provided by engineer. */
  290. "Clear status message" = "امسح رسالة الحالة";
  291. /* No comment provided by engineer. */
  292. "Clear status message after" = "امسح رسالة الحالة بعد";
  293. /* No comment provided by engineer. */
  294. "Close" = "إغلاق";
  295. /* No comment provided by engineer. */
  296. "Configuration" = "إعداد";
  297. /* No comment provided by engineer. */
  298. "Confirm and hide warning" = "قم بالتأكيد مع إخفاء التحذير";
  299. /* No comment provided by engineer. */
  300. "Connecting to %@ …" = "جار الاتصال مع %@...";
  301. /* No comment provided by engineer. */
  302. "Connecting to the call …" = "الاتصال بالمكالمة...";
  303. /* No comment provided by engineer. */
  304. "Contact access" = "الوصول إلى جهات الاتصال";
  305. /* No comment provided by engineer. */
  306. "Contact access has been denied" = "تم رفض الوصول إلى جهات الاتصال";
  307. /* No comment provided by engineer. */
  308. "Contacts" = "جهات الاتصال";
  309. /* No comment provided by engineer. */
  310. "Conversation creation failed" = "تعذّر إنشاء المحادثة";
  311. /* No comment provided by engineer. */
  312. "Conversation details" = "تفاصيل المحادثة";
  313. /* No comment provided by engineer. */
  314. "Conversation name" = "اسم المحادثة";
  315. /* No comment provided by engineer. */
  316. "Conversation name cannot be empty" = "لا يمكن أن يكون اسم المحادثة فارغًا";
  317. /* No comment provided by engineer. */
  318. "Conversation not found" = "المحادثة غير موجودة";
  319. /* No comment provided by engineer. */
  320. "Conversation not found or not joined" = "المحادثة غير موجودة أو لم تنضم لها";
  321. /* No comment provided by engineer. */
  322. "Conversation settings" = "اعدادات المحادثة";
  323. /* No comment provided by engineer. */
  324. "Conversations" = "محادثات";
  325. /* No comment provided by engineer. */
  326. "Copy" = "أنسخ";
  327. /* No comment provided by engineer. */
  328. "Could not access camera" = "تعذر الوصول للكاميرا";
  329. /* No comment provided by engineer. */
  330. "Could not access microphone" = "تعذر الوصول إلى الميكروفون";
  331. /* No comment provided by engineer. */
  332. "Could not access speech recognition" = "تعذر الوصول إلى تطبيق التعرف على الكلام speech recognition";
  333. /* No comment provided by engineer. */
  334. "Could not access your location" = "تعذر الوصول إلى موقعك";
  335. /* No comment provided by engineer. */
  336. "Could not add participant" = "تعذر إضافة مشارك";
  337. /* No comment provided by engineer. */
  338. "Could not ban participant" = "تعذّر حظر مشارك";
  339. /* No comment provided by engineer. */
  340. "Could not change call notifications setting" = "تعذر تغيير إعداد إشعارات المكالمات";
  341. /* No comment provided by engineer. */
  342. "Could not change listable scope of the conversation" = "تعذّر تغيير نطاق عرض listable scope المحادثة";
  343. /* No comment provided by engineer. */
  344. "Could not change lobby state of the conversation" = "تعذر تغيير حالة ساحة الانتظار للمحادثة ";
  345. /* No comment provided by engineer. */
  346. "Could not change mention permissions of the conversation" = "تعذّر تغيير أذونات الإشارة في المحادثة";
  347. /* No comment provided by engineer. */
  348. "Could not change moderation permissions of the participant" = "تعذر تغيير صلاحيات الإشراف للمشارك";
  349. /* No comment provided by engineer. */
  350. "Could not change notifications setting" = "تعذر تغيير إعدادات الإشعارات";
  351. /* No comment provided by engineer. */
  352. "Could not change password protection settings" = "تعذر تغيير إعدادات حماية كلمة المرور";
  353. /* No comment provided by engineer. */
  354. "Could not change read-only state of the conversation" = "تعذر تغيير حالة \"للقراءة فقط\" للمحادثة";
  355. /* No comment provided by engineer. */
  356. "Could not change sharing permissions of the conversation" = "تعذر تغيير صلاحيات المشاركة للمحادثة";
  357. /* No comment provided by engineer. */
  358. "Could not change SIP state of the conversation" = "تعذر تغيير حالة SIP للمحادثة";
  359. /* No comment provided by engineer. */
  360. "Could not clear chat history" = "تعذر محو سجل الدردشة";
  361. /* No comment provided by engineer. */
  362. "Could not clear status message" = "تعذر مسح رسالة الحالة";
  363. /* No comment provided by engineer. */
  364. "Could not delete conversation" = "تعذر حذف المحادثة";
  365. /* No comment provided by engineer. */
  366. "Could not get available languages" = "تعذّر الحصول على قائمة اللغات المتاحة";
  367. /* No comment provided by engineer. */
  368. "Could not join %@ call" = "تعذر انضمام %@المكالمة";
  369. /* No comment provided by engineer. */
  370. "Could not join call with %@" = "تعذر انضمام المكالمة مع %@";
  371. /* No comment provided by engineer. */
  372. "Could not join conversation" = "تعذر الانضمام إلى المحادثة";
  373. /* No comment provided by engineer. */
  374. "Could not leave conversation" = "تعذر مغادرة المحادثة ";
  375. /* No comment provided by engineer. */
  376. "Could not remove participant" = "تعذر إزالة مشارك ";
  377. /* No comment provided by engineer. */
  378. "Could not rename the conversation" = "تعذر إعادة تسمية المحادثة ";
  379. /* No comment provided by engineer. */
  380. "Could not resend email invitations" = "تعذر إعادة إرسال دعوات البريد الإلكتروني";
  381. /* No comment provided by engineer. */
  382. "Could not send call notification" = "تعذّر إرسال إشعار بالمكالمة";
  383. /* No comment provided by engineer. */
  384. "Could not send the message" = "تعذر إرسال الرسالة";
  385. /* No comment provided by engineer. */
  386. "Could not set conversation description" = "تعذر تعيين وصف المحادثة";
  387. /* No comment provided by engineer. */
  388. "Could not set conversation name" = "تعذر تعيين اسم المحادثة";
  389. /* No comment provided by engineer. */
  390. "Could not set message expiration time" = "تعذّر تعيين زمن انتهاء صلاحية للرسالة";
  391. /* No comment provided by engineer. */
  392. "Could not set phone number" = "تعذر تعيين رقم الهاتف";
  393. /* No comment provided by engineer. */
  394. "Could not set status message" = "تعذر تعيين رسالة الحالة";
  395. /* No comment provided by engineer. */
  396. "Could not share file" = "تعذر مشاركة الملف";
  397. /* No comment provided by engineer. */
  398. "Create" = "إنشاء";
  399. /* No comment provided by engineer. */
  400. "Create a new conversation" = "انشاء محادثة جديدة";
  401. /* No comment provided by engineer. */
  402. "Create or join a conversation" = "إنشاء أو الانضمام إلى محادثة";
  403. /* No comment provided by engineer. */
  404. "Create poll" = "إنشاء استطلاع";
  405. /* No comment provided by engineer. */
  406. "Creating poll failed" = "فشل إنشاء الاستبيان";
  407. /* No comment provided by engineer. */
  408. "Credentials for this account were no longer valid" = "بيانات اعتماد هذا الحساب لم تعد صالحة";
  409. /* name of a moderator who banned a participant */
  410. "Date:" = "التاريخ:";
  411. /* No comment provided by engineer. */
  412. "days" = "أيام";
  413. /* No comment provided by engineer. */
  414. "Deck cards" = "كَدْسَة البطاقات Deck cards";
  415. /* No comment provided by engineer. */
  416. "Default" = "افتراضي";
  417. /* No comment provided by engineer. */
  418. "Delete" = "حذف";
  419. /* Short version for confirmation button. Complete text is 'Delete all messages'. */
  420. "Delete all" = "مسح الكل";
  421. /* No comment provided by engineer. */
  422. "Delete all messages" = "مسح جميع الرسائل";
  423. /* No comment provided by engineer. */
  424. "Delete conversation" = "احذف المحادثة";
  425. /* No comment provided by engineer. */
  426. "Deleted user" = "مستخدِمون محذوفون";
  427. /* No comment provided by engineer. */
  428. "Deleting message" = "حذف الرسالة";
  429. /* No comment provided by engineer. */
  430. "Demote from moderator" = "تخفيض رتبة مشرف";
  431. /* '{Microphone, Camera, ...} access is denied' */
  432. "Denied" = "مرفوض";
  433. /* No comment provided by engineer. */
  434. "Description" = "الوصف";
  435. /* No comment provided by engineer. */
  436. "Description cannot be longer than 500 characters" = "لا يمكن أن يتجاوز طول الوصف 500 حرف";
  437. /* No comment provided by engineer. */
  438. "detected" = "تمّ اكتشافه";
  439. /* No comment provided by engineer. */
  440. "Detecting language" = "اكتشاف اللغة";
  441. /* No comment provided by engineer. */
  442. "Diagnostics" = "التشخيص";
  443. /* No comment provided by engineer. */
  444. "Disable blur" = "تعطيل التضبيب";
  445. /* No comment provided by engineer. */
  446. "Disable speaker" = "تعطيل مكبر الصوت";
  447. /* No comment provided by engineer. */
  448. "Disconnected" = "غير متصل";
  449. /* No comment provided by engineer. */
  450. "Dismiss" = "تجاهل";
  451. /* No comment provided by engineer. */
  452. "Dismiss notification" = "تجاهل الإشعار";
  453. /* No comment provided by engineer. */
  454. "Do not disturb" = "عدم الازعاج";
  455. /* No comment provided by engineer. */
  456. "Do you really want to clear the file cache?" = "هل تريد حقًا مسح ذاكرة التخزين المؤقت للملفات؟";
  457. /* No comment provided by engineer. */
  458. "Do you really want to clear the image cache?" = "هل تريد حقًا مسح ذاكرة التخزين المؤقت للصور؟";
  459. /* No comment provided by engineer. */
  460. "Do you really want to delete all messages in this conversation?" = "هل تريد مسح جميع الرسائل في هذه المحادثة؟";
  461. /* No comment provided by engineer. */
  462. "Do you really want to delete this conversation?" = "هل تود حقًا حذف هذه المحادثة؟";
  463. /* No comment provided by engineer. */
  464. "Do you really want to end this poll?" = "هل تريد حقا إنهاء هذا الاستطلاع؟";
  465. /* No comment provided by engineer. */
  466. "Do you really want to log out from this account?" = "هل تود حقًا الخروج من هذا الحساب؟";
  467. /* No comment provided by engineer. */
  468. "Do you really want to remove this account?" = "هل تود حقًا حذف هذا الحساب؟";
  469. /* No comment provided by engineer. */
  470. "Do you want to connect to the server anyway?" = "هل تريد الاتصال بالخادم على كل حال؟";
  471. /* No comment provided by engineer. */
  472. "Do you want to enable your camera?" = " هل تريد تمكين الكاميرا الخاصة بك؟";
  473. /* No comment provided by engineer. */
  474. "Do you want to join this call?" = "هل تريد الانضمام إلى هذه المكالمة؟";
  475. /* No comment provided by engineer. */
  476. "Do you want to share '%@' in the conversation?" = "هل تود مشاركة '%@' في المحادثة؟";
  477. /* No comment provided by engineer. */
  478. "Do you want to stop the recording?" = "هل تريد ايقاف التسجيل؟";
  479. /* No comment provided by engineer. */
  480. "Don't clear" = "لا تمسح";
  481. /* No comment provided by engineer. */
  482. "Double tap to change accounts or add a new one" = "انقر نقرًا مزدوجًا لتغيير الحسابات أو إضافة حساب جديد";
  483. /* No comment provided by engineer. */
  484. "Double tap to dismiss authentication dialog" = "انقر نقرًا مزدوجًا لتجاهل مربع حوار المصادقة";
  485. /* No comment provided by engineer. */
  486. "Double tap to dismiss sharing options" = "اضغط مرتين لتجاهل خيار المشاركة";
  487. /* No comment provided by engineer. */
  488. "Double tap to edit profile" = "اضغط مرتين لتعديل الملف الشخصي";
  489. /* No comment provided by engineer. */
  490. "Double tap to enable or disable the camera" = "اضغط مرتين لتمكين أو تعطيل الكاميرا";
  491. /* No comment provided by engineer. */
  492. "Double tap to enable or disable the microphone" = "اضغط مرتين لتمكين أو تعطيل الميكروفون";
  493. /* No comment provided by engineer. */
  494. "Double tap to enable or disable the speaker" = "اضغط مرتين لتمكين أو تعطيل المتحدث";
  495. /* No comment provided by engineer. */
  496. "Double tap to end editing profile" = "اضغط مرتين لإنهاء تعديل الملف الشخصي";
  497. /* No comment provided by engineer. */
  498. "Double tap to go to conversation information" = "اضغط مرتين للذهاب إلى معلومات المحادثة ";
  499. /* No comment provided by engineer. */
  500. "Double tap to go to user profile and application settings" = "اضغط مرتين للذهاب إلى ملف المستخدم وإعدادات التطبيق";
  501. /* No comment provided by engineer. */
  502. "Double tap to hang up the call" = "اضغط مرتين لإغلاق المكالمة";
  503. /* No comment provided by engineer. */
  504. "Double tap to lower hand" = "انقر نقرًا مزدوجًا علي اليد السفلية";
  505. /* No comment provided by engineer. */
  506. "Double tap to open file browser" = "اضغط مرتين لفتح متصفح الملف ";
  507. /* No comment provided by engineer. */
  508. "Double tap to select different audio routes" = "انقر نقرًا مزدوجًا لتحديد مسارات صوتية مختلفة";
  509. /* No comment provided by engineer. */
  510. "Double tap to send message" = "اضغط مرتين لارسال الرسالة";
  511. /* No comment provided by engineer. */
  512. "Double tap to share with selected conversations" = "اضغط مرتين للمشاركة مع محادثات محددة";
  513. /* No comment provided by engineer. */
  514. "Double tap to show more actions" = "انقر نقرًا مزدوجًا لإظهار المزيد من الإجراءات";
  515. /* No comment provided by engineer. */
  516. "Double tap to show or hide chat view" = "اضغط مرتين لإظهار أو إخفاء الدردشة";
  517. /* No comment provided by engineer. */
  518. "Double tap to start a video call" = "اضغط مرتين لبدء مكالمة فيديو";
  519. /* No comment provided by engineer. */
  520. "Double tap to start a voice call" = "اضغط مرتين لبدء مكالمة صوتية";
  521. /* No comment provided by engineer. */
  522. "Double tap to stop recording" = "انقر نقرًا مزدوجًا لإيقاف التسجيل";
  523. /* No comment provided by engineer. */
  524. "Double tap to upgrade this voice call to a video call" = "اضغط مرتين لترقية هذه المكالمة الصوتية إلى مكالمة فيديو";
  525. /* No comment provided by engineer. */
  526. "Duplicate session" = "تكرار الجلسة";
  527. /* Edit a message or room participants */
  528. "Edit" = "تعديل";
  529. /* A message was edited */
  530. "edited" = "تمّ تحريرها";
  531. /* A message was edited by ... */
  532. "Edited by" = "تمّ تحريرها من قِبَل";
  533. /* A message was edited by ... */
  534. "edited by" = "تمّ تحريرها من قِبَل";
  535. /* No comment provided by engineer. */
  536. "Editing Message" = "تحرير الرسالة";
  537. /* No comment provided by engineer. */
  538. "Either you don't have chat permission or the conversation is read-only." = "إما أنه ليس لديك إِذنٌ بالدردشة أو أن المحادثة للقراءة فقط.";
  539. /* No comment provided by engineer. */
  540. "Email" = "البريد الإلكترونى";
  541. /* No comment provided by engineer. */
  542. "Enable" = "تفعيل";
  543. /* No comment provided by engineer. */
  544. "Enable blur" = "تمكين التضبيب";
  545. /* No comment provided by engineer. */
  546. "Enable screensharing" = "تمكين مشاركة الشاشة";
  547. /* No comment provided by engineer. */
  548. "Enable speaker" = "تمكين مكبر الصوت";
  549. /* No comment provided by engineer. */
  550. "End call" = "إنهاء المكالمة";
  551. /* No comment provided by engineer. */
  552. "End call for everyone" = "إنهاء المكالمة للجميع";
  553. /* No comment provided by engineer. */
  554. "End poll" = "إنهاء الاستطلاع";
  555. /* No comment provided by engineer. */
  556. "Error occurred when creating a reminder" = "حدث خطأ أثناء إنشاء التذكير";
  557. /* No comment provided by engineer. */
  558. "Error occurred while editing a message" = "حدث خطأ أثناء تحرير رسالة";
  559. /* External signaling used */
  560. "External" = "خارجي";
  561. /* No comment provided by engineer. */
  562. "Failed to accept invitation" = "إخفاق في قبول الدعوة";
  563. /* No comment provided by engineer. */
  564. "Failed to clear reminder" = "تعذّر محو التنبيه";
  565. /* No comment provided by engineer. */
  566. "Failed to connect to %@" = "فشل في الاتصال مع %@";
  567. /* No comment provided by engineer. */
  568. "Failed to forward message" = "فشل في إعادة توجيه الرسالة";
  569. /* No comment provided by engineer. */
  570. "Failed to reject invitation" = "إخفاق في رفض الدعوة";
  571. /* No comment provided by engineer. */
  572. "Failed to send message" = "فشل في إرسال الرسالة";
  573. /* No comment provided by engineer. */
  574. "Failed to share recording" = "فشل في مُشارَكة التسجيل";
  575. /* No comment provided by engineer. */
  576. "Failed to unban selected entry" = "تعذّر رفع الحظر عن الإدخال المحدد";
  577. /* No comment provided by engineer. */
  578. "Federated" = "المتحدة";
  579. /* No comment provided by engineer. */
  580. "Fetching status …" = "جارِ إحضار الحالة... ";
  581. /* Filename of a file */
  582. "File" = "File";
  583. /* No comment provided by engineer. */
  584. "Files" = "الملفات";
  585. /* No comment provided by engineer. */
  586. "For password reset and notifications" = "لإعادة تعيين كلمة السر و تلقي الإشعارات";
  587. /* No comment provided by engineer. */
  588. "Format" = "الشكل";
  589. /* No comment provided by engineer. */
  590. "Forward" = "إعادة توجيه";
  591. /* No comment provided by engineer. */
  592. "Forward to" = "الي";
  593. /* 'From' which language user wants to translate text */
  594. "From" = "من";
  595. /* from Alice at nextcloud.local */
  596. "from %@ at %@" = "من %1$@ في %2$@";
  597. /* No comment provided by engineer. */
  598. "Full name" = "الاسم الكامل";
  599. /* No comment provided by engineer. */
  600. "Get source code" = "الحصول على الشفرة المصدرية";
  601. /* No comment provided by engineer. */
  602. "GitHub API error" = "خطأ واجهة برمجة التطبيقات لمنصة GitHub";
  603. /* Give consent to the recording of the call and join that call */
  604. "Give consent and join call" = "إعطِ موافقتك ثم انضمَّ للمكالمة";
  605. /* No comment provided by engineer. */
  606. "guest" = "ضيف ";
  607. /* No comment provided by engineer. */
  608. "Guest" = "ضيف";
  609. /* No comment provided by engineer. */
  610. "Guests access" = "الوصول للضيوف ";
  611. /* No comment provided by engineer. */
  612. "Guests app enabled?" = "تمكين تطبيق الضيوف؟";
  613. /* No comment provided by engineer. */
  614. "Hang up" = "إنهاء المكالمة";
  615. /* No comment provided by engineer. */
  616. "hours" = "ساعات";
  617. /* No comment provided by engineer. */
  618. "If you delete the conversation, it will also be deleted for %@" = "إذا قمت بحذف المحادثة، سوف تحذف أيضا لدى %@";
  619. /* No comment provided by engineer. */
  620. "If you delete the conversation, it will also be deleted for all other participants." = "إذا قمت بحذف المحادثة، سوف يتم حذفها أيضًا لدى المشاركين الآخرين.";
  621. /* No comment provided by engineer. */
  622. "If you enable your camera, this call will be interrupted for a few seconds." = "إذا قمت بتمكين الكاميرا الخاصة بك ، فستنقطع المكالمة لبضع ثوان.";
  623. /* No comment provided by engineer. */
  624. "If you're using multiple servers, you need to check all of them." = "إذا كنت تقوم بإستخدام خوادم متعددة، فأنت بحاجة إلى التحقُّق منها جميعاً.";
  625. /* No comment provided by engineer. */
  626. "Images, files, voice messages…" = "الصِّور والملفات والرسائل الصَّوتية ...";
  627. /* No comment provided by engineer. */
  628. "Import account" = "استيراد حساب";
  629. /* No comment provided by engineer. */
  630. "in" = "في";
  631. /* No comment provided by engineer. */
  632. "Include calls in call history" = "تضمين المكالمات في سجل المكالمات ";
  633. /* Internal signaling used */
  634. "Internal" = "داخلي";
  635. /* Internal note about why a user/guest was banned */
  636. "Internal note" = "ملاحظة داخلية";
  637. /* No comment provided by engineer. */
  638. "Invalid server address" = "عنوان الخادم غير صالح";
  639. /* No comment provided by engineer. */
  640. "Invisible" = "مخفي";
  641. /* No comment provided by engineer. */
  642. "Invitation resent" = "إعادة إرسال الدعوة";
  643. /* No comment provided by engineer. */
  644. "Invitations resent" = "إعادة إرسال الدعوات";
  645. /* Alice is typing… */
  646. "is typing…" = "يكتب…";
  647. /* It seems that {app name} is not installed in your server. */
  648. "It seems that %@ is not installed in your server." = "يبدو ان %@ غير مثبته على الخادم.";
  649. /* No comment provided by engineer. */
  650. "It seems that there is no internet connection." = "يبدو أنه لا يوجد اتصال بالإنترنت.";
  651. /* No comment provided by engineer. */
  652. "Join a conversation or start a new one" = "انضم لمحادثة او ابدء محادثة جديدة";
  653. /* No comment provided by engineer. */
  654. "Join call (audio only)" = "انضمام للمكالمة (صوت فقط)";
  655. /* No comment provided by engineer. */
  656. "Join call with video" = "انضمام لمكالمة بفيديو";
  657. /* No comment provided by engineer. */
  658. "Join open conversations" = "الانضمام إلى محادثات قائمة";
  659. /* Last subscription to the push notification server */
  660. "Last subscription" = "الاشتراك الِأخير";
  661. /* No comment provided by engineer. */
  662. "Last sync" = "آخر عملية مزامنة";
  663. /* Remind me later today about that message */
  664. "Later today" = "في وقت لاحقٍ اليوم";
  665. /* No comment provided by engineer. */
  666. "Leave" = "مغادرة ";
  667. /* No comment provided by engineer. */
  668. "Leave conversation" = "غادر المحادثة";
  669. /* No comment provided by engineer. */
  670. "less than a minute ago" = "اقل من دقيقه مضت";
  671. /* No comment provided by engineer. */
  672. "Link https://…" = "الرابط https://…";
  673. /* No comment provided by engineer. */
  674. "Linked file" = "ملف مرتبط";
  675. /* No comment provided by engineer. */
  676. "Load more results" = "تحميل المزيد من النتائج";
  677. /* No comment provided by engineer. */
  678. "Lobby" = "ساحة الانتظار";
  679. /* No comment provided by engineer. */
  680. "Lobby is still active and you're not a moderator" = "ساحة الانتظار مازالت مفعلة وأنت لست مشرف";
  681. /* No comment provided by engineer. */
  682. "Local" = "محلي";
  683. /* No comment provided by engineer. */
  684. "Location" = "الموقع";
  685. /* No comment provided by engineer. */
  686. "Location access" = "الوصول إلى الموقع";
  687. /* No comment provided by engineer. */
  688. "Location service has been denied. Check your settings." = "تم رفض خدمة الموقع. تحقق من الإعدادات الخاصة بك.";
  689. /* No comment provided by engineer. */
  690. "Location service is not enabled" = "خدمة الموقع غير مفعلة";
  691. /* No comment provided by engineer. */
  692. "Locations" = "المواقع";
  693. /* No comment provided by engineer. */
  694. "Lock conversation" = "قفل المحادثة";
  695. /* No comment provided by engineer. */
  696. "Log in" = "تسجيل الدخول";
  697. /* No comment provided by engineer. */
  698. "Log out" = "الخروج";
  699. /* No comment provided by engineer. */
  700. "Logged out" = "مغادر للنظام";
  701. /* No comment provided by engineer. */
  702. "Lower hand" = "خفض اليد ";
  703. /* TRANSLATORS this is used when no meeting start time is set and the meeting will be started manually */
  704. "Manual" = "يدوي";
  705. /* No comment provided by engineer. */
  706. "Mark as read" = "تمييز كمقروء";
  707. /* No comment provided by engineer. */
  708. "Mark as unread" = "تمييز كغير مقروء";
  709. /* No comment provided by engineer. */
  710. "Match system contacts" = "رقم الهاتف غير صحيح ";
  711. /* No comment provided by engineer. */
  712. "Media" = "وسائط";
  713. /* No comment provided by engineer. */
  714. "Meeting ID" = "معرف الإجتماع ";
  715. /* No comment provided by engineer. */
  716. "Meeting settings" = "إعدادات الإجتماع ";
  717. /* 'Mentioned' meaning 'Mentioned conversations' */
  718. "Mentioned" = "مذكور";
  719. /* No comment provided by engineer. */
  720. "Message copied" = "تم نسخ الرسالة";
  721. /* No comment provided by engineer. */
  722. "Message could not be deleted because it is too old" = "تعذر مسح الرسالة لإنها قديمة جدًا";
  723. /* No comment provided by engineer. */
  724. "Message deleted successfully" = "تم مسح الرسالة بنجاح";
  725. /* No comment provided by engineer. */
  726. "Message deleted successfully, but Matterbridge is configured and the message might already be distributed to other services" = "تم حذف الرسالة بنجاح، لكن تم تكوين Matterbridge و الرسالة من الممكن نُشرت بالفعل لخدمات أخرى";
  727. /* No comment provided by engineer. */
  728. "Message expiration" = "انتهاء صلاحية الرسالة";
  729. /* No comment provided by engineer. */
  730. "Message expiration time" = "زمن انتهاء صلاحية الرسالة";
  731. /* No comment provided by engineer. */
  732. "Messages" = "الرسائل";
  733. /* No comment provided by engineer. */
  734. "Microphone" = "الميكروفون";
  735. /* No comment provided by engineer. */
  736. "Microphone access" = "الوصول إلى الميكروفون";
  737. /* No comment provided by engineer. */
  738. "Microphone access is not allowed. Check your settings." = "الوصول إلى الميكروفون غير مسموح به. تحقق من الإعدادات الخاصة بك.";
  739. /* No comment provided by engineer. */
  740. "Microphone disabled" = "الميكروفون معطل";
  741. /* No comment provided by engineer. */
  742. "Microphone enabled" = "تعطيل الميكروفون";
  743. /* No comment provided by engineer. */
  744. "minutes" = "دقائق";
  745. /* No comment provided by engineer. */
  746. "Missed call from" = "مكالمة فائتة من ";
  747. /* No comment provided by engineer. */
  748. "Missing phone number information" = "معلومات رقم الهاتف مفقودة";
  749. /* The signaling mode used */
  750. "Mode" = "الوضع";
  751. /* No comment provided by engineer. */
  752. "moderator" = "مشرف";
  753. /* No comment provided by engineer. */
  754. "Modification date" = "تاريخ التعديل";
  755. /* No comment provided by engineer. */
  756. "More actions" = "إجراءات أخرى";
  757. /* No comment provided by engineer. */
  758. "Multiple answers" = "إجابات متعددة";
  759. /* No comment provided by engineer. */
  760. "Mute all notifications" = "عدم اظهار جميع التنبيهات";
  761. /* No comment provided by engineer. */
  762. "My location" = "موقعي";
  763. /* No comment provided by engineer. */
  764. "Name" = "الاسم";
  765. /* No comment provided by engineer. */
  766. "Nearby places" = "الاماكن المجاورة";
  767. /* No comment provided by engineer. */
  768. "Network available" = "الشبكة متوفرة";
  769. /* No comment provided by engineer. */
  770. "Network not available" = "Network not available";
  771. /* Never subscribed to the push notification server */
  772. "Never subscribed" = "لم يسبق له الاشتراك";
  773. /* No comment provided by engineer. */
  774. "New conversation" = "محادثة جديدة";
  775. /* No comment provided by engineer. */
  776. "New poll" = "استطلاع جديد";
  777. /* Remind me next week about that message */
  778. "Next week" = "الأسبوع القادم";
  779. /* No comment provided by engineer. */
  780. "Nextcloud server not found" = "لم يتم العثور على خادم Nextcloud";
  781. /* No comment provided by engineer. */
  782. "No" = "لا";
  783. /* No comment provided by engineer. */
  784. "No actions available" = "لا توجد إجراءات متاحة";
  785. /* No comment provided by engineer. */
  786. "No banned users or guests" = "لا يوجد أي مستخدِمين أو ضيوف محظورين";
  787. /* No comment provided by engineer. */
  788. "No description provided" = "لا توجد أيّ اشتراكٍ مٌعطَىً";
  789. /* No comment provided by engineer. */
  790. "No files in here" = "لا توجد ملفات هنا";
  791. /* No comment provided by engineer. */
  792. "No messages yet, start the conversation!" = "لايوجد رسائل، ابدأ المحادثة!";
  793. /* No comment provided by engineer. */
  794. "No participants found" = "لم يتم العثور على مشاركين";
  795. /* No comment provided by engineer. */
  796. "No permission to join this conversation" = "لا توجد صلاحية كافية للانضمام لهذه المحادثة";
  797. /* No comment provided by engineer. */
  798. "No response from server" = "لا يوجد استجابة من الخادم";
  799. /* No comment provided by engineer. */
  800. "No results found" = "دون أية نتيجة";
  801. /* No comment provided by engineer. */
  802. "No shared items" = "لا توجد عناصر تمّت مُشارَكتها";
  803. /* '{Microphone, Camera, ...} access was not requested' */
  804. "Not requested" = "غير مطلوب";
  805. /* No comment provided by engineer. */
  806. "Not supported" = "غير مدعوم";
  807. /* No comment provided by engineer. */
  808. "Note to self" = "ملاحظة شخصية";
  809. /* Internal note for moderators, usually a reason for this ban */
  810. "Note:" = "ملاحظة:";
  811. /* No comment provided by engineer. */
  812. "Notifications" = "الإشعارات";
  813. /* No comment provided by engineer. */
  814. "Notifications app enabled?" = "تمكين تطبيق الإخطارات؟";
  815. /* No comment provided by engineer. */
  816. "Notifications: %@" = "الإشعارات: %@";
  817. /* No comment provided by engineer. */
  818. "Off" = "إيقاف";
  819. /* No comment provided by engineer. */
  820. "Offline" = "غير متصل";
  821. /* No comment provided by engineer. */
  822. "Offline, only showing downloaded messages" = "غير متصل، تظهر الرسائل المحملة فقط";
  823. /* No comment provided by engineer. */
  824. "OK" = "موافق";
  825. /* Will be used as the caller name when a VoIP notification can't be decrypted */
  826. "Old account" = "حساب قديم";
  827. /* No comment provided by engineer. */
  828. "Once a conversation is left, to rejoin a closed conversation, an invite is needed. An open conversation can be rejoined at any time." = "عند ترك المحادثة،ولإعادة الانضمام مرة أخرى إلى المحادثة المغلقة، فإن ذلك يتطلب دعوة. ويمكن إعادة الانضمام إلى المحادثة المفتوحة فى أي وقت.";
  829. /* No comment provided by engineer. */
  830. "Online" = "متصل";
  831. /* No comment provided by engineer. */
  832. "Online status" = "حالة الاتصال";
  833. /* No comment provided by engineer. */
  834. "Only normal chat messages can be deleted" = "يمكن حذف رسائل الدردشة العادية فقط";
  835. /* No comment provided by engineer. */
  836. "Only synchronize to trusted servers" = "قم فقط بالمزامنة مع الخوادم الموثوقة";
  837. /* No comment provided by engineer. */
  838. "Only visible to people matched via phone number integration" = "ظاهر فقط للاشخاص المتطابقين عبر ارتباط رقم الهاتف";
  839. /* No comment provided by engineer. */
  840. "Only visible to people on this instance and guests" = "ظاهر فقط للمستخدمين والضيوف";
  841. /* No comment provided by engineer. */
  842. "Open" = "إفتَح";
  843. /* No comment provided by engineer. */
  844. "Open app settings" = "فتح إعدادات التطبيق";
  845. /* No comment provided by engineer. */
  846. "Open conversation to registered users" = "فتح المحادثة للمستخدمين المسجلين ";
  847. /* TRANSLATORS 'Open conversations' as a type of conversation. 'Open conversations' are conversations that can be found by other users */
  848. "Open conversations" = "فتح محادثة";
  849. /* No comment provided by engineer. */
  850. "Open in %@" = "فتح في %@";
  851. /* No comment provided by engineer. */
  852. "Other Accounts" = "حسابات أخرى";
  853. /* No comment provided by engineer. */
  854. "Others" = "الآخرون";
  855. /* Owner of a repository */
  856. "Owner" = "Owner";
  857. /* No comment provided by engineer. */
  858. "Participants" = "المُشاركون";
  859. /* No comment provided by engineer. */
  860. "Password" = "كلمة المرور";
  861. /* No comment provided by engineer. */
  862. "Pending invitations" = "دعوات معلقة";
  863. /* No comment provided by engineer. */
  864. "Phone number" = "رقم الهاتف";
  865. /* No comment provided by engineer. */
  866. "Phone number integration" = "ارتباط رقم الهاتف";
  867. /* No comment provided by engineer. */
  868. "Phone number set successfully" = "تم تعيين رقم الهاتف بنجاح ";
  869. /* No comment provided by engineer. */
  870. "Photo Library" = "مكتبة الصور";
  871. /* No comment provided by engineer. */
  872. "Photo library access" = "الوصول إلى مكتبة الصور";
  873. /* No comment provided by engineer. */
  874. "Pick date & time" = "إختَر التاريخ و الوقت";
  875. /* No comment provided by engineer. */
  876. "Please check that you entered a valid server address." = "يرجى التحقق من إدخالك عنوان خادم صالح.";
  877. /* No comment provided by engineer. */
  878. "Please check that you entered the correct Nextcloud server address." = "يرجى التحقق من إدخال عنوان خادم نكست كلاود الصحيح.";
  879. /* No comment provided by engineer. */
  880. "Please contact your system administrator." = "الرجاء الاتصال بمشرف النظام عندك.";
  881. /* Please update your server with the latest {app name} version available. */
  882. "Please update your server with the latest %@ version available." = "يرجى تحديث الخادم لآخر %@ اصدار متاح.";
  883. /* No comment provided by engineer. */
  884. "Please update." = "قُم بالتحديث رجاءً.";
  885. /* No comment provided by engineer. */
  886. "Poll" = "الاستطلاع";
  887. /* No comment provided by engineer. */
  888. "Poll results" = "نتائج الاستطلاع";
  889. /* No comment provided by engineer. */
  890. "Polls" = "استطلاعات الرأي";
  891. /* No comment provided by engineer. */
  892. "Preview" = "معاينة";
  893. /* No comment provided by engineer. */
  894. "Privacy" = "الخصوصية";
  895. /* No comment provided by engineer. */
  896. "Private" = "خاص";
  897. /* No comment provided by engineer. */
  898. "Private poll" = "استطلاع خاص";
  899. /* No comment provided by engineer. */
  900. "Profile" = "الملف الشخصي";
  901. /* No comment provided by engineer. */
  902. "Profile picture" = "صورة الملف الشخصي";
  903. /* No comment provided by engineer. */
  904. "Promote to moderator" = "ترقية لمشرف";
  905. /* No comment provided by engineer. */
  906. "Published" = "نشرت";
  907. /* No comment provided by engineer. */
  908. "Push notifications" = "دفع الإخطارات";
  909. /* No comment provided by engineer. */
  910. "Question" = "سؤال";
  911. /* No comment provided by engineer. */
  912. "Raise hand" = "رفع اليد";
  913. /* No comment provided by engineer. */
  914. "Reachable?" = "يمكن الوصول إليها؟";
  915. /* No comment provided by engineer. */
  916. "Reactions" = "التفاعلات";
  917. /* No comment provided by engineer. */
  918. "Read status" = "قراءة الحالة";
  919. /* No comment provided by engineer. */
  920. "Received call from an old account" = "مكالمة واردة من حساب قديم";
  921. /* No comment provided by engineer. */
  922. "Record voice message" = "تسجيل رسالة صوتية";
  923. /* No comment provided by engineer. */
  924. "Recording" = "تسجيل";
  925. /* No comment provided by engineer. */
  926. "Recording consent is required" = "الموافقة على التسجيل لازمة";
  927. /* No comment provided by engineer. */
  928. "Recording consent required for joining the call" = "الموافقة على التسجيل لازمة للانضمام إلى المكالمة";
  929. /* No comment provided by engineer. */
  930. "Recordings" = "التسجيلات";
  931. /* No comment provided by engineer. */
  932. "Redo" = "إعادة";
  933. /* No comment provided by engineer. */
  934. "Reference API supported?" = "مدعوم من قبل مرجع Reference API؟";
  935. /* No comment provided by engineer. */
  936. "Reject" = "رفض";
  937. /* No comment provided by engineer. */
  938. "Reminder was successfully cleared" = "تمّ بنجاح محو التذكير";
  939. /* No comment provided by engineer. */
  940. "Reminder was successfully set" = "تمّ بنجاح تعيين التذكير";
  941. /* No comment provided by engineer. */
  942. "Remote server is unreachable" = "الخادم البعيد remote server لا يمكن الوصول إليه";
  943. /* No comment provided by engineer. */
  944. "Remove" = "حذف";
  945. /* No comment provided by engineer. */
  946. "Remove account" = "حذف حساب";
  947. /* No comment provided by engineer. */
  948. "Remove from favorites" = "إزالتها مِن المفضلة";
  949. /* No comment provided by engineer. */
  950. "Remove group and members" = "إزالة المجموعة والأعضاء";
  951. /* No comment provided by engineer. */
  952. "Remove old duplicate entries and leave only the most recent entries." = "قم بإزالة الإدخالات المكررة القديمة واترك أحدث الإدخالات فقط.";
  953. /* No comment provided by engineer. */
  954. "Remove participant" = "إزالة مشارك";
  955. /* No comment provided by engineer. */
  956. "Remove password" = "حذف كلمة المرور";
  957. /* No comment provided by engineer. */
  958. "Remove team and members" = "إزالة الفريق و الأعضاء";
  959. /* No comment provided by engineer. */
  960. "Reply" = "رد";
  961. /* No comment provided by engineer. */
  962. "Reply privately" = "الرد على الخاص";
  963. /* Name of a repository */
  964. "Repo" = "اتّفاقية إعادة الشراء repo";
  965. /* No comment provided by engineer. */
  966. "Resend" = "إعادة إرسال";
  967. /* No comment provided by engineer. */
  968. "Resend invitation" = "إعادة إرسال الدعوة";
  969. /* No comment provided by engineer. */
  970. "Resend invitations" = "إعادة إرسال الدعوات ";
  971. /* Results of a poll */
  972. "Results" = "النتائج ";
  973. /* No comment provided by engineer. */
  974. "Retry" = "أعد المحاولة";
  975. /* Save conversation description */
  976. "Save" = "حفظ";
  977. /* No comment provided by engineer. */
  978. "Say hi to your friends and colleagues!" = "قل مرحبا ً لزملاء العمل!";
  979. /* No comment provided by engineer. */
  980. "Scanning QR Codes is not supported on this device." = "قراءة أكواد الاستجابة السريعة QR غير مدعومة على هذا الجهاز.";
  981. /* No comment provided by engineer. */
  982. "Screensharing stopped" = "مشاركة الشاشة أُوقِفَت";
  983. /* No comment provided by engineer. */
  984. "Search" = "بحث";
  985. /* No comment provided by engineer. */
  986. "Search for places" = "البحث عن الأماكن";
  987. /* No comment provided by engineer. */
  988. "Select language" = "إختَر اللغة";
  989. /* No comment provided by engineer. */
  990. "Send" = "إرسال";
  991. /* No comment provided by engineer. */
  992. "Send a reaction" = "أرسِل تفاعُلاً";
  993. /* No comment provided by engineer. */
  994. "Send call notification" = "أرسِل إشعاراً بالمكالمة";
  995. /* No comment provided by engineer. */
  996. "Send message" = "أرسل رسالة";
  997. /* No comment provided by engineer. */
  998. "Send without notification" = "ارسال بدون إشعار";
  999. /* No comment provided by engineer. */
  1000. "Send/Accept" = "ارسال/قبول";
  1001. /* A message has been sent without notifications */
  1002. "Sent without notification" = "مرسلة بدون إشعار";
  1003. /* No comment provided by engineer. */
  1004. "Server" = "الخادوم";
  1005. /* No comment provided by engineer. */
  1006. "Server address https://…" = "عنوان الخادم https://…";
  1007. /* No comment provided by engineer. */
  1008. "Server is currently in maintenance mode" = "الخادم حاليا في وضع الصيانة";
  1009. /* No comment provided by engineer. */
  1010. "Set" = "تعيين";
  1011. /* No comment provided by engineer. */
  1012. "Set new password" = "تعيين كلمة مرور جديدة";
  1013. /* No comment provided by engineer. */
  1014. "Set new password:" = "تعيين كلمة مرور جديدة";
  1015. /* No comment provided by engineer. */
  1016. "Set password" = "تعيين كلمة المرور";
  1017. /* No comment provided by engineer. */
  1018. "Set password:" = "تعيين كلمة المرور";
  1019. /* Remind me later about that message */
  1020. "Set reminder" = "عيّن تذكيراً";
  1021. /* No comment provided by engineer. */
  1022. "Set status message" = "تعيين رسالة الحالة";
  1023. /* No comment provided by engineer. */
  1024. "Settings" = "الإعدادات";
  1025. /* No comment provided by engineer. */
  1026. "Share" = "شارك";
  1027. /* No comment provided by engineer. */
  1028. "Share a file from your Nextcloud" = "مشاركة ملف من نكست كلاود الخاص بك";
  1029. /* No comment provided by engineer. */
  1030. "Share current location" = "أرسل الموقع الحالي";
  1031. /* No comment provided by engineer. */
  1032. "Share link" = "مشاركة الرابط";
  1033. /* No comment provided by engineer. */
  1034. "Share location" = "مشاركة الموقع";
  1035. /* Share the location of a pin that has been dropped in a map view */
  1036. "Share pin location" = "مشاركة موقع التموضع";
  1037. /* No comment provided by engineer. */
  1038. "Share to chat" = "مشاركة مع الدردشة";
  1039. /* No comment provided by engineer. */
  1040. "Share with" = "شارك مع";
  1041. /* No comment provided by engineer. */
  1042. "Shared items" = "العناصر التي تمّت مُشارَكتها";
  1043. /* No comment provided by engineer. */
  1044. "Shared location" = "الموقع المشارك";
  1045. /* No comment provided by engineer. */
  1046. "Sharing to a federated conversation is not supported." = "التشارك مع محادثة اتحادية غير مدعوم";
  1047. /* No comment provided by engineer. */
  1048. "Show more…" = "عرض المزيد…";
  1049. /* No comment provided by engineer. */
  1050. "Signaling" = "إرسال الإشارات";
  1051. /* No comment provided by engineer. */
  1052. "SIP dial-in" = "اتصال SIP";
  1053. /* No comment provided by engineer. */
  1054. "Skip" = "تخطى";
  1055. /* No comment provided by engineer. */
  1056. "Slide to cancel" = "قم بالتمرير للإلغاء";
  1057. /* No comment provided by engineer. */
  1058. "Some messages not shown, will be downloaded when online" = "بعض الرسائل لا تظهر، سوف يتم تنزيلها عند الاتصال بالانترنت";
  1059. /* No comment provided by engineer. */
  1060. "Source code" = "الكود المصدري";
  1061. /* No comment provided by engineer. */
  1062. "Speaker" = "مكبر الصوت";
  1063. /* No comment provided by engineer. */
  1064. "Speaker disabled" = "مكبر الصوت معطّل";
  1065. /* No comment provided by engineer. */
  1066. "Speaker enabled" = "تم تمكين مكبر الصوت ";
  1067. /* No comment provided by engineer. */
  1068. "Speech recognition access is not allowed. Check your settings." = "غير مسموح بالوصول إلى تطبيق speech recognition. تحقق من الإعدادات الخاصة بك.";
  1069. /* No comment provided by engineer. */
  1070. "Speech recognition failed" = "فشل تطبيق speech recognition";
  1071. /* No comment provided by engineer. */
  1072. "Start recording" = "ابدأ التسجيل";
  1073. /* No comment provided by engineer. */
  1074. "Start time" = "وقت البدء";
  1075. /* No comment provided by engineer. */
  1076. "Status" = "الحالة";
  1077. /* No comment provided by engineer. */
  1078. "Status message" = "رسالة الحالة";
  1079. /* Action to 'Stop' a recording */
  1080. "Stop" = "إيقاف ";
  1081. /* No comment provided by engineer. */
  1082. "Stop recording" = "إيقاف التسجيل";
  1083. /* No comment provided by engineer. */
  1084. "Stop screensharing" = "أَوقِف مشاركة الشاشة";
  1085. /* No comment provided by engineer. */
  1086. "STUN servers" = "خوادم STUN";
  1087. /* No comment provided by engineer. */
  1088. "Submit vote" = "أرسِل صوتك";
  1089. /* No comment provided by engineer. */
  1090. "Switch account" = "بدّل الحساب";
  1091. /* No comment provided by engineer. */
  1092. "Switching to another conversation …" = "التحويل إلى محادثة أخرى ...";
  1093. /* No comment provided by engineer. */
  1094. "Synchronize to trusted servers and the global and public address book" = "قم بالمزامنة مع الخوادم الموثوقة ودفتر العناوين العالمية والعامة";
  1095. /* No comment provided by engineer. */
  1096. "Talk" = "التحدث";
  1097. /* No comment provided by engineer. */
  1098. "Tap and hold to record a voice message" = "انقر مع الاستمرار لتسجيل رسالة صوتية";
  1099. /* No comment provided by engineer. */
  1100. "Tap and hold to record a voice message, release the button to send it." = "اضغط مع الاستمرار لتسجيل رسالة صوتية، ثم حرر الزر للإرسال.";
  1101. /* No comment provided by engineer. */
  1102. "The app is too old and no longer supported by this server." = "التطبيق قديم جداً و لم يعد مدعوماً من هذا الخادوم.";
  1103. /* No comment provided by engineer. */
  1104. "The call has been running for one hour" = "المكالمة مستمرة منذ أكثر من ساعة";
  1105. /* No comment provided by engineer. */
  1106. "The call might be recorded" = "يمكن أن يتم تسجيل المكالمة";
  1107. /* No comment provided by engineer. */
  1108. "The password is wrong" = "كلمة المرور خاطئة";
  1109. /* No comment provided by engineer. */
  1110. "The recording might include your voice, video from camera, and screen share. Your consent is required before joining the call." = "يمكن أن يحتوي التسجيل على صوتك و فيديو من كاميرتك و شاشتك التي عرضتها للمشاركة. موافقتك لازمة قبل الانضمام للمكالمة.";
  1111. /* No comment provided by engineer. */
  1112. "There is no account for user %@ in server %@ configured in this app." = "لا يوجد حساب للمستخدم %1$@في الخادم %2$@تم تكوينه في هذا التطبيق.";
  1113. /* No comment provided by engineer. */
  1114. "This call is being recorded" = "يجرى تسجيل هذه المكالمة";
  1115. /* No comment provided by engineer. */
  1116. "This conversation is read-only" = "هذه المحادثة للقراءة فقط";
  1117. /* The meeting start time will be displayed after this text e.g (This meeting is scheduled for tomorrow at 10:00) */
  1118. "This meeting is scheduled for" = "هذا الاجتماع مجدول لـ";
  1119. /* No comment provided by engineer. */
  1120. "This usually indicates that this device was previously used for an account, which was not properly removed from the server." = "يشير هذا عادةً إلى أن هذا الجهاز قد تمّ استخدامه سابقاً لحساب لم تتم إزالته بشكل صحيح من الخادم.";
  1121. /* No comment provided by engineer. */
  1122. "This week" = "هذا الأسبوع";
  1123. /* Remind me this weekend about that message */
  1124. "This weekend" = "هذا الأسبوع";
  1125. /* No comment provided by engineer. */
  1126. "This will impact the functionality of this app. Please review your settings." = "هذا سوف يؤثر على وظائف هذا التطبيق. يرجى مراجعة الإعدادات الخاصة بك.";
  1127. /* 'To' which language user wants to translate text */
  1128. "To" = "إلى";
  1129. /* No comment provided by engineer. */
  1130. "To resolve this issue, use the web interface and go to \"Settings -> Security\"." = "لحل هذه المشكلة، استخدم واجهة الويب وانتقل إلى \"الإعدادات -> الأمان\".";
  1131. /* TRANSLATORS this is for sending something 'to' a user. E.g. 'To: John Doe' */
  1132. "To:" = "إلى :";
  1133. /* No comment provided by engineer. */
  1134. "Today" = "اليوم";
  1135. /* Remind me tomorrow about that message */
  1136. "Tomorrow" = "غداً";
  1137. /* TRANSLATORS this is for transcribing a voice message to text */
  1138. "Transcribe" = "نسخ";
  1139. /* TRANSLATORS transcript of a voice-message */
  1140. "Transcript" = "نص";
  1141. /* No comment provided by engineer. */
  1142. "Translate" = "Translate";
  1143. /* No comment provided by engineer. */
  1144. "Translation" = "ترجمة";
  1145. /* No comment provided by engineer. */
  1146. "Translation failed" = "فشل في الترجمة";
  1147. /* No comment provided by engineer. */
  1148. "TURN servers" = "خوادم TURN";
  1149. /* No comment provided by engineer. */
  1150. "Twitter" = "تويتر";
  1151. /* No comment provided by engineer. */
  1152. "Twitter handle @…" = "حساب تويتر @…";
  1153. /* No comment provided by engineer. */
  1154. "Typing indicator" = "مؤشر الكتابة Typing indicator";
  1155. /* No comment provided by engineer. */
  1156. "Typing indicators are only available when using a high performance backend (HPB)" = "تتوفر مؤشرات الكتابة فقط عند استخدام واجهة خلفية عالية الأداء (HPB)";
  1157. /* No comment provided by engineer. */
  1158. "Unable to get context of the message" = "تعذّر الحصول على سياق الرسالة";
  1159. /* No comment provided by engineer. */
  1160. "Unable to get conversation of the message" = "تعذّر الحصول على مُحادثة الرسالة";
  1161. /* No comment provided by engineer. */
  1162. "Unable to load file" = "تعذر في تحميل الملف";
  1163. /* No comment provided by engineer. */
  1164. "Unable to open file" = "تعذر فتح الملف";
  1165. /* No comment provided by engineer. */
  1166. "Unavailable" = "غير متاح";
  1167. /* No comment provided by engineer. */
  1168. "Unban" = "رفع الحظر";
  1169. /* No comment provided by engineer. */
  1170. "Under \"Devices & sessions\" check if there are duplicate entries for the same device." = "ضمن \"الأجهزة والجلسات\" تحقق مما إذا كانت هناك إدخالات مكررة لنفس الجهاز.";
  1171. /* No comment provided by engineer. */
  1172. "Undo" = "تراجع";
  1173. /* No comment provided by engineer. */
  1174. "Undo Typing" = "تراجع عن الكتابة";
  1175. /* No comment provided by engineer. */
  1176. "Unknown" = "غير معروف";
  1177. /* No comment provided by engineer. */
  1178. "Unknown error" = "خطأ غير معروف";
  1179. /* No comment provided by engineer. */
  1180. "Unknown error occurred" = "حدث خطأ غير معروف ";
  1181. /* 'Unread' meaning 'Unread conversations' */
  1182. "Unread" = "غير مقروء";
  1183. /* No comment provided by engineer. */
  1184. "Unread mentions" = "إشارات غير مقروءة";
  1185. /* No comment provided by engineer. */
  1186. "Unread messages" = "رسائل غير مقروءة";
  1187. /* No comment provided by engineer. */
  1188. "Update" = "تحديث";
  1189. /* No comment provided by engineer. */
  1190. "Upload failed" = "فشل الرفع";
  1191. /* No comment provided by engineer. */
  1192. "Uploading %ld elements" = "جاري رفع عنصر %ld";
  1193. /* No comment provided by engineer. */
  1194. "Uploading 1 element" = "جاري رفع عنصر 1";
  1195. /* No comment provided by engineer. */
  1196. "User" = "المستخدم";
  1197. /* No comment provided by engineer. */
  1198. "User profile and settings" = "ملف المستخدم والإعدادات ";
  1199. /* No comment provided by engineer. */
  1200. "User status supported?" = "حالة المستخدم مدعومة؟";
  1201. /* No comment provided by engineer. */
  1202. "Users" = "المستخدمين";
  1203. /* No comment provided by engineer. */
  1204. "Version" = "الإصدار";
  1205. /* No comment provided by engineer. */
  1206. "Video call" = "اتصال فيديو";
  1207. /* No comment provided by engineer. */
  1208. "Video quality" = "جودة الفيديو";
  1209. /* Conversation visibility settings */
  1210. "Visibility" = "الرؤية";
  1211. /* No comment provided by engineer. */
  1212. "Voice call" = "اتصال فيديو";
  1213. /* No comment provided by engineer. */
  1214. "Voice messages" = "الرسائل الصوتية";
  1215. /* No comment provided by engineer. */
  1216. "Waiting for %@ to join call …" = "في انتظار %@ للانضمام للمكالمة";
  1217. /* No comment provided by engineer. */
  1218. "Waiting for others to join call …" = "في انتظار الآخريين للانضمام للمكالمة…";
  1219. /* No comment provided by engineer. */
  1220. "Website" = " الموقع الإلكتروني";
  1221. /* No comment provided by engineer. */
  1222. "What is your status?" = "ماهي حالتك؟";
  1223. /* No comment provided by engineer. */
  1224. "Write message, @ to mention someone …" = "اكتب رسالة، منشن احدهم باستخدام @ …";
  1225. /* No comment provided by engineer. */
  1226. "Yes" = "نعم";
  1227. /* No comment provided by engineer. */
  1228. "Yesterday" = "أمس";
  1229. /* No comment provided by engineer. */
  1230. "You" = "أنت";
  1231. /* Please put {user0} and %ld placeholders in the correct position on the translated text but do not translate it */
  1232. "You added {user0} and %ld more participants" = "لقد قمت أنت بإضافة {user0} و %ld مشاركين آخرين ";
  1233. /* Please put {user0} and {user1} placeholders in the correct position on the translated text but do not translate them */
  1234. "You added {user0} and {user1}" = "لقد قمت أنت بإضافة {user0} و {user1}";
  1235. /* Please put %ld placeholder in the correct position on the translated text but do not translate it */
  1236. "You and %ld more participants joined the call" = "لقد قمت أنت و %ld مشاركين آخرين بالانضمام إلى المكالمة";
  1237. /* Please put %ld placeholder in the correct position on the translated text but do not translate it */
  1238. "You and %ld more participants left the call" = "لقد قمت أنت و %ld مشاركين آخرين بمغادرة المكالمة";
  1239. /* Please put {actor0} placeholder in the correct position on the translated text but do not translate it */
  1240. "You and {actor0} joined the call" = "لقد قمت أنت و {actor0} بالانضمام إلى المكالمة";
  1241. /* Please put {actor0} placeholder in the correct position on the translated text but do not translate it */
  1242. "You and {actor0} left the call" = "لقد قمت أنت و {actor0} بمغادرة المكالمة";
  1243. /* No comment provided by engineer. */
  1244. "You are currently waiting in the lobby" = "أنت حاليًا في ساحة الانتظار";
  1245. /* No comment provided by engineer. */
  1246. "You are not part of any conversation" = "أنت لست منضم إلى أي محادثة";
  1247. /* No comment provided by engineer. */
  1248. "You are not part of any conversation. Press + to start a new one." = "أنت لست منضم إلى أي محادثة. اضغط + لبدء محادثة جديدة. ";
  1249. /* No comment provided by engineer. */
  1250. "You can set your phone number so other users will be able to find you" = "بإمكانك تعيين رقم هاتفك حتى يتمكن المستخدمون الآخرون من العثور عليك";
  1251. /* Please put {user0} and %ld placeholders in the correct position on the translated text but do not translate them */
  1252. "You demoted {user0} and %ld more participants from moderators" = "لقد قمت أنت بعزل {user0} و %ld مشاركين آخرين عن دور المنسق";
  1253. /* Please put {user0} and {user1} placeholders in the correct position on the translated text but do not translate them */
  1254. "You demoted {user0} and {user1} from moderators" = "لقد قمت أنت بعزل {user0} و {user1} عن دور المنسق";
  1255. /* No comment provided by engineer. */
  1256. "You have %ld pending invitations" = "لديك %ld دعوة معلقة";
  1257. /* No comment provided by engineer. */
  1258. "You have been muted by a moderator" = "تم اغلاق المايكرفون الخاص بك من قبل المشرف";
  1259. /* No comment provided by engineer. */
  1260. "You need to promote a new moderator before you can leave %@." = "يجب عليك ترقية مشرف لاحد المشاركين قبل مغادرة %@.";
  1261. /* No comment provided by engineer. */
  1262. "You need to promote a new moderator before you can leave this conversation" = "يجب عليك ترقية مشرف لاحد المشاركين قبل مغادرة هذه المحادثة.";
  1263. /* Please put {user0} and %ld placeholders in the correct position on the translated text but do not translate them */
  1264. "You promoted {user0} and %ld more participants to moderators" = "لقد قمت أنت بترفيع {user0} و %ld مشاركين آخرين إلى دور المنسق";
  1265. /* Please put {user0} and {user1} placeholders in the correct position on the translated text but do not translate them */
  1266. "You promoted {user0} and {user1} to moderators" = "لقد قمت أنت بترفيع {user0} و {user1} إلى دور المنسق";
  1267. /* No comment provided by engineer. */
  1268. "You received a new notification" = "لقد تلقيت إشعار جديد";
  1269. /* No comment provided by engineer. */
  1270. "You reconnected to the call" = "لقد قمت بإعادة الاتصال مع المكاملة";
  1271. /* Please put {user0} and %ld placeholders in the correct position on the translated text but do not translate it */
  1272. "You removed {user0} and %ld more participants" = "لقد قمت بحذف اشتراك {user0} و %ld مشاركين آخرين";
  1273. /* Please put {user0} and {user1} placeholders in the correct position on the translated text but do not translate them */
  1274. "You removed {user0} and {user1}" = "لقد قمت بحذف اشتراك {user0} و {user1}";
  1275. /* No comment provided by engineer. */
  1276. "Your email address" = "عنوان بريديك الإلكتروني";
  1277. /* No comment provided by engineer. */
  1278. "Your phone number" = "رقم هاتفك";
  1279. /* No comment provided by engineer. */
  1280. "Your PIN" = "رقمك السري";
  1281. /* No comment provided by engineer. */
  1282. "Your postal address" = "عنوانك البريدي";
  1283. /* 'Zammad' is a product name */
  1284. "Zammad API error" = "خطأ في واجهة التطبيق Zammed";
  1285. /* Please put {actor0} and %ld placeholders in the correct position on the translated text but do not translate them */
  1286. "{actor0} added you and %ld more participants" = "قام {actor0} بإضافتك أنت و %ld مشاركين آخرين";
  1287. /* Please put {actor0} and {user0} placeholders in the correct position on the translated text but do not translate them */
  1288. "{actor0} added you and {user0}" = "قام {actor0} بإضافتك أنت و {user0}";
  1289. /* Please put {actor0}, {user0} and %ld placeholders in the correct position on the translated text but do not translate them */
  1290. "{actor0} added {user0} and %ld more participants" = "قام {actor0} بإضافة {user0} و %ld مشاركين آخرين";
  1291. /* Please put {actor0}, {user0} and {user1} placeholders in the correct position on the translated text but do not translate them */
  1292. "{actor0} added {user0} and {user1}" = "قام {actor0} بإضافة {user0} و {user1}";
  1293. /* Please put {actor0} and %ld placeholders in the correct position on the translated text but do not translate them */
  1294. "{actor0} and %ld more participants joined the call" = "قام {actor0} و %ld مشاركين آخرين بالانضمام إلى المكالمة";
  1295. /* Please put {actor0} and %ld placeholders in the correct position on the translated text but do not translate them */
  1296. "{actor0} and %ld more participants left the call" = "قام {actor0} و %ld مشاركين آخرين بمغادرة المكالمة";
  1297. /* Please put {actor0} and {actor1} placeholders in the correct position on the translated text but do not translate them */
  1298. "{actor0} and {actor1} joined the call" = "قام {actor0} و {actor1} بالانضمام إلى المكالمة";
  1299. /* Please put {actor0} and {actor1} placeholders in the correct position on the translated text but do not translate them */
  1300. "{actor0} and {actor1} left the call" = "قام {actor0} و {actor1} بمغادرة المكالمة";
  1301. /* Please put {actor0} and %ld placeholders in the correct position on the translated text but do not translate them */
  1302. "{actor0} demoted you and %ld more participants from moderators" = "قام {actor0} بعزلك أنت و %ld مشاركين آخرين عن دور المنسق";
  1303. /* Please put {actor0} and {user0} placeholders in the correct position on the translated text but do not translate them */
  1304. "{actor0} demoted you and {user0} from moderators" = "قام {actor0} بعزلك أنت و {user0} عن دور المنسق";
  1305. /* Please put {actor0}, {user0} and %ld placeholders in the correct position on the translated text but do not translate them */
  1306. "{actor0} demoted {user0} and %ld more participants from moderators" = "قام {actor0} بعزل {user0} و %ld مشاركين آخرين عن دور المنسق";
  1307. /* Please put {actor0}, {user0} and {user1} placeholders in the correct position on the translated text but do not translate them */
  1308. "{actor0} demoted {user0} and {user1} from moderators" = "قام {actor0} بعزل {user0} و {user1} عن دور المنسق";
  1309. /* Please put {actor0} and %ld placeholders in the correct position on the translated text but do not translate them */
  1310. "{actor0} promoted you and %ld more participants to moderators" = "قام {actor0} بترفيعك أنت و %ld مشاركين آخرين إلى دور المنسق";
  1311. /* Please put {actor0} and {user0} placeholders in the correct position on the translated text but do not translate them */
  1312. "{actor0} promoted you and {user0} to moderators" = "قام {actor0} بترفيعك أنت و {user0} إلى دور المنسق";
  1313. /* Please put {actor0}, {user0} and %ld placeholders in the correct position on the translated text but do not translate them */
  1314. "{actor0} promoted {user0} and %ld more participants to moderators" = "قام {actor0} بترفيع {user0} و %ld مشاركين آخرين إلى دور المنسق";
  1315. /* Please put {actor0}, {user0} and {user1} placeholders in the correct position on the translated text but do not translate them */
  1316. "{actor0} promoted {user0} and {user1} to moderators" = "قام {actor0} بترفيع {user0} و {user1} إلى دور المنسق";
  1317. /* Please put {actor0} placeholder in the correct position on the translated text but do not translate it */
  1318. "{actor0} reconnected to the call" = "قام {actor0} بإعادة التوصيل مع المكالمة";
  1319. /* Please put {actor0} and %ld placeholders in the correct position on the translated text but do not translate them */
  1320. "{actor0} removed you and %ld more participants" = "قام {actor0} بحذف اشتراكك أنت و %ld مشاركين آخرين ";
  1321. /* Please put {actor0} and {user0} placeholders in the correct position on the translated text but do not translate them */
  1322. "{actor0} removed you and {user0}" = "قام {actor0} بحذف اشتراكك أنت و {user0}";
  1323. /* Please put {actor0}, {user0} and %ld placeholders in the correct position on the translated text but do not translate them */
  1324. "{actor0} removed {user0} and %ld more participants" = "قام {actor0} بحذف اشتراك {user0} و %ld مشاركين آخرين ";
  1325. /* Please put {actor0}, {user0} and {user1} placeholders in the correct position on the translated text but do not translate them */
  1326. "{actor0} removed {user0} and {user1}" = "قام {actor0} بحذف اشتراك {user0} و {user1} ";
  1327. /* No comment provided by engineer. */
  1328. "↓ New messages" = "↓ رسائل جديدة";