@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 +0,0 @@
1
- {"version":3,"file":"messages-DJ1Q4GeC.js","sources":["../../../src/assets/app/locales/zh-HK/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-DRL3exqd.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"messages-DRL3exqd.js","sources":["../../../src/assets/app/locales/el/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-DWLPQRTp.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"messages-DWLPQRTp.js","sources":["../../../src/assets/app/locales/km/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-DjVaE9YE.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"messages-DjVaE9YE.js","sources":["../../../src/assets/app/locales/zh-CN/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-DqpMfFJR.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"messages-DqpMfFJR.js","sources":["../../../src/assets/app/locales/de/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-ETjhJBEN.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"messages-ETjhJBEN.js","sources":["../../../src/assets/app/locales/es/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-EUKrgrGn.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"messages-EUKrgrGn.js","sources":["../../../src/assets/app/locales/vi/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-QQrOUcPW.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"messages-QQrOUcPW.js","sources":["../../../src/assets/app/locales/ko/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-e2QGqFL6.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"messages-e2QGqFL6.js","sources":["../../../src/assets/app/locales/hu/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-p61py7gD.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"messages-p61py7gD.js","sources":["../../../src/assets/app/locales/pl/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,9 +0,0 @@
1
- import type { Readable } from 'node:stream';
2
- export type Asset = {
3
- url: string;
4
- type?: string;
5
- isEntry: boolean;
6
- sha256: string;
7
- createStream: () => Readable;
8
- };
9
- //# sourceMappingURL=asset.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"asset.d.ts","sourceRoot":"","sources":["../../src/assets/asset.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,aAAa,CAAA;AAE3C,MAAM,MAAM,KAAK,GAAG;IAClB,GAAG,EAAE,MAAM,CAAA;IACX,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,OAAO,EAAE,OAAO,CAAA;IAChB,MAAM,EAAE,MAAM,CAAA;IACd,YAAY,EAAE,MAAM,QAAQ,CAAA;CAC7B,CAAA"}
@@ -1,3 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- //# sourceMappingURL=asset.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"asset.js","sourceRoot":"","sources":["../../src/assets/asset.ts"],"names":[],"mappings":""}
@@ -1,5 +0,0 @@
1
- import { Asset } from './asset.js';
2
- export declare const ASSETS_URL_PREFIX = "/@atproto/oauth-provider/~assets/";
3
- export declare function enumerateAssets(mime: string): IteratorObject<Asset, void>;
4
- export declare function getAsset(inputFilename: string): Asset;
5
- //# sourceMappingURL=index.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/assets/index.ts"],"names":[],"mappings":"AAqBA,OAAO,EAAE,KAAK,EAAE,MAAM,YAAY,CAAA;AAMlC,eAAO,MAAM,iBAAiB,sCAAsC,CAAA;AAEpE,wBAAiB,eAAe,CAAC,IAAI,EAAE,MAAM,GAAG,cAAc,CAAC,KAAK,EAAE,IAAI,CAAC,CAM1E;AAED,wBAAgB,QAAQ,CAAC,aAAa,EAAE,MAAM,GAAG,KAAK,CAerD"}
@@ -1,78 +0,0 @@
1
- "use strict";
2
- // If this library is used as a regular dependency (e.g. from node_modules), the
3
- // assets will simply be referenced from the node_modules directory. However, if
4
- // this library is bundled (e.g. via rollup), the assets need to be copied to
5
- // the output directory. Most bundlers support this (webpack, rollup, etc.) by
6
- // re-writing new URL('./path', import.meta.url) calls to point to the correct
7
- // output directory.
8
- //
9
- // https://github.com/evanw/esbuild/issues/795
10
- // https://www.npmjs.com/package/@web/rollup-plugin-import-meta-assets
11
- var __importDefault = (this && this.__importDefault) || function (mod) {
12
- return (mod && mod.__esModule) ? mod : { "default": mod };
13
- };
14
- Object.defineProperty(exports, "__esModule", { value: true });
15
- exports.ASSETS_URL_PREFIX = void 0;
16
- exports.enumerateAssets = enumerateAssets;
17
- exports.getAsset = getAsset;
18
- // Note that the bundle-manifest, being a JSON file, can be imported directly
19
- // without any special handling. This is because all bundlers support JSON
20
- // imports out of the box.
21
- const node_fs_1 = require("node:fs");
22
- const node_path_1 = require("node:path");
23
- const node_stream_1 = require("node:stream");
24
- // @ts-expect-error: This file is generated at build time
25
- // eslint-disable-next-line import/no-unresolved
26
- const bundle_manifest_json_1 = __importDefault(require("./app/bundle-manifest.json"));
27
- const appBundleManifest = new Map(Object.entries(bundle_manifest_json_1.default));
28
- exports.ASSETS_URL_PREFIX = '/@atproto/oauth-provider/~assets/';
29
- function* enumerateAssets(mime) {
30
- for (const [filename, manifest] of appBundleManifest) {
31
- if (manifest.mime === mime) {
32
- yield manifestItemToAsset(filename, manifest);
33
- }
34
- }
35
- }
36
- function getAsset(inputFilename) {
37
- const filename = node_path_1.posix.normalize(inputFilename);
38
- if (filename.startsWith('/') || // Prevent absolute paths
39
- filename.startsWith('../') || // Prevent directory traversal attacks
40
- /[<>:"|?*\\]/.test(filename) // Windows disallowed characters
41
- ) {
42
- throw new AssetNotFoundError(filename);
43
- }
44
- const manifest = appBundleManifest.get(filename);
45
- if (!manifest)
46
- throw new AssetNotFoundError(filename);
47
- return manifestItemToAsset(filename, manifest);
48
- }
49
- function manifestItemToAsset(filename, manifest) {
50
- // When this package is used as a regular "node_modules" dependency, and gets
51
- // bundled by the consumer, the assets should be copied to the bundle's output
52
- // directory. In case the bundler does not support copying assets from the
53
- // "dist/assets/app" folder, this package's build system can be modified to
54
- // embed the asset data directly into the bundle-manifest.json (see the `data`
55
- // option of "@atproto-labs/rollup-plugin-bundle-manifest" in rollup.config.js).
56
- const { data } = manifest;
57
- return {
58
- url: node_path_1.posix.join(exports.ASSETS_URL_PREFIX, filename),
59
- type: manifest.mime,
60
- isEntry: manifest.type === 'chunk' && manifest.isEntry,
61
- sha256: manifest.sha256,
62
- createStream: data
63
- ? () => node_stream_1.Readable.from(Buffer.from(data, 'base64'))
64
- : () =>
65
- // ESM version:
66
- // createReadStream(new URL(`./app/${filename}`, import.meta.url))
67
- // CJS version:
68
- (0, node_fs_1.createReadStream)((0, node_path_1.join)(__dirname, './app', filename)),
69
- };
70
- }
71
- class AssetNotFoundError extends Error {
72
- code = 'ENOENT';
73
- statusCode = 404;
74
- constructor(filename) {
75
- super(`Asset not found: ${filename}`);
76
- }
77
- }
78
- //# sourceMappingURL=index.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/assets/index.ts"],"names":[],"mappings":";AAAA,gFAAgF;AAChF,gFAAgF;AAChF,6EAA6E;AAC7E,8EAA8E;AAC9E,8EAA8E;AAC9E,oBAAoB;AACpB,EAAE;AACF,8CAA8C;AAC9C,sEAAsE;;;;;;AAqBtE,0CAMC;AAED,4BAeC;AA1CD,6EAA6E;AAC7E,0EAA0E;AAC1E,0BAA0B;AAE1B,qCAA0C;AAC1C,yCAAuC;AACvC,6CAAsC;AAEtC,yDAAyD;AACzD,gDAAgD;AAChD,sFAA8D;AAG9D,MAAM,iBAAiB,GAA8B,IAAI,GAAG,CAC1D,MAAM,CAAC,OAAO,CAAC,8BAAqB,CAAC,CACtC,CAAA;AAEY,QAAA,iBAAiB,GAAG,mCAAmC,CAAA;AAEpE,QAAe,CAAC,CAAC,eAAe,CAAC,IAAY;IAC3C,KAAK,MAAM,CAAC,QAAQ,EAAE,QAAQ,CAAC,IAAI,iBAAiB,EAAE,CAAC;QACrD,IAAI,QAAQ,CAAC,IAAI,KAAK,IAAI,EAAE,CAAC;YAC3B,MAAM,mBAAmB,CAAC,QAAQ,EAAE,QAAQ,CAAC,CAAA;QAC/C,CAAC;IACH,CAAC;AACH,CAAC;AAED,SAAgB,QAAQ,CAAC,aAAqB;IAC5C,MAAM,QAAQ,GAAG,iBAAK,CAAC,SAAS,CAAC,aAAa,CAAC,CAAA;IAE/C,IACE,QAAQ,CAAC,UAAU,CAAC,GAAG,CAAC,IAAI,yBAAyB;QACrD,QAAQ,CAAC,UAAU,CAAC,KAAK,CAAC,IAAI,sCAAsC;QACpE,aAAa,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,gCAAgC;MAC7D,CAAC;QACD,MAAM,IAAI,kBAAkB,CAAC,QAAQ,CAAC,CAAA;IACxC,CAAC;IAED,MAAM,QAAQ,GAAG,iBAAiB,CAAC,GAAG,CAAC,QAAQ,CAAC,CAAA;IAChD,IAAI,CAAC,QAAQ;QAAE,MAAM,IAAI,kBAAkB,CAAC,QAAQ,CAAC,CAAA;IAErD,OAAO,mBAAmB,CAAC,QAAQ,EAAE,QAAQ,CAAC,CAAA;AAChD,CAAC;AAED,SAAS,mBAAmB,CAAC,QAAgB,EAAE,QAAsB;IACnE,6EAA6E;IAC7E,8EAA8E;IAC9E,0EAA0E;IAC1E,2EAA2E;IAC3E,8EAA8E;IAC9E,gFAAgF;IAEhF,MAAM,EAAE,IAAI,EAAE,GAAG,QAAQ,CAAA;IAEzB,OAAO;QACL,GAAG,EAAE,iBAAK,CAAC,IAAI,CAAC,yBAAiB,EAAE,QAAQ,CAAC;QAC5C,IAAI,EAAE,QAAQ,CAAC,IAAI;QACnB,OAAO,EAAE,QAAQ,CAAC,IAAI,KAAK,OAAO,IAAI,QAAQ,CAAC,OAAO;QACtD,MAAM,EAAE,QAAQ,CAAC,MAAM;QACvB,YAAY,EAAE,IAAI;YAChB,CAAC,CAAC,GAAG,EAAE,CAAC,sBAAQ,CAAC,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,IAAI,EAAE,QAAQ,CAAC,CAAC;YAClD,CAAC,CAAC,GAAG,EAAE;YACH,eAAe;YACf,kEAAkE;YAClE,eAAe;YACf,IAAA,0BAAgB,EAAC,IAAA,gBAAI,EAAC,SAAS,EAAE,OAAO,EAAE,QAAQ,CAAC,CAAC;KAC3D,CAAA;AACH,CAAC;AAED,MAAM,kBAAmB,SAAQ,KAAK;IACpB,IAAI,GAAG,QAAQ,CAAA;IACf,UAAU,GAAG,GAAG,CAAA;IAChC,YAAY,QAAgB;QAC1B,KAAK,CAAC,oBAAoB,QAAQ,EAAE,CAAC,CAAA;IACvC,CAAC;CACF"}