@atproto/oauth-provider 0.5.1 → 0.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +39 -0
- package/dist/account/account-manager.d.ts +7 -5
- package/dist/account/account-manager.d.ts.map +1 -1
- package/dist/account/account-manager.js +34 -25
- package/dist/account/account-manager.js.map +1 -1
- package/dist/account/account-store.d.ts +13 -5
- package/dist/account/account-store.d.ts.map +1 -1
- package/dist/account/account-store.js +24 -8
- package/dist/account/account-store.js.map +1 -1
- package/dist/account/account.d.ts +1 -11
- package/dist/account/account.d.ts.map +1 -1
- package/dist/account/{sign-up-data.d.ts → sign-up-input.d.ts} +5 -5
- package/dist/account/sign-up-input.d.ts.map +1 -0
- package/dist/account/{sign-up-data.js → sign-up-input.js} +3 -3
- package/dist/account/sign-up-input.js.map +1 -0
- package/dist/assets/assets-middleware.d.ts +2 -0
- package/dist/assets/assets-middleware.d.ts.map +1 -1
- package/dist/assets/assets-middleware.js +12 -14
- package/dist/assets/assets-middleware.js.map +1 -1
- package/dist/errors/invalid-invite-code-error.d.ts +5 -0
- package/dist/errors/invalid-invite-code-error.d.ts.map +1 -0
- package/dist/errors/invalid-invite-code-error.js +11 -0
- package/dist/errors/invalid-invite-code-error.js.map +1 -0
- package/dist/errors/oauth-error.d.ts +2 -2
- package/dist/errors/oauth-error.js.map +1 -1
- package/dist/lib/csp/index.d.ts +5 -6
- package/dist/lib/csp/index.d.ts.map +1 -1
- package/dist/lib/csp/index.js +14 -11
- package/dist/lib/csp/index.js.map +1 -1
- package/dist/lib/hcaptcha.d.ts +5 -3
- package/dist/lib/hcaptcha.d.ts.map +1 -1
- package/dist/lib/hcaptcha.js +7 -4
- package/dist/lib/hcaptcha.js.map +1 -1
- package/dist/lib/html/build-document.d.ts +2 -2
- package/dist/lib/html/build-document.d.ts.map +1 -1
- package/dist/lib/html/build-document.js +11 -7
- package/dist/lib/html/build-document.js.map +1 -1
- package/dist/lib/html/html.d.ts.map +1 -1
- package/dist/lib/html/html.js +10 -13
- package/dist/lib/html/html.js.map +1 -1
- package/dist/lib/html/util.d.ts +0 -1
- package/dist/lib/html/util.d.ts.map +1 -1
- package/dist/lib/html/util.js +0 -4
- package/dist/lib/html/util.js.map +1 -1
- package/dist/lib/http/response.d.ts +3 -1
- package/dist/lib/http/response.d.ts.map +1 -1
- package/dist/lib/http/response.js +3 -0
- package/dist/lib/http/response.js.map +1 -1
- package/dist/lib/http/security-headers.d.ts +48 -0
- package/dist/lib/http/security-headers.d.ts.map +1 -0
- package/dist/lib/http/security-headers.js +62 -0
- package/dist/lib/http/security-headers.js.map +1 -0
- package/dist/lib/util/type.d.ts +8 -0
- package/dist/lib/util/type.d.ts.map +1 -1
- package/dist/lib/util/type.js.map +1 -1
- package/dist/oauth-errors.d.ts +1 -0
- package/dist/oauth-errors.d.ts.map +1 -1
- package/dist/oauth-errors.js +3 -1
- package/dist/oauth-errors.js.map +1 -1
- package/dist/oauth-hooks.d.ts +4 -25
- package/dist/oauth-hooks.d.ts.map +1 -1
- package/dist/oauth-provider.d.ts.map +1 -1
- package/dist/oauth-provider.js +26 -25
- package/dist/oauth-provider.js.map +1 -1
- package/dist/output/backend-data.d.ts +4 -0
- package/dist/output/backend-data.d.ts.map +1 -0
- package/dist/output/backend-data.js +19 -0
- package/dist/output/backend-data.js.map +1 -0
- package/dist/output/build-authorize-data.d.ts +3 -19
- package/dist/output/build-authorize-data.d.ts.map +1 -1
- package/dist/output/build-authorize-data.js.map +1 -1
- package/dist/output/build-customization-data.d.ts +11 -18
- package/dist/output/build-customization-data.d.ts.map +1 -1
- package/dist/output/build-customization-data.js +1 -1
- package/dist/output/build-customization-data.js.map +1 -1
- package/dist/output/build-error-data.d.ts +3 -0
- package/dist/output/build-error-data.d.ts.map +1 -0
- package/dist/output/build-error-data.js +10 -0
- package/dist/output/build-error-data.js.map +1 -0
- package/dist/output/build-error-payload.d.ts +2 -1
- package/dist/output/build-error-payload.d.ts.map +1 -1
- package/dist/output/build-error-payload.js.map +1 -1
- package/dist/output/output-manager.d.ts +10 -4
- package/dist/output/output-manager.d.ts.map +1 -1
- package/dist/output/output-manager.js +68 -39
- package/dist/output/output-manager.js.map +1 -1
- package/dist/output/send-web-page.d.ts +6 -10
- package/dist/output/send-web-page.d.ts.map +1 -1
- package/dist/output/send-web-page.js +27 -47
- package/dist/output/send-web-page.js.map +1 -1
- package/dist/signer/signed-token-payload.d.ts +3 -3
- package/dist/signer/signer.d.ts +2 -2
- package/package.json +7 -39
- package/src/account/account-manager.ts +55 -34
- package/src/account/account-store.ts +29 -6
- package/src/account/account.ts +1 -14
- package/src/account/{sign-up-data.ts → sign-up-input.ts} +2 -2
- package/src/assets/assets-middleware.ts +11 -17
- package/src/errors/invalid-invite-code-error.ts +10 -0
- package/src/errors/oauth-error.ts +1 -1
- package/src/lib/csp/index.ts +16 -13
- package/src/lib/hcaptcha.ts +10 -7
- package/src/lib/html/build-document.ts +15 -8
- package/src/lib/html/html.ts +11 -18
- package/src/lib/html/util.ts +0 -4
- package/src/lib/http/response.ts +9 -1
- package/src/lib/http/security-headers.ts +91 -0
- package/src/lib/util/type.ts +18 -0
- package/src/oauth-errors.ts +1 -0
- package/src/oauth-hooks.ts +4 -25
- package/src/oauth-provider.ts +40 -34
- package/src/output/backend-data.ts +18 -0
- package/src/output/build-authorize-data.ts +3 -26
- package/src/output/build-customization-data.ts +2 -13
- package/src/output/build-error-data.ts +8 -0
- package/src/output/build-error-payload.ts +4 -2
- package/src/output/output-manager.ts +86 -47
- package/src/output/send-web-page.ts +29 -58
- package/tsconfig.backend.json +1 -2
- package/tsconfig.backend.tsbuildinfo +1 -1
- package/tsconfig.json +1 -5
- package/.linguirc +0 -57
- package/dist/account/sign-up-data.d.ts.map +0 -1
- package/dist/account/sign-up-data.js.map +0 -1
- package/dist/assets/app/bundle-manifest.json +0 -614
- package/dist/assets/app/index-ItwwtJ8r.js +0 -36
- package/dist/assets/app/index-ItwwtJ8r.js.map +0 -1
- package/dist/assets/app/main-B_dNxQo_.js +0 -4
- package/dist/assets/app/main-B_dNxQo_.js.map +0 -1
- package/dist/assets/app/main-CSatvmRR.css +0 -3
- package/dist/assets/app/main-CSatvmRR.js +0 -306
- package/dist/assets/app/main-CSatvmRR.js.map +0 -1
- package/dist/assets/app/messages-BQeltXSF.js +0 -4
- package/dist/assets/app/messages-BQeltXSF.js.map +0 -1
- package/dist/assets/app/messages-BQkEhfjg.js +0 -4
- package/dist/assets/app/messages-BQkEhfjg.js.map +0 -1
- package/dist/assets/app/messages-BUjKj_UJ.js +0 -4
- package/dist/assets/app/messages-BUjKj_UJ.js.map +0 -1
- package/dist/assets/app/messages-BWIQa8fO.js +0 -4
- package/dist/assets/app/messages-BWIQa8fO.js.map +0 -1
- package/dist/assets/app/messages-BaNVb0bp.js +0 -4
- package/dist/assets/app/messages-BaNVb0bp.js.map +0 -1
- package/dist/assets/app/messages-BaizVXcF.js +0 -4
- package/dist/assets/app/messages-BaizVXcF.js.map +0 -1
- package/dist/assets/app/messages-BfoClA1Y.js +0 -4
- package/dist/assets/app/messages-BfoClA1Y.js.map +0 -1
- package/dist/assets/app/messages-BsKGDZnC.js +0 -4
- package/dist/assets/app/messages-BsKGDZnC.js.map +0 -1
- package/dist/assets/app/messages-Bu-TJhml.js +0 -4
- package/dist/assets/app/messages-Bu-TJhml.js.map +0 -1
- package/dist/assets/app/messages-BvOKnBQk.js +0 -4
- package/dist/assets/app/messages-BvOKnBQk.js.map +0 -1
- package/dist/assets/app/messages-BxDzCiWz.js +0 -4
- package/dist/assets/app/messages-BxDzCiWz.js.map +0 -1
- package/dist/assets/app/messages-CDgFOy4S.js +0 -4
- package/dist/assets/app/messages-CDgFOy4S.js.map +0 -1
- package/dist/assets/app/messages-CLbTz0o9.js +0 -4
- package/dist/assets/app/messages-CLbTz0o9.js.map +0 -1
- package/dist/assets/app/messages-CNwSh0t7.js +0 -4
- package/dist/assets/app/messages-CNwSh0t7.js.map +0 -1
- package/dist/assets/app/messages-CSMNJ6P8.js +0 -4
- package/dist/assets/app/messages-CSMNJ6P8.js.map +0 -1
- package/dist/assets/app/messages-CZQUw3mp.js +0 -4
- package/dist/assets/app/messages-CZQUw3mp.js.map +0 -1
- package/dist/assets/app/messages-CZT41oVp.js +0 -4
- package/dist/assets/app/messages-CZT41oVp.js.map +0 -1
- package/dist/assets/app/messages-C_b-d3t8.js +0 -4
- package/dist/assets/app/messages-C_b-d3t8.js.map +0 -1
- package/dist/assets/app/messages-C_u3MTc2.js +0 -4
- package/dist/assets/app/messages-C_u3MTc2.js.map +0 -1
- package/dist/assets/app/messages-Cn8nHZic.js +0 -4
- package/dist/assets/app/messages-Cn8nHZic.js.map +0 -1
- package/dist/assets/app/messages-CtDywJUm.js +0 -4
- package/dist/assets/app/messages-CtDywJUm.js.map +0 -1
- package/dist/assets/app/messages-CurtIjBF.js +0 -4
- package/dist/assets/app/messages-CurtIjBF.js.map +0 -1
- package/dist/assets/app/messages-Cv6zIbaP.js +0 -4
- package/dist/assets/app/messages-Cv6zIbaP.js.map +0 -1
- package/dist/assets/app/messages-D1eLQuPE.js +0 -4
- package/dist/assets/app/messages-D1eLQuPE.js.map +0 -1
- package/dist/assets/app/messages-D8vHEaYW.js +0 -4
- package/dist/assets/app/messages-D8vHEaYW.js.map +0 -1
- package/dist/assets/app/messages-DJ1Q4GeC.js +0 -4
- package/dist/assets/app/messages-DJ1Q4GeC.js.map +0 -1
- package/dist/assets/app/messages-DRL3exqd.js +0 -4
- package/dist/assets/app/messages-DRL3exqd.js.map +0 -1
- package/dist/assets/app/messages-DWLPQRTp.js +0 -4
- package/dist/assets/app/messages-DWLPQRTp.js.map +0 -1
- package/dist/assets/app/messages-DjVaE9YE.js +0 -4
- package/dist/assets/app/messages-DjVaE9YE.js.map +0 -1
- package/dist/assets/app/messages-DqpMfFJR.js +0 -4
- package/dist/assets/app/messages-DqpMfFJR.js.map +0 -1
- package/dist/assets/app/messages-ETjhJBEN.js +0 -4
- package/dist/assets/app/messages-ETjhJBEN.js.map +0 -1
- package/dist/assets/app/messages-EUKrgrGn.js +0 -4
- package/dist/assets/app/messages-EUKrgrGn.js.map +0 -1
- package/dist/assets/app/messages-QQrOUcPW.js +0 -4
- package/dist/assets/app/messages-QQrOUcPW.js.map +0 -1
- package/dist/assets/app/messages-e2QGqFL6.js +0 -4
- package/dist/assets/app/messages-e2QGqFL6.js.map +0 -1
- package/dist/assets/app/messages-p61py7gD.js +0 -4
- package/dist/assets/app/messages-p61py7gD.js.map +0 -1
- package/dist/assets/asset.d.ts +0 -9
- package/dist/assets/asset.d.ts.map +0 -1
- package/dist/assets/asset.js +0 -3
- package/dist/assets/asset.js.map +0 -1
- package/dist/assets/index.d.ts +0 -5
- package/dist/assets/index.d.ts.map +0 -1
- package/dist/assets/index.js +0 -78
- package/dist/assets/index.js.map +0 -1
- package/rollup.config.js +0 -98
- package/src/assets/app/app.tsx +0 -43
- package/src/assets/app/backend-data.ts +0 -27
- package/src/assets/app/backend-types.ts +0 -66
- package/src/assets/app/components/forms/button-toggle-visibility.tsx +0 -43
- package/src/assets/app/components/forms/button.tsx +0 -60
- package/src/assets/app/components/forms/fieldset.tsx +0 -55
- package/src/assets/app/components/forms/form-card-async.tsx +0 -103
- package/src/assets/app/components/forms/form-card.tsx +0 -49
- package/src/assets/app/components/forms/input-checkbox.tsx +0 -73
- package/src/assets/app/components/forms/input-container.tsx +0 -107
- package/src/assets/app/components/forms/input-email-address.tsx +0 -66
- package/src/assets/app/components/forms/input-new-password.tsx +0 -62
- package/src/assets/app/components/forms/input-password.tsx +0 -88
- package/src/assets/app/components/forms/input-text.tsx +0 -76
- package/src/assets/app/components/forms/input-token.tsx +0 -94
- package/src/assets/app/components/forms/wizard-card.tsx +0 -116
- package/src/assets/app/components/layouts/layout-title-page.tsx +0 -77
- package/src/assets/app/components/layouts/layout-welcome.tsx +0 -73
- package/src/assets/app/components/utils/account-identifier.tsx +0 -23
- package/src/assets/app/components/utils/account-image.tsx +0 -33
- package/src/assets/app/components/utils/admonition.tsx +0 -52
- package/src/assets/app/components/utils/client-name.tsx +0 -45
- package/src/assets/app/components/utils/error-card.tsx +0 -93
- package/src/assets/app/components/utils/error-message.tsx +0 -62
- package/src/assets/app/components/utils/help-card.tsx +0 -46
- package/src/assets/app/components/utils/icons.tsx +0 -88
- package/src/assets/app/components/utils/link-anchor.tsx +0 -28
- package/src/assets/app/components/utils/link-title.tsx +0 -26
- package/src/assets/app/components/utils/multi-lang-string.tsx +0 -56
- package/src/assets/app/components/utils/password-strength-label.tsx +0 -37
- package/src/assets/app/components/utils/password-strength-meter.tsx +0 -58
- package/src/assets/app/components/utils/url-viewer.tsx +0 -73
- package/src/assets/app/cookies.ts +0 -11
- package/src/assets/app/hooks/use-api.ts +0 -178
- package/src/assets/app/hooks/use-async-action.ts +0 -120
- package/src/assets/app/hooks/use-bound-dispatch.ts +0 -5
- package/src/assets/app/hooks/use-browser-color-scheme.ts +0 -31
- package/src/assets/app/hooks/use-csrf-token.ts +0 -5
- package/src/assets/app/hooks/use-random-string.ts +0 -37
- package/src/assets/app/hooks/use-stepper.ts +0 -87
- package/src/assets/app/index.html +0 -182
- package/src/assets/app/lib/api.ts +0 -267
- package/src/assets/app/lib/clsx.ts +0 -6
- package/src/assets/app/lib/json-client.ts +0 -94
- package/src/assets/app/lib/password.ts +0 -98
- package/src/assets/app/lib/ref.ts +0 -17
- package/src/assets/app/lib/util.ts +0 -13
- package/src/assets/app/locales/an/messages.po +0 -492
- package/src/assets/app/locales/ast/messages.po +0 -492
- package/src/assets/app/locales/ca/messages.po +0 -492
- package/src/assets/app/locales/da/messages.po +0 -492
- package/src/assets/app/locales/de/messages.po +0 -492
- package/src/assets/app/locales/el/messages.po +0 -492
- package/src/assets/app/locales/en/messages.po +0 -492
- package/src/assets/app/locales/en-GB/messages.po +0 -492
- package/src/assets/app/locales/es/messages.po +0 -492
- package/src/assets/app/locales/eu/messages.po +0 -492
- package/src/assets/app/locales/fi/messages.po +0 -492
- package/src/assets/app/locales/fr/messages.po +0 -492
- package/src/assets/app/locales/ga/messages.po +0 -492
- package/src/assets/app/locales/gl/messages.po +0 -492
- package/src/assets/app/locales/hi/messages.po +0 -492
- package/src/assets/app/locales/hu/messages.po +0 -492
- package/src/assets/app/locales/ia/messages.po +0 -492
- package/src/assets/app/locales/id/messages.po +0 -492
- package/src/assets/app/locales/it/messages.po +0 -492
- package/src/assets/app/locales/ja/messages.po +0 -492
- package/src/assets/app/locales/km/messages.po +0 -492
- package/src/assets/app/locales/ko/messages.po +0 -492
- package/src/assets/app/locales/load.ts +0 -8
- package/src/assets/app/locales/locale-context.ts +0 -19
- package/src/assets/app/locales/locale-provider.tsx +0 -112
- package/src/assets/app/locales/locale-selector.tsx +0 -58
- package/src/assets/app/locales/locales.ts +0 -168
- package/src/assets/app/locales/ne/messages.po +0 -492
- package/src/assets/app/locales/nl/messages.po +0 -492
- package/src/assets/app/locales/pl/messages.po +0 -492
- package/src/assets/app/locales/pt-BR/messages.po +0 -492
- package/src/assets/app/locales/ro/messages.po +0 -492
- package/src/assets/app/locales/ru/messages.po +0 -492
- package/src/assets/app/locales/sv/messages.po +0 -492
- package/src/assets/app/locales/th/messages.po +0 -492
- package/src/assets/app/locales/tr/messages.po +0 -492
- package/src/assets/app/locales/uk/messages.po +0 -492
- package/src/assets/app/locales/vi/messages.po +0 -492
- package/src/assets/app/locales/zh-CN/messages.po +0 -492
- package/src/assets/app/locales/zh-HK/messages.po +0 -492
- package/src/assets/app/locales/zh-TW/messages.po +0 -492
- package/src/assets/app/main.css +0 -33
- package/src/assets/app/main.tsx +0 -44
- package/src/assets/app/views/authorize/accept/accept-form.tsx +0 -150
- package/src/assets/app/views/authorize/accept/accept-view.tsx +0 -70
- package/src/assets/app/views/authorize/authorize-view.tsx +0 -180
- package/src/assets/app/views/authorize/reset-password/reset-password-confirm-form.tsx +0 -88
- package/src/assets/app/views/authorize/reset-password/reset-password-request-form.tsx +0 -80
- package/src/assets/app/views/authorize/reset-password/reset-password-view.tsx +0 -127
- package/src/assets/app/views/authorize/sign-in/sign-in-form.tsx +0 -244
- package/src/assets/app/views/authorize/sign-in/sign-in-picker.tsx +0 -116
- package/src/assets/app/views/authorize/sign-in/sign-in-view.tsx +0 -145
- package/src/assets/app/views/authorize/sign-up/sign-up-account-form.tsx +0 -140
- package/src/assets/app/views/authorize/sign-up/sign-up-disclaimer.tsx +0 -51
- package/src/assets/app/views/authorize/sign-up/sign-up-handle-form.tsx +0 -289
- package/src/assets/app/views/authorize/sign-up/sign-up-hcaptcha-form.tsx +0 -108
- package/src/assets/app/views/authorize/sign-up/sign-up-view.tsx +0 -158
- package/src/assets/app/views/authorize/welcome/welcome-view.tsx +0 -56
- package/src/assets/app/views/error/error-view.tsx +0 -31
- package/src/assets/asset.ts +0 -9
- package/src/assets/index.ts +0 -86
- package/tailwind.config.js +0 -31
- package/tsconfig.frontend.json +0 -11
- package/tsconfig.frontend.tsbuildinfo +0 -1
- package/tsconfig.tools.json +0 -8
- package/tsconfig.tools.tsbuildinfo +0 -1
- package/vite.config.mjs +0 -16
@@ -1 +0,0 @@
|
|
1
|
-
{"version":3,"file":"messages-DJ1Q4GeC.js","sources":["../../../src/assets/app/locales/zh-HK/messages.ts"],"sourcesContent":["/*eslint-disable*/import type{Messages}from\"@lingui/core\";export const messages=JSON.parse(\"{\\\"BVbdlE\\\":[\\\"<0/> is asking for permission to access your account (<1/>).\\\"],\\\"4blS0m\\\":[\\\"2FA Confirmation\\\"],\\\"S90jaV\\\":[\\\"A second authentication factor is required\\\"],\\\"myiH7A\\\":[\\\"Access your account data (except chat messages)\\\"],\\\"kJrqQq\\\":[\\\"Access your chat messages\\\"],\\\"AeXO77\\\":[\\\"Account\\\"],\\\"FTT4a4\\\":[\\\"Already have a code?\\\"],\\\"eYNzrj\\\":[\\\"An application on your device\\\"],\\\"vW+T+d\\\":[\\\"An unknown error occurred\\\"],\\\"+TaG50\\\":[\\\"Another account\\\"],\\\"OX6vme\\\":[\\\"Authenticate\\\"],\\\"yIVrHZ\\\":[\\\"Authorize\\\"],\\\"iH8pgl\\\":[\\\"Back\\\"],\\\"4Rgp24\\\":[\\\"Between \\\",[\\\"minLength\\\"],\\\" and \\\",[\\\"maxLength\\\"],\\\" characters\\\"],\\\"/aj5l4\\\":[\\\"By clicking <0>Authorize</0>, you allow this application to perform the following actions in accordance with their <1>terms of service</1> and <2>privacy policy</2>:\\\"],\\\"mBUXx0\\\":[\\\"By creating an account you agree to the \\\",[\\\"0\\\"],\\\" and the \\\",[\\\"1\\\"],\\\" of this service.\\\"],\\\"dEgA5A\\\":[\\\"Cancel\\\"],\\\"B+Yy3b\\\":[\\\"Check your \\\",[\\\"0\\\"],\\\" email for a login code and enter it here.\\\"],\\\"khEQ02\\\":[\\\"Choose a username\\\"],\\\"EWPtMO\\\":[\\\"Code\\\"],\\\"7VpPHA\\\":[\\\"Confirm\\\"],\\\"HaGV2g\\\":[\\\"Confirm your password to continue\\\"],\\\"ioZOzk\\\":[\\\"Confirmation code\\\"],\\\"mpt9T+\\\":[\\\"Create a new account\\\"],\\\"IS0nrP\\\":[\\\"Create Account\\\"],\\\"54JiGG\\\":[\\\"Deny access\\\"],\\\"Nu4oKW\\\":[\\\"Description\\\"],\\\"O3oNi5\\\":[\\\"Email\\\"],\\\"ATGYL1\\\":[\\\"Email address\\\"],\\\"3tOlz6\\\":[\\\"Enter a password\\\"],\\\"xg/UcZ\\\":[\\\"Enter the code you received to reset your password.\\\"],\\\"cHrOqs\\\":[\\\"Enter the email you used to create your account. We'll send you a \\\\\\\"reset code\\\\\\\" so you can set a new password.\\\"],\\\"xRPn3U\\\":[\\\"Enter your email address\\\"],\\\"0StR7t\\\":[\\\"Enter your new password\\\"],\\\"NgaR6B\\\":[\\\"Enter your password\\\"],\\\"T0KLp4\\\":[\\\"Enter your username and password\\\"],\\\"SlfejT\\\":[\\\"Error\\\"],\\\"/Ltc/k\\\":[\\\"Extra\\\"],\\\"dn8X5t\\\":[\\\"Forgot Password\\\"],\\\"F4OP4y\\\":[\\\"Forgot?\\\"],\\\"QdVx1C\\\":[\\\"Grant access to your <0>\\\",[\\\"0\\\"],\\\"</0> account\\\"],\\\"87VTIH\\\":[\\\"Having trouble? <0>Contact support</0>\\\"],\\\"vLyv1R\\\":[\\\"Hide\\\"],\\\"i0qMbr\\\":[\\\"Home\\\"],\\\"sJGljQ\\\":[\\\"Identifier\\\"],\\\"vHJQ4A\\\":[\\\"Interface language selector\\\"],\\\"JHB/Ky\\\":[\\\"Invalid\\\"],\\\"6KlkHI\\\":[\\\"Invite code\\\"],\\\"Esfg1M\\\":[\\\"Let's get your password reset!\\\"],\\\"UCOd1e\\\":[\\\"Login complete\\\"],\\\"cR9UpQ\\\":[\\\"Login to account that is not listed\\\"],\\\"0hTJM+\\\":[\\\"Looks like \\\",[\\\"example\\\"]],\\\"huXYDE\\\":[\\\"Make visible\\\"],\\\"VU3Nrn\\\":[\\\"Missing\\\"],\\\"dvYuhh\\\":[\\\"Moderate\\\"],\\\"6YtxFj\\\":[\\\"Name\\\"],\\\"/nT6AE\\\":[\\\"New password\\\"],\\\"hXzOVo\\\":[\\\"Next\\\"],\\\"UaXeX3\\\":[\\\"Okay\\\"],\\\"yDlXDJ\\\":[\\\"Only letters, numbers, and hyphens\\\"],\\\"8ZsakT\\\":[\\\"Password\\\"],\\\"osAB4a\\\":[\\\"Password strength\\\"],\\\"xfNKwI\\\":[\\\"Password strength indicator\\\"],\\\"fSy6T1\\\":[\\\"Password Updated\\\"],\\\"DKeVgZ\\\":[\\\"Password updated!\\\"],\\\"5CqSPX\\\":[\\\"Password with at least \\\",[\\\"MIN_PASSWORD_LENGTH\\\"],\\\" characters\\\"],\\\"+Z2ZNt\\\":[\\\"Please verify the domain name of the website before entering your password. Never enter your password on a domain you do not trust.\\\"],\\\"LcET2C\\\":[\\\"Privacy Policy\\\"],\\\"1TxdLU\\\":[\\\"Remember this account on this device\\\"],\\\"c7cY3z\\\":[\\\"Requested permissions\\\"],\\\"vJgYMA\\\":[\\\"Reset code\\\"],\\\"KbS2K9\\\":[\\\"Reset Password\\\"],\\\"slOprG\\\":[\\\"Reset your password\\\"],\\\"HB+TbB\\\":[\\\"Select domain\\\"],\\\"o3dwub\\\":[\\\"Select from an existing account\\\"],\\\"CqO9qC\\\":[\\\"Session\\\"],\\\"5lWFkC\\\":[\\\"Sign in\\\"],\\\"N9o7n5\\\":[\\\"Sign in as \\\",[\\\"0\\\"]],\\\"FT1MVS\\\":[\\\"Sign in as...\\\"],\\\"e+RpCP\\\":[\\\"Sign up\\\"],\\\"BEx8rG\\\":[\\\"Step \\\",[\\\"currentPosition\\\"],\\\" of \\\",[\\\"count\\\"]],\\\"LLx/nr\\\":[\\\"Strong\\\"],\\\"hQRttt\\\":[\\\"Submit\\\"],\\\"XYLcNv\\\":[\\\"Support\\\"],\\\"xowcRf\\\":[\\\"Terms of Service\\\"],\\\"D00bHj\\\":[\\\"That handle cannot be used\\\"],\\\"qDdKKD\\\":[\\\"The domain name is not allowed\\\"],\\\"we0QGx\\\":[\\\"The handle contains inappropriate language\\\"],\\\"kPGuFg\\\":[\\\"The handle is already in use\\\"],\\\"LSPrK4\\\":[\\\"The handle is invalid\\\"],\\\"SZKM0t\\\":[\\\"This email is already used\\\"],\\\"T61uiW\\\":[\\\"This handle is reserved\\\"],\\\"5OVfoe\\\":[\\\"This sign-in session has expired\\\"],\\\"LX2sHe\\\":[\\\"Type your desired username\\\"],\\\"Jja+Vn\\\":[\\\"Unexpected server response\\\"],\\\"BWM1dL\\\":[\\\"Uniquely identify you\\\"],\\\"nZx9mr\\\":[\\\"Username or email address\\\"],\\\"nfagfM\\\":[\\\"Valid\\\"],\\\"86GEtW\\\":[\\\"Valid email address or username\\\"],\\\"aIar4b\\\":[\\\"Verify you are human\\\"],\\\"r6y+jM\\\":[\\\"Warning\\\"],\\\"qjBGxf\\\":[\\\"We're so excited to have you join us!\\\"],\\\"9ls/Vs\\\":[\\\"Weak\\\"],\\\"jSVjfa\\\":[\\\"Wrong identifier or password\\\"],\\\"qq6QQ5\\\":[\\\"You are being redirected...\\\"],\\\"B9VwbO\\\":[\\\"You can change this username to any domain name you control after your account is set up.\\\"],\\\"67nRLM\\\":[\\\"You can now sign in with your new password.\\\"],\\\"imRJNy\\\":[\\\"You will receive an email with a \\\\\\\"reset code\\\\\\\". Enter that code here then enter your new password.\\\"],\\\"gdRnT7\\\":[\\\"Your account\\\"],\\\"r/b/p8\\\":[\\\"Your full username will be: \\\",[\\\"0\\\"]],\\\"+qGdcW\\\":[\\\"Your password has been updated!\\\"]}\")as Messages;"],"names":["messages","JSON","parse"],"mappings":"AAAuEA,MAAAA,QAAAA,CAASC,IAAKC,CAAAA,KAAK,CAAC,+yIAAiyJ;;;;"}
|
@@ -1,4 +0,0 @@
|
|
1
|
-
const messages=JSON.parse('{"BVbdlE":["<0/> is asking for permission to access your account (<1/>)."],"4blS0m":["2FA Confirmation"],"S90jaV":["A second authentication factor is required"],"myiH7A":["Access your account data (except chat messages)"],"kJrqQq":["Access your chat messages"],"AeXO77":["Account"],"FTT4a4":["Already have a code?"],"eYNzrj":["An application on your device"],"vW+T+d":["An unknown error occurred"],"+TaG50":["Another account"],"OX6vme":["Authenticate"],"yIVrHZ":["Authorize"],"iH8pgl":["Back"],"4Rgp24":["Between ",["minLength"]," and ",["maxLength"]," characters"],"/aj5l4":["By clicking <0>Authorize</0>, you allow this application to perform the following actions in accordance with their <1>terms of service</1> and <2>privacy policy</2>:"],"mBUXx0":["By creating an account you agree to the ",["0"]," and the ",["1"]," of this service."],"dEgA5A":["Cancel"],"B+Yy3b":["Check your ",["0"]," email for a login code and enter it here."],"khEQ02":["Choose a username"],"EWPtMO":["Code"],"7VpPHA":["Confirm"],"HaGV2g":["Confirm your password to continue"],"ioZOzk":["Confirmation code"],"mpt9T+":["Create a new account"],"IS0nrP":["Create Account"],"54JiGG":["Deny access"],"Nu4oKW":["Description"],"O3oNi5":["Email"],"ATGYL1":["Email address"],"3tOlz6":["Enter a password"],"xg/UcZ":["Enter the code you received to reset your password."],"cHrOqs":["Enter the email you used to create your account. We\'ll send you a \\"reset code\\" so you can set a new password."],"xRPn3U":["Enter your email address"],"0StR7t":["Enter your new password"],"NgaR6B":["Enter your password"],"T0KLp4":["Enter your username and password"],"SlfejT":["Error"],"/Ltc/k":["Extra"],"dn8X5t":["Forgot Password"],"F4OP4y":["Forgot?"],"QdVx1C":["Grant access to your <0>",["0"],"</0> account"],"87VTIH":["Having trouble? <0>Contact support</0>"],"vLyv1R":["Hide"],"i0qMbr":["Home"],"sJGljQ":["Identifier"],"vHJQ4A":["Interface language selector"],"JHB/Ky":["Invalid"],"6KlkHI":["Invite code"],"Esfg1M":["Let\'s get your password reset!"],"UCOd1e":["Login complete"],"cR9UpQ":["Login to account that is not listed"],"0hTJM+":["Looks like ",["example"]],"huXYDE":["Make visible"],"VU3Nrn":["Missing"],"dvYuhh":["Moderate"],"6YtxFj":["Name"],"/nT6AE":["New password"],"hXzOVo":["Next"],"UaXeX3":["Okay"],"yDlXDJ":["Only letters, numbers, and hyphens"],"8ZsakT":["Password"],"osAB4a":["Password strength"],"xfNKwI":["Password strength indicator"],"fSy6T1":["Password Updated"],"DKeVgZ":["Password updated!"],"5CqSPX":["Password with at least ",["MIN_PASSWORD_LENGTH"]," characters"],"+Z2ZNt":["Please verify the domain name of the website before entering your password. Never enter your password on a domain you do not trust."],"LcET2C":["Privacy Policy"],"1TxdLU":["Remember this account on this device"],"c7cY3z":["Requested permissions"],"vJgYMA":["Reset code"],"KbS2K9":["Reset Password"],"slOprG":["Reset your password"],"HB+TbB":["Select domain"],"o3dwub":["Select from an existing account"],"CqO9qC":["Session"],"5lWFkC":["Sign in"],"N9o7n5":["Sign in as ",["0"]],"FT1MVS":["Sign in as..."],"e+RpCP":["Sign up"],"BEx8rG":["Step ",["currentPosition"]," of ",["count"]],"LLx/nr":["Strong"],"hQRttt":["Submit"],"XYLcNv":["Support"],"xowcRf":["Terms of Service"],"D00bHj":["That handle cannot be used"],"qDdKKD":["The domain name is not allowed"],"we0QGx":["The handle contains inappropriate language"],"kPGuFg":["The handle is already in use"],"LSPrK4":["The handle is invalid"],"SZKM0t":["This email is already used"],"T61uiW":["This handle is reserved"],"5OVfoe":["This sign-in session has expired"],"LX2sHe":["Type your desired username"],"Jja+Vn":["Unexpected server response"],"BWM1dL":["Uniquely identify you"],"nZx9mr":["Username or email address"],"nfagfM":["Valid"],"86GEtW":["Valid email address or username"],"aIar4b":["Verify you are human"],"r6y+jM":["Warning"],"qjBGxf":["We\'re so excited to have you join us!"],"9ls/Vs":["Weak"],"jSVjfa":["Wrong identifier or password"],"qq6QQ5":["You are being redirected..."],"B9VwbO":["You can change this username to any domain name you control after your account is set up."],"67nRLM":["You can now sign in with your new password."],"imRJNy":["You will receive an email with a \\"reset code\\". Enter that code here then enter your new password."],"gdRnT7":["Your account"],"r/b/p8":["Your full username will be: ",["0"]],"+qGdcW":["Your password has been updated!"]}');
|
2
|
-
|
3
|
-
export { messages };
|
4
|
-
//# sourceMappingURL=messages-DRL3exqd.js.map
|
@@ -1 +0,0 @@
|
|
1
|
-
{"version":3,"file":"messages-DRL3exqd.js","sources":["../../../src/assets/app/locales/el/messages.ts"],"sourcesContent":["/*eslint-disable*/import type{Messages}from\"@lingui/core\";export const messages=JSON.parse(\"{\\\"BVbdlE\\\":[\\\"<0/> is asking for permission to access your account (<1/>).\\\"],\\\"4blS0m\\\":[\\\"2FA Confirmation\\\"],\\\"S90jaV\\\":[\\\"A second authentication factor is required\\\"],\\\"myiH7A\\\":[\\\"Access your account data (except chat messages)\\\"],\\\"kJrqQq\\\":[\\\"Access your chat messages\\\"],\\\"AeXO77\\\":[\\\"Account\\\"],\\\"FTT4a4\\\":[\\\"Already have a code?\\\"],\\\"eYNzrj\\\":[\\\"An application on your device\\\"],\\\"vW+T+d\\\":[\\\"An unknown error occurred\\\"],\\\"+TaG50\\\":[\\\"Another account\\\"],\\\"OX6vme\\\":[\\\"Authenticate\\\"],\\\"yIVrHZ\\\":[\\\"Authorize\\\"],\\\"iH8pgl\\\":[\\\"Back\\\"],\\\"4Rgp24\\\":[\\\"Between \\\",[\\\"minLength\\\"],\\\" and \\\",[\\\"maxLength\\\"],\\\" characters\\\"],\\\"/aj5l4\\\":[\\\"By clicking <0>Authorize</0>, you allow this application to perform the following actions in accordance with their <1>terms of service</1> and <2>privacy policy</2>:\\\"],\\\"mBUXx0\\\":[\\\"By creating an account you agree to the \\\",[\\\"0\\\"],\\\" and the \\\",[\\\"1\\\"],\\\" of this service.\\\"],\\\"dEgA5A\\\":[\\\"Cancel\\\"],\\\"B+Yy3b\\\":[\\\"Check your \\\",[\\\"0\\\"],\\\" email for a login code and enter it here.\\\"],\\\"khEQ02\\\":[\\\"Choose a username\\\"],\\\"EWPtMO\\\":[\\\"Code\\\"],\\\"7VpPHA\\\":[\\\"Confirm\\\"],\\\"HaGV2g\\\":[\\\"Confirm your password to continue\\\"],\\\"ioZOzk\\\":[\\\"Confirmation code\\\"],\\\"mpt9T+\\\":[\\\"Create a new account\\\"],\\\"IS0nrP\\\":[\\\"Create Account\\\"],\\\"54JiGG\\\":[\\\"Deny access\\\"],\\\"Nu4oKW\\\":[\\\"Description\\\"],\\\"O3oNi5\\\":[\\\"Email\\\"],\\\"ATGYL1\\\":[\\\"Email address\\\"],\\\"3tOlz6\\\":[\\\"Enter a password\\\"],\\\"xg/UcZ\\\":[\\\"Enter the code you received to reset your password.\\\"],\\\"cHrOqs\\\":[\\\"Enter the email you used to create your account. We'll send you a \\\\\\\"reset code\\\\\\\" so you can set a new password.\\\"],\\\"xRPn3U\\\":[\\\"Enter your email address\\\"],\\\"0StR7t\\\":[\\\"Enter your new password\\\"],\\\"NgaR6B\\\":[\\\"Enter your password\\\"],\\\"T0KLp4\\\":[\\\"Enter your username and password\\\"],\\\"SlfejT\\\":[\\\"Error\\\"],\\\"/Ltc/k\\\":[\\\"Extra\\\"],\\\"dn8X5t\\\":[\\\"Forgot Password\\\"],\\\"F4OP4y\\\":[\\\"Forgot?\\\"],\\\"QdVx1C\\\":[\\\"Grant access to your <0>\\\",[\\\"0\\\"],\\\"</0> account\\\"],\\\"87VTIH\\\":[\\\"Having trouble? <0>Contact support</0>\\\"],\\\"vLyv1R\\\":[\\\"Hide\\\"],\\\"i0qMbr\\\":[\\\"Home\\\"],\\\"sJGljQ\\\":[\\\"Identifier\\\"],\\\"vHJQ4A\\\":[\\\"Interface language selector\\\"],\\\"JHB/Ky\\\":[\\\"Invalid\\\"],\\\"6KlkHI\\\":[\\\"Invite code\\\"],\\\"Esfg1M\\\":[\\\"Let's get your password reset!\\\"],\\\"UCOd1e\\\":[\\\"Login complete\\\"],\\\"cR9UpQ\\\":[\\\"Login to account that is not listed\\\"],\\\"0hTJM+\\\":[\\\"Looks like \\\",[\\\"example\\\"]],\\\"huXYDE\\\":[\\\"Make visible\\\"],\\\"VU3Nrn\\\":[\\\"Missing\\\"],\\\"dvYuhh\\\":[\\\"Moderate\\\"],\\\"6YtxFj\\\":[\\\"Name\\\"],\\\"/nT6AE\\\":[\\\"New password\\\"],\\\"hXzOVo\\\":[\\\"Next\\\"],\\\"UaXeX3\\\":[\\\"Okay\\\"],\\\"yDlXDJ\\\":[\\\"Only letters, numbers, and hyphens\\\"],\\\"8ZsakT\\\":[\\\"Password\\\"],\\\"osAB4a\\\":[\\\"Password strength\\\"],\\\"xfNKwI\\\":[\\\"Password strength indicator\\\"],\\\"fSy6T1\\\":[\\\"Password Updated\\\"],\\\"DKeVgZ\\\":[\\\"Password updated!\\\"],\\\"5CqSPX\\\":[\\\"Password with at least \\\",[\\\"MIN_PASSWORD_LENGTH\\\"],\\\" characters\\\"],\\\"+Z2ZNt\\\":[\\\"Please verify the domain name of the website before entering your password. Never enter your password on a domain you do not trust.\\\"],\\\"LcET2C\\\":[\\\"Privacy Policy\\\"],\\\"1TxdLU\\\":[\\\"Remember this account on this device\\\"],\\\"c7cY3z\\\":[\\\"Requested permissions\\\"],\\\"vJgYMA\\\":[\\\"Reset code\\\"],\\\"KbS2K9\\\":[\\\"Reset Password\\\"],\\\"slOprG\\\":[\\\"Reset your password\\\"],\\\"HB+TbB\\\":[\\\"Select domain\\\"],\\\"o3dwub\\\":[\\\"Select from an existing account\\\"],\\\"CqO9qC\\\":[\\\"Session\\\"],\\\"5lWFkC\\\":[\\\"Sign in\\\"],\\\"N9o7n5\\\":[\\\"Sign in as \\\",[\\\"0\\\"]],\\\"FT1MVS\\\":[\\\"Sign in as...\\\"],\\\"e+RpCP\\\":[\\\"Sign up\\\"],\\\"BEx8rG\\\":[\\\"Step \\\",[\\\"currentPosition\\\"],\\\" of \\\",[\\\"count\\\"]],\\\"LLx/nr\\\":[\\\"Strong\\\"],\\\"hQRttt\\\":[\\\"Submit\\\"],\\\"XYLcNv\\\":[\\\"Support\\\"],\\\"xowcRf\\\":[\\\"Terms of Service\\\"],\\\"D00bHj\\\":[\\\"That handle cannot be used\\\"],\\\"qDdKKD\\\":[\\\"The domain name is not allowed\\\"],\\\"we0QGx\\\":[\\\"The handle contains inappropriate language\\\"],\\\"kPGuFg\\\":[\\\"The handle is already in use\\\"],\\\"LSPrK4\\\":[\\\"The handle is invalid\\\"],\\\"SZKM0t\\\":[\\\"This email is already used\\\"],\\\"T61uiW\\\":[\\\"This handle is reserved\\\"],\\\"5OVfoe\\\":[\\\"This sign-in session has expired\\\"],\\\"LX2sHe\\\":[\\\"Type your desired username\\\"],\\\"Jja+Vn\\\":[\\\"Unexpected server response\\\"],\\\"BWM1dL\\\":[\\\"Uniquely identify you\\\"],\\\"nZx9mr\\\":[\\\"Username or email address\\\"],\\\"nfagfM\\\":[\\\"Valid\\\"],\\\"86GEtW\\\":[\\\"Valid email address or username\\\"],\\\"aIar4b\\\":[\\\"Verify you are human\\\"],\\\"r6y+jM\\\":[\\\"Warning\\\"],\\\"qjBGxf\\\":[\\\"We're so excited to have you join us!\\\"],\\\"9ls/Vs\\\":[\\\"Weak\\\"],\\\"jSVjfa\\\":[\\\"Wrong identifier or password\\\"],\\\"qq6QQ5\\\":[\\\"You are being redirected...\\\"],\\\"B9VwbO\\\":[\\\"You can change this username to any domain name you control after your account is set up.\\\"],\\\"67nRLM\\\":[\\\"You can now sign in with your new password.\\\"],\\\"imRJNy\\\":[\\\"You will receive an email with a \\\\\\\"reset code\\\\\\\". Enter that code here then enter your new password.\\\"],\\\"gdRnT7\\\":[\\\"Your account\\\"],\\\"r/b/p8\\\":[\\\"Your full username will be: \\\",[\\\"0\\\"]],\\\"+qGdcW\\\":[\\\"Your password has been updated!\\\"]}\")as Messages;"],"names":["messages","JSON","parse"],"mappings":"AAAuEA,MAAAA,QAAAA,CAASC,IAAKC,CAAAA,KAAK,CAAC,+yIAAiyJ;;;;"}
|
@@ -1,4 +0,0 @@
|
|
1
|
-
const messages=JSON.parse('{"BVbdlE":["<0/> is asking for permission to access your account (<1/>)."],"4blS0m":["2FA Confirmation"],"S90jaV":["A second authentication factor is required"],"myiH7A":["Access your account data (except chat messages)"],"kJrqQq":["Access your chat messages"],"AeXO77":["Account"],"FTT4a4":["Already have a code?"],"eYNzrj":["An application on your device"],"vW+T+d":["An unknown error occurred"],"+TaG50":["Another account"],"OX6vme":["Authenticate"],"yIVrHZ":["Authorize"],"iH8pgl":["Back"],"4Rgp24":["Between ",["minLength"]," and ",["maxLength"]," characters"],"/aj5l4":["By clicking <0>Authorize</0>, you allow this application to perform the following actions in accordance with their <1>terms of service</1> and <2>privacy policy</2>:"],"mBUXx0":["By creating an account you agree to the ",["0"]," and the ",["1"]," of this service."],"dEgA5A":["Cancel"],"B+Yy3b":["Check your ",["0"]," email for a login code and enter it here."],"khEQ02":["Choose a username"],"EWPtMO":["Code"],"7VpPHA":["Confirm"],"HaGV2g":["Confirm your password to continue"],"ioZOzk":["Confirmation code"],"mpt9T+":["Create a new account"],"IS0nrP":["Create Account"],"54JiGG":["Deny access"],"Nu4oKW":["Description"],"O3oNi5":["Email"],"ATGYL1":["Email address"],"3tOlz6":["Enter a password"],"xg/UcZ":["Enter the code you received to reset your password."],"cHrOqs":["Enter the email you used to create your account. We\'ll send you a \\"reset code\\" so you can set a new password."],"xRPn3U":["Enter your email address"],"0StR7t":["Enter your new password"],"NgaR6B":["Enter your password"],"T0KLp4":["Enter your username and password"],"SlfejT":["Error"],"/Ltc/k":["Extra"],"dn8X5t":["Forgot Password"],"F4OP4y":["Forgot?"],"QdVx1C":["Grant access to your <0>",["0"],"</0> account"],"87VTIH":["Having trouble? <0>Contact support</0>"],"vLyv1R":["Hide"],"i0qMbr":["Home"],"sJGljQ":["Identifier"],"vHJQ4A":["Interface language selector"],"JHB/Ky":["Invalid"],"6KlkHI":["Invite code"],"Esfg1M":["Let\'s get your password reset!"],"UCOd1e":["Login complete"],"cR9UpQ":["Login to account that is not listed"],"0hTJM+":["Looks like ",["example"]],"huXYDE":["Make visible"],"VU3Nrn":["Missing"],"dvYuhh":["Moderate"],"6YtxFj":["Name"],"/nT6AE":["New password"],"hXzOVo":["Next"],"UaXeX3":["Okay"],"yDlXDJ":["Only letters, numbers, and hyphens"],"8ZsakT":["Password"],"osAB4a":["Password strength"],"xfNKwI":["Password strength indicator"],"fSy6T1":["Password Updated"],"DKeVgZ":["Password updated!"],"5CqSPX":["Password with at least ",["MIN_PASSWORD_LENGTH"]," characters"],"+Z2ZNt":["Please verify the domain name of the website before entering your password. Never enter your password on a domain you do not trust."],"LcET2C":["Privacy Policy"],"1TxdLU":["Remember this account on this device"],"c7cY3z":["Requested permissions"],"vJgYMA":["Reset code"],"KbS2K9":["Reset Password"],"slOprG":["Reset your password"],"HB+TbB":["Select domain"],"o3dwub":["Select from an existing account"],"CqO9qC":["Session"],"5lWFkC":["Sign in"],"N9o7n5":["Sign in as ",["0"]],"FT1MVS":["Sign in as..."],"e+RpCP":["Sign up"],"BEx8rG":["Step ",["currentPosition"]," of ",["count"]],"LLx/nr":["Strong"],"hQRttt":["Submit"],"XYLcNv":["Support"],"xowcRf":["Terms of Service"],"D00bHj":["That handle cannot be used"],"qDdKKD":["The domain name is not allowed"],"we0QGx":["The handle contains inappropriate language"],"kPGuFg":["The handle is already in use"],"LSPrK4":["The handle is invalid"],"SZKM0t":["This email is already used"],"T61uiW":["This handle is reserved"],"5OVfoe":["This sign-in session has expired"],"LX2sHe":["Type your desired username"],"Jja+Vn":["Unexpected server response"],"BWM1dL":["Uniquely identify you"],"nZx9mr":["Username or email address"],"nfagfM":["Valid"],"86GEtW":["Valid email address or username"],"aIar4b":["Verify you are human"],"r6y+jM":["Warning"],"qjBGxf":["We\'re so excited to have you join us!"],"9ls/Vs":["Weak"],"jSVjfa":["Wrong identifier or password"],"qq6QQ5":["You are being redirected..."],"B9VwbO":["You can change this username to any domain name you control after your account is set up."],"67nRLM":["You can now sign in with your new password."],"imRJNy":["You will receive an email with a \\"reset code\\". Enter that code here then enter your new password."],"gdRnT7":["Your account"],"r/b/p8":["Your full username will be: ",["0"]],"+qGdcW":["Your password has been updated!"]}');
|
2
|
-
|
3
|
-
export { messages };
|
4
|
-
//# sourceMappingURL=messages-DWLPQRTp.js.map
|
@@ -1 +0,0 @@
|
|
1
|
-
{"version":3,"file":"messages-DWLPQRTp.js","sources":["../../../src/assets/app/locales/km/messages.ts"],"sourcesContent":["/*eslint-disable*/import type{Messages}from\"@lingui/core\";export const messages=JSON.parse(\"{\\\"BVbdlE\\\":[\\\"<0/> is asking for permission to access your account (<1/>).\\\"],\\\"4blS0m\\\":[\\\"2FA Confirmation\\\"],\\\"S90jaV\\\":[\\\"A second authentication factor is required\\\"],\\\"myiH7A\\\":[\\\"Access your account data (except chat messages)\\\"],\\\"kJrqQq\\\":[\\\"Access your chat messages\\\"],\\\"AeXO77\\\":[\\\"Account\\\"],\\\"FTT4a4\\\":[\\\"Already have a code?\\\"],\\\"eYNzrj\\\":[\\\"An application on your device\\\"],\\\"vW+T+d\\\":[\\\"An unknown error occurred\\\"],\\\"+TaG50\\\":[\\\"Another account\\\"],\\\"OX6vme\\\":[\\\"Authenticate\\\"],\\\"yIVrHZ\\\":[\\\"Authorize\\\"],\\\"iH8pgl\\\":[\\\"Back\\\"],\\\"4Rgp24\\\":[\\\"Between \\\",[\\\"minLength\\\"],\\\" and \\\",[\\\"maxLength\\\"],\\\" characters\\\"],\\\"/aj5l4\\\":[\\\"By clicking <0>Authorize</0>, you allow this application to perform the following actions in accordance with their <1>terms of service</1> and <2>privacy policy</2>:\\\"],\\\"mBUXx0\\\":[\\\"By creating an account you agree to the \\\",[\\\"0\\\"],\\\" and the \\\",[\\\"1\\\"],\\\" of this service.\\\"],\\\"dEgA5A\\\":[\\\"Cancel\\\"],\\\"B+Yy3b\\\":[\\\"Check your \\\",[\\\"0\\\"],\\\" email for a login code and enter it here.\\\"],\\\"khEQ02\\\":[\\\"Choose a username\\\"],\\\"EWPtMO\\\":[\\\"Code\\\"],\\\"7VpPHA\\\":[\\\"Confirm\\\"],\\\"HaGV2g\\\":[\\\"Confirm your password to continue\\\"],\\\"ioZOzk\\\":[\\\"Confirmation code\\\"],\\\"mpt9T+\\\":[\\\"Create a new account\\\"],\\\"IS0nrP\\\":[\\\"Create Account\\\"],\\\"54JiGG\\\":[\\\"Deny access\\\"],\\\"Nu4oKW\\\":[\\\"Description\\\"],\\\"O3oNi5\\\":[\\\"Email\\\"],\\\"ATGYL1\\\":[\\\"Email address\\\"],\\\"3tOlz6\\\":[\\\"Enter a password\\\"],\\\"xg/UcZ\\\":[\\\"Enter the code you received to reset your password.\\\"],\\\"cHrOqs\\\":[\\\"Enter the email you used to create your account. We'll send you a \\\\\\\"reset code\\\\\\\" so you can set a new password.\\\"],\\\"xRPn3U\\\":[\\\"Enter your email address\\\"],\\\"0StR7t\\\":[\\\"Enter your new password\\\"],\\\"NgaR6B\\\":[\\\"Enter your password\\\"],\\\"T0KLp4\\\":[\\\"Enter your username and password\\\"],\\\"SlfejT\\\":[\\\"Error\\\"],\\\"/Ltc/k\\\":[\\\"Extra\\\"],\\\"dn8X5t\\\":[\\\"Forgot Password\\\"],\\\"F4OP4y\\\":[\\\"Forgot?\\\"],\\\"QdVx1C\\\":[\\\"Grant access to your <0>\\\",[\\\"0\\\"],\\\"</0> account\\\"],\\\"87VTIH\\\":[\\\"Having trouble? <0>Contact support</0>\\\"],\\\"vLyv1R\\\":[\\\"Hide\\\"],\\\"i0qMbr\\\":[\\\"Home\\\"],\\\"sJGljQ\\\":[\\\"Identifier\\\"],\\\"vHJQ4A\\\":[\\\"Interface language selector\\\"],\\\"JHB/Ky\\\":[\\\"Invalid\\\"],\\\"6KlkHI\\\":[\\\"Invite code\\\"],\\\"Esfg1M\\\":[\\\"Let's get your password reset!\\\"],\\\"UCOd1e\\\":[\\\"Login complete\\\"],\\\"cR9UpQ\\\":[\\\"Login to account that is not listed\\\"],\\\"0hTJM+\\\":[\\\"Looks like \\\",[\\\"example\\\"]],\\\"huXYDE\\\":[\\\"Make visible\\\"],\\\"VU3Nrn\\\":[\\\"Missing\\\"],\\\"dvYuhh\\\":[\\\"Moderate\\\"],\\\"6YtxFj\\\":[\\\"Name\\\"],\\\"/nT6AE\\\":[\\\"New password\\\"],\\\"hXzOVo\\\":[\\\"Next\\\"],\\\"UaXeX3\\\":[\\\"Okay\\\"],\\\"yDlXDJ\\\":[\\\"Only letters, numbers, and hyphens\\\"],\\\"8ZsakT\\\":[\\\"Password\\\"],\\\"osAB4a\\\":[\\\"Password strength\\\"],\\\"xfNKwI\\\":[\\\"Password strength indicator\\\"],\\\"fSy6T1\\\":[\\\"Password Updated\\\"],\\\"DKeVgZ\\\":[\\\"Password updated!\\\"],\\\"5CqSPX\\\":[\\\"Password with at least \\\",[\\\"MIN_PASSWORD_LENGTH\\\"],\\\" characters\\\"],\\\"+Z2ZNt\\\":[\\\"Please verify the domain name of the website before entering your password. Never enter your password on a domain you do not trust.\\\"],\\\"LcET2C\\\":[\\\"Privacy Policy\\\"],\\\"1TxdLU\\\":[\\\"Remember this account on this device\\\"],\\\"c7cY3z\\\":[\\\"Requested permissions\\\"],\\\"vJgYMA\\\":[\\\"Reset code\\\"],\\\"KbS2K9\\\":[\\\"Reset Password\\\"],\\\"slOprG\\\":[\\\"Reset your password\\\"],\\\"HB+TbB\\\":[\\\"Select domain\\\"],\\\"o3dwub\\\":[\\\"Select from an existing account\\\"],\\\"CqO9qC\\\":[\\\"Session\\\"],\\\"5lWFkC\\\":[\\\"Sign in\\\"],\\\"N9o7n5\\\":[\\\"Sign in as \\\",[\\\"0\\\"]],\\\"FT1MVS\\\":[\\\"Sign in as...\\\"],\\\"e+RpCP\\\":[\\\"Sign up\\\"],\\\"BEx8rG\\\":[\\\"Step \\\",[\\\"currentPosition\\\"],\\\" of \\\",[\\\"count\\\"]],\\\"LLx/nr\\\":[\\\"Strong\\\"],\\\"hQRttt\\\":[\\\"Submit\\\"],\\\"XYLcNv\\\":[\\\"Support\\\"],\\\"xowcRf\\\":[\\\"Terms of Service\\\"],\\\"D00bHj\\\":[\\\"That handle cannot be used\\\"],\\\"qDdKKD\\\":[\\\"The domain name is not allowed\\\"],\\\"we0QGx\\\":[\\\"The handle contains inappropriate language\\\"],\\\"kPGuFg\\\":[\\\"The handle is already in use\\\"],\\\"LSPrK4\\\":[\\\"The handle is invalid\\\"],\\\"SZKM0t\\\":[\\\"This email is already used\\\"],\\\"T61uiW\\\":[\\\"This handle is reserved\\\"],\\\"5OVfoe\\\":[\\\"This sign-in session has expired\\\"],\\\"LX2sHe\\\":[\\\"Type your desired username\\\"],\\\"Jja+Vn\\\":[\\\"Unexpected server response\\\"],\\\"BWM1dL\\\":[\\\"Uniquely identify you\\\"],\\\"nZx9mr\\\":[\\\"Username or email address\\\"],\\\"nfagfM\\\":[\\\"Valid\\\"],\\\"86GEtW\\\":[\\\"Valid email address or username\\\"],\\\"aIar4b\\\":[\\\"Verify you are human\\\"],\\\"r6y+jM\\\":[\\\"Warning\\\"],\\\"qjBGxf\\\":[\\\"We're so excited to have you join us!\\\"],\\\"9ls/Vs\\\":[\\\"Weak\\\"],\\\"jSVjfa\\\":[\\\"Wrong identifier or password\\\"],\\\"qq6QQ5\\\":[\\\"You are being redirected...\\\"],\\\"B9VwbO\\\":[\\\"You can change this username to any domain name you control after your account is set up.\\\"],\\\"67nRLM\\\":[\\\"You can now sign in with your new password.\\\"],\\\"imRJNy\\\":[\\\"You will receive an email with a \\\\\\\"reset code\\\\\\\". Enter that code here then enter your new password.\\\"],\\\"gdRnT7\\\":[\\\"Your account\\\"],\\\"r/b/p8\\\":[\\\"Your full username will be: \\\",[\\\"0\\\"]],\\\"+qGdcW\\\":[\\\"Your password has been updated!\\\"]}\")as Messages;"],"names":["messages","JSON","parse"],"mappings":"AAAuEA,MAAAA,QAAAA,CAASC,IAAKC,CAAAA,KAAK,CAAC,+yIAAiyJ;;;;"}
|
@@ -1,4 +0,0 @@
|
|
1
|
-
const messages=JSON.parse('{"BVbdlE":["<0/> is asking for permission to access your account (<1/>)."],"4blS0m":["2FA Confirmation"],"S90jaV":["A second authentication factor is required"],"myiH7A":["Access your account data (except chat messages)"],"kJrqQq":["Access your chat messages"],"AeXO77":["Account"],"FTT4a4":["Already have a code?"],"eYNzrj":["An application on your device"],"vW+T+d":["An unknown error occurred"],"+TaG50":["Another account"],"OX6vme":["Authenticate"],"yIVrHZ":["Authorize"],"iH8pgl":["Back"],"4Rgp24":["Between ",["minLength"]," and ",["maxLength"]," characters"],"/aj5l4":["By clicking <0>Authorize</0>, you allow this application to perform the following actions in accordance with their <1>terms of service</1> and <2>privacy policy</2>:"],"mBUXx0":["By creating an account you agree to the ",["0"]," and the ",["1"]," of this service."],"dEgA5A":["Cancel"],"B+Yy3b":["Check your ",["0"]," email for a login code and enter it here."],"khEQ02":["Choose a username"],"EWPtMO":["Code"],"7VpPHA":["Confirm"],"HaGV2g":["Confirm your password to continue"],"ioZOzk":["Confirmation code"],"mpt9T+":["Create a new account"],"IS0nrP":["Create Account"],"54JiGG":["Deny access"],"Nu4oKW":["Description"],"O3oNi5":["Email"],"ATGYL1":["Email address"],"3tOlz6":["Enter a password"],"xg/UcZ":["Enter the code you received to reset your password."],"cHrOqs":["Enter the email you used to create your account. We\'ll send you a \\"reset code\\" so you can set a new password."],"xRPn3U":["Enter your email address"],"0StR7t":["Enter your new password"],"NgaR6B":["Enter your password"],"T0KLp4":["Enter your username and password"],"SlfejT":["Error"],"/Ltc/k":["Extra"],"dn8X5t":["Forgot Password"],"F4OP4y":["Forgot?"],"QdVx1C":["Grant access to your <0>",["0"],"</0> account"],"87VTIH":["Having trouble? <0>Contact support</0>"],"vLyv1R":["Hide"],"i0qMbr":["Home"],"sJGljQ":["Identifier"],"vHJQ4A":["Interface language selector"],"JHB/Ky":["Invalid"],"6KlkHI":["Invite code"],"Esfg1M":["Let\'s get your password reset!"],"UCOd1e":["Login complete"],"cR9UpQ":["Login to account that is not listed"],"0hTJM+":["Looks like ",["example"]],"huXYDE":["Make visible"],"VU3Nrn":["Missing"],"dvYuhh":["Moderate"],"6YtxFj":["Name"],"/nT6AE":["New password"],"hXzOVo":["Next"],"UaXeX3":["Okay"],"yDlXDJ":["Only letters, numbers, and hyphens"],"8ZsakT":["Password"],"osAB4a":["Password strength"],"xfNKwI":["Password strength indicator"],"fSy6T1":["Password Updated"],"DKeVgZ":["Password updated!"],"5CqSPX":["Password with at least ",["MIN_PASSWORD_LENGTH"]," characters"],"+Z2ZNt":["Please verify the domain name of the website before entering your password. Never enter your password on a domain you do not trust."],"LcET2C":["Privacy Policy"],"1TxdLU":["Remember this account on this device"],"c7cY3z":["Requested permissions"],"vJgYMA":["Reset code"],"KbS2K9":["Reset Password"],"slOprG":["Reset your password"],"HB+TbB":["Select domain"],"o3dwub":["Select from an existing account"],"CqO9qC":["Session"],"5lWFkC":["Sign in"],"N9o7n5":["Sign in as ",["0"]],"FT1MVS":["Sign in as..."],"e+RpCP":["Sign up"],"BEx8rG":["Step ",["currentPosition"]," of ",["count"]],"LLx/nr":["Strong"],"hQRttt":["Submit"],"XYLcNv":["Support"],"xowcRf":["Terms of Service"],"D00bHj":["That handle cannot be used"],"qDdKKD":["The domain name is not allowed"],"we0QGx":["The handle contains inappropriate language"],"kPGuFg":["The handle is already in use"],"LSPrK4":["The handle is invalid"],"SZKM0t":["This email is already used"],"T61uiW":["This handle is reserved"],"5OVfoe":["This sign-in session has expired"],"LX2sHe":["Type your desired username"],"Jja+Vn":["Unexpected server response"],"BWM1dL":["Uniquely identify you"],"nZx9mr":["Username or email address"],"nfagfM":["Valid"],"86GEtW":["Valid email address or username"],"aIar4b":["Verify you are human"],"r6y+jM":["Warning"],"qjBGxf":["We\'re so excited to have you join us!"],"9ls/Vs":["Weak"],"jSVjfa":["Wrong identifier or password"],"qq6QQ5":["You are being redirected..."],"B9VwbO":["You can change this username to any domain name you control after your account is set up."],"67nRLM":["You can now sign in with your new password."],"imRJNy":["You will receive an email with a \\"reset code\\". Enter that code here then enter your new password."],"gdRnT7":["Your account"],"r/b/p8":["Your full username will be: ",["0"]],"+qGdcW":["Your password has been updated!"]}');
|
2
|
-
|
3
|
-
export { messages };
|
4
|
-
//# sourceMappingURL=messages-DjVaE9YE.js.map
|
@@ -1 +0,0 @@
|
|
1
|
-
{"version":3,"file":"messages-DjVaE9YE.js","sources":["../../../src/assets/app/locales/zh-CN/messages.ts"],"sourcesContent":["/*eslint-disable*/import type{Messages}from\"@lingui/core\";export const messages=JSON.parse(\"{\\\"BVbdlE\\\":[\\\"<0/> is asking for permission to access your account (<1/>).\\\"],\\\"4blS0m\\\":[\\\"2FA Confirmation\\\"],\\\"S90jaV\\\":[\\\"A second authentication factor is required\\\"],\\\"myiH7A\\\":[\\\"Access your account data (except chat messages)\\\"],\\\"kJrqQq\\\":[\\\"Access your chat messages\\\"],\\\"AeXO77\\\":[\\\"Account\\\"],\\\"FTT4a4\\\":[\\\"Already have a code?\\\"],\\\"eYNzrj\\\":[\\\"An application on your device\\\"],\\\"vW+T+d\\\":[\\\"An unknown error occurred\\\"],\\\"+TaG50\\\":[\\\"Another account\\\"],\\\"OX6vme\\\":[\\\"Authenticate\\\"],\\\"yIVrHZ\\\":[\\\"Authorize\\\"],\\\"iH8pgl\\\":[\\\"Back\\\"],\\\"4Rgp24\\\":[\\\"Between \\\",[\\\"minLength\\\"],\\\" and \\\",[\\\"maxLength\\\"],\\\" characters\\\"],\\\"/aj5l4\\\":[\\\"By clicking <0>Authorize</0>, you allow this application to perform the following actions in accordance with their <1>terms of service</1> and <2>privacy policy</2>:\\\"],\\\"mBUXx0\\\":[\\\"By creating an account you agree to the \\\",[\\\"0\\\"],\\\" and the \\\",[\\\"1\\\"],\\\" of this service.\\\"],\\\"dEgA5A\\\":[\\\"Cancel\\\"],\\\"B+Yy3b\\\":[\\\"Check your \\\",[\\\"0\\\"],\\\" email for a login code and enter it here.\\\"],\\\"khEQ02\\\":[\\\"Choose a username\\\"],\\\"EWPtMO\\\":[\\\"Code\\\"],\\\"7VpPHA\\\":[\\\"Confirm\\\"],\\\"HaGV2g\\\":[\\\"Confirm your password to continue\\\"],\\\"ioZOzk\\\":[\\\"Confirmation code\\\"],\\\"mpt9T+\\\":[\\\"Create a new account\\\"],\\\"IS0nrP\\\":[\\\"Create Account\\\"],\\\"54JiGG\\\":[\\\"Deny access\\\"],\\\"Nu4oKW\\\":[\\\"Description\\\"],\\\"O3oNi5\\\":[\\\"Email\\\"],\\\"ATGYL1\\\":[\\\"Email address\\\"],\\\"3tOlz6\\\":[\\\"Enter a password\\\"],\\\"xg/UcZ\\\":[\\\"Enter the code you received to reset your password.\\\"],\\\"cHrOqs\\\":[\\\"Enter the email you used to create your account. We'll send you a \\\\\\\"reset code\\\\\\\" so you can set a new password.\\\"],\\\"xRPn3U\\\":[\\\"Enter your email address\\\"],\\\"0StR7t\\\":[\\\"Enter your new password\\\"],\\\"NgaR6B\\\":[\\\"Enter your password\\\"],\\\"T0KLp4\\\":[\\\"Enter your username and password\\\"],\\\"SlfejT\\\":[\\\"Error\\\"],\\\"/Ltc/k\\\":[\\\"Extra\\\"],\\\"dn8X5t\\\":[\\\"Forgot Password\\\"],\\\"F4OP4y\\\":[\\\"Forgot?\\\"],\\\"QdVx1C\\\":[\\\"Grant access to your <0>\\\",[\\\"0\\\"],\\\"</0> account\\\"],\\\"87VTIH\\\":[\\\"Having trouble? <0>Contact support</0>\\\"],\\\"vLyv1R\\\":[\\\"Hide\\\"],\\\"i0qMbr\\\":[\\\"Home\\\"],\\\"sJGljQ\\\":[\\\"Identifier\\\"],\\\"vHJQ4A\\\":[\\\"Interface language selector\\\"],\\\"JHB/Ky\\\":[\\\"Invalid\\\"],\\\"6KlkHI\\\":[\\\"Invite code\\\"],\\\"Esfg1M\\\":[\\\"Let's get your password reset!\\\"],\\\"UCOd1e\\\":[\\\"Login complete\\\"],\\\"cR9UpQ\\\":[\\\"Login to account that is not listed\\\"],\\\"0hTJM+\\\":[\\\"Looks like \\\",[\\\"example\\\"]],\\\"huXYDE\\\":[\\\"Make visible\\\"],\\\"VU3Nrn\\\":[\\\"Missing\\\"],\\\"dvYuhh\\\":[\\\"Moderate\\\"],\\\"6YtxFj\\\":[\\\"Name\\\"],\\\"/nT6AE\\\":[\\\"New password\\\"],\\\"hXzOVo\\\":[\\\"Next\\\"],\\\"UaXeX3\\\":[\\\"Okay\\\"],\\\"yDlXDJ\\\":[\\\"Only letters, numbers, and hyphens\\\"],\\\"8ZsakT\\\":[\\\"Password\\\"],\\\"osAB4a\\\":[\\\"Password strength\\\"],\\\"xfNKwI\\\":[\\\"Password strength indicator\\\"],\\\"fSy6T1\\\":[\\\"Password Updated\\\"],\\\"DKeVgZ\\\":[\\\"Password updated!\\\"],\\\"5CqSPX\\\":[\\\"Password with at least \\\",[\\\"MIN_PASSWORD_LENGTH\\\"],\\\" characters\\\"],\\\"+Z2ZNt\\\":[\\\"Please verify the domain name of the website before entering your password. Never enter your password on a domain you do not trust.\\\"],\\\"LcET2C\\\":[\\\"Privacy Policy\\\"],\\\"1TxdLU\\\":[\\\"Remember this account on this device\\\"],\\\"c7cY3z\\\":[\\\"Requested permissions\\\"],\\\"vJgYMA\\\":[\\\"Reset code\\\"],\\\"KbS2K9\\\":[\\\"Reset Password\\\"],\\\"slOprG\\\":[\\\"Reset your password\\\"],\\\"HB+TbB\\\":[\\\"Select domain\\\"],\\\"o3dwub\\\":[\\\"Select from an existing account\\\"],\\\"CqO9qC\\\":[\\\"Session\\\"],\\\"5lWFkC\\\":[\\\"Sign in\\\"],\\\"N9o7n5\\\":[\\\"Sign in as \\\",[\\\"0\\\"]],\\\"FT1MVS\\\":[\\\"Sign in as...\\\"],\\\"e+RpCP\\\":[\\\"Sign up\\\"],\\\"BEx8rG\\\":[\\\"Step \\\",[\\\"currentPosition\\\"],\\\" of \\\",[\\\"count\\\"]],\\\"LLx/nr\\\":[\\\"Strong\\\"],\\\"hQRttt\\\":[\\\"Submit\\\"],\\\"XYLcNv\\\":[\\\"Support\\\"],\\\"xowcRf\\\":[\\\"Terms of Service\\\"],\\\"D00bHj\\\":[\\\"That handle cannot be used\\\"],\\\"qDdKKD\\\":[\\\"The domain name is not allowed\\\"],\\\"we0QGx\\\":[\\\"The handle contains inappropriate language\\\"],\\\"kPGuFg\\\":[\\\"The handle is already in use\\\"],\\\"LSPrK4\\\":[\\\"The handle is invalid\\\"],\\\"SZKM0t\\\":[\\\"This email is already used\\\"],\\\"T61uiW\\\":[\\\"This handle is reserved\\\"],\\\"5OVfoe\\\":[\\\"This sign-in session has expired\\\"],\\\"LX2sHe\\\":[\\\"Type your desired username\\\"],\\\"Jja+Vn\\\":[\\\"Unexpected server response\\\"],\\\"BWM1dL\\\":[\\\"Uniquely identify you\\\"],\\\"nZx9mr\\\":[\\\"Username or email address\\\"],\\\"nfagfM\\\":[\\\"Valid\\\"],\\\"86GEtW\\\":[\\\"Valid email address or username\\\"],\\\"aIar4b\\\":[\\\"Verify you are human\\\"],\\\"r6y+jM\\\":[\\\"Warning\\\"],\\\"qjBGxf\\\":[\\\"We're so excited to have you join us!\\\"],\\\"9ls/Vs\\\":[\\\"Weak\\\"],\\\"jSVjfa\\\":[\\\"Wrong identifier or password\\\"],\\\"qq6QQ5\\\":[\\\"You are being redirected...\\\"],\\\"B9VwbO\\\":[\\\"You can change this username to any domain name you control after your account is set up.\\\"],\\\"67nRLM\\\":[\\\"You can now sign in with your new password.\\\"],\\\"imRJNy\\\":[\\\"You will receive an email with a \\\\\\\"reset code\\\\\\\". Enter that code here then enter your new password.\\\"],\\\"gdRnT7\\\":[\\\"Your account\\\"],\\\"r/b/p8\\\":[\\\"Your full username will be: \\\",[\\\"0\\\"]],\\\"+qGdcW\\\":[\\\"Your password has been updated!\\\"]}\")as Messages;"],"names":["messages","JSON","parse"],"mappings":"AAAuEA,MAAAA,QAAAA,CAASC,IAAKC,CAAAA,KAAK,CAAC,+yIAAiyJ;;;;"}
|
@@ -1,4 +0,0 @@
|
|
1
|
-
const messages=JSON.parse('{"BVbdlE":["<0/> is asking for permission to access your account (<1/>)."],"4blS0m":["2FA Confirmation"],"S90jaV":["A second authentication factor is required"],"myiH7A":["Access your account data (except chat messages)"],"kJrqQq":["Access your chat messages"],"AeXO77":["Account"],"FTT4a4":["Already have a code?"],"eYNzrj":["An application on your device"],"vW+T+d":["An unknown error occurred"],"+TaG50":["Another account"],"OX6vme":["Authenticate"],"yIVrHZ":["Authorize"],"iH8pgl":["Back"],"4Rgp24":["Between ",["minLength"]," and ",["maxLength"]," characters"],"/aj5l4":["By clicking <0>Authorize</0>, you allow this application to perform the following actions in accordance with their <1>terms of service</1> and <2>privacy policy</2>:"],"mBUXx0":["By creating an account you agree to the ",["0"]," and the ",["1"]," of this service."],"dEgA5A":["Cancel"],"B+Yy3b":["Check your ",["0"]," email for a login code and enter it here."],"khEQ02":["Choose a username"],"EWPtMO":["Code"],"7VpPHA":["Confirm"],"HaGV2g":["Confirm your password to continue"],"ioZOzk":["Confirmation code"],"mpt9T+":["Create a new account"],"IS0nrP":["Create Account"],"54JiGG":["Deny access"],"Nu4oKW":["Description"],"O3oNi5":["Email"],"ATGYL1":["Email address"],"3tOlz6":["Enter a password"],"xg/UcZ":["Enter the code you received to reset your password."],"cHrOqs":["Enter the email you used to create your account. We\'ll send you a \\"reset code\\" so you can set a new password."],"xRPn3U":["Enter your email address"],"0StR7t":["Enter your new password"],"NgaR6B":["Enter your password"],"T0KLp4":["Enter your username and password"],"SlfejT":["Error"],"/Ltc/k":["Extra"],"dn8X5t":["Forgot Password"],"F4OP4y":["Forgot?"],"QdVx1C":["Grant access to your <0>",["0"],"</0> account"],"87VTIH":["Having trouble? <0>Contact support</0>"],"vLyv1R":["Hide"],"i0qMbr":["Home"],"sJGljQ":["Identifier"],"vHJQ4A":["Interface language selector"],"JHB/Ky":["Invalid"],"6KlkHI":["Invite code"],"Esfg1M":["Let\'s get your password reset!"],"UCOd1e":["Login complete"],"cR9UpQ":["Login to account that is not listed"],"0hTJM+":["Looks like ",["example"]],"huXYDE":["Make visible"],"VU3Nrn":["Missing"],"dvYuhh":["Moderate"],"6YtxFj":["Name"],"/nT6AE":["New password"],"hXzOVo":["Next"],"UaXeX3":["Okay"],"yDlXDJ":["Only letters, numbers, and hyphens"],"8ZsakT":["Password"],"osAB4a":["Password strength"],"xfNKwI":["Password strength indicator"],"fSy6T1":["Password Updated"],"DKeVgZ":["Password updated!"],"5CqSPX":["Password with at least ",["MIN_PASSWORD_LENGTH"]," characters"],"+Z2ZNt":["Please verify the domain name of the website before entering your password. Never enter your password on a domain you do not trust."],"LcET2C":["Privacy Policy"],"1TxdLU":["Remember this account on this device"],"c7cY3z":["Requested permissions"],"vJgYMA":["Reset code"],"KbS2K9":["Reset Password"],"slOprG":["Reset your password"],"HB+TbB":["Select domain"],"o3dwub":["Select from an existing account"],"CqO9qC":["Session"],"5lWFkC":["Sign in"],"N9o7n5":["Sign in as ",["0"]],"FT1MVS":["Sign in as..."],"e+RpCP":["Sign up"],"BEx8rG":["Step ",["currentPosition"]," of ",["count"]],"LLx/nr":["Strong"],"hQRttt":["Submit"],"XYLcNv":["Support"],"xowcRf":["Terms of Service"],"D00bHj":["That handle cannot be used"],"qDdKKD":["The domain name is not allowed"],"we0QGx":["The handle contains inappropriate language"],"kPGuFg":["The handle is already in use"],"LSPrK4":["The handle is invalid"],"SZKM0t":["This email is already used"],"T61uiW":["This handle is reserved"],"5OVfoe":["This sign-in session has expired"],"LX2sHe":["Type your desired username"],"Jja+Vn":["Unexpected server response"],"BWM1dL":["Uniquely identify you"],"nZx9mr":["Username or email address"],"nfagfM":["Valid"],"86GEtW":["Valid email address or username"],"aIar4b":["Verify you are human"],"r6y+jM":["Warning"],"qjBGxf":["We\'re so excited to have you join us!"],"9ls/Vs":["Weak"],"jSVjfa":["Wrong identifier or password"],"qq6QQ5":["You are being redirected..."],"B9VwbO":["You can change this username to any domain name you control after your account is set up."],"67nRLM":["You can now sign in with your new password."],"imRJNy":["You will receive an email with a \\"reset code\\". Enter that code here then enter your new password."],"gdRnT7":["Your account"],"r/b/p8":["Your full username will be: ",["0"]],"+qGdcW":["Your password has been updated!"]}');
|
2
|
-
|
3
|
-
export { messages };
|
4
|
-
//# sourceMappingURL=messages-DqpMfFJR.js.map
|
@@ -1 +0,0 @@
|
|
1
|
-
{"version":3,"file":"messages-DqpMfFJR.js","sources":["../../../src/assets/app/locales/de/messages.ts"],"sourcesContent":["/*eslint-disable*/import type{Messages}from\"@lingui/core\";export const messages=JSON.parse(\"{\\\"BVbdlE\\\":[\\\"<0/> is asking for permission to access your account (<1/>).\\\"],\\\"4blS0m\\\":[\\\"2FA Confirmation\\\"],\\\"S90jaV\\\":[\\\"A second authentication factor is required\\\"],\\\"myiH7A\\\":[\\\"Access your account data (except chat messages)\\\"],\\\"kJrqQq\\\":[\\\"Access your chat messages\\\"],\\\"AeXO77\\\":[\\\"Account\\\"],\\\"FTT4a4\\\":[\\\"Already have a code?\\\"],\\\"eYNzrj\\\":[\\\"An application on your device\\\"],\\\"vW+T+d\\\":[\\\"An unknown error occurred\\\"],\\\"+TaG50\\\":[\\\"Another account\\\"],\\\"OX6vme\\\":[\\\"Authenticate\\\"],\\\"yIVrHZ\\\":[\\\"Authorize\\\"],\\\"iH8pgl\\\":[\\\"Back\\\"],\\\"4Rgp24\\\":[\\\"Between \\\",[\\\"minLength\\\"],\\\" and \\\",[\\\"maxLength\\\"],\\\" characters\\\"],\\\"/aj5l4\\\":[\\\"By clicking <0>Authorize</0>, you allow this application to perform the following actions in accordance with their <1>terms of service</1> and <2>privacy policy</2>:\\\"],\\\"mBUXx0\\\":[\\\"By creating an account you agree to the \\\",[\\\"0\\\"],\\\" and the \\\",[\\\"1\\\"],\\\" of this service.\\\"],\\\"dEgA5A\\\":[\\\"Cancel\\\"],\\\"B+Yy3b\\\":[\\\"Check your \\\",[\\\"0\\\"],\\\" email for a login code and enter it here.\\\"],\\\"khEQ02\\\":[\\\"Choose a username\\\"],\\\"EWPtMO\\\":[\\\"Code\\\"],\\\"7VpPHA\\\":[\\\"Confirm\\\"],\\\"HaGV2g\\\":[\\\"Confirm your password to continue\\\"],\\\"ioZOzk\\\":[\\\"Confirmation code\\\"],\\\"mpt9T+\\\":[\\\"Create a new account\\\"],\\\"IS0nrP\\\":[\\\"Create Account\\\"],\\\"54JiGG\\\":[\\\"Deny access\\\"],\\\"Nu4oKW\\\":[\\\"Description\\\"],\\\"O3oNi5\\\":[\\\"Email\\\"],\\\"ATGYL1\\\":[\\\"Email address\\\"],\\\"3tOlz6\\\":[\\\"Enter a password\\\"],\\\"xg/UcZ\\\":[\\\"Enter the code you received to reset your password.\\\"],\\\"cHrOqs\\\":[\\\"Enter the email you used to create your account. We'll send you a \\\\\\\"reset code\\\\\\\" so you can set a new password.\\\"],\\\"xRPn3U\\\":[\\\"Enter your email address\\\"],\\\"0StR7t\\\":[\\\"Enter your new password\\\"],\\\"NgaR6B\\\":[\\\"Enter your password\\\"],\\\"T0KLp4\\\":[\\\"Enter your username and password\\\"],\\\"SlfejT\\\":[\\\"Error\\\"],\\\"/Ltc/k\\\":[\\\"Extra\\\"],\\\"dn8X5t\\\":[\\\"Forgot Password\\\"],\\\"F4OP4y\\\":[\\\"Forgot?\\\"],\\\"QdVx1C\\\":[\\\"Grant access to your <0>\\\",[\\\"0\\\"],\\\"</0> account\\\"],\\\"87VTIH\\\":[\\\"Having trouble? <0>Contact support</0>\\\"],\\\"vLyv1R\\\":[\\\"Hide\\\"],\\\"i0qMbr\\\":[\\\"Home\\\"],\\\"sJGljQ\\\":[\\\"Identifier\\\"],\\\"vHJQ4A\\\":[\\\"Interface language selector\\\"],\\\"JHB/Ky\\\":[\\\"Invalid\\\"],\\\"6KlkHI\\\":[\\\"Invite code\\\"],\\\"Esfg1M\\\":[\\\"Let's get your password reset!\\\"],\\\"UCOd1e\\\":[\\\"Login complete\\\"],\\\"cR9UpQ\\\":[\\\"Login to account that is not listed\\\"],\\\"0hTJM+\\\":[\\\"Looks like \\\",[\\\"example\\\"]],\\\"huXYDE\\\":[\\\"Make visible\\\"],\\\"VU3Nrn\\\":[\\\"Missing\\\"],\\\"dvYuhh\\\":[\\\"Moderate\\\"],\\\"6YtxFj\\\":[\\\"Name\\\"],\\\"/nT6AE\\\":[\\\"New password\\\"],\\\"hXzOVo\\\":[\\\"Next\\\"],\\\"UaXeX3\\\":[\\\"Okay\\\"],\\\"yDlXDJ\\\":[\\\"Only letters, numbers, and hyphens\\\"],\\\"8ZsakT\\\":[\\\"Password\\\"],\\\"osAB4a\\\":[\\\"Password strength\\\"],\\\"xfNKwI\\\":[\\\"Password strength indicator\\\"],\\\"fSy6T1\\\":[\\\"Password Updated\\\"],\\\"DKeVgZ\\\":[\\\"Password updated!\\\"],\\\"5CqSPX\\\":[\\\"Password with at least \\\",[\\\"MIN_PASSWORD_LENGTH\\\"],\\\" characters\\\"],\\\"+Z2ZNt\\\":[\\\"Please verify the domain name of the website before entering your password. Never enter your password on a domain you do not trust.\\\"],\\\"LcET2C\\\":[\\\"Privacy Policy\\\"],\\\"1TxdLU\\\":[\\\"Remember this account on this device\\\"],\\\"c7cY3z\\\":[\\\"Requested permissions\\\"],\\\"vJgYMA\\\":[\\\"Reset code\\\"],\\\"KbS2K9\\\":[\\\"Reset Password\\\"],\\\"slOprG\\\":[\\\"Reset your password\\\"],\\\"HB+TbB\\\":[\\\"Select domain\\\"],\\\"o3dwub\\\":[\\\"Select from an existing account\\\"],\\\"CqO9qC\\\":[\\\"Session\\\"],\\\"5lWFkC\\\":[\\\"Sign in\\\"],\\\"N9o7n5\\\":[\\\"Sign in as \\\",[\\\"0\\\"]],\\\"FT1MVS\\\":[\\\"Sign in as...\\\"],\\\"e+RpCP\\\":[\\\"Sign up\\\"],\\\"BEx8rG\\\":[\\\"Step \\\",[\\\"currentPosition\\\"],\\\" of \\\",[\\\"count\\\"]],\\\"LLx/nr\\\":[\\\"Strong\\\"],\\\"hQRttt\\\":[\\\"Submit\\\"],\\\"XYLcNv\\\":[\\\"Support\\\"],\\\"xowcRf\\\":[\\\"Terms of Service\\\"],\\\"D00bHj\\\":[\\\"That handle cannot be used\\\"],\\\"qDdKKD\\\":[\\\"The domain name is not allowed\\\"],\\\"we0QGx\\\":[\\\"The handle contains inappropriate language\\\"],\\\"kPGuFg\\\":[\\\"The handle is already in use\\\"],\\\"LSPrK4\\\":[\\\"The handle is invalid\\\"],\\\"SZKM0t\\\":[\\\"This email is already used\\\"],\\\"T61uiW\\\":[\\\"This handle is reserved\\\"],\\\"5OVfoe\\\":[\\\"This sign-in session has expired\\\"],\\\"LX2sHe\\\":[\\\"Type your desired username\\\"],\\\"Jja+Vn\\\":[\\\"Unexpected server response\\\"],\\\"BWM1dL\\\":[\\\"Uniquely identify you\\\"],\\\"nZx9mr\\\":[\\\"Username or email address\\\"],\\\"nfagfM\\\":[\\\"Valid\\\"],\\\"86GEtW\\\":[\\\"Valid email address or username\\\"],\\\"aIar4b\\\":[\\\"Verify you are human\\\"],\\\"r6y+jM\\\":[\\\"Warning\\\"],\\\"qjBGxf\\\":[\\\"We're so excited to have you join us!\\\"],\\\"9ls/Vs\\\":[\\\"Weak\\\"],\\\"jSVjfa\\\":[\\\"Wrong identifier or password\\\"],\\\"qq6QQ5\\\":[\\\"You are being redirected...\\\"],\\\"B9VwbO\\\":[\\\"You can change this username to any domain name you control after your account is set up.\\\"],\\\"67nRLM\\\":[\\\"You can now sign in with your new password.\\\"],\\\"imRJNy\\\":[\\\"You will receive an email with a \\\\\\\"reset code\\\\\\\". Enter that code here then enter your new password.\\\"],\\\"gdRnT7\\\":[\\\"Your account\\\"],\\\"r/b/p8\\\":[\\\"Your full username will be: \\\",[\\\"0\\\"]],\\\"+qGdcW\\\":[\\\"Your password has been updated!\\\"]}\")as Messages;"],"names":["messages","JSON","parse"],"mappings":"AAAuEA,MAAAA,QAAAA,CAASC,IAAKC,CAAAA,KAAK,CAAC,+yIAAiyJ;;;;"}
|
@@ -1,4 +0,0 @@
|
|
1
|
-
const messages=JSON.parse('{"BVbdlE":["<0/> is asking for permission to access your account (<1/>)."],"4blS0m":["2FA Confirmation"],"S90jaV":["A second authentication factor is required"],"myiH7A":["Access your account data (except chat messages)"],"kJrqQq":["Access your chat messages"],"AeXO77":["Account"],"FTT4a4":["Already have a code?"],"eYNzrj":["An application on your device"],"vW+T+d":["An unknown error occurred"],"+TaG50":["Another account"],"OX6vme":["Authenticate"],"yIVrHZ":["Authorize"],"iH8pgl":["Back"],"4Rgp24":["Between ",["minLength"]," and ",["maxLength"]," characters"],"/aj5l4":["By clicking <0>Authorize</0>, you allow this application to perform the following actions in accordance with their <1>terms of service</1> and <2>privacy policy</2>:"],"mBUXx0":["By creating an account you agree to the ",["0"]," and the ",["1"]," of this service."],"dEgA5A":["Cancel"],"B+Yy3b":["Check your ",["0"]," email for a login code and enter it here."],"khEQ02":["Choose a username"],"EWPtMO":["Code"],"7VpPHA":["Confirm"],"HaGV2g":["Confirm your password to continue"],"ioZOzk":["Confirmation code"],"mpt9T+":["Create a new account"],"IS0nrP":["Create Account"],"54JiGG":["Deny access"],"Nu4oKW":["Description"],"O3oNi5":["Email"],"ATGYL1":["Email address"],"3tOlz6":["Enter a password"],"xg/UcZ":["Enter the code you received to reset your password."],"cHrOqs":["Enter the email you used to create your account. We\'ll send you a \\"reset code\\" so you can set a new password."],"xRPn3U":["Enter your email address"],"0StR7t":["Enter your new password"],"NgaR6B":["Enter your password"],"T0KLp4":["Enter your username and password"],"SlfejT":["Error"],"/Ltc/k":["Extra"],"dn8X5t":["Forgot Password"],"F4OP4y":["Forgot?"],"QdVx1C":["Grant access to your <0>",["0"],"</0> account"],"87VTIH":["Having trouble? <0>Contact support</0>"],"vLyv1R":["Hide"],"i0qMbr":["Home"],"sJGljQ":["Identifier"],"vHJQ4A":["Interface language selector"],"JHB/Ky":["Invalid"],"6KlkHI":["Invite code"],"Esfg1M":["Let\'s get your password reset!"],"UCOd1e":["Login complete"],"cR9UpQ":["Login to account that is not listed"],"0hTJM+":["Looks like ",["example"]],"huXYDE":["Make visible"],"VU3Nrn":["Missing"],"dvYuhh":["Moderate"],"6YtxFj":["Name"],"/nT6AE":["New password"],"hXzOVo":["Next"],"UaXeX3":["Okay"],"yDlXDJ":["Only letters, numbers, and hyphens"],"8ZsakT":["Password"],"osAB4a":["Password strength"],"xfNKwI":["Password strength indicator"],"fSy6T1":["Password Updated"],"DKeVgZ":["Password updated!"],"5CqSPX":["Password with at least ",["MIN_PASSWORD_LENGTH"]," characters"],"+Z2ZNt":["Please verify the domain name of the website before entering your password. Never enter your password on a domain you do not trust."],"LcET2C":["Privacy Policy"],"1TxdLU":["Remember this account on this device"],"c7cY3z":["Requested permissions"],"vJgYMA":["Reset code"],"KbS2K9":["Reset Password"],"slOprG":["Reset your password"],"HB+TbB":["Select domain"],"o3dwub":["Select from an existing account"],"CqO9qC":["Session"],"5lWFkC":["Sign in"],"N9o7n5":["Sign in as ",["0"]],"FT1MVS":["Sign in as..."],"e+RpCP":["Sign up"],"BEx8rG":["Step ",["currentPosition"]," of ",["count"]],"LLx/nr":["Strong"],"hQRttt":["Submit"],"XYLcNv":["Support"],"xowcRf":["Terms of Service"],"D00bHj":["That handle cannot be used"],"qDdKKD":["The domain name is not allowed"],"we0QGx":["The handle contains inappropriate language"],"kPGuFg":["The handle is already in use"],"LSPrK4":["The handle is invalid"],"SZKM0t":["This email is already used"],"T61uiW":["This handle is reserved"],"5OVfoe":["This sign-in session has expired"],"LX2sHe":["Type your desired username"],"Jja+Vn":["Unexpected server response"],"BWM1dL":["Uniquely identify you"],"nZx9mr":["Username or email address"],"nfagfM":["Valid"],"86GEtW":["Valid email address or username"],"aIar4b":["Verify you are human"],"r6y+jM":["Warning"],"qjBGxf":["We\'re so excited to have you join us!"],"9ls/Vs":["Weak"],"jSVjfa":["Wrong identifier or password"],"qq6QQ5":["You are being redirected..."],"B9VwbO":["You can change this username to any domain name you control after your account is set up."],"67nRLM":["You can now sign in with your new password."],"imRJNy":["You will receive an email with a \\"reset code\\". Enter that code here then enter your new password."],"gdRnT7":["Your account"],"r/b/p8":["Your full username will be: ",["0"]],"+qGdcW":["Your password has been updated!"]}');
|
2
|
-
|
3
|
-
export { messages };
|
4
|
-
//# sourceMappingURL=messages-ETjhJBEN.js.map
|
@@ -1 +0,0 @@
|
|
1
|
-
{"version":3,"file":"messages-ETjhJBEN.js","sources":["../../../src/assets/app/locales/es/messages.ts"],"sourcesContent":["/*eslint-disable*/import type{Messages}from\"@lingui/core\";export const messages=JSON.parse(\"{\\\"BVbdlE\\\":[\\\"<0/> is asking for permission to access your account (<1/>).\\\"],\\\"4blS0m\\\":[\\\"2FA Confirmation\\\"],\\\"S90jaV\\\":[\\\"A second authentication factor is required\\\"],\\\"myiH7A\\\":[\\\"Access your account data (except chat messages)\\\"],\\\"kJrqQq\\\":[\\\"Access your chat messages\\\"],\\\"AeXO77\\\":[\\\"Account\\\"],\\\"FTT4a4\\\":[\\\"Already have a code?\\\"],\\\"eYNzrj\\\":[\\\"An application on your device\\\"],\\\"vW+T+d\\\":[\\\"An unknown error occurred\\\"],\\\"+TaG50\\\":[\\\"Another account\\\"],\\\"OX6vme\\\":[\\\"Authenticate\\\"],\\\"yIVrHZ\\\":[\\\"Authorize\\\"],\\\"iH8pgl\\\":[\\\"Back\\\"],\\\"4Rgp24\\\":[\\\"Between \\\",[\\\"minLength\\\"],\\\" and \\\",[\\\"maxLength\\\"],\\\" characters\\\"],\\\"/aj5l4\\\":[\\\"By clicking <0>Authorize</0>, you allow this application to perform the following actions in accordance with their <1>terms of service</1> and <2>privacy policy</2>:\\\"],\\\"mBUXx0\\\":[\\\"By creating an account you agree to the \\\",[\\\"0\\\"],\\\" and the \\\",[\\\"1\\\"],\\\" of this service.\\\"],\\\"dEgA5A\\\":[\\\"Cancel\\\"],\\\"B+Yy3b\\\":[\\\"Check your \\\",[\\\"0\\\"],\\\" email for a login code and enter it here.\\\"],\\\"khEQ02\\\":[\\\"Choose a username\\\"],\\\"EWPtMO\\\":[\\\"Code\\\"],\\\"7VpPHA\\\":[\\\"Confirm\\\"],\\\"HaGV2g\\\":[\\\"Confirm your password to continue\\\"],\\\"ioZOzk\\\":[\\\"Confirmation code\\\"],\\\"mpt9T+\\\":[\\\"Create a new account\\\"],\\\"IS0nrP\\\":[\\\"Create Account\\\"],\\\"54JiGG\\\":[\\\"Deny access\\\"],\\\"Nu4oKW\\\":[\\\"Description\\\"],\\\"O3oNi5\\\":[\\\"Email\\\"],\\\"ATGYL1\\\":[\\\"Email address\\\"],\\\"3tOlz6\\\":[\\\"Enter a password\\\"],\\\"xg/UcZ\\\":[\\\"Enter the code you received to reset your password.\\\"],\\\"cHrOqs\\\":[\\\"Enter the email you used to create your account. We'll send you a \\\\\\\"reset code\\\\\\\" so you can set a new password.\\\"],\\\"xRPn3U\\\":[\\\"Enter your email address\\\"],\\\"0StR7t\\\":[\\\"Enter your new password\\\"],\\\"NgaR6B\\\":[\\\"Enter your password\\\"],\\\"T0KLp4\\\":[\\\"Enter your username and password\\\"],\\\"SlfejT\\\":[\\\"Error\\\"],\\\"/Ltc/k\\\":[\\\"Extra\\\"],\\\"dn8X5t\\\":[\\\"Forgot Password\\\"],\\\"F4OP4y\\\":[\\\"Forgot?\\\"],\\\"QdVx1C\\\":[\\\"Grant access to your <0>\\\",[\\\"0\\\"],\\\"</0> account\\\"],\\\"87VTIH\\\":[\\\"Having trouble? <0>Contact support</0>\\\"],\\\"vLyv1R\\\":[\\\"Hide\\\"],\\\"i0qMbr\\\":[\\\"Home\\\"],\\\"sJGljQ\\\":[\\\"Identifier\\\"],\\\"vHJQ4A\\\":[\\\"Interface language selector\\\"],\\\"JHB/Ky\\\":[\\\"Invalid\\\"],\\\"6KlkHI\\\":[\\\"Invite code\\\"],\\\"Esfg1M\\\":[\\\"Let's get your password reset!\\\"],\\\"UCOd1e\\\":[\\\"Login complete\\\"],\\\"cR9UpQ\\\":[\\\"Login to account that is not listed\\\"],\\\"0hTJM+\\\":[\\\"Looks like \\\",[\\\"example\\\"]],\\\"huXYDE\\\":[\\\"Make visible\\\"],\\\"VU3Nrn\\\":[\\\"Missing\\\"],\\\"dvYuhh\\\":[\\\"Moderate\\\"],\\\"6YtxFj\\\":[\\\"Name\\\"],\\\"/nT6AE\\\":[\\\"New password\\\"],\\\"hXzOVo\\\":[\\\"Next\\\"],\\\"UaXeX3\\\":[\\\"Okay\\\"],\\\"yDlXDJ\\\":[\\\"Only letters, numbers, and hyphens\\\"],\\\"8ZsakT\\\":[\\\"Password\\\"],\\\"osAB4a\\\":[\\\"Password strength\\\"],\\\"xfNKwI\\\":[\\\"Password strength indicator\\\"],\\\"fSy6T1\\\":[\\\"Password Updated\\\"],\\\"DKeVgZ\\\":[\\\"Password updated!\\\"],\\\"5CqSPX\\\":[\\\"Password with at least \\\",[\\\"MIN_PASSWORD_LENGTH\\\"],\\\" characters\\\"],\\\"+Z2ZNt\\\":[\\\"Please verify the domain name of the website before entering your password. Never enter your password on a domain you do not trust.\\\"],\\\"LcET2C\\\":[\\\"Privacy Policy\\\"],\\\"1TxdLU\\\":[\\\"Remember this account on this device\\\"],\\\"c7cY3z\\\":[\\\"Requested permissions\\\"],\\\"vJgYMA\\\":[\\\"Reset code\\\"],\\\"KbS2K9\\\":[\\\"Reset Password\\\"],\\\"slOprG\\\":[\\\"Reset your password\\\"],\\\"HB+TbB\\\":[\\\"Select domain\\\"],\\\"o3dwub\\\":[\\\"Select from an existing account\\\"],\\\"CqO9qC\\\":[\\\"Session\\\"],\\\"5lWFkC\\\":[\\\"Sign in\\\"],\\\"N9o7n5\\\":[\\\"Sign in as \\\",[\\\"0\\\"]],\\\"FT1MVS\\\":[\\\"Sign in as...\\\"],\\\"e+RpCP\\\":[\\\"Sign up\\\"],\\\"BEx8rG\\\":[\\\"Step \\\",[\\\"currentPosition\\\"],\\\" of \\\",[\\\"count\\\"]],\\\"LLx/nr\\\":[\\\"Strong\\\"],\\\"hQRttt\\\":[\\\"Submit\\\"],\\\"XYLcNv\\\":[\\\"Support\\\"],\\\"xowcRf\\\":[\\\"Terms of Service\\\"],\\\"D00bHj\\\":[\\\"That handle cannot be used\\\"],\\\"qDdKKD\\\":[\\\"The domain name is not allowed\\\"],\\\"we0QGx\\\":[\\\"The handle contains inappropriate language\\\"],\\\"kPGuFg\\\":[\\\"The handle is already in use\\\"],\\\"LSPrK4\\\":[\\\"The handle is invalid\\\"],\\\"SZKM0t\\\":[\\\"This email is already used\\\"],\\\"T61uiW\\\":[\\\"This handle is reserved\\\"],\\\"5OVfoe\\\":[\\\"This sign-in session has expired\\\"],\\\"LX2sHe\\\":[\\\"Type your desired username\\\"],\\\"Jja+Vn\\\":[\\\"Unexpected server response\\\"],\\\"BWM1dL\\\":[\\\"Uniquely identify you\\\"],\\\"nZx9mr\\\":[\\\"Username or email address\\\"],\\\"nfagfM\\\":[\\\"Valid\\\"],\\\"86GEtW\\\":[\\\"Valid email address or username\\\"],\\\"aIar4b\\\":[\\\"Verify you are human\\\"],\\\"r6y+jM\\\":[\\\"Warning\\\"],\\\"qjBGxf\\\":[\\\"We're so excited to have you join us!\\\"],\\\"9ls/Vs\\\":[\\\"Weak\\\"],\\\"jSVjfa\\\":[\\\"Wrong identifier or password\\\"],\\\"qq6QQ5\\\":[\\\"You are being redirected...\\\"],\\\"B9VwbO\\\":[\\\"You can change this username to any domain name you control after your account is set up.\\\"],\\\"67nRLM\\\":[\\\"You can now sign in with your new password.\\\"],\\\"imRJNy\\\":[\\\"You will receive an email with a \\\\\\\"reset code\\\\\\\". Enter that code here then enter your new password.\\\"],\\\"gdRnT7\\\":[\\\"Your account\\\"],\\\"r/b/p8\\\":[\\\"Your full username will be: \\\",[\\\"0\\\"]],\\\"+qGdcW\\\":[\\\"Your password has been updated!\\\"]}\")as Messages;"],"names":["messages","JSON","parse"],"mappings":"AAAuEA,MAAAA,QAAAA,CAASC,IAAKC,CAAAA,KAAK,CAAC,+yIAAiyJ;;;;"}
|
@@ -1,4 +0,0 @@
|
|
1
|
-
const messages=JSON.parse('{"BVbdlE":["<0/> is asking for permission to access your account (<1/>)."],"4blS0m":["2FA Confirmation"],"S90jaV":["A second authentication factor is required"],"myiH7A":["Access your account data (except chat messages)"],"kJrqQq":["Access your chat messages"],"AeXO77":["Account"],"FTT4a4":["Already have a code?"],"eYNzrj":["An application on your device"],"vW+T+d":["An unknown error occurred"],"+TaG50":["Another account"],"OX6vme":["Authenticate"],"yIVrHZ":["Authorize"],"iH8pgl":["Back"],"4Rgp24":["Between ",["minLength"]," and ",["maxLength"]," characters"],"/aj5l4":["By clicking <0>Authorize</0>, you allow this application to perform the following actions in accordance with their <1>terms of service</1> and <2>privacy policy</2>:"],"mBUXx0":["By creating an account you agree to the ",["0"]," and the ",["1"]," of this service."],"dEgA5A":["Cancel"],"B+Yy3b":["Check your ",["0"]," email for a login code and enter it here."],"khEQ02":["Choose a username"],"EWPtMO":["Code"],"7VpPHA":["Confirm"],"HaGV2g":["Confirm your password to continue"],"ioZOzk":["Confirmation code"],"mpt9T+":["Create a new account"],"IS0nrP":["Create Account"],"54JiGG":["Deny access"],"Nu4oKW":["Description"],"O3oNi5":["Email"],"ATGYL1":["Email address"],"3tOlz6":["Enter a password"],"xg/UcZ":["Enter the code you received to reset your password."],"cHrOqs":["Enter the email you used to create your account. We\'ll send you a \\"reset code\\" so you can set a new password."],"xRPn3U":["Enter your email address"],"0StR7t":["Enter your new password"],"NgaR6B":["Enter your password"],"T0KLp4":["Enter your username and password"],"SlfejT":["Error"],"/Ltc/k":["Extra"],"dn8X5t":["Forgot Password"],"F4OP4y":["Forgot?"],"QdVx1C":["Grant access to your <0>",["0"],"</0> account"],"87VTIH":["Having trouble? <0>Contact support</0>"],"vLyv1R":["Hide"],"i0qMbr":["Home"],"sJGljQ":["Identifier"],"vHJQ4A":["Interface language selector"],"JHB/Ky":["Invalid"],"6KlkHI":["Invite code"],"Esfg1M":["Let\'s get your password reset!"],"UCOd1e":["Login complete"],"cR9UpQ":["Login to account that is not listed"],"0hTJM+":["Looks like ",["example"]],"huXYDE":["Make visible"],"VU3Nrn":["Missing"],"dvYuhh":["Moderate"],"6YtxFj":["Name"],"/nT6AE":["New password"],"hXzOVo":["Next"],"UaXeX3":["Okay"],"yDlXDJ":["Only letters, numbers, and hyphens"],"8ZsakT":["Password"],"osAB4a":["Password strength"],"xfNKwI":["Password strength indicator"],"fSy6T1":["Password Updated"],"DKeVgZ":["Password updated!"],"5CqSPX":["Password with at least ",["MIN_PASSWORD_LENGTH"]," characters"],"+Z2ZNt":["Please verify the domain name of the website before entering your password. Never enter your password on a domain you do not trust."],"LcET2C":["Privacy Policy"],"1TxdLU":["Remember this account on this device"],"c7cY3z":["Requested permissions"],"vJgYMA":["Reset code"],"KbS2K9":["Reset Password"],"slOprG":["Reset your password"],"HB+TbB":["Select domain"],"o3dwub":["Select from an existing account"],"CqO9qC":["Session"],"5lWFkC":["Sign in"],"N9o7n5":["Sign in as ",["0"]],"FT1MVS":["Sign in as..."],"e+RpCP":["Sign up"],"BEx8rG":["Step ",["currentPosition"]," of ",["count"]],"LLx/nr":["Strong"],"hQRttt":["Submit"],"XYLcNv":["Support"],"xowcRf":["Terms of Service"],"D00bHj":["That handle cannot be used"],"qDdKKD":["The domain name is not allowed"],"we0QGx":["The handle contains inappropriate language"],"kPGuFg":["The handle is already in use"],"LSPrK4":["The handle is invalid"],"SZKM0t":["This email is already used"],"T61uiW":["This handle is reserved"],"5OVfoe":["This sign-in session has expired"],"LX2sHe":["Type your desired username"],"Jja+Vn":["Unexpected server response"],"BWM1dL":["Uniquely identify you"],"nZx9mr":["Username or email address"],"nfagfM":["Valid"],"86GEtW":["Valid email address or username"],"aIar4b":["Verify you are human"],"r6y+jM":["Warning"],"qjBGxf":["We\'re so excited to have you join us!"],"9ls/Vs":["Weak"],"jSVjfa":["Wrong identifier or password"],"qq6QQ5":["You are being redirected..."],"B9VwbO":["You can change this username to any domain name you control after your account is set up."],"67nRLM":["You can now sign in with your new password."],"imRJNy":["You will receive an email with a \\"reset code\\". Enter that code here then enter your new password."],"gdRnT7":["Your account"],"r/b/p8":["Your full username will be: ",["0"]],"+qGdcW":["Your password has been updated!"]}');
|
2
|
-
|
3
|
-
export { messages };
|
4
|
-
//# sourceMappingURL=messages-EUKrgrGn.js.map
|
@@ -1 +0,0 @@
|
|
1
|
-
{"version":3,"file":"messages-EUKrgrGn.js","sources":["../../../src/assets/app/locales/vi/messages.ts"],"sourcesContent":["/*eslint-disable*/import type{Messages}from\"@lingui/core\";export const messages=JSON.parse(\"{\\\"BVbdlE\\\":[\\\"<0/> is asking for permission to access your account (<1/>).\\\"],\\\"4blS0m\\\":[\\\"2FA Confirmation\\\"],\\\"S90jaV\\\":[\\\"A second authentication factor is required\\\"],\\\"myiH7A\\\":[\\\"Access your account data (except chat messages)\\\"],\\\"kJrqQq\\\":[\\\"Access your chat messages\\\"],\\\"AeXO77\\\":[\\\"Account\\\"],\\\"FTT4a4\\\":[\\\"Already have a code?\\\"],\\\"eYNzrj\\\":[\\\"An application on your device\\\"],\\\"vW+T+d\\\":[\\\"An unknown error occurred\\\"],\\\"+TaG50\\\":[\\\"Another account\\\"],\\\"OX6vme\\\":[\\\"Authenticate\\\"],\\\"yIVrHZ\\\":[\\\"Authorize\\\"],\\\"iH8pgl\\\":[\\\"Back\\\"],\\\"4Rgp24\\\":[\\\"Between \\\",[\\\"minLength\\\"],\\\" and \\\",[\\\"maxLength\\\"],\\\" characters\\\"],\\\"/aj5l4\\\":[\\\"By clicking <0>Authorize</0>, you allow this application to perform the following actions in accordance with their <1>terms of service</1> and <2>privacy policy</2>:\\\"],\\\"mBUXx0\\\":[\\\"By creating an account you agree to the \\\",[\\\"0\\\"],\\\" and the \\\",[\\\"1\\\"],\\\" of this service.\\\"],\\\"dEgA5A\\\":[\\\"Cancel\\\"],\\\"B+Yy3b\\\":[\\\"Check your \\\",[\\\"0\\\"],\\\" email for a login code and enter it here.\\\"],\\\"khEQ02\\\":[\\\"Choose a username\\\"],\\\"EWPtMO\\\":[\\\"Code\\\"],\\\"7VpPHA\\\":[\\\"Confirm\\\"],\\\"HaGV2g\\\":[\\\"Confirm your password to continue\\\"],\\\"ioZOzk\\\":[\\\"Confirmation code\\\"],\\\"mpt9T+\\\":[\\\"Create a new account\\\"],\\\"IS0nrP\\\":[\\\"Create Account\\\"],\\\"54JiGG\\\":[\\\"Deny access\\\"],\\\"Nu4oKW\\\":[\\\"Description\\\"],\\\"O3oNi5\\\":[\\\"Email\\\"],\\\"ATGYL1\\\":[\\\"Email address\\\"],\\\"3tOlz6\\\":[\\\"Enter a password\\\"],\\\"xg/UcZ\\\":[\\\"Enter the code you received to reset your password.\\\"],\\\"cHrOqs\\\":[\\\"Enter the email you used to create your account. We'll send you a \\\\\\\"reset code\\\\\\\" so you can set a new password.\\\"],\\\"xRPn3U\\\":[\\\"Enter your email address\\\"],\\\"0StR7t\\\":[\\\"Enter your new password\\\"],\\\"NgaR6B\\\":[\\\"Enter your password\\\"],\\\"T0KLp4\\\":[\\\"Enter your username and password\\\"],\\\"SlfejT\\\":[\\\"Error\\\"],\\\"/Ltc/k\\\":[\\\"Extra\\\"],\\\"dn8X5t\\\":[\\\"Forgot Password\\\"],\\\"F4OP4y\\\":[\\\"Forgot?\\\"],\\\"QdVx1C\\\":[\\\"Grant access to your <0>\\\",[\\\"0\\\"],\\\"</0> account\\\"],\\\"87VTIH\\\":[\\\"Having trouble? <0>Contact support</0>\\\"],\\\"vLyv1R\\\":[\\\"Hide\\\"],\\\"i0qMbr\\\":[\\\"Home\\\"],\\\"sJGljQ\\\":[\\\"Identifier\\\"],\\\"vHJQ4A\\\":[\\\"Interface language selector\\\"],\\\"JHB/Ky\\\":[\\\"Invalid\\\"],\\\"6KlkHI\\\":[\\\"Invite code\\\"],\\\"Esfg1M\\\":[\\\"Let's get your password reset!\\\"],\\\"UCOd1e\\\":[\\\"Login complete\\\"],\\\"cR9UpQ\\\":[\\\"Login to account that is not listed\\\"],\\\"0hTJM+\\\":[\\\"Looks like \\\",[\\\"example\\\"]],\\\"huXYDE\\\":[\\\"Make visible\\\"],\\\"VU3Nrn\\\":[\\\"Missing\\\"],\\\"dvYuhh\\\":[\\\"Moderate\\\"],\\\"6YtxFj\\\":[\\\"Name\\\"],\\\"/nT6AE\\\":[\\\"New password\\\"],\\\"hXzOVo\\\":[\\\"Next\\\"],\\\"UaXeX3\\\":[\\\"Okay\\\"],\\\"yDlXDJ\\\":[\\\"Only letters, numbers, and hyphens\\\"],\\\"8ZsakT\\\":[\\\"Password\\\"],\\\"osAB4a\\\":[\\\"Password strength\\\"],\\\"xfNKwI\\\":[\\\"Password strength indicator\\\"],\\\"fSy6T1\\\":[\\\"Password Updated\\\"],\\\"DKeVgZ\\\":[\\\"Password updated!\\\"],\\\"5CqSPX\\\":[\\\"Password with at least \\\",[\\\"MIN_PASSWORD_LENGTH\\\"],\\\" characters\\\"],\\\"+Z2ZNt\\\":[\\\"Please verify the domain name of the website before entering your password. Never enter your password on a domain you do not trust.\\\"],\\\"LcET2C\\\":[\\\"Privacy Policy\\\"],\\\"1TxdLU\\\":[\\\"Remember this account on this device\\\"],\\\"c7cY3z\\\":[\\\"Requested permissions\\\"],\\\"vJgYMA\\\":[\\\"Reset code\\\"],\\\"KbS2K9\\\":[\\\"Reset Password\\\"],\\\"slOprG\\\":[\\\"Reset your password\\\"],\\\"HB+TbB\\\":[\\\"Select domain\\\"],\\\"o3dwub\\\":[\\\"Select from an existing account\\\"],\\\"CqO9qC\\\":[\\\"Session\\\"],\\\"5lWFkC\\\":[\\\"Sign in\\\"],\\\"N9o7n5\\\":[\\\"Sign in as \\\",[\\\"0\\\"]],\\\"FT1MVS\\\":[\\\"Sign in as...\\\"],\\\"e+RpCP\\\":[\\\"Sign up\\\"],\\\"BEx8rG\\\":[\\\"Step \\\",[\\\"currentPosition\\\"],\\\" of \\\",[\\\"count\\\"]],\\\"LLx/nr\\\":[\\\"Strong\\\"],\\\"hQRttt\\\":[\\\"Submit\\\"],\\\"XYLcNv\\\":[\\\"Support\\\"],\\\"xowcRf\\\":[\\\"Terms of Service\\\"],\\\"D00bHj\\\":[\\\"That handle cannot be used\\\"],\\\"qDdKKD\\\":[\\\"The domain name is not allowed\\\"],\\\"we0QGx\\\":[\\\"The handle contains inappropriate language\\\"],\\\"kPGuFg\\\":[\\\"The handle is already in use\\\"],\\\"LSPrK4\\\":[\\\"The handle is invalid\\\"],\\\"SZKM0t\\\":[\\\"This email is already used\\\"],\\\"T61uiW\\\":[\\\"This handle is reserved\\\"],\\\"5OVfoe\\\":[\\\"This sign-in session has expired\\\"],\\\"LX2sHe\\\":[\\\"Type your desired username\\\"],\\\"Jja+Vn\\\":[\\\"Unexpected server response\\\"],\\\"BWM1dL\\\":[\\\"Uniquely identify you\\\"],\\\"nZx9mr\\\":[\\\"Username or email address\\\"],\\\"nfagfM\\\":[\\\"Valid\\\"],\\\"86GEtW\\\":[\\\"Valid email address or username\\\"],\\\"aIar4b\\\":[\\\"Verify you are human\\\"],\\\"r6y+jM\\\":[\\\"Warning\\\"],\\\"qjBGxf\\\":[\\\"We're so excited to have you join us!\\\"],\\\"9ls/Vs\\\":[\\\"Weak\\\"],\\\"jSVjfa\\\":[\\\"Wrong identifier or password\\\"],\\\"qq6QQ5\\\":[\\\"You are being redirected...\\\"],\\\"B9VwbO\\\":[\\\"You can change this username to any domain name you control after your account is set up.\\\"],\\\"67nRLM\\\":[\\\"You can now sign in with your new password.\\\"],\\\"imRJNy\\\":[\\\"You will receive an email with a \\\\\\\"reset code\\\\\\\". Enter that code here then enter your new password.\\\"],\\\"gdRnT7\\\":[\\\"Your account\\\"],\\\"r/b/p8\\\":[\\\"Your full username will be: \\\",[\\\"0\\\"]],\\\"+qGdcW\\\":[\\\"Your password has been updated!\\\"]}\")as Messages;"],"names":["messages","JSON","parse"],"mappings":"AAAuEA,MAAAA,QAAAA,CAASC,IAAKC,CAAAA,KAAK,CAAC,+yIAAiyJ;;;;"}
|
@@ -1,4 +0,0 @@
|
|
1
|
-
const messages=JSON.parse('{"BVbdlE":["<0/> is asking for permission to access your account (<1/>)."],"4blS0m":["2FA Confirmation"],"S90jaV":["A second authentication factor is required"],"myiH7A":["Access your account data (except chat messages)"],"kJrqQq":["Access your chat messages"],"AeXO77":["Account"],"FTT4a4":["Already have a code?"],"eYNzrj":["An application on your device"],"vW+T+d":["An unknown error occurred"],"+TaG50":["Another account"],"OX6vme":["Authenticate"],"yIVrHZ":["Authorize"],"iH8pgl":["Back"],"4Rgp24":["Between ",["minLength"]," and ",["maxLength"]," characters"],"/aj5l4":["By clicking <0>Authorize</0>, you allow this application to perform the following actions in accordance with their <1>terms of service</1> and <2>privacy policy</2>:"],"mBUXx0":["By creating an account you agree to the ",["0"]," and the ",["1"]," of this service."],"dEgA5A":["Cancel"],"B+Yy3b":["Check your ",["0"]," email for a login code and enter it here."],"khEQ02":["Choose a username"],"EWPtMO":["Code"],"7VpPHA":["Confirm"],"HaGV2g":["Confirm your password to continue"],"ioZOzk":["Confirmation code"],"mpt9T+":["Create a new account"],"IS0nrP":["Create Account"],"54JiGG":["Deny access"],"Nu4oKW":["Description"],"O3oNi5":["Email"],"ATGYL1":["Email address"],"3tOlz6":["Enter a password"],"xg/UcZ":["Enter the code you received to reset your password."],"cHrOqs":["Enter the email you used to create your account. We\'ll send you a \\"reset code\\" so you can set a new password."],"xRPn3U":["Enter your email address"],"0StR7t":["Enter your new password"],"NgaR6B":["Enter your password"],"T0KLp4":["Enter your username and password"],"SlfejT":["Error"],"/Ltc/k":["Extra"],"dn8X5t":["Forgot Password"],"F4OP4y":["Forgot?"],"QdVx1C":["Grant access to your <0>",["0"],"</0> account"],"87VTIH":["Having trouble? <0>Contact support</0>"],"vLyv1R":["Hide"],"i0qMbr":["Home"],"sJGljQ":["Identifier"],"vHJQ4A":["Interface language selector"],"JHB/Ky":["Invalid"],"6KlkHI":["Invite code"],"Esfg1M":["Let\'s get your password reset!"],"UCOd1e":["Login complete"],"cR9UpQ":["Login to account that is not listed"],"0hTJM+":["Looks like ",["example"]],"huXYDE":["Make visible"],"VU3Nrn":["Missing"],"dvYuhh":["Moderate"],"6YtxFj":["Name"],"/nT6AE":["New password"],"hXzOVo":["Next"],"UaXeX3":["Okay"],"yDlXDJ":["Only letters, numbers, and hyphens"],"8ZsakT":["Password"],"osAB4a":["Password strength"],"xfNKwI":["Password strength indicator"],"fSy6T1":["Password Updated"],"DKeVgZ":["Password updated!"],"5CqSPX":["Password with at least ",["MIN_PASSWORD_LENGTH"]," characters"],"+Z2ZNt":["Please verify the domain name of the website before entering your password. Never enter your password on a domain you do not trust."],"LcET2C":["Privacy Policy"],"1TxdLU":["Remember this account on this device"],"c7cY3z":["Requested permissions"],"vJgYMA":["Reset code"],"KbS2K9":["Reset Password"],"slOprG":["Reset your password"],"HB+TbB":["Select domain"],"o3dwub":["Select from an existing account"],"CqO9qC":["Session"],"5lWFkC":["Sign in"],"N9o7n5":["Sign in as ",["0"]],"FT1MVS":["Sign in as..."],"e+RpCP":["Sign up"],"BEx8rG":["Step ",["currentPosition"]," of ",["count"]],"LLx/nr":["Strong"],"hQRttt":["Submit"],"XYLcNv":["Support"],"xowcRf":["Terms of Service"],"D00bHj":["That handle cannot be used"],"qDdKKD":["The domain name is not allowed"],"we0QGx":["The handle contains inappropriate language"],"kPGuFg":["The handle is already in use"],"LSPrK4":["The handle is invalid"],"SZKM0t":["This email is already used"],"T61uiW":["This handle is reserved"],"5OVfoe":["This sign-in session has expired"],"LX2sHe":["Type your desired username"],"Jja+Vn":["Unexpected server response"],"BWM1dL":["Uniquely identify you"],"nZx9mr":["Username or email address"],"nfagfM":["Valid"],"86GEtW":["Valid email address or username"],"aIar4b":["Verify you are human"],"r6y+jM":["Warning"],"qjBGxf":["We\'re so excited to have you join us!"],"9ls/Vs":["Weak"],"jSVjfa":["Wrong identifier or password"],"qq6QQ5":["You are being redirected..."],"B9VwbO":["You can change this username to any domain name you control after your account is set up."],"67nRLM":["You can now sign in with your new password."],"imRJNy":["You will receive an email with a \\"reset code\\". Enter that code here then enter your new password."],"gdRnT7":["Your account"],"r/b/p8":["Your full username will be: ",["0"]],"+qGdcW":["Your password has been updated!"]}');
|
2
|
-
|
3
|
-
export { messages };
|
4
|
-
//# sourceMappingURL=messages-QQrOUcPW.js.map
|
@@ -1 +0,0 @@
|
|
1
|
-
{"version":3,"file":"messages-QQrOUcPW.js","sources":["../../../src/assets/app/locales/ko/messages.ts"],"sourcesContent":["/*eslint-disable*/import type{Messages}from\"@lingui/core\";export const messages=JSON.parse(\"{\\\"BVbdlE\\\":[\\\"<0/> is asking for permission to access your account (<1/>).\\\"],\\\"4blS0m\\\":[\\\"2FA Confirmation\\\"],\\\"S90jaV\\\":[\\\"A second authentication factor is required\\\"],\\\"myiH7A\\\":[\\\"Access your account data (except chat messages)\\\"],\\\"kJrqQq\\\":[\\\"Access your chat messages\\\"],\\\"AeXO77\\\":[\\\"Account\\\"],\\\"FTT4a4\\\":[\\\"Already have a code?\\\"],\\\"eYNzrj\\\":[\\\"An application on your device\\\"],\\\"vW+T+d\\\":[\\\"An unknown error occurred\\\"],\\\"+TaG50\\\":[\\\"Another account\\\"],\\\"OX6vme\\\":[\\\"Authenticate\\\"],\\\"yIVrHZ\\\":[\\\"Authorize\\\"],\\\"iH8pgl\\\":[\\\"Back\\\"],\\\"4Rgp24\\\":[\\\"Between \\\",[\\\"minLength\\\"],\\\" and \\\",[\\\"maxLength\\\"],\\\" characters\\\"],\\\"/aj5l4\\\":[\\\"By clicking <0>Authorize</0>, you allow this application to perform the following actions in accordance with their <1>terms of service</1> and <2>privacy policy</2>:\\\"],\\\"mBUXx0\\\":[\\\"By creating an account you agree to the \\\",[\\\"0\\\"],\\\" and the \\\",[\\\"1\\\"],\\\" of this service.\\\"],\\\"dEgA5A\\\":[\\\"Cancel\\\"],\\\"B+Yy3b\\\":[\\\"Check your \\\",[\\\"0\\\"],\\\" email for a login code and enter it here.\\\"],\\\"khEQ02\\\":[\\\"Choose a username\\\"],\\\"EWPtMO\\\":[\\\"Code\\\"],\\\"7VpPHA\\\":[\\\"Confirm\\\"],\\\"HaGV2g\\\":[\\\"Confirm your password to continue\\\"],\\\"ioZOzk\\\":[\\\"Confirmation code\\\"],\\\"mpt9T+\\\":[\\\"Create a new account\\\"],\\\"IS0nrP\\\":[\\\"Create Account\\\"],\\\"54JiGG\\\":[\\\"Deny access\\\"],\\\"Nu4oKW\\\":[\\\"Description\\\"],\\\"O3oNi5\\\":[\\\"Email\\\"],\\\"ATGYL1\\\":[\\\"Email address\\\"],\\\"3tOlz6\\\":[\\\"Enter a password\\\"],\\\"xg/UcZ\\\":[\\\"Enter the code you received to reset your password.\\\"],\\\"cHrOqs\\\":[\\\"Enter the email you used to create your account. We'll send you a \\\\\\\"reset code\\\\\\\" so you can set a new password.\\\"],\\\"xRPn3U\\\":[\\\"Enter your email address\\\"],\\\"0StR7t\\\":[\\\"Enter your new password\\\"],\\\"NgaR6B\\\":[\\\"Enter your password\\\"],\\\"T0KLp4\\\":[\\\"Enter your username and password\\\"],\\\"SlfejT\\\":[\\\"Error\\\"],\\\"/Ltc/k\\\":[\\\"Extra\\\"],\\\"dn8X5t\\\":[\\\"Forgot Password\\\"],\\\"F4OP4y\\\":[\\\"Forgot?\\\"],\\\"QdVx1C\\\":[\\\"Grant access to your <0>\\\",[\\\"0\\\"],\\\"</0> account\\\"],\\\"87VTIH\\\":[\\\"Having trouble? <0>Contact support</0>\\\"],\\\"vLyv1R\\\":[\\\"Hide\\\"],\\\"i0qMbr\\\":[\\\"Home\\\"],\\\"sJGljQ\\\":[\\\"Identifier\\\"],\\\"vHJQ4A\\\":[\\\"Interface language selector\\\"],\\\"JHB/Ky\\\":[\\\"Invalid\\\"],\\\"6KlkHI\\\":[\\\"Invite code\\\"],\\\"Esfg1M\\\":[\\\"Let's get your password reset!\\\"],\\\"UCOd1e\\\":[\\\"Login complete\\\"],\\\"cR9UpQ\\\":[\\\"Login to account that is not listed\\\"],\\\"0hTJM+\\\":[\\\"Looks like \\\",[\\\"example\\\"]],\\\"huXYDE\\\":[\\\"Make visible\\\"],\\\"VU3Nrn\\\":[\\\"Missing\\\"],\\\"dvYuhh\\\":[\\\"Moderate\\\"],\\\"6YtxFj\\\":[\\\"Name\\\"],\\\"/nT6AE\\\":[\\\"New password\\\"],\\\"hXzOVo\\\":[\\\"Next\\\"],\\\"UaXeX3\\\":[\\\"Okay\\\"],\\\"yDlXDJ\\\":[\\\"Only letters, numbers, and hyphens\\\"],\\\"8ZsakT\\\":[\\\"Password\\\"],\\\"osAB4a\\\":[\\\"Password strength\\\"],\\\"xfNKwI\\\":[\\\"Password strength indicator\\\"],\\\"fSy6T1\\\":[\\\"Password Updated\\\"],\\\"DKeVgZ\\\":[\\\"Password updated!\\\"],\\\"5CqSPX\\\":[\\\"Password with at least \\\",[\\\"MIN_PASSWORD_LENGTH\\\"],\\\" characters\\\"],\\\"+Z2ZNt\\\":[\\\"Please verify the domain name of the website before entering your password. Never enter your password on a domain you do not trust.\\\"],\\\"LcET2C\\\":[\\\"Privacy Policy\\\"],\\\"1TxdLU\\\":[\\\"Remember this account on this device\\\"],\\\"c7cY3z\\\":[\\\"Requested permissions\\\"],\\\"vJgYMA\\\":[\\\"Reset code\\\"],\\\"KbS2K9\\\":[\\\"Reset Password\\\"],\\\"slOprG\\\":[\\\"Reset your password\\\"],\\\"HB+TbB\\\":[\\\"Select domain\\\"],\\\"o3dwub\\\":[\\\"Select from an existing account\\\"],\\\"CqO9qC\\\":[\\\"Session\\\"],\\\"5lWFkC\\\":[\\\"Sign in\\\"],\\\"N9o7n5\\\":[\\\"Sign in as \\\",[\\\"0\\\"]],\\\"FT1MVS\\\":[\\\"Sign in as...\\\"],\\\"e+RpCP\\\":[\\\"Sign up\\\"],\\\"BEx8rG\\\":[\\\"Step \\\",[\\\"currentPosition\\\"],\\\" of \\\",[\\\"count\\\"]],\\\"LLx/nr\\\":[\\\"Strong\\\"],\\\"hQRttt\\\":[\\\"Submit\\\"],\\\"XYLcNv\\\":[\\\"Support\\\"],\\\"xowcRf\\\":[\\\"Terms of Service\\\"],\\\"D00bHj\\\":[\\\"That handle cannot be used\\\"],\\\"qDdKKD\\\":[\\\"The domain name is not allowed\\\"],\\\"we0QGx\\\":[\\\"The handle contains inappropriate language\\\"],\\\"kPGuFg\\\":[\\\"The handle is already in use\\\"],\\\"LSPrK4\\\":[\\\"The handle is invalid\\\"],\\\"SZKM0t\\\":[\\\"This email is already used\\\"],\\\"T61uiW\\\":[\\\"This handle is reserved\\\"],\\\"5OVfoe\\\":[\\\"This sign-in session has expired\\\"],\\\"LX2sHe\\\":[\\\"Type your desired username\\\"],\\\"Jja+Vn\\\":[\\\"Unexpected server response\\\"],\\\"BWM1dL\\\":[\\\"Uniquely identify you\\\"],\\\"nZx9mr\\\":[\\\"Username or email address\\\"],\\\"nfagfM\\\":[\\\"Valid\\\"],\\\"86GEtW\\\":[\\\"Valid email address or username\\\"],\\\"aIar4b\\\":[\\\"Verify you are human\\\"],\\\"r6y+jM\\\":[\\\"Warning\\\"],\\\"qjBGxf\\\":[\\\"We're so excited to have you join us!\\\"],\\\"9ls/Vs\\\":[\\\"Weak\\\"],\\\"jSVjfa\\\":[\\\"Wrong identifier or password\\\"],\\\"qq6QQ5\\\":[\\\"You are being redirected...\\\"],\\\"B9VwbO\\\":[\\\"You can change this username to any domain name you control after your account is set up.\\\"],\\\"67nRLM\\\":[\\\"You can now sign in with your new password.\\\"],\\\"imRJNy\\\":[\\\"You will receive an email with a \\\\\\\"reset code\\\\\\\". Enter that code here then enter your new password.\\\"],\\\"gdRnT7\\\":[\\\"Your account\\\"],\\\"r/b/p8\\\":[\\\"Your full username will be: \\\",[\\\"0\\\"]],\\\"+qGdcW\\\":[\\\"Your password has been updated!\\\"]}\")as Messages;"],"names":["messages","JSON","parse"],"mappings":"AAAuEA,MAAAA,QAAAA,CAASC,IAAKC,CAAAA,KAAK,CAAC,+yIAAiyJ;;;;"}
|
@@ -1,4 +0,0 @@
|
|
1
|
-
const messages=JSON.parse('{"BVbdlE":["<0/> is asking for permission to access your account (<1/>)."],"4blS0m":["2FA Confirmation"],"S90jaV":["A second authentication factor is required"],"myiH7A":["Access your account data (except chat messages)"],"kJrqQq":["Access your chat messages"],"AeXO77":["Account"],"FTT4a4":["Already have a code?"],"eYNzrj":["An application on your device"],"vW+T+d":["An unknown error occurred"],"+TaG50":["Another account"],"OX6vme":["Authenticate"],"yIVrHZ":["Authorize"],"iH8pgl":["Back"],"4Rgp24":["Between ",["minLength"]," and ",["maxLength"]," characters"],"/aj5l4":["By clicking <0>Authorize</0>, you allow this application to perform the following actions in accordance with their <1>terms of service</1> and <2>privacy policy</2>:"],"mBUXx0":["By creating an account you agree to the ",["0"]," and the ",["1"]," of this service."],"dEgA5A":["Cancel"],"B+Yy3b":["Check your ",["0"]," email for a login code and enter it here."],"khEQ02":["Choose a username"],"EWPtMO":["Code"],"7VpPHA":["Confirm"],"HaGV2g":["Confirm your password to continue"],"ioZOzk":["Confirmation code"],"mpt9T+":["Create a new account"],"IS0nrP":["Create Account"],"54JiGG":["Deny access"],"Nu4oKW":["Description"],"O3oNi5":["Email"],"ATGYL1":["Email address"],"3tOlz6":["Enter a password"],"xg/UcZ":["Enter the code you received to reset your password."],"cHrOqs":["Enter the email you used to create your account. We\'ll send you a \\"reset code\\" so you can set a new password."],"xRPn3U":["Enter your email address"],"0StR7t":["Enter your new password"],"NgaR6B":["Enter your password"],"T0KLp4":["Enter your username and password"],"SlfejT":["Error"],"/Ltc/k":["Extra"],"dn8X5t":["Forgot Password"],"F4OP4y":["Forgot?"],"QdVx1C":["Grant access to your <0>",["0"],"</0> account"],"87VTIH":["Having trouble? <0>Contact support</0>"],"vLyv1R":["Hide"],"i0qMbr":["Home"],"sJGljQ":["Identifier"],"vHJQ4A":["Interface language selector"],"JHB/Ky":["Invalid"],"6KlkHI":["Invite code"],"Esfg1M":["Let\'s get your password reset!"],"UCOd1e":["Login complete"],"cR9UpQ":["Login to account that is not listed"],"0hTJM+":["Looks like ",["example"]],"huXYDE":["Make visible"],"VU3Nrn":["Missing"],"dvYuhh":["Moderate"],"6YtxFj":["Name"],"/nT6AE":["New password"],"hXzOVo":["Next"],"UaXeX3":["Okay"],"yDlXDJ":["Only letters, numbers, and hyphens"],"8ZsakT":["Password"],"osAB4a":["Password strength"],"xfNKwI":["Password strength indicator"],"fSy6T1":["Password Updated"],"DKeVgZ":["Password updated!"],"5CqSPX":["Password with at least ",["MIN_PASSWORD_LENGTH"]," characters"],"+Z2ZNt":["Please verify the domain name of the website before entering your password. Never enter your password on a domain you do not trust."],"LcET2C":["Privacy Policy"],"1TxdLU":["Remember this account on this device"],"c7cY3z":["Requested permissions"],"vJgYMA":["Reset code"],"KbS2K9":["Reset Password"],"slOprG":["Reset your password"],"HB+TbB":["Select domain"],"o3dwub":["Select from an existing account"],"CqO9qC":["Session"],"5lWFkC":["Sign in"],"N9o7n5":["Sign in as ",["0"]],"FT1MVS":["Sign in as..."],"e+RpCP":["Sign up"],"BEx8rG":["Step ",["currentPosition"]," of ",["count"]],"LLx/nr":["Strong"],"hQRttt":["Submit"],"XYLcNv":["Support"],"xowcRf":["Terms of Service"],"D00bHj":["That handle cannot be used"],"qDdKKD":["The domain name is not allowed"],"we0QGx":["The handle contains inappropriate language"],"kPGuFg":["The handle is already in use"],"LSPrK4":["The handle is invalid"],"SZKM0t":["This email is already used"],"T61uiW":["This handle is reserved"],"5OVfoe":["This sign-in session has expired"],"LX2sHe":["Type your desired username"],"Jja+Vn":["Unexpected server response"],"BWM1dL":["Uniquely identify you"],"nZx9mr":["Username or email address"],"nfagfM":["Valid"],"86GEtW":["Valid email address or username"],"aIar4b":["Verify you are human"],"r6y+jM":["Warning"],"qjBGxf":["We\'re so excited to have you join us!"],"9ls/Vs":["Weak"],"jSVjfa":["Wrong identifier or password"],"qq6QQ5":["You are being redirected..."],"B9VwbO":["You can change this username to any domain name you control after your account is set up."],"67nRLM":["You can now sign in with your new password."],"imRJNy":["You will receive an email with a \\"reset code\\". Enter that code here then enter your new password."],"gdRnT7":["Your account"],"r/b/p8":["Your full username will be: ",["0"]],"+qGdcW":["Your password has been updated!"]}');
|
2
|
-
|
3
|
-
export { messages };
|
4
|
-
//# sourceMappingURL=messages-e2QGqFL6.js.map
|
@@ -1 +0,0 @@
|
|
1
|
-
{"version":3,"file":"messages-e2QGqFL6.js","sources":["../../../src/assets/app/locales/hu/messages.ts"],"sourcesContent":["/*eslint-disable*/import type{Messages}from\"@lingui/core\";export const messages=JSON.parse(\"{\\\"BVbdlE\\\":[\\\"<0/> is asking for permission to access your account (<1/>).\\\"],\\\"4blS0m\\\":[\\\"2FA Confirmation\\\"],\\\"S90jaV\\\":[\\\"A second authentication factor is required\\\"],\\\"myiH7A\\\":[\\\"Access your account data (except chat messages)\\\"],\\\"kJrqQq\\\":[\\\"Access your chat messages\\\"],\\\"AeXO77\\\":[\\\"Account\\\"],\\\"FTT4a4\\\":[\\\"Already have a code?\\\"],\\\"eYNzrj\\\":[\\\"An application on your device\\\"],\\\"vW+T+d\\\":[\\\"An unknown error occurred\\\"],\\\"+TaG50\\\":[\\\"Another account\\\"],\\\"OX6vme\\\":[\\\"Authenticate\\\"],\\\"yIVrHZ\\\":[\\\"Authorize\\\"],\\\"iH8pgl\\\":[\\\"Back\\\"],\\\"4Rgp24\\\":[\\\"Between \\\",[\\\"minLength\\\"],\\\" and \\\",[\\\"maxLength\\\"],\\\" characters\\\"],\\\"/aj5l4\\\":[\\\"By clicking <0>Authorize</0>, you allow this application to perform the following actions in accordance with their <1>terms of service</1> and <2>privacy policy</2>:\\\"],\\\"mBUXx0\\\":[\\\"By creating an account you agree to the \\\",[\\\"0\\\"],\\\" and the \\\",[\\\"1\\\"],\\\" of this service.\\\"],\\\"dEgA5A\\\":[\\\"Cancel\\\"],\\\"B+Yy3b\\\":[\\\"Check your \\\",[\\\"0\\\"],\\\" email for a login code and enter it here.\\\"],\\\"khEQ02\\\":[\\\"Choose a username\\\"],\\\"EWPtMO\\\":[\\\"Code\\\"],\\\"7VpPHA\\\":[\\\"Confirm\\\"],\\\"HaGV2g\\\":[\\\"Confirm your password to continue\\\"],\\\"ioZOzk\\\":[\\\"Confirmation code\\\"],\\\"mpt9T+\\\":[\\\"Create a new account\\\"],\\\"IS0nrP\\\":[\\\"Create Account\\\"],\\\"54JiGG\\\":[\\\"Deny access\\\"],\\\"Nu4oKW\\\":[\\\"Description\\\"],\\\"O3oNi5\\\":[\\\"Email\\\"],\\\"ATGYL1\\\":[\\\"Email address\\\"],\\\"3tOlz6\\\":[\\\"Enter a password\\\"],\\\"xg/UcZ\\\":[\\\"Enter the code you received to reset your password.\\\"],\\\"cHrOqs\\\":[\\\"Enter the email you used to create your account. We'll send you a \\\\\\\"reset code\\\\\\\" so you can set a new password.\\\"],\\\"xRPn3U\\\":[\\\"Enter your email address\\\"],\\\"0StR7t\\\":[\\\"Enter your new password\\\"],\\\"NgaR6B\\\":[\\\"Enter your password\\\"],\\\"T0KLp4\\\":[\\\"Enter your username and password\\\"],\\\"SlfejT\\\":[\\\"Error\\\"],\\\"/Ltc/k\\\":[\\\"Extra\\\"],\\\"dn8X5t\\\":[\\\"Forgot Password\\\"],\\\"F4OP4y\\\":[\\\"Forgot?\\\"],\\\"QdVx1C\\\":[\\\"Grant access to your <0>\\\",[\\\"0\\\"],\\\"</0> account\\\"],\\\"87VTIH\\\":[\\\"Having trouble? <0>Contact support</0>\\\"],\\\"vLyv1R\\\":[\\\"Hide\\\"],\\\"i0qMbr\\\":[\\\"Home\\\"],\\\"sJGljQ\\\":[\\\"Identifier\\\"],\\\"vHJQ4A\\\":[\\\"Interface language selector\\\"],\\\"JHB/Ky\\\":[\\\"Invalid\\\"],\\\"6KlkHI\\\":[\\\"Invite code\\\"],\\\"Esfg1M\\\":[\\\"Let's get your password reset!\\\"],\\\"UCOd1e\\\":[\\\"Login complete\\\"],\\\"cR9UpQ\\\":[\\\"Login to account that is not listed\\\"],\\\"0hTJM+\\\":[\\\"Looks like \\\",[\\\"example\\\"]],\\\"huXYDE\\\":[\\\"Make visible\\\"],\\\"VU3Nrn\\\":[\\\"Missing\\\"],\\\"dvYuhh\\\":[\\\"Moderate\\\"],\\\"6YtxFj\\\":[\\\"Name\\\"],\\\"/nT6AE\\\":[\\\"New password\\\"],\\\"hXzOVo\\\":[\\\"Next\\\"],\\\"UaXeX3\\\":[\\\"Okay\\\"],\\\"yDlXDJ\\\":[\\\"Only letters, numbers, and hyphens\\\"],\\\"8ZsakT\\\":[\\\"Password\\\"],\\\"osAB4a\\\":[\\\"Password strength\\\"],\\\"xfNKwI\\\":[\\\"Password strength indicator\\\"],\\\"fSy6T1\\\":[\\\"Password Updated\\\"],\\\"DKeVgZ\\\":[\\\"Password updated!\\\"],\\\"5CqSPX\\\":[\\\"Password with at least \\\",[\\\"MIN_PASSWORD_LENGTH\\\"],\\\" characters\\\"],\\\"+Z2ZNt\\\":[\\\"Please verify the domain name of the website before entering your password. Never enter your password on a domain you do not trust.\\\"],\\\"LcET2C\\\":[\\\"Privacy Policy\\\"],\\\"1TxdLU\\\":[\\\"Remember this account on this device\\\"],\\\"c7cY3z\\\":[\\\"Requested permissions\\\"],\\\"vJgYMA\\\":[\\\"Reset code\\\"],\\\"KbS2K9\\\":[\\\"Reset Password\\\"],\\\"slOprG\\\":[\\\"Reset your password\\\"],\\\"HB+TbB\\\":[\\\"Select domain\\\"],\\\"o3dwub\\\":[\\\"Select from an existing account\\\"],\\\"CqO9qC\\\":[\\\"Session\\\"],\\\"5lWFkC\\\":[\\\"Sign in\\\"],\\\"N9o7n5\\\":[\\\"Sign in as \\\",[\\\"0\\\"]],\\\"FT1MVS\\\":[\\\"Sign in as...\\\"],\\\"e+RpCP\\\":[\\\"Sign up\\\"],\\\"BEx8rG\\\":[\\\"Step \\\",[\\\"currentPosition\\\"],\\\" of \\\",[\\\"count\\\"]],\\\"LLx/nr\\\":[\\\"Strong\\\"],\\\"hQRttt\\\":[\\\"Submit\\\"],\\\"XYLcNv\\\":[\\\"Support\\\"],\\\"xowcRf\\\":[\\\"Terms of Service\\\"],\\\"D00bHj\\\":[\\\"That handle cannot be used\\\"],\\\"qDdKKD\\\":[\\\"The domain name is not allowed\\\"],\\\"we0QGx\\\":[\\\"The handle contains inappropriate language\\\"],\\\"kPGuFg\\\":[\\\"The handle is already in use\\\"],\\\"LSPrK4\\\":[\\\"The handle is invalid\\\"],\\\"SZKM0t\\\":[\\\"This email is already used\\\"],\\\"T61uiW\\\":[\\\"This handle is reserved\\\"],\\\"5OVfoe\\\":[\\\"This sign-in session has expired\\\"],\\\"LX2sHe\\\":[\\\"Type your desired username\\\"],\\\"Jja+Vn\\\":[\\\"Unexpected server response\\\"],\\\"BWM1dL\\\":[\\\"Uniquely identify you\\\"],\\\"nZx9mr\\\":[\\\"Username or email address\\\"],\\\"nfagfM\\\":[\\\"Valid\\\"],\\\"86GEtW\\\":[\\\"Valid email address or username\\\"],\\\"aIar4b\\\":[\\\"Verify you are human\\\"],\\\"r6y+jM\\\":[\\\"Warning\\\"],\\\"qjBGxf\\\":[\\\"We're so excited to have you join us!\\\"],\\\"9ls/Vs\\\":[\\\"Weak\\\"],\\\"jSVjfa\\\":[\\\"Wrong identifier or password\\\"],\\\"qq6QQ5\\\":[\\\"You are being redirected...\\\"],\\\"B9VwbO\\\":[\\\"You can change this username to any domain name you control after your account is set up.\\\"],\\\"67nRLM\\\":[\\\"You can now sign in with your new password.\\\"],\\\"imRJNy\\\":[\\\"You will receive an email with a \\\\\\\"reset code\\\\\\\". Enter that code here then enter your new password.\\\"],\\\"gdRnT7\\\":[\\\"Your account\\\"],\\\"r/b/p8\\\":[\\\"Your full username will be: \\\",[\\\"0\\\"]],\\\"+qGdcW\\\":[\\\"Your password has been updated!\\\"]}\")as Messages;"],"names":["messages","JSON","parse"],"mappings":"AAAuEA,MAAAA,QAAAA,CAASC,IAAKC,CAAAA,KAAK,CAAC,+yIAAiyJ;;;;"}
|
@@ -1,4 +0,0 @@
|
|
1
|
-
const messages=JSON.parse('{"BVbdlE":["<0/> is asking for permission to access your account (<1/>)."],"4blS0m":["2FA Confirmation"],"S90jaV":["A second authentication factor is required"],"myiH7A":["Access your account data (except chat messages)"],"kJrqQq":["Access your chat messages"],"AeXO77":["Account"],"FTT4a4":["Already have a code?"],"eYNzrj":["An application on your device"],"vW+T+d":["An unknown error occurred"],"+TaG50":["Another account"],"OX6vme":["Authenticate"],"yIVrHZ":["Authorize"],"iH8pgl":["Back"],"4Rgp24":["Between ",["minLength"]," and ",["maxLength"]," characters"],"/aj5l4":["By clicking <0>Authorize</0>, you allow this application to perform the following actions in accordance with their <1>terms of service</1> and <2>privacy policy</2>:"],"mBUXx0":["By creating an account you agree to the ",["0"]," and the ",["1"]," of this service."],"dEgA5A":["Cancel"],"B+Yy3b":["Check your ",["0"]," email for a login code and enter it here."],"khEQ02":["Choose a username"],"EWPtMO":["Code"],"7VpPHA":["Confirm"],"HaGV2g":["Confirm your password to continue"],"ioZOzk":["Confirmation code"],"mpt9T+":["Create a new account"],"IS0nrP":["Create Account"],"54JiGG":["Deny access"],"Nu4oKW":["Description"],"O3oNi5":["Email"],"ATGYL1":["Email address"],"3tOlz6":["Enter a password"],"xg/UcZ":["Enter the code you received to reset your password."],"cHrOqs":["Enter the email you used to create your account. We\'ll send you a \\"reset code\\" so you can set a new password."],"xRPn3U":["Enter your email address"],"0StR7t":["Enter your new password"],"NgaR6B":["Enter your password"],"T0KLp4":["Enter your username and password"],"SlfejT":["Error"],"/Ltc/k":["Extra"],"dn8X5t":["Forgot Password"],"F4OP4y":["Forgot?"],"QdVx1C":["Grant access to your <0>",["0"],"</0> account"],"87VTIH":["Having trouble? <0>Contact support</0>"],"vLyv1R":["Hide"],"i0qMbr":["Home"],"sJGljQ":["Identifier"],"vHJQ4A":["Interface language selector"],"JHB/Ky":["Invalid"],"6KlkHI":["Invite code"],"Esfg1M":["Let\'s get your password reset!"],"UCOd1e":["Login complete"],"cR9UpQ":["Login to account that is not listed"],"0hTJM+":["Looks like ",["example"]],"huXYDE":["Make visible"],"VU3Nrn":["Missing"],"dvYuhh":["Moderate"],"6YtxFj":["Name"],"/nT6AE":["New password"],"hXzOVo":["Next"],"UaXeX3":["Okay"],"yDlXDJ":["Only letters, numbers, and hyphens"],"8ZsakT":["Password"],"osAB4a":["Password strength"],"xfNKwI":["Password strength indicator"],"fSy6T1":["Password Updated"],"DKeVgZ":["Password updated!"],"5CqSPX":["Password with at least ",["MIN_PASSWORD_LENGTH"]," characters"],"+Z2ZNt":["Please verify the domain name of the website before entering your password. Never enter your password on a domain you do not trust."],"LcET2C":["Privacy Policy"],"1TxdLU":["Remember this account on this device"],"c7cY3z":["Requested permissions"],"vJgYMA":["Reset code"],"KbS2K9":["Reset Password"],"slOprG":["Reset your password"],"HB+TbB":["Select domain"],"o3dwub":["Select from an existing account"],"CqO9qC":["Session"],"5lWFkC":["Sign in"],"N9o7n5":["Sign in as ",["0"]],"FT1MVS":["Sign in as..."],"e+RpCP":["Sign up"],"BEx8rG":["Step ",["currentPosition"]," of ",["count"]],"LLx/nr":["Strong"],"hQRttt":["Submit"],"XYLcNv":["Support"],"xowcRf":["Terms of Service"],"D00bHj":["That handle cannot be used"],"qDdKKD":["The domain name is not allowed"],"we0QGx":["The handle contains inappropriate language"],"kPGuFg":["The handle is already in use"],"LSPrK4":["The handle is invalid"],"SZKM0t":["This email is already used"],"T61uiW":["This handle is reserved"],"5OVfoe":["This sign-in session has expired"],"LX2sHe":["Type your desired username"],"Jja+Vn":["Unexpected server response"],"BWM1dL":["Uniquely identify you"],"nZx9mr":["Username or email address"],"nfagfM":["Valid"],"86GEtW":["Valid email address or username"],"aIar4b":["Verify you are human"],"r6y+jM":["Warning"],"qjBGxf":["We\'re so excited to have you join us!"],"9ls/Vs":["Weak"],"jSVjfa":["Wrong identifier or password"],"qq6QQ5":["You are being redirected..."],"B9VwbO":["You can change this username to any domain name you control after your account is set up."],"67nRLM":["You can now sign in with your new password."],"imRJNy":["You will receive an email with a \\"reset code\\". Enter that code here then enter your new password."],"gdRnT7":["Your account"],"r/b/p8":["Your full username will be: ",["0"]],"+qGdcW":["Your password has been updated!"]}');
|
2
|
-
|
3
|
-
export { messages };
|
4
|
-
//# sourceMappingURL=messages-p61py7gD.js.map
|
@@ -1 +0,0 @@
|
|
1
|
-
{"version":3,"file":"messages-p61py7gD.js","sources":["../../../src/assets/app/locales/pl/messages.ts"],"sourcesContent":["/*eslint-disable*/import type{Messages}from\"@lingui/core\";export const messages=JSON.parse(\"{\\\"BVbdlE\\\":[\\\"<0/> is asking for permission to access your account (<1/>).\\\"],\\\"4blS0m\\\":[\\\"2FA Confirmation\\\"],\\\"S90jaV\\\":[\\\"A second authentication factor is required\\\"],\\\"myiH7A\\\":[\\\"Access your account data (except chat messages)\\\"],\\\"kJrqQq\\\":[\\\"Access your chat messages\\\"],\\\"AeXO77\\\":[\\\"Account\\\"],\\\"FTT4a4\\\":[\\\"Already have a code?\\\"],\\\"eYNzrj\\\":[\\\"An application on your device\\\"],\\\"vW+T+d\\\":[\\\"An unknown error occurred\\\"],\\\"+TaG50\\\":[\\\"Another account\\\"],\\\"OX6vme\\\":[\\\"Authenticate\\\"],\\\"yIVrHZ\\\":[\\\"Authorize\\\"],\\\"iH8pgl\\\":[\\\"Back\\\"],\\\"4Rgp24\\\":[\\\"Between \\\",[\\\"minLength\\\"],\\\" and \\\",[\\\"maxLength\\\"],\\\" characters\\\"],\\\"/aj5l4\\\":[\\\"By clicking <0>Authorize</0>, you allow this application to perform the following actions in accordance with their <1>terms of service</1> and <2>privacy policy</2>:\\\"],\\\"mBUXx0\\\":[\\\"By creating an account you agree to the \\\",[\\\"0\\\"],\\\" and the \\\",[\\\"1\\\"],\\\" of this service.\\\"],\\\"dEgA5A\\\":[\\\"Cancel\\\"],\\\"B+Yy3b\\\":[\\\"Check your \\\",[\\\"0\\\"],\\\" email for a login code and enter it here.\\\"],\\\"khEQ02\\\":[\\\"Choose a username\\\"],\\\"EWPtMO\\\":[\\\"Code\\\"],\\\"7VpPHA\\\":[\\\"Confirm\\\"],\\\"HaGV2g\\\":[\\\"Confirm your password to continue\\\"],\\\"ioZOzk\\\":[\\\"Confirmation code\\\"],\\\"mpt9T+\\\":[\\\"Create a new account\\\"],\\\"IS0nrP\\\":[\\\"Create Account\\\"],\\\"54JiGG\\\":[\\\"Deny access\\\"],\\\"Nu4oKW\\\":[\\\"Description\\\"],\\\"O3oNi5\\\":[\\\"Email\\\"],\\\"ATGYL1\\\":[\\\"Email address\\\"],\\\"3tOlz6\\\":[\\\"Enter a password\\\"],\\\"xg/UcZ\\\":[\\\"Enter the code you received to reset your password.\\\"],\\\"cHrOqs\\\":[\\\"Enter the email you used to create your account. We'll send you a \\\\\\\"reset code\\\\\\\" so you can set a new password.\\\"],\\\"xRPn3U\\\":[\\\"Enter your email address\\\"],\\\"0StR7t\\\":[\\\"Enter your new password\\\"],\\\"NgaR6B\\\":[\\\"Enter your password\\\"],\\\"T0KLp4\\\":[\\\"Enter your username and password\\\"],\\\"SlfejT\\\":[\\\"Error\\\"],\\\"/Ltc/k\\\":[\\\"Extra\\\"],\\\"dn8X5t\\\":[\\\"Forgot Password\\\"],\\\"F4OP4y\\\":[\\\"Forgot?\\\"],\\\"QdVx1C\\\":[\\\"Grant access to your <0>\\\",[\\\"0\\\"],\\\"</0> account\\\"],\\\"87VTIH\\\":[\\\"Having trouble? <0>Contact support</0>\\\"],\\\"vLyv1R\\\":[\\\"Hide\\\"],\\\"i0qMbr\\\":[\\\"Home\\\"],\\\"sJGljQ\\\":[\\\"Identifier\\\"],\\\"vHJQ4A\\\":[\\\"Interface language selector\\\"],\\\"JHB/Ky\\\":[\\\"Invalid\\\"],\\\"6KlkHI\\\":[\\\"Invite code\\\"],\\\"Esfg1M\\\":[\\\"Let's get your password reset!\\\"],\\\"UCOd1e\\\":[\\\"Login complete\\\"],\\\"cR9UpQ\\\":[\\\"Login to account that is not listed\\\"],\\\"0hTJM+\\\":[\\\"Looks like \\\",[\\\"example\\\"]],\\\"huXYDE\\\":[\\\"Make visible\\\"],\\\"VU3Nrn\\\":[\\\"Missing\\\"],\\\"dvYuhh\\\":[\\\"Moderate\\\"],\\\"6YtxFj\\\":[\\\"Name\\\"],\\\"/nT6AE\\\":[\\\"New password\\\"],\\\"hXzOVo\\\":[\\\"Next\\\"],\\\"UaXeX3\\\":[\\\"Okay\\\"],\\\"yDlXDJ\\\":[\\\"Only letters, numbers, and hyphens\\\"],\\\"8ZsakT\\\":[\\\"Password\\\"],\\\"osAB4a\\\":[\\\"Password strength\\\"],\\\"xfNKwI\\\":[\\\"Password strength indicator\\\"],\\\"fSy6T1\\\":[\\\"Password Updated\\\"],\\\"DKeVgZ\\\":[\\\"Password updated!\\\"],\\\"5CqSPX\\\":[\\\"Password with at least \\\",[\\\"MIN_PASSWORD_LENGTH\\\"],\\\" characters\\\"],\\\"+Z2ZNt\\\":[\\\"Please verify the domain name of the website before entering your password. Never enter your password on a domain you do not trust.\\\"],\\\"LcET2C\\\":[\\\"Privacy Policy\\\"],\\\"1TxdLU\\\":[\\\"Remember this account on this device\\\"],\\\"c7cY3z\\\":[\\\"Requested permissions\\\"],\\\"vJgYMA\\\":[\\\"Reset code\\\"],\\\"KbS2K9\\\":[\\\"Reset Password\\\"],\\\"slOprG\\\":[\\\"Reset your password\\\"],\\\"HB+TbB\\\":[\\\"Select domain\\\"],\\\"o3dwub\\\":[\\\"Select from an existing account\\\"],\\\"CqO9qC\\\":[\\\"Session\\\"],\\\"5lWFkC\\\":[\\\"Sign in\\\"],\\\"N9o7n5\\\":[\\\"Sign in as \\\",[\\\"0\\\"]],\\\"FT1MVS\\\":[\\\"Sign in as...\\\"],\\\"e+RpCP\\\":[\\\"Sign up\\\"],\\\"BEx8rG\\\":[\\\"Step \\\",[\\\"currentPosition\\\"],\\\" of \\\",[\\\"count\\\"]],\\\"LLx/nr\\\":[\\\"Strong\\\"],\\\"hQRttt\\\":[\\\"Submit\\\"],\\\"XYLcNv\\\":[\\\"Support\\\"],\\\"xowcRf\\\":[\\\"Terms of Service\\\"],\\\"D00bHj\\\":[\\\"That handle cannot be used\\\"],\\\"qDdKKD\\\":[\\\"The domain name is not allowed\\\"],\\\"we0QGx\\\":[\\\"The handle contains inappropriate language\\\"],\\\"kPGuFg\\\":[\\\"The handle is already in use\\\"],\\\"LSPrK4\\\":[\\\"The handle is invalid\\\"],\\\"SZKM0t\\\":[\\\"This email is already used\\\"],\\\"T61uiW\\\":[\\\"This handle is reserved\\\"],\\\"5OVfoe\\\":[\\\"This sign-in session has expired\\\"],\\\"LX2sHe\\\":[\\\"Type your desired username\\\"],\\\"Jja+Vn\\\":[\\\"Unexpected server response\\\"],\\\"BWM1dL\\\":[\\\"Uniquely identify you\\\"],\\\"nZx9mr\\\":[\\\"Username or email address\\\"],\\\"nfagfM\\\":[\\\"Valid\\\"],\\\"86GEtW\\\":[\\\"Valid email address or username\\\"],\\\"aIar4b\\\":[\\\"Verify you are human\\\"],\\\"r6y+jM\\\":[\\\"Warning\\\"],\\\"qjBGxf\\\":[\\\"We're so excited to have you join us!\\\"],\\\"9ls/Vs\\\":[\\\"Weak\\\"],\\\"jSVjfa\\\":[\\\"Wrong identifier or password\\\"],\\\"qq6QQ5\\\":[\\\"You are being redirected...\\\"],\\\"B9VwbO\\\":[\\\"You can change this username to any domain name you control after your account is set up.\\\"],\\\"67nRLM\\\":[\\\"You can now sign in with your new password.\\\"],\\\"imRJNy\\\":[\\\"You will receive an email with a \\\\\\\"reset code\\\\\\\". Enter that code here then enter your new password.\\\"],\\\"gdRnT7\\\":[\\\"Your account\\\"],\\\"r/b/p8\\\":[\\\"Your full username will be: \\\",[\\\"0\\\"]],\\\"+qGdcW\\\":[\\\"Your password has been updated!\\\"]}\")as Messages;"],"names":["messages","JSON","parse"],"mappings":"AAAuEA,MAAAA,QAAAA,CAASC,IAAKC,CAAAA,KAAK,CAAC,+yIAAiyJ;;;;"}
|
package/dist/assets/asset.d.ts
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
{"version":3,"file":"asset.d.ts","sourceRoot":"","sources":["../../src/assets/asset.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,aAAa,CAAA;AAE3C,MAAM,MAAM,KAAK,GAAG;IAClB,GAAG,EAAE,MAAM,CAAA;IACX,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,OAAO,EAAE,OAAO,CAAA;IAChB,MAAM,EAAE,MAAM,CAAA;IACd,YAAY,EAAE,MAAM,QAAQ,CAAA;CAC7B,CAAA"}
|
package/dist/assets/asset.js
DELETED
package/dist/assets/asset.js.map
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
{"version":3,"file":"asset.js","sourceRoot":"","sources":["../../src/assets/asset.ts"],"names":[],"mappings":""}
|
package/dist/assets/index.d.ts
DELETED
@@ -1,5 +0,0 @@
|
|
1
|
-
import { Asset } from './asset.js';
|
2
|
-
export declare const ASSETS_URL_PREFIX = "/@atproto/oauth-provider/~assets/";
|
3
|
-
export declare function enumerateAssets(mime: string): IteratorObject<Asset, void>;
|
4
|
-
export declare function getAsset(inputFilename: string): Asset;
|
5
|
-
//# sourceMappingURL=index.d.ts.map
|
@@ -1 +0,0 @@
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/assets/index.ts"],"names":[],"mappings":"AAqBA,OAAO,EAAE,KAAK,EAAE,MAAM,YAAY,CAAA;AAMlC,eAAO,MAAM,iBAAiB,sCAAsC,CAAA;AAEpE,wBAAiB,eAAe,CAAC,IAAI,EAAE,MAAM,GAAG,cAAc,CAAC,KAAK,EAAE,IAAI,CAAC,CAM1E;AAED,wBAAgB,QAAQ,CAAC,aAAa,EAAE,MAAM,GAAG,KAAK,CAerD"}
|
package/dist/assets/index.js
DELETED
@@ -1,78 +0,0 @@
|
|
1
|
-
"use strict";
|
2
|
-
// If this library is used as a regular dependency (e.g. from node_modules), the
|
3
|
-
// assets will simply be referenced from the node_modules directory. However, if
|
4
|
-
// this library is bundled (e.g. via rollup), the assets need to be copied to
|
5
|
-
// the output directory. Most bundlers support this (webpack, rollup, etc.) by
|
6
|
-
// re-writing new URL('./path', import.meta.url) calls to point to the correct
|
7
|
-
// output directory.
|
8
|
-
//
|
9
|
-
// https://github.com/evanw/esbuild/issues/795
|
10
|
-
// https://www.npmjs.com/package/@web/rollup-plugin-import-meta-assets
|
11
|
-
var __importDefault = (this && this.__importDefault) || function (mod) {
|
12
|
-
return (mod && mod.__esModule) ? mod : { "default": mod };
|
13
|
-
};
|
14
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
15
|
-
exports.ASSETS_URL_PREFIX = void 0;
|
16
|
-
exports.enumerateAssets = enumerateAssets;
|
17
|
-
exports.getAsset = getAsset;
|
18
|
-
// Note that the bundle-manifest, being a JSON file, can be imported directly
|
19
|
-
// without any special handling. This is because all bundlers support JSON
|
20
|
-
// imports out of the box.
|
21
|
-
const node_fs_1 = require("node:fs");
|
22
|
-
const node_path_1 = require("node:path");
|
23
|
-
const node_stream_1 = require("node:stream");
|
24
|
-
// @ts-expect-error: This file is generated at build time
|
25
|
-
// eslint-disable-next-line import/no-unresolved
|
26
|
-
const bundle_manifest_json_1 = __importDefault(require("./app/bundle-manifest.json"));
|
27
|
-
const appBundleManifest = new Map(Object.entries(bundle_manifest_json_1.default));
|
28
|
-
exports.ASSETS_URL_PREFIX = '/@atproto/oauth-provider/~assets/';
|
29
|
-
function* enumerateAssets(mime) {
|
30
|
-
for (const [filename, manifest] of appBundleManifest) {
|
31
|
-
if (manifest.mime === mime) {
|
32
|
-
yield manifestItemToAsset(filename, manifest);
|
33
|
-
}
|
34
|
-
}
|
35
|
-
}
|
36
|
-
function getAsset(inputFilename) {
|
37
|
-
const filename = node_path_1.posix.normalize(inputFilename);
|
38
|
-
if (filename.startsWith('/') || // Prevent absolute paths
|
39
|
-
filename.startsWith('../') || // Prevent directory traversal attacks
|
40
|
-
/[<>:"|?*\\]/.test(filename) // Windows disallowed characters
|
41
|
-
) {
|
42
|
-
throw new AssetNotFoundError(filename);
|
43
|
-
}
|
44
|
-
const manifest = appBundleManifest.get(filename);
|
45
|
-
if (!manifest)
|
46
|
-
throw new AssetNotFoundError(filename);
|
47
|
-
return manifestItemToAsset(filename, manifest);
|
48
|
-
}
|
49
|
-
function manifestItemToAsset(filename, manifest) {
|
50
|
-
// When this package is used as a regular "node_modules" dependency, and gets
|
51
|
-
// bundled by the consumer, the assets should be copied to the bundle's output
|
52
|
-
// directory. In case the bundler does not support copying assets from the
|
53
|
-
// "dist/assets/app" folder, this package's build system can be modified to
|
54
|
-
// embed the asset data directly into the bundle-manifest.json (see the `data`
|
55
|
-
// option of "@atproto-labs/rollup-plugin-bundle-manifest" in rollup.config.js).
|
56
|
-
const { data } = manifest;
|
57
|
-
return {
|
58
|
-
url: node_path_1.posix.join(exports.ASSETS_URL_PREFIX, filename),
|
59
|
-
type: manifest.mime,
|
60
|
-
isEntry: manifest.type === 'chunk' && manifest.isEntry,
|
61
|
-
sha256: manifest.sha256,
|
62
|
-
createStream: data
|
63
|
-
? () => node_stream_1.Readable.from(Buffer.from(data, 'base64'))
|
64
|
-
: () =>
|
65
|
-
// ESM version:
|
66
|
-
// createReadStream(new URL(`./app/${filename}`, import.meta.url))
|
67
|
-
// CJS version:
|
68
|
-
(0, node_fs_1.createReadStream)((0, node_path_1.join)(__dirname, './app', filename)),
|
69
|
-
};
|
70
|
-
}
|
71
|
-
class AssetNotFoundError extends Error {
|
72
|
-
code = 'ENOENT';
|
73
|
-
statusCode = 404;
|
74
|
-
constructor(filename) {
|
75
|
-
super(`Asset not found: ${filename}`);
|
76
|
-
}
|
77
|
-
}
|
78
|
-
//# sourceMappingURL=index.js.map
|
package/dist/assets/index.js.map
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/assets/index.ts"],"names":[],"mappings":";AAAA,gFAAgF;AAChF,gFAAgF;AAChF,6EAA6E;AAC7E,8EAA8E;AAC9E,8EAA8E;AAC9E,oBAAoB;AACpB,EAAE;AACF,8CAA8C;AAC9C,sEAAsE;;;;;;AAqBtE,0CAMC;AAED,4BAeC;AA1CD,6EAA6E;AAC7E,0EAA0E;AAC1E,0BAA0B;AAE1B,qCAA0C;AAC1C,yCAAuC;AACvC,6CAAsC;AAEtC,yDAAyD;AACzD,gDAAgD;AAChD,sFAA8D;AAG9D,MAAM,iBAAiB,GAA8B,IAAI,GAAG,CAC1D,MAAM,CAAC,OAAO,CAAC,8BAAqB,CAAC,CACtC,CAAA;AAEY,QAAA,iBAAiB,GAAG,mCAAmC,CAAA;AAEpE,QAAe,CAAC,CAAC,eAAe,CAAC,IAAY;IAC3C,KAAK,MAAM,CAAC,QAAQ,EAAE,QAAQ,CAAC,IAAI,iBAAiB,EAAE,CAAC;QACrD,IAAI,QAAQ,CAAC,IAAI,KAAK,IAAI,EAAE,CAAC;YAC3B,MAAM,mBAAmB,CAAC,QAAQ,EAAE,QAAQ,CAAC,CAAA;QAC/C,CAAC;IACH,CAAC;AACH,CAAC;AAED,SAAgB,QAAQ,CAAC,aAAqB;IAC5C,MAAM,QAAQ,GAAG,iBAAK,CAAC,SAAS,CAAC,aAAa,CAAC,CAAA;IAE/C,IACE,QAAQ,CAAC,UAAU,CAAC,GAAG,CAAC,IAAI,yBAAyB;QACrD,QAAQ,CAAC,UAAU,CAAC,KAAK,CAAC,IAAI,sCAAsC;QACpE,aAAa,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,gCAAgC;MAC7D,CAAC;QACD,MAAM,IAAI,kBAAkB,CAAC,QAAQ,CAAC,CAAA;IACxC,CAAC;IAED,MAAM,QAAQ,GAAG,iBAAiB,CAAC,GAAG,CAAC,QAAQ,CAAC,CAAA;IAChD,IAAI,CAAC,QAAQ;QAAE,MAAM,IAAI,kBAAkB,CAAC,QAAQ,CAAC,CAAA;IAErD,OAAO,mBAAmB,CAAC,QAAQ,EAAE,QAAQ,CAAC,CAAA;AAChD,CAAC;AAED,SAAS,mBAAmB,CAAC,QAAgB,EAAE,QAAsB;IACnE,6EAA6E;IAC7E,8EAA8E;IAC9E,0EAA0E;IAC1E,2EAA2E;IAC3E,8EAA8E;IAC9E,gFAAgF;IAEhF,MAAM,EAAE,IAAI,EAAE,GAAG,QAAQ,CAAA;IAEzB,OAAO;QACL,GAAG,EAAE,iBAAK,CAAC,IAAI,CAAC,yBAAiB,EAAE,QAAQ,CAAC;QAC5C,IAAI,EAAE,QAAQ,CAAC,IAAI;QACnB,OAAO,EAAE,QAAQ,CAAC,IAAI,KAAK,OAAO,IAAI,QAAQ,CAAC,OAAO;QACtD,MAAM,EAAE,QAAQ,CAAC,MAAM;QACvB,YAAY,EAAE,IAAI;YAChB,CAAC,CAAC,GAAG,EAAE,CAAC,sBAAQ,CAAC,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,IAAI,EAAE,QAAQ,CAAC,CAAC;YAClD,CAAC,CAAC,GAAG,EAAE;YACH,eAAe;YACf,kEAAkE;YAClE,eAAe;YACf,IAAA,0BAAgB,EAAC,IAAA,gBAAI,EAAC,SAAS,EAAE,OAAO,EAAE,QAAQ,CAAC,CAAC;KAC3D,CAAA;AACH,CAAC;AAED,MAAM,kBAAmB,SAAQ,KAAK;IACpB,IAAI,GAAG,QAAQ,CAAA;IACf,UAAU,GAAG,GAAG,CAAA;IAChC,YAAY,QAAgB;QAC1B,KAAK,CAAC,oBAAoB,QAAQ,EAAE,CAAC,CAAA;IACvC,CAAC;CACF"}
|