@atproto/oauth-provider 0.5.1 → 0.6.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (325) hide show
  1. package/CHANGELOG.md +39 -0
  2. package/dist/account/account-manager.d.ts +7 -5
  3. package/dist/account/account-manager.d.ts.map +1 -1
  4. package/dist/account/account-manager.js +34 -25
  5. package/dist/account/account-manager.js.map +1 -1
  6. package/dist/account/account-store.d.ts +13 -5
  7. package/dist/account/account-store.d.ts.map +1 -1
  8. package/dist/account/account-store.js +24 -8
  9. package/dist/account/account-store.js.map +1 -1
  10. package/dist/account/account.d.ts +1 -11
  11. package/dist/account/account.d.ts.map +1 -1
  12. package/dist/account/{sign-up-data.d.ts → sign-up-input.d.ts} +5 -5
  13. package/dist/account/sign-up-input.d.ts.map +1 -0
  14. package/dist/account/{sign-up-data.js → sign-up-input.js} +3 -3
  15. package/dist/account/sign-up-input.js.map +1 -0
  16. package/dist/assets/assets-middleware.d.ts +2 -0
  17. package/dist/assets/assets-middleware.d.ts.map +1 -1
  18. package/dist/assets/assets-middleware.js +12 -14
  19. package/dist/assets/assets-middleware.js.map +1 -1
  20. package/dist/errors/invalid-invite-code-error.d.ts +5 -0
  21. package/dist/errors/invalid-invite-code-error.d.ts.map +1 -0
  22. package/dist/errors/invalid-invite-code-error.js +11 -0
  23. package/dist/errors/invalid-invite-code-error.js.map +1 -0
  24. package/dist/errors/oauth-error.d.ts +2 -2
  25. package/dist/errors/oauth-error.js.map +1 -1
  26. package/dist/lib/csp/index.d.ts +5 -6
  27. package/dist/lib/csp/index.d.ts.map +1 -1
  28. package/dist/lib/csp/index.js +14 -11
  29. package/dist/lib/csp/index.js.map +1 -1
  30. package/dist/lib/hcaptcha.d.ts +5 -3
  31. package/dist/lib/hcaptcha.d.ts.map +1 -1
  32. package/dist/lib/hcaptcha.js +7 -4
  33. package/dist/lib/hcaptcha.js.map +1 -1
  34. package/dist/lib/html/build-document.d.ts +2 -2
  35. package/dist/lib/html/build-document.d.ts.map +1 -1
  36. package/dist/lib/html/build-document.js +11 -7
  37. package/dist/lib/html/build-document.js.map +1 -1
  38. package/dist/lib/html/html.d.ts.map +1 -1
  39. package/dist/lib/html/html.js +10 -13
  40. package/dist/lib/html/html.js.map +1 -1
  41. package/dist/lib/html/util.d.ts +0 -1
  42. package/dist/lib/html/util.d.ts.map +1 -1
  43. package/dist/lib/html/util.js +0 -4
  44. package/dist/lib/html/util.js.map +1 -1
  45. package/dist/lib/http/response.d.ts +3 -1
  46. package/dist/lib/http/response.d.ts.map +1 -1
  47. package/dist/lib/http/response.js +3 -0
  48. package/dist/lib/http/response.js.map +1 -1
  49. package/dist/lib/http/security-headers.d.ts +48 -0
  50. package/dist/lib/http/security-headers.d.ts.map +1 -0
  51. package/dist/lib/http/security-headers.js +62 -0
  52. package/dist/lib/http/security-headers.js.map +1 -0
  53. package/dist/lib/util/type.d.ts +8 -0
  54. package/dist/lib/util/type.d.ts.map +1 -1
  55. package/dist/lib/util/type.js.map +1 -1
  56. package/dist/oauth-errors.d.ts +1 -0
  57. package/dist/oauth-errors.d.ts.map +1 -1
  58. package/dist/oauth-errors.js +3 -1
  59. package/dist/oauth-errors.js.map +1 -1
  60. package/dist/oauth-hooks.d.ts +4 -25
  61. package/dist/oauth-hooks.d.ts.map +1 -1
  62. package/dist/oauth-provider.d.ts.map +1 -1
  63. package/dist/oauth-provider.js +26 -25
  64. package/dist/oauth-provider.js.map +1 -1
  65. package/dist/output/backend-data.d.ts +4 -0
  66. package/dist/output/backend-data.d.ts.map +1 -0
  67. package/dist/output/backend-data.js +19 -0
  68. package/dist/output/backend-data.js.map +1 -0
  69. package/dist/output/build-authorize-data.d.ts +3 -19
  70. package/dist/output/build-authorize-data.d.ts.map +1 -1
  71. package/dist/output/build-authorize-data.js.map +1 -1
  72. package/dist/output/build-customization-data.d.ts +11 -18
  73. package/dist/output/build-customization-data.d.ts.map +1 -1
  74. package/dist/output/build-customization-data.js +1 -1
  75. package/dist/output/build-customization-data.js.map +1 -1
  76. package/dist/output/build-error-data.d.ts +3 -0
  77. package/dist/output/build-error-data.d.ts.map +1 -0
  78. package/dist/output/build-error-data.js +10 -0
  79. package/dist/output/build-error-data.js.map +1 -0
  80. package/dist/output/build-error-payload.d.ts +2 -1
  81. package/dist/output/build-error-payload.d.ts.map +1 -1
  82. package/dist/output/build-error-payload.js.map +1 -1
  83. package/dist/output/output-manager.d.ts +10 -4
  84. package/dist/output/output-manager.d.ts.map +1 -1
  85. package/dist/output/output-manager.js +68 -39
  86. package/dist/output/output-manager.js.map +1 -1
  87. package/dist/output/send-web-page.d.ts +6 -10
  88. package/dist/output/send-web-page.d.ts.map +1 -1
  89. package/dist/output/send-web-page.js +27 -47
  90. package/dist/output/send-web-page.js.map +1 -1
  91. package/dist/signer/signed-token-payload.d.ts +3 -3
  92. package/dist/signer/signer.d.ts +2 -2
  93. package/package.json +7 -39
  94. package/src/account/account-manager.ts +55 -34
  95. package/src/account/account-store.ts +29 -6
  96. package/src/account/account.ts +1 -14
  97. package/src/account/{sign-up-data.ts → sign-up-input.ts} +2 -2
  98. package/src/assets/assets-middleware.ts +11 -17
  99. package/src/errors/invalid-invite-code-error.ts +10 -0
  100. package/src/errors/oauth-error.ts +1 -1
  101. package/src/lib/csp/index.ts +16 -13
  102. package/src/lib/hcaptcha.ts +10 -7
  103. package/src/lib/html/build-document.ts +15 -8
  104. package/src/lib/html/html.ts +11 -18
  105. package/src/lib/html/util.ts +0 -4
  106. package/src/lib/http/response.ts +9 -1
  107. package/src/lib/http/security-headers.ts +91 -0
  108. package/src/lib/util/type.ts +18 -0
  109. package/src/oauth-errors.ts +1 -0
  110. package/src/oauth-hooks.ts +4 -25
  111. package/src/oauth-provider.ts +40 -34
  112. package/src/output/backend-data.ts +18 -0
  113. package/src/output/build-authorize-data.ts +3 -26
  114. package/src/output/build-customization-data.ts +2 -13
  115. package/src/output/build-error-data.ts +8 -0
  116. package/src/output/build-error-payload.ts +4 -2
  117. package/src/output/output-manager.ts +86 -47
  118. package/src/output/send-web-page.ts +29 -58
  119. package/tsconfig.backend.json +1 -2
  120. package/tsconfig.backend.tsbuildinfo +1 -1
  121. package/tsconfig.json +1 -5
  122. package/.linguirc +0 -57
  123. package/dist/account/sign-up-data.d.ts.map +0 -1
  124. package/dist/account/sign-up-data.js.map +0 -1
  125. package/dist/assets/app/bundle-manifest.json +0 -614
  126. package/dist/assets/app/index-ItwwtJ8r.js +0 -36
  127. package/dist/assets/app/index-ItwwtJ8r.js.map +0 -1
  128. package/dist/assets/app/main-B_dNxQo_.js +0 -4
  129. package/dist/assets/app/main-B_dNxQo_.js.map +0 -1
  130. package/dist/assets/app/main-CSatvmRR.css +0 -3
  131. package/dist/assets/app/main-CSatvmRR.js +0 -306
  132. package/dist/assets/app/main-CSatvmRR.js.map +0 -1
  133. package/dist/assets/app/messages-BQeltXSF.js +0 -4
  134. package/dist/assets/app/messages-BQeltXSF.js.map +0 -1
  135. package/dist/assets/app/messages-BQkEhfjg.js +0 -4
  136. package/dist/assets/app/messages-BQkEhfjg.js.map +0 -1
  137. package/dist/assets/app/messages-BUjKj_UJ.js +0 -4
  138. package/dist/assets/app/messages-BUjKj_UJ.js.map +0 -1
  139. package/dist/assets/app/messages-BWIQa8fO.js +0 -4
  140. package/dist/assets/app/messages-BWIQa8fO.js.map +0 -1
  141. package/dist/assets/app/messages-BaNVb0bp.js +0 -4
  142. package/dist/assets/app/messages-BaNVb0bp.js.map +0 -1
  143. package/dist/assets/app/messages-BaizVXcF.js +0 -4
  144. package/dist/assets/app/messages-BaizVXcF.js.map +0 -1
  145. package/dist/assets/app/messages-BfoClA1Y.js +0 -4
  146. package/dist/assets/app/messages-BfoClA1Y.js.map +0 -1
  147. package/dist/assets/app/messages-BsKGDZnC.js +0 -4
  148. package/dist/assets/app/messages-BsKGDZnC.js.map +0 -1
  149. package/dist/assets/app/messages-Bu-TJhml.js +0 -4
  150. package/dist/assets/app/messages-Bu-TJhml.js.map +0 -1
  151. package/dist/assets/app/messages-BvOKnBQk.js +0 -4
  152. package/dist/assets/app/messages-BvOKnBQk.js.map +0 -1
  153. package/dist/assets/app/messages-BxDzCiWz.js +0 -4
  154. package/dist/assets/app/messages-BxDzCiWz.js.map +0 -1
  155. package/dist/assets/app/messages-CDgFOy4S.js +0 -4
  156. package/dist/assets/app/messages-CDgFOy4S.js.map +0 -1
  157. package/dist/assets/app/messages-CLbTz0o9.js +0 -4
  158. package/dist/assets/app/messages-CLbTz0o9.js.map +0 -1
  159. package/dist/assets/app/messages-CNwSh0t7.js +0 -4
  160. package/dist/assets/app/messages-CNwSh0t7.js.map +0 -1
  161. package/dist/assets/app/messages-CSMNJ6P8.js +0 -4
  162. package/dist/assets/app/messages-CSMNJ6P8.js.map +0 -1
  163. package/dist/assets/app/messages-CZQUw3mp.js +0 -4
  164. package/dist/assets/app/messages-CZQUw3mp.js.map +0 -1
  165. package/dist/assets/app/messages-CZT41oVp.js +0 -4
  166. package/dist/assets/app/messages-CZT41oVp.js.map +0 -1
  167. package/dist/assets/app/messages-C_b-d3t8.js +0 -4
  168. package/dist/assets/app/messages-C_b-d3t8.js.map +0 -1
  169. package/dist/assets/app/messages-C_u3MTc2.js +0 -4
  170. package/dist/assets/app/messages-C_u3MTc2.js.map +0 -1
  171. package/dist/assets/app/messages-Cn8nHZic.js +0 -4
  172. package/dist/assets/app/messages-Cn8nHZic.js.map +0 -1
  173. package/dist/assets/app/messages-CtDywJUm.js +0 -4
  174. package/dist/assets/app/messages-CtDywJUm.js.map +0 -1
  175. package/dist/assets/app/messages-CurtIjBF.js +0 -4
  176. package/dist/assets/app/messages-CurtIjBF.js.map +0 -1
  177. package/dist/assets/app/messages-Cv6zIbaP.js +0 -4
  178. package/dist/assets/app/messages-Cv6zIbaP.js.map +0 -1
  179. package/dist/assets/app/messages-D1eLQuPE.js +0 -4
  180. package/dist/assets/app/messages-D1eLQuPE.js.map +0 -1
  181. package/dist/assets/app/messages-D8vHEaYW.js +0 -4
  182. package/dist/assets/app/messages-D8vHEaYW.js.map +0 -1
  183. package/dist/assets/app/messages-DJ1Q4GeC.js +0 -4
  184. package/dist/assets/app/messages-DJ1Q4GeC.js.map +0 -1
  185. package/dist/assets/app/messages-DRL3exqd.js +0 -4
  186. package/dist/assets/app/messages-DRL3exqd.js.map +0 -1
  187. package/dist/assets/app/messages-DWLPQRTp.js +0 -4
  188. package/dist/assets/app/messages-DWLPQRTp.js.map +0 -1
  189. package/dist/assets/app/messages-DjVaE9YE.js +0 -4
  190. package/dist/assets/app/messages-DjVaE9YE.js.map +0 -1
  191. package/dist/assets/app/messages-DqpMfFJR.js +0 -4
  192. package/dist/assets/app/messages-DqpMfFJR.js.map +0 -1
  193. package/dist/assets/app/messages-ETjhJBEN.js +0 -4
  194. package/dist/assets/app/messages-ETjhJBEN.js.map +0 -1
  195. package/dist/assets/app/messages-EUKrgrGn.js +0 -4
  196. package/dist/assets/app/messages-EUKrgrGn.js.map +0 -1
  197. package/dist/assets/app/messages-QQrOUcPW.js +0 -4
  198. package/dist/assets/app/messages-QQrOUcPW.js.map +0 -1
  199. package/dist/assets/app/messages-e2QGqFL6.js +0 -4
  200. package/dist/assets/app/messages-e2QGqFL6.js.map +0 -1
  201. package/dist/assets/app/messages-p61py7gD.js +0 -4
  202. package/dist/assets/app/messages-p61py7gD.js.map +0 -1
  203. package/dist/assets/asset.d.ts +0 -9
  204. package/dist/assets/asset.d.ts.map +0 -1
  205. package/dist/assets/asset.js +0 -3
  206. package/dist/assets/asset.js.map +0 -1
  207. package/dist/assets/index.d.ts +0 -5
  208. package/dist/assets/index.d.ts.map +0 -1
  209. package/dist/assets/index.js +0 -78
  210. package/dist/assets/index.js.map +0 -1
  211. package/rollup.config.js +0 -98
  212. package/src/assets/app/app.tsx +0 -43
  213. package/src/assets/app/backend-data.ts +0 -27
  214. package/src/assets/app/backend-types.ts +0 -66
  215. package/src/assets/app/components/forms/button-toggle-visibility.tsx +0 -43
  216. package/src/assets/app/components/forms/button.tsx +0 -60
  217. package/src/assets/app/components/forms/fieldset.tsx +0 -55
  218. package/src/assets/app/components/forms/form-card-async.tsx +0 -103
  219. package/src/assets/app/components/forms/form-card.tsx +0 -49
  220. package/src/assets/app/components/forms/input-checkbox.tsx +0 -73
  221. package/src/assets/app/components/forms/input-container.tsx +0 -107
  222. package/src/assets/app/components/forms/input-email-address.tsx +0 -66
  223. package/src/assets/app/components/forms/input-new-password.tsx +0 -62
  224. package/src/assets/app/components/forms/input-password.tsx +0 -88
  225. package/src/assets/app/components/forms/input-text.tsx +0 -76
  226. package/src/assets/app/components/forms/input-token.tsx +0 -94
  227. package/src/assets/app/components/forms/wizard-card.tsx +0 -116
  228. package/src/assets/app/components/layouts/layout-title-page.tsx +0 -77
  229. package/src/assets/app/components/layouts/layout-welcome.tsx +0 -73
  230. package/src/assets/app/components/utils/account-identifier.tsx +0 -23
  231. package/src/assets/app/components/utils/account-image.tsx +0 -33
  232. package/src/assets/app/components/utils/admonition.tsx +0 -52
  233. package/src/assets/app/components/utils/client-name.tsx +0 -45
  234. package/src/assets/app/components/utils/error-card.tsx +0 -93
  235. package/src/assets/app/components/utils/error-message.tsx +0 -62
  236. package/src/assets/app/components/utils/help-card.tsx +0 -46
  237. package/src/assets/app/components/utils/icons.tsx +0 -88
  238. package/src/assets/app/components/utils/link-anchor.tsx +0 -28
  239. package/src/assets/app/components/utils/link-title.tsx +0 -26
  240. package/src/assets/app/components/utils/multi-lang-string.tsx +0 -56
  241. package/src/assets/app/components/utils/password-strength-label.tsx +0 -37
  242. package/src/assets/app/components/utils/password-strength-meter.tsx +0 -58
  243. package/src/assets/app/components/utils/url-viewer.tsx +0 -73
  244. package/src/assets/app/cookies.ts +0 -11
  245. package/src/assets/app/hooks/use-api.ts +0 -178
  246. package/src/assets/app/hooks/use-async-action.ts +0 -120
  247. package/src/assets/app/hooks/use-bound-dispatch.ts +0 -5
  248. package/src/assets/app/hooks/use-browser-color-scheme.ts +0 -31
  249. package/src/assets/app/hooks/use-csrf-token.ts +0 -5
  250. package/src/assets/app/hooks/use-random-string.ts +0 -37
  251. package/src/assets/app/hooks/use-stepper.ts +0 -87
  252. package/src/assets/app/index.html +0 -182
  253. package/src/assets/app/lib/api.ts +0 -267
  254. package/src/assets/app/lib/clsx.ts +0 -6
  255. package/src/assets/app/lib/json-client.ts +0 -94
  256. package/src/assets/app/lib/password.ts +0 -98
  257. package/src/assets/app/lib/ref.ts +0 -17
  258. package/src/assets/app/lib/util.ts +0 -13
  259. package/src/assets/app/locales/an/messages.po +0 -492
  260. package/src/assets/app/locales/ast/messages.po +0 -492
  261. package/src/assets/app/locales/ca/messages.po +0 -492
  262. package/src/assets/app/locales/da/messages.po +0 -492
  263. package/src/assets/app/locales/de/messages.po +0 -492
  264. package/src/assets/app/locales/el/messages.po +0 -492
  265. package/src/assets/app/locales/en/messages.po +0 -492
  266. package/src/assets/app/locales/en-GB/messages.po +0 -492
  267. package/src/assets/app/locales/es/messages.po +0 -492
  268. package/src/assets/app/locales/eu/messages.po +0 -492
  269. package/src/assets/app/locales/fi/messages.po +0 -492
  270. package/src/assets/app/locales/fr/messages.po +0 -492
  271. package/src/assets/app/locales/ga/messages.po +0 -492
  272. package/src/assets/app/locales/gl/messages.po +0 -492
  273. package/src/assets/app/locales/hi/messages.po +0 -492
  274. package/src/assets/app/locales/hu/messages.po +0 -492
  275. package/src/assets/app/locales/ia/messages.po +0 -492
  276. package/src/assets/app/locales/id/messages.po +0 -492
  277. package/src/assets/app/locales/it/messages.po +0 -492
  278. package/src/assets/app/locales/ja/messages.po +0 -492
  279. package/src/assets/app/locales/km/messages.po +0 -492
  280. package/src/assets/app/locales/ko/messages.po +0 -492
  281. package/src/assets/app/locales/load.ts +0 -8
  282. package/src/assets/app/locales/locale-context.ts +0 -19
  283. package/src/assets/app/locales/locale-provider.tsx +0 -112
  284. package/src/assets/app/locales/locale-selector.tsx +0 -58
  285. package/src/assets/app/locales/locales.ts +0 -168
  286. package/src/assets/app/locales/ne/messages.po +0 -492
  287. package/src/assets/app/locales/nl/messages.po +0 -492
  288. package/src/assets/app/locales/pl/messages.po +0 -492
  289. package/src/assets/app/locales/pt-BR/messages.po +0 -492
  290. package/src/assets/app/locales/ro/messages.po +0 -492
  291. package/src/assets/app/locales/ru/messages.po +0 -492
  292. package/src/assets/app/locales/sv/messages.po +0 -492
  293. package/src/assets/app/locales/th/messages.po +0 -492
  294. package/src/assets/app/locales/tr/messages.po +0 -492
  295. package/src/assets/app/locales/uk/messages.po +0 -492
  296. package/src/assets/app/locales/vi/messages.po +0 -492
  297. package/src/assets/app/locales/zh-CN/messages.po +0 -492
  298. package/src/assets/app/locales/zh-HK/messages.po +0 -492
  299. package/src/assets/app/locales/zh-TW/messages.po +0 -492
  300. package/src/assets/app/main.css +0 -33
  301. package/src/assets/app/main.tsx +0 -44
  302. package/src/assets/app/views/authorize/accept/accept-form.tsx +0 -150
  303. package/src/assets/app/views/authorize/accept/accept-view.tsx +0 -70
  304. package/src/assets/app/views/authorize/authorize-view.tsx +0 -180
  305. package/src/assets/app/views/authorize/reset-password/reset-password-confirm-form.tsx +0 -88
  306. package/src/assets/app/views/authorize/reset-password/reset-password-request-form.tsx +0 -80
  307. package/src/assets/app/views/authorize/reset-password/reset-password-view.tsx +0 -127
  308. package/src/assets/app/views/authorize/sign-in/sign-in-form.tsx +0 -244
  309. package/src/assets/app/views/authorize/sign-in/sign-in-picker.tsx +0 -116
  310. package/src/assets/app/views/authorize/sign-in/sign-in-view.tsx +0 -145
  311. package/src/assets/app/views/authorize/sign-up/sign-up-account-form.tsx +0 -140
  312. package/src/assets/app/views/authorize/sign-up/sign-up-disclaimer.tsx +0 -51
  313. package/src/assets/app/views/authorize/sign-up/sign-up-handle-form.tsx +0 -289
  314. package/src/assets/app/views/authorize/sign-up/sign-up-hcaptcha-form.tsx +0 -108
  315. package/src/assets/app/views/authorize/sign-up/sign-up-view.tsx +0 -158
  316. package/src/assets/app/views/authorize/welcome/welcome-view.tsx +0 -56
  317. package/src/assets/app/views/error/error-view.tsx +0 -31
  318. package/src/assets/asset.ts +0 -9
  319. package/src/assets/index.ts +0 -86
  320. package/tailwind.config.js +0 -31
  321. package/tsconfig.frontend.json +0 -11
  322. package/tsconfig.frontend.tsbuildinfo +0 -1
  323. package/tsconfig.tools.json +0 -8
  324. package/tsconfig.tools.tsbuildinfo +0 -1
  325. package/vite.config.mjs +0 -16
@@ -1,4 +0,0 @@
1
- const messages=JSON.parse('{"BVbdlE":["<0/> is asking for permission to access your account (<1/>)."],"4blS0m":["2FA Confirmation"],"S90jaV":["A second authentication factor is required"],"myiH7A":["Access your account data (except chat messages)"],"kJrqQq":["Access your chat messages"],"AeXO77":["Account"],"FTT4a4":["Already have a code?"],"eYNzrj":["An application on your device"],"vW+T+d":["An unknown error occurred"],"+TaG50":["Another account"],"OX6vme":["Authenticate"],"yIVrHZ":["Authorize"],"iH8pgl":["Back"],"4Rgp24":["Between ",["minLength"]," and ",["maxLength"]," characters"],"/aj5l4":["By clicking <0>Authorize</0>, you allow this application to perform the following actions in accordance with their <1>terms of service</1> and <2>privacy policy</2>:"],"mBUXx0":["By creating an account you agree to the ",["0"]," and the ",["1"]," of this service."],"dEgA5A":["Cancel"],"B+Yy3b":["Check your ",["0"]," email for a login code and enter it here."],"khEQ02":["Choose a username"],"EWPtMO":["Code"],"7VpPHA":["Confirm"],"HaGV2g":["Confirm your password to continue"],"ioZOzk":["Confirmation code"],"mpt9T+":["Create a new account"],"IS0nrP":["Create Account"],"54JiGG":["Deny access"],"Nu4oKW":["Description"],"O3oNi5":["Email"],"ATGYL1":["Email address"],"3tOlz6":["Enter a password"],"xg/UcZ":["Enter the code you received to reset your password."],"cHrOqs":["Enter the email you used to create your account. We\'ll send you a \\"reset code\\" so you can set a new password."],"xRPn3U":["Enter your email address"],"0StR7t":["Enter your new password"],"NgaR6B":["Enter your password"],"T0KLp4":["Enter your username and password"],"SlfejT":["Error"],"/Ltc/k":["Extra"],"dn8X5t":["Forgot Password"],"F4OP4y":["Forgot?"],"QdVx1C":["Grant access to your <0>",["0"],"</0> account"],"87VTIH":["Having trouble? <0>Contact support</0>"],"vLyv1R":["Hide"],"i0qMbr":["Home"],"sJGljQ":["Identifier"],"vHJQ4A":["Interface language selector"],"JHB/Ky":["Invalid"],"6KlkHI":["Invite code"],"Esfg1M":["Let\'s get your password reset!"],"UCOd1e":["Login complete"],"cR9UpQ":["Login to account that is not listed"],"0hTJM+":["Looks like ",["example"]],"huXYDE":["Make visible"],"VU3Nrn":["Missing"],"dvYuhh":["Moderate"],"6YtxFj":["Name"],"/nT6AE":["New password"],"hXzOVo":["Next"],"UaXeX3":["Okay"],"yDlXDJ":["Only letters, numbers, and hyphens"],"8ZsakT":["Password"],"osAB4a":["Password strength"],"xfNKwI":["Password strength indicator"],"fSy6T1":["Password Updated"],"DKeVgZ":["Password updated!"],"5CqSPX":["Password with at least ",["MIN_PASSWORD_LENGTH"]," characters"],"+Z2ZNt":["Please verify the domain name of the website before entering your password. Never enter your password on a domain you do not trust."],"LcET2C":["Privacy Policy"],"1TxdLU":["Remember this account on this device"],"c7cY3z":["Requested permissions"],"vJgYMA":["Reset code"],"KbS2K9":["Reset Password"],"slOprG":["Reset your password"],"HB+TbB":["Select domain"],"o3dwub":["Select from an existing account"],"CqO9qC":["Session"],"5lWFkC":["Sign in"],"N9o7n5":["Sign in as ",["0"]],"FT1MVS":["Sign in as..."],"e+RpCP":["Sign up"],"BEx8rG":["Step ",["currentPosition"]," of ",["count"]],"LLx/nr":["Strong"],"hQRttt":["Submit"],"XYLcNv":["Support"],"xowcRf":["Terms of Service"],"D00bHj":["That handle cannot be used"],"qDdKKD":["The domain name is not allowed"],"we0QGx":["The handle contains inappropriate language"],"kPGuFg":["The handle is already in use"],"LSPrK4":["The handle is invalid"],"SZKM0t":["This email is already used"],"T61uiW":["This handle is reserved"],"5OVfoe":["This sign-in session has expired"],"LX2sHe":["Type your desired username"],"Jja+Vn":["Unexpected server response"],"BWM1dL":["Uniquely identify you"],"nZx9mr":["Username or email address"],"nfagfM":["Valid"],"86GEtW":["Valid email address or username"],"aIar4b":["Verify you are human"],"r6y+jM":["Warning"],"qjBGxf":["We\'re so excited to have you join us!"],"9ls/Vs":["Weak"],"jSVjfa":["Wrong identifier or password"],"qq6QQ5":["You are being redirected..."],"B9VwbO":["You can change this username to any domain name you control after your account is set up."],"67nRLM":["You can now sign in with your new password."],"imRJNy":["You will receive an email with a \\"reset code\\". Enter that code here then enter your new password."],"gdRnT7":["Your account"],"r/b/p8":["Your full username will be: ",["0"]],"+qGdcW":["Your password has been updated!"]}');
2
-
3
- export { messages };
4
- //# sourceMappingURL=messages-BQeltXSF.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"messages-BQeltXSF.js","sources":["../../../src/assets/app/locales/nl/messages.ts"],"sourcesContent":["/*eslint-disable*/import type{Messages}from\"@lingui/core\";export const messages=JSON.parse(\"{\\\"BVbdlE\\\":[\\\"<0/> is asking for permission to access your account (<1/>).\\\"],\\\"4blS0m\\\":[\\\"2FA Confirmation\\\"],\\\"S90jaV\\\":[\\\"A second authentication factor is required\\\"],\\\"myiH7A\\\":[\\\"Access your account data (except chat messages)\\\"],\\\"kJrqQq\\\":[\\\"Access your chat messages\\\"],\\\"AeXO77\\\":[\\\"Account\\\"],\\\"FTT4a4\\\":[\\\"Already have a code?\\\"],\\\"eYNzrj\\\":[\\\"An application on your device\\\"],\\\"vW+T+d\\\":[\\\"An unknown error occurred\\\"],\\\"+TaG50\\\":[\\\"Another account\\\"],\\\"OX6vme\\\":[\\\"Authenticate\\\"],\\\"yIVrHZ\\\":[\\\"Authorize\\\"],\\\"iH8pgl\\\":[\\\"Back\\\"],\\\"4Rgp24\\\":[\\\"Between \\\",[\\\"minLength\\\"],\\\" and \\\",[\\\"maxLength\\\"],\\\" characters\\\"],\\\"/aj5l4\\\":[\\\"By clicking <0>Authorize</0>, you allow this application to perform the following actions in accordance with their <1>terms of service</1> and <2>privacy policy</2>:\\\"],\\\"mBUXx0\\\":[\\\"By creating an account you agree to the \\\",[\\\"0\\\"],\\\" and the \\\",[\\\"1\\\"],\\\" of this service.\\\"],\\\"dEgA5A\\\":[\\\"Cancel\\\"],\\\"B+Yy3b\\\":[\\\"Check your \\\",[\\\"0\\\"],\\\" email for a login code and enter it here.\\\"],\\\"khEQ02\\\":[\\\"Choose a username\\\"],\\\"EWPtMO\\\":[\\\"Code\\\"],\\\"7VpPHA\\\":[\\\"Confirm\\\"],\\\"HaGV2g\\\":[\\\"Confirm your password to continue\\\"],\\\"ioZOzk\\\":[\\\"Confirmation code\\\"],\\\"mpt9T+\\\":[\\\"Create a new account\\\"],\\\"IS0nrP\\\":[\\\"Create Account\\\"],\\\"54JiGG\\\":[\\\"Deny access\\\"],\\\"Nu4oKW\\\":[\\\"Description\\\"],\\\"O3oNi5\\\":[\\\"Email\\\"],\\\"ATGYL1\\\":[\\\"Email address\\\"],\\\"3tOlz6\\\":[\\\"Enter a password\\\"],\\\"xg/UcZ\\\":[\\\"Enter the code you received to reset your password.\\\"],\\\"cHrOqs\\\":[\\\"Enter the email you used to create your account. We'll send you a \\\\\\\"reset code\\\\\\\" so you can set a new password.\\\"],\\\"xRPn3U\\\":[\\\"Enter your email address\\\"],\\\"0StR7t\\\":[\\\"Enter your new password\\\"],\\\"NgaR6B\\\":[\\\"Enter your password\\\"],\\\"T0KLp4\\\":[\\\"Enter your username and password\\\"],\\\"SlfejT\\\":[\\\"Error\\\"],\\\"/Ltc/k\\\":[\\\"Extra\\\"],\\\"dn8X5t\\\":[\\\"Forgot Password\\\"],\\\"F4OP4y\\\":[\\\"Forgot?\\\"],\\\"QdVx1C\\\":[\\\"Grant access to your <0>\\\",[\\\"0\\\"],\\\"</0> account\\\"],\\\"87VTIH\\\":[\\\"Having trouble? <0>Contact support</0>\\\"],\\\"vLyv1R\\\":[\\\"Hide\\\"],\\\"i0qMbr\\\":[\\\"Home\\\"],\\\"sJGljQ\\\":[\\\"Identifier\\\"],\\\"vHJQ4A\\\":[\\\"Interface language selector\\\"],\\\"JHB/Ky\\\":[\\\"Invalid\\\"],\\\"6KlkHI\\\":[\\\"Invite code\\\"],\\\"Esfg1M\\\":[\\\"Let's get your password reset!\\\"],\\\"UCOd1e\\\":[\\\"Login complete\\\"],\\\"cR9UpQ\\\":[\\\"Login to account that is not listed\\\"],\\\"0hTJM+\\\":[\\\"Looks like \\\",[\\\"example\\\"]],\\\"huXYDE\\\":[\\\"Make visible\\\"],\\\"VU3Nrn\\\":[\\\"Missing\\\"],\\\"dvYuhh\\\":[\\\"Moderate\\\"],\\\"6YtxFj\\\":[\\\"Name\\\"],\\\"/nT6AE\\\":[\\\"New password\\\"],\\\"hXzOVo\\\":[\\\"Next\\\"],\\\"UaXeX3\\\":[\\\"Okay\\\"],\\\"yDlXDJ\\\":[\\\"Only letters, numbers, and hyphens\\\"],\\\"8ZsakT\\\":[\\\"Password\\\"],\\\"osAB4a\\\":[\\\"Password strength\\\"],\\\"xfNKwI\\\":[\\\"Password strength indicator\\\"],\\\"fSy6T1\\\":[\\\"Password Updated\\\"],\\\"DKeVgZ\\\":[\\\"Password updated!\\\"],\\\"5CqSPX\\\":[\\\"Password with at least \\\",[\\\"MIN_PASSWORD_LENGTH\\\"],\\\" characters\\\"],\\\"+Z2ZNt\\\":[\\\"Please verify the domain name of the website before entering your password. Never enter your password on a domain you do not trust.\\\"],\\\"LcET2C\\\":[\\\"Privacy Policy\\\"],\\\"1TxdLU\\\":[\\\"Remember this account on this device\\\"],\\\"c7cY3z\\\":[\\\"Requested permissions\\\"],\\\"vJgYMA\\\":[\\\"Reset code\\\"],\\\"KbS2K9\\\":[\\\"Reset Password\\\"],\\\"slOprG\\\":[\\\"Reset your password\\\"],\\\"HB+TbB\\\":[\\\"Select domain\\\"],\\\"o3dwub\\\":[\\\"Select from an existing account\\\"],\\\"CqO9qC\\\":[\\\"Session\\\"],\\\"5lWFkC\\\":[\\\"Sign in\\\"],\\\"N9o7n5\\\":[\\\"Sign in as \\\",[\\\"0\\\"]],\\\"FT1MVS\\\":[\\\"Sign in as...\\\"],\\\"e+RpCP\\\":[\\\"Sign up\\\"],\\\"BEx8rG\\\":[\\\"Step \\\",[\\\"currentPosition\\\"],\\\" of \\\",[\\\"count\\\"]],\\\"LLx/nr\\\":[\\\"Strong\\\"],\\\"hQRttt\\\":[\\\"Submit\\\"],\\\"XYLcNv\\\":[\\\"Support\\\"],\\\"xowcRf\\\":[\\\"Terms of Service\\\"],\\\"D00bHj\\\":[\\\"That handle cannot be used\\\"],\\\"qDdKKD\\\":[\\\"The domain name is not allowed\\\"],\\\"we0QGx\\\":[\\\"The handle contains inappropriate language\\\"],\\\"kPGuFg\\\":[\\\"The handle is already in use\\\"],\\\"LSPrK4\\\":[\\\"The handle is invalid\\\"],\\\"SZKM0t\\\":[\\\"This email is already used\\\"],\\\"T61uiW\\\":[\\\"This handle is reserved\\\"],\\\"5OVfoe\\\":[\\\"This sign-in session has expired\\\"],\\\"LX2sHe\\\":[\\\"Type your desired username\\\"],\\\"Jja+Vn\\\":[\\\"Unexpected server response\\\"],\\\"BWM1dL\\\":[\\\"Uniquely identify you\\\"],\\\"nZx9mr\\\":[\\\"Username or email address\\\"],\\\"nfagfM\\\":[\\\"Valid\\\"],\\\"86GEtW\\\":[\\\"Valid email address or username\\\"],\\\"aIar4b\\\":[\\\"Verify you are human\\\"],\\\"r6y+jM\\\":[\\\"Warning\\\"],\\\"qjBGxf\\\":[\\\"We're so excited to have you join us!\\\"],\\\"9ls/Vs\\\":[\\\"Weak\\\"],\\\"jSVjfa\\\":[\\\"Wrong identifier or password\\\"],\\\"qq6QQ5\\\":[\\\"You are being redirected...\\\"],\\\"B9VwbO\\\":[\\\"You can change this username to any domain name you control after your account is set up.\\\"],\\\"67nRLM\\\":[\\\"You can now sign in with your new password.\\\"],\\\"imRJNy\\\":[\\\"You will receive an email with a \\\\\\\"reset code\\\\\\\". Enter that code here then enter your new password.\\\"],\\\"gdRnT7\\\":[\\\"Your account\\\"],\\\"r/b/p8\\\":[\\\"Your full username will be: \\\",[\\\"0\\\"]],\\\"+qGdcW\\\":[\\\"Your password has been updated!\\\"]}\")as Messages;"],"names":["messages","JSON","parse"],"mappings":"AAAuEA,MAAAA,QAAAA,CAASC,IAAKC,CAAAA,KAAK,CAAC,+yIAAiyJ;;;;"}
@@ -1,4 +0,0 @@
1
- const messages=JSON.parse('{"BVbdlE":["<0/> is asking for permission to access your account (<1/>)."],"4blS0m":["2FA Confirmation"],"S90jaV":["A second authentication factor is required"],"myiH7A":["Access your account data (except chat messages)"],"kJrqQq":["Access your chat messages"],"AeXO77":["Account"],"FTT4a4":["Already have a code?"],"eYNzrj":["An application on your device"],"vW+T+d":["An unknown error occurred"],"+TaG50":["Another account"],"OX6vme":["Authenticate"],"yIVrHZ":["Authorize"],"iH8pgl":["Back"],"4Rgp24":["Between ",["minLength"]," and ",["maxLength"]," characters"],"/aj5l4":["By clicking <0>Authorize</0>, you allow this application to perform the following actions in accordance with their <1>terms of service</1> and <2>privacy policy</2>:"],"mBUXx0":["By creating an account you agree to the ",["0"]," and the ",["1"]," of this service."],"dEgA5A":["Cancel"],"B+Yy3b":["Check your ",["0"]," email for a login code and enter it here."],"khEQ02":["Choose a username"],"EWPtMO":["Code"],"7VpPHA":["Confirm"],"HaGV2g":["Confirm your password to continue"],"ioZOzk":["Confirmation code"],"mpt9T+":["Create a new account"],"IS0nrP":["Create Account"],"54JiGG":["Deny access"],"Nu4oKW":["Description"],"O3oNi5":["Email"],"ATGYL1":["Email address"],"3tOlz6":["Enter a password"],"xg/UcZ":["Enter the code you received to reset your password."],"cHrOqs":["Enter the email you used to create your account. We\'ll send you a \\"reset code\\" so you can set a new password."],"xRPn3U":["Enter your email address"],"0StR7t":["Enter your new password"],"NgaR6B":["Enter your password"],"T0KLp4":["Enter your username and password"],"SlfejT":["Error"],"/Ltc/k":["Extra"],"dn8X5t":["Forgot Password"],"F4OP4y":["Forgot?"],"QdVx1C":["Grant access to your <0>",["0"],"</0> account"],"87VTIH":["Having trouble? <0>Contact support</0>"],"vLyv1R":["Hide"],"i0qMbr":["Home"],"sJGljQ":["Identifier"],"vHJQ4A":["Interface language selector"],"JHB/Ky":["Invalid"],"6KlkHI":["Invite code"],"Esfg1M":["Let\'s get your password reset!"],"UCOd1e":["Login complete"],"cR9UpQ":["Login to account that is not listed"],"0hTJM+":["Looks like ",["example"]],"huXYDE":["Make visible"],"VU3Nrn":["Missing"],"dvYuhh":["Moderate"],"6YtxFj":["Name"],"/nT6AE":["New password"],"hXzOVo":["Next"],"UaXeX3":["Okay"],"yDlXDJ":["Only letters, numbers, and hyphens"],"8ZsakT":["Password"],"osAB4a":["Password strength"],"xfNKwI":["Password strength indicator"],"fSy6T1":["Password Updated"],"DKeVgZ":["Password updated!"],"5CqSPX":["Password with at least ",["MIN_PASSWORD_LENGTH"]," characters"],"+Z2ZNt":["Please verify the domain name of the website before entering your password. Never enter your password on a domain you do not trust."],"LcET2C":["Privacy Policy"],"1TxdLU":["Remember this account on this device"],"c7cY3z":["Requested permissions"],"vJgYMA":["Reset code"],"KbS2K9":["Reset Password"],"slOprG":["Reset your password"],"HB+TbB":["Select domain"],"o3dwub":["Select from an existing account"],"CqO9qC":["Session"],"5lWFkC":["Sign in"],"N9o7n5":["Sign in as ",["0"]],"FT1MVS":["Sign in as..."],"e+RpCP":["Sign up"],"BEx8rG":["Step ",["currentPosition"]," of ",["count"]],"LLx/nr":["Strong"],"hQRttt":["Submit"],"XYLcNv":["Support"],"xowcRf":["Terms of Service"],"D00bHj":["That handle cannot be used"],"qDdKKD":["The domain name is not allowed"],"we0QGx":["The handle contains inappropriate language"],"kPGuFg":["The handle is already in use"],"LSPrK4":["The handle is invalid"],"SZKM0t":["This email is already used"],"T61uiW":["This handle is reserved"],"5OVfoe":["This sign-in session has expired"],"LX2sHe":["Type your desired username"],"Jja+Vn":["Unexpected server response"],"BWM1dL":["Uniquely identify you"],"nZx9mr":["Username or email address"],"nfagfM":["Valid"],"86GEtW":["Valid email address or username"],"aIar4b":["Verify you are human"],"r6y+jM":["Warning"],"qjBGxf":["We\'re so excited to have you join us!"],"9ls/Vs":["Weak"],"jSVjfa":["Wrong identifier or password"],"qq6QQ5":["You are being redirected..."],"B9VwbO":["You can change this username to any domain name you control after your account is set up."],"67nRLM":["You can now sign in with your new password."],"imRJNy":["You will receive an email with a \\"reset code\\". Enter that code here then enter your new password."],"gdRnT7":["Your account"],"r/b/p8":["Your full username will be: ",["0"]],"+qGdcW":["Your password has been updated!"]}');
2
-
3
- export { messages };
4
- //# sourceMappingURL=messages-BQkEhfjg.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"messages-BQkEhfjg.js","sources":["../../../src/assets/app/locales/ru/messages.ts"],"sourcesContent":["/*eslint-disable*/import type{Messages}from\"@lingui/core\";export const messages=JSON.parse(\"{\\\"BVbdlE\\\":[\\\"<0/> is asking for permission to access your account (<1/>).\\\"],\\\"4blS0m\\\":[\\\"2FA Confirmation\\\"],\\\"S90jaV\\\":[\\\"A second authentication factor is required\\\"],\\\"myiH7A\\\":[\\\"Access your account data (except chat messages)\\\"],\\\"kJrqQq\\\":[\\\"Access your chat messages\\\"],\\\"AeXO77\\\":[\\\"Account\\\"],\\\"FTT4a4\\\":[\\\"Already have a code?\\\"],\\\"eYNzrj\\\":[\\\"An application on your device\\\"],\\\"vW+T+d\\\":[\\\"An unknown error occurred\\\"],\\\"+TaG50\\\":[\\\"Another account\\\"],\\\"OX6vme\\\":[\\\"Authenticate\\\"],\\\"yIVrHZ\\\":[\\\"Authorize\\\"],\\\"iH8pgl\\\":[\\\"Back\\\"],\\\"4Rgp24\\\":[\\\"Between \\\",[\\\"minLength\\\"],\\\" and \\\",[\\\"maxLength\\\"],\\\" characters\\\"],\\\"/aj5l4\\\":[\\\"By clicking <0>Authorize</0>, you allow this application to perform the following actions in accordance with their <1>terms of service</1> and <2>privacy policy</2>:\\\"],\\\"mBUXx0\\\":[\\\"By creating an account you agree to the \\\",[\\\"0\\\"],\\\" and the \\\",[\\\"1\\\"],\\\" of this service.\\\"],\\\"dEgA5A\\\":[\\\"Cancel\\\"],\\\"B+Yy3b\\\":[\\\"Check your \\\",[\\\"0\\\"],\\\" email for a login code and enter it here.\\\"],\\\"khEQ02\\\":[\\\"Choose a username\\\"],\\\"EWPtMO\\\":[\\\"Code\\\"],\\\"7VpPHA\\\":[\\\"Confirm\\\"],\\\"HaGV2g\\\":[\\\"Confirm your password to continue\\\"],\\\"ioZOzk\\\":[\\\"Confirmation code\\\"],\\\"mpt9T+\\\":[\\\"Create a new account\\\"],\\\"IS0nrP\\\":[\\\"Create Account\\\"],\\\"54JiGG\\\":[\\\"Deny access\\\"],\\\"Nu4oKW\\\":[\\\"Description\\\"],\\\"O3oNi5\\\":[\\\"Email\\\"],\\\"ATGYL1\\\":[\\\"Email address\\\"],\\\"3tOlz6\\\":[\\\"Enter a password\\\"],\\\"xg/UcZ\\\":[\\\"Enter the code you received to reset your password.\\\"],\\\"cHrOqs\\\":[\\\"Enter the email you used to create your account. We'll send you a \\\\\\\"reset code\\\\\\\" so you can set a new password.\\\"],\\\"xRPn3U\\\":[\\\"Enter your email address\\\"],\\\"0StR7t\\\":[\\\"Enter your new password\\\"],\\\"NgaR6B\\\":[\\\"Enter your password\\\"],\\\"T0KLp4\\\":[\\\"Enter your username and password\\\"],\\\"SlfejT\\\":[\\\"Error\\\"],\\\"/Ltc/k\\\":[\\\"Extra\\\"],\\\"dn8X5t\\\":[\\\"Forgot Password\\\"],\\\"F4OP4y\\\":[\\\"Forgot?\\\"],\\\"QdVx1C\\\":[\\\"Grant access to your <0>\\\",[\\\"0\\\"],\\\"</0> account\\\"],\\\"87VTIH\\\":[\\\"Having trouble? <0>Contact support</0>\\\"],\\\"vLyv1R\\\":[\\\"Hide\\\"],\\\"i0qMbr\\\":[\\\"Home\\\"],\\\"sJGljQ\\\":[\\\"Identifier\\\"],\\\"vHJQ4A\\\":[\\\"Interface language selector\\\"],\\\"JHB/Ky\\\":[\\\"Invalid\\\"],\\\"6KlkHI\\\":[\\\"Invite code\\\"],\\\"Esfg1M\\\":[\\\"Let's get your password reset!\\\"],\\\"UCOd1e\\\":[\\\"Login complete\\\"],\\\"cR9UpQ\\\":[\\\"Login to account that is not listed\\\"],\\\"0hTJM+\\\":[\\\"Looks like \\\",[\\\"example\\\"]],\\\"huXYDE\\\":[\\\"Make visible\\\"],\\\"VU3Nrn\\\":[\\\"Missing\\\"],\\\"dvYuhh\\\":[\\\"Moderate\\\"],\\\"6YtxFj\\\":[\\\"Name\\\"],\\\"/nT6AE\\\":[\\\"New password\\\"],\\\"hXzOVo\\\":[\\\"Next\\\"],\\\"UaXeX3\\\":[\\\"Okay\\\"],\\\"yDlXDJ\\\":[\\\"Only letters, numbers, and hyphens\\\"],\\\"8ZsakT\\\":[\\\"Password\\\"],\\\"osAB4a\\\":[\\\"Password strength\\\"],\\\"xfNKwI\\\":[\\\"Password strength indicator\\\"],\\\"fSy6T1\\\":[\\\"Password Updated\\\"],\\\"DKeVgZ\\\":[\\\"Password updated!\\\"],\\\"5CqSPX\\\":[\\\"Password with at least \\\",[\\\"MIN_PASSWORD_LENGTH\\\"],\\\" characters\\\"],\\\"+Z2ZNt\\\":[\\\"Please verify the domain name of the website before entering your password. Never enter your password on a domain you do not trust.\\\"],\\\"LcET2C\\\":[\\\"Privacy Policy\\\"],\\\"1TxdLU\\\":[\\\"Remember this account on this device\\\"],\\\"c7cY3z\\\":[\\\"Requested permissions\\\"],\\\"vJgYMA\\\":[\\\"Reset code\\\"],\\\"KbS2K9\\\":[\\\"Reset Password\\\"],\\\"slOprG\\\":[\\\"Reset your password\\\"],\\\"HB+TbB\\\":[\\\"Select domain\\\"],\\\"o3dwub\\\":[\\\"Select from an existing account\\\"],\\\"CqO9qC\\\":[\\\"Session\\\"],\\\"5lWFkC\\\":[\\\"Sign in\\\"],\\\"N9o7n5\\\":[\\\"Sign in as \\\",[\\\"0\\\"]],\\\"FT1MVS\\\":[\\\"Sign in as...\\\"],\\\"e+RpCP\\\":[\\\"Sign up\\\"],\\\"BEx8rG\\\":[\\\"Step \\\",[\\\"currentPosition\\\"],\\\" of \\\",[\\\"count\\\"]],\\\"LLx/nr\\\":[\\\"Strong\\\"],\\\"hQRttt\\\":[\\\"Submit\\\"],\\\"XYLcNv\\\":[\\\"Support\\\"],\\\"xowcRf\\\":[\\\"Terms of Service\\\"],\\\"D00bHj\\\":[\\\"That handle cannot be used\\\"],\\\"qDdKKD\\\":[\\\"The domain name is not allowed\\\"],\\\"we0QGx\\\":[\\\"The handle contains inappropriate language\\\"],\\\"kPGuFg\\\":[\\\"The handle is already in use\\\"],\\\"LSPrK4\\\":[\\\"The handle is invalid\\\"],\\\"SZKM0t\\\":[\\\"This email is already used\\\"],\\\"T61uiW\\\":[\\\"This handle is reserved\\\"],\\\"5OVfoe\\\":[\\\"This sign-in session has expired\\\"],\\\"LX2sHe\\\":[\\\"Type your desired username\\\"],\\\"Jja+Vn\\\":[\\\"Unexpected server response\\\"],\\\"BWM1dL\\\":[\\\"Uniquely identify you\\\"],\\\"nZx9mr\\\":[\\\"Username or email address\\\"],\\\"nfagfM\\\":[\\\"Valid\\\"],\\\"86GEtW\\\":[\\\"Valid email address or username\\\"],\\\"aIar4b\\\":[\\\"Verify you are human\\\"],\\\"r6y+jM\\\":[\\\"Warning\\\"],\\\"qjBGxf\\\":[\\\"We're so excited to have you join us!\\\"],\\\"9ls/Vs\\\":[\\\"Weak\\\"],\\\"jSVjfa\\\":[\\\"Wrong identifier or password\\\"],\\\"qq6QQ5\\\":[\\\"You are being redirected...\\\"],\\\"B9VwbO\\\":[\\\"You can change this username to any domain name you control after your account is set up.\\\"],\\\"67nRLM\\\":[\\\"You can now sign in with your new password.\\\"],\\\"imRJNy\\\":[\\\"You will receive an email with a \\\\\\\"reset code\\\\\\\". Enter that code here then enter your new password.\\\"],\\\"gdRnT7\\\":[\\\"Your account\\\"],\\\"r/b/p8\\\":[\\\"Your full username will be: \\\",[\\\"0\\\"]],\\\"+qGdcW\\\":[\\\"Your password has been updated!\\\"]}\")as Messages;"],"names":["messages","JSON","parse"],"mappings":"AAAuEA,MAAAA,QAAAA,CAASC,IAAKC,CAAAA,KAAK,CAAC,+yIAAiyJ;;;;"}
@@ -1,4 +0,0 @@
1
- const messages=JSON.parse('{"BVbdlE":["<0/> is asking for permission to access your account (<1/>)."],"4blS0m":["2FA Confirmation"],"S90jaV":["A second authentication factor is required"],"myiH7A":["Access your account data (except chat messages)"],"kJrqQq":["Access your chat messages"],"AeXO77":["Account"],"FTT4a4":["Already have a code?"],"eYNzrj":["An application on your device"],"vW+T+d":["An unknown error occurred"],"+TaG50":["Another account"],"OX6vme":["Authenticate"],"yIVrHZ":["Authorize"],"iH8pgl":["Back"],"4Rgp24":["Between ",["minLength"]," and ",["maxLength"]," characters"],"/aj5l4":["By clicking <0>Authorize</0>, you allow this application to perform the following actions in accordance with their <1>terms of service</1> and <2>privacy policy</2>:"],"mBUXx0":["By creating an account you agree to the ",["0"]," and the ",["1"]," of this service."],"dEgA5A":["Cancel"],"B+Yy3b":["Check your ",["0"]," email for a login code and enter it here."],"khEQ02":["Choose a username"],"EWPtMO":["Code"],"7VpPHA":["Confirm"],"HaGV2g":["Confirm your password to continue"],"ioZOzk":["Confirmation code"],"mpt9T+":["Create a new account"],"IS0nrP":["Create Account"],"54JiGG":["Deny access"],"Nu4oKW":["Description"],"O3oNi5":["Email"],"ATGYL1":["Email address"],"3tOlz6":["Enter a password"],"xg/UcZ":["Enter the code you received to reset your password."],"cHrOqs":["Enter the email you used to create your account. We\'ll send you a \\"reset code\\" so you can set a new password."],"xRPn3U":["Enter your email address"],"0StR7t":["Enter your new password"],"NgaR6B":["Enter your password"],"T0KLp4":["Enter your username and password"],"SlfejT":["Error"],"/Ltc/k":["Extra"],"dn8X5t":["Forgot Password"],"F4OP4y":["Forgot?"],"QdVx1C":["Grant access to your <0>",["0"],"</0> account"],"87VTIH":["Having trouble? <0>Contact support</0>"],"vLyv1R":["Hide"],"i0qMbr":["Home"],"sJGljQ":["Identifier"],"vHJQ4A":["Interface language selector"],"JHB/Ky":["Invalid"],"6KlkHI":["Invite code"],"Esfg1M":["Let\'s get your password reset!"],"UCOd1e":["Login complete"],"cR9UpQ":["Login to account that is not listed"],"0hTJM+":["Looks like ",["example"]],"huXYDE":["Make visible"],"VU3Nrn":["Missing"],"dvYuhh":["Moderate"],"6YtxFj":["Name"],"/nT6AE":["New password"],"hXzOVo":["Next"],"UaXeX3":["Okay"],"yDlXDJ":["Only letters, numbers, and hyphens"],"8ZsakT":["Password"],"osAB4a":["Password strength"],"xfNKwI":["Password strength indicator"],"fSy6T1":["Password Updated"],"DKeVgZ":["Password updated!"],"5CqSPX":["Password with at least ",["MIN_PASSWORD_LENGTH"]," characters"],"+Z2ZNt":["Please verify the domain name of the website before entering your password. Never enter your password on a domain you do not trust."],"LcET2C":["Privacy Policy"],"1TxdLU":["Remember this account on this device"],"c7cY3z":["Requested permissions"],"vJgYMA":["Reset code"],"KbS2K9":["Reset Password"],"slOprG":["Reset your password"],"HB+TbB":["Select domain"],"o3dwub":["Select from an existing account"],"CqO9qC":["Session"],"5lWFkC":["Sign in"],"N9o7n5":["Sign in as ",["0"]],"FT1MVS":["Sign in as..."],"e+RpCP":["Sign up"],"BEx8rG":["Step ",["currentPosition"]," of ",["count"]],"LLx/nr":["Strong"],"hQRttt":["Submit"],"XYLcNv":["Support"],"xowcRf":["Terms of Service"],"D00bHj":["That handle cannot be used"],"qDdKKD":["The domain name is not allowed"],"we0QGx":["The handle contains inappropriate language"],"kPGuFg":["The handle is already in use"],"LSPrK4":["The handle is invalid"],"SZKM0t":["This email is already used"],"T61uiW":["This handle is reserved"],"5OVfoe":["This sign-in session has expired"],"LX2sHe":["Type your desired username"],"Jja+Vn":["Unexpected server response"],"BWM1dL":["Uniquely identify you"],"nZx9mr":["Username or email address"],"nfagfM":["Valid"],"86GEtW":["Valid email address or username"],"aIar4b":["Verify you are human"],"r6y+jM":["Warning"],"qjBGxf":["We\'re so excited to have you join us!"],"9ls/Vs":["Weak"],"jSVjfa":["Wrong identifier or password"],"qq6QQ5":["You are being redirected..."],"B9VwbO":["You can change this username to any domain name you control after your account is set up."],"67nRLM":["You can now sign in with your new password."],"imRJNy":["You will receive an email with a \\"reset code\\". Enter that code here then enter your new password."],"gdRnT7":["Your account"],"r/b/p8":["Your full username will be: ",["0"]],"+qGdcW":["Your password has been updated!"]}');
2
-
3
- export { messages };
4
- //# sourceMappingURL=messages-BUjKj_UJ.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"messages-BUjKj_UJ.js","sources":["../../../src/assets/app/locales/id/messages.ts"],"sourcesContent":["/*eslint-disable*/import type{Messages}from\"@lingui/core\";export const messages=JSON.parse(\"{\\\"BVbdlE\\\":[\\\"<0/> is asking for permission to access your account (<1/>).\\\"],\\\"4blS0m\\\":[\\\"2FA Confirmation\\\"],\\\"S90jaV\\\":[\\\"A second authentication factor is required\\\"],\\\"myiH7A\\\":[\\\"Access your account data (except chat messages)\\\"],\\\"kJrqQq\\\":[\\\"Access your chat messages\\\"],\\\"AeXO77\\\":[\\\"Account\\\"],\\\"FTT4a4\\\":[\\\"Already have a code?\\\"],\\\"eYNzrj\\\":[\\\"An application on your device\\\"],\\\"vW+T+d\\\":[\\\"An unknown error occurred\\\"],\\\"+TaG50\\\":[\\\"Another account\\\"],\\\"OX6vme\\\":[\\\"Authenticate\\\"],\\\"yIVrHZ\\\":[\\\"Authorize\\\"],\\\"iH8pgl\\\":[\\\"Back\\\"],\\\"4Rgp24\\\":[\\\"Between \\\",[\\\"minLength\\\"],\\\" and \\\",[\\\"maxLength\\\"],\\\" characters\\\"],\\\"/aj5l4\\\":[\\\"By clicking <0>Authorize</0>, you allow this application to perform the following actions in accordance with their <1>terms of service</1> and <2>privacy policy</2>:\\\"],\\\"mBUXx0\\\":[\\\"By creating an account you agree to the \\\",[\\\"0\\\"],\\\" and the \\\",[\\\"1\\\"],\\\" of this service.\\\"],\\\"dEgA5A\\\":[\\\"Cancel\\\"],\\\"B+Yy3b\\\":[\\\"Check your \\\",[\\\"0\\\"],\\\" email for a login code and enter it here.\\\"],\\\"khEQ02\\\":[\\\"Choose a username\\\"],\\\"EWPtMO\\\":[\\\"Code\\\"],\\\"7VpPHA\\\":[\\\"Confirm\\\"],\\\"HaGV2g\\\":[\\\"Confirm your password to continue\\\"],\\\"ioZOzk\\\":[\\\"Confirmation code\\\"],\\\"mpt9T+\\\":[\\\"Create a new account\\\"],\\\"IS0nrP\\\":[\\\"Create Account\\\"],\\\"54JiGG\\\":[\\\"Deny access\\\"],\\\"Nu4oKW\\\":[\\\"Description\\\"],\\\"O3oNi5\\\":[\\\"Email\\\"],\\\"ATGYL1\\\":[\\\"Email address\\\"],\\\"3tOlz6\\\":[\\\"Enter a password\\\"],\\\"xg/UcZ\\\":[\\\"Enter the code you received to reset your password.\\\"],\\\"cHrOqs\\\":[\\\"Enter the email you used to create your account. We'll send you a \\\\\\\"reset code\\\\\\\" so you can set a new password.\\\"],\\\"xRPn3U\\\":[\\\"Enter your email address\\\"],\\\"0StR7t\\\":[\\\"Enter your new password\\\"],\\\"NgaR6B\\\":[\\\"Enter your password\\\"],\\\"T0KLp4\\\":[\\\"Enter your username and password\\\"],\\\"SlfejT\\\":[\\\"Error\\\"],\\\"/Ltc/k\\\":[\\\"Extra\\\"],\\\"dn8X5t\\\":[\\\"Forgot Password\\\"],\\\"F4OP4y\\\":[\\\"Forgot?\\\"],\\\"QdVx1C\\\":[\\\"Grant access to your <0>\\\",[\\\"0\\\"],\\\"</0> account\\\"],\\\"87VTIH\\\":[\\\"Having trouble? <0>Contact support</0>\\\"],\\\"vLyv1R\\\":[\\\"Hide\\\"],\\\"i0qMbr\\\":[\\\"Home\\\"],\\\"sJGljQ\\\":[\\\"Identifier\\\"],\\\"vHJQ4A\\\":[\\\"Interface language selector\\\"],\\\"JHB/Ky\\\":[\\\"Invalid\\\"],\\\"6KlkHI\\\":[\\\"Invite code\\\"],\\\"Esfg1M\\\":[\\\"Let's get your password reset!\\\"],\\\"UCOd1e\\\":[\\\"Login complete\\\"],\\\"cR9UpQ\\\":[\\\"Login to account that is not listed\\\"],\\\"0hTJM+\\\":[\\\"Looks like \\\",[\\\"example\\\"]],\\\"huXYDE\\\":[\\\"Make visible\\\"],\\\"VU3Nrn\\\":[\\\"Missing\\\"],\\\"dvYuhh\\\":[\\\"Moderate\\\"],\\\"6YtxFj\\\":[\\\"Name\\\"],\\\"/nT6AE\\\":[\\\"New password\\\"],\\\"hXzOVo\\\":[\\\"Next\\\"],\\\"UaXeX3\\\":[\\\"Okay\\\"],\\\"yDlXDJ\\\":[\\\"Only letters, numbers, and hyphens\\\"],\\\"8ZsakT\\\":[\\\"Password\\\"],\\\"osAB4a\\\":[\\\"Password strength\\\"],\\\"xfNKwI\\\":[\\\"Password strength indicator\\\"],\\\"fSy6T1\\\":[\\\"Password Updated\\\"],\\\"DKeVgZ\\\":[\\\"Password updated!\\\"],\\\"5CqSPX\\\":[\\\"Password with at least \\\",[\\\"MIN_PASSWORD_LENGTH\\\"],\\\" characters\\\"],\\\"+Z2ZNt\\\":[\\\"Please verify the domain name of the website before entering your password. Never enter your password on a domain you do not trust.\\\"],\\\"LcET2C\\\":[\\\"Privacy Policy\\\"],\\\"1TxdLU\\\":[\\\"Remember this account on this device\\\"],\\\"c7cY3z\\\":[\\\"Requested permissions\\\"],\\\"vJgYMA\\\":[\\\"Reset code\\\"],\\\"KbS2K9\\\":[\\\"Reset Password\\\"],\\\"slOprG\\\":[\\\"Reset your password\\\"],\\\"HB+TbB\\\":[\\\"Select domain\\\"],\\\"o3dwub\\\":[\\\"Select from an existing account\\\"],\\\"CqO9qC\\\":[\\\"Session\\\"],\\\"5lWFkC\\\":[\\\"Sign in\\\"],\\\"N9o7n5\\\":[\\\"Sign in as \\\",[\\\"0\\\"]],\\\"FT1MVS\\\":[\\\"Sign in as...\\\"],\\\"e+RpCP\\\":[\\\"Sign up\\\"],\\\"BEx8rG\\\":[\\\"Step \\\",[\\\"currentPosition\\\"],\\\" of \\\",[\\\"count\\\"]],\\\"LLx/nr\\\":[\\\"Strong\\\"],\\\"hQRttt\\\":[\\\"Submit\\\"],\\\"XYLcNv\\\":[\\\"Support\\\"],\\\"xowcRf\\\":[\\\"Terms of Service\\\"],\\\"D00bHj\\\":[\\\"That handle cannot be used\\\"],\\\"qDdKKD\\\":[\\\"The domain name is not allowed\\\"],\\\"we0QGx\\\":[\\\"The handle contains inappropriate language\\\"],\\\"kPGuFg\\\":[\\\"The handle is already in use\\\"],\\\"LSPrK4\\\":[\\\"The handle is invalid\\\"],\\\"SZKM0t\\\":[\\\"This email is already used\\\"],\\\"T61uiW\\\":[\\\"This handle is reserved\\\"],\\\"5OVfoe\\\":[\\\"This sign-in session has expired\\\"],\\\"LX2sHe\\\":[\\\"Type your desired username\\\"],\\\"Jja+Vn\\\":[\\\"Unexpected server response\\\"],\\\"BWM1dL\\\":[\\\"Uniquely identify you\\\"],\\\"nZx9mr\\\":[\\\"Username or email address\\\"],\\\"nfagfM\\\":[\\\"Valid\\\"],\\\"86GEtW\\\":[\\\"Valid email address or username\\\"],\\\"aIar4b\\\":[\\\"Verify you are human\\\"],\\\"r6y+jM\\\":[\\\"Warning\\\"],\\\"qjBGxf\\\":[\\\"We're so excited to have you join us!\\\"],\\\"9ls/Vs\\\":[\\\"Weak\\\"],\\\"jSVjfa\\\":[\\\"Wrong identifier or password\\\"],\\\"qq6QQ5\\\":[\\\"You are being redirected...\\\"],\\\"B9VwbO\\\":[\\\"You can change this username to any domain name you control after your account is set up.\\\"],\\\"67nRLM\\\":[\\\"You can now sign in with your new password.\\\"],\\\"imRJNy\\\":[\\\"You will receive an email with a \\\\\\\"reset code\\\\\\\". Enter that code here then enter your new password.\\\"],\\\"gdRnT7\\\":[\\\"Your account\\\"],\\\"r/b/p8\\\":[\\\"Your full username will be: \\\",[\\\"0\\\"]],\\\"+qGdcW\\\":[\\\"Your password has been updated!\\\"]}\")as Messages;"],"names":["messages","JSON","parse"],"mappings":"AAAuEA,MAAAA,QAAAA,CAASC,IAAKC,CAAAA,KAAK,CAAC,+yIAAiyJ;;;;"}
@@ -1,4 +0,0 @@
1
- const messages=JSON.parse('{"BVbdlE":["<0/> is asking for permission to access your account (<1/>)."],"4blS0m":["2FA Confirmation"],"S90jaV":["A second authentication factor is required"],"myiH7A":["Access your account data (except chat messages)"],"kJrqQq":["Access your chat messages"],"AeXO77":["Account"],"FTT4a4":["Already have a code?"],"eYNzrj":["An application on your device"],"vW+T+d":["An unknown error occurred"],"+TaG50":["Another account"],"OX6vme":["Authenticate"],"yIVrHZ":["Authorize"],"iH8pgl":["Back"],"4Rgp24":["Between ",["minLength"]," and ",["maxLength"]," characters"],"/aj5l4":["By clicking <0>Authorize</0>, you allow this application to perform the following actions in accordance with their <1>terms of service</1> and <2>privacy policy</2>:"],"mBUXx0":["By creating an account you agree to the ",["0"]," and the ",["1"]," of this service."],"dEgA5A":["Cancel"],"B+Yy3b":["Check your ",["0"]," email for a login code and enter it here."],"khEQ02":["Choose a username"],"EWPtMO":["Code"],"7VpPHA":["Confirm"],"HaGV2g":["Confirm your password to continue"],"ioZOzk":["Confirmation code"],"mpt9T+":["Create a new account"],"IS0nrP":["Create Account"],"54JiGG":["Deny access"],"Nu4oKW":["Description"],"O3oNi5":["Email"],"ATGYL1":["Email address"],"3tOlz6":["Enter a password"],"xg/UcZ":["Enter the code you received to reset your password."],"cHrOqs":["Enter the email you used to create your account. We\'ll send you a \\"reset code\\" so you can set a new password."],"xRPn3U":["Enter your email address"],"0StR7t":["Enter your new password"],"NgaR6B":["Enter your password"],"T0KLp4":["Enter your username and password"],"SlfejT":["Error"],"/Ltc/k":["Extra"],"dn8X5t":["Forgot Password"],"F4OP4y":["Forgot?"],"QdVx1C":["Grant access to your <0>",["0"],"</0> account"],"87VTIH":["Having trouble? <0>Contact support</0>"],"vLyv1R":["Hide"],"i0qMbr":["Home"],"sJGljQ":["Identifier"],"vHJQ4A":["Interface language selector"],"JHB/Ky":["Invalid"],"6KlkHI":["Invite code"],"Esfg1M":["Let\'s get your password reset!"],"UCOd1e":["Login complete"],"cR9UpQ":["Login to account that is not listed"],"0hTJM+":["Looks like ",["example"]],"huXYDE":["Make visible"],"VU3Nrn":["Missing"],"dvYuhh":["Moderate"],"6YtxFj":["Name"],"/nT6AE":["New password"],"hXzOVo":["Next"],"UaXeX3":["Okay"],"yDlXDJ":["Only letters, numbers, and hyphens"],"8ZsakT":["Password"],"osAB4a":["Password strength"],"xfNKwI":["Password strength indicator"],"fSy6T1":["Password Updated"],"DKeVgZ":["Password updated!"],"5CqSPX":["Password with at least ",["MIN_PASSWORD_LENGTH"]," characters"],"+Z2ZNt":["Please verify the domain name of the website before entering your password. Never enter your password on a domain you do not trust."],"LcET2C":["Privacy Policy"],"1TxdLU":["Remember this account on this device"],"c7cY3z":["Requested permissions"],"vJgYMA":["Reset code"],"KbS2K9":["Reset Password"],"slOprG":["Reset your password"],"HB+TbB":["Select domain"],"o3dwub":["Select from an existing account"],"CqO9qC":["Session"],"5lWFkC":["Sign in"],"N9o7n5":["Sign in as ",["0"]],"FT1MVS":["Sign in as..."],"e+RpCP":["Sign up"],"BEx8rG":["Step ",["currentPosition"]," of ",["count"]],"LLx/nr":["Strong"],"hQRttt":["Submit"],"XYLcNv":["Support"],"xowcRf":["Terms of Service"],"D00bHj":["That handle cannot be used"],"qDdKKD":["The domain name is not allowed"],"we0QGx":["The handle contains inappropriate language"],"kPGuFg":["The handle is already in use"],"LSPrK4":["The handle is invalid"],"SZKM0t":["This email is already used"],"T61uiW":["This handle is reserved"],"5OVfoe":["This sign-in session has expired"],"LX2sHe":["Type your desired username"],"Jja+Vn":["Unexpected server response"],"BWM1dL":["Uniquely identify you"],"nZx9mr":["Username or email address"],"nfagfM":["Valid"],"86GEtW":["Valid email address or username"],"aIar4b":["Verify you are human"],"r6y+jM":["Warning"],"qjBGxf":["We\'re so excited to have you join us!"],"9ls/Vs":["Weak"],"jSVjfa":["Wrong identifier or password"],"qq6QQ5":["You are being redirected..."],"B9VwbO":["You can change this username to any domain name you control after your account is set up."],"67nRLM":["You can now sign in with your new password."],"imRJNy":["You will receive an email with a \\"reset code\\". Enter that code here then enter your new password."],"gdRnT7":["Your account"],"r/b/p8":["Your full username will be: ",["0"]],"+qGdcW":["Your password has been updated!"]}');
2
-
3
- export { messages };
4
- //# sourceMappingURL=messages-BWIQa8fO.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"messages-BWIQa8fO.js","sources":["../../../src/assets/app/locales/eu/messages.ts"],"sourcesContent":["/*eslint-disable*/import type{Messages}from\"@lingui/core\";export const messages=JSON.parse(\"{\\\"BVbdlE\\\":[\\\"<0/> is asking for permission to access your account (<1/>).\\\"],\\\"4blS0m\\\":[\\\"2FA Confirmation\\\"],\\\"S90jaV\\\":[\\\"A second authentication factor is required\\\"],\\\"myiH7A\\\":[\\\"Access your account data (except chat messages)\\\"],\\\"kJrqQq\\\":[\\\"Access your chat messages\\\"],\\\"AeXO77\\\":[\\\"Account\\\"],\\\"FTT4a4\\\":[\\\"Already have a code?\\\"],\\\"eYNzrj\\\":[\\\"An application on your device\\\"],\\\"vW+T+d\\\":[\\\"An unknown error occurred\\\"],\\\"+TaG50\\\":[\\\"Another account\\\"],\\\"OX6vme\\\":[\\\"Authenticate\\\"],\\\"yIVrHZ\\\":[\\\"Authorize\\\"],\\\"iH8pgl\\\":[\\\"Back\\\"],\\\"4Rgp24\\\":[\\\"Between \\\",[\\\"minLength\\\"],\\\" and \\\",[\\\"maxLength\\\"],\\\" characters\\\"],\\\"/aj5l4\\\":[\\\"By clicking <0>Authorize</0>, you allow this application to perform the following actions in accordance with their <1>terms of service</1> and <2>privacy policy</2>:\\\"],\\\"mBUXx0\\\":[\\\"By creating an account you agree to the \\\",[\\\"0\\\"],\\\" and the \\\",[\\\"1\\\"],\\\" of this service.\\\"],\\\"dEgA5A\\\":[\\\"Cancel\\\"],\\\"B+Yy3b\\\":[\\\"Check your \\\",[\\\"0\\\"],\\\" email for a login code and enter it here.\\\"],\\\"khEQ02\\\":[\\\"Choose a username\\\"],\\\"EWPtMO\\\":[\\\"Code\\\"],\\\"7VpPHA\\\":[\\\"Confirm\\\"],\\\"HaGV2g\\\":[\\\"Confirm your password to continue\\\"],\\\"ioZOzk\\\":[\\\"Confirmation code\\\"],\\\"mpt9T+\\\":[\\\"Create a new account\\\"],\\\"IS0nrP\\\":[\\\"Create Account\\\"],\\\"54JiGG\\\":[\\\"Deny access\\\"],\\\"Nu4oKW\\\":[\\\"Description\\\"],\\\"O3oNi5\\\":[\\\"Email\\\"],\\\"ATGYL1\\\":[\\\"Email address\\\"],\\\"3tOlz6\\\":[\\\"Enter a password\\\"],\\\"xg/UcZ\\\":[\\\"Enter the code you received to reset your password.\\\"],\\\"cHrOqs\\\":[\\\"Enter the email you used to create your account. We'll send you a \\\\\\\"reset code\\\\\\\" so you can set a new password.\\\"],\\\"xRPn3U\\\":[\\\"Enter your email address\\\"],\\\"0StR7t\\\":[\\\"Enter your new password\\\"],\\\"NgaR6B\\\":[\\\"Enter your password\\\"],\\\"T0KLp4\\\":[\\\"Enter your username and password\\\"],\\\"SlfejT\\\":[\\\"Error\\\"],\\\"/Ltc/k\\\":[\\\"Extra\\\"],\\\"dn8X5t\\\":[\\\"Forgot Password\\\"],\\\"F4OP4y\\\":[\\\"Forgot?\\\"],\\\"QdVx1C\\\":[\\\"Grant access to your <0>\\\",[\\\"0\\\"],\\\"</0> account\\\"],\\\"87VTIH\\\":[\\\"Having trouble? <0>Contact support</0>\\\"],\\\"vLyv1R\\\":[\\\"Hide\\\"],\\\"i0qMbr\\\":[\\\"Home\\\"],\\\"sJGljQ\\\":[\\\"Identifier\\\"],\\\"vHJQ4A\\\":[\\\"Interface language selector\\\"],\\\"JHB/Ky\\\":[\\\"Invalid\\\"],\\\"6KlkHI\\\":[\\\"Invite code\\\"],\\\"Esfg1M\\\":[\\\"Let's get your password reset!\\\"],\\\"UCOd1e\\\":[\\\"Login complete\\\"],\\\"cR9UpQ\\\":[\\\"Login to account that is not listed\\\"],\\\"0hTJM+\\\":[\\\"Looks like \\\",[\\\"example\\\"]],\\\"huXYDE\\\":[\\\"Make visible\\\"],\\\"VU3Nrn\\\":[\\\"Missing\\\"],\\\"dvYuhh\\\":[\\\"Moderate\\\"],\\\"6YtxFj\\\":[\\\"Name\\\"],\\\"/nT6AE\\\":[\\\"New password\\\"],\\\"hXzOVo\\\":[\\\"Next\\\"],\\\"UaXeX3\\\":[\\\"Okay\\\"],\\\"yDlXDJ\\\":[\\\"Only letters, numbers, and hyphens\\\"],\\\"8ZsakT\\\":[\\\"Password\\\"],\\\"osAB4a\\\":[\\\"Password strength\\\"],\\\"xfNKwI\\\":[\\\"Password strength indicator\\\"],\\\"fSy6T1\\\":[\\\"Password Updated\\\"],\\\"DKeVgZ\\\":[\\\"Password updated!\\\"],\\\"5CqSPX\\\":[\\\"Password with at least \\\",[\\\"MIN_PASSWORD_LENGTH\\\"],\\\" characters\\\"],\\\"+Z2ZNt\\\":[\\\"Please verify the domain name of the website before entering your password. Never enter your password on a domain you do not trust.\\\"],\\\"LcET2C\\\":[\\\"Privacy Policy\\\"],\\\"1TxdLU\\\":[\\\"Remember this account on this device\\\"],\\\"c7cY3z\\\":[\\\"Requested permissions\\\"],\\\"vJgYMA\\\":[\\\"Reset code\\\"],\\\"KbS2K9\\\":[\\\"Reset Password\\\"],\\\"slOprG\\\":[\\\"Reset your password\\\"],\\\"HB+TbB\\\":[\\\"Select domain\\\"],\\\"o3dwub\\\":[\\\"Select from an existing account\\\"],\\\"CqO9qC\\\":[\\\"Session\\\"],\\\"5lWFkC\\\":[\\\"Sign in\\\"],\\\"N9o7n5\\\":[\\\"Sign in as \\\",[\\\"0\\\"]],\\\"FT1MVS\\\":[\\\"Sign in as...\\\"],\\\"e+RpCP\\\":[\\\"Sign up\\\"],\\\"BEx8rG\\\":[\\\"Step \\\",[\\\"currentPosition\\\"],\\\" of \\\",[\\\"count\\\"]],\\\"LLx/nr\\\":[\\\"Strong\\\"],\\\"hQRttt\\\":[\\\"Submit\\\"],\\\"XYLcNv\\\":[\\\"Support\\\"],\\\"xowcRf\\\":[\\\"Terms of Service\\\"],\\\"D00bHj\\\":[\\\"That handle cannot be used\\\"],\\\"qDdKKD\\\":[\\\"The domain name is not allowed\\\"],\\\"we0QGx\\\":[\\\"The handle contains inappropriate language\\\"],\\\"kPGuFg\\\":[\\\"The handle is already in use\\\"],\\\"LSPrK4\\\":[\\\"The handle is invalid\\\"],\\\"SZKM0t\\\":[\\\"This email is already used\\\"],\\\"T61uiW\\\":[\\\"This handle is reserved\\\"],\\\"5OVfoe\\\":[\\\"This sign-in session has expired\\\"],\\\"LX2sHe\\\":[\\\"Type your desired username\\\"],\\\"Jja+Vn\\\":[\\\"Unexpected server response\\\"],\\\"BWM1dL\\\":[\\\"Uniquely identify you\\\"],\\\"nZx9mr\\\":[\\\"Username or email address\\\"],\\\"nfagfM\\\":[\\\"Valid\\\"],\\\"86GEtW\\\":[\\\"Valid email address or username\\\"],\\\"aIar4b\\\":[\\\"Verify you are human\\\"],\\\"r6y+jM\\\":[\\\"Warning\\\"],\\\"qjBGxf\\\":[\\\"We're so excited to have you join us!\\\"],\\\"9ls/Vs\\\":[\\\"Weak\\\"],\\\"jSVjfa\\\":[\\\"Wrong identifier or password\\\"],\\\"qq6QQ5\\\":[\\\"You are being redirected...\\\"],\\\"B9VwbO\\\":[\\\"You can change this username to any domain name you control after your account is set up.\\\"],\\\"67nRLM\\\":[\\\"You can now sign in with your new password.\\\"],\\\"imRJNy\\\":[\\\"You will receive an email with a \\\\\\\"reset code\\\\\\\". Enter that code here then enter your new password.\\\"],\\\"gdRnT7\\\":[\\\"Your account\\\"],\\\"r/b/p8\\\":[\\\"Your full username will be: \\\",[\\\"0\\\"]],\\\"+qGdcW\\\":[\\\"Your password has been updated!\\\"]}\")as Messages;"],"names":["messages","JSON","parse"],"mappings":"AAAuEA,MAAAA,QAAAA,CAASC,IAAKC,CAAAA,KAAK,CAAC,+yIAAiyJ;;;;"}
@@ -1,4 +0,0 @@
1
- const messages=JSON.parse('{"BVbdlE":["<0/> is asking for permission to access your account (<1/>)."],"4blS0m":["2FA Confirmation"],"S90jaV":["A second authentication factor is required"],"myiH7A":["Access your account data (except chat messages)"],"kJrqQq":["Access your chat messages"],"AeXO77":["Account"],"FTT4a4":["Already have a code?"],"eYNzrj":["An application on your device"],"vW+T+d":["An unknown error occurred"],"+TaG50":["Another account"],"OX6vme":["Authenticate"],"yIVrHZ":["Authorize"],"iH8pgl":["Back"],"4Rgp24":["Between ",["minLength"]," and ",["maxLength"]," characters"],"/aj5l4":["By clicking <0>Authorize</0>, you allow this application to perform the following actions in accordance with their <1>terms of service</1> and <2>privacy policy</2>:"],"mBUXx0":["By creating an account you agree to the ",["0"]," and the ",["1"]," of this service."],"dEgA5A":["Cancel"],"B+Yy3b":["Check your ",["0"]," email for a login code and enter it here."],"khEQ02":["Choose a username"],"EWPtMO":["Code"],"7VpPHA":["Confirm"],"HaGV2g":["Confirm your password to continue"],"ioZOzk":["Confirmation code"],"mpt9T+":["Create a new account"],"IS0nrP":["Create Account"],"54JiGG":["Deny access"],"Nu4oKW":["Description"],"O3oNi5":["Email"],"ATGYL1":["Email address"],"3tOlz6":["Enter a password"],"xg/UcZ":["Enter the code you received to reset your password."],"cHrOqs":["Enter the email you used to create your account. We\'ll send you a \\"reset code\\" so you can set a new password."],"xRPn3U":["Enter your email address"],"0StR7t":["Enter your new password"],"NgaR6B":["Enter your password"],"T0KLp4":["Enter your username and password"],"SlfejT":["Error"],"/Ltc/k":["Extra"],"dn8X5t":["Forgot Password"],"F4OP4y":["Forgot?"],"QdVx1C":["Grant access to your <0>",["0"],"</0> account"],"87VTIH":["Having trouble? <0>Contact support</0>"],"vLyv1R":["Hide"],"i0qMbr":["Home"],"sJGljQ":["Identifier"],"vHJQ4A":["Interface language selector"],"JHB/Ky":["Invalid"],"6KlkHI":["Invite code"],"Esfg1M":["Let\'s get your password reset!"],"UCOd1e":["Login complete"],"cR9UpQ":["Login to account that is not listed"],"0hTJM+":["Looks like ",["example"]],"huXYDE":["Make visible"],"VU3Nrn":["Missing"],"dvYuhh":["Moderate"],"6YtxFj":["Name"],"/nT6AE":["New password"],"hXzOVo":["Next"],"UaXeX3":["Okay"],"yDlXDJ":["Only letters, numbers, and hyphens"],"8ZsakT":["Password"],"osAB4a":["Password strength"],"xfNKwI":["Password strength indicator"],"fSy6T1":["Password Updated"],"DKeVgZ":["Password updated!"],"5CqSPX":["Password with at least ",["MIN_PASSWORD_LENGTH"]," characters"],"+Z2ZNt":["Please verify the domain name of the website before entering your password. Never enter your password on a domain you do not trust."],"LcET2C":["Privacy Policy"],"1TxdLU":["Remember this account on this device"],"c7cY3z":["Requested permissions"],"vJgYMA":["Reset code"],"KbS2K9":["Reset Password"],"slOprG":["Reset your password"],"HB+TbB":["Select domain"],"o3dwub":["Select from an existing account"],"CqO9qC":["Session"],"5lWFkC":["Sign in"],"N9o7n5":["Sign in as ",["0"]],"FT1MVS":["Sign in as..."],"e+RpCP":["Sign up"],"BEx8rG":["Step ",["currentPosition"]," of ",["count"]],"LLx/nr":["Strong"],"hQRttt":["Submit"],"XYLcNv":["Support"],"xowcRf":["Terms of Service"],"D00bHj":["That handle cannot be used"],"qDdKKD":["The domain name is not allowed"],"we0QGx":["The handle contains inappropriate language"],"kPGuFg":["The handle is already in use"],"LSPrK4":["The handle is invalid"],"SZKM0t":["This email is already used"],"T61uiW":["This handle is reserved"],"5OVfoe":["This sign-in session has expired"],"LX2sHe":["Type your desired username"],"Jja+Vn":["Unexpected server response"],"BWM1dL":["Uniquely identify you"],"nZx9mr":["Username or email address"],"nfagfM":["Valid"],"86GEtW":["Valid email address or username"],"aIar4b":["Verify you are human"],"r6y+jM":["Warning"],"qjBGxf":["We\'re so excited to have you join us!"],"9ls/Vs":["Weak"],"jSVjfa":["Wrong identifier or password"],"qq6QQ5":["You are being redirected..."],"B9VwbO":["You can change this username to any domain name you control after your account is set up."],"67nRLM":["You can now sign in with your new password."],"imRJNy":["You will receive an email with a \\"reset code\\". Enter that code here then enter your new password."],"gdRnT7":["Your account"],"r/b/p8":["Your full username will be: ",["0"]],"+qGdcW":["Your password has been updated!"]}');
2
-
3
- export { messages };
4
- //# sourceMappingURL=messages-BaNVb0bp.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"messages-BaNVb0bp.js","sources":["../../../src/assets/app/locales/hi/messages.ts"],"sourcesContent":["/*eslint-disable*/import type{Messages}from\"@lingui/core\";export const messages=JSON.parse(\"{\\\"BVbdlE\\\":[\\\"<0/> is asking for permission to access your account (<1/>).\\\"],\\\"4blS0m\\\":[\\\"2FA Confirmation\\\"],\\\"S90jaV\\\":[\\\"A second authentication factor is required\\\"],\\\"myiH7A\\\":[\\\"Access your account data (except chat messages)\\\"],\\\"kJrqQq\\\":[\\\"Access your chat messages\\\"],\\\"AeXO77\\\":[\\\"Account\\\"],\\\"FTT4a4\\\":[\\\"Already have a code?\\\"],\\\"eYNzrj\\\":[\\\"An application on your device\\\"],\\\"vW+T+d\\\":[\\\"An unknown error occurred\\\"],\\\"+TaG50\\\":[\\\"Another account\\\"],\\\"OX6vme\\\":[\\\"Authenticate\\\"],\\\"yIVrHZ\\\":[\\\"Authorize\\\"],\\\"iH8pgl\\\":[\\\"Back\\\"],\\\"4Rgp24\\\":[\\\"Between \\\",[\\\"minLength\\\"],\\\" and \\\",[\\\"maxLength\\\"],\\\" characters\\\"],\\\"/aj5l4\\\":[\\\"By clicking <0>Authorize</0>, you allow this application to perform the following actions in accordance with their <1>terms of service</1> and <2>privacy policy</2>:\\\"],\\\"mBUXx0\\\":[\\\"By creating an account you agree to the \\\",[\\\"0\\\"],\\\" and the \\\",[\\\"1\\\"],\\\" of this service.\\\"],\\\"dEgA5A\\\":[\\\"Cancel\\\"],\\\"B+Yy3b\\\":[\\\"Check your \\\",[\\\"0\\\"],\\\" email for a login code and enter it here.\\\"],\\\"khEQ02\\\":[\\\"Choose a username\\\"],\\\"EWPtMO\\\":[\\\"Code\\\"],\\\"7VpPHA\\\":[\\\"Confirm\\\"],\\\"HaGV2g\\\":[\\\"Confirm your password to continue\\\"],\\\"ioZOzk\\\":[\\\"Confirmation code\\\"],\\\"mpt9T+\\\":[\\\"Create a new account\\\"],\\\"IS0nrP\\\":[\\\"Create Account\\\"],\\\"54JiGG\\\":[\\\"Deny access\\\"],\\\"Nu4oKW\\\":[\\\"Description\\\"],\\\"O3oNi5\\\":[\\\"Email\\\"],\\\"ATGYL1\\\":[\\\"Email address\\\"],\\\"3tOlz6\\\":[\\\"Enter a password\\\"],\\\"xg/UcZ\\\":[\\\"Enter the code you received to reset your password.\\\"],\\\"cHrOqs\\\":[\\\"Enter the email you used to create your account. We'll send you a \\\\\\\"reset code\\\\\\\" so you can set a new password.\\\"],\\\"xRPn3U\\\":[\\\"Enter your email address\\\"],\\\"0StR7t\\\":[\\\"Enter your new password\\\"],\\\"NgaR6B\\\":[\\\"Enter your password\\\"],\\\"T0KLp4\\\":[\\\"Enter your username and password\\\"],\\\"SlfejT\\\":[\\\"Error\\\"],\\\"/Ltc/k\\\":[\\\"Extra\\\"],\\\"dn8X5t\\\":[\\\"Forgot Password\\\"],\\\"F4OP4y\\\":[\\\"Forgot?\\\"],\\\"QdVx1C\\\":[\\\"Grant access to your <0>\\\",[\\\"0\\\"],\\\"</0> account\\\"],\\\"87VTIH\\\":[\\\"Having trouble? <0>Contact support</0>\\\"],\\\"vLyv1R\\\":[\\\"Hide\\\"],\\\"i0qMbr\\\":[\\\"Home\\\"],\\\"sJGljQ\\\":[\\\"Identifier\\\"],\\\"vHJQ4A\\\":[\\\"Interface language selector\\\"],\\\"JHB/Ky\\\":[\\\"Invalid\\\"],\\\"6KlkHI\\\":[\\\"Invite code\\\"],\\\"Esfg1M\\\":[\\\"Let's get your password reset!\\\"],\\\"UCOd1e\\\":[\\\"Login complete\\\"],\\\"cR9UpQ\\\":[\\\"Login to account that is not listed\\\"],\\\"0hTJM+\\\":[\\\"Looks like \\\",[\\\"example\\\"]],\\\"huXYDE\\\":[\\\"Make visible\\\"],\\\"VU3Nrn\\\":[\\\"Missing\\\"],\\\"dvYuhh\\\":[\\\"Moderate\\\"],\\\"6YtxFj\\\":[\\\"Name\\\"],\\\"/nT6AE\\\":[\\\"New password\\\"],\\\"hXzOVo\\\":[\\\"Next\\\"],\\\"UaXeX3\\\":[\\\"Okay\\\"],\\\"yDlXDJ\\\":[\\\"Only letters, numbers, and hyphens\\\"],\\\"8ZsakT\\\":[\\\"Password\\\"],\\\"osAB4a\\\":[\\\"Password strength\\\"],\\\"xfNKwI\\\":[\\\"Password strength indicator\\\"],\\\"fSy6T1\\\":[\\\"Password Updated\\\"],\\\"DKeVgZ\\\":[\\\"Password updated!\\\"],\\\"5CqSPX\\\":[\\\"Password with at least \\\",[\\\"MIN_PASSWORD_LENGTH\\\"],\\\" characters\\\"],\\\"+Z2ZNt\\\":[\\\"Please verify the domain name of the website before entering your password. Never enter your password on a domain you do not trust.\\\"],\\\"LcET2C\\\":[\\\"Privacy Policy\\\"],\\\"1TxdLU\\\":[\\\"Remember this account on this device\\\"],\\\"c7cY3z\\\":[\\\"Requested permissions\\\"],\\\"vJgYMA\\\":[\\\"Reset code\\\"],\\\"KbS2K9\\\":[\\\"Reset Password\\\"],\\\"slOprG\\\":[\\\"Reset your password\\\"],\\\"HB+TbB\\\":[\\\"Select domain\\\"],\\\"o3dwub\\\":[\\\"Select from an existing account\\\"],\\\"CqO9qC\\\":[\\\"Session\\\"],\\\"5lWFkC\\\":[\\\"Sign in\\\"],\\\"N9o7n5\\\":[\\\"Sign in as \\\",[\\\"0\\\"]],\\\"FT1MVS\\\":[\\\"Sign in as...\\\"],\\\"e+RpCP\\\":[\\\"Sign up\\\"],\\\"BEx8rG\\\":[\\\"Step \\\",[\\\"currentPosition\\\"],\\\" of \\\",[\\\"count\\\"]],\\\"LLx/nr\\\":[\\\"Strong\\\"],\\\"hQRttt\\\":[\\\"Submit\\\"],\\\"XYLcNv\\\":[\\\"Support\\\"],\\\"xowcRf\\\":[\\\"Terms of Service\\\"],\\\"D00bHj\\\":[\\\"That handle cannot be used\\\"],\\\"qDdKKD\\\":[\\\"The domain name is not allowed\\\"],\\\"we0QGx\\\":[\\\"The handle contains inappropriate language\\\"],\\\"kPGuFg\\\":[\\\"The handle is already in use\\\"],\\\"LSPrK4\\\":[\\\"The handle is invalid\\\"],\\\"SZKM0t\\\":[\\\"This email is already used\\\"],\\\"T61uiW\\\":[\\\"This handle is reserved\\\"],\\\"5OVfoe\\\":[\\\"This sign-in session has expired\\\"],\\\"LX2sHe\\\":[\\\"Type your desired username\\\"],\\\"Jja+Vn\\\":[\\\"Unexpected server response\\\"],\\\"BWM1dL\\\":[\\\"Uniquely identify you\\\"],\\\"nZx9mr\\\":[\\\"Username or email address\\\"],\\\"nfagfM\\\":[\\\"Valid\\\"],\\\"86GEtW\\\":[\\\"Valid email address or username\\\"],\\\"aIar4b\\\":[\\\"Verify you are human\\\"],\\\"r6y+jM\\\":[\\\"Warning\\\"],\\\"qjBGxf\\\":[\\\"We're so excited to have you join us!\\\"],\\\"9ls/Vs\\\":[\\\"Weak\\\"],\\\"jSVjfa\\\":[\\\"Wrong identifier or password\\\"],\\\"qq6QQ5\\\":[\\\"You are being redirected...\\\"],\\\"B9VwbO\\\":[\\\"You can change this username to any domain name you control after your account is set up.\\\"],\\\"67nRLM\\\":[\\\"You can now sign in with your new password.\\\"],\\\"imRJNy\\\":[\\\"You will receive an email with a \\\\\\\"reset code\\\\\\\". Enter that code here then enter your new password.\\\"],\\\"gdRnT7\\\":[\\\"Your account\\\"],\\\"r/b/p8\\\":[\\\"Your full username will be: \\\",[\\\"0\\\"]],\\\"+qGdcW\\\":[\\\"Your password has been updated!\\\"]}\")as Messages;"],"names":["messages","JSON","parse"],"mappings":"AAAuEA,MAAAA,QAAAA,CAASC,IAAKC,CAAAA,KAAK,CAAC,+yIAAiyJ;;;;"}
@@ -1,4 +0,0 @@
1
- const messages=JSON.parse('{"BVbdlE":["<0/> is asking for permission to access your account (<1/>)."],"4blS0m":["2FA Confirmation"],"S90jaV":["A second authentication factor is required"],"myiH7A":["Access your account data (except chat messages)"],"kJrqQq":["Access your chat messages"],"AeXO77":["Account"],"FTT4a4":["Already have a code?"],"eYNzrj":["An application on your device"],"vW+T+d":["An unknown error occurred"],"+TaG50":["Another account"],"OX6vme":["Authenticate"],"yIVrHZ":["Authorize"],"iH8pgl":["Back"],"4Rgp24":["Between ",["minLength"]," and ",["maxLength"]," characters"],"/aj5l4":["By clicking <0>Authorize</0>, you allow this application to perform the following actions in accordance with their <1>terms of service</1> and <2>privacy policy</2>:"],"mBUXx0":["By creating an account you agree to the ",["0"]," and the ",["1"]," of this service."],"dEgA5A":["Cancel"],"B+Yy3b":["Check your ",["0"]," email for a login code and enter it here."],"khEQ02":["Choose a username"],"EWPtMO":["Code"],"7VpPHA":["Confirm"],"HaGV2g":["Confirm your password to continue"],"ioZOzk":["Confirmation code"],"mpt9T+":["Create a new account"],"IS0nrP":["Create Account"],"54JiGG":["Deny access"],"Nu4oKW":["Description"],"O3oNi5":["Email"],"ATGYL1":["Email address"],"3tOlz6":["Enter a password"],"xg/UcZ":["Enter the code you received to reset your password."],"cHrOqs":["Enter the email you used to create your account. We\'ll send you a \\"reset code\\" so you can set a new password."],"xRPn3U":["Enter your email address"],"0StR7t":["Enter your new password"],"NgaR6B":["Enter your password"],"T0KLp4":["Enter your username and password"],"SlfejT":["Error"],"/Ltc/k":["Extra"],"dn8X5t":["Forgot Password"],"F4OP4y":["Forgot?"],"QdVx1C":["Grant access to your <0>",["0"],"</0> account"],"87VTIH":["Having trouble? <0>Contact support</0>"],"vLyv1R":["Hide"],"i0qMbr":["Home"],"sJGljQ":["Identifier"],"vHJQ4A":["Interface language selector"],"JHB/Ky":["Invalid"],"6KlkHI":["Invite code"],"Esfg1M":["Let\'s get your password reset!"],"UCOd1e":["Login complete"],"cR9UpQ":["Login to account that is not listed"],"0hTJM+":["Looks like ",["example"]],"huXYDE":["Make visible"],"VU3Nrn":["Missing"],"dvYuhh":["Moderate"],"6YtxFj":["Name"],"/nT6AE":["New password"],"hXzOVo":["Next"],"UaXeX3":["Okay"],"yDlXDJ":["Only letters, numbers, and hyphens"],"8ZsakT":["Password"],"osAB4a":["Password strength"],"xfNKwI":["Password strength indicator"],"fSy6T1":["Password Updated"],"DKeVgZ":["Password updated!"],"5CqSPX":["Password with at least ",["MIN_PASSWORD_LENGTH"]," characters"],"+Z2ZNt":["Please verify the domain name of the website before entering your password. Never enter your password on a domain you do not trust."],"LcET2C":["Privacy Policy"],"1TxdLU":["Remember this account on this device"],"c7cY3z":["Requested permissions"],"vJgYMA":["Reset code"],"KbS2K9":["Reset Password"],"slOprG":["Reset your password"],"HB+TbB":["Select domain"],"o3dwub":["Select from an existing account"],"CqO9qC":["Session"],"5lWFkC":["Sign in"],"N9o7n5":["Sign in as ",["0"]],"FT1MVS":["Sign in as..."],"e+RpCP":["Sign up"],"BEx8rG":["Step ",["currentPosition"]," of ",["count"]],"LLx/nr":["Strong"],"hQRttt":["Submit"],"XYLcNv":["Support"],"xowcRf":["Terms of Service"],"D00bHj":["That handle cannot be used"],"qDdKKD":["The domain name is not allowed"],"we0QGx":["The handle contains inappropriate language"],"kPGuFg":["The handle is already in use"],"LSPrK4":["The handle is invalid"],"SZKM0t":["This email is already used"],"T61uiW":["This handle is reserved"],"5OVfoe":["This sign-in session has expired"],"LX2sHe":["Type your desired username"],"Jja+Vn":["Unexpected server response"],"BWM1dL":["Uniquely identify you"],"nZx9mr":["Username or email address"],"nfagfM":["Valid"],"86GEtW":["Valid email address or username"],"aIar4b":["Verify you are human"],"r6y+jM":["Warning"],"qjBGxf":["We\'re so excited to have you join us!"],"9ls/Vs":["Weak"],"jSVjfa":["Wrong identifier or password"],"qq6QQ5":["You are being redirected..."],"B9VwbO":["You can change this username to any domain name you control after your account is set up."],"67nRLM":["You can now sign in with your new password."],"imRJNy":["You will receive an email with a \\"reset code\\". Enter that code here then enter your new password."],"gdRnT7":["Your account"],"r/b/p8":["Your full username will be: ",["0"]],"+qGdcW":["Your password has been updated!"]}');
2
-
3
- export { messages };
4
- //# sourceMappingURL=messages-BaizVXcF.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"messages-BaizVXcF.js","sources":["../../../src/assets/app/locales/it/messages.ts"],"sourcesContent":["/*eslint-disable*/import type{Messages}from\"@lingui/core\";export const messages=JSON.parse(\"{\\\"BVbdlE\\\":[\\\"<0/> is asking for permission to access your account (<1/>).\\\"],\\\"4blS0m\\\":[\\\"2FA Confirmation\\\"],\\\"S90jaV\\\":[\\\"A second authentication factor is required\\\"],\\\"myiH7A\\\":[\\\"Access your account data (except chat messages)\\\"],\\\"kJrqQq\\\":[\\\"Access your chat messages\\\"],\\\"AeXO77\\\":[\\\"Account\\\"],\\\"FTT4a4\\\":[\\\"Already have a code?\\\"],\\\"eYNzrj\\\":[\\\"An application on your device\\\"],\\\"vW+T+d\\\":[\\\"An unknown error occurred\\\"],\\\"+TaG50\\\":[\\\"Another account\\\"],\\\"OX6vme\\\":[\\\"Authenticate\\\"],\\\"yIVrHZ\\\":[\\\"Authorize\\\"],\\\"iH8pgl\\\":[\\\"Back\\\"],\\\"4Rgp24\\\":[\\\"Between \\\",[\\\"minLength\\\"],\\\" and \\\",[\\\"maxLength\\\"],\\\" characters\\\"],\\\"/aj5l4\\\":[\\\"By clicking <0>Authorize</0>, you allow this application to perform the following actions in accordance with their <1>terms of service</1> and <2>privacy policy</2>:\\\"],\\\"mBUXx0\\\":[\\\"By creating an account you agree to the \\\",[\\\"0\\\"],\\\" and the \\\",[\\\"1\\\"],\\\" of this service.\\\"],\\\"dEgA5A\\\":[\\\"Cancel\\\"],\\\"B+Yy3b\\\":[\\\"Check your \\\",[\\\"0\\\"],\\\" email for a login code and enter it here.\\\"],\\\"khEQ02\\\":[\\\"Choose a username\\\"],\\\"EWPtMO\\\":[\\\"Code\\\"],\\\"7VpPHA\\\":[\\\"Confirm\\\"],\\\"HaGV2g\\\":[\\\"Confirm your password to continue\\\"],\\\"ioZOzk\\\":[\\\"Confirmation code\\\"],\\\"mpt9T+\\\":[\\\"Create a new account\\\"],\\\"IS0nrP\\\":[\\\"Create Account\\\"],\\\"54JiGG\\\":[\\\"Deny access\\\"],\\\"Nu4oKW\\\":[\\\"Description\\\"],\\\"O3oNi5\\\":[\\\"Email\\\"],\\\"ATGYL1\\\":[\\\"Email address\\\"],\\\"3tOlz6\\\":[\\\"Enter a password\\\"],\\\"xg/UcZ\\\":[\\\"Enter the code you received to reset your password.\\\"],\\\"cHrOqs\\\":[\\\"Enter the email you used to create your account. We'll send you a \\\\\\\"reset code\\\\\\\" so you can set a new password.\\\"],\\\"xRPn3U\\\":[\\\"Enter your email address\\\"],\\\"0StR7t\\\":[\\\"Enter your new password\\\"],\\\"NgaR6B\\\":[\\\"Enter your password\\\"],\\\"T0KLp4\\\":[\\\"Enter your username and password\\\"],\\\"SlfejT\\\":[\\\"Error\\\"],\\\"/Ltc/k\\\":[\\\"Extra\\\"],\\\"dn8X5t\\\":[\\\"Forgot Password\\\"],\\\"F4OP4y\\\":[\\\"Forgot?\\\"],\\\"QdVx1C\\\":[\\\"Grant access to your <0>\\\",[\\\"0\\\"],\\\"</0> account\\\"],\\\"87VTIH\\\":[\\\"Having trouble? <0>Contact support</0>\\\"],\\\"vLyv1R\\\":[\\\"Hide\\\"],\\\"i0qMbr\\\":[\\\"Home\\\"],\\\"sJGljQ\\\":[\\\"Identifier\\\"],\\\"vHJQ4A\\\":[\\\"Interface language selector\\\"],\\\"JHB/Ky\\\":[\\\"Invalid\\\"],\\\"6KlkHI\\\":[\\\"Invite code\\\"],\\\"Esfg1M\\\":[\\\"Let's get your password reset!\\\"],\\\"UCOd1e\\\":[\\\"Login complete\\\"],\\\"cR9UpQ\\\":[\\\"Login to account that is not listed\\\"],\\\"0hTJM+\\\":[\\\"Looks like \\\",[\\\"example\\\"]],\\\"huXYDE\\\":[\\\"Make visible\\\"],\\\"VU3Nrn\\\":[\\\"Missing\\\"],\\\"dvYuhh\\\":[\\\"Moderate\\\"],\\\"6YtxFj\\\":[\\\"Name\\\"],\\\"/nT6AE\\\":[\\\"New password\\\"],\\\"hXzOVo\\\":[\\\"Next\\\"],\\\"UaXeX3\\\":[\\\"Okay\\\"],\\\"yDlXDJ\\\":[\\\"Only letters, numbers, and hyphens\\\"],\\\"8ZsakT\\\":[\\\"Password\\\"],\\\"osAB4a\\\":[\\\"Password strength\\\"],\\\"xfNKwI\\\":[\\\"Password strength indicator\\\"],\\\"fSy6T1\\\":[\\\"Password Updated\\\"],\\\"DKeVgZ\\\":[\\\"Password updated!\\\"],\\\"5CqSPX\\\":[\\\"Password with at least \\\",[\\\"MIN_PASSWORD_LENGTH\\\"],\\\" characters\\\"],\\\"+Z2ZNt\\\":[\\\"Please verify the domain name of the website before entering your password. Never enter your password on a domain you do not trust.\\\"],\\\"LcET2C\\\":[\\\"Privacy Policy\\\"],\\\"1TxdLU\\\":[\\\"Remember this account on this device\\\"],\\\"c7cY3z\\\":[\\\"Requested permissions\\\"],\\\"vJgYMA\\\":[\\\"Reset code\\\"],\\\"KbS2K9\\\":[\\\"Reset Password\\\"],\\\"slOprG\\\":[\\\"Reset your password\\\"],\\\"HB+TbB\\\":[\\\"Select domain\\\"],\\\"o3dwub\\\":[\\\"Select from an existing account\\\"],\\\"CqO9qC\\\":[\\\"Session\\\"],\\\"5lWFkC\\\":[\\\"Sign in\\\"],\\\"N9o7n5\\\":[\\\"Sign in as \\\",[\\\"0\\\"]],\\\"FT1MVS\\\":[\\\"Sign in as...\\\"],\\\"e+RpCP\\\":[\\\"Sign up\\\"],\\\"BEx8rG\\\":[\\\"Step \\\",[\\\"currentPosition\\\"],\\\" of \\\",[\\\"count\\\"]],\\\"LLx/nr\\\":[\\\"Strong\\\"],\\\"hQRttt\\\":[\\\"Submit\\\"],\\\"XYLcNv\\\":[\\\"Support\\\"],\\\"xowcRf\\\":[\\\"Terms of Service\\\"],\\\"D00bHj\\\":[\\\"That handle cannot be used\\\"],\\\"qDdKKD\\\":[\\\"The domain name is not allowed\\\"],\\\"we0QGx\\\":[\\\"The handle contains inappropriate language\\\"],\\\"kPGuFg\\\":[\\\"The handle is already in use\\\"],\\\"LSPrK4\\\":[\\\"The handle is invalid\\\"],\\\"SZKM0t\\\":[\\\"This email is already used\\\"],\\\"T61uiW\\\":[\\\"This handle is reserved\\\"],\\\"5OVfoe\\\":[\\\"This sign-in session has expired\\\"],\\\"LX2sHe\\\":[\\\"Type your desired username\\\"],\\\"Jja+Vn\\\":[\\\"Unexpected server response\\\"],\\\"BWM1dL\\\":[\\\"Uniquely identify you\\\"],\\\"nZx9mr\\\":[\\\"Username or email address\\\"],\\\"nfagfM\\\":[\\\"Valid\\\"],\\\"86GEtW\\\":[\\\"Valid email address or username\\\"],\\\"aIar4b\\\":[\\\"Verify you are human\\\"],\\\"r6y+jM\\\":[\\\"Warning\\\"],\\\"qjBGxf\\\":[\\\"We're so excited to have you join us!\\\"],\\\"9ls/Vs\\\":[\\\"Weak\\\"],\\\"jSVjfa\\\":[\\\"Wrong identifier or password\\\"],\\\"qq6QQ5\\\":[\\\"You are being redirected...\\\"],\\\"B9VwbO\\\":[\\\"You can change this username to any domain name you control after your account is set up.\\\"],\\\"67nRLM\\\":[\\\"You can now sign in with your new password.\\\"],\\\"imRJNy\\\":[\\\"You will receive an email with a \\\\\\\"reset code\\\\\\\". Enter that code here then enter your new password.\\\"],\\\"gdRnT7\\\":[\\\"Your account\\\"],\\\"r/b/p8\\\":[\\\"Your full username will be: \\\",[\\\"0\\\"]],\\\"+qGdcW\\\":[\\\"Your password has been updated!\\\"]}\")as Messages;"],"names":["messages","JSON","parse"],"mappings":"AAAuEA,MAAAA,QAAAA,CAASC,IAAKC,CAAAA,KAAK,CAAC,+yIAAiyJ;;;;"}
@@ -1,4 +0,0 @@
1
- const messages=JSON.parse('{"BVbdlE":["<0/> is asking for permission to access your account (<1/>)."],"4blS0m":["2FA Confirmation"],"S90jaV":["A second authentication factor is required"],"myiH7A":["Access your account data (except chat messages)"],"kJrqQq":["Access your chat messages"],"AeXO77":["Account"],"FTT4a4":["Already have a code?"],"eYNzrj":["An application on your device"],"vW+T+d":["An unknown error occurred"],"+TaG50":["Another account"],"OX6vme":["Authenticate"],"yIVrHZ":["Authorize"],"iH8pgl":["Back"],"4Rgp24":["Between ",["minLength"]," and ",["maxLength"]," characters"],"/aj5l4":["By clicking <0>Authorize</0>, you allow this application to perform the following actions in accordance with their <1>terms of service</1> and <2>privacy policy</2>:"],"mBUXx0":["By creating an account you agree to the ",["0"]," and the ",["1"]," of this service."],"dEgA5A":["Cancel"],"B+Yy3b":["Check your ",["0"]," email for a login code and enter it here."],"khEQ02":["Choose a username"],"EWPtMO":["Code"],"7VpPHA":["Confirm"],"HaGV2g":["Confirm your password to continue"],"ioZOzk":["Confirmation code"],"mpt9T+":["Create a new account"],"IS0nrP":["Create Account"],"54JiGG":["Deny access"],"Nu4oKW":["Description"],"O3oNi5":["Email"],"ATGYL1":["Email address"],"3tOlz6":["Enter a password"],"xg/UcZ":["Enter the code you received to reset your password."],"cHrOqs":["Enter the email you used to create your account. We\'ll send you a \\"reset code\\" so you can set a new password."],"xRPn3U":["Enter your email address"],"0StR7t":["Enter your new password"],"NgaR6B":["Enter your password"],"T0KLp4":["Enter your username and password"],"SlfejT":["Error"],"/Ltc/k":["Extra"],"dn8X5t":["Forgot Password"],"F4OP4y":["Forgot?"],"QdVx1C":["Grant access to your <0>",["0"],"</0> account"],"87VTIH":["Having trouble? <0>Contact support</0>"],"vLyv1R":["Hide"],"i0qMbr":["Home"],"sJGljQ":["Identifier"],"vHJQ4A":["Interface language selector"],"JHB/Ky":["Invalid"],"6KlkHI":["Invite code"],"Esfg1M":["Let\'s get your password reset!"],"UCOd1e":["Login complete"],"cR9UpQ":["Login to account that is not listed"],"0hTJM+":["Looks like ",["example"]],"huXYDE":["Make visible"],"VU3Nrn":["Missing"],"dvYuhh":["Moderate"],"6YtxFj":["Name"],"/nT6AE":["New password"],"hXzOVo":["Next"],"UaXeX3":["Okay"],"yDlXDJ":["Only letters, numbers, and hyphens"],"8ZsakT":["Password"],"osAB4a":["Password strength"],"xfNKwI":["Password strength indicator"],"fSy6T1":["Password Updated"],"DKeVgZ":["Password updated!"],"5CqSPX":["Password with at least ",["MIN_PASSWORD_LENGTH"]," characters"],"+Z2ZNt":["Please verify the domain name of the website before entering your password. Never enter your password on a domain you do not trust."],"LcET2C":["Privacy Policy"],"1TxdLU":["Remember this account on this device"],"c7cY3z":["Requested permissions"],"vJgYMA":["Reset code"],"KbS2K9":["Reset Password"],"slOprG":["Reset your password"],"HB+TbB":["Select domain"],"o3dwub":["Select from an existing account"],"CqO9qC":["Session"],"5lWFkC":["Sign in"],"N9o7n5":["Sign in as ",["0"]],"FT1MVS":["Sign in as..."],"e+RpCP":["Sign up"],"BEx8rG":["Step ",["currentPosition"]," of ",["count"]],"LLx/nr":["Strong"],"hQRttt":["Submit"],"XYLcNv":["Support"],"xowcRf":["Terms of Service"],"D00bHj":["That handle cannot be used"],"qDdKKD":["The domain name is not allowed"],"we0QGx":["The handle contains inappropriate language"],"kPGuFg":["The handle is already in use"],"LSPrK4":["The handle is invalid"],"SZKM0t":["This email is already used"],"T61uiW":["This handle is reserved"],"5OVfoe":["This sign-in session has expired"],"LX2sHe":["Type your desired username"],"Jja+Vn":["Unexpected server response"],"BWM1dL":["Uniquely identify you"],"nZx9mr":["Username or email address"],"nfagfM":["Valid"],"86GEtW":["Valid email address or username"],"aIar4b":["Verify you are human"],"r6y+jM":["Warning"],"qjBGxf":["We\'re so excited to have you join us!"],"9ls/Vs":["Weak"],"jSVjfa":["Wrong identifier or password"],"qq6QQ5":["You are being redirected..."],"B9VwbO":["You can change this username to any domain name you control after your account is set up."],"67nRLM":["You can now sign in with your new password."],"imRJNy":["You will receive an email with a \\"reset code\\". Enter that code here then enter your new password."],"gdRnT7":["Your account"],"r/b/p8":["Your full username will be: ",["0"]],"+qGdcW":["Your password has been updated!"]}');
2
-
3
- export { messages };
4
- //# sourceMappingURL=messages-BfoClA1Y.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"messages-BfoClA1Y.js","sources":["../../../src/assets/app/locales/en-GB/messages.ts"],"sourcesContent":["/*eslint-disable*/import type{Messages}from\"@lingui/core\";export const messages=JSON.parse(\"{\\\"BVbdlE\\\":[\\\"<0/> is asking for permission to access your account (<1/>).\\\"],\\\"4blS0m\\\":[\\\"2FA Confirmation\\\"],\\\"S90jaV\\\":[\\\"A second authentication factor is required\\\"],\\\"myiH7A\\\":[\\\"Access your account data (except chat messages)\\\"],\\\"kJrqQq\\\":[\\\"Access your chat messages\\\"],\\\"AeXO77\\\":[\\\"Account\\\"],\\\"FTT4a4\\\":[\\\"Already have a code?\\\"],\\\"eYNzrj\\\":[\\\"An application on your device\\\"],\\\"vW+T+d\\\":[\\\"An unknown error occurred\\\"],\\\"+TaG50\\\":[\\\"Another account\\\"],\\\"OX6vme\\\":[\\\"Authenticate\\\"],\\\"yIVrHZ\\\":[\\\"Authorize\\\"],\\\"iH8pgl\\\":[\\\"Back\\\"],\\\"4Rgp24\\\":[\\\"Between \\\",[\\\"minLength\\\"],\\\" and \\\",[\\\"maxLength\\\"],\\\" characters\\\"],\\\"/aj5l4\\\":[\\\"By clicking <0>Authorize</0>, you allow this application to perform the following actions in accordance with their <1>terms of service</1> and <2>privacy policy</2>:\\\"],\\\"mBUXx0\\\":[\\\"By creating an account you agree to the \\\",[\\\"0\\\"],\\\" and the \\\",[\\\"1\\\"],\\\" of this service.\\\"],\\\"dEgA5A\\\":[\\\"Cancel\\\"],\\\"B+Yy3b\\\":[\\\"Check your \\\",[\\\"0\\\"],\\\" email for a login code and enter it here.\\\"],\\\"khEQ02\\\":[\\\"Choose a username\\\"],\\\"EWPtMO\\\":[\\\"Code\\\"],\\\"7VpPHA\\\":[\\\"Confirm\\\"],\\\"HaGV2g\\\":[\\\"Confirm your password to continue\\\"],\\\"ioZOzk\\\":[\\\"Confirmation code\\\"],\\\"mpt9T+\\\":[\\\"Create a new account\\\"],\\\"IS0nrP\\\":[\\\"Create Account\\\"],\\\"54JiGG\\\":[\\\"Deny access\\\"],\\\"Nu4oKW\\\":[\\\"Description\\\"],\\\"O3oNi5\\\":[\\\"Email\\\"],\\\"ATGYL1\\\":[\\\"Email address\\\"],\\\"3tOlz6\\\":[\\\"Enter a password\\\"],\\\"xg/UcZ\\\":[\\\"Enter the code you received to reset your password.\\\"],\\\"cHrOqs\\\":[\\\"Enter the email you used to create your account. We'll send you a \\\\\\\"reset code\\\\\\\" so you can set a new password.\\\"],\\\"xRPn3U\\\":[\\\"Enter your email address\\\"],\\\"0StR7t\\\":[\\\"Enter your new password\\\"],\\\"NgaR6B\\\":[\\\"Enter your password\\\"],\\\"T0KLp4\\\":[\\\"Enter your username and password\\\"],\\\"SlfejT\\\":[\\\"Error\\\"],\\\"/Ltc/k\\\":[\\\"Extra\\\"],\\\"dn8X5t\\\":[\\\"Forgot Password\\\"],\\\"F4OP4y\\\":[\\\"Forgot?\\\"],\\\"QdVx1C\\\":[\\\"Grant access to your <0>\\\",[\\\"0\\\"],\\\"</0> account\\\"],\\\"87VTIH\\\":[\\\"Having trouble? <0>Contact support</0>\\\"],\\\"vLyv1R\\\":[\\\"Hide\\\"],\\\"i0qMbr\\\":[\\\"Home\\\"],\\\"sJGljQ\\\":[\\\"Identifier\\\"],\\\"vHJQ4A\\\":[\\\"Interface language selector\\\"],\\\"JHB/Ky\\\":[\\\"Invalid\\\"],\\\"6KlkHI\\\":[\\\"Invite code\\\"],\\\"Esfg1M\\\":[\\\"Let's get your password reset!\\\"],\\\"UCOd1e\\\":[\\\"Login complete\\\"],\\\"cR9UpQ\\\":[\\\"Login to account that is not listed\\\"],\\\"0hTJM+\\\":[\\\"Looks like \\\",[\\\"example\\\"]],\\\"huXYDE\\\":[\\\"Make visible\\\"],\\\"VU3Nrn\\\":[\\\"Missing\\\"],\\\"dvYuhh\\\":[\\\"Moderate\\\"],\\\"6YtxFj\\\":[\\\"Name\\\"],\\\"/nT6AE\\\":[\\\"New password\\\"],\\\"hXzOVo\\\":[\\\"Next\\\"],\\\"UaXeX3\\\":[\\\"Okay\\\"],\\\"yDlXDJ\\\":[\\\"Only letters, numbers, and hyphens\\\"],\\\"8ZsakT\\\":[\\\"Password\\\"],\\\"osAB4a\\\":[\\\"Password strength\\\"],\\\"xfNKwI\\\":[\\\"Password strength indicator\\\"],\\\"fSy6T1\\\":[\\\"Password Updated\\\"],\\\"DKeVgZ\\\":[\\\"Password updated!\\\"],\\\"5CqSPX\\\":[\\\"Password with at least \\\",[\\\"MIN_PASSWORD_LENGTH\\\"],\\\" characters\\\"],\\\"+Z2ZNt\\\":[\\\"Please verify the domain name of the website before entering your password. Never enter your password on a domain you do not trust.\\\"],\\\"LcET2C\\\":[\\\"Privacy Policy\\\"],\\\"1TxdLU\\\":[\\\"Remember this account on this device\\\"],\\\"c7cY3z\\\":[\\\"Requested permissions\\\"],\\\"vJgYMA\\\":[\\\"Reset code\\\"],\\\"KbS2K9\\\":[\\\"Reset Password\\\"],\\\"slOprG\\\":[\\\"Reset your password\\\"],\\\"HB+TbB\\\":[\\\"Select domain\\\"],\\\"o3dwub\\\":[\\\"Select from an existing account\\\"],\\\"CqO9qC\\\":[\\\"Session\\\"],\\\"5lWFkC\\\":[\\\"Sign in\\\"],\\\"N9o7n5\\\":[\\\"Sign in as \\\",[\\\"0\\\"]],\\\"FT1MVS\\\":[\\\"Sign in as...\\\"],\\\"e+RpCP\\\":[\\\"Sign up\\\"],\\\"BEx8rG\\\":[\\\"Step \\\",[\\\"currentPosition\\\"],\\\" of \\\",[\\\"count\\\"]],\\\"LLx/nr\\\":[\\\"Strong\\\"],\\\"hQRttt\\\":[\\\"Submit\\\"],\\\"XYLcNv\\\":[\\\"Support\\\"],\\\"xowcRf\\\":[\\\"Terms of Service\\\"],\\\"D00bHj\\\":[\\\"That handle cannot be used\\\"],\\\"qDdKKD\\\":[\\\"The domain name is not allowed\\\"],\\\"we0QGx\\\":[\\\"The handle contains inappropriate language\\\"],\\\"kPGuFg\\\":[\\\"The handle is already in use\\\"],\\\"LSPrK4\\\":[\\\"The handle is invalid\\\"],\\\"SZKM0t\\\":[\\\"This email is already used\\\"],\\\"T61uiW\\\":[\\\"This handle is reserved\\\"],\\\"5OVfoe\\\":[\\\"This sign-in session has expired\\\"],\\\"LX2sHe\\\":[\\\"Type your desired username\\\"],\\\"Jja+Vn\\\":[\\\"Unexpected server response\\\"],\\\"BWM1dL\\\":[\\\"Uniquely identify you\\\"],\\\"nZx9mr\\\":[\\\"Username or email address\\\"],\\\"nfagfM\\\":[\\\"Valid\\\"],\\\"86GEtW\\\":[\\\"Valid email address or username\\\"],\\\"aIar4b\\\":[\\\"Verify you are human\\\"],\\\"r6y+jM\\\":[\\\"Warning\\\"],\\\"qjBGxf\\\":[\\\"We're so excited to have you join us!\\\"],\\\"9ls/Vs\\\":[\\\"Weak\\\"],\\\"jSVjfa\\\":[\\\"Wrong identifier or password\\\"],\\\"qq6QQ5\\\":[\\\"You are being redirected...\\\"],\\\"B9VwbO\\\":[\\\"You can change this username to any domain name you control after your account is set up.\\\"],\\\"67nRLM\\\":[\\\"You can now sign in with your new password.\\\"],\\\"imRJNy\\\":[\\\"You will receive an email with a \\\\\\\"reset code\\\\\\\". Enter that code here then enter your new password.\\\"],\\\"gdRnT7\\\":[\\\"Your account\\\"],\\\"r/b/p8\\\":[\\\"Your full username will be: \\\",[\\\"0\\\"]],\\\"+qGdcW\\\":[\\\"Your password has been updated!\\\"]}\")as Messages;"],"names":["messages","JSON","parse"],"mappings":"AAAuEA,MAAAA,QAAAA,CAASC,IAAKC,CAAAA,KAAK,CAAC,+yIAAiyJ;;;;"}
@@ -1,4 +0,0 @@
1
- const messages=JSON.parse('{"BVbdlE":["<0/> is asking for permission to access your account (<1/>)."],"4blS0m":["2FA Confirmation"],"S90jaV":["A second authentication factor is required"],"myiH7A":["Access your account data (except chat messages)"],"kJrqQq":["Access your chat messages"],"AeXO77":["Account"],"FTT4a4":["Already have a code?"],"eYNzrj":["An application on your device"],"vW+T+d":["An unknown error occurred"],"+TaG50":["Another account"],"OX6vme":["Authenticate"],"yIVrHZ":["Authorize"],"iH8pgl":["Back"],"4Rgp24":["Between ",["minLength"]," and ",["maxLength"]," characters"],"/aj5l4":["By clicking <0>Authorize</0>, you allow this application to perform the following actions in accordance with their <1>terms of service</1> and <2>privacy policy</2>:"],"mBUXx0":["By creating an account you agree to the ",["0"]," and the ",["1"]," of this service."],"dEgA5A":["Cancel"],"B+Yy3b":["Check your ",["0"]," email for a login code and enter it here."],"khEQ02":["Choose a username"],"EWPtMO":["Code"],"7VpPHA":["Confirm"],"HaGV2g":["Confirm your password to continue"],"ioZOzk":["Confirmation code"],"mpt9T+":["Create a new account"],"IS0nrP":["Create Account"],"54JiGG":["Deny access"],"Nu4oKW":["Description"],"O3oNi5":["Email"],"ATGYL1":["Email address"],"3tOlz6":["Enter a password"],"xg/UcZ":["Enter the code you received to reset your password."],"cHrOqs":["Enter the email you used to create your account. We\'ll send you a \\"reset code\\" so you can set a new password."],"xRPn3U":["Enter your email address"],"0StR7t":["Enter your new password"],"NgaR6B":["Enter your password"],"T0KLp4":["Enter your username and password"],"SlfejT":["Error"],"/Ltc/k":["Extra"],"dn8X5t":["Forgot Password"],"F4OP4y":["Forgot?"],"QdVx1C":["Grant access to your <0>",["0"],"</0> account"],"87VTIH":["Having trouble? <0>Contact support</0>"],"vLyv1R":["Hide"],"i0qMbr":["Home"],"sJGljQ":["Identifier"],"vHJQ4A":["Interface language selector"],"JHB/Ky":["Invalid"],"6KlkHI":["Invite code"],"Esfg1M":["Let\'s get your password reset!"],"UCOd1e":["Login complete"],"cR9UpQ":["Login to account that is not listed"],"0hTJM+":["Looks like ",["example"]],"huXYDE":["Make visible"],"VU3Nrn":["Missing"],"dvYuhh":["Moderate"],"6YtxFj":["Name"],"/nT6AE":["New password"],"hXzOVo":["Next"],"UaXeX3":["Okay"],"yDlXDJ":["Only letters, numbers, and hyphens"],"8ZsakT":["Password"],"osAB4a":["Password strength"],"xfNKwI":["Password strength indicator"],"fSy6T1":["Password Updated"],"DKeVgZ":["Password updated!"],"5CqSPX":["Password with at least ",["MIN_PASSWORD_LENGTH"]," characters"],"+Z2ZNt":["Please verify the domain name of the website before entering your password. Never enter your password on a domain you do not trust."],"LcET2C":["Privacy Policy"],"1TxdLU":["Remember this account on this device"],"c7cY3z":["Requested permissions"],"vJgYMA":["Reset code"],"KbS2K9":["Reset Password"],"slOprG":["Reset your password"],"HB+TbB":["Select domain"],"o3dwub":["Select from an existing account"],"CqO9qC":["Session"],"5lWFkC":["Sign in"],"N9o7n5":["Sign in as ",["0"]],"FT1MVS":["Sign in as..."],"e+RpCP":["Sign up"],"BEx8rG":["Step ",["currentPosition"]," of ",["count"]],"LLx/nr":["Strong"],"hQRttt":["Submit"],"XYLcNv":["Support"],"xowcRf":["Terms of Service"],"D00bHj":["That handle cannot be used"],"qDdKKD":["The domain name is not allowed"],"we0QGx":["The handle contains inappropriate language"],"kPGuFg":["The handle is already in use"],"LSPrK4":["The handle is invalid"],"SZKM0t":["This email is already used"],"T61uiW":["This handle is reserved"],"5OVfoe":["This sign-in session has expired"],"LX2sHe":["Type your desired username"],"Jja+Vn":["Unexpected server response"],"BWM1dL":["Uniquely identify you"],"nZx9mr":["Username or email address"],"nfagfM":["Valid"],"86GEtW":["Valid email address or username"],"aIar4b":["Verify you are human"],"r6y+jM":["Warning"],"qjBGxf":["We\'re so excited to have you join us!"],"9ls/Vs":["Weak"],"jSVjfa":["Wrong identifier or password"],"qq6QQ5":["You are being redirected..."],"B9VwbO":["You can change this username to any domain name you control after your account is set up."],"67nRLM":["You can now sign in with your new password."],"imRJNy":["You will receive an email with a \\"reset code\\". Enter that code here then enter your new password."],"gdRnT7":["Your account"],"r/b/p8":["Your full username will be: ",["0"]],"+qGdcW":["Your password has been updated!"]}');
2
-
3
- export { messages };
4
- //# sourceMappingURL=messages-BsKGDZnC.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"messages-BsKGDZnC.js","sources":["../../../src/assets/app/locales/ne/messages.ts"],"sourcesContent":["/*eslint-disable*/import type{Messages}from\"@lingui/core\";export const messages=JSON.parse(\"{\\\"BVbdlE\\\":[\\\"<0/> is asking for permission to access your account (<1/>).\\\"],\\\"4blS0m\\\":[\\\"2FA Confirmation\\\"],\\\"S90jaV\\\":[\\\"A second authentication factor is required\\\"],\\\"myiH7A\\\":[\\\"Access your account data (except chat messages)\\\"],\\\"kJrqQq\\\":[\\\"Access your chat messages\\\"],\\\"AeXO77\\\":[\\\"Account\\\"],\\\"FTT4a4\\\":[\\\"Already have a code?\\\"],\\\"eYNzrj\\\":[\\\"An application on your device\\\"],\\\"vW+T+d\\\":[\\\"An unknown error occurred\\\"],\\\"+TaG50\\\":[\\\"Another account\\\"],\\\"OX6vme\\\":[\\\"Authenticate\\\"],\\\"yIVrHZ\\\":[\\\"Authorize\\\"],\\\"iH8pgl\\\":[\\\"Back\\\"],\\\"4Rgp24\\\":[\\\"Between \\\",[\\\"minLength\\\"],\\\" and \\\",[\\\"maxLength\\\"],\\\" characters\\\"],\\\"/aj5l4\\\":[\\\"By clicking <0>Authorize</0>, you allow this application to perform the following actions in accordance with their <1>terms of service</1> and <2>privacy policy</2>:\\\"],\\\"mBUXx0\\\":[\\\"By creating an account you agree to the \\\",[\\\"0\\\"],\\\" and the \\\",[\\\"1\\\"],\\\" of this service.\\\"],\\\"dEgA5A\\\":[\\\"Cancel\\\"],\\\"B+Yy3b\\\":[\\\"Check your \\\",[\\\"0\\\"],\\\" email for a login code and enter it here.\\\"],\\\"khEQ02\\\":[\\\"Choose a username\\\"],\\\"EWPtMO\\\":[\\\"Code\\\"],\\\"7VpPHA\\\":[\\\"Confirm\\\"],\\\"HaGV2g\\\":[\\\"Confirm your password to continue\\\"],\\\"ioZOzk\\\":[\\\"Confirmation code\\\"],\\\"mpt9T+\\\":[\\\"Create a new account\\\"],\\\"IS0nrP\\\":[\\\"Create Account\\\"],\\\"54JiGG\\\":[\\\"Deny access\\\"],\\\"Nu4oKW\\\":[\\\"Description\\\"],\\\"O3oNi5\\\":[\\\"Email\\\"],\\\"ATGYL1\\\":[\\\"Email address\\\"],\\\"3tOlz6\\\":[\\\"Enter a password\\\"],\\\"xg/UcZ\\\":[\\\"Enter the code you received to reset your password.\\\"],\\\"cHrOqs\\\":[\\\"Enter the email you used to create your account. We'll send you a \\\\\\\"reset code\\\\\\\" so you can set a new password.\\\"],\\\"xRPn3U\\\":[\\\"Enter your email address\\\"],\\\"0StR7t\\\":[\\\"Enter your new password\\\"],\\\"NgaR6B\\\":[\\\"Enter your password\\\"],\\\"T0KLp4\\\":[\\\"Enter your username and password\\\"],\\\"SlfejT\\\":[\\\"Error\\\"],\\\"/Ltc/k\\\":[\\\"Extra\\\"],\\\"dn8X5t\\\":[\\\"Forgot Password\\\"],\\\"F4OP4y\\\":[\\\"Forgot?\\\"],\\\"QdVx1C\\\":[\\\"Grant access to your <0>\\\",[\\\"0\\\"],\\\"</0> account\\\"],\\\"87VTIH\\\":[\\\"Having trouble? <0>Contact support</0>\\\"],\\\"vLyv1R\\\":[\\\"Hide\\\"],\\\"i0qMbr\\\":[\\\"Home\\\"],\\\"sJGljQ\\\":[\\\"Identifier\\\"],\\\"vHJQ4A\\\":[\\\"Interface language selector\\\"],\\\"JHB/Ky\\\":[\\\"Invalid\\\"],\\\"6KlkHI\\\":[\\\"Invite code\\\"],\\\"Esfg1M\\\":[\\\"Let's get your password reset!\\\"],\\\"UCOd1e\\\":[\\\"Login complete\\\"],\\\"cR9UpQ\\\":[\\\"Login to account that is not listed\\\"],\\\"0hTJM+\\\":[\\\"Looks like \\\",[\\\"example\\\"]],\\\"huXYDE\\\":[\\\"Make visible\\\"],\\\"VU3Nrn\\\":[\\\"Missing\\\"],\\\"dvYuhh\\\":[\\\"Moderate\\\"],\\\"6YtxFj\\\":[\\\"Name\\\"],\\\"/nT6AE\\\":[\\\"New password\\\"],\\\"hXzOVo\\\":[\\\"Next\\\"],\\\"UaXeX3\\\":[\\\"Okay\\\"],\\\"yDlXDJ\\\":[\\\"Only letters, numbers, and hyphens\\\"],\\\"8ZsakT\\\":[\\\"Password\\\"],\\\"osAB4a\\\":[\\\"Password strength\\\"],\\\"xfNKwI\\\":[\\\"Password strength indicator\\\"],\\\"fSy6T1\\\":[\\\"Password Updated\\\"],\\\"DKeVgZ\\\":[\\\"Password updated!\\\"],\\\"5CqSPX\\\":[\\\"Password with at least \\\",[\\\"MIN_PASSWORD_LENGTH\\\"],\\\" characters\\\"],\\\"+Z2ZNt\\\":[\\\"Please verify the domain name of the website before entering your password. Never enter your password on a domain you do not trust.\\\"],\\\"LcET2C\\\":[\\\"Privacy Policy\\\"],\\\"1TxdLU\\\":[\\\"Remember this account on this device\\\"],\\\"c7cY3z\\\":[\\\"Requested permissions\\\"],\\\"vJgYMA\\\":[\\\"Reset code\\\"],\\\"KbS2K9\\\":[\\\"Reset Password\\\"],\\\"slOprG\\\":[\\\"Reset your password\\\"],\\\"HB+TbB\\\":[\\\"Select domain\\\"],\\\"o3dwub\\\":[\\\"Select from an existing account\\\"],\\\"CqO9qC\\\":[\\\"Session\\\"],\\\"5lWFkC\\\":[\\\"Sign in\\\"],\\\"N9o7n5\\\":[\\\"Sign in as \\\",[\\\"0\\\"]],\\\"FT1MVS\\\":[\\\"Sign in as...\\\"],\\\"e+RpCP\\\":[\\\"Sign up\\\"],\\\"BEx8rG\\\":[\\\"Step \\\",[\\\"currentPosition\\\"],\\\" of \\\",[\\\"count\\\"]],\\\"LLx/nr\\\":[\\\"Strong\\\"],\\\"hQRttt\\\":[\\\"Submit\\\"],\\\"XYLcNv\\\":[\\\"Support\\\"],\\\"xowcRf\\\":[\\\"Terms of Service\\\"],\\\"D00bHj\\\":[\\\"That handle cannot be used\\\"],\\\"qDdKKD\\\":[\\\"The domain name is not allowed\\\"],\\\"we0QGx\\\":[\\\"The handle contains inappropriate language\\\"],\\\"kPGuFg\\\":[\\\"The handle is already in use\\\"],\\\"LSPrK4\\\":[\\\"The handle is invalid\\\"],\\\"SZKM0t\\\":[\\\"This email is already used\\\"],\\\"T61uiW\\\":[\\\"This handle is reserved\\\"],\\\"5OVfoe\\\":[\\\"This sign-in session has expired\\\"],\\\"LX2sHe\\\":[\\\"Type your desired username\\\"],\\\"Jja+Vn\\\":[\\\"Unexpected server response\\\"],\\\"BWM1dL\\\":[\\\"Uniquely identify you\\\"],\\\"nZx9mr\\\":[\\\"Username or email address\\\"],\\\"nfagfM\\\":[\\\"Valid\\\"],\\\"86GEtW\\\":[\\\"Valid email address or username\\\"],\\\"aIar4b\\\":[\\\"Verify you are human\\\"],\\\"r6y+jM\\\":[\\\"Warning\\\"],\\\"qjBGxf\\\":[\\\"We're so excited to have you join us!\\\"],\\\"9ls/Vs\\\":[\\\"Weak\\\"],\\\"jSVjfa\\\":[\\\"Wrong identifier or password\\\"],\\\"qq6QQ5\\\":[\\\"You are being redirected...\\\"],\\\"B9VwbO\\\":[\\\"You can change this username to any domain name you control after your account is set up.\\\"],\\\"67nRLM\\\":[\\\"You can now sign in with your new password.\\\"],\\\"imRJNy\\\":[\\\"You will receive an email with a \\\\\\\"reset code\\\\\\\". Enter that code here then enter your new password.\\\"],\\\"gdRnT7\\\":[\\\"Your account\\\"],\\\"r/b/p8\\\":[\\\"Your full username will be: \\\",[\\\"0\\\"]],\\\"+qGdcW\\\":[\\\"Your password has been updated!\\\"]}\")as Messages;"],"names":["messages","JSON","parse"],"mappings":"AAAuEA,MAAAA,QAAAA,CAASC,IAAKC,CAAAA,KAAK,CAAC,+yIAAiyJ;;;;"}
@@ -1,4 +0,0 @@
1
- const messages=JSON.parse('{"BVbdlE":["<0/> is asking for permission to access your account (<1/>)."],"4blS0m":["2FA Confirmation"],"S90jaV":["A second authentication factor is required"],"myiH7A":["Access your account data (except chat messages)"],"kJrqQq":["Access your chat messages"],"AeXO77":["Account"],"FTT4a4":["Already have a code?"],"eYNzrj":["An application on your device"],"vW+T+d":["An unknown error occurred"],"+TaG50":["Another account"],"OX6vme":["Authenticate"],"yIVrHZ":["Authorize"],"iH8pgl":["Back"],"4Rgp24":["Between ",["minLength"]," and ",["maxLength"]," characters"],"/aj5l4":["By clicking <0>Authorize</0>, you allow this application to perform the following actions in accordance with their <1>terms of service</1> and <2>privacy policy</2>:"],"mBUXx0":["By creating an account you agree to the ",["0"]," and the ",["1"]," of this service."],"dEgA5A":["Cancel"],"B+Yy3b":["Check your ",["0"]," email for a login code and enter it here."],"khEQ02":["Choose a username"],"EWPtMO":["Code"],"7VpPHA":["Confirm"],"HaGV2g":["Confirm your password to continue"],"ioZOzk":["Confirmation code"],"mpt9T+":["Create a new account"],"IS0nrP":["Create Account"],"54JiGG":["Deny access"],"Nu4oKW":["Description"],"O3oNi5":["Email"],"ATGYL1":["Email address"],"3tOlz6":["Enter a password"],"xg/UcZ":["Enter the code you received to reset your password."],"cHrOqs":["Enter the email you used to create your account. We\'ll send you a \\"reset code\\" so you can set a new password."],"xRPn3U":["Enter your email address"],"0StR7t":["Enter your new password"],"NgaR6B":["Enter your password"],"T0KLp4":["Enter your username and password"],"SlfejT":["Error"],"/Ltc/k":["Extra"],"dn8X5t":["Forgot Password"],"F4OP4y":["Forgot?"],"QdVx1C":["Grant access to your <0>",["0"],"</0> account"],"87VTIH":["Having trouble? <0>Contact support</0>"],"vLyv1R":["Hide"],"i0qMbr":["Home"],"sJGljQ":["Identifier"],"vHJQ4A":["Interface language selector"],"JHB/Ky":["Invalid"],"6KlkHI":["Invite code"],"Esfg1M":["Let\'s get your password reset!"],"UCOd1e":["Login complete"],"cR9UpQ":["Login to account that is not listed"],"0hTJM+":["Looks like ",["example"]],"huXYDE":["Make visible"],"VU3Nrn":["Missing"],"dvYuhh":["Moderate"],"6YtxFj":["Name"],"/nT6AE":["New password"],"hXzOVo":["Next"],"UaXeX3":["Okay"],"yDlXDJ":["Only letters, numbers, and hyphens"],"8ZsakT":["Password"],"osAB4a":["Password strength"],"xfNKwI":["Password strength indicator"],"fSy6T1":["Password Updated"],"DKeVgZ":["Password updated!"],"5CqSPX":["Password with at least ",["MIN_PASSWORD_LENGTH"]," characters"],"+Z2ZNt":["Please verify the domain name of the website before entering your password. Never enter your password on a domain you do not trust."],"LcET2C":["Privacy Policy"],"1TxdLU":["Remember this account on this device"],"c7cY3z":["Requested permissions"],"vJgYMA":["Reset code"],"KbS2K9":["Reset Password"],"slOprG":["Reset your password"],"HB+TbB":["Select domain"],"o3dwub":["Select from an existing account"],"CqO9qC":["Session"],"5lWFkC":["Sign in"],"N9o7n5":["Sign in as ",["0"]],"FT1MVS":["Sign in as..."],"e+RpCP":["Sign up"],"BEx8rG":["Step ",["currentPosition"]," of ",["count"]],"LLx/nr":["Strong"],"hQRttt":["Submit"],"XYLcNv":["Support"],"xowcRf":["Terms of Service"],"D00bHj":["That handle cannot be used"],"qDdKKD":["The domain name is not allowed"],"we0QGx":["The handle contains inappropriate language"],"kPGuFg":["The handle is already in use"],"LSPrK4":["The handle is invalid"],"SZKM0t":["This email is already used"],"T61uiW":["This handle is reserved"],"5OVfoe":["This sign-in session has expired"],"LX2sHe":["Type your desired username"],"Jja+Vn":["Unexpected server response"],"BWM1dL":["Uniquely identify you"],"nZx9mr":["Username or email address"],"nfagfM":["Valid"],"86GEtW":["Valid email address or username"],"aIar4b":["Verify you are human"],"r6y+jM":["Warning"],"qjBGxf":["We\'re so excited to have you join us!"],"9ls/Vs":["Weak"],"jSVjfa":["Wrong identifier or password"],"qq6QQ5":["You are being redirected..."],"B9VwbO":["You can change this username to any domain name you control after your account is set up."],"67nRLM":["You can now sign in with your new password."],"imRJNy":["You will receive an email with a \\"reset code\\". Enter that code here then enter your new password."],"gdRnT7":["Your account"],"r/b/p8":["Your full username will be: ",["0"]],"+qGdcW":["Your password has been updated!"]}');
2
-
3
- export { messages };
4
- //# sourceMappingURL=messages-Bu-TJhml.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"messages-Bu-TJhml.js","sources":["../../../src/assets/app/locales/tr/messages.ts"],"sourcesContent":["/*eslint-disable*/import type{Messages}from\"@lingui/core\";export const messages=JSON.parse(\"{\\\"BVbdlE\\\":[\\\"<0/> is asking for permission to access your account (<1/>).\\\"],\\\"4blS0m\\\":[\\\"2FA Confirmation\\\"],\\\"S90jaV\\\":[\\\"A second authentication factor is required\\\"],\\\"myiH7A\\\":[\\\"Access your account data (except chat messages)\\\"],\\\"kJrqQq\\\":[\\\"Access your chat messages\\\"],\\\"AeXO77\\\":[\\\"Account\\\"],\\\"FTT4a4\\\":[\\\"Already have a code?\\\"],\\\"eYNzrj\\\":[\\\"An application on your device\\\"],\\\"vW+T+d\\\":[\\\"An unknown error occurred\\\"],\\\"+TaG50\\\":[\\\"Another account\\\"],\\\"OX6vme\\\":[\\\"Authenticate\\\"],\\\"yIVrHZ\\\":[\\\"Authorize\\\"],\\\"iH8pgl\\\":[\\\"Back\\\"],\\\"4Rgp24\\\":[\\\"Between \\\",[\\\"minLength\\\"],\\\" and \\\",[\\\"maxLength\\\"],\\\" characters\\\"],\\\"/aj5l4\\\":[\\\"By clicking <0>Authorize</0>, you allow this application to perform the following actions in accordance with their <1>terms of service</1> and <2>privacy policy</2>:\\\"],\\\"mBUXx0\\\":[\\\"By creating an account you agree to the \\\",[\\\"0\\\"],\\\" and the \\\",[\\\"1\\\"],\\\" of this service.\\\"],\\\"dEgA5A\\\":[\\\"Cancel\\\"],\\\"B+Yy3b\\\":[\\\"Check your \\\",[\\\"0\\\"],\\\" email for a login code and enter it here.\\\"],\\\"khEQ02\\\":[\\\"Choose a username\\\"],\\\"EWPtMO\\\":[\\\"Code\\\"],\\\"7VpPHA\\\":[\\\"Confirm\\\"],\\\"HaGV2g\\\":[\\\"Confirm your password to continue\\\"],\\\"ioZOzk\\\":[\\\"Confirmation code\\\"],\\\"mpt9T+\\\":[\\\"Create a new account\\\"],\\\"IS0nrP\\\":[\\\"Create Account\\\"],\\\"54JiGG\\\":[\\\"Deny access\\\"],\\\"Nu4oKW\\\":[\\\"Description\\\"],\\\"O3oNi5\\\":[\\\"Email\\\"],\\\"ATGYL1\\\":[\\\"Email address\\\"],\\\"3tOlz6\\\":[\\\"Enter a password\\\"],\\\"xg/UcZ\\\":[\\\"Enter the code you received to reset your password.\\\"],\\\"cHrOqs\\\":[\\\"Enter the email you used to create your account. We'll send you a \\\\\\\"reset code\\\\\\\" so you can set a new password.\\\"],\\\"xRPn3U\\\":[\\\"Enter your email address\\\"],\\\"0StR7t\\\":[\\\"Enter your new password\\\"],\\\"NgaR6B\\\":[\\\"Enter your password\\\"],\\\"T0KLp4\\\":[\\\"Enter your username and password\\\"],\\\"SlfejT\\\":[\\\"Error\\\"],\\\"/Ltc/k\\\":[\\\"Extra\\\"],\\\"dn8X5t\\\":[\\\"Forgot Password\\\"],\\\"F4OP4y\\\":[\\\"Forgot?\\\"],\\\"QdVx1C\\\":[\\\"Grant access to your <0>\\\",[\\\"0\\\"],\\\"</0> account\\\"],\\\"87VTIH\\\":[\\\"Having trouble? <0>Contact support</0>\\\"],\\\"vLyv1R\\\":[\\\"Hide\\\"],\\\"i0qMbr\\\":[\\\"Home\\\"],\\\"sJGljQ\\\":[\\\"Identifier\\\"],\\\"vHJQ4A\\\":[\\\"Interface language selector\\\"],\\\"JHB/Ky\\\":[\\\"Invalid\\\"],\\\"6KlkHI\\\":[\\\"Invite code\\\"],\\\"Esfg1M\\\":[\\\"Let's get your password reset!\\\"],\\\"UCOd1e\\\":[\\\"Login complete\\\"],\\\"cR9UpQ\\\":[\\\"Login to account that is not listed\\\"],\\\"0hTJM+\\\":[\\\"Looks like \\\",[\\\"example\\\"]],\\\"huXYDE\\\":[\\\"Make visible\\\"],\\\"VU3Nrn\\\":[\\\"Missing\\\"],\\\"dvYuhh\\\":[\\\"Moderate\\\"],\\\"6YtxFj\\\":[\\\"Name\\\"],\\\"/nT6AE\\\":[\\\"New password\\\"],\\\"hXzOVo\\\":[\\\"Next\\\"],\\\"UaXeX3\\\":[\\\"Okay\\\"],\\\"yDlXDJ\\\":[\\\"Only letters, numbers, and hyphens\\\"],\\\"8ZsakT\\\":[\\\"Password\\\"],\\\"osAB4a\\\":[\\\"Password strength\\\"],\\\"xfNKwI\\\":[\\\"Password strength indicator\\\"],\\\"fSy6T1\\\":[\\\"Password Updated\\\"],\\\"DKeVgZ\\\":[\\\"Password updated!\\\"],\\\"5CqSPX\\\":[\\\"Password with at least \\\",[\\\"MIN_PASSWORD_LENGTH\\\"],\\\" characters\\\"],\\\"+Z2ZNt\\\":[\\\"Please verify the domain name of the website before entering your password. Never enter your password on a domain you do not trust.\\\"],\\\"LcET2C\\\":[\\\"Privacy Policy\\\"],\\\"1TxdLU\\\":[\\\"Remember this account on this device\\\"],\\\"c7cY3z\\\":[\\\"Requested permissions\\\"],\\\"vJgYMA\\\":[\\\"Reset code\\\"],\\\"KbS2K9\\\":[\\\"Reset Password\\\"],\\\"slOprG\\\":[\\\"Reset your password\\\"],\\\"HB+TbB\\\":[\\\"Select domain\\\"],\\\"o3dwub\\\":[\\\"Select from an existing account\\\"],\\\"CqO9qC\\\":[\\\"Session\\\"],\\\"5lWFkC\\\":[\\\"Sign in\\\"],\\\"N9o7n5\\\":[\\\"Sign in as \\\",[\\\"0\\\"]],\\\"FT1MVS\\\":[\\\"Sign in as...\\\"],\\\"e+RpCP\\\":[\\\"Sign up\\\"],\\\"BEx8rG\\\":[\\\"Step \\\",[\\\"currentPosition\\\"],\\\" of \\\",[\\\"count\\\"]],\\\"LLx/nr\\\":[\\\"Strong\\\"],\\\"hQRttt\\\":[\\\"Submit\\\"],\\\"XYLcNv\\\":[\\\"Support\\\"],\\\"xowcRf\\\":[\\\"Terms of Service\\\"],\\\"D00bHj\\\":[\\\"That handle cannot be used\\\"],\\\"qDdKKD\\\":[\\\"The domain name is not allowed\\\"],\\\"we0QGx\\\":[\\\"The handle contains inappropriate language\\\"],\\\"kPGuFg\\\":[\\\"The handle is already in use\\\"],\\\"LSPrK4\\\":[\\\"The handle is invalid\\\"],\\\"SZKM0t\\\":[\\\"This email is already used\\\"],\\\"T61uiW\\\":[\\\"This handle is reserved\\\"],\\\"5OVfoe\\\":[\\\"This sign-in session has expired\\\"],\\\"LX2sHe\\\":[\\\"Type your desired username\\\"],\\\"Jja+Vn\\\":[\\\"Unexpected server response\\\"],\\\"BWM1dL\\\":[\\\"Uniquely identify you\\\"],\\\"nZx9mr\\\":[\\\"Username or email address\\\"],\\\"nfagfM\\\":[\\\"Valid\\\"],\\\"86GEtW\\\":[\\\"Valid email address or username\\\"],\\\"aIar4b\\\":[\\\"Verify you are human\\\"],\\\"r6y+jM\\\":[\\\"Warning\\\"],\\\"qjBGxf\\\":[\\\"We're so excited to have you join us!\\\"],\\\"9ls/Vs\\\":[\\\"Weak\\\"],\\\"jSVjfa\\\":[\\\"Wrong identifier or password\\\"],\\\"qq6QQ5\\\":[\\\"You are being redirected...\\\"],\\\"B9VwbO\\\":[\\\"You can change this username to any domain name you control after your account is set up.\\\"],\\\"67nRLM\\\":[\\\"You can now sign in with your new password.\\\"],\\\"imRJNy\\\":[\\\"You will receive an email with a \\\\\\\"reset code\\\\\\\". Enter that code here then enter your new password.\\\"],\\\"gdRnT7\\\":[\\\"Your account\\\"],\\\"r/b/p8\\\":[\\\"Your full username will be: \\\",[\\\"0\\\"]],\\\"+qGdcW\\\":[\\\"Your password has been updated!\\\"]}\")as Messages;"],"names":["messages","JSON","parse"],"mappings":"AAAuEA,MAAAA,QAAAA,CAASC,IAAKC,CAAAA,KAAK,CAAC,+yIAAiyJ;;;;"}
@@ -1,4 +0,0 @@
1
- const messages=JSON.parse('{"BVbdlE":["<0/> is asking for permission to access your account (<1/>)."],"4blS0m":["2FA Confirmation"],"S90jaV":["A second authentication factor is required"],"myiH7A":["Access your account data (except chat messages)"],"kJrqQq":["Access your chat messages"],"AeXO77":["Account"],"FTT4a4":["Already have a code?"],"eYNzrj":["An application on your device"],"vW+T+d":["An unknown error occurred"],"+TaG50":["Another account"],"OX6vme":["Authenticate"],"yIVrHZ":["Authorize"],"iH8pgl":["Back"],"4Rgp24":["Between ",["minLength"]," and ",["maxLength"]," characters"],"/aj5l4":["By clicking <0>Authorize</0>, you allow this application to perform the following actions in accordance with their <1>terms of service</1> and <2>privacy policy</2>:"],"mBUXx0":["By creating an account you agree to the ",["0"]," and the ",["1"]," of this service."],"dEgA5A":["Cancel"],"B+Yy3b":["Check your ",["0"]," email for a login code and enter it here."],"khEQ02":["Choose a username"],"EWPtMO":["Code"],"7VpPHA":["Confirm"],"HaGV2g":["Confirm your password to continue"],"ioZOzk":["Confirmation code"],"mpt9T+":["Create a new account"],"IS0nrP":["Create Account"],"54JiGG":["Deny access"],"Nu4oKW":["Description"],"O3oNi5":["Email"],"ATGYL1":["Email address"],"3tOlz6":["Enter a password"],"xg/UcZ":["Enter the code you received to reset your password."],"cHrOqs":["Enter the email you used to create your account. We\'ll send you a \\"reset code\\" so you can set a new password."],"xRPn3U":["Enter your email address"],"0StR7t":["Enter your new password"],"NgaR6B":["Enter your password"],"T0KLp4":["Enter your username and password"],"SlfejT":["Error"],"/Ltc/k":["Extra"],"dn8X5t":["Forgot Password"],"F4OP4y":["Forgot?"],"QdVx1C":["Grant access to your <0>",["0"],"</0> account"],"87VTIH":["Having trouble? <0>Contact support</0>"],"vLyv1R":["Hide"],"i0qMbr":["Home"],"sJGljQ":["Identifier"],"vHJQ4A":["Interface language selector"],"JHB/Ky":["Invalid"],"6KlkHI":["Invite code"],"Esfg1M":["Let\'s get your password reset!"],"UCOd1e":["Login complete"],"cR9UpQ":["Login to account that is not listed"],"0hTJM+":["Looks like ",["example"]],"huXYDE":["Make visible"],"VU3Nrn":["Missing"],"dvYuhh":["Moderate"],"6YtxFj":["Name"],"/nT6AE":["New password"],"hXzOVo":["Next"],"UaXeX3":["Okay"],"yDlXDJ":["Only letters, numbers, and hyphens"],"8ZsakT":["Password"],"osAB4a":["Password strength"],"xfNKwI":["Password strength indicator"],"fSy6T1":["Password Updated"],"DKeVgZ":["Password updated!"],"5CqSPX":["Password with at least ",["MIN_PASSWORD_LENGTH"]," characters"],"+Z2ZNt":["Please verify the domain name of the website before entering your password. Never enter your password on a domain you do not trust."],"LcET2C":["Privacy Policy"],"1TxdLU":["Remember this account on this device"],"c7cY3z":["Requested permissions"],"vJgYMA":["Reset code"],"KbS2K9":["Reset Password"],"slOprG":["Reset your password"],"HB+TbB":["Select domain"],"o3dwub":["Select from an existing account"],"CqO9qC":["Session"],"5lWFkC":["Sign in"],"N9o7n5":["Sign in as ",["0"]],"FT1MVS":["Sign in as..."],"e+RpCP":["Sign up"],"BEx8rG":["Step ",["currentPosition"]," of ",["count"]],"LLx/nr":["Strong"],"hQRttt":["Submit"],"XYLcNv":["Support"],"xowcRf":["Terms of Service"],"D00bHj":["That handle cannot be used"],"qDdKKD":["The domain name is not allowed"],"we0QGx":["The handle contains inappropriate language"],"kPGuFg":["The handle is already in use"],"LSPrK4":["The handle is invalid"],"SZKM0t":["This email is already used"],"T61uiW":["This handle is reserved"],"5OVfoe":["This sign-in session has expired"],"LX2sHe":["Type your desired username"],"Jja+Vn":["Unexpected server response"],"BWM1dL":["Uniquely identify you"],"nZx9mr":["Username or email address"],"nfagfM":["Valid"],"86GEtW":["Valid email address or username"],"aIar4b":["Verify you are human"],"r6y+jM":["Warning"],"qjBGxf":["We\'re so excited to have you join us!"],"9ls/Vs":["Weak"],"jSVjfa":["Wrong identifier or password"],"qq6QQ5":["You are being redirected..."],"B9VwbO":["You can change this username to any domain name you control after your account is set up."],"67nRLM":["You can now sign in with your new password."],"imRJNy":["You will receive an email with a \\"reset code\\". Enter that code here then enter your new password."],"gdRnT7":["Your account"],"r/b/p8":["Your full username will be: ",["0"]],"+qGdcW":["Your password has been updated!"]}');
2
-
3
- export { messages };
4
- //# sourceMappingURL=messages-BvOKnBQk.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"messages-BvOKnBQk.js","sources":["../../../src/assets/app/locales/ga/messages.ts"],"sourcesContent":["/*eslint-disable*/import type{Messages}from\"@lingui/core\";export const messages=JSON.parse(\"{\\\"BVbdlE\\\":[\\\"<0/> is asking for permission to access your account (<1/>).\\\"],\\\"4blS0m\\\":[\\\"2FA Confirmation\\\"],\\\"S90jaV\\\":[\\\"A second authentication factor is required\\\"],\\\"myiH7A\\\":[\\\"Access your account data (except chat messages)\\\"],\\\"kJrqQq\\\":[\\\"Access your chat messages\\\"],\\\"AeXO77\\\":[\\\"Account\\\"],\\\"FTT4a4\\\":[\\\"Already have a code?\\\"],\\\"eYNzrj\\\":[\\\"An application on your device\\\"],\\\"vW+T+d\\\":[\\\"An unknown error occurred\\\"],\\\"+TaG50\\\":[\\\"Another account\\\"],\\\"OX6vme\\\":[\\\"Authenticate\\\"],\\\"yIVrHZ\\\":[\\\"Authorize\\\"],\\\"iH8pgl\\\":[\\\"Back\\\"],\\\"4Rgp24\\\":[\\\"Between \\\",[\\\"minLength\\\"],\\\" and \\\",[\\\"maxLength\\\"],\\\" characters\\\"],\\\"/aj5l4\\\":[\\\"By clicking <0>Authorize</0>, you allow this application to perform the following actions in accordance with their <1>terms of service</1> and <2>privacy policy</2>:\\\"],\\\"mBUXx0\\\":[\\\"By creating an account you agree to the \\\",[\\\"0\\\"],\\\" and the \\\",[\\\"1\\\"],\\\" of this service.\\\"],\\\"dEgA5A\\\":[\\\"Cancel\\\"],\\\"B+Yy3b\\\":[\\\"Check your \\\",[\\\"0\\\"],\\\" email for a login code and enter it here.\\\"],\\\"khEQ02\\\":[\\\"Choose a username\\\"],\\\"EWPtMO\\\":[\\\"Code\\\"],\\\"7VpPHA\\\":[\\\"Confirm\\\"],\\\"HaGV2g\\\":[\\\"Confirm your password to continue\\\"],\\\"ioZOzk\\\":[\\\"Confirmation code\\\"],\\\"mpt9T+\\\":[\\\"Create a new account\\\"],\\\"IS0nrP\\\":[\\\"Create Account\\\"],\\\"54JiGG\\\":[\\\"Deny access\\\"],\\\"Nu4oKW\\\":[\\\"Description\\\"],\\\"O3oNi5\\\":[\\\"Email\\\"],\\\"ATGYL1\\\":[\\\"Email address\\\"],\\\"3tOlz6\\\":[\\\"Enter a password\\\"],\\\"xg/UcZ\\\":[\\\"Enter the code you received to reset your password.\\\"],\\\"cHrOqs\\\":[\\\"Enter the email you used to create your account. We'll send you a \\\\\\\"reset code\\\\\\\" so you can set a new password.\\\"],\\\"xRPn3U\\\":[\\\"Enter your email address\\\"],\\\"0StR7t\\\":[\\\"Enter your new password\\\"],\\\"NgaR6B\\\":[\\\"Enter your password\\\"],\\\"T0KLp4\\\":[\\\"Enter your username and password\\\"],\\\"SlfejT\\\":[\\\"Error\\\"],\\\"/Ltc/k\\\":[\\\"Extra\\\"],\\\"dn8X5t\\\":[\\\"Forgot Password\\\"],\\\"F4OP4y\\\":[\\\"Forgot?\\\"],\\\"QdVx1C\\\":[\\\"Grant access to your <0>\\\",[\\\"0\\\"],\\\"</0> account\\\"],\\\"87VTIH\\\":[\\\"Having trouble? <0>Contact support</0>\\\"],\\\"vLyv1R\\\":[\\\"Hide\\\"],\\\"i0qMbr\\\":[\\\"Home\\\"],\\\"sJGljQ\\\":[\\\"Identifier\\\"],\\\"vHJQ4A\\\":[\\\"Interface language selector\\\"],\\\"JHB/Ky\\\":[\\\"Invalid\\\"],\\\"6KlkHI\\\":[\\\"Invite code\\\"],\\\"Esfg1M\\\":[\\\"Let's get your password reset!\\\"],\\\"UCOd1e\\\":[\\\"Login complete\\\"],\\\"cR9UpQ\\\":[\\\"Login to account that is not listed\\\"],\\\"0hTJM+\\\":[\\\"Looks like \\\",[\\\"example\\\"]],\\\"huXYDE\\\":[\\\"Make visible\\\"],\\\"VU3Nrn\\\":[\\\"Missing\\\"],\\\"dvYuhh\\\":[\\\"Moderate\\\"],\\\"6YtxFj\\\":[\\\"Name\\\"],\\\"/nT6AE\\\":[\\\"New password\\\"],\\\"hXzOVo\\\":[\\\"Next\\\"],\\\"UaXeX3\\\":[\\\"Okay\\\"],\\\"yDlXDJ\\\":[\\\"Only letters, numbers, and hyphens\\\"],\\\"8ZsakT\\\":[\\\"Password\\\"],\\\"osAB4a\\\":[\\\"Password strength\\\"],\\\"xfNKwI\\\":[\\\"Password strength indicator\\\"],\\\"fSy6T1\\\":[\\\"Password Updated\\\"],\\\"DKeVgZ\\\":[\\\"Password updated!\\\"],\\\"5CqSPX\\\":[\\\"Password with at least \\\",[\\\"MIN_PASSWORD_LENGTH\\\"],\\\" characters\\\"],\\\"+Z2ZNt\\\":[\\\"Please verify the domain name of the website before entering your password. Never enter your password on a domain you do not trust.\\\"],\\\"LcET2C\\\":[\\\"Privacy Policy\\\"],\\\"1TxdLU\\\":[\\\"Remember this account on this device\\\"],\\\"c7cY3z\\\":[\\\"Requested permissions\\\"],\\\"vJgYMA\\\":[\\\"Reset code\\\"],\\\"KbS2K9\\\":[\\\"Reset Password\\\"],\\\"slOprG\\\":[\\\"Reset your password\\\"],\\\"HB+TbB\\\":[\\\"Select domain\\\"],\\\"o3dwub\\\":[\\\"Select from an existing account\\\"],\\\"CqO9qC\\\":[\\\"Session\\\"],\\\"5lWFkC\\\":[\\\"Sign in\\\"],\\\"N9o7n5\\\":[\\\"Sign in as \\\",[\\\"0\\\"]],\\\"FT1MVS\\\":[\\\"Sign in as...\\\"],\\\"e+RpCP\\\":[\\\"Sign up\\\"],\\\"BEx8rG\\\":[\\\"Step \\\",[\\\"currentPosition\\\"],\\\" of \\\",[\\\"count\\\"]],\\\"LLx/nr\\\":[\\\"Strong\\\"],\\\"hQRttt\\\":[\\\"Submit\\\"],\\\"XYLcNv\\\":[\\\"Support\\\"],\\\"xowcRf\\\":[\\\"Terms of Service\\\"],\\\"D00bHj\\\":[\\\"That handle cannot be used\\\"],\\\"qDdKKD\\\":[\\\"The domain name is not allowed\\\"],\\\"we0QGx\\\":[\\\"The handle contains inappropriate language\\\"],\\\"kPGuFg\\\":[\\\"The handle is already in use\\\"],\\\"LSPrK4\\\":[\\\"The handle is invalid\\\"],\\\"SZKM0t\\\":[\\\"This email is already used\\\"],\\\"T61uiW\\\":[\\\"This handle is reserved\\\"],\\\"5OVfoe\\\":[\\\"This sign-in session has expired\\\"],\\\"LX2sHe\\\":[\\\"Type your desired username\\\"],\\\"Jja+Vn\\\":[\\\"Unexpected server response\\\"],\\\"BWM1dL\\\":[\\\"Uniquely identify you\\\"],\\\"nZx9mr\\\":[\\\"Username or email address\\\"],\\\"nfagfM\\\":[\\\"Valid\\\"],\\\"86GEtW\\\":[\\\"Valid email address or username\\\"],\\\"aIar4b\\\":[\\\"Verify you are human\\\"],\\\"r6y+jM\\\":[\\\"Warning\\\"],\\\"qjBGxf\\\":[\\\"We're so excited to have you join us!\\\"],\\\"9ls/Vs\\\":[\\\"Weak\\\"],\\\"jSVjfa\\\":[\\\"Wrong identifier or password\\\"],\\\"qq6QQ5\\\":[\\\"You are being redirected...\\\"],\\\"B9VwbO\\\":[\\\"You can change this username to any domain name you control after your account is set up.\\\"],\\\"67nRLM\\\":[\\\"You can now sign in with your new password.\\\"],\\\"imRJNy\\\":[\\\"You will receive an email with a \\\\\\\"reset code\\\\\\\". Enter that code here then enter your new password.\\\"],\\\"gdRnT7\\\":[\\\"Your account\\\"],\\\"r/b/p8\\\":[\\\"Your full username will be: \\\",[\\\"0\\\"]],\\\"+qGdcW\\\":[\\\"Your password has been updated!\\\"]}\")as Messages;"],"names":["messages","JSON","parse"],"mappings":"AAAuEA,MAAAA,QAAAA,CAASC,IAAKC,CAAAA,KAAK,CAAC,+yIAAiyJ;;;;"}
@@ -1,4 +0,0 @@
1
- const messages=JSON.parse('{"BVbdlE":["<0/> is asking for permission to access your account (<1/>)."],"4blS0m":["2FA Confirmation"],"S90jaV":["A second authentication factor is required"],"myiH7A":["Access your account data (except chat messages)"],"kJrqQq":["Access your chat messages"],"AeXO77":["Account"],"FTT4a4":["Already have a code?"],"eYNzrj":["An application on your device"],"vW+T+d":["An unknown error occurred"],"+TaG50":["Another account"],"OX6vme":["Authenticate"],"yIVrHZ":["Authorize"],"iH8pgl":["Back"],"4Rgp24":["Between ",["minLength"]," and ",["maxLength"]," characters"],"/aj5l4":["By clicking <0>Authorize</0>, you allow this application to perform the following actions in accordance with their <1>terms of service</1> and <2>privacy policy</2>:"],"mBUXx0":["By creating an account you agree to the ",["0"]," and the ",["1"]," of this service."],"dEgA5A":["Cancel"],"B+Yy3b":["Check your ",["0"]," email for a login code and enter it here."],"khEQ02":["Choose a username"],"EWPtMO":["Code"],"7VpPHA":["Confirm"],"HaGV2g":["Confirm your password to continue"],"ioZOzk":["Confirmation code"],"mpt9T+":["Create a new account"],"IS0nrP":["Create Account"],"54JiGG":["Deny access"],"Nu4oKW":["Description"],"O3oNi5":["Email"],"ATGYL1":["Email address"],"3tOlz6":["Enter a password"],"xg/UcZ":["Enter the code you received to reset your password."],"cHrOqs":["Enter the email you used to create your account. We\'ll send you a \\"reset code\\" so you can set a new password."],"xRPn3U":["Enter your email address"],"0StR7t":["Enter your new password"],"NgaR6B":["Enter your password"],"T0KLp4":["Enter your username and password"],"SlfejT":["Error"],"/Ltc/k":["Extra"],"dn8X5t":["Forgot Password"],"F4OP4y":["Forgot?"],"QdVx1C":["Grant access to your <0>",["0"],"</0> account"],"87VTIH":["Having trouble? <0>Contact support</0>"],"vLyv1R":["Hide"],"i0qMbr":["Home"],"sJGljQ":["Identifier"],"vHJQ4A":["Interface language selector"],"JHB/Ky":["Invalid"],"6KlkHI":["Invite code"],"Esfg1M":["Let\'s get your password reset!"],"UCOd1e":["Login complete"],"cR9UpQ":["Login to account that is not listed"],"0hTJM+":["Looks like ",["example"]],"huXYDE":["Make visible"],"VU3Nrn":["Missing"],"dvYuhh":["Moderate"],"6YtxFj":["Name"],"/nT6AE":["New password"],"hXzOVo":["Next"],"UaXeX3":["Okay"],"yDlXDJ":["Only letters, numbers, and hyphens"],"8ZsakT":["Password"],"osAB4a":["Password strength"],"xfNKwI":["Password strength indicator"],"fSy6T1":["Password Updated"],"DKeVgZ":["Password updated!"],"5CqSPX":["Password with at least ",["MIN_PASSWORD_LENGTH"]," characters"],"+Z2ZNt":["Please verify the domain name of the website before entering your password. Never enter your password on a domain you do not trust."],"LcET2C":["Privacy Policy"],"1TxdLU":["Remember this account on this device"],"c7cY3z":["Requested permissions"],"vJgYMA":["Reset code"],"KbS2K9":["Reset Password"],"slOprG":["Reset your password"],"HB+TbB":["Select domain"],"o3dwub":["Select from an existing account"],"CqO9qC":["Session"],"5lWFkC":["Sign in"],"N9o7n5":["Sign in as ",["0"]],"FT1MVS":["Sign in as..."],"e+RpCP":["Sign up"],"BEx8rG":["Step ",["currentPosition"]," of ",["count"]],"LLx/nr":["Strong"],"hQRttt":["Submit"],"XYLcNv":["Support"],"xowcRf":["Terms of Service"],"D00bHj":["That handle cannot be used"],"qDdKKD":["The domain name is not allowed"],"we0QGx":["The handle contains inappropriate language"],"kPGuFg":["The handle is already in use"],"LSPrK4":["The handle is invalid"],"SZKM0t":["This email is already used"],"T61uiW":["This handle is reserved"],"5OVfoe":["This sign-in session has expired"],"LX2sHe":["Type your desired username"],"Jja+Vn":["Unexpected server response"],"BWM1dL":["Uniquely identify you"],"nZx9mr":["Username or email address"],"nfagfM":["Valid"],"86GEtW":["Valid email address or username"],"aIar4b":["Verify you are human"],"r6y+jM":["Warning"],"qjBGxf":["We\'re so excited to have you join us!"],"9ls/Vs":["Weak"],"jSVjfa":["Wrong identifier or password"],"qq6QQ5":["You are being redirected..."],"B9VwbO":["You can change this username to any domain name you control after your account is set up."],"67nRLM":["You can now sign in with your new password."],"imRJNy":["You will receive an email with a \\"reset code\\". Enter that code here then enter your new password."],"gdRnT7":["Your account"],"r/b/p8":["Your full username will be: ",["0"]],"+qGdcW":["Your password has been updated!"]}');
2
-
3
- export { messages };
4
- //# sourceMappingURL=messages-BxDzCiWz.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"messages-BxDzCiWz.js","sources":["../../../src/assets/app/locales/pt-BR/messages.ts"],"sourcesContent":["/*eslint-disable*/import type{Messages}from\"@lingui/core\";export const messages=JSON.parse(\"{\\\"BVbdlE\\\":[\\\"<0/> is asking for permission to access your account (<1/>).\\\"],\\\"4blS0m\\\":[\\\"2FA Confirmation\\\"],\\\"S90jaV\\\":[\\\"A second authentication factor is required\\\"],\\\"myiH7A\\\":[\\\"Access your account data (except chat messages)\\\"],\\\"kJrqQq\\\":[\\\"Access your chat messages\\\"],\\\"AeXO77\\\":[\\\"Account\\\"],\\\"FTT4a4\\\":[\\\"Already have a code?\\\"],\\\"eYNzrj\\\":[\\\"An application on your device\\\"],\\\"vW+T+d\\\":[\\\"An unknown error occurred\\\"],\\\"+TaG50\\\":[\\\"Another account\\\"],\\\"OX6vme\\\":[\\\"Authenticate\\\"],\\\"yIVrHZ\\\":[\\\"Authorize\\\"],\\\"iH8pgl\\\":[\\\"Back\\\"],\\\"4Rgp24\\\":[\\\"Between \\\",[\\\"minLength\\\"],\\\" and \\\",[\\\"maxLength\\\"],\\\" characters\\\"],\\\"/aj5l4\\\":[\\\"By clicking <0>Authorize</0>, you allow this application to perform the following actions in accordance with their <1>terms of service</1> and <2>privacy policy</2>:\\\"],\\\"mBUXx0\\\":[\\\"By creating an account you agree to the \\\",[\\\"0\\\"],\\\" and the \\\",[\\\"1\\\"],\\\" of this service.\\\"],\\\"dEgA5A\\\":[\\\"Cancel\\\"],\\\"B+Yy3b\\\":[\\\"Check your \\\",[\\\"0\\\"],\\\" email for a login code and enter it here.\\\"],\\\"khEQ02\\\":[\\\"Choose a username\\\"],\\\"EWPtMO\\\":[\\\"Code\\\"],\\\"7VpPHA\\\":[\\\"Confirm\\\"],\\\"HaGV2g\\\":[\\\"Confirm your password to continue\\\"],\\\"ioZOzk\\\":[\\\"Confirmation code\\\"],\\\"mpt9T+\\\":[\\\"Create a new account\\\"],\\\"IS0nrP\\\":[\\\"Create Account\\\"],\\\"54JiGG\\\":[\\\"Deny access\\\"],\\\"Nu4oKW\\\":[\\\"Description\\\"],\\\"O3oNi5\\\":[\\\"Email\\\"],\\\"ATGYL1\\\":[\\\"Email address\\\"],\\\"3tOlz6\\\":[\\\"Enter a password\\\"],\\\"xg/UcZ\\\":[\\\"Enter the code you received to reset your password.\\\"],\\\"cHrOqs\\\":[\\\"Enter the email you used to create your account. We'll send you a \\\\\\\"reset code\\\\\\\" so you can set a new password.\\\"],\\\"xRPn3U\\\":[\\\"Enter your email address\\\"],\\\"0StR7t\\\":[\\\"Enter your new password\\\"],\\\"NgaR6B\\\":[\\\"Enter your password\\\"],\\\"T0KLp4\\\":[\\\"Enter your username and password\\\"],\\\"SlfejT\\\":[\\\"Error\\\"],\\\"/Ltc/k\\\":[\\\"Extra\\\"],\\\"dn8X5t\\\":[\\\"Forgot Password\\\"],\\\"F4OP4y\\\":[\\\"Forgot?\\\"],\\\"QdVx1C\\\":[\\\"Grant access to your <0>\\\",[\\\"0\\\"],\\\"</0> account\\\"],\\\"87VTIH\\\":[\\\"Having trouble? <0>Contact support</0>\\\"],\\\"vLyv1R\\\":[\\\"Hide\\\"],\\\"i0qMbr\\\":[\\\"Home\\\"],\\\"sJGljQ\\\":[\\\"Identifier\\\"],\\\"vHJQ4A\\\":[\\\"Interface language selector\\\"],\\\"JHB/Ky\\\":[\\\"Invalid\\\"],\\\"6KlkHI\\\":[\\\"Invite code\\\"],\\\"Esfg1M\\\":[\\\"Let's get your password reset!\\\"],\\\"UCOd1e\\\":[\\\"Login complete\\\"],\\\"cR9UpQ\\\":[\\\"Login to account that is not listed\\\"],\\\"0hTJM+\\\":[\\\"Looks like \\\",[\\\"example\\\"]],\\\"huXYDE\\\":[\\\"Make visible\\\"],\\\"VU3Nrn\\\":[\\\"Missing\\\"],\\\"dvYuhh\\\":[\\\"Moderate\\\"],\\\"6YtxFj\\\":[\\\"Name\\\"],\\\"/nT6AE\\\":[\\\"New password\\\"],\\\"hXzOVo\\\":[\\\"Next\\\"],\\\"UaXeX3\\\":[\\\"Okay\\\"],\\\"yDlXDJ\\\":[\\\"Only letters, numbers, and hyphens\\\"],\\\"8ZsakT\\\":[\\\"Password\\\"],\\\"osAB4a\\\":[\\\"Password strength\\\"],\\\"xfNKwI\\\":[\\\"Password strength indicator\\\"],\\\"fSy6T1\\\":[\\\"Password Updated\\\"],\\\"DKeVgZ\\\":[\\\"Password updated!\\\"],\\\"5CqSPX\\\":[\\\"Password with at least \\\",[\\\"MIN_PASSWORD_LENGTH\\\"],\\\" characters\\\"],\\\"+Z2ZNt\\\":[\\\"Please verify the domain name of the website before entering your password. Never enter your password on a domain you do not trust.\\\"],\\\"LcET2C\\\":[\\\"Privacy Policy\\\"],\\\"1TxdLU\\\":[\\\"Remember this account on this device\\\"],\\\"c7cY3z\\\":[\\\"Requested permissions\\\"],\\\"vJgYMA\\\":[\\\"Reset code\\\"],\\\"KbS2K9\\\":[\\\"Reset Password\\\"],\\\"slOprG\\\":[\\\"Reset your password\\\"],\\\"HB+TbB\\\":[\\\"Select domain\\\"],\\\"o3dwub\\\":[\\\"Select from an existing account\\\"],\\\"CqO9qC\\\":[\\\"Session\\\"],\\\"5lWFkC\\\":[\\\"Sign in\\\"],\\\"N9o7n5\\\":[\\\"Sign in as \\\",[\\\"0\\\"]],\\\"FT1MVS\\\":[\\\"Sign in as...\\\"],\\\"e+RpCP\\\":[\\\"Sign up\\\"],\\\"BEx8rG\\\":[\\\"Step \\\",[\\\"currentPosition\\\"],\\\" of \\\",[\\\"count\\\"]],\\\"LLx/nr\\\":[\\\"Strong\\\"],\\\"hQRttt\\\":[\\\"Submit\\\"],\\\"XYLcNv\\\":[\\\"Support\\\"],\\\"xowcRf\\\":[\\\"Terms of Service\\\"],\\\"D00bHj\\\":[\\\"That handle cannot be used\\\"],\\\"qDdKKD\\\":[\\\"The domain name is not allowed\\\"],\\\"we0QGx\\\":[\\\"The handle contains inappropriate language\\\"],\\\"kPGuFg\\\":[\\\"The handle is already in use\\\"],\\\"LSPrK4\\\":[\\\"The handle is invalid\\\"],\\\"SZKM0t\\\":[\\\"This email is already used\\\"],\\\"T61uiW\\\":[\\\"This handle is reserved\\\"],\\\"5OVfoe\\\":[\\\"This sign-in session has expired\\\"],\\\"LX2sHe\\\":[\\\"Type your desired username\\\"],\\\"Jja+Vn\\\":[\\\"Unexpected server response\\\"],\\\"BWM1dL\\\":[\\\"Uniquely identify you\\\"],\\\"nZx9mr\\\":[\\\"Username or email address\\\"],\\\"nfagfM\\\":[\\\"Valid\\\"],\\\"86GEtW\\\":[\\\"Valid email address or username\\\"],\\\"aIar4b\\\":[\\\"Verify you are human\\\"],\\\"r6y+jM\\\":[\\\"Warning\\\"],\\\"qjBGxf\\\":[\\\"We're so excited to have you join us!\\\"],\\\"9ls/Vs\\\":[\\\"Weak\\\"],\\\"jSVjfa\\\":[\\\"Wrong identifier or password\\\"],\\\"qq6QQ5\\\":[\\\"You are being redirected...\\\"],\\\"B9VwbO\\\":[\\\"You can change this username to any domain name you control after your account is set up.\\\"],\\\"67nRLM\\\":[\\\"You can now sign in with your new password.\\\"],\\\"imRJNy\\\":[\\\"You will receive an email with a \\\\\\\"reset code\\\\\\\". Enter that code here then enter your new password.\\\"],\\\"gdRnT7\\\":[\\\"Your account\\\"],\\\"r/b/p8\\\":[\\\"Your full username will be: \\\",[\\\"0\\\"]],\\\"+qGdcW\\\":[\\\"Your password has been updated!\\\"]}\")as Messages;"],"names":["messages","JSON","parse"],"mappings":"AAAuEA,MAAAA,QAAAA,CAASC,IAAKC,CAAAA,KAAK,CAAC,+yIAAiyJ;;;;"}
@@ -1,4 +0,0 @@
1
- const messages=JSON.parse('{"BVbdlE":["<0/> is asking for permission to access your account (<1/>)."],"4blS0m":["2FA Confirmation"],"S90jaV":["A second authentication factor is required"],"myiH7A":["Access your account data (except chat messages)"],"kJrqQq":["Access your chat messages"],"AeXO77":["Account"],"FTT4a4":["Already have a code?"],"eYNzrj":["An application on your device"],"vW+T+d":["An unknown error occurred"],"+TaG50":["Another account"],"OX6vme":["Authenticate"],"yIVrHZ":["Authorize"],"iH8pgl":["Back"],"4Rgp24":["Between ",["minLength"]," and ",["maxLength"]," characters"],"/aj5l4":["By clicking <0>Authorize</0>, you allow this application to perform the following actions in accordance with their <1>terms of service</1> and <2>privacy policy</2>:"],"mBUXx0":["By creating an account you agree to the ",["0"]," and the ",["1"]," of this service."],"dEgA5A":["Cancel"],"B+Yy3b":["Check your ",["0"]," email for a login code and enter it here."],"khEQ02":["Choose a username"],"EWPtMO":["Code"],"7VpPHA":["Confirm"],"HaGV2g":["Confirm your password to continue"],"ioZOzk":["Confirmation code"],"mpt9T+":["Create a new account"],"IS0nrP":["Create Account"],"54JiGG":["Deny access"],"Nu4oKW":["Description"],"O3oNi5":["Email"],"ATGYL1":["Email address"],"3tOlz6":["Enter a password"],"xg/UcZ":["Enter the code you received to reset your password."],"cHrOqs":["Enter the email you used to create your account. We\'ll send you a \\"reset code\\" so you can set a new password."],"xRPn3U":["Enter your email address"],"0StR7t":["Enter your new password"],"NgaR6B":["Enter your password"],"T0KLp4":["Enter your username and password"],"SlfejT":["Error"],"/Ltc/k":["Extra"],"dn8X5t":["Forgot Password"],"F4OP4y":["Forgot?"],"QdVx1C":["Grant access to your <0>",["0"],"</0> account"],"87VTIH":["Having trouble? <0>Contact support</0>"],"vLyv1R":["Hide"],"i0qMbr":["Home"],"sJGljQ":["Identifier"],"vHJQ4A":["Interface language selector"],"JHB/Ky":["Invalid"],"6KlkHI":["Invite code"],"Esfg1M":["Let\'s get your password reset!"],"UCOd1e":["Login complete"],"cR9UpQ":["Login to account that is not listed"],"0hTJM+":["Looks like ",["example"]],"huXYDE":["Make visible"],"VU3Nrn":["Missing"],"dvYuhh":["Moderate"],"6YtxFj":["Name"],"/nT6AE":["New password"],"hXzOVo":["Next"],"UaXeX3":["Okay"],"yDlXDJ":["Only letters, numbers, and hyphens"],"8ZsakT":["Password"],"osAB4a":["Password strength"],"xfNKwI":["Password strength indicator"],"fSy6T1":["Password Updated"],"DKeVgZ":["Password updated!"],"5CqSPX":["Password with at least ",["MIN_PASSWORD_LENGTH"]," characters"],"+Z2ZNt":["Please verify the domain name of the website before entering your password. Never enter your password on a domain you do not trust."],"LcET2C":["Privacy Policy"],"1TxdLU":["Remember this account on this device"],"c7cY3z":["Requested permissions"],"vJgYMA":["Reset code"],"KbS2K9":["Reset Password"],"slOprG":["Reset your password"],"HB+TbB":["Select domain"],"o3dwub":["Select from an existing account"],"CqO9qC":["Session"],"5lWFkC":["Sign in"],"N9o7n5":["Sign in as ",["0"]],"FT1MVS":["Sign in as..."],"e+RpCP":["Sign up"],"BEx8rG":["Step ",["currentPosition"]," of ",["count"]],"LLx/nr":["Strong"],"hQRttt":["Submit"],"XYLcNv":["Support"],"xowcRf":["Terms of Service"],"D00bHj":["That handle cannot be used"],"qDdKKD":["The domain name is not allowed"],"we0QGx":["The handle contains inappropriate language"],"kPGuFg":["The handle is already in use"],"LSPrK4":["The handle is invalid"],"SZKM0t":["This email is already used"],"T61uiW":["This handle is reserved"],"5OVfoe":["This sign-in session has expired"],"LX2sHe":["Type your desired username"],"Jja+Vn":["Unexpected server response"],"BWM1dL":["Uniquely identify you"],"nZx9mr":["Username or email address"],"nfagfM":["Valid"],"86GEtW":["Valid email address or username"],"aIar4b":["Verify you are human"],"r6y+jM":["Warning"],"qjBGxf":["We\'re so excited to have you join us!"],"9ls/Vs":["Weak"],"jSVjfa":["Wrong identifier or password"],"qq6QQ5":["You are being redirected..."],"B9VwbO":["You can change this username to any domain name you control after your account is set up."],"67nRLM":["You can now sign in with your new password."],"imRJNy":["You will receive an email with a \\"reset code\\". Enter that code here then enter your new password."],"gdRnT7":["Your account"],"r/b/p8":["Your full username will be: ",["0"]],"+qGdcW":["Your password has been updated!"]}');
2
-
3
- export { messages };
4
- //# sourceMappingURL=messages-CDgFOy4S.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"messages-CDgFOy4S.js","sources":["../../../src/assets/app/locales/da/messages.ts"],"sourcesContent":["/*eslint-disable*/import type{Messages}from\"@lingui/core\";export const messages=JSON.parse(\"{\\\"BVbdlE\\\":[\\\"<0/> is asking for permission to access your account (<1/>).\\\"],\\\"4blS0m\\\":[\\\"2FA Confirmation\\\"],\\\"S90jaV\\\":[\\\"A second authentication factor is required\\\"],\\\"myiH7A\\\":[\\\"Access your account data (except chat messages)\\\"],\\\"kJrqQq\\\":[\\\"Access your chat messages\\\"],\\\"AeXO77\\\":[\\\"Account\\\"],\\\"FTT4a4\\\":[\\\"Already have a code?\\\"],\\\"eYNzrj\\\":[\\\"An application on your device\\\"],\\\"vW+T+d\\\":[\\\"An unknown error occurred\\\"],\\\"+TaG50\\\":[\\\"Another account\\\"],\\\"OX6vme\\\":[\\\"Authenticate\\\"],\\\"yIVrHZ\\\":[\\\"Authorize\\\"],\\\"iH8pgl\\\":[\\\"Back\\\"],\\\"4Rgp24\\\":[\\\"Between \\\",[\\\"minLength\\\"],\\\" and \\\",[\\\"maxLength\\\"],\\\" characters\\\"],\\\"/aj5l4\\\":[\\\"By clicking <0>Authorize</0>, you allow this application to perform the following actions in accordance with their <1>terms of service</1> and <2>privacy policy</2>:\\\"],\\\"mBUXx0\\\":[\\\"By creating an account you agree to the \\\",[\\\"0\\\"],\\\" and the \\\",[\\\"1\\\"],\\\" of this service.\\\"],\\\"dEgA5A\\\":[\\\"Cancel\\\"],\\\"B+Yy3b\\\":[\\\"Check your \\\",[\\\"0\\\"],\\\" email for a login code and enter it here.\\\"],\\\"khEQ02\\\":[\\\"Choose a username\\\"],\\\"EWPtMO\\\":[\\\"Code\\\"],\\\"7VpPHA\\\":[\\\"Confirm\\\"],\\\"HaGV2g\\\":[\\\"Confirm your password to continue\\\"],\\\"ioZOzk\\\":[\\\"Confirmation code\\\"],\\\"mpt9T+\\\":[\\\"Create a new account\\\"],\\\"IS0nrP\\\":[\\\"Create Account\\\"],\\\"54JiGG\\\":[\\\"Deny access\\\"],\\\"Nu4oKW\\\":[\\\"Description\\\"],\\\"O3oNi5\\\":[\\\"Email\\\"],\\\"ATGYL1\\\":[\\\"Email address\\\"],\\\"3tOlz6\\\":[\\\"Enter a password\\\"],\\\"xg/UcZ\\\":[\\\"Enter the code you received to reset your password.\\\"],\\\"cHrOqs\\\":[\\\"Enter the email you used to create your account. We'll send you a \\\\\\\"reset code\\\\\\\" so you can set a new password.\\\"],\\\"xRPn3U\\\":[\\\"Enter your email address\\\"],\\\"0StR7t\\\":[\\\"Enter your new password\\\"],\\\"NgaR6B\\\":[\\\"Enter your password\\\"],\\\"T0KLp4\\\":[\\\"Enter your username and password\\\"],\\\"SlfejT\\\":[\\\"Error\\\"],\\\"/Ltc/k\\\":[\\\"Extra\\\"],\\\"dn8X5t\\\":[\\\"Forgot Password\\\"],\\\"F4OP4y\\\":[\\\"Forgot?\\\"],\\\"QdVx1C\\\":[\\\"Grant access to your <0>\\\",[\\\"0\\\"],\\\"</0> account\\\"],\\\"87VTIH\\\":[\\\"Having trouble? <0>Contact support</0>\\\"],\\\"vLyv1R\\\":[\\\"Hide\\\"],\\\"i0qMbr\\\":[\\\"Home\\\"],\\\"sJGljQ\\\":[\\\"Identifier\\\"],\\\"vHJQ4A\\\":[\\\"Interface language selector\\\"],\\\"JHB/Ky\\\":[\\\"Invalid\\\"],\\\"6KlkHI\\\":[\\\"Invite code\\\"],\\\"Esfg1M\\\":[\\\"Let's get your password reset!\\\"],\\\"UCOd1e\\\":[\\\"Login complete\\\"],\\\"cR9UpQ\\\":[\\\"Login to account that is not listed\\\"],\\\"0hTJM+\\\":[\\\"Looks like \\\",[\\\"example\\\"]],\\\"huXYDE\\\":[\\\"Make visible\\\"],\\\"VU3Nrn\\\":[\\\"Missing\\\"],\\\"dvYuhh\\\":[\\\"Moderate\\\"],\\\"6YtxFj\\\":[\\\"Name\\\"],\\\"/nT6AE\\\":[\\\"New password\\\"],\\\"hXzOVo\\\":[\\\"Next\\\"],\\\"UaXeX3\\\":[\\\"Okay\\\"],\\\"yDlXDJ\\\":[\\\"Only letters, numbers, and hyphens\\\"],\\\"8ZsakT\\\":[\\\"Password\\\"],\\\"osAB4a\\\":[\\\"Password strength\\\"],\\\"xfNKwI\\\":[\\\"Password strength indicator\\\"],\\\"fSy6T1\\\":[\\\"Password Updated\\\"],\\\"DKeVgZ\\\":[\\\"Password updated!\\\"],\\\"5CqSPX\\\":[\\\"Password with at least \\\",[\\\"MIN_PASSWORD_LENGTH\\\"],\\\" characters\\\"],\\\"+Z2ZNt\\\":[\\\"Please verify the domain name of the website before entering your password. Never enter your password on a domain you do not trust.\\\"],\\\"LcET2C\\\":[\\\"Privacy Policy\\\"],\\\"1TxdLU\\\":[\\\"Remember this account on this device\\\"],\\\"c7cY3z\\\":[\\\"Requested permissions\\\"],\\\"vJgYMA\\\":[\\\"Reset code\\\"],\\\"KbS2K9\\\":[\\\"Reset Password\\\"],\\\"slOprG\\\":[\\\"Reset your password\\\"],\\\"HB+TbB\\\":[\\\"Select domain\\\"],\\\"o3dwub\\\":[\\\"Select from an existing account\\\"],\\\"CqO9qC\\\":[\\\"Session\\\"],\\\"5lWFkC\\\":[\\\"Sign in\\\"],\\\"N9o7n5\\\":[\\\"Sign in as \\\",[\\\"0\\\"]],\\\"FT1MVS\\\":[\\\"Sign in as...\\\"],\\\"e+RpCP\\\":[\\\"Sign up\\\"],\\\"BEx8rG\\\":[\\\"Step \\\",[\\\"currentPosition\\\"],\\\" of \\\",[\\\"count\\\"]],\\\"LLx/nr\\\":[\\\"Strong\\\"],\\\"hQRttt\\\":[\\\"Submit\\\"],\\\"XYLcNv\\\":[\\\"Support\\\"],\\\"xowcRf\\\":[\\\"Terms of Service\\\"],\\\"D00bHj\\\":[\\\"That handle cannot be used\\\"],\\\"qDdKKD\\\":[\\\"The domain name is not allowed\\\"],\\\"we0QGx\\\":[\\\"The handle contains inappropriate language\\\"],\\\"kPGuFg\\\":[\\\"The handle is already in use\\\"],\\\"LSPrK4\\\":[\\\"The handle is invalid\\\"],\\\"SZKM0t\\\":[\\\"This email is already used\\\"],\\\"T61uiW\\\":[\\\"This handle is reserved\\\"],\\\"5OVfoe\\\":[\\\"This sign-in session has expired\\\"],\\\"LX2sHe\\\":[\\\"Type your desired username\\\"],\\\"Jja+Vn\\\":[\\\"Unexpected server response\\\"],\\\"BWM1dL\\\":[\\\"Uniquely identify you\\\"],\\\"nZx9mr\\\":[\\\"Username or email address\\\"],\\\"nfagfM\\\":[\\\"Valid\\\"],\\\"86GEtW\\\":[\\\"Valid email address or username\\\"],\\\"aIar4b\\\":[\\\"Verify you are human\\\"],\\\"r6y+jM\\\":[\\\"Warning\\\"],\\\"qjBGxf\\\":[\\\"We're so excited to have you join us!\\\"],\\\"9ls/Vs\\\":[\\\"Weak\\\"],\\\"jSVjfa\\\":[\\\"Wrong identifier or password\\\"],\\\"qq6QQ5\\\":[\\\"You are being redirected...\\\"],\\\"B9VwbO\\\":[\\\"You can change this username to any domain name you control after your account is set up.\\\"],\\\"67nRLM\\\":[\\\"You can now sign in with your new password.\\\"],\\\"imRJNy\\\":[\\\"You will receive an email with a \\\\\\\"reset code\\\\\\\". Enter that code here then enter your new password.\\\"],\\\"gdRnT7\\\":[\\\"Your account\\\"],\\\"r/b/p8\\\":[\\\"Your full username will be: \\\",[\\\"0\\\"]],\\\"+qGdcW\\\":[\\\"Your password has been updated!\\\"]}\")as Messages;"],"names":["messages","JSON","parse"],"mappings":"AAAuEA,MAAAA,QAAAA,CAASC,IAAKC,CAAAA,KAAK,CAAC,+yIAAiyJ;;;;"}
@@ -1,4 +0,0 @@
1
- const messages=JSON.parse('{"BVbdlE":["<0/> is asking for permission to access your account (<1/>)."],"4blS0m":["2FA Confirmation"],"S90jaV":["A second authentication factor is required"],"myiH7A":["Access your account data (except chat messages)"],"kJrqQq":["Access your chat messages"],"AeXO77":["Account"],"FTT4a4":["Already have a code?"],"eYNzrj":["An application on your device"],"vW+T+d":["An unknown error occurred"],"+TaG50":["Another account"],"OX6vme":["Authenticate"],"yIVrHZ":["Authorize"],"iH8pgl":["Back"],"4Rgp24":["Between ",["minLength"]," and ",["maxLength"]," characters"],"/aj5l4":["By clicking <0>Authorize</0>, you allow this application to perform the following actions in accordance with their <1>terms of service</1> and <2>privacy policy</2>:"],"mBUXx0":["By creating an account you agree to the ",["0"]," and the ",["1"]," of this service."],"dEgA5A":["Cancel"],"B+Yy3b":["Check your ",["0"]," email for a login code and enter it here."],"khEQ02":["Choose a username"],"EWPtMO":["Code"],"7VpPHA":["Confirm"],"HaGV2g":["Confirm your password to continue"],"ioZOzk":["Confirmation code"],"mpt9T+":["Create a new account"],"IS0nrP":["Create Account"],"54JiGG":["Deny access"],"Nu4oKW":["Description"],"O3oNi5":["Email"],"ATGYL1":["Email address"],"3tOlz6":["Enter a password"],"xg/UcZ":["Enter the code you received to reset your password."],"cHrOqs":["Enter the email you used to create your account. We\'ll send you a \\"reset code\\" so you can set a new password."],"xRPn3U":["Enter your email address"],"0StR7t":["Enter your new password"],"NgaR6B":["Enter your password"],"T0KLp4":["Enter your username and password"],"SlfejT":["Error"],"/Ltc/k":["Extra"],"dn8X5t":["Forgot Password"],"F4OP4y":["Forgot?"],"QdVx1C":["Grant access to your <0>",["0"],"</0> account"],"87VTIH":["Having trouble? <0>Contact support</0>"],"vLyv1R":["Hide"],"i0qMbr":["Home"],"sJGljQ":["Identifier"],"vHJQ4A":["Interface language selector"],"JHB/Ky":["Invalid"],"6KlkHI":["Invite code"],"Esfg1M":["Let\'s get your password reset!"],"UCOd1e":["Login complete"],"cR9UpQ":["Login to account that is not listed"],"0hTJM+":["Looks like ",["example"]],"huXYDE":["Make visible"],"VU3Nrn":["Missing"],"dvYuhh":["Moderate"],"6YtxFj":["Name"],"/nT6AE":["New password"],"hXzOVo":["Next"],"UaXeX3":["Okay"],"yDlXDJ":["Only letters, numbers, and hyphens"],"8ZsakT":["Password"],"osAB4a":["Password strength"],"xfNKwI":["Password strength indicator"],"fSy6T1":["Password Updated"],"DKeVgZ":["Password updated!"],"5CqSPX":["Password with at least ",["MIN_PASSWORD_LENGTH"]," characters"],"+Z2ZNt":["Please verify the domain name of the website before entering your password. Never enter your password on a domain you do not trust."],"LcET2C":["Privacy Policy"],"1TxdLU":["Remember this account on this device"],"c7cY3z":["Requested permissions"],"vJgYMA":["Reset code"],"KbS2K9":["Reset Password"],"slOprG":["Reset your password"],"HB+TbB":["Select domain"],"o3dwub":["Select from an existing account"],"CqO9qC":["Session"],"5lWFkC":["Sign in"],"N9o7n5":["Sign in as ",["0"]],"FT1MVS":["Sign in as..."],"e+RpCP":["Sign up"],"BEx8rG":["Step ",["currentPosition"]," of ",["count"]],"LLx/nr":["Strong"],"hQRttt":["Submit"],"XYLcNv":["Support"],"xowcRf":["Terms of Service"],"D00bHj":["That handle cannot be used"],"qDdKKD":["The domain name is not allowed"],"we0QGx":["The handle contains inappropriate language"],"kPGuFg":["The handle is already in use"],"LSPrK4":["The handle is invalid"],"SZKM0t":["This email is already used"],"T61uiW":["This handle is reserved"],"5OVfoe":["This sign-in session has expired"],"LX2sHe":["Type your desired username"],"Jja+Vn":["Unexpected server response"],"BWM1dL":["Uniquely identify you"],"nZx9mr":["Username or email address"],"nfagfM":["Valid"],"86GEtW":["Valid email address or username"],"aIar4b":["Verify you are human"],"r6y+jM":["Warning"],"qjBGxf":["We\'re so excited to have you join us!"],"9ls/Vs":["Weak"],"jSVjfa":["Wrong identifier or password"],"qq6QQ5":["You are being redirected..."],"B9VwbO":["You can change this username to any domain name you control after your account is set up."],"67nRLM":["You can now sign in with your new password."],"imRJNy":["You will receive an email with a \\"reset code\\". Enter that code here then enter your new password."],"gdRnT7":["Your account"],"r/b/p8":["Your full username will be: ",["0"]],"+qGdcW":["Your password has been updated!"]}');
2
-
3
- export { messages };
4
- //# sourceMappingURL=messages-CLbTz0o9.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"messages-CLbTz0o9.js","sources":["../../../src/assets/app/locales/fi/messages.ts"],"sourcesContent":["/*eslint-disable*/import type{Messages}from\"@lingui/core\";export const messages=JSON.parse(\"{\\\"BVbdlE\\\":[\\\"<0/> is asking for permission to access your account (<1/>).\\\"],\\\"4blS0m\\\":[\\\"2FA Confirmation\\\"],\\\"S90jaV\\\":[\\\"A second authentication factor is required\\\"],\\\"myiH7A\\\":[\\\"Access your account data (except chat messages)\\\"],\\\"kJrqQq\\\":[\\\"Access your chat messages\\\"],\\\"AeXO77\\\":[\\\"Account\\\"],\\\"FTT4a4\\\":[\\\"Already have a code?\\\"],\\\"eYNzrj\\\":[\\\"An application on your device\\\"],\\\"vW+T+d\\\":[\\\"An unknown error occurred\\\"],\\\"+TaG50\\\":[\\\"Another account\\\"],\\\"OX6vme\\\":[\\\"Authenticate\\\"],\\\"yIVrHZ\\\":[\\\"Authorize\\\"],\\\"iH8pgl\\\":[\\\"Back\\\"],\\\"4Rgp24\\\":[\\\"Between \\\",[\\\"minLength\\\"],\\\" and \\\",[\\\"maxLength\\\"],\\\" characters\\\"],\\\"/aj5l4\\\":[\\\"By clicking <0>Authorize</0>, you allow this application to perform the following actions in accordance with their <1>terms of service</1> and <2>privacy policy</2>:\\\"],\\\"mBUXx0\\\":[\\\"By creating an account you agree to the \\\",[\\\"0\\\"],\\\" and the \\\",[\\\"1\\\"],\\\" of this service.\\\"],\\\"dEgA5A\\\":[\\\"Cancel\\\"],\\\"B+Yy3b\\\":[\\\"Check your \\\",[\\\"0\\\"],\\\" email for a login code and enter it here.\\\"],\\\"khEQ02\\\":[\\\"Choose a username\\\"],\\\"EWPtMO\\\":[\\\"Code\\\"],\\\"7VpPHA\\\":[\\\"Confirm\\\"],\\\"HaGV2g\\\":[\\\"Confirm your password to continue\\\"],\\\"ioZOzk\\\":[\\\"Confirmation code\\\"],\\\"mpt9T+\\\":[\\\"Create a new account\\\"],\\\"IS0nrP\\\":[\\\"Create Account\\\"],\\\"54JiGG\\\":[\\\"Deny access\\\"],\\\"Nu4oKW\\\":[\\\"Description\\\"],\\\"O3oNi5\\\":[\\\"Email\\\"],\\\"ATGYL1\\\":[\\\"Email address\\\"],\\\"3tOlz6\\\":[\\\"Enter a password\\\"],\\\"xg/UcZ\\\":[\\\"Enter the code you received to reset your password.\\\"],\\\"cHrOqs\\\":[\\\"Enter the email you used to create your account. We'll send you a \\\\\\\"reset code\\\\\\\" so you can set a new password.\\\"],\\\"xRPn3U\\\":[\\\"Enter your email address\\\"],\\\"0StR7t\\\":[\\\"Enter your new password\\\"],\\\"NgaR6B\\\":[\\\"Enter your password\\\"],\\\"T0KLp4\\\":[\\\"Enter your username and password\\\"],\\\"SlfejT\\\":[\\\"Error\\\"],\\\"/Ltc/k\\\":[\\\"Extra\\\"],\\\"dn8X5t\\\":[\\\"Forgot Password\\\"],\\\"F4OP4y\\\":[\\\"Forgot?\\\"],\\\"QdVx1C\\\":[\\\"Grant access to your <0>\\\",[\\\"0\\\"],\\\"</0> account\\\"],\\\"87VTIH\\\":[\\\"Having trouble? <0>Contact support</0>\\\"],\\\"vLyv1R\\\":[\\\"Hide\\\"],\\\"i0qMbr\\\":[\\\"Home\\\"],\\\"sJGljQ\\\":[\\\"Identifier\\\"],\\\"vHJQ4A\\\":[\\\"Interface language selector\\\"],\\\"JHB/Ky\\\":[\\\"Invalid\\\"],\\\"6KlkHI\\\":[\\\"Invite code\\\"],\\\"Esfg1M\\\":[\\\"Let's get your password reset!\\\"],\\\"UCOd1e\\\":[\\\"Login complete\\\"],\\\"cR9UpQ\\\":[\\\"Login to account that is not listed\\\"],\\\"0hTJM+\\\":[\\\"Looks like \\\",[\\\"example\\\"]],\\\"huXYDE\\\":[\\\"Make visible\\\"],\\\"VU3Nrn\\\":[\\\"Missing\\\"],\\\"dvYuhh\\\":[\\\"Moderate\\\"],\\\"6YtxFj\\\":[\\\"Name\\\"],\\\"/nT6AE\\\":[\\\"New password\\\"],\\\"hXzOVo\\\":[\\\"Next\\\"],\\\"UaXeX3\\\":[\\\"Okay\\\"],\\\"yDlXDJ\\\":[\\\"Only letters, numbers, and hyphens\\\"],\\\"8ZsakT\\\":[\\\"Password\\\"],\\\"osAB4a\\\":[\\\"Password strength\\\"],\\\"xfNKwI\\\":[\\\"Password strength indicator\\\"],\\\"fSy6T1\\\":[\\\"Password Updated\\\"],\\\"DKeVgZ\\\":[\\\"Password updated!\\\"],\\\"5CqSPX\\\":[\\\"Password with at least \\\",[\\\"MIN_PASSWORD_LENGTH\\\"],\\\" characters\\\"],\\\"+Z2ZNt\\\":[\\\"Please verify the domain name of the website before entering your password. Never enter your password on a domain you do not trust.\\\"],\\\"LcET2C\\\":[\\\"Privacy Policy\\\"],\\\"1TxdLU\\\":[\\\"Remember this account on this device\\\"],\\\"c7cY3z\\\":[\\\"Requested permissions\\\"],\\\"vJgYMA\\\":[\\\"Reset code\\\"],\\\"KbS2K9\\\":[\\\"Reset Password\\\"],\\\"slOprG\\\":[\\\"Reset your password\\\"],\\\"HB+TbB\\\":[\\\"Select domain\\\"],\\\"o3dwub\\\":[\\\"Select from an existing account\\\"],\\\"CqO9qC\\\":[\\\"Session\\\"],\\\"5lWFkC\\\":[\\\"Sign in\\\"],\\\"N9o7n5\\\":[\\\"Sign in as \\\",[\\\"0\\\"]],\\\"FT1MVS\\\":[\\\"Sign in as...\\\"],\\\"e+RpCP\\\":[\\\"Sign up\\\"],\\\"BEx8rG\\\":[\\\"Step \\\",[\\\"currentPosition\\\"],\\\" of \\\",[\\\"count\\\"]],\\\"LLx/nr\\\":[\\\"Strong\\\"],\\\"hQRttt\\\":[\\\"Submit\\\"],\\\"XYLcNv\\\":[\\\"Support\\\"],\\\"xowcRf\\\":[\\\"Terms of Service\\\"],\\\"D00bHj\\\":[\\\"That handle cannot be used\\\"],\\\"qDdKKD\\\":[\\\"The domain name is not allowed\\\"],\\\"we0QGx\\\":[\\\"The handle contains inappropriate language\\\"],\\\"kPGuFg\\\":[\\\"The handle is already in use\\\"],\\\"LSPrK4\\\":[\\\"The handle is invalid\\\"],\\\"SZKM0t\\\":[\\\"This email is already used\\\"],\\\"T61uiW\\\":[\\\"This handle is reserved\\\"],\\\"5OVfoe\\\":[\\\"This sign-in session has expired\\\"],\\\"LX2sHe\\\":[\\\"Type your desired username\\\"],\\\"Jja+Vn\\\":[\\\"Unexpected server response\\\"],\\\"BWM1dL\\\":[\\\"Uniquely identify you\\\"],\\\"nZx9mr\\\":[\\\"Username or email address\\\"],\\\"nfagfM\\\":[\\\"Valid\\\"],\\\"86GEtW\\\":[\\\"Valid email address or username\\\"],\\\"aIar4b\\\":[\\\"Verify you are human\\\"],\\\"r6y+jM\\\":[\\\"Warning\\\"],\\\"qjBGxf\\\":[\\\"We're so excited to have you join us!\\\"],\\\"9ls/Vs\\\":[\\\"Weak\\\"],\\\"jSVjfa\\\":[\\\"Wrong identifier or password\\\"],\\\"qq6QQ5\\\":[\\\"You are being redirected...\\\"],\\\"B9VwbO\\\":[\\\"You can change this username to any domain name you control after your account is set up.\\\"],\\\"67nRLM\\\":[\\\"You can now sign in with your new password.\\\"],\\\"imRJNy\\\":[\\\"You will receive an email with a \\\\\\\"reset code\\\\\\\". Enter that code here then enter your new password.\\\"],\\\"gdRnT7\\\":[\\\"Your account\\\"],\\\"r/b/p8\\\":[\\\"Your full username will be: \\\",[\\\"0\\\"]],\\\"+qGdcW\\\":[\\\"Your password has been updated!\\\"]}\")as Messages;"],"names":["messages","JSON","parse"],"mappings":"AAAuEA,MAAAA,QAAAA,CAASC,IAAKC,CAAAA,KAAK,CAAC,+yIAAiyJ;;;;"}