@atproto/oauth-provider 0.5.2 → 0.6.1

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 (310) hide show
  1. package/CHANGELOG.md +37 -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 +7 -0
  7. package/dist/account/account-store.d.ts.map +1 -1
  8. package/dist/account/account-store.js.map +1 -1
  9. package/dist/account/account.d.ts +1 -11
  10. package/dist/account/account.d.ts.map +1 -1
  11. package/dist/account/{sign-up-data.d.ts → sign-up-input.d.ts} +3 -3
  12. package/dist/account/sign-up-input.d.ts.map +1 -0
  13. package/dist/account/{sign-up-data.js → sign-up-input.js} +3 -3
  14. package/dist/account/sign-up-input.js.map +1 -0
  15. package/dist/assets/assets-middleware.d.ts +2 -0
  16. package/dist/assets/assets-middleware.d.ts.map +1 -1
  17. package/dist/assets/assets-middleware.js +12 -14
  18. package/dist/assets/assets-middleware.js.map +1 -1
  19. package/dist/lib/csp/index.d.ts +5 -6
  20. package/dist/lib/csp/index.d.ts.map +1 -1
  21. package/dist/lib/csp/index.js +14 -11
  22. package/dist/lib/csp/index.js.map +1 -1
  23. package/dist/lib/hcaptcha.d.ts +15 -12
  24. package/dist/lib/hcaptcha.d.ts.map +1 -1
  25. package/dist/lib/hcaptcha.js +11 -7
  26. package/dist/lib/hcaptcha.js.map +1 -1
  27. package/dist/lib/html/build-document.d.ts +2 -2
  28. package/dist/lib/html/build-document.d.ts.map +1 -1
  29. package/dist/lib/html/build-document.js +11 -7
  30. package/dist/lib/html/build-document.js.map +1 -1
  31. package/dist/lib/html/html.d.ts.map +1 -1
  32. package/dist/lib/html/html.js +10 -13
  33. package/dist/lib/html/html.js.map +1 -1
  34. package/dist/lib/html/util.d.ts +0 -1
  35. package/dist/lib/html/util.d.ts.map +1 -1
  36. package/dist/lib/html/util.js +0 -4
  37. package/dist/lib/html/util.js.map +1 -1
  38. package/dist/lib/http/response.d.ts +3 -1
  39. package/dist/lib/http/response.d.ts.map +1 -1
  40. package/dist/lib/http/response.js +3 -0
  41. package/dist/lib/http/response.js.map +1 -1
  42. package/dist/lib/http/security-headers.d.ts +48 -0
  43. package/dist/lib/http/security-headers.d.ts.map +1 -0
  44. package/dist/lib/http/security-headers.js +62 -0
  45. package/dist/lib/http/security-headers.js.map +1 -0
  46. package/dist/lib/util/type.d.ts +8 -0
  47. package/dist/lib/util/type.d.ts.map +1 -1
  48. package/dist/lib/util/type.js.map +1 -1
  49. package/dist/oauth-hooks.d.ts +4 -25
  50. package/dist/oauth-hooks.d.ts.map +1 -1
  51. package/dist/oauth-provider.js +2 -2
  52. package/dist/oauth-provider.js.map +1 -1
  53. package/dist/output/backend-data.d.ts +4 -0
  54. package/dist/output/backend-data.d.ts.map +1 -0
  55. package/dist/output/backend-data.js +19 -0
  56. package/dist/output/backend-data.js.map +1 -0
  57. package/dist/output/build-authorize-data.d.ts +3 -19
  58. package/dist/output/build-authorize-data.d.ts.map +1 -1
  59. package/dist/output/build-authorize-data.js.map +1 -1
  60. package/dist/output/build-customization-data.d.ts +11 -18
  61. package/dist/output/build-customization-data.d.ts.map +1 -1
  62. package/dist/output/build-customization-data.js +1 -1
  63. package/dist/output/build-customization-data.js.map +1 -1
  64. package/dist/output/build-error-data.d.ts +3 -0
  65. package/dist/output/build-error-data.d.ts.map +1 -0
  66. package/dist/output/build-error-data.js +10 -0
  67. package/dist/output/build-error-data.js.map +1 -0
  68. package/dist/output/build-error-payload.d.ts +2 -1
  69. package/dist/output/build-error-payload.d.ts.map +1 -1
  70. package/dist/output/build-error-payload.js.map +1 -1
  71. package/dist/output/output-manager.d.ts +10 -4
  72. package/dist/output/output-manager.d.ts.map +1 -1
  73. package/dist/output/output-manager.js +68 -39
  74. package/dist/output/output-manager.js.map +1 -1
  75. package/dist/output/send-web-page.d.ts +6 -10
  76. package/dist/output/send-web-page.d.ts.map +1 -1
  77. package/dist/output/send-web-page.js +27 -47
  78. package/dist/output/send-web-page.js.map +1 -1
  79. package/dist/signer/signed-token-payload.d.ts +3 -3
  80. package/dist/signer/signer.d.ts +2 -2
  81. package/package.json +8 -41
  82. package/src/account/account-manager.ts +55 -34
  83. package/src/account/account-store.ts +8 -0
  84. package/src/account/account.ts +1 -14
  85. package/src/account/{sign-up-data.ts → sign-up-input.ts} +2 -2
  86. package/src/assets/assets-middleware.ts +11 -17
  87. package/src/lib/csp/index.ts +16 -13
  88. package/src/lib/hcaptcha.ts +14 -10
  89. package/src/lib/html/build-document.ts +15 -8
  90. package/src/lib/html/html.ts +11 -18
  91. package/src/lib/html/util.ts +0 -4
  92. package/src/lib/http/response.ts +9 -1
  93. package/src/lib/http/security-headers.ts +91 -0
  94. package/src/lib/util/type.ts +18 -0
  95. package/src/oauth-hooks.ts +4 -25
  96. package/src/oauth-provider.ts +2 -2
  97. package/src/output/backend-data.ts +18 -0
  98. package/src/output/build-authorize-data.ts +3 -26
  99. package/src/output/build-customization-data.ts +2 -13
  100. package/src/output/build-error-data.ts +8 -0
  101. package/src/output/build-error-payload.ts +4 -2
  102. package/src/output/output-manager.ts +86 -47
  103. package/src/output/send-web-page.ts +29 -58
  104. package/tsconfig.backend.json +1 -2
  105. package/tsconfig.backend.tsbuildinfo +1 -1
  106. package/tsconfig.json +1 -5
  107. package/.linguirc +0 -57
  108. package/dist/account/sign-up-data.d.ts.map +0 -1
  109. package/dist/account/sign-up-data.js.map +0 -1
  110. package/dist/assets/app/bundle-manifest.json +0 -614
  111. package/dist/assets/app/index-DZHZ9kCP.js +0 -36
  112. package/dist/assets/app/index-DZHZ9kCP.js.map +0 -1
  113. package/dist/assets/app/main-B_dNxQo_.js +0 -4
  114. package/dist/assets/app/main-B_dNxQo_.js.map +0 -1
  115. package/dist/assets/app/main-Dr6y26KY.css +0 -3
  116. package/dist/assets/app/main-Dr6y26KY.js +0 -306
  117. package/dist/assets/app/main-Dr6y26KY.js.map +0 -1
  118. package/dist/assets/app/messages-6_mYuGzB.js +0 -4
  119. package/dist/assets/app/messages-6_mYuGzB.js.map +0 -1
  120. package/dist/assets/app/messages-7wdeBTpD.js +0 -4
  121. package/dist/assets/app/messages-7wdeBTpD.js.map +0 -1
  122. package/dist/assets/app/messages-B-YFoWKc.js +0 -4
  123. package/dist/assets/app/messages-B-YFoWKc.js.map +0 -1
  124. package/dist/assets/app/messages-B10DUOE-.js +0 -4
  125. package/dist/assets/app/messages-B10DUOE-.js.map +0 -1
  126. package/dist/assets/app/messages-B4AwFEeZ.js +0 -4
  127. package/dist/assets/app/messages-B4AwFEeZ.js.map +0 -1
  128. package/dist/assets/app/messages-BDP8MyEC.js +0 -4
  129. package/dist/assets/app/messages-BDP8MyEC.js.map +0 -1
  130. package/dist/assets/app/messages-BIS87lxQ.js +0 -4
  131. package/dist/assets/app/messages-BIS87lxQ.js.map +0 -1
  132. package/dist/assets/app/messages-BI_Wbjdt.js +0 -4
  133. package/dist/assets/app/messages-BI_Wbjdt.js.map +0 -1
  134. package/dist/assets/app/messages-BMAouhRx.js +0 -4
  135. package/dist/assets/app/messages-BMAouhRx.js.map +0 -1
  136. package/dist/assets/app/messages-BdckMnJj.js +0 -4
  137. package/dist/assets/app/messages-BdckMnJj.js.map +0 -1
  138. package/dist/assets/app/messages-BgBLzc46.js +0 -4
  139. package/dist/assets/app/messages-BgBLzc46.js.map +0 -1
  140. package/dist/assets/app/messages-BobD78yK.js +0 -4
  141. package/dist/assets/app/messages-BobD78yK.js.map +0 -1
  142. package/dist/assets/app/messages-BtThT9UZ.js +0 -4
  143. package/dist/assets/app/messages-BtThT9UZ.js.map +0 -1
  144. package/dist/assets/app/messages-BwKHkbeh.js +0 -4
  145. package/dist/assets/app/messages-BwKHkbeh.js.map +0 -1
  146. package/dist/assets/app/messages-C417YUvA.js +0 -4
  147. package/dist/assets/app/messages-C417YUvA.js.map +0 -1
  148. package/dist/assets/app/messages-C4CxO4bO.js +0 -4
  149. package/dist/assets/app/messages-C4CxO4bO.js.map +0 -1
  150. package/dist/assets/app/messages-C5vd04e6.js +0 -4
  151. package/dist/assets/app/messages-C5vd04e6.js.map +0 -1
  152. package/dist/assets/app/messages-CAri2Wnz.js +0 -4
  153. package/dist/assets/app/messages-CAri2Wnz.js.map +0 -1
  154. package/dist/assets/app/messages-CPtWTZeG.js +0 -4
  155. package/dist/assets/app/messages-CPtWTZeG.js.map +0 -1
  156. package/dist/assets/app/messages-CiaM5zm8.js +0 -4
  157. package/dist/assets/app/messages-CiaM5zm8.js.map +0 -1
  158. package/dist/assets/app/messages-CkL-L2R6.js +0 -4
  159. package/dist/assets/app/messages-CkL-L2R6.js.map +0 -1
  160. package/dist/assets/app/messages-Cy_4XLNe.js +0 -4
  161. package/dist/assets/app/messages-Cy_4XLNe.js.map +0 -1
  162. package/dist/assets/app/messages-D5_ad-Eo.js +0 -4
  163. package/dist/assets/app/messages-D5_ad-Eo.js.map +0 -1
  164. package/dist/assets/app/messages-DChMl9mT.js +0 -4
  165. package/dist/assets/app/messages-DChMl9mT.js.map +0 -1
  166. package/dist/assets/app/messages-DWX-DIfv.js +0 -4
  167. package/dist/assets/app/messages-DWX-DIfv.js.map +0 -1
  168. package/dist/assets/app/messages-DgfsOphe.js +0 -4
  169. package/dist/assets/app/messages-DgfsOphe.js.map +0 -1
  170. package/dist/assets/app/messages-Dj5B_DR6.js +0 -4
  171. package/dist/assets/app/messages-Dj5B_DR6.js.map +0 -1
  172. package/dist/assets/app/messages-Dwzqo4eA.js +0 -4
  173. package/dist/assets/app/messages-Dwzqo4eA.js.map +0 -1
  174. package/dist/assets/app/messages-ESCIXJR7.js +0 -4
  175. package/dist/assets/app/messages-ESCIXJR7.js.map +0 -1
  176. package/dist/assets/app/messages-dglB2edb.js +0 -4
  177. package/dist/assets/app/messages-dglB2edb.js.map +0 -1
  178. package/dist/assets/app/messages-e_ClRrWc.js +0 -4
  179. package/dist/assets/app/messages-e_ClRrWc.js.map +0 -1
  180. package/dist/assets/app/messages-evvDxmrP.js +0 -4
  181. package/dist/assets/app/messages-evvDxmrP.js.map +0 -1
  182. package/dist/assets/app/messages-pPbdLb5B.js +0 -4
  183. package/dist/assets/app/messages-pPbdLb5B.js.map +0 -1
  184. package/dist/assets/app/messages-tJv8gHL2.js +0 -4
  185. package/dist/assets/app/messages-tJv8gHL2.js.map +0 -1
  186. package/dist/assets/app/messages-vLRVEw96.js +0 -4
  187. package/dist/assets/app/messages-vLRVEw96.js.map +0 -1
  188. package/dist/assets/asset.d.ts +0 -9
  189. package/dist/assets/asset.d.ts.map +0 -1
  190. package/dist/assets/asset.js +0 -3
  191. package/dist/assets/asset.js.map +0 -1
  192. package/dist/assets/index.d.ts +0 -5
  193. package/dist/assets/index.d.ts.map +0 -1
  194. package/dist/assets/index.js +0 -78
  195. package/dist/assets/index.js.map +0 -1
  196. package/rollup.config.js +0 -98
  197. package/src/assets/app/app.tsx +0 -43
  198. package/src/assets/app/backend-data.ts +0 -27
  199. package/src/assets/app/backend-types.ts +0 -66
  200. package/src/assets/app/components/forms/button-toggle-visibility.tsx +0 -43
  201. package/src/assets/app/components/forms/button.tsx +0 -60
  202. package/src/assets/app/components/forms/fieldset.tsx +0 -55
  203. package/src/assets/app/components/forms/form-card-async.tsx +0 -103
  204. package/src/assets/app/components/forms/form-card.tsx +0 -49
  205. package/src/assets/app/components/forms/input-checkbox.tsx +0 -78
  206. package/src/assets/app/components/forms/input-container.tsx +0 -107
  207. package/src/assets/app/components/forms/input-email-address.tsx +0 -65
  208. package/src/assets/app/components/forms/input-new-password.tsx +0 -62
  209. package/src/assets/app/components/forms/input-password.tsx +0 -87
  210. package/src/assets/app/components/forms/input-text.tsx +0 -82
  211. package/src/assets/app/components/forms/input-token.tsx +0 -94
  212. package/src/assets/app/components/forms/wizard-card.tsx +0 -116
  213. package/src/assets/app/components/layouts/layout-title-page.tsx +0 -77
  214. package/src/assets/app/components/layouts/layout-welcome.tsx +0 -73
  215. package/src/assets/app/components/utils/account-identifier.tsx +0 -23
  216. package/src/assets/app/components/utils/account-image.tsx +0 -33
  217. package/src/assets/app/components/utils/admonition.tsx +0 -52
  218. package/src/assets/app/components/utils/client-name.tsx +0 -45
  219. package/src/assets/app/components/utils/error-card.tsx +0 -93
  220. package/src/assets/app/components/utils/error-message.tsx +0 -88
  221. package/src/assets/app/components/utils/help-card.tsx +0 -46
  222. package/src/assets/app/components/utils/icons.tsx +0 -88
  223. package/src/assets/app/components/utils/link-anchor.tsx +0 -28
  224. package/src/assets/app/components/utils/link-title.tsx +0 -26
  225. package/src/assets/app/components/utils/multi-lang-string.tsx +0 -56
  226. package/src/assets/app/components/utils/password-strength-label.tsx +0 -37
  227. package/src/assets/app/components/utils/password-strength-meter.tsx +0 -58
  228. package/src/assets/app/components/utils/url-viewer.tsx +0 -73
  229. package/src/assets/app/cookies.ts +0 -11
  230. package/src/assets/app/hooks/use-api.ts +0 -178
  231. package/src/assets/app/hooks/use-async-action.ts +0 -120
  232. package/src/assets/app/hooks/use-bound-dispatch.ts +0 -5
  233. package/src/assets/app/hooks/use-browser-color-scheme.ts +0 -31
  234. package/src/assets/app/hooks/use-csrf-token.ts +0 -5
  235. package/src/assets/app/hooks/use-random-string.ts +0 -37
  236. package/src/assets/app/hooks/use-stepper.ts +0 -87
  237. package/src/assets/app/index.html +0 -182
  238. package/src/assets/app/lib/api.ts +0 -289
  239. package/src/assets/app/lib/clsx.ts +0 -6
  240. package/src/assets/app/lib/json-client.ts +0 -94
  241. package/src/assets/app/lib/password.ts +0 -98
  242. package/src/assets/app/lib/ref.ts +0 -17
  243. package/src/assets/app/lib/util.ts +0 -13
  244. package/src/assets/app/locales/an/messages.po +0 -490
  245. package/src/assets/app/locales/ast/messages.po +0 -490
  246. package/src/assets/app/locales/ca/messages.po +0 -490
  247. package/src/assets/app/locales/da/messages.po +0 -490
  248. package/src/assets/app/locales/de/messages.po +0 -490
  249. package/src/assets/app/locales/el/messages.po +0 -490
  250. package/src/assets/app/locales/en/messages.po +0 -490
  251. package/src/assets/app/locales/en-GB/messages.po +0 -490
  252. package/src/assets/app/locales/es/messages.po +0 -490
  253. package/src/assets/app/locales/eu/messages.po +0 -490
  254. package/src/assets/app/locales/fi/messages.po +0 -490
  255. package/src/assets/app/locales/fr/messages.po +0 -490
  256. package/src/assets/app/locales/ga/messages.po +0 -490
  257. package/src/assets/app/locales/gl/messages.po +0 -490
  258. package/src/assets/app/locales/hi/messages.po +0 -490
  259. package/src/assets/app/locales/hu/messages.po +0 -490
  260. package/src/assets/app/locales/ia/messages.po +0 -490
  261. package/src/assets/app/locales/id/messages.po +0 -490
  262. package/src/assets/app/locales/it/messages.po +0 -490
  263. package/src/assets/app/locales/ja/messages.po +0 -490
  264. package/src/assets/app/locales/km/messages.po +0 -490
  265. package/src/assets/app/locales/ko/messages.po +0 -490
  266. package/src/assets/app/locales/load.ts +0 -8
  267. package/src/assets/app/locales/locale-context.ts +0 -19
  268. package/src/assets/app/locales/locale-provider.tsx +0 -112
  269. package/src/assets/app/locales/locale-selector.tsx +0 -58
  270. package/src/assets/app/locales/locales.ts +0 -168
  271. package/src/assets/app/locales/ne/messages.po +0 -490
  272. package/src/assets/app/locales/nl/messages.po +0 -490
  273. package/src/assets/app/locales/pl/messages.po +0 -490
  274. package/src/assets/app/locales/pt-BR/messages.po +0 -490
  275. package/src/assets/app/locales/ro/messages.po +0 -490
  276. package/src/assets/app/locales/ru/messages.po +0 -490
  277. package/src/assets/app/locales/sv/messages.po +0 -490
  278. package/src/assets/app/locales/th/messages.po +0 -490
  279. package/src/assets/app/locales/tr/messages.po +0 -490
  280. package/src/assets/app/locales/uk/messages.po +0 -490
  281. package/src/assets/app/locales/vi/messages.po +0 -490
  282. package/src/assets/app/locales/zh-CN/messages.po +0 -490
  283. package/src/assets/app/locales/zh-HK/messages.po +0 -490
  284. package/src/assets/app/locales/zh-TW/messages.po +0 -490
  285. package/src/assets/app/main.css +0 -33
  286. package/src/assets/app/main.tsx +0 -44
  287. package/src/assets/app/views/authorize/accept/accept-form.tsx +0 -150
  288. package/src/assets/app/views/authorize/accept/accept-view.tsx +0 -70
  289. package/src/assets/app/views/authorize/authorize-view.tsx +0 -180
  290. package/src/assets/app/views/authorize/reset-password/reset-password-confirm-form.tsx +0 -88
  291. package/src/assets/app/views/authorize/reset-password/reset-password-request-form.tsx +0 -80
  292. package/src/assets/app/views/authorize/reset-password/reset-password-view.tsx +0 -127
  293. package/src/assets/app/views/authorize/sign-in/sign-in-form.tsx +0 -242
  294. package/src/assets/app/views/authorize/sign-in/sign-in-picker.tsx +0 -116
  295. package/src/assets/app/views/authorize/sign-in/sign-in-view.tsx +0 -145
  296. package/src/assets/app/views/authorize/sign-up/sign-up-account-form.tsx +0 -142
  297. package/src/assets/app/views/authorize/sign-up/sign-up-disclaimer.tsx +0 -51
  298. package/src/assets/app/views/authorize/sign-up/sign-up-handle-form.tsx +0 -287
  299. package/src/assets/app/views/authorize/sign-up/sign-up-hcaptcha-form.tsx +0 -108
  300. package/src/assets/app/views/authorize/sign-up/sign-up-view.tsx +0 -158
  301. package/src/assets/app/views/authorize/welcome/welcome-view.tsx +0 -56
  302. package/src/assets/app/views/error/error-view.tsx +0 -31
  303. package/src/assets/asset.ts +0 -9
  304. package/src/assets/index.ts +0 -86
  305. package/tailwind.config.js +0 -31
  306. package/tsconfig.frontend.json +0 -11
  307. package/tsconfig.frontend.tsbuildinfo +0 -1
  308. package/tsconfig.tools.json +0 -8
  309. package/tsconfig.tools.tsbuildinfo +0 -1
  310. package/vite.config.mjs +0 -16
@@ -1,4 +0,0 @@
1
- const messages=JSON.parse('{"BVbdlE":["<0/> is asking for permission to access your account (<1/>)."],"4blS0m":["2FA Confirmation"],"S90jaV":["A second authentication factor is required"],"myiH7A":["Access your account data (except chat messages)"],"kJrqQq":["Access your chat messages"],"AeXO77":["Account"],"FTT4a4":["Already have a code?"],"eYNzrj":["An application on your device"],"vW+T+d":["An unknown error occurred"],"+TaG50":["Another account"],"OX6vme":["Authenticate"],"yIVrHZ":["Authorize"],"iH8pgl":["Back"],"4Rgp24":["Between ",["minLength"]," and ",["maxLength"]," characters"],"/aj5l4":["By clicking <0>Authorize</0>, you allow this application to perform the following actions in accordance with their <1>terms of service</1> and <2>privacy policy</2>:"],"mBUXx0":["By creating an account you agree to the ",["0"]," and the ",["1"]," of this service."],"dEgA5A":["Cancel"],"B+Yy3b":["Check your ",["0"]," email for a login code and enter it here."],"khEQ02":["Choose a username"],"EWPtMO":["Code"],"7VpPHA":["Confirm"],"HaGV2g":["Confirm your password to continue"],"ioZOzk":["Confirmation code"],"mpt9T+":["Create a new account"],"IS0nrP":["Create Account"],"54JiGG":["Deny access"],"Nu4oKW":["Description"],"O3oNi5":["Email"],"ATGYL1":["Email address"],"3tOlz6":["Enter a password"],"xg/UcZ":["Enter the code you received to reset your password."],"cHrOqs":["Enter the email you used to create your account. We\'ll send you a \\"reset code\\" so you can set a new password."],"xRPn3U":["Enter your email address"],"0StR7t":["Enter your new password"],"NgaR6B":["Enter your password"],"T0KLp4":["Enter your username and password"],"SlfejT":["Error"],"jxqcgY":["example-com-xxxxx-xxxxx"],"/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"],"qrCiCk":["The data you submitted is invalid. Please check the form and try again."],"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"],"+lWheC":["The invite code is not valid"],"oYKcFO":["This authorization request has been denied. Please try again."],"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"],"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-6_mYuGzB.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"messages-6_mYuGzB.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\\\"],\\\"jxqcgY\\\":[\\\"example-com-xxxxx-xxxxx\\\"],\\\"/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\\\"],\\\"qrCiCk\\\":[\\\"The data you submitted is invalid. Please check the form and try again.\\\"],\\\"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\\\"],\\\"+lWheC\\\":[\\\"The invite code is not valid\\\"],\\\"oYKcFO\\\":[\\\"This authorization request has been denied. Please try again.\\\"],\\\"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\\\"],\\\"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,i/IAA++J;;;;"}
@@ -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"],"jxqcgY":["example-com-xxxxx-xxxxx"],"/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"],"qrCiCk":["The data you submitted is invalid. Please check the form and try again."],"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"],"+lWheC":["The invite code is not valid"],"oYKcFO":["This authorization request has been denied. Please try again."],"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"],"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-7wdeBTpD.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"messages-7wdeBTpD.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\\\"],\\\"jxqcgY\\\":[\\\"example-com-xxxxx-xxxxx\\\"],\\\"/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\\\"],\\\"qrCiCk\\\":[\\\"The data you submitted is invalid. Please check the form and try again.\\\"],\\\"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\\\"],\\\"+lWheC\\\":[\\\"The invite code is not valid\\\"],\\\"oYKcFO\\\":[\\\"This authorization request has been denied. Please try again.\\\"],\\\"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\\\"],\\\"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,i/IAA++J;;;;"}
@@ -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"],"jxqcgY":["example-com-xxxxx-xxxxx"],"/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"],"qrCiCk":["The data you submitted is invalid. Please check the form and try again."],"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"],"+lWheC":["The invite code is not valid"],"oYKcFO":["This authorization request has been denied. Please try again."],"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"],"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-B-YFoWKc.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"messages-B-YFoWKc.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\\\"],\\\"jxqcgY\\\":[\\\"example-com-xxxxx-xxxxx\\\"],\\\"/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\\\"],\\\"qrCiCk\\\":[\\\"The data you submitted is invalid. Please check the form and try again.\\\"],\\\"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\\\"],\\\"+lWheC\\\":[\\\"The invite code is not valid\\\"],\\\"oYKcFO\\\":[\\\"This authorization request has been denied. Please try again.\\\"],\\\"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\\\"],\\\"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,i/IAA++J;;;;"}
@@ -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"],"jxqcgY":["example-com-xxxxx-xxxxx"],"/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"],"qrCiCk":["The data you submitted is invalid. Please check the form and try again."],"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"],"+lWheC":["The invite code is not valid"],"oYKcFO":["This authorization request has been denied. Please try again."],"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"],"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-B10DUOE-.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"messages-B10DUOE-.js","sources":["../../../src/assets/app/locales/ast/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\\\"],\\\"jxqcgY\\\":[\\\"example-com-xxxxx-xxxxx\\\"],\\\"/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\\\"],\\\"qrCiCk\\\":[\\\"The data you submitted is invalid. Please check the form and try again.\\\"],\\\"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\\\"],\\\"+lWheC\\\":[\\\"The invite code is not valid\\\"],\\\"oYKcFO\\\":[\\\"This authorization request has been denied. Please try again.\\\"],\\\"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\\\"],\\\"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,i/IAA++J;;;;"}
@@ -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"],"jxqcgY":["example-com-xxxxx-xxxxx"],"/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"],"qrCiCk":["The data you submitted is invalid. Please check the form and try again."],"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"],"+lWheC":["The invite code is not valid"],"oYKcFO":["This authorization request has been denied. Please try again."],"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"],"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-B4AwFEeZ.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"messages-B4AwFEeZ.js","sources":["../../../src/assets/app/locales/eu/messages.ts"],"sourcesContent":["/*eslint-disable*/import type{Messages}from\"@lingui/core\";export const messages=JSON.parse(\"{\\\"BVbdlE\\\":[\\\"<0/> is asking for permission to access your account (<1/>).\\\"],\\\"4blS0m\\\":[\\\"2FA Confirmation\\\"],\\\"S90jaV\\\":[\\\"A second authentication factor is required\\\"],\\\"myiH7A\\\":[\\\"Access your account data (except chat messages)\\\"],\\\"kJrqQq\\\":[\\\"Access your chat messages\\\"],\\\"AeXO77\\\":[\\\"Account\\\"],\\\"FTT4a4\\\":[\\\"Already have a code?\\\"],\\\"eYNzrj\\\":[\\\"An application on your device\\\"],\\\"vW+T+d\\\":[\\\"An unknown error occurred\\\"],\\\"+TaG50\\\":[\\\"Another account\\\"],\\\"OX6vme\\\":[\\\"Authenticate\\\"],\\\"yIVrHZ\\\":[\\\"Authorize\\\"],\\\"iH8pgl\\\":[\\\"Back\\\"],\\\"4Rgp24\\\":[\\\"Between \\\",[\\\"minLength\\\"],\\\" and \\\",[\\\"maxLength\\\"],\\\" characters\\\"],\\\"/aj5l4\\\":[\\\"By clicking <0>Authorize</0>, you allow this application to perform the following actions in accordance with their <1>terms of service</1> and <2>privacy policy</2>:\\\"],\\\"mBUXx0\\\":[\\\"By creating an account you agree to the \\\",[\\\"0\\\"],\\\" and the \\\",[\\\"1\\\"],\\\" of this service.\\\"],\\\"dEgA5A\\\":[\\\"Cancel\\\"],\\\"B+Yy3b\\\":[\\\"Check your \\\",[\\\"0\\\"],\\\" email for a login code and enter it here.\\\"],\\\"khEQ02\\\":[\\\"Choose a username\\\"],\\\"EWPtMO\\\":[\\\"Code\\\"],\\\"7VpPHA\\\":[\\\"Confirm\\\"],\\\"HaGV2g\\\":[\\\"Confirm your password to continue\\\"],\\\"ioZOzk\\\":[\\\"Confirmation code\\\"],\\\"mpt9T+\\\":[\\\"Create a new account\\\"],\\\"IS0nrP\\\":[\\\"Create Account\\\"],\\\"54JiGG\\\":[\\\"Deny access\\\"],\\\"Nu4oKW\\\":[\\\"Description\\\"],\\\"O3oNi5\\\":[\\\"Email\\\"],\\\"ATGYL1\\\":[\\\"Email address\\\"],\\\"3tOlz6\\\":[\\\"Enter a password\\\"],\\\"xg/UcZ\\\":[\\\"Enter the code you received to reset your password.\\\"],\\\"cHrOqs\\\":[\\\"Enter the email you used to create your account. We'll send you a \\\\\\\"reset code\\\\\\\" so you can set a new password.\\\"],\\\"xRPn3U\\\":[\\\"Enter your email address\\\"],\\\"0StR7t\\\":[\\\"Enter your new password\\\"],\\\"NgaR6B\\\":[\\\"Enter your password\\\"],\\\"T0KLp4\\\":[\\\"Enter your username and password\\\"],\\\"SlfejT\\\":[\\\"Error\\\"],\\\"jxqcgY\\\":[\\\"example-com-xxxxx-xxxxx\\\"],\\\"/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\\\"],\\\"qrCiCk\\\":[\\\"The data you submitted is invalid. Please check the form and try again.\\\"],\\\"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\\\"],\\\"+lWheC\\\":[\\\"The invite code is not valid\\\"],\\\"oYKcFO\\\":[\\\"This authorization request has been denied. Please try again.\\\"],\\\"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\\\"],\\\"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,i/IAA++J;;;;"}
@@ -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"],"jxqcgY":["example-com-xxxxx-xxxxx"],"/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"],"qrCiCk":["The data you submitted is invalid. Please check the form and try again."],"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"],"+lWheC":["The invite code is not valid"],"oYKcFO":["This authorization request has been denied. Please try again."],"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"],"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-BDP8MyEC.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"messages-BDP8MyEC.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\\\"],\\\"jxqcgY\\\":[\\\"example-com-xxxxx-xxxxx\\\"],\\\"/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\\\"],\\\"qrCiCk\\\":[\\\"The data you submitted is invalid. Please check the form and try again.\\\"],\\\"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\\\"],\\\"+lWheC\\\":[\\\"The invite code is not valid\\\"],\\\"oYKcFO\\\":[\\\"This authorization request has been denied. Please try again.\\\"],\\\"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\\\"],\\\"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,i/IAA++J;;;;"}
@@ -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"],"jxqcgY":["example-com-xxxxx-xxxxx"],"/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"],"qrCiCk":["The data you submitted is invalid. Please check the form and try again."],"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"],"+lWheC":["The invite code is not valid"],"oYKcFO":["This authorization request has been denied. Please try again."],"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"],"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-BIS87lxQ.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"messages-BIS87lxQ.js","sources":["../../../src/assets/app/locales/th/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\\\"],\\\"jxqcgY\\\":[\\\"example-com-xxxxx-xxxxx\\\"],\\\"/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\\\"],\\\"qrCiCk\\\":[\\\"The data you submitted is invalid. Please check the form and try again.\\\"],\\\"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\\\"],\\\"+lWheC\\\":[\\\"The invite code is not valid\\\"],\\\"oYKcFO\\\":[\\\"This authorization request has been denied. Please try again.\\\"],\\\"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\\\"],\\\"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,i/IAA++J;;;;"}
@@ -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"],"jxqcgY":["example-com-xxxxx-xxxxx"],"/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"],"qrCiCk":["The data you submitted is invalid. Please check the form and try again."],"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"],"+lWheC":["The invite code is not valid"],"oYKcFO":["This authorization request has been denied. Please try again."],"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"],"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-BI_Wbjdt.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"messages-BI_Wbjdt.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\\\"],\\\"jxqcgY\\\":[\\\"example-com-xxxxx-xxxxx\\\"],\\\"/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\\\"],\\\"qrCiCk\\\":[\\\"The data you submitted is invalid. Please check the form and try again.\\\"],\\\"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\\\"],\\\"+lWheC\\\":[\\\"The invite code is not valid\\\"],\\\"oYKcFO\\\":[\\\"This authorization request has been denied. Please try again.\\\"],\\\"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\\\"],\\\"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,i/IAA++J;;;;"}
@@ -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"],"jxqcgY":["example-com-xxxxx-xxxxx"],"/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"],"qrCiCk":["The data you submitted is invalid. Please check the form and try again."],"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"],"+lWheC":["The invite code is not valid"],"oYKcFO":["This authorization request has been denied. Please try again."],"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"],"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-BMAouhRx.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"messages-BMAouhRx.js","sources":["../../../src/assets/app/locales/uk/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\\\"],\\\"jxqcgY\\\":[\\\"example-com-xxxxx-xxxxx\\\"],\\\"/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\\\"],\\\"qrCiCk\\\":[\\\"The data you submitted is invalid. Please check the form and try again.\\\"],\\\"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\\\"],\\\"+lWheC\\\":[\\\"The invite code is not valid\\\"],\\\"oYKcFO\\\":[\\\"This authorization request has been denied. Please try again.\\\"],\\\"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\\\"],\\\"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,i/IAA++J;;;;"}
@@ -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"],"jxqcgY":["example-com-xxxxx-xxxxx"],"/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"],"qrCiCk":["The data you submitted is invalid. Please check the form and try again."],"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"],"+lWheC":["The invite code is not valid"],"oYKcFO":["This authorization request has been denied. Please try again."],"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"],"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-BdckMnJj.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"messages-BdckMnJj.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\\\"],\\\"jxqcgY\\\":[\\\"example-com-xxxxx-xxxxx\\\"],\\\"/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\\\"],\\\"qrCiCk\\\":[\\\"The data you submitted is invalid. Please check the form and try again.\\\"],\\\"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\\\"],\\\"+lWheC\\\":[\\\"The invite code is not valid\\\"],\\\"oYKcFO\\\":[\\\"This authorization request has been denied. Please try again.\\\"],\\\"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\\\"],\\\"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,i/IAA++J;;;;"}
@@ -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"],"jxqcgY":["example-com-xxxxx-xxxxx"],"/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"],"qrCiCk":["The data you submitted is invalid. Please check the form and try again."],"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"],"+lWheC":["The invite code is not valid"],"oYKcFO":["This authorization request has been denied. Please try again."],"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"],"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-BgBLzc46.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"messages-BgBLzc46.js","sources":["../../../src/assets/app/locales/ne/messages.ts"],"sourcesContent":["/*eslint-disable*/import type{Messages}from\"@lingui/core\";export const messages=JSON.parse(\"{\\\"BVbdlE\\\":[\\\"<0/> is asking for permission to access your account (<1/>).\\\"],\\\"4blS0m\\\":[\\\"2FA Confirmation\\\"],\\\"S90jaV\\\":[\\\"A second authentication factor is required\\\"],\\\"myiH7A\\\":[\\\"Access your account data (except chat messages)\\\"],\\\"kJrqQq\\\":[\\\"Access your chat messages\\\"],\\\"AeXO77\\\":[\\\"Account\\\"],\\\"FTT4a4\\\":[\\\"Already have a code?\\\"],\\\"eYNzrj\\\":[\\\"An application on your device\\\"],\\\"vW+T+d\\\":[\\\"An unknown error occurred\\\"],\\\"+TaG50\\\":[\\\"Another account\\\"],\\\"OX6vme\\\":[\\\"Authenticate\\\"],\\\"yIVrHZ\\\":[\\\"Authorize\\\"],\\\"iH8pgl\\\":[\\\"Back\\\"],\\\"4Rgp24\\\":[\\\"Between \\\",[\\\"minLength\\\"],\\\" and \\\",[\\\"maxLength\\\"],\\\" characters\\\"],\\\"/aj5l4\\\":[\\\"By clicking <0>Authorize</0>, you allow this application to perform the following actions in accordance with their <1>terms of service</1> and <2>privacy policy</2>:\\\"],\\\"mBUXx0\\\":[\\\"By creating an account you agree to the \\\",[\\\"0\\\"],\\\" and the \\\",[\\\"1\\\"],\\\" of this service.\\\"],\\\"dEgA5A\\\":[\\\"Cancel\\\"],\\\"B+Yy3b\\\":[\\\"Check your \\\",[\\\"0\\\"],\\\" email for a login code and enter it here.\\\"],\\\"khEQ02\\\":[\\\"Choose a username\\\"],\\\"EWPtMO\\\":[\\\"Code\\\"],\\\"7VpPHA\\\":[\\\"Confirm\\\"],\\\"HaGV2g\\\":[\\\"Confirm your password to continue\\\"],\\\"ioZOzk\\\":[\\\"Confirmation code\\\"],\\\"mpt9T+\\\":[\\\"Create a new account\\\"],\\\"IS0nrP\\\":[\\\"Create Account\\\"],\\\"54JiGG\\\":[\\\"Deny access\\\"],\\\"Nu4oKW\\\":[\\\"Description\\\"],\\\"O3oNi5\\\":[\\\"Email\\\"],\\\"ATGYL1\\\":[\\\"Email address\\\"],\\\"3tOlz6\\\":[\\\"Enter a password\\\"],\\\"xg/UcZ\\\":[\\\"Enter the code you received to reset your password.\\\"],\\\"cHrOqs\\\":[\\\"Enter the email you used to create your account. We'll send you a \\\\\\\"reset code\\\\\\\" so you can set a new password.\\\"],\\\"xRPn3U\\\":[\\\"Enter your email address\\\"],\\\"0StR7t\\\":[\\\"Enter your new password\\\"],\\\"NgaR6B\\\":[\\\"Enter your password\\\"],\\\"T0KLp4\\\":[\\\"Enter your username and password\\\"],\\\"SlfejT\\\":[\\\"Error\\\"],\\\"jxqcgY\\\":[\\\"example-com-xxxxx-xxxxx\\\"],\\\"/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\\\"],\\\"qrCiCk\\\":[\\\"The data you submitted is invalid. Please check the form and try again.\\\"],\\\"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\\\"],\\\"+lWheC\\\":[\\\"The invite code is not valid\\\"],\\\"oYKcFO\\\":[\\\"This authorization request has been denied. Please try again.\\\"],\\\"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\\\"],\\\"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,i/IAA++J;;;;"}
@@ -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"],"jxqcgY":["example-com-xxxxx-xxxxx"],"/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"],"qrCiCk":["The data you submitted is invalid. Please check the form and try again."],"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"],"+lWheC":["The invite code is not valid"],"oYKcFO":["This authorization request has been denied. Please try again."],"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"],"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-BobD78yK.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"messages-BobD78yK.js","sources":["../../../src/assets/app/locales/ja/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\\\"],\\\"jxqcgY\\\":[\\\"example-com-xxxxx-xxxxx\\\"],\\\"/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\\\"],\\\"qrCiCk\\\":[\\\"The data you submitted is invalid. Please check the form and try again.\\\"],\\\"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\\\"],\\\"+lWheC\\\":[\\\"The invite code is not valid\\\"],\\\"oYKcFO\\\":[\\\"This authorization request has been denied. Please try again.\\\"],\\\"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\\\"],\\\"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,i/IAA++J;;;;"}
@@ -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"],"jxqcgY":["example-com-xxxxx-xxxxx"],"/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"],"qrCiCk":["The data you submitted is invalid. Please check the form and try again."],"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"],"+lWheC":["The invite code is not valid"],"oYKcFO":["This authorization request has been denied. Please try again."],"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"],"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-BtThT9UZ.js.map